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