mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
88be4c5b7c
Closes #2712
12 lines
150 B
GLSL
12 lines
150 B
GLSL
vec2 F0(void);
|
|
|
|
vec2 F0(void) {
|
|
int l0 = 0;
|
|
int l1 = 0;
|
|
l0 = 0;
|
|
l0 = (l0) + (1);
|
|
l1 = 1;
|
|
l1 = (l1) - (1);
|
|
return vec2(float(l0), float(l1));
|
|
}
|