mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 23:54:06 +00:00
5af5222249
- https://github.com/KhronosGroup/SPIRV-Cross/commit/ 66a407285e36a0f772e3209cb86ded6e3d900f6a
29 lines
393 B
GLSL
29 lines
393 B
GLSL
#version 450
|
|
|
|
layout(location = 0) flat in int counter;
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
vec4 _21;
|
|
|
|
void main()
|
|
{
|
|
vec4 _24;
|
|
_24 = _21;
|
|
vec4 _33;
|
|
for (;;)
|
|
{
|
|
if (counter == 10)
|
|
{
|
|
_33 = vec4(10.0);
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
_33 = vec4(30.0);
|
|
break;
|
|
}
|
|
}
|
|
FragColor = _33;
|
|
}
|
|
|