xref: /aosp_15_r20/external/skia/resources/sksl/intrinsics/Equal.sksl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1uniform half4 a, b;
2uniform uint2 c, d;
3uniform int3 e, f;
4void main() {
5    const int4 int4_zero = int4(0);
6    bool4 expectTTFF = equal(half4(3, 3, 3.25, 100), half4(3));
7    bool4 expectFFTT = equal(int4_zero, int4(-100, -50, 0, 0));
8    bool4 expectTTTT = equal(bool4(1), bool4(7));
9
10    sk_FragColor.x = equal(a, b).x ? 1 : 0;
11    sk_FragColor.y = equal(c, d).y ? 1 : 0;
12    sk_FragColor.z = equal(e, f).z ? 1 : 0;
13    sk_FragColor.w = any(expectTTFF) || any(expectFFTT) || any(expectTTTT) ? 1 : 0;
14}
15