akwk/zadanie-1/pendulum_fs.glsl

7 lines
96 B
GLSL

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