Opentk/Source/Examples/Data/Shaders/Simple_FS.glsl
thefiddler 8dcb8601a2 Normalized line endings
Hopefully this is the first and last time we have to do this.
2013-10-11 01:58:54 +02:00

5 lines
97 B
GLSL

/* Copies incoming fragment color without change. */
void main()
{
gl_FragColor = gl_Color;
}