1uniform sampler2D Texture0;
2
3varying vec2 TextureCoord;
4
5void main(void)
6{
7    vec4 texel = texture2D(Texture0, TextureCoord);
8    gl_FragColor = texel;
9}
10
11