mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 14:43:10 +02:00
7 lines
121 B
GLSL
7 lines
121 B
GLSL
#version 330 core
|
|
out vec4 FragColor;
|
|
uniform vec4 ourColor; // set in OGL code
|
|
void main()
|
|
{
|
|
FragColor = ourColor;
|
|
} |