mirror of
https://github.com/GayPizzaSpecifications/padlab.git
synced 2025-08-15 19:01:31 +00:00
11 lines
96 B
GLSL
11 lines
96 B
GLSL
#version 330 core
|
|
|
|
in vec4 vColour;
|
|
|
|
out vec4 outColour;
|
|
|
|
void main()
|
|
{
|
|
outColour = vColour;
|
|
}
|