1half4 main(float2 coords) {
2    half2x2 x = half2x2(0, 1, 2, 3);
3    float2 y = float4(x).xy;
4    return half4(y.xyxy);
5}
6