mirror of
https://github.com/UOH-CS-Level5/551455-graphics-programming-2526-the-repo-Zyb3rWolfi.git
synced 2025-11-29 00:43:08 +00:00
8 lines
96 B
GLSL
8 lines
96 B
GLSL
#version 330
|
|
|
|
out vec4 outputColor;
|
|
|
|
void main()
|
|
{
|
|
outputColor = vec4(1.0, 1.0, 0.0, 1.0);
|
|
} |