skia2/resources/sksl/intrinsics/Exp.sksl
John Stiles 469fb3c619 Rename variables named input in test files.
`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>
2021-09-30 16:39:21 +00:00

15 lines
576 B
Plaintext

uniform half4 inputVal, expected;
uniform half4 colorGreen, colorRed;
half4 main(float2 coords) {
const half4 constVal = half4(0);
return (exp(inputVal.x) == expected.x &&
exp(inputVal.xy) == expected.xy &&
exp(inputVal.xyz) == expected.xyz &&
exp(inputVal.xyzw) == expected.xyzw &&
exp(constVal.x) == expected.x &&
exp(constVal.xy) == expected.xy &&
exp(constVal.xyz) == expected.xyz &&
exp(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
}