stk-code_catmod/data/shaders/glow_object.frag
2014-09-05 22:17:57 +02:00

9 lines
104 B
GLSL

flat in vec4 glowColor;
out vec4 FragColor;
void main()
{
FragColor = vec4(glowColor.rgb, 1.0);
}