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(1, 1, 1.54308063481524377, 3.7621956910836314); 6*c8dee2aaSAndroid Build Coastguard Worker return (acosh(inputVal.x) == expected.x && 7*c8dee2aaSAndroid Build Coastguard Worker acosh(inputVal.xy) == expected.xy && 8*c8dee2aaSAndroid Build Coastguard Worker acosh(inputVal.xyz) == expected.xyz && 9*c8dee2aaSAndroid Build Coastguard Worker acosh(inputVal.xyzw) == expected.xyzw && 10*c8dee2aaSAndroid Build Coastguard Worker acosh(constVal1.x) == expected.x && 11*c8dee2aaSAndroid Build Coastguard Worker acosh(constVal1.xy) == expected.xy && 12*c8dee2aaSAndroid Build Coastguard Worker acosh(constVal1.xyz) == expected.xyz && 13*c8dee2aaSAndroid Build Coastguard Worker acosh(constVal1.xyzw) == expected.xyzw) ? colorGreen : colorRed; 14*c8dee2aaSAndroid Build Coastguard Worker} 15