android13/external/skia/resources/sksl/runtime/SwitchDefaultOnly.rts

8 lines
142 B
Plaintext

uniform half4 colorGreen, colorRed;
half4 main(float2 coords) {
switch (int(colorGreen.g)) {
default: return colorGreen;
}
}