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
645 B
Plaintext
15 lines
645 B
Plaintext
uniform half4 inputVal, expected;
|
|
uniform half4 colorGreen, colorRed;
|
|
|
|
half4 main(float2 coords) {
|
|
const half4 constVal1 = half4(1, 1, 1.54308063481524377, 3.7621956910836314);
|
|
return (acosh(inputVal.x) == expected.x &&
|
|
acosh(inputVal.xy) == expected.xy &&
|
|
acosh(inputVal.xyz) == expected.xyz &&
|
|
acosh(inputVal.xyzw) == expected.xyzw &&
|
|
acosh(constVal1.x) == expected.x &&
|
|
acosh(constVal1.xy) == expected.xy &&
|
|
acosh(constVal1.xyz) == expected.xyz &&
|
|
acosh(constVal1.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
|
}
|