stk-code_catmod/data/shaders/glow_object.frag

9 lines
104 B
GLSL
Raw Normal View History

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