stk-code_catmod/data/shaders/pass.frag
2014-03-22 18:36:20 +01:00

11 lines
117 B
GLSL

#version 140
uniform sampler2D tex;
in vec2 uv;
out vec4 FragColor;
void main()
{
FragColor = texture(tex, uv);
}