Opentk/Source/Examples/Data/Shaders/Picking_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

8 lines
88 B
GLSL

#version 120
flat varying vec4 vColor;
void main(void)
{
gl_FragColor = vColor;
}