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 expectFFTT = greaterThanEqual(half4(1, 2, 2.25, 2.5), half4(2.25)); 7cb93a386Sopenharmony_ci bool4 expectTTFF = greaterThanEqual(int4_zero, int4(-50, 0, 50, 100)); 8cb93a386Sopenharmony_ci 9cb93a386Sopenharmony_ci sk_FragColor.x = greaterThanEqual(a, b).x ? 1 : 0; 10cb93a386Sopenharmony_ci sk_FragColor.y = greaterThanEqual(c, d).y ? 1 : 0; 11cb93a386Sopenharmony_ci sk_FragColor.z = greaterThanEqual(e, f).z ? 1 : 0; 12cb93a386Sopenharmony_ci sk_FragColor.w = any(expectTTFF) || any(expectFFTT) ? 1 : 0; 13cb93a386Sopenharmony_ci} 14