stk-code_catmod/data/shaders/texturedquad.frag

10 lines
125 B
GLSL

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