mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-01 13:21:02 +00:00
17 lines
182 B
Text
17 lines
182 B
Text
|
|
||
|
in vec4 Color;
|
||
|
in vec2 UV;
|
||
|
|
||
|
out vec4 FragColor;
|
||
|
|
||
|
uniform vec4 fillColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = fillColor;
|
||
|
|
||
|
#if defined(ALPHA_TEST)
|
||
|
if (FragColor.a < 0.5) discard;
|
||
|
#endif
|
||
|
}
|