1 #ifdef GL_ES 2 precision mediump float; 3 #endif 4 5 uniform sampler2D s_texture; 6 varying vec2 v_texCoord; 7 8 void main() { 9 gl_FragColor = texture2D(s_texture, v_texCoord); 10 }