9 lines
128 B
Plaintext
9 lines
128 B
Plaintext
|
|
#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);
|
||
|
|
}
|