10 lines
141 B
GLSL
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);
|
|
} |