skia2/resources/sksl/errors/StaticSwitchTest.sksl

9 lines
143 B
Plaintext
Raw Normal View History

half4 main() {
@switch (int(sqrt(1))) {
case 1:
return half4(1);
default:
return half4(0);
}
}