ugui.c3l/opengl/fragment.glsl

9 lines
128 B
Plaintext
Raw Normal View History

2023-01-19 00:53:46 +01:00
#version 330
out vec4 color;
void main()
{
// set the color for each vertex to white
color = vec4(1.0f, 1.0f, 1.0f, 1.0f);
}