mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 07:59:42 +00:00
12 lines
185 B
GLSL
12 lines
185 B
GLSL
|
#version 450
|
||
|
layout(location = 0) out vec4 FragColor;
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = vec4(0.0);
|
||
|
for (int i = 0; i < 3; (0 > 1) ? 1 : i ++)
|
||
|
{
|
||
|
int a = i;
|
||
|
FragColor[a] += float(i);
|
||
|
}
|
||
|
}
|