mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 15:03:11 +02:00
6 lines
99 B
Forth
6 lines
99 B
Forth
|
|
#version 330 core
|
||
|
|
out vec4 FragColor;
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
FragColor = vec4(1.0f, 1.0f, 0.0f, 1.0f);
|
||
|
|
}
|