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 expectFFTT = notEqual(half4(3, 3, 3.25, 100), half4(3)); 7*c8dee2aaSAndroid Build Coastguard Worker bool4 expectTTFF = notEqual(int4_zero, int4(-100, -50, 0, 0)); 8*c8dee2aaSAndroid Build Coastguard Worker 9*c8dee2aaSAndroid Build Coastguard Worker sk_FragColor.x = notEqual(a, b).x ? 1 : 0; 10*c8dee2aaSAndroid Build Coastguard Worker sk_FragColor.y = notEqual(c, d).y ? 1 : 0; 11*c8dee2aaSAndroid Build Coastguard Worker sk_FragColor.z = notEqual(e, f).z ? 1 : 0; 12*c8dee2aaSAndroid Build Coastguard Worker sk_FragColor.w = any(expectTTFF) || any(expectFFTT) ? 1 : 0; 13*c8dee2aaSAndroid Build Coastguard Worker} 14