mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
50cd33ed9b
Fixes #1299
12 lines
141 B
GLSL
12 lines
141 B
GLSL
void F0(out int l0);
|
|
|
|
void F0(out int l0) {
|
|
int l1 = 0;
|
|
l1 = 1;
|
|
l1 = (l1) * (2);
|
|
l1 = (l1) + (2);
|
|
l1 = (2) - (l1);
|
|
l0 = l1;
|
|
return;
|
|
}
|