celestia/shaders/comet_frag.glsl

8 lines
101 B
GLSL

uniform vec3 color;
varying float shade;
void main(void)
{
gl_FragColor = vec4(color, shade);
}