mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-14 06:57:27 +01:00
11 lines
134 B
GLSL
11 lines
134 B
GLSL
void F0(out vec2 l0) {
|
|
int l1 = 0;
|
|
int l2 = 0;
|
|
l1 = 0;
|
|
l1 = (l1) + (1);
|
|
l2 = 1;
|
|
l2 = (l2) - (1);
|
|
l0 = vec2(l1, l2);
|
|
return;
|
|
}
|