1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-18 23:12:02 +01:00
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);
}