1cb93a386Sopenharmony_ci 2cb93a386Sopenharmony_ciout vec4 sk_FragColor; 3cb93a386Sopenharmony_ciuniform mat2 testMatrix2x2; 4cb93a386Sopenharmony_ciuniform mat3 testMatrix3x3; 5cb93a386Sopenharmony_ciuniform vec4 colorGreen; 6cb93a386Sopenharmony_ciuniform vec4 colorRed; 7cb93a386Sopenharmony_civec4 main() { 8cb93a386Sopenharmony_ci mat2x3 testMatrix2x3 = mat2x3(1.0, 2.0, 3.0, 4.0, 5.0, 6.0); 9cb93a386Sopenharmony_ci return (transpose(testMatrix2x2) == mat2(1.0, 3.0, 2.0, 4.0) && transpose(testMatrix2x3) == mat3x2(1.0, 4.0, 2.0, 5.0, 3.0, 6.0)) && transpose(testMatrix3x3) == mat3(1.0, 4.0, 7.0, 2.0, 5.0, 8.0, 3.0, 6.0, 9.0) ? colorGreen : colorRed; 10cb93a386Sopenharmony_ci} 11