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