2013-12-24 05:19:45 +00:00
|
|
|
/// @ref core
|
2016-10-16 10:10:44 +00:00
|
|
|
/// @file glm/mat4x3.hpp
|
2013-12-24 05:19:45 +00:00
|
|
|
|
2017-06-04 09:36:13 +00:00
|
|
|
#include "detail/setup.hpp"
|
|
|
|
|
2014-07-13 23:48:27 +00:00
|
|
|
#pragma once
|
2013-12-24 05:19:45 +00:00
|
|
|
|
2013-12-24 09:41:59 +00:00
|
|
|
#include "detail/type_mat4x3.hpp"
|
2013-12-24 05:19:45 +00:00
|
|
|
|
2014-01-11 21:35:19 +00:00
|
|
|
namespace glm
|
|
|
|
{
|
2017-08-15 19:23:47 +00:00
|
|
|
/// 4 columns of 3 components matrix of low qualifier floating-point numbers.
|
|
|
|
/// There is no guarantee on the actual qualifier.
|
2014-01-11 21:35:19 +00:00
|
|
|
///
|
|
|
|
/// @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>
|
|
|
|
/// @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>
|
2016-12-30 15:00:25 +00:00
|
|
|
typedef mat<4, 3, float, lowp> lowp_mat4x3;
|
2014-01-11 21:35:19 +00:00
|
|
|
|
2017-08-15 19:23:47 +00:00
|
|
|
/// 4 columns of 3 components matrix of medium qualifier floating-point numbers.
|
|
|
|
/// There is no guarantee on the actual qualifier.
|
2014-01-11 21:35:19 +00:00
|
|
|
///
|
|
|
|
/// @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>
|
|
|
|
/// @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>
|
2016-12-30 15:00:25 +00:00
|
|
|
typedef mat<4, 3, float, mediump> mediump_mat4x3;
|
2014-01-11 21:35:19 +00:00
|
|
|
|
2017-08-15 19:23:47 +00:00
|
|
|
/// 4 columns of 3 components matrix of high qualifier floating-point numbers.
|
|
|
|
/// There is no guarantee on the actual qualifier.
|
2014-01-11 21:35:19 +00:00
|
|
|
///
|
|
|
|
/// @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>
|
|
|
|
/// @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>
|
2016-12-30 15:00:25 +00:00
|
|
|
typedef mat<4, 3, float, highp> highp_mat4x3;
|
2014-01-11 21:35:19 +00:00
|
|
|
|
|
|
|
}//namespace glm
|