e5d4c43561
These weren't used anywhere in our test suite. Change-Id: I35e8607ad2dbddf8f403668bd2b2636a8964d304 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/455777 Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: John Stiles <johnstiles@google.com>
12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
uniform float testArray[5];
|
|
uniform half4 colorGreen, colorRed;
|
|
|
|
half4 main(float2 coords) {
|
|
for (int index=0; index<5; ++index) {
|
|
if (testArray[index] != float(index + 1)) {
|
|
return colorRed;
|
|
}
|
|
}
|
|
return colorGreen;
|
|
}
|