OpenRCT2/data/shaders/drawline.frag

11 lines
95 B
GLSL

#version 150
flat in uint fColour;
out uint oColour;
void main()
{
oColour = fColour;
}