1 2 3 4 5 6 7
#version 120 uniform sampler2D u_Texture; varying vec2 v_TexCoord; void main() { gl_FragColor = texture2D(u_Texture, v_TexCoord); }