33ef30ec68
Aside from sqrt() and normalize(), we now optimize all the intrinsics which take a single argument as input, and return that argument with each of its components permuted as output. This CL also introduces a minor restriction--we no longer optimize intrinsics which evaluate to inf or nan, such as `inversesqrt(-1)`. These will be left in the source as-is. Change-Id: I4919b3c18a2df81accd6daf2f650b9f587ff43fc Reviewed-on: https://skia-review.googlesource.com/c/skia/+/406577 Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
16 lines
720 B
Plaintext
16 lines
720 B
Plaintext
uniform half4 testInputs; // equals (-1.25, 0, 0.75, 2.25)
|
|
uniform half4 colorGreen, colorRed;
|
|
|
|
half4 main(float2 coords) {
|
|
const half4 constVal = half4(-1.25, 0, 0.75, 2.25);
|
|
half4 expected = half4(0, 0, 0.75, 1);
|
|
return (saturate(testInputs.x) == expected.x &&
|
|
saturate(testInputs.xy) == expected.xy &&
|
|
saturate(testInputs.xyz) == expected.xyz &&
|
|
saturate(testInputs.xyzw) == expected.xyzw &&
|
|
saturate(constVal.x) == expected.x &&
|
|
saturate(constVal.xy) == expected.xy &&
|
|
saturate(constVal.xyz) == expected.xyz &&
|
|
saturate(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
|
}
|