1*c8dee2aaSAndroid Build Coastguard Workeruniform half4 inputVal, expected; 2*c8dee2aaSAndroid Build Coastguard Workeruniform half4 colorGreen, colorRed; 3*c8dee2aaSAndroid Build Coastguard Worker 4*c8dee2aaSAndroid Build Coastguard Workerhalf4 main(float2 coords) { 5*c8dee2aaSAndroid Build Coastguard Worker const half4 constVal1 = half4(0, 0, 1.1752011936438014568, -1.1752011936438014568); 6*c8dee2aaSAndroid Build Coastguard Worker return (asinh(inputVal.x) == expected.x && 7*c8dee2aaSAndroid Build Coastguard Worker asinh(inputVal.xy) == expected.xy && 8*c8dee2aaSAndroid Build Coastguard Worker asinh(inputVal.xyz) == expected.xyz && 9*c8dee2aaSAndroid Build Coastguard Worker asinh(inputVal.xyzw) == expected.xyzw && 10*c8dee2aaSAndroid Build Coastguard Worker asinh(constVal1.x) == expected.x && 11*c8dee2aaSAndroid Build Coastguard Worker asinh(constVal1.xy) == expected.xy && 12*c8dee2aaSAndroid Build Coastguard Worker asinh(constVal1.xyz) == expected.xyz && 13*c8dee2aaSAndroid Build Coastguard Worker asinh(constVal1.xyzw) == expected.xyzw) ? colorGreen : colorRed; 14*c8dee2aaSAndroid Build Coastguard Worker} 15