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
99 B
GLSL
8 lines
99 B
GLSL
#version 330
|
|
|
|
in vec4 vertexColor;
|
|
out vec4 FragColor;
|
|
void main()
|
|
{
|
|
FragColor = vertexColor;
|
|
} |