469fb3c619
`input` is a reserved word in GLSL. http://screen/85m4iRwvJRadKbV Change-Id: Iffc0a47d916a2419a27767902c839e09bfa7fe26 Bug: skia:11115 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/454736 Commit-Queue: John Stiles <johnstiles@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
15 lines
551 B
Plaintext
15 lines
551 B
Plaintext
uniform half4 inputH4, expectedH4;
|
|
uniform half4 colorGreen, colorRed;
|
|
|
|
half4 main(float2 coords) {
|
|
bool4 inputVal = bool4(inputH4);
|
|
bool4 expected = bool4(expectedH4);
|
|
const bool4 constVal = bool4(false, false, true, false);
|
|
return (any(inputVal.xy) == expected.x &&
|
|
any(inputVal.xyz) == expected.y &&
|
|
any(inputVal.xyzw) == expected.z &&
|
|
any(constVal.xy) == expected.x &&
|
|
any(constVal.xyz) == expected.y &&
|
|
any(constVal.xyzw) == expected.z) ? colorGreen : colorRed;
|
|
}
|