1 2out vec4 sk_FragColor; 3vec4 main() { 4 mat2 x = mat2(0.0, 1.0, 2.0, 3.0); 5 vec2 y = vec4(x).xy; 6 return vec4(y, 0.0, 1.0); 7} 8