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
9 lines
100 B
GLSL
9 lines
100 B
GLSL
#version 330
|
|
|
|
in vec4 outColour;
|
|
out vec4 outputColor;
|
|
|
|
void main()
|
|
{
|
|
outputColor = outColour;
|
|
} |