mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
a43efb66b2
Fixes #1267
15 lines
161 B
GLSL
15 lines
161 B
GLSL
void F0(out vec2 l0);
|
|
|
|
void F0(out vec2 l0) {
|
|
bool l1 = false;
|
|
l1 = true;
|
|
{
|
|
int l2 = 0;
|
|
l2 = 0;
|
|
l0 = vec2(l2);
|
|
return;
|
|
}
|
|
l0 = vec2(1.0);
|
|
return;
|
|
}
|