mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
4afabe34ae
Updates #2034 Updates #2188
15 lines
183 B
GLSL
15 lines
183 B
GLSL
vec2 F0(void);
|
|
vec2 F1(void);
|
|
|
|
vec2 F0(void) {
|
|
vec2 l0 = vec2(0);
|
|
vec2 l1 = vec2(0);
|
|
l0 = (1.0) * (F1());
|
|
l1 = (F1()) * (1.0);
|
|
return l0;
|
|
}
|
|
|
|
vec2 F1(void) {
|
|
return vec2(0.0);
|
|
}
|