mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
b6a340a96f
Updates #2034 Updates #2188
11 lines
92 B
GLSL
11 lines
92 B
GLSL
float F0(void);
|
|
int F1(void);
|
|
|
|
float F0(void) {
|
|
return 1.0;
|
|
}
|
|
|
|
int F1(void) {
|
|
return 2;
|
|
}
|