6 lines
94 B
GLSL
6 lines
94 B
GLSL
#version 430
|
|
out vec4 frag_color;
|
|
void main()
|
|
{
|
|
frag_color = vec4(1.0, 1.0, 1.0, 1.0);
|
|
} |