mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-12 22:17:26 +01:00
12 lines
148 B
GLSL
12 lines
148 B
GLSL
void F0(in vec2 l0, out vec2 l1) {
|
|
vec2 l2 = vec2(0.0);
|
|
F1(l0, l2);
|
|
l1 = l2;
|
|
return;
|
|
}
|
|
|
|
void F1(in vec2 l0, out vec2 l1) {
|
|
l1 = l0;
|
|
return;
|
|
}
|