7 lines
96 B
GLSL
7 lines
96 B
GLSL
#version 330 core
|
|
out vec4 FragColor;
|
|
void main()
|
|
{
|
|
FragColor = vec4(1.0, 1.0, 1.0, 1.0);
|
|
}
|