1uniform float2x2 f; 2uniform half2x2 h; 3 4void main() { 5 sk_FragColor = half4(h) + half4(f) + half4(float4(h) + float4(f)); 6} 7