stk-code_catmod/data/shaders/colorize.frag

14 lines
153 B
GLSL
Raw Normal View History

uniform vec3 col;
#if __VERSION__ >= 130
out vec4 FragColor;
#else
#define FragColor gl_FragColor
#endif
void main()
{
FragColor = vec4(col, 1.0);
}