1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-17 22:42:02 +01:00
ebiten/internal/shader/testdata/issue2011.expected.vs

13 lines
134 B
Plaintext
Raw Normal View History

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;
}