1half3x3 a, b; 2float4x4 c, d; 3void main() { 4 sk_FragColor.xyz = matrixCompMult(a, b)[0]; 5 sk_FragColor = half4(matrixCompMult(c, d)[0]); 6} 7