mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 14:43:10 +02:00
8 lines
125 B
GLSL
8 lines
125 B
GLSL
#version 330 core
|
|
out vec4 FragColor;
|
|
uniform vec1 ourColor;
|
|
void main()
|
|
{
|
|
|
|
FragColor = (0.0f, ourColor, 0.0f, 1.0f);
|
|
} |