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

11 lines
117 B
GLSL

vec2 F0(void);
vec2 F0(void) {
bool l0 = false;
l0 = true;
if (l0) {
return vec2(0.0);
}
return vec2(1.0);
}