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