mirror of
https://github.com/libretro/RetroArch
synced 2025-02-15 00:40:06 +00:00
19 lines
329 B
GLSL
19 lines
329 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
precision highp int;
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
float lut[5] = float[](1.0, 2.0, 3.0, 4.0, 5.0);
|
|
for (int _46 = 0; _46 < 4; )
|
|
{
|
|
mediump int _33 = _46 + 1;
|
|
FragColor += vec4(lut[_33]);
|
|
_46 = _33;
|
|
continue;
|
|
}
|
|
}
|
|
|