5 lines
110 B
GLSL
5 lines
110 B
GLSL
uniform sampler2D DiffuseTexture;
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(DiffuseTexture,gl_TexCoord[0].st);
|
|
} |