mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
18732ca879
Fixes #1298
9 lines
119 B
GLSL
9 lines
119 B
GLSL
void F0(in float l0, out int l1);
|
|
|
|
void F0(in float l0, out int l1) {
|
|
int l2 = 0;
|
|
l2 = int(l0);
|
|
l1 = l2;
|
|
return;
|
|
}
|