android13/external/skia/resources/sksl/intrinsics/Exp2.sksl

15 lines
593 B
Plaintext

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