mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
2869885816
This is for consistency with number literals we are introducing. Updates #1190
15 lines
258 B
GLSL
15 lines
258 B
GLSL
void F0(in vec2 l0) {
|
|
float l1 = float(0);
|
|
float l2 = float(0);
|
|
float l3 = float(0);
|
|
float l4 = float(0);
|
|
F1((l0).x, (l0).y, l1, l2);
|
|
F1(l1, l2, l3, l4);
|
|
}
|
|
|
|
void F1(in float l0, in float l1, out float l2, out float l3) {
|
|
l2 = l0;
|
|
l3 = l1;
|
|
return;
|
|
}
|