blob: 44a5aca68c7aa9345147e9e7f692d928a8167154 [file] [log] [blame]
#version 310 es
precision highp float;
bool tint_discarded = false;
bool call_discard() {
tint_discarded = true;
return true;
}
void f() {
bool v = call_discard();
bool also_unreachable = false;
}
void main() {
f();
if (tint_discarded) {
discard;
}
return;
}