skia2/resources/sksl/shared/StaticSwitch.sksl

9 lines
156 B
Plaintext
Raw Normal View History

uniform half4 colorGreen, colorRed;
half4 main(float2 xy) {
@switch (1) {
case 1: return colorGreen;
default: return colorRed;
}
}