mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
10 lines
95 B
GLSL
10 lines
95 B
GLSL
#version 150
|
|
|
|
flat in uint fColour;
|
|
|
|
out uint oColour;
|
|
|
|
void main()
|
|
{
|
|
oColour = fColour;
|
|
}
|