mirror of
https://github.com/libretro/RetroArch
synced 2025-04-17 20:43:10 +00:00
14 lines
140 B
GLSL
14 lines
140 B
GLSL
#version 450
|
|
|
|
void main()
|
|
{
|
|
int i = 0;
|
|
int j = 0;
|
|
while (!(i == 20))
|
|
{
|
|
j = ((j + i) + 1) * j;
|
|
i++;
|
|
}
|
|
}
|
|
|