mirror of
https://github.com/libretro/RetroArch
synced 2025-02-21 00:40:09 +00:00
14 lines
144 B
GLSL
14 lines
144 B
GLSL
|
#version 450
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
int j = 0;
|
||
|
int i = 0;
|
||
|
do
|
||
|
{
|
||
|
j = ((j + i) + 1) * j;
|
||
|
i++;
|
||
|
} while (!(i == 20));
|
||
|
}
|
||
|
|