Opentk/Source/Examples/Data/Shaders/Simple_FS.glsl

5 lines
97 B
Plaintext
Raw Normal View History

/* Copies incoming fragment color without change. */
void main()
{
gl_FragColor = gl_Color;
2007-11-11 18:43:16 +00:00
}