22dcb5fd7e
Convert to use the newer MakeForShader factory, which requires this. Change-Id: Ifaf6054054027c78f3f3fe15596e435e0f79b877 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/399336 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: John Stiles <johnstiles@google.com>
18 lines
437 B
Plaintext
18 lines
437 B
Plaintext
uniform half4 colorGreen, colorRed;
|
|
|
|
float get() {
|
|
@switch (2) {
|
|
case 1: return abs(1);
|
|
case 2: return abs(2); // Only this case should be preserved.
|
|
case 3: return abs(3);
|
|
case 4: return abs(4);
|
|
}
|
|
// This won't be removed because dead-code elimination is disabled.
|
|
return abs(5);
|
|
}
|
|
|
|
half4 main(float2 coords) {
|
|
float result = get();
|
|
return result == 2 ? colorGreen : colorRed;
|
|
}
|