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

9 lines
135 B
GLSL

#version 100
precision highp float;
varying vec2 v_uv;
uniform sampler2D u_tex;
void main(){
gl_FragColor = texture2D(u_tex,v_uv);
}