14 lines
153 B
GLSL
14 lines
153 B
GLSL
uniform vec3 col;
|
|
|
|
#if __VERSION__ >= 130
|
|
out vec4 FragColor;
|
|
#else
|
|
#define FragColor gl_FragColor
|
|
#endif
|
|
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(col, 1.0);
|
|
}
|