1cb93a386Sopenharmony_ci 2cb93a386Sopenharmony_ciprecision mediump float; 3cb93a386Sopenharmony_ciprecision mediump sampler2D; 4cb93a386Sopenharmony_ciout mediump vec4 sk_FragColor; 5cb93a386Sopenharmony_ciuniform mediump vec4 colorGreen; 6cb93a386Sopenharmony_ciuniform mediump vec4 colorRed; 7cb93a386Sopenharmony_ciuniform mediump mat2 testHalf2x2; 8cb93a386Sopenharmony_ciuniform highp mat2 testFloat2x2; 9cb93a386Sopenharmony_ciuniform mediump mat3 testHalf3x3; 10cb93a386Sopenharmony_ciuniform highp mat4x2 testFloat4x2; 11cb93a386Sopenharmony_cimediump vec4 main() { 12cb93a386Sopenharmony_ci mediump mat2 _tempMatrix0; 13cb93a386Sopenharmony_ci mediump mat2 _tempMatrix1; 14cb93a386Sopenharmony_ci highp mat2 _tempMatrix2; 15cb93a386Sopenharmony_ci highp mat2 _tempMatrix3; 16cb93a386Sopenharmony_ci mediump mat2 _tempMatrix4; 17cb93a386Sopenharmony_ci mediump mat2 _tempMatrix5; 18cb93a386Sopenharmony_ci highp mat2 _tempMatrix6; 19cb93a386Sopenharmony_ci highp mat2 _tempMatrix7; 20cb93a386Sopenharmony_ci mediump mat3 _tempMatrix8; 21cb93a386Sopenharmony_ci mediump mat3 _tempMatrix9; 22cb93a386Sopenharmony_ci highp mat4x2 _tempMatrix10; 23cb93a386Sopenharmony_ci highp mat4x2 _tempMatrix11; 24cb93a386Sopenharmony_ci bool _0_ok = true; 25cb93a386Sopenharmony_ci _0_ok = _0_ok && ((_tempMatrix0 = testHalf2x2), (_tempMatrix1 = mat2(1.0, 2.0, 3.0, 4.0)), (_tempMatrix0 == _tempMatrix1)); 26cb93a386Sopenharmony_ci _0_ok = _0_ok && ((_tempMatrix2 = testFloat2x2), (_tempMatrix3 = mat2(5.0, 6.0, 7.0, 8.0)), (_tempMatrix2 == _tempMatrix3)); 27cb93a386Sopenharmony_ci _0_ok = _0_ok && ((_tempMatrix4 = testHalf2x2), (_tempMatrix5 = mat2(123.0)), (_tempMatrix4 != _tempMatrix5)); 28cb93a386Sopenharmony_ci _0_ok = _0_ok && ((_tempMatrix6 = testFloat2x2), (_tempMatrix7 = mat2(456.0)), (_tempMatrix6 != _tempMatrix7)); 29cb93a386Sopenharmony_ci _0_ok = _0_ok && ((_tempMatrix8 = testHalf3x3), (_tempMatrix9 = mat3(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0)), (_tempMatrix8 == _tempMatrix9)); 30cb93a386Sopenharmony_ci _0_ok = _0_ok && ((_tempMatrix10 = testFloat4x2), (_tempMatrix11 = mat4x2(1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0)), (_tempMatrix10 != _tempMatrix11)); 31cb93a386Sopenharmony_ci return _0_ok ? colorGreen : colorRed; 32cb93a386Sopenharmony_ci} 33