1 /// @ref core 2 /// @file glm/mat2x3.hpp 3 4 #pragma once 5 6 #include "detail/type_mat2x3.hpp" 7 8 namespace glm 9 { 10 /// 2 columns of 3 components matrix of low precision floating-point numbers. 11 /// There is no guarantee on the actual precision. 12 /// 13 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a> 14 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a> 15 typedef tmat2x3<float, lowp> lowp_mat2x3; 16 17 /// 2 columns of 3 components matrix of medium precision floating-point numbers. 18 /// There is no guarantee on the actual precision. 19 /// 20 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a> 21 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a> 22 typedef tmat2x3<float, mediump> mediump_mat2x3; 23 24 /// 2 columns of 3 components matrix of high precision floating-point numbers. 25 /// There is no guarantee on the actual precision. 26 /// 27 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a> 28 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a> 29 typedef tmat2x3<float, highp> highp_mat2x3; 30 31 }//namespace glm 32 33