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