mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
b6a340a96f
Updates #2034 Updates #2188
11 lines
120 B
GLSL
11 lines
120 B
GLSL
int F0(void);
|
|
|
|
int F0(void) {
|
|
int l0 = 0;
|
|
l0 = 1;
|
|
l0 = (l0) * (2);
|
|
l0 = (l0) + (2);
|
|
l0 = (2) - (l0);
|
|
return l0;
|
|
}
|