ebiten/internal/shader/testdata/if.expected.vs

13 lines
146 B
Plaintext
Raw Normal View History

void F0(out vec2 l0);
2020-07-04 15:49:29 +02:00
void F0(out vec2 l0) {
bool l1 = false;
l1 = true;
if (l1) {
l0 = vec2(0.0);
return;
}
l0 = vec2(1.0);
return;
}