mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
10 lines
122 B
GLSL
10 lines
122 B
GLSL
#version 450
|
|
|
|
layout(location = 0) out float FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = float((10u > 20u) ? 30u : 50u);
|
|
}
|
|
|