mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
b6a340a96f
Updates #2034 Updates #2188
18 lines
194 B
GLSL
18 lines
194 B
GLSL
int F0(in vec2 l0);
|
|
int F1(in vec2 l0);
|
|
|
|
int F0(in vec2 l0) {
|
|
int l1[2];
|
|
l1[0] = 0;
|
|
l1[1] = 0;
|
|
return 2;
|
|
}
|
|
|
|
int F1(in vec2 l0) {
|
|
int l1[3];
|
|
l1[0] = 0;
|
|
l1[1] = 0;
|
|
l1[2] = 0;
|
|
return 3;
|
|
}
|