mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
06ed4f5444
Fixes #1279
10 lines
124 B
GLSL
10 lines
124 B
GLSL
void F0(in vec2 l0, out int l1);
|
|
|
|
void F0(in vec2 l0, out int l1) {
|
|
int l2[2];
|
|
l2[0] = 0;
|
|
l2[1] = 0;
|
|
l1 = 2;
|
|
return;
|
|
}
|