diff --git a/glm/core/type_mat2x2.hpp b/glm/core/type_mat2x2.hpp index 638e848b..38ec7214 100644 --- a/glm/core/type_mat2x2.hpp +++ b/glm/core/type_mat2x2.hpp @@ -65,8 +65,9 @@ namespace detail ////////////////////////////////////// // Constructors GLM_FUNC_DECL tmat2x2(); - GLM_FUNC_DECL tmat2x2( - tmat2x2 const & m); + GLM_FUNC_DECL tmat2x2(tmat2x2 const & m); + template + GLM_FUNC_DECL tmat2x2(tmat2x2 const & m); GLM_FUNC_DECL explicit tmat2x2( ctor Null); diff --git a/glm/core/type_mat2x2.inl b/glm/core/type_mat2x2.inl index 12e40677..2271ff7e 100644 --- a/glm/core/type_mat2x2.inl +++ b/glm/core/type_mat2x2.inl @@ -92,6 +92,15 @@ namespace detail this->value[1] = m.value[1]; } + template + template + GLM_FUNC_QUALIFIER tmat2x2::tmat2x2( + tmat2x2 const & m) + { + this->value[0] = m.value[0]; + this->value[1] = m.value[1]; + } + template GLM_FUNC_QUALIFIER tmat2x2::tmat2x2 ( @@ -133,7 +142,7 @@ namespace detail } ////////////////////////////////////// - // Convertion constructors + // Conversion constructors template template GLM_FUNC_DECL tmat2x2::tmat2x2 diff --git a/glm/core/type_mat2x3.hpp b/glm/core/type_mat2x3.hpp index 57576039..f1d8f9cb 100644 --- a/glm/core/type_mat2x3.hpp +++ b/glm/core/type_mat2x3.hpp @@ -58,7 +58,9 @@ namespace detail public: // Constructors GLM_FUNC_DECL tmat2x3(); - GLM_FUNC_DECL tmat2x3(tmat2x3 const & m); + GLM_FUNC_DECL tmat2x3(tmat2x3 const & m); + template + GLM_FUNC_DECL tmat2x3(tmat2x3 const & m); GLM_FUNC_DECL explicit tmat2x3( ctor); diff --git a/glm/core/type_mat2x3.inl b/glm/core/type_mat2x3.inl index 4f6d1934..c0343dae 100644 --- a/glm/core/type_mat2x3.inl +++ b/glm/core/type_mat2x3.inl @@ -92,6 +92,15 @@ namespace detail this->value[1] = m.value[1]; } + template + template + GLM_FUNC_QUALIFIER tmat2x3::tmat2x3( + tmat2x3 const & m) + { + this->value[0] = m.value[0]; + this->value[1] = m.value[1]; + } + template GLM_FUNC_QUALIFIER tmat2x3::tmat2x3 ( @@ -132,7 +141,7 @@ namespace detail } ////////////////////////////////////// - // Convertion constructors + // Conversion constructors template template GLM_FUNC_DECL tmat2x3::tmat2x3 diff --git a/glm/core/type_mat2x4.hpp b/glm/core/type_mat2x4.hpp index a3218da5..30d48b9b 100644 --- a/glm/core/type_mat2x4.hpp +++ b/glm/core/type_mat2x4.hpp @@ -58,7 +58,9 @@ namespace detail public: // Constructors GLM_FUNC_DECL tmat2x4(); - GLM_FUNC_DECL tmat2x4(tmat2x4 const & m); + GLM_FUNC_DECL tmat2x4(tmat2x4 const & m); + template + GLM_FUNC_DECL tmat2x4(tmat2x4 const & m); GLM_FUNC_DECL explicit tmat2x4( ctor); diff --git a/glm/core/type_mat2x4.inl b/glm/core/type_mat2x4.inl index 75069041..f0cd3ad1 100644 --- a/glm/core/type_mat2x4.inl +++ b/glm/core/type_mat2x4.inl @@ -94,6 +94,15 @@ namespace detail this->value[1] = m.value[1]; } + template + template + GLM_FUNC_QUALIFIER tmat2x4::tmat2x4( + tmat2x4 const & m) + { + this->value[0] = m.value[0]; + this->value[1] = m.value[1]; + } + template GLM_FUNC_QUALIFIER tmat2x4::tmat2x4 ( @@ -135,7 +144,7 @@ namespace detail } ////////////////////////////////////// - // Convertion constructors + // Conversion constructors template template GLM_FUNC_DECL tmat2x4::tmat2x4 diff --git a/glm/core/type_mat3x2.hpp b/glm/core/type_mat3x2.hpp index 22d5a7e1..afbf9f03 100644 --- a/glm/core/type_mat3x2.hpp +++ b/glm/core/type_mat3x2.hpp @@ -59,6 +59,8 @@ namespace detail // Constructors GLM_FUNC_DECL tmat3x2(); GLM_FUNC_DECL tmat3x2(tmat3x2 const & m); + template + GLM_FUNC_DECL tmat3x2(tmat3x2 const & m); GLM_FUNC_DECL explicit tmat3x2( ctor); diff --git a/glm/core/type_mat3x2.inl b/glm/core/type_mat3x2.inl index ad174850..624f7587 100644 --- a/glm/core/type_mat3x2.inl +++ b/glm/core/type_mat3x2.inl @@ -94,6 +94,16 @@ namespace detail this->value[2] = m.value[2]; } + template + template + GLM_FUNC_QUALIFIER tmat3x2::tmat3x2( + tmat3x2 const & m) + { + this->value[0] = m.value[0]; + this->value[1] = m.value[1]; + this->value[2] = m.value[2]; + } + template GLM_FUNC_QUALIFIER tmat3x2::tmat3x2 ( @@ -139,7 +149,7 @@ namespace detail } ////////////////////////////////////// - // Convertion constructors + // Conversion constructors template template GLM_FUNC_DECL tmat3x2::tmat3x2 diff --git a/glm/core/type_mat3x3.hpp b/glm/core/type_mat3x3.hpp index 2384e35e..4fa8bff4 100644 --- a/glm/core/type_mat3x3.hpp +++ b/glm/core/type_mat3x3.hpp @@ -65,6 +65,8 @@ namespace detail // Constructors GLM_FUNC_DECL tmat3x3(); GLM_FUNC_DECL tmat3x3(tmat3x3 const & m); + template + GLM_FUNC_DECL tmat3x3(tmat3x3 const & m); GLM_FUNC_DECL explicit tmat3x3( ctor Null); diff --git a/glm/core/type_mat3x3.inl b/glm/core/type_mat3x3.inl index d36518f3..c9ef9dc0 100644 --- a/glm/core/type_mat3x3.inl +++ b/glm/core/type_mat3x3.inl @@ -103,6 +103,16 @@ namespace detail ) {} + template + template + GLM_FUNC_QUALIFIER tmat3x3::tmat3x3( + tmat3x3 const & m) + { + this->value[0] = m.value[0]; + this->value[1] = m.value[1]; + this->value[2] = m.value[2]; + } + template GLM_FUNC_QUALIFIER tmat3x3::tmat3x3 ( @@ -142,7 +152,7 @@ namespace detail } ////////////////////////////////////// - // Convertion constructors + // Conversion constructors template template GLM_FUNC_DECL tmat3x3::tmat3x3 diff --git a/glm/core/type_mat3x4.hpp b/glm/core/type_mat3x4.hpp index fb0242a2..2d72d2fb 100644 --- a/glm/core/type_mat3x4.hpp +++ b/glm/core/type_mat3x4.hpp @@ -58,7 +58,9 @@ namespace detail public: // Constructors GLM_FUNC_DECL tmat3x4(); - GLM_FUNC_DECL tmat3x4(tmat3x4 const & m); + GLM_FUNC_DECL tmat3x4(tmat3x4 const & m); + template + GLM_FUNC_DECL tmat3x4(tmat3x4 const & m); GLM_FUNC_DECL explicit tmat3x4( ctor Null); diff --git a/glm/core/type_mat3x4.inl b/glm/core/type_mat3x4.inl index 2a3839cf..e014da41 100644 --- a/glm/core/type_mat3x4.inl +++ b/glm/core/type_mat3x4.inl @@ -94,6 +94,16 @@ namespace detail this->value[2] = m.value[2]; } + template + template + GLM_FUNC_QUALIFIER tmat3x4::tmat3x4( + tmat3x4 const & m) + { + this->value[0] = m.value[0]; + this->value[1] = m.value[1]; + this->value[2] = m.value[2]; + } + template GLM_FUNC_QUALIFIER tmat3x4::tmat3x4 ( @@ -140,7 +150,7 @@ namespace detail } ////////////////////////////////////// - // Convertion constructors + // Conversion constructors template template GLM_FUNC_DECL tmat3x4::tmat3x4 diff --git a/glm/core/type_mat4x2.hpp b/glm/core/type_mat4x2.hpp index ce6557a4..80ba7da8 100644 --- a/glm/core/type_mat4x2.hpp +++ b/glm/core/type_mat4x2.hpp @@ -58,7 +58,9 @@ namespace detail public: // Constructors GLM_FUNC_DECL tmat4x2(); - GLM_FUNC_DECL tmat4x2(tmat4x2 const & m); + GLM_FUNC_DECL tmat4x2(tmat4x2 const & m); + template + GLM_FUNC_DECL tmat4x2(tmat4x2 const & m); GLM_FUNC_DECL explicit tmat4x2( ctor Null); diff --git a/glm/core/type_mat4x2.inl b/glm/core/type_mat4x2.inl index 0d93542a..0a64b922 100644 --- a/glm/core/type_mat4x2.inl +++ b/glm/core/type_mat4x2.inl @@ -87,10 +87,8 @@ namespace detail } template - GLM_FUNC_QUALIFIER tmat4x2::tmat4x2 - ( - tmat4x2 const & m - ) + GLM_FUNC_QUALIFIER tmat4x2::tmat4x2( + tmat4x2 const & m) { this->value[0] = m.value[0]; this->value[1] = m.value[1]; @@ -99,10 +97,18 @@ namespace detail } template - GLM_FUNC_QUALIFIER tmat4x2::tmat4x2 - ( - ctor - ) + template + GLM_FUNC_QUALIFIER tmat4x2::tmat4x2( + tmat4x2 const & m) + { + this->value[0] = m.value[0]; + this->value[1] = m.value[1]; + this->value[2] = m.value[2]; + this->value[3] = m.value[3]; + } + + template + GLM_FUNC_QUALIFIER tmat4x2::tmat4x2(ctor) {} template @@ -149,7 +155,7 @@ namespace detail } ////////////////////////////////////// - // Convertion constructors + // Conversion constructors template template GLM_FUNC_DECL tmat4x2::tmat4x2 diff --git a/glm/core/type_mat4x3.hpp b/glm/core/type_mat4x3.hpp index 536f9286..795cbec7 100644 --- a/glm/core/type_mat4x3.hpp +++ b/glm/core/type_mat4x3.hpp @@ -58,7 +58,9 @@ namespace detail public: // Constructors GLM_FUNC_DECL tmat4x3(); - GLM_FUNC_DECL tmat4x3(tmat4x3 const & m); + GLM_FUNC_DECL tmat4x3(tmat4x3 const & m); + template + GLM_FUNC_DECL tmat4x3(tmat4x3 const & m); GLM_FUNC_DECL explicit tmat4x3( ctor Null); diff --git a/glm/core/type_mat4x3.inl b/glm/core/type_mat4x3.inl index 807060c2..5f8b6757 100644 --- a/glm/core/type_mat4x3.inl +++ b/glm/core/type_mat4x3.inl @@ -87,10 +87,19 @@ namespace detail } template - GLM_FUNC_QUALIFIER tmat4x3::tmat4x3 - ( - tmat4x3 const & m - ) + GLM_FUNC_QUALIFIER tmat4x3::tmat4x3( + tmat4x3 const & m) + { + this->value[0] = m.value[0]; + this->value[1] = m.value[1]; + this->value[2] = m.value[2]; + this->value[3] = m.value[3]; + } + + template + template + GLM_FUNC_QUALIFIER tmat4x3::tmat4x3( + tmat4x3 const & m) { this->value[0] = m.value[0]; this->value[1] = m.value[1]; @@ -99,17 +108,12 @@ namespace detail } template - GLM_FUNC_QUALIFIER tmat4x3::tmat4x3 - ( - ctor - ) + GLM_FUNC_QUALIFIER tmat4x3::tmat4x3(ctor) {} template - GLM_FUNC_QUALIFIER tmat4x3::tmat4x3 - ( - value_type const & s - ) + GLM_FUNC_QUALIFIER tmat4x3::tmat4x3( + value_type const & s) { value_type const Zero(0); this->value[0] = col_type(s, Zero, Zero); @@ -149,7 +153,7 @@ namespace detail } ////////////////////////////////////// - // Convertion constructors + // Conversion constructors template template GLM_FUNC_DECL tmat4x3::tmat4x3 diff --git a/glm/core/type_mat4x4.hpp b/glm/core/type_mat4x4.hpp index dc026939..39ce60d7 100644 --- a/glm/core/type_mat4x4.hpp +++ b/glm/core/type_mat4x4.hpp @@ -64,7 +64,9 @@ namespace detail public: // Constructors GLM_FUNC_DECL tmat4x4(); - GLM_FUNC_DECL tmat4x4(tmat4x4 const & m); + GLM_FUNC_DECL tmat4x4(tmat4x4 const & m); + template + GLM_FUNC_DECL tmat4x4(tmat4x4 const & m); GLM_FUNC_DECL explicit tmat4x4( ctor Null); diff --git a/glm/core/type_mat4x4.inl b/glm/core/type_mat4x4.inl index ba9680f6..e93583cc 100644 --- a/glm/core/type_mat4x4.inl +++ b/glm/core/type_mat4x4.inl @@ -98,6 +98,19 @@ namespace detail this->value[3] = m.value[3]; } + template + template + GLM_FUNC_QUALIFIER tmat4x4::tmat4x4 + ( + tmat4x4 const & m + ) + { + this->value[0] = m.value[0]; + this->value[1] = m.value[1]; + this->value[2] = m.value[2]; + this->value[3] = m.value[3]; + } + template GLM_FUNC_QUALIFIER tmat4x4::tmat4x4 ( @@ -162,7 +175,7 @@ namespace detail } ////////////////////////////////////// - // Convertion constructors + // Conversion constructors template template GLM_FUNC_DECL tmat4x4::tmat4x4 diff --git a/glm/core/type_vec1.hpp b/glm/core/type_vec1.hpp index 7a24d3ba..3bba2fa7 100644 --- a/glm/core/type_vec1.hpp +++ b/glm/core/type_vec1.hpp @@ -68,6 +68,8 @@ namespace detail GLM_FUNC_DECL tvec1(); GLM_FUNC_DECL tvec1(tvec1 const & v); + template + GLM_FUNC_DECL tvec1(tvec1 const & v); ////////////////////////////////////// // Explicit basic constructors @@ -83,14 +85,14 @@ namespace detail GLM_FUNC_DECL tvec1(tref1 const & r); ////////////////////////////////////// - // Convertion scalar constructors + // Conversion scalar constructors //! Explicit converions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template GLM_FUNC_DECL explicit tvec1(U const & s); ////////////////////////////////////// - // Convertion vector constructors + // Conversion vector constructors //! Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template diff --git a/glm/core/type_vec1.inl b/glm/core/type_vec1.inl index 18255d2c..9acb879d 100644 --- a/glm/core/type_vec1.inl +++ b/glm/core/type_vec1.inl @@ -69,14 +69,16 @@ namespace detail template GLM_FUNC_QUALIFIER tvec1::tvec1 ( - ctor - ) + tvec1 const & v + ) : + x(v.x) {} template + template GLM_FUNC_QUALIFIER tvec1::tvec1 ( - tvec1 const & v + tvec1 const & v ) : x(v.x) {} @@ -84,6 +86,13 @@ namespace detail ////////////////////////////////////// // Explicit basic constructors + template + GLM_FUNC_QUALIFIER tvec1::tvec1 + ( + ctor + ) + {} + template GLM_FUNC_QUALIFIER tvec1::tvec1 ( @@ -104,7 +113,7 @@ namespace detail {} ////////////////////////////////////// - // Convertion scalar constructors + // Conversion scalar constructors template template @@ -116,7 +125,7 @@ namespace detail {} ////////////////////////////////////// - // Convertion vector constructors + // Conversion vector constructors template template diff --git a/glm/core/type_vec2.hpp b/glm/core/type_vec2.hpp index 2a08d1eb..8da617b4 100644 --- a/glm/core/type_vec2.hpp +++ b/glm/core/type_vec2.hpp @@ -89,6 +89,8 @@ namespace detail GLM_FUNC_DECL tvec2(); GLM_FUNC_DECL tvec2(tvec2 const & v); + template + GLM_FUNC_DECL tvec2(tvec2 const & v); ////////////////////////////////////// // Explicit basic constructors @@ -113,7 +115,7 @@ namespace detail } ////////////////////////////////////// - // Convertion constructors + // Conversion constructors //! Explicit converions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template @@ -126,7 +128,7 @@ namespace detail V const & y); ////////////////////////////////////// - // Convertion vector constructors + // Conversion vector constructors //! Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template diff --git a/glm/core/type_vec2.inl b/glm/core/type_vec2.inl index 980309dc..a19fed63 100644 --- a/glm/core/type_vec2.inl +++ b/glm/core/type_vec2.inl @@ -64,14 +64,17 @@ namespace detail template GLM_FUNC_QUALIFIER tvec2::tvec2 ( - ctor - ) + tvec2 const & v + ) : + x(v.x), + y(v.y) {} template + template GLM_FUNC_QUALIFIER tvec2::tvec2 ( - tvec2 const & v + tvec2 const & v ) : x(v.x), y(v.y) @@ -80,6 +83,13 @@ namespace detail ////////////////////////////////////// // Explicit basic constructors + template + GLM_FUNC_QUALIFIER tvec2::tvec2 + ( + ctor + ) + {} + template GLM_FUNC_QUALIFIER tvec2::tvec2 ( @@ -112,7 +122,7 @@ namespace detail {} ////////////////////////////////////// - // Convertion scalar constructors + // Conversion scalar constructors template template @@ -136,7 +146,7 @@ namespace detail {} ////////////////////////////////////// - // Convertion vector constructors + // Conversion vector constructors template template diff --git a/glm/core/type_vec3.hpp b/glm/core/type_vec3.hpp index c193f0f9..ba35ea33 100644 --- a/glm/core/type_vec3.hpp +++ b/glm/core/type_vec3.hpp @@ -90,6 +90,8 @@ namespace detail GLM_FUNC_DECL tvec3(); GLM_FUNC_DECL tvec3(tvec3 const & v); + template + GLM_FUNC_DECL tvec3(tvec3 const & v); ////////////////////////////////////// // Explicit basic constructors @@ -104,7 +106,7 @@ namespace detail value_type const & s3); ////////////////////////////////////// - // Convertion scalar constructors + // Conversion scalar constructors //! Explicit converions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template @@ -118,7 +120,7 @@ namespace detail W const & z); ////////////////////////////////////// - // Convertion vector constructors + // Conversion vector constructors //! Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template diff --git a/glm/core/type_vec3.inl b/glm/core/type_vec3.inl index e2985c23..439a6131 100644 --- a/glm/core/type_vec3.inl +++ b/glm/core/type_vec3.inl @@ -65,14 +65,18 @@ namespace detail template GLM_FUNC_QUALIFIER tvec3::tvec3 ( - ctor - ) + tvec3 const & v + ) : + x(v.x), + y(v.y), + z(v.z) {} template + template GLM_FUNC_QUALIFIER tvec3::tvec3 ( - tvec3 const & v + tvec3 const & v ) : x(v.x), y(v.y), @@ -82,6 +86,13 @@ namespace detail ////////////////////////////////////// // Explicit basic constructors + template + GLM_FUNC_QUALIFIER tvec3::tvec3 + ( + ctor + ) + {} + template GLM_FUNC_QUALIFIER tvec3::tvec3 ( @@ -142,7 +153,7 @@ namespace detail {} ////////////////////////////////////// - // Convertion scalar constructors + // Conversion scalar constructors template template @@ -169,7 +180,7 @@ namespace detail {} ////////////////////////////////////// - // Convertion vector constructors + // Conversion vector constructors template template diff --git a/glm/core/type_vec4.hpp b/glm/core/type_vec4.hpp index 11d79366..c725e383 100644 --- a/glm/core/type_vec4.hpp +++ b/glm/core/type_vec4.hpp @@ -91,6 +91,8 @@ namespace detail GLM_FUNC_DECL tvec4(); GLM_FUNC_DECL tvec4(type const & v); + template + GLM_FUNC_DECL tvec4(tvec4 const & v); ////////////////////////////////////// // Explicit basic constructors @@ -106,22 +108,22 @@ namespace detail value_type const & s3); ////////////////////////////////////// - // Convertion scalar constructors + // Conversion scalar constructors - //! Explicit converions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) + /// Explicit converions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template GLM_FUNC_DECL explicit tvec4( U const & x); - //! Explicit converions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) + /// Explicit converions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template GLM_FUNC_DECL explicit tvec4( A const & x, B const & y, C const & z, - D const & w); + D const & w); ////////////////////////////////////// - // Convertion vector constructors + // Conversion vector constructors //! Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification) template @@ -221,8 +223,8 @@ namespace detail // Unary arithmetic operators GLM_FUNC_DECL tvec4 & operator= (tvec4 const & v); - template - GLM_FUNC_DECL tvec4 & operator= (tvec4 const & v); + template + GLM_FUNC_DECL tvec4 & operator= (tvec4 const & v); template GLM_FUNC_DECL tvec4 & operator+=(U const & s); diff --git a/glm/core/type_vec4.inl b/glm/core/type_vec4.inl index 231f16dd..9c2734e9 100644 --- a/glm/core/type_vec4.inl +++ b/glm/core/type_vec4.inl @@ -72,14 +72,19 @@ namespace detail template GLM_FUNC_QUALIFIER tvec4::tvec4 ( - ctor - ) + type const & v + ) : + x(v.x), + y(v.y), + z(v.z), + w(v.w) {} template + template GLM_FUNC_QUALIFIER tvec4::tvec4 ( - type const & v + tvec4 const & v ) : x(v.x), y(v.y), @@ -90,6 +95,13 @@ namespace detail ////////////////////////////////////// // Explicit basic constructors + template + GLM_FUNC_QUALIFIER tvec4::tvec4 + ( + ctor + ) + {} + template GLM_FUNC_QUALIFIER tvec4::tvec4 ( @@ -237,8 +249,8 @@ namespace detail {} ////////////////////////////////////// - // Convertion scalar constructors - + // Conversion scalar constructors + template template GLM_FUNC_QUALIFIER tvec4::tvec4 @@ -266,8 +278,20 @@ namespace detail w(value_type(w)) {} + template + template + GLM_FUNC_QUALIFIER tvec4::tvec4 + ( + tvec4 const & v + ) : + x(value_type(v.x)), + y(value_type(v.y)), + z(value_type(v.z)), + w(value_type(v.w)) + {} + ////////////////////////////////////// - // Convertion vector constructors + // Conversion vector constructors template template @@ -350,18 +374,6 @@ namespace detail w(value_type(v2.y)) {} - template - template - GLM_FUNC_QUALIFIER tvec4::tvec4 - ( - tvec4 const & v - ) : - x(value_type(v.x)), - y(value_type(v.y)), - z(value_type(v.z)), - w(value_type(v.w)) - {} - ////////////////////////////////////// // Unary arithmetic operators @@ -379,10 +391,10 @@ namespace detail } template - template + template GLM_FUNC_QUALIFIER tvec4 & tvec4::operator= ( - tvec4 const & v + tvec4 const & v ) { this->x = T(v.x); diff --git a/glm/gtx/simd_vec4.hpp b/glm/gtx/simd_vec4.hpp index 0e8da15e..04c67c4c 100644 --- a/glm/gtx/simd_vec4.hpp +++ b/glm/gtx/simd_vec4.hpp @@ -111,7 +111,7 @@ namespace detail vec4 const & v); //////////////////////////////////////// - //// Convertion vector constructors + //// Conversion vector constructors fvec4SIMD(vec2 const & v, float const & s1, float const & s2); fvec4SIMD(float const & s1, vec2 const & v, float const & s2); diff --git a/glm/gtx/simd_vec4.inl b/glm/gtx/simd_vec4.inl index a71c550d..3d04d24d 100644 --- a/glm/gtx/simd_vec4.inl +++ b/glm/gtx/simd_vec4.inl @@ -59,7 +59,7 @@ GLM_FUNC_QUALIFIER fvec4SIMD::fvec4SIMD(float const v[4]) : //fvec4SIMD(ref4 const & r); ////////////////////////////////////// -// Convertion vector constructors +// Conversion vector constructors GLM_FUNC_QUALIFIER fvec4SIMD::fvec4SIMD(vec2 const & v, float const & s1, float const & s2) : Data(_mm_set_ps(s2, s1, v.y, v.x)) diff --git a/test/gtc/gtc_type_precision.cpp b/test/gtc/gtc_type_precision.cpp index 8d1f8411..4e110ad0 100644 --- a/test/gtc/gtc_type_precision.cpp +++ b/test/gtc/gtc_type_precision.cpp @@ -836,12 +836,31 @@ static int test_quat_precision() return Error; } +static int test_fvec_conversion() +{ + int Error(0); + + { + glm::highp_vec4 a = glm::vec4(1, 2, 3, 4); + glm::mediump_vec4 b = glm::vec4(1, 2, 3, 4); + glm::lowp_vec4 c = b; + glm::mediump_vec4 d = c; + glm::lowp_ivec4 e = glm::ivec4(d); + glm::lowp_ivec3 f = glm::ivec3(e); + + Error += glm::all(glm::equal(b, d)) ? 0 : 1; + } + + return Error; +} + int main() { int Error(0); Error += test_scalar_size(); Error += test_fvec_size(); Error += test_fvec_precision(); + Error += test_fvec_conversion(); Error += test_dvec_precision(); Error += test_ivec_size(); Error += test_ivec_precision();