2021-05-18 21:18:26 +02:00

8 lines
101 B
GLSL

#version 330 core
out vec4 FragColor;
void main()
{
FragColor = vec4(1.0f, 1.0f, 1.0f, 1.0f);
}