stk-code_catmod/data/shaders/colortexturedquad.frag

12 lines
140 B
GLSL
Raw Normal View History

2018-01-21 21:43:22 -05:00
uniform sampler2D tex;
in vec2 uv;
in vec4 col;
out vec4 FragColor;
void main()
{
vec4 res = texture(tex, uv);
FragColor = res * col;
}