2021-05-14 15:34:08 +02:00

10 lines
141 B
GLSL

#version 330 core
uniform float time;
out vec4 FragColor;
void main()
{
FragColor = vec4(sin(time), sin(time/2), sin(time/4), 1.0f);
}