skia2/resources/sksl/intrinsics/Length.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
611 B
Plaintext

uniform half4 inputVal;
uniform half4 colorGreen, colorRed;
half4 main(float2 coords) {
const half4 constVal = half4(3, 0, 4, 12);
half4 expected = half4(3, 3, 5, 13);
return (length(inputVal.x) == expected.x &&
length(inputVal.xy) == expected.y &&
length(inputVal.xyz) == expected.z &&
length(inputVal.xyzw) == expected.w &&
length(constVal.x) == expected.x &&
length(constVal.xy) == expected.y &&
length(constVal.xyz) == expected.z &&
length(constVal.xyzw) == expected.w) ? colorGreen : colorRed;
}