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