mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
b6a340a96f
Updates #2034 Updates #2188
14 lines
186 B
GLSL
14 lines
186 B
GLSL
vec2 F0(void);
|
|
|
|
vec2 F0(void) {
|
|
float l0 = float(0);
|
|
float l1 = float(0);
|
|
float l2 = float(0);
|
|
float l3 = float(0);
|
|
l1 = 1.0;
|
|
l0 = l1;
|
|
l3 = 2.0;
|
|
l2 = l3;
|
|
return vec2(l0, l2);
|
|
}
|