stk-code_catmod/data/shaders/texturedquad.frag
2015-01-01 03:18:13 +01:00

9 lines
111 B
GLSL

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