mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25:38 +00:00
0116f4b65d
git-subtree-dir: external/glm git-subtree-split: bf71a834948186f4097caa076cd2663c69a10e1e
19 lines
442 B
C++
19 lines
442 B
C++
/// @ref core
|
|
/// @file glm/ext/matrix_float3x2.hpp
|
|
|
|
#pragma once
|
|
#include "../detail/type_mat3x2.hpp"
|
|
|
|
namespace glm
|
|
{
|
|
/// @addtogroup core
|
|
/// @{
|
|
|
|
/// 3 columns of 2 components matrix of single-precision floating-point numbers.
|
|
///
|
|
/// @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>
|
|
typedef mat<3, 2, float, defaultp> mat3x2;
|
|
|
|
/// @}
|
|
}//namespace glm
|