1 uniform sampler2D sTexture; 2 3 varying mediump vec2 TexCoord; 4 5 void main() 6 { 7 gl_FragColor = texture2D(sTexture, TexCoord); 8 } 9