stk-code_catmod/data/shaders/pass.frag
2013-11-30 21:33:06 +00:00

7 lines
91 B
GLSL

uniform sampler2D tex;
void main()
{
gl_FragColor = texture2D(tex, gl_TexCoord[0].xy);
}