stk-code_catmod/data/shaders/glow_object.frag

9 lines
104 B
GLSL
Raw Normal View History

2014-09-05 22:08:35 +02:00
flat in vec4 glowColor;
2014-08-25 18:20:37 +02:00
2014-09-05 22:08:35 +02:00
out vec4 FragColor;
2014-08-25 18:20:37 +02:00
void main()
{
FragColor = vec4(glowColor.rgb, 1.0);
}