skia2/resources/sksl/intrinsics/Normalize.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

17 lines
706 B
Plaintext

uniform half4 inputVal;
uniform half4 colorGreen, colorRed;
half4 main(float2 coords) {
const half4 constVec = half4(20, 0, 0, 0);
half4 expectedVec = half4(1, 0, 0, 0);
return (normalize(inputVal.x) == expectedVec.x &&
normalize(inputVal.xy) == expectedVec.xy &&
normalize(inputVal.xyz) == expectedVec.xyz &&
normalize(inputVal.xyzw) == expectedVec.xyzw &&
normalize(constVec.x) == expectedVec.x &&
normalize(constVec.yx) == expectedVec.yx &&
normalize(constVec.zxy) == expectedVec.zxy &&
normalize(constVec.xyzw) == expectedVec.xyzw) ? colorGreen : colorRed;
}