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>
9 lines
182 B
Plaintext
9 lines
182 B
Plaintext
uniform half4 colorGreen, colorRed;
|
|
|
|
half4 main(float2 coords) {
|
|
if (half4(0, 0, 1, 1) == half4(int4(0, 0, 1, 1)))
|
|
return colorGreen;
|
|
else
|
|
return colorRed;
|
|
}
|