mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
1e78c2e6b0
Closes #2840
17 lines
191 B
GLSL
17 lines
191 B
GLSL
float[1] F0(void);
|
|
int[1] F1(void);
|
|
|
|
float[1] F0(void) {
|
|
float l0[1];
|
|
l0[0] = float(0);
|
|
(l0)[0] = 1.0;
|
|
return l0;
|
|
}
|
|
|
|
int[1] F1(void) {
|
|
int l0[1];
|
|
l0[0] = 0;
|
|
(l0)[0] = 1;
|
|
return l0;
|
|
}
|