ugui.c3l/opengl/fragment.glsl

10 lines
135 B
Plaintext
Raw Normal View History

2023-01-19 00:53:46 +01:00
#version 330
2023-01-22 22:45:03 +01:00
smooth in vec4 out_color;
2023-01-19 00:53:46 +01:00
out vec4 color;
void main()
{
// set the color for each vertex to white
2023-01-22 22:45:03 +01:00
color = out_color;
2023-01-19 00:53:46 +01:00
}