1half4 f(half4 src, half4 dst) { 2 return half4x4(src.a) * dst; 3} 4half4 main(half4 src, half4) { 5 return f(src, half4(1)); 6} 7