stk-code_catmod/data/shaders/pass.frag
2014-01-19 18:53:35 +01:00

8 lines
102 B
GLSL

#version 130
uniform sampler2D tex;
void main()
{
gl_FragColor = texture(tex, gl_TexCoord[0].xy);
}