2015-10-08 13:53:42 +03:00

10 lines
215 B
Plaintext

precision highp float;
varying vec2 v_texCoords;
uniform sampler2D u_sampler;
void main(void) {
vec4 tColor = texture2D( u_sampler, v_texCoords.st );
gl_FragColor = vec4(tColor.rgb, 1.0);
}