skia2/resources/sksl/errors/StaticSwitchTest.sksl

15 lines
224 B
Plaintext
Raw Normal View History

uniform float unknownInput;
half4 main() {
@switch (int(unknownInput)) {
case 1:
return half4(1);
default:
return half4(0);
}
}
/*%%*
static switch has non-static test
*%%*/