1cb93a386Sopenharmony_ci 2cb93a386Sopenharmony_ciout vec4 sk_FragColor; 3cb93a386Sopenharmony_ciuniform vec4 colorGreen; 4cb93a386Sopenharmony_ciuniform vec4 colorRed; 5cb93a386Sopenharmony_ciuniform mat2 testMatrix2x2; 6cb93a386Sopenharmony_ciuniform mat3 testMatrix3x3; 7cb93a386Sopenharmony_civec4 main() { 8cb93a386Sopenharmony_ci bool _0_ok = true; 9cb93a386Sopenharmony_ci _0_ok = _0_ok && testMatrix2x2 == mat2(1.0, 2.0, 3.0, 4.0); 10cb93a386Sopenharmony_ci _0_ok = _0_ok && testMatrix3x3 == mat3(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0); 11cb93a386Sopenharmony_ci _0_ok = _0_ok && testMatrix2x2 != mat2(100.0); 12cb93a386Sopenharmony_ci _0_ok = _0_ok && testMatrix3x3 != mat3(9.0, 8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0); 13cb93a386Sopenharmony_ci return _0_ok ? colorGreen : colorRed; 14cb93a386Sopenharmony_ci} 15