You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
210 B

void main() {
const int x = 1;
@switch (x) {
case 1:
sk_FragColor = half4(1);
if (sqrt(0) < sqrt(1)) break;
default:
sk_FragColor = half4(0);
}
}