mirror of
https://github.com/GayPizzaSpecifications/padlab.git
synced 2025-08-16 03:11:31 +00:00
11 lines
101 B
Plaintext
11 lines
101 B
Plaintext
|
#version 330 core
|
||
|
|
||
|
out vec4 outColour;
|
||
|
|
||
|
uniform vec4 uColour;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
outColour = uColour;
|
||
|
}
|