Files
OpenRA/glsl/rgba.frag
2015-12-26 12:50:33 +00:00

7 lines
131 B
GLSL

uniform sampler2D DiffuseTexture;
varying vec4 vTexCoord;
void main()
{
gl_FragColor = texture2D(DiffuseTexture, vTexCoord.st);
}