mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-24 08:12:53 +01:00
11 lines
95 B
GLSL
11 lines
95 B
GLSL
#version 150
|
|
|
|
flat in uint fColour;
|
|
|
|
out uint oColour;
|
|
|
|
void main()
|
|
{
|
|
oColour = fColour;
|
|
}
|