skia2/resources/sksl/inliner/EnumsCanBeInlinedSafely.sksl
Brian Osman 22dcb5fd7e Add coords parameter to all .sksl test files used as runtime effects
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>
2021-04-26 18:34:38 +00:00

24 lines
406 B
Plaintext

uniform half4 colorGreen, colorRed;
half4 helper();
half4 main(float2 coords) {
return helper();
}
enum class E {
kBlack = 0,
kGray = 1,
kWhite = 2
};
half4 helper() {
E temp = E::kGray;
switch (temp) {
case E::kBlack: return colorRed;
case E::kGray: return colorGreen;
case E::kWhite: return colorRed;
default: return colorRed;
}
}