nenuzhno-engine_iter1/assets/pt/shaders/tex.fs

9 lines
135 B
Forth
Raw Normal View History

2019-08-07 03:06:06 +02:00
#version 100
precision highp float;
varying vec2 v_uv;
uniform sampler2D u_tex;
void main(){
gl_FragColor = texture2D(u_tex,v_uv);
}