mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-14 15:07:26 +01:00
11 lines
123 B
Plaintext
11 lines
123 B
Plaintext
|
void F0(out vec2 l0) {
|
||
|
bool l1 = false;
|
||
|
l1 = true;
|
||
|
if (l1) {
|
||
|
l0 = vec2(0.0);
|
||
|
return;
|
||
|
}
|
||
|
l0 = vec2(1.0);
|
||
|
return;
|
||
|
}
|