1void main() { 2 float4x3 a = float4x3(1); 3 float4x3 b = float4x3(float4x4(1)); 4 sk_FragColor.x = (a[0] == b[0]) ? 0 : 1; 5} 6