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