mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-18 23:49:19 +02:00
9 lines
126 B
GLSL
9 lines
126 B
GLSL
#include <common>
|
|
|
|
layout(location = 0) out vec4 out_color;
|
|
|
|
void main()
|
|
{
|
|
out_color = vec4(vec3(0.3f, time, 0.3f), 1.0f);
|
|
}
|