mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
11 lines
104 B
GLSL
11 lines
104 B
GLSL
#version 330
|
|
|
|
in vec3 f_color;
|
|
|
|
#include <common>
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = vec4(f_color, 1.0f);
|
|
}
|