stk-code_catmod/data/shaders/texturedquad.frag
2018-01-22 10:43:22 +08:00

9 lines
103 B
GLSL

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