diff --git a/glm/detail/func_packing.inl b/glm/detail/func_packing.inl index cb3f8eff..23d7732d 100644 --- a/glm/detail/func_packing.inl +++ b/glm/detail/func_packing.inl @@ -11,11 +11,11 @@ namespace glm { union { - u16 in[2]; + unsigned short in[2]; uint out; } u; - u16vec2 result(round(clamp(v, 0.0f, 1.0f) * 65535.0f)); + vec<2, unsigned short, defaultp> result(round(clamp(v, 0.0f, 1.0f) * 65535.0f)); u.in[0] = result[0]; u.in[1] = result[1]; @@ -28,7 +28,7 @@ namespace glm union { uint in; - u16 out[2]; + unsigned short out[2]; } u; u.in = p; @@ -40,11 +40,11 @@ namespace glm { union { - i16 in[2]; + signed short in[2]; uint out; } u; - - i16vec2 result(round(clamp(v, -1.0f, 1.0f) * 32767.0f)); + + vec<2, short, defaultp> result(round(clamp(v, -1.0f, 1.0f) * 32767.0f)); u.in[0] = result[0]; u.in[1] = result[1]; @@ -57,7 +57,7 @@ namespace glm union { uint in; - i16 out[2]; + signed short out[2]; } u; u.in = p; @@ -69,11 +69,11 @@ namespace glm { union { - u8 in[4]; + unsigned char in[4]; uint out; } u; - u8vec4 result(round(clamp(v, 0.0f, 1.0f) * 255.0f)); + vec<4, unsigned char, defaultp> result(round(clamp(v, 0.0f, 1.0f) * 255.0f)); u.in[0] = result[0]; u.in[1] = result[1]; @@ -88,7 +88,7 @@ namespace glm union { uint in; - u8 out[4]; + unsigned char out[4]; } u; u.in = p; @@ -100,11 +100,11 @@ namespace glm { union { - i8 in[4]; + signed char in[4]; uint out; } u; - i8vec4 result(round(clamp(v, -1.0f, 1.0f) * 127.0f)); + vec<4, signed char, defaultp> result(round(clamp(v, -1.0f, 1.0f) * 127.0f)); u.in[0] = result[0]; u.in[1] = result[1]; @@ -119,7 +119,7 @@ namespace glm union { uint in; - i8 out[4]; + signed char out[4]; } u; u.in = p; @@ -158,7 +158,7 @@ namespace glm { union { - i16 in[2]; + signed short in[2]; uint out; } u; @@ -173,7 +173,7 @@ namespace glm union { uint in; - i16 out[2]; + signed short out[2]; } u; u.in = v; diff --git a/glm/detail/type_half.inl b/glm/detail/type_half.inl index 29e8160b..4a58256b 100644 --- a/glm/detail/type_half.inl +++ b/glm/detail/type_half.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/detail/type_half.inl namespace glm{ namespace detail diff --git a/glm/detail/type_mat.hpp b/glm/detail/type_mat.hpp deleted file mode 100644 index 7280147f..00000000 --- a/glm/detail/type_mat.hpp +++ /dev/null @@ -1,720 +0,0 @@ -/// @ref core -/// @file glm/detail/type_mat.hpp - -#pragma once - -#include "qualifier.hpp" - -namespace glm{ -namespace detail -{ - template - struct outerProduct_trait{}; -}//namespace detail - -#if GLM_HAS_TEMPLATE_ALIASES - template using tmat2x2 = mat<2, 2, T, Q>; - template using tmat2x3 = mat<2, 3, T, Q>; - template using tmat2x4 = mat<2, 4, T, Q>; - template using tmat3x2 = mat<3, 2, T, Q>; - template using tmat3x3 = mat<3, 3, T, Q>; - template using tmat3x4 = mat<3, 4, T, Q>; - template using tmat4x2 = mat<4, 2, T, Q>; - template using tmat4x3 = mat<4, 3, T, Q>; - template using tmat4x4 = mat<4, 4, T, Q>; -#endif//GLM_HAS_TEMPLATE_ALIASES - - template - GLM_FUNC_DECL mat inverse(mat const& m); - - /// @addtogroup core_precision - /// @{ - - /// 2 columns of 2 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 2, float, lowp> lowp_mat2; - - /// 2 columns of 2 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 2, float, mediump> mediump_mat2; - - /// 2 columns of 2 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 2, float, highp> highp_mat2; - - /// 2 columns of 2 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 2, float, lowp> lowp_mat2x2; - - /// 2 columns of 2 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 2, float, mediump> mediump_mat2x2; - - /// 2 columns of 2 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 2, float, highp> highp_mat2x2; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 2 columns of 3 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 3, float, lowp> lowp_mat2x3; - - /// 2 columns of 3 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 3, float, mediump> mediump_mat2x3; - - /// 2 columns of 3 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 3, float, highp> highp_mat2x3; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 2 columns of 4 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 4, float, lowp> lowp_mat2x4; - - /// 2 columns of 4 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 4, float, mediump> mediump_mat2x4; - - /// 2 columns of 4 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 4, float, highp> highp_mat2x4; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 3 columns of 2 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 2, float, lowp> lowp_mat3x2; - - /// 3 columns of 2 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 2, float, mediump> mediump_mat3x2; - - /// 3 columns of 2 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 2, float, highp> highp_mat3x2; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 3 columns of 3 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, lowp> lowp_mat3; - - /// 3 columns of 3 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, mediump> mediump_mat3; - - /// 3 columns of 3 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, highp> highp_mat3; - - /// 3 columns of 3 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, lowp> lowp_mat3x3; - - /// 3 columns of 3 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, mediump> mediump_mat3x3; - - /// 3 columns of 3 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, highp> highp_mat3x3; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 3 columns of 4 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 4, float, lowp> lowp_mat3x4; - - /// 3 columns of 4 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 4, float, mediump> mediump_mat3x4; - - /// 3 columns of 4 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 4, float, highp> highp_mat3x4; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 4 columns of 2 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 2, float, lowp> lowp_mat4x2; - - /// 4 columns of 2 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 2, float, mediump> mediump_mat4x2; - - /// 4 columns of 2 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 2, float, highp> highp_mat4x2; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 4 columns of 3 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 3, float, lowp> lowp_mat4x3; - - /// 4 columns of 3 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 3, float, mediump> mediump_mat4x3; - - /// 4 columns of 3 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 3, float, highp> highp_mat4x3; - - /// @} - - - /// @addtogroup core_precision - /// @{ - - /// 4 columns of 4 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, lowp> lowp_mat4; - - /// 4 columns of 4 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, mediump> mediump_mat4; - - /// 4 columns of 4 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, highp> highp_mat4; - - /// 4 columns of 4 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, lowp> lowp_mat4x4; - - /// 4 columns of 4 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, mediump> mediump_mat4x4; - - /// 4 columns of 4 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, highp> highp_mat4x4; - - /// @} - - /// @addtogroup core_types - /// @{ - - ////////////////////////// - // Float definition - -#if(defined(GLM_PRECISION_LOWP_FLOAT)) - typedef lowp_mat2x2 mat2x2; - typedef lowp_mat2x3 mat2x3; - typedef lowp_mat2x4 mat2x4; - typedef lowp_mat3x2 mat3x2; - typedef lowp_mat3x3 mat3x3; - typedef lowp_mat3x4 mat3x4; - typedef lowp_mat4x2 mat4x2; - typedef lowp_mat4x3 mat4x3; - typedef lowp_mat4x4 mat4x4; -#elif(defined(GLM_PRECISION_MEDIUMP_FLOAT)) - typedef mediump_mat2x2 mat2x2; - typedef mediump_mat2x3 mat2x3; - typedef mediump_mat2x4 mat2x4; - typedef mediump_mat3x2 mat3x2; - typedef mediump_mat3x3 mat3x3; - typedef mediump_mat3x4 mat3x4; - typedef mediump_mat4x2 mat4x2; - typedef mediump_mat4x3 mat4x3; - typedef mediump_mat4x4 mat4x4; -#else - /// 2 columns of 2 components matrix of floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_mat2x2 mat2x2; - - //! 2 columns of 3 components matrix of floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_mat2x3 mat2x3; - - //! 2 columns of 4 components matrix of floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_mat2x4 mat2x4; - - //! 3 columns of 2 components matrix of floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_mat3x2 mat3x2; - - //! 3 columns of 3 components matrix of floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_mat3x3 mat3x3; - - //! 3 columns of 4 components matrix of floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_mat3x4 mat3x4; - - //! 4 columns of 2 components matrix of floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_mat4x2 mat4x2; - - //! 4 columns of 3 components matrix of floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_mat4x3 mat4x3; - - //! 4 columns of 4 components matrix of floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_mat4x4 mat4x4; - -#endif//GLM_PRECISION - - //! 3 columns of 3 components matrix of floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef mat3x3 mat3; - - //! 4 columns of 4 components matrix of floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef mat4x4 mat4; - - ////////////////////////// - // Double definition - - /// @addtogroup core_precision - /// @{ - - /// 2 columns of 3 components matrix of low qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 3, double, lowp> lowp_dmat2x3; - - /// 2 columns of 3 components matrix of medium qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 3, double, mediump> mediump_dmat2x3; - - /// 2 columns of 3 components matrix of high qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 3, double, highp> highp_dmat2x3; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 2 columns of 4 components matrix of low qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 4, double, lowp> lowp_dmat2x4; - - /// 2 columns of 4 components matrix of medium qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 4, double, mediump> mediump_dmat2x4; - - /// 2 columns of 4 components matrix of high qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 4, double, highp> highp_dmat2x4; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 3 columns of 2 components matrix of low qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 2, double, lowp> lowp_dmat3x2; - - /// 3 columns of 2 components matrix of medium qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 2, double, mediump> mediump_dmat3x2; - - /// 3 columns of 2 components matrix of high qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 2, double, highp> highp_dmat3x2; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 3 columns of 3 components matrix of low qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, lowp> lowp_dmat3; - - /// 3 columns of 3 components matrix of medium qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, double, mediump> mediump_dmat3; - - /// 3 columns of 3 components matrix of high qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, double, highp> highp_dmat3; - - /// 3 columns of 3 components matrix of low qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, double, lowp> lowp_dmat3x3; - - /// 3 columns of 3 components matrix of medium qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, double, mediump> mediump_dmat3x3; - - /// 3 columns of 3 components matrix of high qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, double, highp> highp_dmat3x3; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 3 columns of 4 components matrix of low qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 4, double, lowp> lowp_dmat3x4; - - /// 3 columns of 4 components matrix of medium qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 4, double, mediump> mediump_dmat3x4; - - /// 3 columns of 4 components matrix of high qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 4, double, highp> highp_dmat3x4; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 4 columns of 2 components matrix of low qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 2, double, lowp> lowp_dmat4x2; - - /// 4 columns of 2 components matrix of medium qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 2, double, mediump> mediump_dmat4x2; - - /// 4 columns of 2 components matrix of high qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 2, double, highp> highp_dmat4x2; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 4 columns of 3 components matrix of low qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 3, double, lowp> lowp_dmat4x3; - - /// 4 columns of 3 components matrix of medium qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 3, double, mediump> mediump_dmat4x3; - - /// 4 columns of 3 components matrix of high qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 3, double, highp> highp_dmat4x3; - - /// @} - - /// @addtogroup core_precision - /// @{ - - /// 4 columns of 4 components matrix of low qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, double, lowp> lowp_dmat4; - - /// 4 columns of 4 components matrix of medium qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, double, mediump> mediump_dmat4; - - /// 4 columns of 4 components matrix of high qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, double, highp> highp_dmat4; - - /// 4 columns of 4 components matrix of low qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, double, lowp> lowp_dmat4x4; - - /// 4 columns of 4 components matrix of medium qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, double, mediump> mediump_dmat4x4; - - /// 4 columns of 4 components matrix of high qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, double, highp> highp_dmat4x4; - - /// @} - -#if(defined(GLM_PRECISION_LOWP_DOUBLE)) - typedef lowp_dmat2x2 dmat2x2; - typedef lowp_dmat2x3 dmat2x3; - typedef lowp_dmat2x4 dmat2x4; - typedef lowp_dmat3x2 dmat3x2; - typedef lowp_dmat3x3 dmat3x3; - typedef lowp_dmat3x4 dmat3x4; - typedef lowp_dmat4x2 dmat4x2; - typedef lowp_dmat4x3 dmat4x3; - typedef lowp_dmat4x4 dmat4x4; -#elif(defined(GLM_PRECISION_MEDIUMP_DOUBLE)) - typedef mediump_dmat2x2 dmat2x2; - typedef mediump_dmat2x3 dmat2x3; - typedef mediump_dmat2x4 dmat2x4; - typedef mediump_dmat3x2 dmat3x2; - typedef mediump_dmat3x3 dmat3x3; - typedef mediump_dmat3x4 dmat3x4; - typedef mediump_dmat4x2 dmat4x2; - typedef mediump_dmat4x3 dmat4x3; - typedef mediump_dmat4x4 dmat4x4; -#else //defined(GLM_PRECISION_HIGHP_DOUBLE) - - //! 2 * 2 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat2x2 dmat2; - - //! 3 * 3 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat3x3 dmat3; - - //! 4 * 4 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat4x4 dmat4; - - //! 2 * 2 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat2x2 dmat2x2; - - //! 2 * 3 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat2x3 dmat2x3; - - //! 2 * 4 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat2x4 dmat2x4; - - //! 3 * 2 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat3x2 dmat3x2; - - /// 3 * 3 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat3x3 dmat3x3; - - /// 3 * 4 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat3x4 dmat3x4; - - /// 4 * 2 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat4x2 dmat4x2; - - /// 4 * 3 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat4x3 dmat4x3; - - /// 4 * 4 matrix of double-qualifier floating-point numbers. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - typedef highp_dmat4x4 dmat4x4; - -#endif//GLM_PRECISION - - /// @} -}//namespace glm diff --git a/glm/detail/type_mat.inl b/glm/detail/type_mat.inl deleted file mode 100644 index 57149954..00000000 --- a/glm/detail/type_mat.inl +++ /dev/null @@ -1,3 +0,0 @@ -/// @ref core -/// @file glm/detail/type_mat.inl - diff --git a/glm/detail/type_mat2x2.hpp b/glm/detail/type_mat2x2.hpp index f8e5075f..033908f4 100644 --- a/glm/detail/type_mat2x2.hpp +++ b/glm/detail/type_mat2x2.hpp @@ -4,7 +4,6 @@ #pragma once #include "type_vec2.hpp" -#include "type_mat.hpp" #include #include diff --git a/glm/detail/type_mat2x2.inl b/glm/detail/type_mat2x2.inl index d08caded..d51da72e 100644 --- a/glm/detail/type_mat2x2.inl +++ b/glm/detail/type_mat2x2.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/detail/type_mat2x2.inl #include "../matrix.hpp" diff --git a/glm/detail/type_mat2x3.hpp b/glm/detail/type_mat2x3.hpp index 6ca3ee19..d6596e46 100644 --- a/glm/detail/type_mat2x3.hpp +++ b/glm/detail/type_mat2x3.hpp @@ -5,7 +5,6 @@ #include "type_vec2.hpp" #include "type_vec3.hpp" -#include "type_mat.hpp" #include #include diff --git a/glm/detail/type_mat2x3.inl b/glm/detail/type_mat2x3.inl index 4803f0f4..49c4f520 100644 --- a/glm/detail/type_mat2x3.inl +++ b/glm/detail/type_mat2x3.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/detail/type_mat2x3.inl namespace glm { diff --git a/glm/detail/type_mat2x4.hpp b/glm/detail/type_mat2x4.hpp index 5732e5fe..ff03e215 100644 --- a/glm/detail/type_mat2x4.hpp +++ b/glm/detail/type_mat2x4.hpp @@ -5,7 +5,6 @@ #include "type_vec2.hpp" #include "type_vec4.hpp" -#include "type_mat.hpp" #include #include diff --git a/glm/detail/type_mat2x4.inl b/glm/detail/type_mat2x4.inl index 47bfa8d7..9a404a43 100644 --- a/glm/detail/type_mat2x4.inl +++ b/glm/detail/type_mat2x4.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/detail/type_mat2x4.inl namespace glm { diff --git a/glm/detail/type_mat3x2.hpp b/glm/detail/type_mat3x2.hpp index e2ac5e37..e1665813 100644 --- a/glm/detail/type_mat3x2.hpp +++ b/glm/detail/type_mat3x2.hpp @@ -5,7 +5,6 @@ #include "type_vec2.hpp" #include "type_vec3.hpp" -#include "type_mat.hpp" #include #include diff --git a/glm/detail/type_mat3x2.inl b/glm/detail/type_mat3x2.inl index 5d55654c..5fb864b9 100644 --- a/glm/detail/type_mat3x2.inl +++ b/glm/detail/type_mat3x2.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/detail/type_mat3x2.inl namespace glm { diff --git a/glm/detail/type_mat3x3.hpp b/glm/detail/type_mat3x3.hpp index ce860245..3174872e 100644 --- a/glm/detail/type_mat3x3.hpp +++ b/glm/detail/type_mat3x3.hpp @@ -4,7 +4,6 @@ #pragma once #include "type_vec3.hpp" -#include "type_mat.hpp" #include #include diff --git a/glm/detail/type_mat3x3.inl b/glm/detail/type_mat3x3.inl index 6883687d..e7ef6a12 100644 --- a/glm/detail/type_mat3x3.inl +++ b/glm/detail/type_mat3x3.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/detail/type_mat3x3.inl #include "../matrix.hpp" diff --git a/glm/detail/type_mat3x4.hpp b/glm/detail/type_mat3x4.hpp index 24c87c1e..6e40b903 100644 --- a/glm/detail/type_mat3x4.hpp +++ b/glm/detail/type_mat3x4.hpp @@ -5,7 +5,6 @@ #include "type_vec3.hpp" #include "type_vec4.hpp" -#include "type_mat.hpp" #include #include diff --git a/glm/detail/type_mat3x4.inl b/glm/detail/type_mat3x4.inl index 992cab69..798847c0 100644 --- a/glm/detail/type_mat3x4.inl +++ b/glm/detail/type_mat3x4.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/detail/type_mat3x4.inl namespace glm { diff --git a/glm/detail/type_mat4x2.hpp b/glm/detail/type_mat4x2.hpp index 2ad84bef..8d343527 100644 --- a/glm/detail/type_mat4x2.hpp +++ b/glm/detail/type_mat4x2.hpp @@ -5,7 +5,6 @@ #include "type_vec2.hpp" #include "type_vec4.hpp" -#include "type_mat.hpp" #include #include diff --git a/glm/detail/type_mat4x2.inl b/glm/detail/type_mat4x2.inl index cbad54da..7f7687da 100644 --- a/glm/detail/type_mat4x2.inl +++ b/glm/detail/type_mat4x2.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/detail/type_mat4x2.inl namespace glm { diff --git a/glm/detail/type_mat4x3.hpp b/glm/detail/type_mat4x3.hpp index 7261bf62..16e42705 100644 --- a/glm/detail/type_mat4x3.hpp +++ b/glm/detail/type_mat4x3.hpp @@ -5,7 +5,6 @@ #include "type_vec3.hpp" #include "type_vec4.hpp" -#include "type_mat.hpp" #include #include diff --git a/glm/detail/type_mat4x3.inl b/glm/detail/type_mat4x3.inl index 5794125f..cd871a05 100644 --- a/glm/detail/type_mat4x3.inl +++ b/glm/detail/type_mat4x3.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/detail/type_mat4x3.inl namespace glm { diff --git a/glm/detail/type_mat4x4.hpp b/glm/detail/type_mat4x4.hpp index 072e9ead..3517f9f5 100644 --- a/glm/detail/type_mat4x4.hpp +++ b/glm/detail/type_mat4x4.hpp @@ -4,7 +4,6 @@ #pragma once #include "type_vec4.hpp" -#include "type_mat.hpp" #include #include diff --git a/glm/detail/type_mat4x4.inl b/glm/detail/type_mat4x4.inl index 9432cee9..980da8f1 100644 --- a/glm/detail/type_mat4x4.inl +++ b/glm/detail/type_mat4x4.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/detail/type_mat4x4.inl #include "../matrix.hpp" diff --git a/glm/detail/type_mat4x4_simd.inl b/glm/detail/type_mat4x4_simd.inl index 09d0b1f1..fb3a16f0 100644 --- a/glm/detail/type_mat4x4_simd.inl +++ b/glm/detail/type_mat4x4_simd.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/detail/type_mat4x4_sse2.inl namespace glm { diff --git a/glm/ext/vec1.hpp b/glm/ext/vec1.hpp index 456e59ac..bd77f1a0 100644 --- a/glm/ext/vec1.hpp +++ b/glm/ext/vec1.hpp @@ -2,16 +2,16 @@ /// @file glm/vec1.hpp #pragma once -#include "bvec1.hpp" -#include "bvec1_precision.hpp" -#include "fvec1.hpp" -#include "fvec1_precision.hpp" -#include "dvec1.hpp" -#include "dvec1_precision.hpp" -#include "ivec1.hpp" -#include "ivec1_precision.hpp" -#include "uvec1.hpp" -#include "uvec1_precision.hpp" +#include "vector_bvec1.hpp" +#include "vector_bvec1_precision.hpp" +#include "vector_vec1.hpp" +#include "vector_vec1_precision.hpp" +#include "vector_dvec1.hpp" +#include "vector_dvec1_precision.hpp" +#include "vector_ivec1.hpp" +#include "vector_ivec1_precision.hpp" +#include "vector_uvec1.hpp" +#include "vector_uvec1_precision.hpp" namespace glm { diff --git a/glm/ext/bvec1.hpp b/glm/ext/vector_bvec1.hpp similarity index 100% rename from glm/ext/bvec1.hpp rename to glm/ext/vector_bvec1.hpp diff --git a/glm/ext/bvec1_precision.hpp b/glm/ext/vector_bvec1_precision.hpp similarity index 100% rename from glm/ext/bvec1_precision.hpp rename to glm/ext/vector_bvec1_precision.hpp diff --git a/glm/ext/dvec1.hpp b/glm/ext/vector_dvec1.hpp similarity index 100% rename from glm/ext/dvec1.hpp rename to glm/ext/vector_dvec1.hpp diff --git a/glm/ext/dvec1_precision.hpp b/glm/ext/vector_dvec1_precision.hpp similarity index 100% rename from glm/ext/dvec1_precision.hpp rename to glm/ext/vector_dvec1_precision.hpp diff --git a/glm/ext/ivec1.hpp b/glm/ext/vector_ivec1.hpp similarity index 100% rename from glm/ext/ivec1.hpp rename to glm/ext/vector_ivec1.hpp diff --git a/glm/ext/ivec1_precision.hpp b/glm/ext/vector_ivec1_precision.hpp similarity index 100% rename from glm/ext/ivec1_precision.hpp rename to glm/ext/vector_ivec1_precision.hpp diff --git a/glm/ext/uvec1.hpp b/glm/ext/vector_uvec1.hpp similarity index 100% rename from glm/ext/uvec1.hpp rename to glm/ext/vector_uvec1.hpp diff --git a/glm/ext/uvec1_precision.hpp b/glm/ext/vector_uvec1_precision.hpp similarity index 100% rename from glm/ext/uvec1_precision.hpp rename to glm/ext/vector_uvec1_precision.hpp diff --git a/glm/ext/fvec1.hpp b/glm/ext/vector_vec1.hpp similarity index 100% rename from glm/ext/fvec1.hpp rename to glm/ext/vector_vec1.hpp diff --git a/glm/ext/fvec1_precision.hpp b/glm/ext/vector_vec1_precision.hpp similarity index 100% rename from glm/ext/fvec1_precision.hpp rename to glm/ext/vector_vec1_precision.hpp diff --git a/glm/fwd.hpp b/glm/fwd.hpp index 15638095..3c3a122d 100644 --- a/glm/fwd.hpp +++ b/glm/fwd.hpp @@ -1,13 +1,12 @@ /// @ref core /// @file glm/fwd.hpp -#include "detail/setup.hpp" - #pragma once +#include "glm.hpp" +/* #include "detail/type_int.hpp" #include "detail/type_float.hpp" -#include "detail/type_mat.hpp" ////////////////////// // GLM_GTC_quaternion @@ -2569,3 +2568,5 @@ namespace glm #endif }//namespace glm + +*/ diff --git a/glm/gtc/bitfield.inl b/glm/gtc/bitfield.inl index 3dc6c1ed..06cf1889 100644 --- a/glm/gtc/bitfield.inl +++ b/glm/gtc/bitfield.inl @@ -1,5 +1,4 @@ /// @ref gtc_bitfield -/// @file glm/gtc/bitfield.inl #include "../simd/integer.h" diff --git a/glm/gtc/color_space.inl b/glm/gtc/color_space.inl index 53241ac0..2a900044 100644 --- a/glm/gtc/color_space.inl +++ b/glm/gtc/color_space.inl @@ -1,5 +1,4 @@ /// @ref gtc_color_space -/// @file glm/gtc/color_space.inl namespace glm{ namespace detail diff --git a/glm/gtc/constants.inl b/glm/gtc/constants.inl index b1d277c4..d194a71a 100644 --- a/glm/gtc/constants.inl +++ b/glm/gtc/constants.inl @@ -1,5 +1,4 @@ /// @ref gtc_constants -/// @file glm/gtc/constants.inl #include diff --git a/glm/gtc/epsilon.inl b/glm/gtc/epsilon.inl index bb2624c8..f1d8df64 100644 --- a/glm/gtc/epsilon.inl +++ b/glm/gtc/epsilon.inl @@ -1,5 +1,4 @@ /// @ref gtc_epsilon -/// @file glm/gtc/epsilon.inl // Dependency: #include "quaternion.hpp" diff --git a/glm/gtc/integer.inl b/glm/gtc/integer.inl index 9d4b6185..f0a8b4f2 100644 --- a/glm/gtc/integer.inl +++ b/glm/gtc/integer.inl @@ -1,5 +1,4 @@ /// @ref gtc_integer -/// @file glm/gtc/integer.inl namespace glm{ namespace detail diff --git a/glm/gtc/matrix_access.inl b/glm/gtc/matrix_access.inl index 176136ab..09fcc10d 100644 --- a/glm/gtc/matrix_access.inl +++ b/glm/gtc/matrix_access.inl @@ -1,5 +1,4 @@ /// @ref gtc_matrix_access -/// @file glm/gtc/matrix_access.inl namespace glm { diff --git a/glm/gtc/matrix_inverse.inl b/glm/gtc/matrix_inverse.inl index 592e690a..938a9408 100644 --- a/glm/gtc/matrix_inverse.inl +++ b/glm/gtc/matrix_inverse.inl @@ -1,5 +1,4 @@ /// @ref gtc_matrix_inverse -/// @file glm/gtc/matrix_inverse.inl namespace glm { diff --git a/glm/gtc/matrix_transform.inl b/glm/gtc/matrix_transform.inl index 27e6d494..eb51369d 100644 --- a/glm/gtc/matrix_transform.inl +++ b/glm/gtc/matrix_transform.inl @@ -1,5 +1,4 @@ /// @ref gtc_matrix_transform -/// @file glm/gtc/matrix_transform.inl #include "../geometric.hpp" #include "../trigonometric.hpp" diff --git a/glm/gtc/noise.inl b/glm/gtc/noise.inl index 00a80ab0..b8ae3d2e 100644 --- a/glm/gtc/noise.inl +++ b/glm/gtc/noise.inl @@ -1,5 +1,4 @@ /// @ref gtc_noise -/// @file glm/gtc/noise.inl /// // Based on the work of Stefan Gustavson and Ashima Arts on "webgl-noise": // https://github.com/ashima/webgl-noise diff --git a/glm/gtc/packing.inl b/glm/gtc/packing.inl index 90501bfe..23f4f5c6 100644 --- a/glm/gtc/packing.inl +++ b/glm/gtc/packing.inl @@ -1,5 +1,4 @@ /// @ref gtc_packing -/// @file glm/gtc/packing.inl #include "../ext/vector_relational.hpp" #include "../common.hpp" diff --git a/glm/gtc/quaternion.inl b/glm/gtc/quaternion.inl index be87086c..8a6be67e 100644 --- a/glm/gtc/quaternion.inl +++ b/glm/gtc/quaternion.inl @@ -1,5 +1,4 @@ /// @ref gtc_quaternion -/// @file glm/gtc/quaternion.inl #include "../trigonometric.hpp" #include "../geometric.hpp" diff --git a/glm/gtc/quaternion_simd.inl b/glm/gtc/quaternion_simd.inl index 06ca7b7b..58b9f8dc 100644 --- a/glm/gtc/quaternion_simd.inl +++ b/glm/gtc/quaternion_simd.inl @@ -1,5 +1,4 @@ /// @ref core -/// @file glm/gtc/quaternion_simd.inl #if GLM_ARCH & GLM_ARCH_SSE2_BIT diff --git a/glm/gtc/random.inl b/glm/gtc/random.inl index ed8214d1..f7d2588a 100644 --- a/glm/gtc/random.inl +++ b/glm/gtc/random.inl @@ -1,5 +1,4 @@ /// @ref gtc_random -/// @file glm/gtc/random.inl #include "../geometric.hpp" #include "../exponential.hpp" diff --git a/glm/gtc/reciprocal.inl b/glm/gtc/reciprocal.inl index bb3e3670..d88729e8 100644 --- a/glm/gtc/reciprocal.inl +++ b/glm/gtc/reciprocal.inl @@ -1,5 +1,4 @@ /// @ref gtc_reciprocal -/// @file glm/gtc/reciprocal.inl #include "../trigonometric.hpp" #include diff --git a/glm/gtc/round.inl b/glm/gtc/round.inl index 3f06f6ea..0d4d7d67 100644 --- a/glm/gtc/round.inl +++ b/glm/gtc/round.inl @@ -1,5 +1,4 @@ /// @ref gtc_round -/// @file glm/gtc/round.inl #include "../integer.hpp" diff --git a/glm/gtc/type_precision.inl b/glm/gtc/type_precision.inl index cbfd4d85..ae809120 100644 --- a/glm/gtc/type_precision.inl +++ b/glm/gtc/type_precision.inl @@ -1,5 +1,4 @@ -/// @ref gtc_swizzle -/// @file glm/gtc/swizzle.inl +/// @ref gtc_precision namespace glm { diff --git a/glm/gtc/type_ptr.inl b/glm/gtc/type_ptr.inl index 7a9e21ec..4bb2e42b 100644 --- a/glm/gtc/type_ptr.inl +++ b/glm/gtc/type_ptr.inl @@ -1,5 +1,4 @@ /// @ref gtc_type_ptr -/// @file glm/gtc/type_ptr.inl #include diff --git a/glm/gtc/ulp.inl b/glm/gtc/ulp.inl index 4851a696..eb956f6f 100644 --- a/glm/gtc/ulp.inl +++ b/glm/gtc/ulp.inl @@ -1,5 +1,4 @@ /// @ref gtc_ulp -/// @file glm/gtc/ulp.inl /// /// Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. /// diff --git a/glm/gtx/associated_min_max.inl b/glm/gtx/associated_min_max.inl index d0666cc9..1a459add 100644 --- a/glm/gtx/associated_min_max.inl +++ b/glm/gtx/associated_min_max.inl @@ -1,5 +1,4 @@ /// @ref gtx_associated_min_max -/// @file glm/gtx/associated_min_max.inl namespace glm{ diff --git a/glm/gtx/bit.inl b/glm/gtx/bit.inl index 3f0aac45..621b6262 100644 --- a/glm/gtx/bit.inl +++ b/glm/gtx/bit.inl @@ -1,5 +1,4 @@ /// @ref gtx_bit -/// @file glm/gtx/bit.inl namespace glm { diff --git a/glm/gtx/closest_point.inl b/glm/gtx/closest_point.inl index 26d1e382..0a39b042 100644 --- a/glm/gtx/closest_point.inl +++ b/glm/gtx/closest_point.inl @@ -1,5 +1,4 @@ /// @ref gtx_closest_point -/// @file glm/gtx/closest_point.inl namespace glm { diff --git a/glm/gtx/color_encoding.inl b/glm/gtx/color_encoding.inl index 8dca67b9..e50fa3ef 100644 --- a/glm/gtx/color_encoding.inl +++ b/glm/gtx/color_encoding.inl @@ -1,5 +1,4 @@ /// @ref gtx_color_encoding -/// @file glm/gtx/color_encoding.inl namespace glm { diff --git a/glm/gtx/color_space.inl b/glm/gtx/color_space.inl index ff82395b..f698afe1 100644 --- a/glm/gtx/color_space.inl +++ b/glm/gtx/color_space.inl @@ -1,5 +1,4 @@ /// @ref gtx_color_space -/// @file glm/gtx/color_space.inl namespace glm { diff --git a/glm/gtx/color_space_YCoCg.inl b/glm/gtx/color_space_YCoCg.inl index 105a5765..83ba857c 100644 --- a/glm/gtx/color_space_YCoCg.inl +++ b/glm/gtx/color_space_YCoCg.inl @@ -1,5 +1,4 @@ /// @ref gtx_color_space_YCoCg -/// @file glm/gtx/color_space_YCoCg.inl namespace glm { diff --git a/glm/gtx/common.inl b/glm/gtx/common.inl index 54fade3e..4ad2126d 100644 --- a/glm/gtx/common.inl +++ b/glm/gtx/common.inl @@ -1,5 +1,4 @@ /// @ref gtx_common -/// @file glm/gtx/common.inl #include #include "../gtc/epsilon.hpp" diff --git a/glm/gtx/compatibility.inl b/glm/gtx/compatibility.inl index 11affa1c..fb7aee05 100644 --- a/glm/gtx/compatibility.inl +++ b/glm/gtx/compatibility.inl @@ -1,5 +1,4 @@ /// @ref gtx_compatibility -/// @file glm/gtx/compatibility.inl #include diff --git a/glm/gtx/component_wise.inl b/glm/gtx/component_wise.inl index 8ca0ca98..cbbc7d41 100644 --- a/glm/gtx/component_wise.inl +++ b/glm/gtx/component_wise.inl @@ -1,5 +1,4 @@ /// @ref gtx_component_wise -/// @file glm/gtx/component_wise.inl #include diff --git a/glm/gtx/dual_quaternion.inl b/glm/gtx/dual_quaternion.inl index 4cf8581c..3223846e 100644 --- a/glm/gtx/dual_quaternion.inl +++ b/glm/gtx/dual_quaternion.inl @@ -1,5 +1,4 @@ /// @ref gtx_dual_quaternion -/// @file glm/gtx/dual_quaternion.inl #include "../geometric.hpp" #include diff --git a/glm/gtx/easing.inl b/glm/gtx/easing.inl index b6d7886f..4b7d05b7 100644 --- a/glm/gtx/easing.inl +++ b/glm/gtx/easing.inl @@ -1,5 +1,4 @@ /// @ref gtx_easing -/// @file glm/gtx/easing.inl #include diff --git a/glm/gtx/euler_angles.inl b/glm/gtx/euler_angles.inl index 9f11f852..68c50124 100644 --- a/glm/gtx/euler_angles.inl +++ b/glm/gtx/euler_angles.inl @@ -1,5 +1,4 @@ /// @ref gtx_euler_angles -/// @file glm/gtx/euler_angles.inl #include "compatibility.hpp" // glm::atan2 diff --git a/glm/gtx/extend.inl b/glm/gtx/extend.inl index 9371ee60..32128eb2 100644 --- a/glm/gtx/extend.inl +++ b/glm/gtx/extend.inl @@ -1,5 +1,4 @@ /// @ref gtx_extend -/// @file glm/gtx/extend.inl namespace glm { diff --git a/glm/gtx/extended_min_max.inl b/glm/gtx/extended_min_max.inl index 33f7127c..e72d1ccf 100644 --- a/glm/gtx/extended_min_max.inl +++ b/glm/gtx/extended_min_max.inl @@ -1,5 +1,4 @@ /// @ref gtx_extended_min_max -/// @file glm/gtx/extended_min_max.inl namespace glm { diff --git a/glm/gtx/exterior_product.inl b/glm/gtx/exterior_product.inl index b4b36341..93661fd3 100644 --- a/glm/gtx/exterior_product.inl +++ b/glm/gtx/exterior_product.inl @@ -1,5 +1,4 @@ -/// @ref core -/// @file glm/detail/func_geometric.inl +/// @ref gtx_exterior_product #include diff --git a/glm/gtx/fast_exponential.inl b/glm/gtx/fast_exponential.inl index 1be34e59..f139e505 100644 --- a/glm/gtx/fast_exponential.inl +++ b/glm/gtx/fast_exponential.inl @@ -1,5 +1,4 @@ /// @ref gtx_fast_exponential -/// @file glm/gtx/fast_exponential.inl namespace glm { diff --git a/glm/gtx/fast_square_root.inl b/glm/gtx/fast_square_root.inl index 18f5eb3e..0bc35900 100644 --- a/glm/gtx/fast_square_root.inl +++ b/glm/gtx/fast_square_root.inl @@ -1,5 +1,4 @@ /// @ref gtx_fast_square_root -/// @file glm/gtx/fast_square_root.inl namespace glm { diff --git a/glm/gtx/fast_trigonometry.inl b/glm/gtx/fast_trigonometry.inl index ef969239..1a710cbc 100644 --- a/glm/gtx/fast_trigonometry.inl +++ b/glm/gtx/fast_trigonometry.inl @@ -1,5 +1,4 @@ /// @ref gtx_fast_trigonometry -/// @file glm/gtx/fast_trigonometry.inl namespace glm{ namespace detail diff --git a/glm/gtx/float_notmalize.inl b/glm/gtx/float_notmalize.inl index bceab10e..8cdbc5aa 100644 --- a/glm/gtx/float_notmalize.inl +++ b/glm/gtx/float_notmalize.inl @@ -1,5 +1,4 @@ /// @ref gtx_float_normalize -/// @file glm/gtx/float_normalize.inl #include diff --git a/glm/gtx/functions.inl b/glm/gtx/functions.inl index ac1e1129..29cbb20b 100644 --- a/glm/gtx/functions.inl +++ b/glm/gtx/functions.inl @@ -1,5 +1,4 @@ /// @ref gtx_functions -/// @file glm/gtx/functions.inl #include "../exponential.hpp" diff --git a/glm/gtx/gradient_paint.inl b/glm/gtx/gradient_paint.inl index e2e92b59..4c495e62 100644 --- a/glm/gtx/gradient_paint.inl +++ b/glm/gtx/gradient_paint.inl @@ -1,5 +1,4 @@ /// @ref gtx_gradient_paint -/// @file glm/gtx/gradient_paint.inl namespace glm { diff --git a/glm/gtx/handed_coordinate_space.inl b/glm/gtx/handed_coordinate_space.inl index 16392455..e43c17bd 100644 --- a/glm/gtx/handed_coordinate_space.inl +++ b/glm/gtx/handed_coordinate_space.inl @@ -1,5 +1,4 @@ /// @ref gtx_handed_coordinate_space -/// @file glm/gtx/handed_coordinate_space.inl namespace glm { diff --git a/glm/gtx/hash.inl b/glm/gtx/hash.inl index 32e7f123..64443ef8 100644 --- a/glm/gtx/hash.inl +++ b/glm/gtx/hash.inl @@ -1,5 +1,4 @@ /// @ref gtx_hash -/// @file glm/gtx/hash.inl /// /// @see core (dependence) /// diff --git a/glm/gtx/integer.inl b/glm/gtx/integer.inl index bd844e81..956366b2 100644 --- a/glm/gtx/integer.inl +++ b/glm/gtx/integer.inl @@ -1,5 +1,4 @@ /// @ref gtx_integer -/// @file glm/gtx/integer.inl namespace glm { diff --git a/glm/gtx/intersect.inl b/glm/gtx/intersect.inl index 00b4de8d..e76fd628 100644 --- a/glm/gtx/intersect.inl +++ b/glm/gtx/intersect.inl @@ -1,5 +1,4 @@ /// @ref gtx_intersect -/// @file glm/gtx/intersect.inl namespace glm { diff --git a/glm/gtx/io.inl b/glm/gtx/io.inl index edb76bf5..054facbf 100644 --- a/glm/gtx/io.inl +++ b/glm/gtx/io.inl @@ -1,5 +1,4 @@ /// @ref gtx_io -/// @file glm/gtx/io.inl /// @author Jan P Springer (regnirpsj@gmail.com) #include // std::fixed, std::setfill<>, std::setprecision, std::right, std::setw diff --git a/glm/gtx/log_base.inl b/glm/gtx/log_base.inl index 64707e7a..4bbb8e89 100644 --- a/glm/gtx/log_base.inl +++ b/glm/gtx/log_base.inl @@ -1,5 +1,4 @@ /// @ref gtx_log_base -/// @file glm/gtx/log_base.inl namespace glm { diff --git a/glm/gtx/matrix_cross_product.inl b/glm/gtx/matrix_cross_product.inl index d8ec11f9..3a153977 100644 --- a/glm/gtx/matrix_cross_product.inl +++ b/glm/gtx/matrix_cross_product.inl @@ -1,5 +1,4 @@ /// @ref gtx_matrix_cross_product -/// @file glm/gtx/matrix_cross_product.inl namespace glm { diff --git a/glm/gtx/matrix_decompose.inl b/glm/gtx/matrix_decompose.inl index 02a5accc..62f0c6a1 100644 --- a/glm/gtx/matrix_decompose.inl +++ b/glm/gtx/matrix_decompose.inl @@ -1,5 +1,4 @@ /// @ref gtx_matrix_decompose -/// @file glm/gtx/matrix_decompose.inl #include "../gtc/constants.hpp" #include "../gtc/epsilon.hpp" diff --git a/glm/gtx/matrix_factorisation.inl b/glm/gtx/matrix_factorisation.inl index f0d9560c..c479b8ad 100644 --- a/glm/gtx/matrix_factorisation.inl +++ b/glm/gtx/matrix_factorisation.inl @@ -1,5 +1,4 @@ /// @ref gtx_matrix_factorisation -/// @file glm/gtx/matrix_factorisation.inl namespace glm { diff --git a/glm/gtx/matrix_interpolation.inl b/glm/gtx/matrix_interpolation.inl index c80ce2d2..de40b7d7 100644 --- a/glm/gtx/matrix_interpolation.inl +++ b/glm/gtx/matrix_interpolation.inl @@ -1,5 +1,4 @@ /// @ref gtx_matrix_interpolation -/// @file glm/gtx/matrix_interpolation.hpp #include "../gtc/constants.hpp" diff --git a/glm/gtx/matrix_major_storage.inl b/glm/gtx/matrix_major_storage.inl index 8b1b1a83..279dd343 100644 --- a/glm/gtx/matrix_major_storage.inl +++ b/glm/gtx/matrix_major_storage.inl @@ -1,5 +1,4 @@ /// @ref gtx_matrix_major_storage -/// @file glm/gtx/matrix_major_storage.hpp namespace glm { diff --git a/glm/gtx/matrix_operation.inl b/glm/gtx/matrix_operation.inl index da1aab85..cae036e5 100644 --- a/glm/gtx/matrix_operation.inl +++ b/glm/gtx/matrix_operation.inl @@ -1,5 +1,4 @@ /// @ref gtx_matrix_operation -/// @file glm/gtx/matrix_operation.inl namespace glm { diff --git a/glm/gtx/matrix_query.inl b/glm/gtx/matrix_query.inl index 38b520f1..77bd2310 100644 --- a/glm/gtx/matrix_query.inl +++ b/glm/gtx/matrix_query.inl @@ -1,5 +1,4 @@ /// @ref gtx_matrix_query -/// @file glm/gtx/matrix_query.inl namespace glm { diff --git a/glm/gtx/matrix_transform_2d.inl b/glm/gtx/matrix_transform_2d.inl index 9ae83d94..a68d24dc 100644 --- a/glm/gtx/matrix_transform_2d.inl +++ b/glm/gtx/matrix_transform_2d.inl @@ -1,5 +1,4 @@ /// @ref gtx_matrix_transform_2d -/// @file glm/gtc/matrix_transform_2d.inl /// @author Miguel Ángel Pérez Martínez #include "../trigonometric.hpp" diff --git a/glm/gtx/mixed_product.inl b/glm/gtx/mixed_product.inl index 01e94ecb..e5cdbdb4 100644 --- a/glm/gtx/mixed_product.inl +++ b/glm/gtx/mixed_product.inl @@ -1,5 +1,4 @@ /// @ref gtx_mixed_product -/// @file glm/gtx/mixed_product.inl namespace glm { diff --git a/glm/gtx/norm.inl b/glm/gtx/norm.inl index 7bd64e87..c3f468c3 100644 --- a/glm/gtx/norm.inl +++ b/glm/gtx/norm.inl @@ -1,5 +1,4 @@ /// @ref gtx_norm -/// @file glm/gtx/norm.inl #include "../detail/qualifier.hpp" diff --git a/glm/gtx/normal.inl b/glm/gtx/normal.inl index bcd74e5d..74f9fc99 100644 --- a/glm/gtx/normal.inl +++ b/glm/gtx/normal.inl @@ -1,5 +1,4 @@ /// @ref gtx_normal -/// @file glm/gtx/normal.inl namespace glm { diff --git a/glm/gtx/normalize_dot.inl b/glm/gtx/normalize_dot.inl index 8b88860e..7bcd9a53 100644 --- a/glm/gtx/normalize_dot.inl +++ b/glm/gtx/normalize_dot.inl @@ -1,5 +1,4 @@ /// @ref gtx_normalize_dot -/// @file glm/gtx/normalize_dot.inl namespace glm { diff --git a/glm/gtx/number_precision.inl b/glm/gtx/number_precision.inl index b54cf66b..b39d71c3 100644 --- a/glm/gtx/number_precision.inl +++ b/glm/gtx/number_precision.inl @@ -1,5 +1,4 @@ /// @ref gtx_number_precision -/// @file glm/gtx/number_precision.inl namespace glm { diff --git a/glm/gtx/optimum_pow.inl b/glm/gtx/optimum_pow.inl index 78b729f7..a26c19c1 100644 --- a/glm/gtx/optimum_pow.inl +++ b/glm/gtx/optimum_pow.inl @@ -1,5 +1,4 @@ /// @ref gtx_optimum_pow -/// @file glm/gtx/optimum_pow.inl namespace glm { diff --git a/glm/gtx/orthonormalize.inl b/glm/gtx/orthonormalize.inl index c65db11b..cb553ba6 100644 --- a/glm/gtx/orthonormalize.inl +++ b/glm/gtx/orthonormalize.inl @@ -1,5 +1,4 @@ /// @ref gtx_orthonormalize -/// @file glm/gtx/orthonormalize.inl namespace glm { diff --git a/glm/gtx/perpendicular.inl b/glm/gtx/perpendicular.inl index 3b99eed8..1e72f334 100644 --- a/glm/gtx/perpendicular.inl +++ b/glm/gtx/perpendicular.inl @@ -1,5 +1,4 @@ /// @ref gtx_perpendicular -/// @file glm/gtx/perpendicular.inl namespace glm { diff --git a/glm/gtx/polar_coordinates.inl b/glm/gtx/polar_coordinates.inl index cd1f357c..371c8ddd 100644 --- a/glm/gtx/polar_coordinates.inl +++ b/glm/gtx/polar_coordinates.inl @@ -1,5 +1,4 @@ /// @ref gtx_polar_coordinates -/// @file glm/gtx/polar_coordinates.inl namespace glm { diff --git a/glm/gtx/projection.inl b/glm/gtx/projection.inl index 90950f8b..f23f884f 100644 --- a/glm/gtx/projection.inl +++ b/glm/gtx/projection.inl @@ -1,5 +1,4 @@ /// @ref gtx_projection -/// @file glm/gtx/projection.inl namespace glm { diff --git a/glm/gtx/quaternion.inl b/glm/gtx/quaternion.inl index 4aadfa8f..b497ac31 100644 --- a/glm/gtx/quaternion.inl +++ b/glm/gtx/quaternion.inl @@ -1,5 +1,4 @@ /// @ref gtx_quaternion -/// @file glm/gtx/quaternion.inl #include #include "../gtc/constants.hpp" diff --git a/glm/gtx/raw_data.inl b/glm/gtx/raw_data.inl index 29af1481..c740317d 100644 --- a/glm/gtx/raw_data.inl +++ b/glm/gtx/raw_data.inl @@ -1,2 +1,2 @@ /// @ref gtx_raw_data -/// @file glm/gtx/raw_data.inl + diff --git a/glm/gtx/rotate_normalized_axis.inl b/glm/gtx/rotate_normalized_axis.inl index 66e09103..efd265cd 100644 --- a/glm/gtx/rotate_normalized_axis.inl +++ b/glm/gtx/rotate_normalized_axis.inl @@ -1,5 +1,4 @@ /// @ref gtx_rotate_normalized_axis -/// @file glm/gtx/rotate_normalized_axis.inl namespace glm { diff --git a/glm/gtx/rotate_vector.inl b/glm/gtx/rotate_vector.inl index d883f24e..f8136e76 100644 --- a/glm/gtx/rotate_vector.inl +++ b/glm/gtx/rotate_vector.inl @@ -1,5 +1,4 @@ /// @ref gtx_rotate_vector -/// @file glm/gtx/rotate_vector.inl namespace glm { diff --git a/glm/gtx/scalar_relational.inl b/glm/gtx/scalar_relational.inl index c616e07e..c2a121cf 100644 --- a/glm/gtx/scalar_relational.inl +++ b/glm/gtx/scalar_relational.inl @@ -1,5 +1,4 @@ /// @ref gtx_scalar_relational -/// @file glm/gtx/scalar_relational.inl namespace glm { diff --git a/glm/gtx/spline.inl b/glm/gtx/spline.inl index ca7b439e..c3fd0565 100644 --- a/glm/gtx/spline.inl +++ b/glm/gtx/spline.inl @@ -1,5 +1,4 @@ /// @ref gtx_spline -/// @file glm/gtx/spline.inl namespace glm { diff --git a/glm/gtx/std_based_type.inl b/glm/gtx/std_based_type.inl index ca431a33..9c34bdb6 100644 --- a/glm/gtx/std_based_type.inl +++ b/glm/gtx/std_based_type.inl @@ -1,5 +1,4 @@ /// @ref gtx_std_based_type -/// @file glm/gtx/std_based_type.inl namespace glm { diff --git a/glm/gtx/string_cast.inl b/glm/gtx/string_cast.inl index 09e4c5c6..dd435814 100644 --- a/glm/gtx/string_cast.inl +++ b/glm/gtx/string_cast.inl @@ -1,5 +1,4 @@ /// @ref gtx_string_cast -/// @file glm/gtx/string_cast.inl #include #include diff --git a/glm/gtx/texture.inl b/glm/gtx/texture.inl index 7c124f22..593c8261 100644 --- a/glm/gtx/texture.inl +++ b/glm/gtx/texture.inl @@ -1,5 +1,4 @@ /// @ref gtx_texture -/// @file glm/gtx/texture.inl namespace glm { diff --git a/glm/gtx/transform.inl b/glm/gtx/transform.inl index 56bfc902..48ee6801 100644 --- a/glm/gtx/transform.inl +++ b/glm/gtx/transform.inl @@ -1,5 +1,4 @@ /// @ref gtx_transform -/// @file glm/gtx/transform.inl namespace glm { diff --git a/glm/gtx/transform2.inl b/glm/gtx/transform2.inl index 59091eb5..2b53198b 100644 --- a/glm/gtx/transform2.inl +++ b/glm/gtx/transform2.inl @@ -1,5 +1,4 @@ /// @ref gtx_transform2 -/// @file glm/gtx/transform2.inl namespace glm { diff --git a/glm/gtx/type_aligned.inl b/glm/gtx/type_aligned.inl index 83202dff..54c1b818 100644 --- a/glm/gtx/type_aligned.inl +++ b/glm/gtx/type_aligned.inl @@ -1,5 +1,4 @@ /// @ref gtc_type_aligned -/// @file glm/gtc/type_aligned.inl namespace glm { diff --git a/glm/gtx/type_trait.inl b/glm/gtx/type_trait.inl index 1cdf3322..8cace179 100644 --- a/glm/gtx/type_trait.inl +++ b/glm/gtx/type_trait.inl @@ -1,5 +1,4 @@ /// @ref gtx_type_trait -/// @file glm/gtx/type_trait.inl namespace glm { diff --git a/glm/gtx/vector_angle.inl b/glm/gtx/vector_angle.inl index 38f8b8ca..a1f957a5 100644 --- a/glm/gtx/vector_angle.inl +++ b/glm/gtx/vector_angle.inl @@ -1,5 +1,4 @@ /// @ref gtx_vector_angle -/// @file glm/gtx/vector_angle.inl namespace glm { diff --git a/glm/gtx/vector_query.inl b/glm/gtx/vector_query.inl index 0d8cddcf..d1a5c9be 100644 --- a/glm/gtx/vector_query.inl +++ b/glm/gtx/vector_query.inl @@ -1,5 +1,4 @@ /// @ref gtx_vector_query -/// @file glm/gtx/vector_query.inl #include diff --git a/glm/gtx/wrap.inl b/glm/gtx/wrap.inl index 83e350f1..409a316a 100644 --- a/glm/gtx/wrap.inl +++ b/glm/gtx/wrap.inl @@ -1,5 +1,4 @@ /// @ref gtx_wrap -/// @file glm/gtx/wrap.inl namespace glm { diff --git a/glm/mat2x2.hpp b/glm/mat2x2.hpp index f517efe0..980a2e42 100644 --- a/glm/mat2x2.hpp +++ b/glm/mat2x2.hpp @@ -2,8 +2,10 @@ /// @file glm/mat2x2.hpp #pragma once -#include "dmat2x2.hpp" -#include "fmat2x2.hpp" +#include "matrix_dmat2x2.hpp" +#include "matrix_dmat2x2_precision.hpp" +#include "matrix_mat2x2.hpp" +#include "matrix_mat2x2_precision.hpp" namespace glm { diff --git a/glm/mat2x3.hpp b/glm/mat2x3.hpp index bf0170f4..3f3f9316 100644 --- a/glm/mat2x3.hpp +++ b/glm/mat2x3.hpp @@ -1,34 +1,16 @@ /// @ref core /// @file glm/mat2x3.hpp -#include "detail/setup.hpp" - #pragma once - -#include "detail/type_mat2x3.hpp" +#include "matrix_dmat2x3.hpp" +#include "matrix_dmat2x3_precision.hpp" +#include "matrix_mat2x3.hpp" +#include "matrix_mat2x3_precision.hpp" namespace glm { - /// 2 columns of 3 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 3, float, lowp> lowp_mat2x3; - - /// 2 columns of 3 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 3, float, mediump> mediump_mat2x3; - - /// 2 columns of 3 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 3, float, highp> highp_mat2x3; +#if GLM_HAS_TEMPLATE_ALIASES + template using tmat2x3 = mat<2, 3, T, Q>; +#endif//GLM_HAS_TEMPLATE_ALIASES }//namespace glm - diff --git a/glm/mat2x4.hpp b/glm/mat2x4.hpp index d3c813dc..b0998184 100644 --- a/glm/mat2x4.hpp +++ b/glm/mat2x4.hpp @@ -1,33 +1,16 @@ /// @ref core /// @file glm/mat2x4.hpp -#include "detail/setup.hpp" - #pragma once - -#include "detail/type_mat2x4.hpp" +#include "matrix_dmat2x4.hpp" +#include "matrix_dmat2x4_precision.hpp" +#include "matrix_mat2x4.hpp" +#include "matrix_mat2x4_precision.hpp" namespace glm { - /// 2 columns of 4 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 4, float, lowp> lowp_mat2x4; - - /// 2 columns of 4 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 4, float, mediump> mediump_mat2x4; - - /// 2 columns of 4 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<2, 4, float, highp> highp_mat2x4; +#if GLM_HAS_TEMPLATE_ALIASES + template using tmat2x4 = mat<2, 4, T, Q>; +#endif//GLM_HAS_TEMPLATE_ALIASES }//namespace glm diff --git a/glm/mat3x2.hpp b/glm/mat3x2.hpp index 45007697..eb571bcd 100644 --- a/glm/mat3x2.hpp +++ b/glm/mat3x2.hpp @@ -1,33 +1,16 @@ /// @ref core /// @file glm/mat3x2.hpp -#include "detail/setup.hpp" - #pragma once - -#include "detail/type_mat3x2.hpp" +#include "matrix_dmat3x2.hpp" +#include "matrix_dmat3x2_precision.hpp" +#include "matrix_mat3x2.hpp" +#include "matrix_mat3x2_precision.hpp" namespace glm { - /// 3 columns of 2 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 2, float, lowp> lowp_mat3x2; +#if GLM_HAS_TEMPLATE_ALIASES + template using tmat3x2 = mat<3, 2, T, Q>; +#endif//GLM_HAS_TEMPLATE_ALIASES - /// 3 columns of 2 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 2, float, mediump> mediump_mat3x2; - - /// 3 columns of 2 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 2, float, highp> highp_mat3x2; - -}//namespace +}//namespace glm diff --git a/glm/mat3x3.hpp b/glm/mat3x3.hpp index 586d1f0d..a10f8bcd 100644 --- a/glm/mat3x3.hpp +++ b/glm/mat3x3.hpp @@ -1,54 +1,16 @@ /// @ref core /// @file glm/mat3x3.hpp -#include "detail/setup.hpp" - #pragma once - -#include "detail/type_mat3x3.hpp" +#include "matrix_dmat3x3.hpp" +#include "matrix_dmat3x3_precision.hpp" +#include "matrix_mat3x3.hpp" +#include "matrix_mat3x3_precision.hpp" namespace glm { - /// 3 columns of 3 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, lowp> lowp_mat3; - - /// 3 columns of 3 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, mediump> mediump_mat3; - - /// 3 columns of 3 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, highp> highp_mat3; - - /// 3 columns of 3 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, lowp> lowp_mat3x3; - - /// 3 columns of 3 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, mediump> mediump_mat3x3; - - /// 3 columns of 3 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 3, float, highp> highp_mat3x3; +#if GLM_HAS_TEMPLATE_ALIASES + template using tmat3x3 = mat<3, 3, T, Q>; +#endif//GLM_HAS_TEMPLATE_ALIASES }//namespace glm diff --git a/glm/mat3x4.hpp b/glm/mat3x4.hpp index d1294aea..0975e2e3 100644 --- a/glm/mat3x4.hpp +++ b/glm/mat3x4.hpp @@ -1,33 +1,16 @@ /// @ref core /// @file glm/mat3x4.hpp -#include "detail/setup.hpp" - #pragma once - -#include "detail/type_mat3x4.hpp" +#include "matrix_dmat3x4.hpp" +#include "matrix_dmat3x4_precision.hpp" +#include "matrix_mat3x4.hpp" +#include "matrix_mat3x4_precision.hpp" namespace glm { - /// 3 columns of 4 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 4, float, lowp> lowp_mat3x4; - - /// 3 columns of 4 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 4, float, mediump> mediump_mat3x4; - - /// 3 columns of 4 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<3, 4, float, highp> highp_mat3x4; +#if GLM_HAS_TEMPLATE_ALIASES + template using tmat3x4 = mat<3, 4, T, Q>; +#endif//GLM_HAS_TEMPLATE_ALIASES }//namespace glm diff --git a/glm/mat4x2.hpp b/glm/mat4x2.hpp index c6f8758d..883283da 100644 --- a/glm/mat4x2.hpp +++ b/glm/mat4x2.hpp @@ -1,33 +1,16 @@ /// @ref core /// @file glm/mat4x2.hpp -#include "detail/setup.hpp" - #pragma once - -#include "detail/type_mat4x2.hpp" +#include "matrix_dmat4x2.hpp" +#include "matrix_dmat4x2_precision.hpp" +#include "matrix_mat4x2.hpp" +#include "matrix_mat4x2_precision.hpp" namespace glm { - /// 4 columns of 2 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 2, float, lowp> lowp_mat4x2; - - /// 4 columns of 2 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 2, float, mediump> mediump_mat4x2; - - /// 4 columns of 2 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 2, float, highp> highp_mat4x2; +#if GLM_HAS_TEMPLATE_ALIASES + template using tmat4x2 = mat<4, 2, T, Q>; +#endif//GLM_HAS_TEMPLATE_ALIASES }//namespace glm diff --git a/glm/mat4x3.hpp b/glm/mat4x3.hpp index 88014935..62518422 100644 --- a/glm/mat4x3.hpp +++ b/glm/mat4x3.hpp @@ -1,33 +1,16 @@ /// @ref core /// @file glm/mat4x3.hpp -#include "detail/setup.hpp" - #pragma once - -#include "detail/type_mat4x3.hpp" +#include "matrix_dmat4x3.hpp" +#include "matrix_dmat4x3_precision.hpp" +#include "matrix_mat4x3.hpp" +#include "matrix_mat4x3_precision.hpp" namespace glm { - /// 4 columns of 3 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 3, float, lowp> lowp_mat4x3; - - /// 4 columns of 3 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 3, float, mediump> mediump_mat4x3; - - /// 4 columns of 3 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 3, float, highp> highp_mat4x3; +#if GLM_HAS_TEMPLATE_ALIASES + template using tmat4x3 = mat<4, 3, T, Q>; +#endif//GLM_HAS_TEMPLATE_ALIASES }//namespace glm diff --git a/glm/mat4x4.hpp b/glm/mat4x4.hpp index f3019f2a..fd41eb8d 100644 --- a/glm/mat4x4.hpp +++ b/glm/mat4x4.hpp @@ -1,54 +1,16 @@ /// @ref core /// @file glm/mat4x4.hpp -#include "detail/setup.hpp" - #pragma once - -#include "detail/type_mat4x4.hpp" +#include "matrix_dmat4x4.hpp" +#include "matrix_dmat4x4_precision.hpp" +#include "matrix_mat4x4.hpp" +#include "matrix_mat4x4_precision.hpp" namespace glm { - /// 4 columns of 4 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, lowp> lowp_mat4; - - /// 4 columns of 4 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, mediump> mediump_mat4; - - /// 4 columns of 4 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, highp> highp_mat4; - - /// 4 columns of 4 components matrix of low qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, lowp> lowp_mat4x4; - - /// 4 columns of 4 components matrix of medium qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, mediump> mediump_mat4x4; - - /// 4 columns of 4 components matrix of high qualifier floating-point numbers. - /// There is no guarantee on the actual qualifier. - /// - /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices - /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier - typedef mat<4, 4, float, highp> highp_mat4x4; +#if GLM_HAS_TEMPLATE_ALIASES + template using tmat4x4 = mat<4, 4, T, Q>; +#endif//GLM_HAS_TEMPLATE_ALIASES }//namespace glm diff --git a/glm/matrix.hpp b/glm/matrix.hpp index 437e3884..aec0af4e 100644 --- a/glm/matrix.hpp +++ b/glm/matrix.hpp @@ -19,7 +19,6 @@ // Dependencies #include "detail/qualifier.hpp" #include "detail/setup.hpp" -#include "detail/type_mat.hpp" #include "vec2.hpp" #include "vec3.hpp" #include "vec4.hpp" @@ -34,63 +33,65 @@ #include "mat4x4.hpp" namespace glm { - namespace detail +namespace detail +{ + template + struct outerProduct_trait{}; + + template + struct outerProduct_trait<2, 2, T, Q> { - template - struct outerProduct_trait<2, 2, T, Q> - { - typedef mat<2, 2, T, Q> type; - }; + typedef mat<2, 2, T, Q> type; + }; - template - struct outerProduct_trait<2, 3, T, Q> - { - typedef mat<3, 2, T, Q> type; - }; + template + struct outerProduct_trait<2, 3, T, Q> + { + typedef mat<3, 2, T, Q> type; + }; - template - struct outerProduct_trait<2, 4, T, Q> - { - typedef mat<4, 2, T, Q> type; - }; + template + struct outerProduct_trait<2, 4, T, Q> + { + typedef mat<4, 2, T, Q> type; + }; - template - struct outerProduct_trait<3, 2, T, Q> - { - typedef mat<2, 3, T, Q> type; - }; + template + struct outerProduct_trait<3, 2, T, Q> + { + typedef mat<2, 3, T, Q> type; + }; - template - struct outerProduct_trait<3, 3, T, Q> - { - typedef mat<3, 3, T, Q> type; - }; + template + struct outerProduct_trait<3, 3, T, Q> + { + typedef mat<3, 3, T, Q> type; + }; - template - struct outerProduct_trait<3, 4, T, Q> - { - typedef mat<4, 3, T, Q> type; - }; + template + struct outerProduct_trait<3, 4, T, Q> + { + typedef mat<4, 3, T, Q> type; + }; - template - struct outerProduct_trait<4, 2, T, Q> - { - typedef mat<2, 4, T, Q> type; - }; + template + struct outerProduct_trait<4, 2, T, Q> + { + typedef mat<2, 4, T, Q> type; + }; - template - struct outerProduct_trait<4, 3, T, Q> - { - typedef mat<3, 4, T, Q> type; - }; + template + struct outerProduct_trait<4, 3, T, Q> + { + typedef mat<3, 4, T, Q> type; + }; - template - struct outerProduct_trait<4, 4, T, Q> - { - typedef mat<4, 4, T, Q> type; - }; - - }//namespace detail + template + struct outerProduct_trait<4, 4, T, Q> + { + typedef mat<4, 4, T, Q> type; + }; +}//namespace detail /// @addtogroup core_func_matrix /// @{ diff --git a/glm/matrix_dmat2x2_precision.hpp b/glm/matrix_dmat2x2_precision.hpp index b30ab4c4..9dd51da7 100644 --- a/glm/matrix_dmat2x2_precision.hpp +++ b/glm/matrix_dmat2x2_precision.hpp @@ -1,5 +1,5 @@ /// @ref core -/// @file glm/dmat2x2_precision.hpp +/// @file glm/matrix_dmat2x2_precision.hpp #pragma once #include "detail/type_mat2x2.hpp" diff --git a/glm/matrix_dmat2x3.hpp b/glm/matrix_dmat2x3.hpp index 3eea986b..c5787b00 100644 --- a/glm/matrix_dmat2x3.hpp +++ b/glm/matrix_dmat2x3.hpp @@ -1,5 +1,5 @@ /// @ref core -/// @file glm/dmat2x3.hpp +/// @file glm/matrix_dmat2x3.hpp #pragma once #include "detail/type_mat2x3.hpp" diff --git a/glm/matrix_dmat2x3_precision.hpp b/glm/matrix_dmat2x3_precision.hpp new file mode 100644 index 00000000..a639ffe6 --- /dev/null +++ b/glm/matrix_dmat2x3_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_dmat2x3_precision.hpp + +#pragma once +#include "detail/type_mat2x3.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 2 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 3, double, lowp> lowp_dmat2x3; + + /// 2 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 3, double, mediump> mediump_dmat2x3; + + /// 2 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 3, double, highp> highp_dmat2x3; + + /// @} +}//namespace glm diff --git a/glm/matrix_dmat2x4.hpp b/glm/matrix_dmat2x4.hpp index 0009ad2c..54c08b0c 100644 --- a/glm/matrix_dmat2x4.hpp +++ b/glm/matrix_dmat2x4.hpp @@ -1,5 +1,5 @@ /// @ref core -/// @file glm/dmat2x4.hpp +/// @file glm/matrix_dmat2x4.hpp #pragma once #include "detail/type_mat2x4.hpp" diff --git a/glm/matrix_dmat2x4_precision.hpp b/glm/matrix_dmat2x4_precision.hpp new file mode 100644 index 00000000..5693e776 --- /dev/null +++ b/glm/matrix_dmat2x4_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_dmat2x4_precision.hpp + +#pragma once +#include "detail/type_mat2x4.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 2 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 4, double, lowp> lowp_dmat2x4; + + /// 2 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 4, double, mediump> mediump_dmat2x4; + + /// 2 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 4, double, highp> highp_dmat2x4; + + /// @} +}//namespace glm diff --git a/glm/matrix_dmat3x2.hpp b/glm/matrix_dmat3x2.hpp index b98407c3..b30902a0 100644 --- a/glm/matrix_dmat3x2.hpp +++ b/glm/matrix_dmat3x2.hpp @@ -1,5 +1,5 @@ /// @ref core -/// @file glm/dmat3x2.hpp +/// @file glm/matrix_dmat3x2.hpp #pragma once #include "detail/type_mat3x2.hpp" diff --git a/glm/matrix_dmat3x2_precision.hpp b/glm/matrix_dmat3x2_precision.hpp new file mode 100644 index 00000000..3962432f --- /dev/null +++ b/glm/matrix_dmat3x2_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_dmat3x2_precision.hpp + +#pragma once +#include "detail/type_mat3x2.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 3 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 2, double, lowp> lowp_dmat3x2; + + /// 3 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 2, double, mediump> mediump_dmat3x2; + + /// 3 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 2, double, highp> highp_dmat3x2; + + /// @} +}//namespace glm diff --git a/glm/matrix_dmat3x3.hpp b/glm/matrix_dmat3x3.hpp index b78c73fa..28a4b1da 100644 --- a/glm/matrix_dmat3x3.hpp +++ b/glm/matrix_dmat3x3.hpp @@ -1,5 +1,5 @@ /// @ref core -/// @file glm/dmat3x3.hpp +/// @file glm/matrix_dmat3x3.hpp #pragma once #include "detail/type_mat3x3.hpp" diff --git a/glm/matrix_dmat3x3_precision.hpp b/glm/matrix_dmat3x3_precision.hpp new file mode 100644 index 00000000..8cd0f069 --- /dev/null +++ b/glm/matrix_dmat3x3_precision.hpp @@ -0,0 +1,49 @@ +/// @ref core +/// @file glm/matrix_dmat3x3_precision.hpp + +#pragma once +#include "detail/type_mat3x3.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 3 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, double, lowp> lowp_dmat3; + + /// 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, double, mediump> mediump_dmat3; + + /// 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, double, highp> highp_dmat3; + + /// 3 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, double, lowp> lowp_dmat3x3; + + /// 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, double, mediump> mediump_dmat3x3; + + /// 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, double, highp> highp_dmat3x3; + + /// @} +}//namespace glm diff --git a/glm/matrix_dmat3x4.hpp b/glm/matrix_dmat3x4.hpp index fefa08df..ae8e7c43 100644 --- a/glm/matrix_dmat3x4.hpp +++ b/glm/matrix_dmat3x4.hpp @@ -1,5 +1,5 @@ /// @ref core -/// @file glm/dmat3x4.hpp +/// @file glm/matrix_dmat3x4.hpp #pragma once #include "detail/type_mat3x4.hpp" diff --git a/glm/matrix_dmat3x4_precision.hpp b/glm/matrix_dmat3x4_precision.hpp new file mode 100644 index 00000000..8c2d6c47 --- /dev/null +++ b/glm/matrix_dmat3x4_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_dmat3x4_precision.hpp + +#pragma once +#include "detail/type_mat3x4.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 3 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 4, double, lowp> lowp_dmat3x4; + + /// 3 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 4, double, mediump> mediump_dmat3x4; + + /// 3 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 4, double, highp> highp_dmat3x4; + + /// @} +}//namespace glm diff --git a/glm/matrix_dmat4x2.hpp b/glm/matrix_dmat4x2.hpp index 3b28a4f9..6a013a67 100644 --- a/glm/matrix_dmat4x2.hpp +++ b/glm/matrix_dmat4x2.hpp @@ -1,5 +1,5 @@ /// @ref core -/// @file glm/dmat4x2.hpp +/// @file glm/matrix_dmat4x2.hpp #pragma once #include "detail/type_mat4x2.hpp" diff --git a/glm/matrix_dmat4x2_precision.hpp b/glm/matrix_dmat4x2_precision.hpp new file mode 100644 index 00000000..9aac4823 --- /dev/null +++ b/glm/matrix_dmat4x2_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_dmat4x2_precision.hpp + +#pragma once +#include "detail/type_mat4x2.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 4 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 2, double, lowp> lowp_dmat4x2; + + /// 4 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 2, double, mediump> mediump_dmat4x2; + + /// 4 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 2, double, highp> highp_dmat4x2; + + /// @} +}//namespace glm diff --git a/glm/matrix_dmat4x3.hpp b/glm/matrix_dmat4x3.hpp index 0fae9915..55990ff7 100644 --- a/glm/matrix_dmat4x3.hpp +++ b/glm/matrix_dmat4x3.hpp @@ -1,5 +1,5 @@ /// @ref core -/// @file glm/dmat4x3.hpp +/// @file glm/matrix_dmat4x3.hpp #pragma once #include "detail/type_mat4x3.hpp" diff --git a/glm/matrix_dmat4x3_precision.hpp b/glm/matrix_dmat4x3_precision.hpp new file mode 100644 index 00000000..10a29fec --- /dev/null +++ b/glm/matrix_dmat4x3_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_dmat4x3_precision.hpp + +#pragma once +#include "detail/type_mat4x3.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 4 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 3, double, lowp> lowp_dmat4x3; + + /// 4 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 3, double, mediump> mediump_dmat4x3; + + /// 4 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 3, double, highp> highp_dmat4x3; + + /// @} +}//namespace glm diff --git a/glm/matrix_dmat4x4.hpp b/glm/matrix_dmat4x4.hpp index 941035fa..2385d00d 100644 --- a/glm/matrix_dmat4x4.hpp +++ b/glm/matrix_dmat4x4.hpp @@ -1,5 +1,5 @@ /// @ref core -/// @file glm/dmat4x4.hpp +/// @file glm/matrix_dmat4x4.hpp #pragma once #include "detail/type_mat4x4.hpp" diff --git a/glm/matrix_dmat4x4_precision.hpp b/glm/matrix_dmat4x4_precision.hpp new file mode 100644 index 00000000..a325965b --- /dev/null +++ b/glm/matrix_dmat4x4_precision.hpp @@ -0,0 +1,49 @@ +/// @ref core +/// @file glm/matrix_dmat4x4_precision.hpp + +#pragma once +#include "detail/type_mat4x4.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 4 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, double, lowp> lowp_dmat4; + + /// 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, double, mediump> mediump_dmat4; + + /// 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, double, highp> highp_dmat4; + + /// 4 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, double, lowp> lowp_dmat4x4; + + /// 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, double, mediump> mediump_dmat4x4; + + /// 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, double, highp> highp_dmat4x4; + + /// @} +}//namespace glm diff --git a/glm/matrix_mat2x2.hpp b/glm/matrix_mat2x2.hpp index fecdd979..a9b147e7 100644 --- a/glm/matrix_mat2x2.hpp +++ b/glm/matrix_mat2x2.hpp @@ -1,5 +1,5 @@ /// @ref core -/// @file glm/mat2x2.hpp +/// @file glm/matrix_mat2x2.hpp #pragma once #include "detail/setup.hpp" diff --git a/glm/matrix_mat2x2_precision.hpp b/glm/matrix_mat2x2_precision.hpp index 2ad0ec0f..d31a47fb 100644 --- a/glm/matrix_mat2x2_precision.hpp +++ b/glm/matrix_mat2x2_precision.hpp @@ -1,5 +1,5 @@ /// @ref core -/// @file glm/fmat2x2_precision.hpp +/// @file glm/matrix_mat2x2_precision.hpp #pragma once #include "detail/type_mat2x2.hpp" diff --git a/glm/matrix_mat2x3.hpp b/glm/matrix_mat2x3.hpp new file mode 100644 index 00000000..d293d740 --- /dev/null +++ b/glm/matrix_mat2x3.hpp @@ -0,0 +1,24 @@ +/// @ref core +/// @file glm/matrix_mat2x3.hpp + +#pragma once +#include "detail/type_mat2x3.hpp" + +namespace glm +{ + /// @addtogroup core + /// @{ + +#if(defined(GLM_PRECISION_LOWP_FLOAT)) + typedef mat<2, 3, float, lowp> mat2x3; +#elif(defined(GLM_PRECISION_MEDIUMP_FLOAT)) + typedef mat<2, 3, float, mediump> mat2x3; +#else //defined(GLM_PRECISION_HIGHP_FLOAT) + /// 2 columns of 3 components matrix of single-precision floating-point numbers. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + typedef mat<2, 3, float, highp> mat2x3; +#endif + + /// @} +}//namespace glm diff --git a/glm/matrix_mat2x3_precision.hpp b/glm/matrix_mat2x3_precision.hpp new file mode 100644 index 00000000..8484e32b --- /dev/null +++ b/glm/matrix_mat2x3_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_mat2x3_precision.hpp + +#pragma once +#include "detail/type_mat2x3.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 2 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 3, float, lowp> lowp_mat2x3; + + /// 2 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 3, float, mediump> mediump_mat2x3; + + /// 2 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 3, float, highp> highp_mat2x3; + + /// @} +}//namespace glm diff --git a/glm/matrix_mat2x4.hpp b/glm/matrix_mat2x4.hpp new file mode 100644 index 00000000..b4feef22 --- /dev/null +++ b/glm/matrix_mat2x4.hpp @@ -0,0 +1,24 @@ +/// @ref core +/// @file glm/matrix_mat2x4.hpp + +#pragma once +#include "detail/type_mat2x4.hpp" + +namespace glm +{ + /// @addtogroup core + /// @{ + +#if(defined(GLM_PRECISION_LOWP_FLOAT)) + typedef mat<2, 4, float, lowp> mat2x4; +#elif(defined(GLM_PRECISION_MEDIUMP_FLOAT)) + typedef mat<2, 4, float, mediump> mat2x4; +#else //defined(GLM_PRECISION_HIGHP_FLOAT) + /// 2 columns of 4 components matrix of single-precision floating-point numbers. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + typedef mat<2, 4, float, highp> mat2x4; +#endif + + /// @} +}//namespace glm diff --git a/glm/matrix_mat2x4_precision.hpp b/glm/matrix_mat2x4_precision.hpp new file mode 100644 index 00000000..687c8649 --- /dev/null +++ b/glm/matrix_mat2x4_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_mat2x4_precision.hpp + +#pragma once +#include "detail/type_mat2x4.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 2 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 4, float, lowp> lowp_mat2x4; + + /// 2 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 4, float, mediump> mediump_mat2x4; + + /// 2 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<2, 4, float, highp> highp_mat2x4; + + /// @} +}//namespace glm diff --git a/glm/matrix_mat3x2.hpp b/glm/matrix_mat3x2.hpp new file mode 100644 index 00000000..a4ac388e --- /dev/null +++ b/glm/matrix_mat3x2.hpp @@ -0,0 +1,24 @@ +/// @ref core +/// @file glm/matrix_mat3x2.hpp + +#pragma once +#include "detail/type_mat3x2.hpp" + +namespace glm +{ + /// @addtogroup core + /// @{ + +#if(defined(GLM_PRECISION_LOWP_FLOAT)) + typedef mat<3, 2, float, lowp> mat3x2; +#elif(defined(GLM_PRECISION_MEDIUMP_FLOAT)) + typedef mat<3, 2, float, mediump> mat3x2; +#else //defined(GLM_PRECISION_HIGHP_FLOAT) + /// 3 columns of 2 components matrix of single-precision floating-point numbers. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + typedef mat<3, 2, float, highp> mat3x2; +#endif + + /// @} +}//namespace glm diff --git a/glm/matrix_mat3x2_precision.hpp b/glm/matrix_mat3x2_precision.hpp new file mode 100644 index 00000000..8709afbe --- /dev/null +++ b/glm/matrix_mat3x2_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_mat3x2_precision.hpp + +#pragma once +#include "detail/type_mat3x2.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 3 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 2, float, lowp> lowp_mat3x2; + + /// 3 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 2, float, mediump> mediump_mat3x2; + + /// 3 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 2, float, highp> highp_mat3x2; + + /// @} +}//namespace glm diff --git a/glm/matrix_mat3x3.hpp b/glm/matrix_mat3x3.hpp new file mode 100644 index 00000000..cdfa90b1 --- /dev/null +++ b/glm/matrix_mat3x3.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_mat3x3.hpp + +#pragma once +#include "detail/type_mat3x3.hpp" + +namespace glm +{ + /// @addtogroup core + /// @{ + +#if(defined(GLM_PRECISION_LOWP_DOUBLE)) + typedef mat<3, 3, float, lowp> mat3x3; + typedef mat<3, 3, float, lowp> mat3; +#elif(defined(GLM_PRECISION_MEDIUMP_DOUBLE)) + typedef mat<3, 3, float, mediump> mat3x3; + typedef mat<3, 3, float, mediump> mat3; +#else //defined(GLM_PRECISION_HIGHP_DOUBLE) + /// 3 columns of 3 components matrix of single-precision floating-point numbers. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + typedef mat<3, 3, float, highp> mat3x3; + + /// 3 columns of 3 components matrix of single-precision floating-point numbers. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + typedef mat<3, 3, float, highp> mat3; +#endif + + /// @} +}//namespace glm diff --git a/glm/matrix_mat3x3_precision.hpp b/glm/matrix_mat3x3_precision.hpp new file mode 100644 index 00000000..7b1823b3 --- /dev/null +++ b/glm/matrix_mat3x3_precision.hpp @@ -0,0 +1,49 @@ +/// @ref core +/// @file glm/matrix_mat3x3_precision.hpp + +#pragma once +#include "detail/type_mat3x3.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 3 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, float, lowp> lowp_mat3; + + /// 3 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, float, mediump> mediump_mat3; + + /// 3 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, float, highp> highp_mat3; + + /// 3 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, float, lowp> lowp_mat3x3; + + /// 3 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, float, mediump> mediump_mat3x3; + + /// 3 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 3, float, highp> highp_mat3x3; + + /// @} +}//namespace glm diff --git a/glm/matrix_mat3x4.hpp b/glm/matrix_mat3x4.hpp new file mode 100644 index 00000000..620c9ee8 --- /dev/null +++ b/glm/matrix_mat3x4.hpp @@ -0,0 +1,24 @@ +/// @ref core +/// @file glm/matrix_mat3x4.hpp + +#pragma once +#include "detail/type_mat3x4.hpp" + +namespace glm +{ + /// @addtogroup core + /// @{ + +#if(defined(GLM_PRECISION_LOWP_FLOAT)) + typedef mat<3, 4, float, lowp> mat3x4; +#elif(defined(GLM_PRECISION_MEDIUMP_FLOAT)) + typedef mat<3, 4, float, mediump> mat3x4; +#else //defined(GLM_PRECISION_HIGHP_FLOAT) + /// 3 columns of 4 components matrix of single-precision floating-point numbers. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + typedef mat<3, 4, float, highp> mat3x4; +#endif + + /// @} +}//namespace glm diff --git a/glm/matrix_mat3x4_precision.hpp b/glm/matrix_mat3x4_precision.hpp new file mode 100644 index 00000000..1eb2887b --- /dev/null +++ b/glm/matrix_mat3x4_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_mat3x4_precision.hpp + +#pragma once +#include "detail/type_mat3x4.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 3 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 4, float, lowp> lowp_mat3x4; + + /// 3 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 4, float, mediump> mediump_mat3x4; + + /// 3 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<3, 4, float, highp> highp_mat3x4; + + /// @} +}//namespace glm diff --git a/glm/matrix_mat4x2.hpp b/glm/matrix_mat4x2.hpp new file mode 100644 index 00000000..26f46918 --- /dev/null +++ b/glm/matrix_mat4x2.hpp @@ -0,0 +1,24 @@ +/// @ref core +/// @file glm/matrix_mat4x2.hpp + +#pragma once +#include "detail/type_mat4x2.hpp" + +namespace glm +{ + /// @addtogroup core + /// @{ + +#if(defined(GLM_PRECISION_LOWP_FLOAT)) + typedef mat<4, 2, float, lowp> mat4x2; +#elif(defined(GLM_PRECISION_MEDIUMP_FLOAT)) + typedef mat<4, 2, float, mediump> mat4x2; +#else //defined(GLM_PRECISION_HIGHP_FLOAT) + /// 4 columns of 2 components matrix of single-precision floating-point numbers. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + typedef mat<4, 2, float, highp> mat4x2; +#endif + + /// @} +}//namespace glm diff --git a/glm/matrix_mat4x2_precision.hpp b/glm/matrix_mat4x2_precision.hpp new file mode 100644 index 00000000..c36e04e7 --- /dev/null +++ b/glm/matrix_mat4x2_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_mat2x2_precision.hpp + +#pragma once +#include "detail/type_mat2x2.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 4 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 2, float, lowp> lowp_mat4x2; + + /// 4 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 2, float, mediump> mediump_mat4x2; + + /// 4 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 2, float, highp> highp_mat4x2; + + /// @} +}//namespace glm diff --git a/glm/matrix_mat4x3.hpp b/glm/matrix_mat4x3.hpp new file mode 100644 index 00000000..f1f51aba --- /dev/null +++ b/glm/matrix_mat4x3.hpp @@ -0,0 +1,24 @@ +/// @ref core +/// @file glm/matrix_mat4x3.hpp + +#pragma once +#include "detail/type_mat4x3.hpp" + +namespace glm +{ + /// @addtogroup core + /// @{ + +#if(defined(GLM_PRECISION_LOWP_FLOAT)) + typedef mat<4, 3, float, lowp> mat4x3; +#elif(defined(GLM_PRECISION_MEDIUMP_FLOAT)) + typedef mat<4, 3, float, mediump> mat4x3; +#else //defined(GLM_PRECISION_HIGHP_FLOAT) + /// 4 columns of 3 components matrix of single-precision floating-point numbers. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + typedef mat<4, 3, float, highp> mat4x3; +#endif + + /// @} +}//namespace glm diff --git a/glm/matrix_mat4x3_precision.hpp b/glm/matrix_mat4x3_precision.hpp new file mode 100644 index 00000000..b89c35a4 --- /dev/null +++ b/glm/matrix_mat4x3_precision.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_mat4x3_precision.hpp + +#pragma once +#include "detail/type_mat4x3.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 4 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 3, float, lowp> lowp_mat4x3; + + /// 4 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 3, float, mediump> mediump_mat4x3; + + /// 4 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 3, float, highp> highp_mat4x3; + + /// @} +}//namespace glm diff --git a/glm/matrix_mat4x4.hpp b/glm/matrix_mat4x4.hpp new file mode 100644 index 00000000..f8e1f7a8 --- /dev/null +++ b/glm/matrix_mat4x4.hpp @@ -0,0 +1,31 @@ +/// @ref core +/// @file glm/matrix_mat4x4.hpp + +#pragma once +#include "detail/type_mat4x4.hpp" + +namespace glm +{ + /// @addtogroup core + /// @{ + +#if(defined(GLM_PRECISION_LOWP_FLOAT)) + typedef mat<4, 4, float, lowp> mat4x4; + typedef mat<4, 4, float, lowp> mat4; +#elif(defined(GLM_PRECISION_MEDIUMP_FLOAT)) + typedef mat<4, 4, float, mediump> mat4x4; + typedef mat<4, 4, float, mediump> mat4; +#else //defined(GLM_PRECISION_HIGHP_FLOAT) + /// 4 columns of 4 components matrix of single-precision floating-point numbers. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + typedef mat<4, 4, float, highp> mat4x4; + + /// 4 columns of 4 components matrix of single-precision floating-point numbers. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + typedef mat<4, 4, float, highp> mat4; +#endif + + /// @} +}//namespace glm diff --git a/glm/matrix_mat4x4_precision.hpp b/glm/matrix_mat4x4_precision.hpp new file mode 100644 index 00000000..d44bbcf2 --- /dev/null +++ b/glm/matrix_mat4x4_precision.hpp @@ -0,0 +1,49 @@ +/// @ref core +/// @file glm/matrix_mat4x4_precision.hpp + +#pragma once +#include "detail/type_mat4x4.hpp" + +namespace glm +{ + /// @addtogroup core_precision + /// @{ + + /// 4 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, float, lowp> lowp_mat4; + + /// 4 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, float, mediump> mediump_mat4; + + /// 4 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, float, highp> highp_mat4; + + /// 4 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, float, lowp> lowp_mat4x4; + + /// 4 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, float, mediump> mediump_mat4x4; + + /// 4 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. + /// + /// @see GLSL 4.20.8 specification, section 4.1.6 Matrices + /// @see GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier + typedef mat<4, 4, float, highp> highp_mat4x4; + + /// @} +}//namespace glm diff --git a/glm/packing.hpp b/glm/packing.hpp index 6e8546b8..b2e55307 100644 --- a/glm/packing.hpp +++ b/glm/packing.hpp @@ -13,9 +13,9 @@ #pragma once -#include "uvec2.hpp" -#include "fvec2.hpp" -#include "fvec4.hpp" +#include "vector_uvec2.hpp" +#include "vector_vec2.hpp" +#include "vector_vec4.hpp" namespace glm { diff --git a/glm/vec2.hpp b/glm/vec2.hpp index f2a80fbe..0abb69c4 100644 --- a/glm/vec2.hpp +++ b/glm/vec2.hpp @@ -2,16 +2,16 @@ /// @file glm/vec2.hpp #pragma once -#include "bvec2.hpp" -#include "bvec2_precision.hpp" -#include "fvec2.hpp" -#include "fvec2_precision.hpp" -#include "dvec2.hpp" -#include "dvec2_precision.hpp" -#include "ivec2.hpp" -#include "ivec2_precision.hpp" -#include "uvec2.hpp" -#include "uvec2_precision.hpp" +#include "vector_bvec2.hpp" +#include "vector_bvec2_precision.hpp" +#include "vector_vec2.hpp" +#include "vector_vec2_precision.hpp" +#include "vector_dvec2.hpp" +#include "vector_dvec2_precision.hpp" +#include "vector_ivec2.hpp" +#include "vector_ivec2_precision.hpp" +#include "vector_uvec2.hpp" +#include "vector_uvec2_precision.hpp" namespace glm { diff --git a/glm/vec3.hpp b/glm/vec3.hpp index bd8063b6..26287022 100644 --- a/glm/vec3.hpp +++ b/glm/vec3.hpp @@ -2,16 +2,16 @@ /// @file glm/vec3.hpp #pragma once -#include "bvec3.hpp" -#include "bvec3_precision.hpp" -#include "fvec3.hpp" -#include "fvec3_precision.hpp" -#include "dvec3.hpp" -#include "dvec3_precision.hpp" -#include "ivec3.hpp" -#include "ivec3_precision.hpp" -#include "uvec3.hpp" -#include "uvec3_precision.hpp" +#include "vector_bvec3.hpp" +#include "vector_bvec3_precision.hpp" +#include "vector_vec3.hpp" +#include "vector_vec3_precision.hpp" +#include "vector_dvec3.hpp" +#include "vector_dvec3_precision.hpp" +#include "vector_ivec3.hpp" +#include "vector_ivec3_precision.hpp" +#include "vector_uvec3.hpp" +#include "vector_uvec3_precision.hpp" namespace glm { diff --git a/glm/vec4.hpp b/glm/vec4.hpp index 0acb2117..673ff0b1 100644 --- a/glm/vec4.hpp +++ b/glm/vec4.hpp @@ -2,16 +2,16 @@ /// @file glm/vec4.hpp #pragma once -#include "bvec4.hpp" -#include "bvec4_precision.hpp" -#include "fvec4.hpp" -#include "fvec4_precision.hpp" -#include "dvec4.hpp" -#include "dvec4_precision.hpp" -#include "ivec4.hpp" -#include "ivec4_precision.hpp" -#include "uvec4.hpp" -#include "uvec4_precision.hpp" +#include "vector_bvec4.hpp" +#include "vector_bvec4_precision.hpp" +#include "vector_vec4.hpp" +#include "vector_vec4_precision.hpp" +#include "vector_dvec4.hpp" +#include "vector_dvec4_precision.hpp" +#include "vector_ivec4.hpp" +#include "vector_ivec4_precision.hpp" +#include "vector_uvec4.hpp" +#include "vector_uvec4_precision.hpp" namespace glm { diff --git a/test/core/core_func_common.cpp b/test/core/core_func_common.cpp index d3a3980c..221b8dd6 100644 --- a/test/core/core_func_common.cpp +++ b/test/core/core_func_common.cpp @@ -4,8 +4,8 @@ #include #include #include -#include -#include +#include +#include #include #include #include diff --git a/test/core/core_func_geometric.cpp b/test/core/core_func_geometric.cpp index 1ae5fc2a..1ca0e4e2 100644 --- a/test/core/core_func_geometric.cpp +++ b/test/core/core_func_geometric.cpp @@ -1,14 +1,13 @@ #include #include -#include #include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include #include namespace length diff --git a/test/core/core_func_integer.cpp b/test/core/core_func_integer.cpp index 3de61d12..e3747cf1 100644 --- a/test/core/core_func_integer.cpp +++ b/test/core/core_func_integer.cpp @@ -1,11 +1,11 @@ #include #include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include #include #include #include diff --git a/test/ext/CMakeLists.txt b/test/ext/CMakeLists.txt index 778df1c7..d03bc600 100644 --- a/test/ext/CMakeLists.txt +++ b/test/ext/CMakeLists.txt @@ -1,5 +1,6 @@ -glmCreateTestGTC(ext_bvec1) glmCreateTestGTC(ext_matrix_relational) glmCreateTestGTC(ext_scalar_relational) glmCreateTestGTC(ext_vec1) +glmCreateTestGTC(ext_vector_bvec1) +glmCreateTestGTC(ext_vector_uvec1) glmCreateTestGTC(ext_vector_relational) diff --git a/test/ext/ext_matrix_relational.cpp b/test/ext/ext_matrix_relational.cpp index de12ff70..3e2d0408 100644 --- a/test/ext/ext_matrix_relational.cpp +++ b/test/ext/ext_matrix_relational.cpp @@ -1,6 +1,6 @@ #include -#include -#include +#include +#include int test_equal() { diff --git a/test/ext/ext_bvec1.cpp b/test/ext/ext_vector_bvec1.cpp similarity index 95% rename from test/ext/ext_bvec1.cpp rename to test/ext/ext_vector_bvec1.cpp index 702712de..e6251e10 100644 --- a/test/ext/ext_bvec1.cpp +++ b/test/ext/ext_vector_bvec1.cpp @@ -1,6 +1,5 @@ -#include -#include -#include +#include +#include template static int test_operators() diff --git a/test/ext/ext_vector_uvec1.cpp b/test/ext/ext_vector_uvec1.cpp new file mode 100644 index 00000000..d098bc44 --- /dev/null +++ b/test/ext/ext_vector_uvec1.cpp @@ -0,0 +1,140 @@ +#include +#include +#include +#include +#include +#include + +template +static int test_operators() +{ + int Error = 0; + + { + genType const A(1); + genType const B(1); + + bool const R = A != B; + bool const S = A == B; + Error += (S && !R) ? 0 : 1; + } + + { + genType const A(1); + genType const B(1); + + genType const C = A + B; + Error += C == genType(2) ? 0 : 1; + + genType const D = A - B; + Error += D == genType(0) ? 0 : 1; + + genType const E = A * B; + Error += E == genType(1) ? 0 : 1; + + genType const F = A / B; + Error += F == genType(1) ? 0 : 1; + } + + return Error; +} + +template +static int test_ctor() +{ + int Error = 0; + + glm::uvec1 const A = genType(1); + + glm::uvec1 const E(genType(1)); + Error += A == E ? 0 : 1; + + glm::uvec1 const F(E); + Error += A == F ? 0 : 1; + + genType const B = genType(1); + genType const G(glm::uvec2(1)); + Error += B == G ? 0 : 1; + + genType const H(glm::uvec3(1)); + Error += B == H ? 0 : 1; + + genType const I(glm::uvec4(1)); + Error += B == I ? 0 : 1; + + return Error; +} + +template +static int test_size() +{ + int Error = 0; + + Error += sizeof(glm::uvec1) == sizeof(genType) ? 0 : 1; + Error += genType().length() == 1 ? 0 : 1; + Error += genType::length() == 1 ? 0 : 1; + + return Error; +} + +template +static int test_relational() +{ + int Error = 0; + + genType const A(1); + genType const B(1); + genType const C(0); + + Error += A == B ? 0 : 1; + Error += A != C ? 0 : 1; + Error += all(equal(A, B)) ? 0 : 1; + Error += any(notEqual(A, C)) ? 0 : 1; + + return Error; +} + +template +static int test_constexpr() +{ +# if GLM_CONFIG_CONSTEXP == GLM_ENABLE + static_assert(genType::length() == 1, "GLM: Failed constexpr"); + static_assert(genType(1)[0] == 1, "GLM: Failed constexpr"); + static_assert(genType(1) == genType(glm::uvec1(1)), "GLM: Failed constexpr"); + static_assert(genType(1) != genType(0), "GLM: Failed constexpr"); +# endif + + return 0; +} + +int main() +{ + int Error = 0; + + Error += test_operators(); + Error += test_operators(); + Error += test_operators(); + Error += test_operators(); + + Error += test_ctor(); + Error += test_ctor(); + Error += test_ctor(); + Error += test_ctor(); + + Error += test_size(); + Error += test_size(); + Error += test_size(); + Error += test_size(); + + Error += test_relational(); + Error += test_relational(); + Error += test_relational(); + Error += test_relational(); + + Error += test_constexpr(); + Error += test_constexpr(); + Error += test_constexpr(); + Error += test_constexpr(); + + return Error; +} diff --git a/test/gtx/gtx_functions.cpp b/test/gtx/gtx_functions.cpp index 770aed28..f7c6f637 100644 --- a/test/gtx/gtx_functions.cpp +++ b/test/gtx/gtx_functions.cpp @@ -1,5 +1,5 @@ #include -#include +#include #include int test_gauss_1d()