stk-code_catmod/data/shaders/glow_object.frag
2014-09-02 23:23:23 +02:00

9 lines
104 B
GLSL

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