mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 05:54:16 +00:00
24 lines
384 B
GLSL
24 lines
384 B
GLSL
#version 450
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
layout(location = 0) in vec4 v0;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(1.0);
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
if (v0.x == 20.0)
|
|
{
|
|
FragColor += vec4(v0[i & 3]);
|
|
continue;
|
|
}
|
|
else
|
|
{
|
|
FragColor += vec4(v0[i & 1]);
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
|