1cb93a386Sopenharmony_ciuniform half4 a, b; 2cb93a386Sopenharmony_ciuniform uint2 c, d; 3cb93a386Sopenharmony_ciuniform int3 e, f; 4cb93a386Sopenharmony_civoid main() { 5cb93a386Sopenharmony_ci const int4 int4_zero = int4(0); 6cb93a386Sopenharmony_ci bool4 expectTTFF = equal(half4(3, 3, 3.25, 100), half4(3)); 7cb93a386Sopenharmony_ci bool4 expectFFTT = equal(int4_zero, int4(-100, -50, 0, 0)); 8cb93a386Sopenharmony_ci bool4 expectTTTT = equal(bool4(1), bool4(7)); 9cb93a386Sopenharmony_ci 10cb93a386Sopenharmony_ci sk_FragColor.x = equal(a, b).x ? 1 : 0; 11cb93a386Sopenharmony_ci sk_FragColor.y = equal(c, d).y ? 1 : 0; 12cb93a386Sopenharmony_ci sk_FragColor.z = equal(e, f).z ? 1 : 0; 13cb93a386Sopenharmony_ci sk_FragColor.w = any(expectTTFF) || any(expectFFTT) || any(expectTTTT) ? 1 : 0; 14cb93a386Sopenharmony_ci} 15