diff --git a/glm/detail/_noise.hpp b/glm/detail/_noise.hpp index 583ac0be..291c6030 100644 --- a/glm/detail/_noise.hpp +++ b/glm/detail/_noise.hpp @@ -74,19 +74,19 @@ namespace detail } template - GLM_FUNC_QUALIFIER detail::tvec2 taylorInvSqrt(detail::tvec2 const & r) + GLM_FUNC_QUALIFIER tvec2 taylorInvSqrt(tvec2 const & r) { return T(1.79284291400159) - T(0.85373472095314) * r; } template - GLM_FUNC_QUALIFIER detail::tvec3 taylorInvSqrt(detail::tvec3 const & r) + GLM_FUNC_QUALIFIER tvec3 taylorInvSqrt(tvec3 const & r) { return T(1.79284291400159) - T(0.85373472095314) * r; } template - GLM_FUNC_QUALIFIER detail::tvec4 taylorInvSqrt(detail::tvec4 const & r) + GLM_FUNC_QUALIFIER tvec4 taylorInvSqrt(tvec4 const & r) { return T(1.79284291400159) - T(0.85373472095314) * r; } @@ -99,19 +99,19 @@ namespace detail */ template - GLM_FUNC_QUALIFIER detail::tvec2 fade(detail::tvec2 const & t) + GLM_FUNC_QUALIFIER tvec2 fade(tvec2 const & t) { return (t * t * t) * (t * (t * T(6) - T(15)) + T(10)); } template - GLM_FUNC_QUALIFIER detail::tvec3 fade(detail::tvec3 const & t) + GLM_FUNC_QUALIFIER tvec3 fade(tvec3 const & t) { return (t * t * t) * (t * (t * T(6) - T(15)) + T(10)); } template - GLM_FUNC_QUALIFIER detail::tvec4 fade(detail::tvec4 const & t) + GLM_FUNC_QUALIFIER tvec4 fade(tvec4 const & t) { return (t * t * t) * (t * (t * T(6) - T(15)) + T(10)); } diff --git a/glm/detail/_vectorize.hpp b/glm/detail/_vectorize.hpp index 284ff1f0..840e3530 100644 --- a/glm/detail/_vectorize.hpp +++ b/glm/detail/_vectorize.hpp @@ -35,29 +35,29 @@ #define VECTORIZE1_VEC(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec1 func( \ - detail::tvec1 const & v) \ + GLM_FUNC_QUALIFIER tvec1 func( \ + tvec1 const & v) \ { \ - return detail::tvec1( \ + return tvec1( \ func(v.x)); \ } #define VECTORIZE2_VEC(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec2 func( \ - detail::tvec2 const & v) \ + GLM_FUNC_QUALIFIER tvec2 func( \ + tvec2 const & v) \ { \ - return detail::tvec2( \ + return tvec2( \ func(v.x), \ func(v.y)); \ } #define VECTORIZE3_VEC(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec3 func( \ - detail::tvec3 const & v) \ + GLM_FUNC_QUALIFIER tvec3 func( \ + tvec3 const & v) \ { \ - return detail::tvec3( \ + return tvec3( \ func(v.x), \ func(v.y), \ func(v.z)); \ @@ -65,10 +65,10 @@ #define VECTORIZE4_VEC(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec4 func( \ - detail::tvec4 const & v) \ + GLM_FUNC_QUALIFIER tvec4 func( \ + tvec4 const & v) \ { \ - return detail::tvec4( \ + return tvec4( \ func(v.x), \ func(v.y), \ func(v.z), \ @@ -83,38 +83,38 @@ #define VECTORIZE1_VEC_SCA(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec1 func \ + GLM_FUNC_QUALIFIER tvec1 func \ ( \ - detail::tvec1 const & x, \ - typename detail::tvec1::value_type const & y \ + tvec1 const & x, \ + typename tvec1::value_type const & y \ ) \ { \ - return detail::tvec1( \ + return tvec1( \ func(x.x, y)); \ } #define VECTORIZE2_VEC_SCA(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec2 func \ + GLM_FUNC_QUALIFIER tvec2 func \ ( \ - detail::tvec2 const & x, \ - typename detail::tvec2::value_type const & y \ + tvec2 const & x, \ + typename tvec2::value_type const & y \ ) \ { \ - return detail::tvec2( \ + return tvec2( \ func(x.x, y), \ func(x.y, y)); \ } #define VECTORIZE3_VEC_SCA(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec3 func \ + GLM_FUNC_QUALIFIER tvec3 func \ ( \ - detail::tvec3 const & x, \ - typename detail::tvec3::value_type const & y \ + tvec3 const & x, \ + typename tvec3::value_type const & y \ ) \ { \ - return detail::tvec3( \ + return tvec3( \ func(x.x, y), \ func(x.y, y), \ func(x.z, y)); \ @@ -122,13 +122,13 @@ #define VECTORIZE4_VEC_SCA(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec4 func \ + GLM_FUNC_QUALIFIER tvec4 func \ ( \ - detail::tvec4 const & x, \ - typename detail::tvec4::value_type const & y \ + tvec4 const & x, \ + typename tvec4::value_type const & y \ ) \ { \ - return detail::tvec4( \ + return tvec4( \ func(x.x, y), \ func(x.y, y), \ func(x.z, y), \ @@ -143,38 +143,38 @@ #define VECTORIZE1_VEC_VEC(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec1 func \ + GLM_FUNC_QUALIFIER tvec1 func \ ( \ - detail::tvec1 const & x, \ - detail::tvec1 const & y \ + tvec1 const & x, \ + tvec1 const & y \ ) \ { \ - return detail::tvec1( \ + return tvec1( \ func(x.x, y.x)); \ } #define VECTORIZE2_VEC_VEC(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec2 func \ + GLM_FUNC_QUALIFIER tvec2 func \ ( \ - detail::tvec2 const & x, \ - detail::tvec2 const & y \ + tvec2 const & x, \ + tvec2 const & y \ ) \ { \ - return detail::tvec2( \ + return tvec2( \ func(x.x, y.x), \ func(x.y, y.y)); \ } #define VECTORIZE3_VEC_VEC(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec3 func \ + GLM_FUNC_QUALIFIER tvec3 func \ ( \ - detail::tvec3 const & x, \ - detail::tvec3 const & y \ + tvec3 const & x, \ + tvec3 const & y \ ) \ { \ - return detail::tvec3( \ + return tvec3( \ func(x.x, y.x), \ func(x.y, y.y), \ func(x.z, y.z)); \ @@ -182,13 +182,13 @@ #define VECTORIZE4_VEC_VEC(func) \ template \ - GLM_FUNC_QUALIFIER detail::tvec4 func \ + GLM_FUNC_QUALIFIER tvec4 func \ ( \ - detail::tvec4 const & x, \ - detail::tvec4 const & y \ + tvec4 const & x, \ + tvec4 const & y \ ) \ { \ - return detail::tvec4( \ + return tvec4( \ func(x.x, y.x), \ func(x.y, y.y), \ func(x.z, y.z), \ diff --git a/glm/detail/func_common.inl b/glm/detail/func_common.inl index c6f78332..9a9ecf7e 100644 --- a/glm/detail/func_common.inl +++ b/glm/detail/func_common.inl @@ -312,49 +312,49 @@ namespace detail } template - GLM_FUNC_QUALIFIER detail::tvec1 modf + GLM_FUNC_QUALIFIER tvec1 modf ( - detail::tvec1 const & x, - detail::tvec1 & i + tvec1 const & x, + tvec1 & i ) { - return detail::tvec1( + return tvec1( modf(x.x, i.x)); } template - GLM_FUNC_QUALIFIER detail::tvec2 modf + GLM_FUNC_QUALIFIER tvec2 modf ( - detail::tvec2 const & x, - detail::tvec2 & i + tvec2 const & x, + tvec2 & i ) { - return detail::tvec2( + return tvec2( modf(x.x, i.x), modf(x.y, i.y)); } template - GLM_FUNC_QUALIFIER detail::tvec3 modf + GLM_FUNC_QUALIFIER tvec3 modf ( - detail::tvec3 const & x, - detail::tvec3 & i + tvec3 const & x, + tvec3 & i ) { - return detail::tvec3( + return tvec3( modf(x.x, i.x), modf(x.y, i.y), modf(x.z, i.z)); } template - GLM_FUNC_QUALIFIER detail::tvec4 modf + GLM_FUNC_QUALIFIER tvec4 modf ( - detail::tvec4 const & x, - detail::tvec4 & i + tvec4 const & x, + tvec4 & i ) { - return detail::tvec4( + return tvec4( modf(x.x, i.x), modf(x.y, i.y), modf(x.z, i.z), @@ -422,9 +422,9 @@ namespace detail } template - GLM_FUNC_QUALIFIER detail::tvec2 clamp + GLM_FUNC_QUALIFIER tvec2 clamp ( - detail::tvec2 const & x, + tvec2 const & x, T const & minVal, T const & maxVal ) @@ -433,15 +433,15 @@ namespace detail std::numeric_limits::is_iec559 || std::numeric_limits::is_integer, "'clamp' only accept floating-point or integer inputs"); - return detail::tvec2( + return tvec2( clamp(x.x, minVal, maxVal), clamp(x.y, minVal, maxVal)); } template - GLM_FUNC_QUALIFIER detail::tvec3 clamp + GLM_FUNC_QUALIFIER tvec3 clamp ( - detail::tvec3 const & x, + tvec3 const & x, T const & minVal, T const & maxVal ) @@ -450,16 +450,16 @@ namespace detail std::numeric_limits::is_iec559 || std::numeric_limits::is_integer, "'clamp' only accept floating-point or integer inputs"); - return detail::tvec3( + return tvec3( clamp(x.x, minVal, maxVal), clamp(x.y, minVal, maxVal), clamp(x.z, minVal, maxVal)); } template - GLM_FUNC_QUALIFIER detail::tvec4 clamp + GLM_FUNC_QUALIFIER tvec4 clamp ( - detail::tvec4 const & x, + tvec4 const & x, T const & minVal, T const & maxVal ) @@ -468,7 +468,7 @@ namespace detail std::numeric_limits::is_iec559 || std::numeric_limits::is_integer, "'clamp' only accept floating-point or integer inputs"); - return detail::tvec4( + return tvec4( clamp(x.x, minVal, maxVal), clamp(x.y, minVal, maxVal), clamp(x.z, minVal, maxVal), @@ -476,53 +476,53 @@ namespace detail } template - GLM_FUNC_QUALIFIER detail::tvec2 clamp + GLM_FUNC_QUALIFIER tvec2 clamp ( - detail::tvec2 const & x, - detail::tvec2 const & minVal, - detail::tvec2 const & maxVal + tvec2 const & x, + tvec2 const & minVal, + tvec2 const & maxVal ) { GLM_STATIC_ASSERT( std::numeric_limits::is_iec559 || std::numeric_limits::is_integer, "'clamp' only accept floating-point or integer inputs"); - return detail::tvec2( + return tvec2( clamp(x.x, minVal.x, maxVal.x), clamp(x.y, minVal.y, maxVal.y)); } template - GLM_FUNC_QUALIFIER detail::tvec3 clamp + GLM_FUNC_QUALIFIER tvec3 clamp ( - detail::tvec3 const & x, - detail::tvec3 const & minVal, - detail::tvec3 const & maxVal + tvec3 const & x, + tvec3 const & minVal, + tvec3 const & maxVal ) { GLM_STATIC_ASSERT( std::numeric_limits::is_iec559 || std::numeric_limits::is_integer, "'clamp' only accept floating-point or integer inputs"); - return detail::tvec3( + return tvec3( clamp(x.x, minVal.x, maxVal.x), clamp(x.y, minVal.y, maxVal.y), clamp(x.z, minVal.z, maxVal.z)); } template - GLM_FUNC_QUALIFIER detail::tvec4 clamp + GLM_FUNC_QUALIFIER tvec4 clamp ( - detail::tvec4 const & x, - detail::tvec4 const & minVal, - detail::tvec4 const & maxVal + tvec4 const & x, + tvec4 const & minVal, + tvec4 const & maxVal ) { GLM_STATIC_ASSERT( std::numeric_limits::is_iec559 || std::numeric_limits::is_integer, "'clamp' only accept floating-point or integer inputs"); - return detail::tvec4( + return tvec4( clamp(x.x, minVal.x, maxVal.x), clamp(x.y, minVal.y, maxVal.y), clamp(x.z, minVal.z, maxVal.z), @@ -601,47 +601,47 @@ namespace detail } template - GLM_FUNC_QUALIFIER detail::tvec2 smoothstep + GLM_FUNC_QUALIFIER tvec2 smoothstep ( T const & edge0, T const & edge1, - detail::tvec2 const & x + tvec2 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'smoothstep' only accept floating-point inputs"); - return detail::tvec2( + return tvec2( smoothstep(edge0, edge1, x.x), smoothstep(edge0, edge1, x.y)); } template - GLM_FUNC_QUALIFIER detail::tvec3 smoothstep + GLM_FUNC_QUALIFIER tvec3 smoothstep ( T const & edge0, T const & edge1, - detail::tvec3 const & x + tvec3 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'smoothstep' only accept floating-point inputs"); - return detail::tvec3( + return tvec3( smoothstep(edge0, edge1, x.x), smoothstep(edge0, edge1, x.y), smoothstep(edge0, edge1, x.z)); } template - GLM_FUNC_QUALIFIER detail::tvec4 smoothstep + GLM_FUNC_QUALIFIER tvec4 smoothstep ( T const & edge0, T const & edge1, - detail::tvec4 const & x + tvec4 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'smoothstep' only accept floating-point inputs"); - return detail::tvec4( + return tvec4( smoothstep(edge0, edge1, x.x), smoothstep(edge0, edge1, x.y), smoothstep(edge0, edge1, x.z), @@ -649,47 +649,47 @@ namespace detail } template - GLM_FUNC_QUALIFIER detail::tvec2 smoothstep + GLM_FUNC_QUALIFIER tvec2 smoothstep ( - detail::tvec2 const & edge0, - detail::tvec2 const & edge1, - detail::tvec2 const & x + tvec2 const & edge0, + tvec2 const & edge1, + tvec2 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'smoothstep' only accept floating-point inputs"); - return detail::tvec2( + return tvec2( smoothstep(edge0.x, edge1.x, x.x), smoothstep(edge0.y, edge1.y, x.y)); } template - GLM_FUNC_QUALIFIER detail::tvec3 smoothstep + GLM_FUNC_QUALIFIER tvec3 smoothstep ( - detail::tvec3 const & edge0, - detail::tvec3 const & edge1, - detail::tvec3 const & x + tvec3 const & edge0, + tvec3 const & edge1, + tvec3 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'smoothstep' only accept floating-point inputs"); - return detail::tvec3( + return tvec3( smoothstep(edge0.x, edge1.x, x.x), smoothstep(edge0.y, edge1.y, x.y), smoothstep(edge0.z, edge1.z, x.z)); } template - GLM_FUNC_QUALIFIER detail::tvec4 smoothstep + GLM_FUNC_QUALIFIER tvec4 smoothstep ( - detail::tvec4 const & edge0, - detail::tvec4 const & edge1, - detail::tvec4 const & x + tvec4 const & edge0, + tvec4 const & edge1, + tvec4 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'smoothstep' only accept floating-point inputs"); - return detail::tvec4( + return tvec4( smoothstep(edge0.x, edge1.x, x.x), smoothstep(edge0.y, edge1.y, x.y), smoothstep(edge0.z, edge1.z, x.z), @@ -720,53 +720,53 @@ namespace detail } template - GLM_FUNC_QUALIFIER typename detail::tvec1::bool_type isnan + GLM_FUNC_QUALIFIER typename tvec1::bool_type isnan ( - detail::tvec1 const & x + tvec1 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isnan' only accept floating-point inputs"); - return typename detail::tvec1::bool_type( + return typename tvec1::bool_type( isnan(x.x)); } template - GLM_FUNC_QUALIFIER typename detail::tvec2::bool_type isnan + GLM_FUNC_QUALIFIER typename tvec2::bool_type isnan ( - detail::tvec2 const & x + tvec2 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isnan' only accept floating-point inputs"); - return typename detail::tvec2::bool_type( + return typename tvec2::bool_type( isnan(x.x), isnan(x.y)); } template - GLM_FUNC_QUALIFIER typename detail::tvec3::bool_type isnan + GLM_FUNC_QUALIFIER typename tvec3::bool_type isnan ( - detail::tvec3 const & x + tvec3 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isnan' only accept floating-point inputs"); - return typename detail::tvec3::bool_type( + return typename tvec3::bool_type( isnan(x.x), isnan(x.y), isnan(x.z)); } template - GLM_FUNC_QUALIFIER typename detail::tvec4::bool_type isnan + GLM_FUNC_QUALIFIER typename tvec4::bool_type isnan ( - detail::tvec4 const & x + tvec4 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isnan' only accept floating-point inputs"); - return typename detail::tvec4::bool_type( + return typename tvec4::bool_type( isnan(x.x), isnan(x.y), isnan(x.z), @@ -798,53 +798,53 @@ namespace detail } template - GLM_FUNC_QUALIFIER typename detail::tvec1::bool_type isinf + GLM_FUNC_QUALIFIER typename tvec1::bool_type isinf ( - detail::tvec1 const & x + tvec1 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isinf' only accept floating-point inputs"); - return typename detail::tvec1::bool_type( + return typename tvec1::bool_type( isinf(x.x)); } template - GLM_FUNC_QUALIFIER typename detail::tvec2::bool_type isinf + GLM_FUNC_QUALIFIER typename tvec2::bool_type isinf ( - detail::tvec2 const & x + tvec2 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isinf' only accept floating-point inputs"); - return typename detail::tvec2::bool_type( + return typename tvec2::bool_type( isinf(x.x), isinf(x.y)); } template - GLM_FUNC_QUALIFIER typename detail::tvec3::bool_type isinf + GLM_FUNC_QUALIFIER typename tvec3::bool_type isinf ( - detail::tvec3 const & x + tvec3 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isinf' only accept floating-point inputs"); - return typename detail::tvec3::bool_type( + return typename tvec3::bool_type( isinf(x.x), isinf(x.y), isinf(x.z)); } template - GLM_FUNC_QUALIFIER typename detail::tvec4::bool_type isinf + GLM_FUNC_QUALIFIER typename tvec4::bool_type isinf ( - detail::tvec4 const & x + tvec4 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'isinf' only accept floating-point inputs"); - return typename detail::tvec4::bool_type( + return typename tvec4::bool_type( isinf(x.x), isinf(x.y), isinf(x.z), @@ -919,56 +919,56 @@ namespace detail } template - GLM_FUNC_QUALIFIER detail::tvec1 frexp + GLM_FUNC_QUALIFIER tvec1 frexp ( - detail::tvec1 const & x, - detail::tvec1 & exp + tvec1 const & x, + tvec1 & exp ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'frexp' only accept floating-point inputs"); - return detail::tvec1(std::frexp(x.x, exp.x)); + return tvec1(std::frexp(x.x, exp.x)); } template - GLM_FUNC_QUALIFIER detail::tvec2 frexp + GLM_FUNC_QUALIFIER tvec2 frexp ( - detail::tvec2 const & x, - detail::tvec2 & exp + tvec2 const & x, + tvec2 & exp ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'frexp' only accept floating-point inputs"); - return detail::tvec2( + return tvec2( frexp(x.x, exp.x), frexp(x.y, exp.y)); } template - GLM_FUNC_QUALIFIER detail::tvec3 frexp + GLM_FUNC_QUALIFIER tvec3 frexp ( - detail::tvec3 const & x, - detail::tvec3 & exp + tvec3 const & x, + tvec3 & exp ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'frexp' only accept floating-point inputs"); - return detail::tvec3( + return tvec3( frexp(x.x, exp.x), frexp(x.y, exp.y), frexp(x.z, exp.z)); } template - GLM_FUNC_QUALIFIER detail::tvec4 frexp + GLM_FUNC_QUALIFIER tvec4 frexp ( - detail::tvec4 const & x, - detail::tvec4 & exp + tvec4 const & x, + tvec4 & exp ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'frexp' only accept floating-point inputs"); - return detail::tvec4( + return tvec4( frexp(x.x, exp.x), frexp(x.y, exp.y), frexp(x.z, exp.z), @@ -988,57 +988,57 @@ namespace detail } template - GLM_FUNC_QUALIFIER detail::tvec1 ldexp + GLM_FUNC_QUALIFIER tvec1 ldexp ( - detail::tvec1 const & x, - detail::tvec1 const & exp + tvec1 const & x, + tvec1 const & exp ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'ldexp' only accept floating-point inputs"); - return detail::tvec1( + return tvec1( ldexp(x.x, exp.x)); } template - GLM_FUNC_QUALIFIER detail::tvec2 ldexp + GLM_FUNC_QUALIFIER tvec2 ldexp ( - detail::tvec2 const & x, - detail::tvec2 const & exp + tvec2 const & x, + tvec2 const & exp ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'ldexp' only accept floating-point inputs"); - return detail::tvec2( + return tvec2( ldexp(x.x, exp.x), ldexp(x.y, exp.y)); } template - GLM_FUNC_QUALIFIER detail::tvec3 ldexp + GLM_FUNC_QUALIFIER tvec3 ldexp ( - detail::tvec3 const & x, - detail::tvec3 const & exp + tvec3 const & x, + tvec3 const & exp ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'ldexp' only accept floating-point inputs"); - return detail::tvec3( + return tvec3( ldexp(x.x, exp.x), ldexp(x.y, exp.y), ldexp(x.z, exp.z)); } template - GLM_FUNC_QUALIFIER detail::tvec4 ldexp + GLM_FUNC_QUALIFIER tvec4 ldexp ( - detail::tvec4 const & x, - detail::tvec4 const & exp + tvec4 const & x, + tvec4 const & exp ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'ldexp' only accept floating-point inputs"); - return detail::tvec4( + return tvec4( ldexp(x.x, exp.x), ldexp(x.y, exp.y), ldexp(x.z, exp.z), diff --git a/glm/detail/func_exponential.inl b/glm/detail/func_exponential.inl index 4e68073a..854862b2 100644 --- a/glm/detail/func_exponential.inl +++ b/glm/detail/func_exponential.inl @@ -173,38 +173,38 @@ namespace detail struct compute_sqrt{}; template - struct compute_sqrt + struct compute_sqrt { - GLM_FUNC_QUALIFIER static detail::tvec1 call(detail::tvec1 const & x) + GLM_FUNC_QUALIFIER static tvec1 call(tvec1 const & x) { - return detail::tvec1(std::sqrt(x.x)); + return tvec1(std::sqrt(x.x)); } }; template - struct compute_sqrt + struct compute_sqrt { - GLM_FUNC_QUALIFIER static detail::tvec2 call(detail::tvec2 const & x) + GLM_FUNC_QUALIFIER static tvec2 call(tvec2 const & x) { - return detail::tvec2(std::sqrt(x.x), std::sqrt(x.y)); + return tvec2(std::sqrt(x.x), std::sqrt(x.y)); } }; template - struct compute_sqrt + struct compute_sqrt { - GLM_FUNC_QUALIFIER static detail::tvec3 call(detail::tvec3 const & x) + GLM_FUNC_QUALIFIER static tvec3 call(tvec3 const & x) { - return detail::tvec3(std::sqrt(x.x), std::sqrt(x.y), std::sqrt(x.z)); + return tvec3(std::sqrt(x.x), std::sqrt(x.y), std::sqrt(x.z)); } }; template - struct compute_sqrt + struct compute_sqrt { - GLM_FUNC_QUALIFIER static detail::tvec4 call(detail::tvec4 const & x) + GLM_FUNC_QUALIFIER static tvec4 call(tvec4 const & x) { - return detail::tvec4(std::sqrt(x.x), std::sqrt(x.y), std::sqrt(x.z), std::sqrt(x.w)); + return tvec4(std::sqrt(x.x), std::sqrt(x.y), std::sqrt(x.z), std::sqrt(x.w)); } }; }//namespace detail @@ -215,20 +215,20 @@ namespace detail GLM_FUNC_QUALIFIER float sqrt(float x) { # ifdef __CUDACC__ // Wordaround for a CUDA compiler bug up to CUDA6 - detail::tvec1 tmp(detail::compute_sqrt::call(x)); + tvec1 tmp(detail::compute_sqrt::call(x)); return tmp.x; # else - return detail::compute_sqrt::call(x).x; + return detail::compute_sqrt::call(x).x; # endif } GLM_FUNC_QUALIFIER double sqrt(double x) { # ifdef __CUDACC__ // Wordaround for a CUDA compiler bug up to CUDA6 - detail::tvec1 tmp(detail::compute_sqrt::call(x)); + tvec1 tmp(detail::compute_sqrt::call(x)); return tmp.x; # else - return detail::compute_sqrt::call(x).x; + return detail::compute_sqrt::call(x).x; # endif } */ diff --git a/glm/detail/func_geometric.hpp b/glm/detail/func_geometric.hpp index 491e867b..2a9000b2 100644 --- a/glm/detail/func_geometric.hpp +++ b/glm/detail/func_geometric.hpp @@ -92,9 +92,9 @@ namespace glm /// @see GLSL cross man page /// @see GLSL 4.20.8 specification, section 8.5 Geometric Functions template - GLM_FUNC_DECL detail::tvec3 cross( - detail::tvec3 const & x, - detail::tvec3 const & y); + GLM_FUNC_DECL tvec3 cross( + tvec3 const & x, + tvec3 const & y); /// Returns a vector in the same direction as x but with length of 1. /// diff --git a/glm/detail/func_geometric.inl b/glm/detail/func_geometric.inl index 1e8cd633..6122b520 100644 --- a/glm/detail/func_geometric.inl +++ b/glm/detail/func_geometric.inl @@ -39,45 +39,45 @@ namespace detail struct compute_dot{}; template - struct compute_dot + struct compute_dot { - GLM_FUNC_QUALIFIER static T call(detail::tvec1 const & x, detail::tvec1 const & y) + GLM_FUNC_QUALIFIER static T call(tvec1 const & x, tvec1 const & y) { # ifdef __CUDACC__ // Wordaround for a CUDA compiler bug up to CUDA6 - detail::tvec1 tmp(x * y); + tvec1 tmp(x * y); return tmp.x; # else - return detail::tvec1(x * y).x; + return tvec1(x * y).x; # endif } }; template - struct compute_dot + struct compute_dot { - GLM_FUNC_QUALIFIER static T call(detail::tvec2 const & x, detail::tvec2 const & y) + GLM_FUNC_QUALIFIER static T call(tvec2 const & x, tvec2 const & y) { - detail::tvec2 tmp(x * y); + tvec2 tmp(x * y); return tmp.x + tmp.y; } }; template - struct compute_dot + struct compute_dot { - GLM_FUNC_QUALIFIER static T call(detail::tvec3 const & x, detail::tvec3 const & y) + GLM_FUNC_QUALIFIER static T call(tvec3 const & x, tvec3 const & y) { - detail::tvec3 tmp(x * y); + tvec3 tmp(x * y); return tmp.x + tmp.y + tmp.z; } }; template - struct compute_dot + struct compute_dot { - GLM_FUNC_QUALIFIER static T call(detail::tvec4 const & x, detail::tvec4 const & y) + GLM_FUNC_QUALIFIER static T call(tvec4 const & x, tvec4 const & y) { - detail::tvec4 tmp(x * y); + tvec4 tmp(x * y); return (tmp.x + tmp.y) + (tmp.z + tmp.w); } }; @@ -96,7 +96,7 @@ namespace detail } template - GLM_FUNC_QUALIFIER T length(detail::tvec2 const & v) + GLM_FUNC_QUALIFIER T length(tvec2 const & v) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'length' only accept floating-point inputs"); @@ -105,7 +105,7 @@ namespace detail } template - GLM_FUNC_QUALIFIER T length(detail::tvec3 const & v) + GLM_FUNC_QUALIFIER T length(tvec3 const & v) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'length' only accept floating-point inputs"); @@ -114,7 +114,7 @@ namespace detail } template - GLM_FUNC_QUALIFIER T length(detail::tvec4 const & v) + GLM_FUNC_QUALIFIER T length(tvec4 const & v) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'length' only accept floating-point inputs"); @@ -138,8 +138,8 @@ namespace detail template GLM_FUNC_QUALIFIER T distance ( - detail::tvec2 const & p0, - detail::tvec2 const & p1 + tvec2 const & p0, + tvec2 const & p1 ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'distance' only accept floating-point inputs"); @@ -150,8 +150,8 @@ namespace detail template GLM_FUNC_QUALIFIER T distance ( - detail::tvec3 const & p0, - detail::tvec3 const & p1 + tvec3 const & p0, + tvec3 const & p1 ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'distance' only accept floating-point inputs"); @@ -162,8 +162,8 @@ namespace detail template GLM_FUNC_QUALIFIER T distance ( - detail::tvec4 const & p0, - detail::tvec4 const & p1 + tvec4 const & p0, + tvec4 const & p1 ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'distance' only accept floating-point inputs"); @@ -180,7 +180,7 @@ namespace detail ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'dot' only accept floating-point inputs"); - return detail::compute_dot::call(x, y); + return detail::compute_dot::call(x, y); } template class vecType> @@ -213,15 +213,15 @@ namespace detail */ // cross template - GLM_FUNC_QUALIFIER detail::tvec3 cross + GLM_FUNC_QUALIFIER tvec3 cross ( - detail::tvec3 const & x, - detail::tvec3 const & y + tvec3 const & x, + tvec3 const & y ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'cross' only accept floating-point inputs"); - return detail::tvec3( + return tvec3( x.y * y.z - y.y * x.z, x.z * y.x - y.z * x.x, x.x * y.y - y.x * x.y); @@ -241,9 +241,9 @@ namespace detail // According to issue 10 GLSL 1.10 specification, if length(x) == 0 then result is undefine and generate an error template - GLM_FUNC_QUALIFIER detail::tvec2 normalize + GLM_FUNC_QUALIFIER tvec2 normalize ( - detail::tvec2 const & x + tvec2 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'normalize' only accept floating-point inputs"); @@ -253,9 +253,9 @@ namespace detail } template - GLM_FUNC_QUALIFIER detail::tvec3 normalize + GLM_FUNC_QUALIFIER tvec3 normalize ( - detail::tvec3 const & x + tvec3 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'normalize' only accept floating-point inputs"); @@ -265,9 +265,9 @@ namespace detail } template - GLM_FUNC_QUALIFIER detail::tvec4 normalize + GLM_FUNC_QUALIFIER tvec4 normalize ( - detail::tvec4 const & x + tvec4 const & x ) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'normalize' only accept floating-point inputs"); diff --git a/glm/detail/func_integer.inl b/glm/detail/func_integer.inl index e792461d..e173b0f6 100644 --- a/glm/detail/func_integer.inl +++ b/glm/detail/func_integer.inl @@ -300,41 +300,41 @@ namespace glm } template - GLM_FUNC_QUALIFIER detail::tvec2 bitfieldExtract + GLM_FUNC_QUALIFIER tvec2 bitfieldExtract ( - detail::tvec2 const & Value, + tvec2 const & Value, int const & Offset, int const & Bits ) { - return detail::tvec2( + return tvec2( bitfieldExtract(Value[0], Offset, Bits), bitfieldExtract(Value[1], Offset, Bits)); } template - GLM_FUNC_QUALIFIER detail::tvec3 bitfieldExtract + GLM_FUNC_QUALIFIER tvec3 bitfieldExtract ( - detail::tvec3 const & Value, + tvec3 const & Value, int const & Offset, int const & Bits ) { - return detail::tvec3( + return tvec3( bitfieldExtract(Value[0], Offset, Bits), bitfieldExtract(Value[1], Offset, Bits), bitfieldExtract(Value[2], Offset, Bits)); } template - GLM_FUNC_QUALIFIER detail::tvec4 bitfieldExtract + GLM_FUNC_QUALIFIER tvec4 bitfieldExtract ( - detail::tvec4 const & Value, + tvec4 const & Value, int const & Offset, int const & Bits ) { - return detail::tvec4( + return tvec4( bitfieldExtract(Value[0], Offset, Bits), bitfieldExtract(Value[1], Offset, Bits), bitfieldExtract(Value[2], Offset, Bits), @@ -365,44 +365,44 @@ namespace glm } template - GLM_FUNC_QUALIFIER detail::tvec2 bitfieldInsert + GLM_FUNC_QUALIFIER tvec2 bitfieldInsert ( - detail::tvec2 const & Base, - detail::tvec2 const & Insert, + tvec2 const & Base, + tvec2 const & Insert, int const & Offset, int const & Bits ) { - return detail::tvec2( + return tvec2( bitfieldInsert(Base[0], Insert[0], Offset, Bits), bitfieldInsert(Base[1], Insert[1], Offset, Bits)); } template - GLM_FUNC_QUALIFIER detail::tvec3 bitfieldInsert + GLM_FUNC_QUALIFIER tvec3 bitfieldInsert ( - detail::tvec3 const & Base, - detail::tvec3 const & Insert, + tvec3 const & Base, + tvec3 const & Insert, int const & Offset, int const & Bits ) { - return detail::tvec3( + return tvec3( bitfieldInsert(Base[0], Insert[0], Offset, Bits), bitfieldInsert(Base[1], Insert[1], Offset, Bits), bitfieldInsert(Base[2], Insert[2], Offset, Bits)); } template - GLM_FUNC_QUALIFIER detail::tvec4 bitfieldInsert + GLM_FUNC_QUALIFIER tvec4 bitfieldInsert ( - detail::tvec4 const & Base, - detail::tvec4 const & Insert, + tvec4 const & Base, + tvec4 const & Insert, int const & Offset, int const & Bits ) { - return detail::tvec4( + return tvec4( bitfieldInsert(Base[0], Insert[0], Offset, Bits), bitfieldInsert(Base[1], Insert[1], Offset, Bits), bitfieldInsert(Base[2], Insert[2], Offset, Bits), @@ -441,35 +441,35 @@ namespace glm } template - GLM_FUNC_QUALIFIER detail::tvec2 bitCount + GLM_FUNC_QUALIFIER tvec2 bitCount ( - detail::tvec2 const & value + tvec2 const & value ) { - return detail::tvec2( + return tvec2( bitCount(value[0]), bitCount(value[1])); } template - GLM_FUNC_QUALIFIER detail::tvec3 bitCount + GLM_FUNC_QUALIFIER tvec3 bitCount ( - detail::tvec3 const & value + tvec3 const & value ) { - return detail::tvec3( + return tvec3( bitCount(value[0]), bitCount(value[1]), bitCount(value[2])); } template - GLM_FUNC_QUALIFIER detail::tvec4 bitCount + GLM_FUNC_QUALIFIER tvec4 bitCount ( - detail::tvec4 const & value + tvec4 const & value ) { - return detail::tvec4( + return tvec4( bitCount(value[0]), bitCount(value[1]), bitCount(value[2]), @@ -493,35 +493,35 @@ namespace glm } template - GLM_FUNC_QUALIFIER detail::tvec2 findLSB + GLM_FUNC_QUALIFIER tvec2 findLSB ( - detail::tvec2 const & value + tvec2 const & value ) { - return detail::tvec2( + return tvec2( findLSB(value[0]), findLSB(value[1])); } template - GLM_FUNC_QUALIFIER detail::tvec3 findLSB + GLM_FUNC_QUALIFIER tvec3 findLSB ( - detail::tvec3 const & value + tvec3 const & value ) { - return detail::tvec3( + return tvec3( findLSB(value[0]), findLSB(value[1]), findLSB(value[2])); } template - GLM_FUNC_QUALIFIER detail::tvec4 findLSB + GLM_FUNC_QUALIFIER tvec4 findLSB ( - detail::tvec4 const & value + tvec4 const & value ) { - return detail::tvec4( + return tvec4( findLSB(value[0]), findLSB(value[1]), findLSB(value[2]), @@ -617,35 +617,35 @@ namespace glm #endif//(GLM_COMPILER) template - GLM_FUNC_QUALIFIER detail::tvec2 findMSB + GLM_FUNC_QUALIFIER tvec2 findMSB ( - detail::tvec2 const & value + tvec2 const & value ) { - return detail::tvec2( + return tvec2( findMSB(value[0]), findMSB(value[1])); } template - GLM_FUNC_QUALIFIER detail::tvec3 findMSB + GLM_FUNC_QUALIFIER tvec3 findMSB ( - detail::tvec3 const & value + tvec3 const & value ) { - return detail::tvec3( + return tvec3( findMSB(value[0]), findMSB(value[1]), findMSB(value[2])); } template - GLM_FUNC_QUALIFIER detail::tvec4 findMSB + GLM_FUNC_QUALIFIER tvec4 findMSB ( - detail::tvec4 const & value + tvec4 const & value ) { - return detail::tvec4( + return tvec4( findMSB(value[0]), findMSB(value[1]), findMSB(value[2]), diff --git a/glm/detail/func_matrix.inl b/glm/detail/func_matrix.inl index 61bbfbf4..6a3b3099 100644 --- a/glm/detail/func_matrix.inl +++ b/glm/detail/func_matrix.inl @@ -41,11 +41,11 @@ namespace detail struct compute_outerProduct{}; template - struct compute_outerProduct + struct compute_outerProduct { - GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(detail::tvec2 const & c, detail::tvec2 const & r) + GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(tvec2 const & c, tvec2 const & r) { - detail::tmat2x2 m(detail::tmat2x2::_null); + tmat2x2 m(tmat2x2::_null); m[0][0] = c[0] * r[0]; m[0][1] = c[1] * r[0]; m[1][0] = c[0] * r[1]; @@ -55,11 +55,11 @@ namespace detail }; template - struct compute_outerProduct + struct compute_outerProduct { - GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(detail::tvec3 const & c, detail::tvec3 const & r) + GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(tvec3 const & c, tvec3 const & r) { - detail::tmat3x3 m(detail::tmat3x3::_null); + tmat3x3 m(tmat3x3::_null); for(length_t i(0); i < m.length(); ++i) m[i] = c * r[i]; return m; @@ -67,11 +67,11 @@ namespace detail }; template - struct compute_outerProduct + struct compute_outerProduct { - GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(detail::tvec4 const & c, detail::tvec4 const & r) + GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(tvec4 const & c, tvec4 const & r) { - detail::tmat4x4 m(detail::tmat4x4::_null); + tmat4x4 m(tmat4x4::_null); for(length_t i(0); i < m.length(); ++i) m[i] = c * r[i]; return m; @@ -79,11 +79,11 @@ namespace detail }; template - struct compute_outerProduct + struct compute_outerProduct { - GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(detail::tvec3 const & c, detail::tvec2 const & r) + GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(tvec3 const & c, tvec2 const & r) { - detail::tmat2x3 m(detail::tmat2x3::_null); + tmat2x3 m(tmat2x3::_null); m[0][0] = c.x * r.x; m[0][1] = c.y * r.x; m[0][2] = c.z * r.x; @@ -95,11 +95,11 @@ namespace detail }; template - struct compute_outerProduct + struct compute_outerProduct { - GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(detail::tvec2 const & c, detail::tvec3 const & r) + GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(tvec2 const & c, tvec3 const & r) { - detail::tmat3x2 m(detail::tmat3x2::_null); + tmat3x2 m(tmat3x2::_null); m[0][0] = c.x * r.x; m[0][1] = c.y * r.x; m[1][0] = c.x * r.y; @@ -111,11 +111,11 @@ namespace detail }; template - struct compute_outerProduct + struct compute_outerProduct { - GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(detail::tvec4 const & c, detail::tvec2 const & r) + GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(tvec4 const & c, tvec2 const & r) { - detail::tmat2x4 m(detail::tmat2x4::_null); + tmat2x4 m(tmat2x4::_null); m[0][0] = c.x * r.x; m[0][1] = c.y * r.x; m[0][2] = c.z * r.x; @@ -129,11 +129,11 @@ namespace detail }; template - struct compute_outerProduct + struct compute_outerProduct { - GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(detail::tvec2 const & c, detail::tvec4 const & r) + GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(tvec2 const & c, tvec4 const & r) { - detail::tmat4x2 m(detail::tmat4x2::_null); + tmat4x2 m(tmat4x2::_null); m[0][0] = c.x * r.x; m[0][1] = c.y * r.x; m[1][0] = c.x * r.y; @@ -147,11 +147,11 @@ namespace detail }; template - struct compute_outerProduct + struct compute_outerProduct { - GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(detail::tvec4 const & c, detail::tvec3 const & r) + GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(tvec4 const & c, tvec3 const & r) { - detail::tmat3x4 m(detail::tmat3x4::_null); + tmat3x4 m(tmat3x4::_null); m[0][0] = c.x * r.x; m[0][1] = c.y * r.x; m[0][2] = c.z * r.x; @@ -169,11 +169,11 @@ namespace detail }; template - struct compute_outerProduct + struct compute_outerProduct { - GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(detail::tvec3 const & c, detail::tvec4 const & r) + GLM_FUNC_QUALIFIER static typename detail::outerProduct_trait::type call(tvec3 const & c, tvec4 const & r) { - detail::tmat4x3 m(detail::tmat4x3::_null); + tmat4x3 m(tmat4x3::_null); m[0][0] = c.x * r.x; m[0][1] = c.y * r.x; m[0][2] = c.z * r.x; @@ -194,11 +194,11 @@ namespace detail struct compute_transpose{}; template - struct compute_transpose + struct compute_transpose { - GLM_FUNC_QUALIFIER static detail::tmat2x2 call(detail::tmat2x2 const & m) + GLM_FUNC_QUALIFIER static tmat2x2 call(tmat2x2 const & m) { - detail::tmat2x2 result(detail::tmat2x2::_null); + tmat2x2 result(tmat2x2::_null); result[0][0] = m[0][0]; result[0][1] = m[1][0]; result[1][0] = m[0][1]; @@ -208,11 +208,11 @@ namespace detail }; template - struct compute_transpose + struct compute_transpose { - GLM_FUNC_QUALIFIER static detail::tmat3x2 call(detail::tmat2x3 const & m) + GLM_FUNC_QUALIFIER static tmat3x2 call(tmat2x3 const & m) { - detail::tmat3x2 result(detail::tmat3x2::_null); + tmat3x2 result(tmat3x2::_null); result[0][0] = m[0][0]; result[0][1] = m[1][0]; result[1][0] = m[0][1]; @@ -224,11 +224,11 @@ namespace detail }; template - struct compute_transpose + struct compute_transpose { - GLM_FUNC_QUALIFIER static detail::tmat4x2 call(detail::tmat2x4 const & m) + GLM_FUNC_QUALIFIER static tmat4x2 call(tmat2x4 const & m) { - detail::tmat4x2 result(detail::tmat4x2::_null); + tmat4x2 result(tmat4x2::_null); result[0][0] = m[0][0]; result[0][1] = m[1][0]; result[1][0] = m[0][1]; @@ -242,11 +242,11 @@ namespace detail }; template - struct compute_transpose + struct compute_transpose { - GLM_FUNC_QUALIFIER static detail::tmat2x3 call(detail::tmat3x2 const & m) + GLM_FUNC_QUALIFIER static tmat2x3 call(tmat3x2 const & m) { - detail::tmat2x3 result(detail::tmat2x3::_null); + tmat2x3 result(tmat2x3::_null); result[0][0] = m[0][0]; result[0][1] = m[1][0]; result[0][2] = m[2][0]; @@ -258,11 +258,11 @@ namespace detail }; template - struct compute_transpose + struct compute_transpose { - GLM_FUNC_QUALIFIER static detail::tmat3x3 call(detail::tmat3x3 const & m) + GLM_FUNC_QUALIFIER static tmat3x3 call(tmat3x3 const & m) { - detail::tmat3x3 result(detail::tmat3x3::_null); + tmat3x3 result(tmat3x3::_null); result[0][0] = m[0][0]; result[0][1] = m[1][0]; result[0][2] = m[2][0]; @@ -279,11 +279,11 @@ namespace detail }; template - struct compute_transpose + struct compute_transpose { - GLM_FUNC_QUALIFIER static detail::tmat4x3 call(detail::tmat3x4 const & m) + GLM_FUNC_QUALIFIER static tmat4x3 call(tmat3x4 const & m) { - detail::tmat4x3 result(detail::tmat4x3::_null); + tmat4x3 result(tmat4x3::_null); result[0][0] = m[0][0]; result[0][1] = m[1][0]; result[0][2] = m[2][0]; @@ -301,11 +301,11 @@ namespace detail }; template - struct compute_transpose + struct compute_transpose { - GLM_FUNC_QUALIFIER static detail::tmat2x4 call(detail::tmat4x2 const & m) + GLM_FUNC_QUALIFIER static tmat2x4 call(tmat4x2 const & m) { - detail::tmat2x4 result(detail::tmat2x4::_null); + tmat2x4 result(tmat2x4::_null); result[0][0] = m[0][0]; result[0][1] = m[1][0]; result[0][2] = m[2][0]; @@ -319,11 +319,11 @@ namespace detail }; template - struct compute_transpose + struct compute_transpose { - GLM_FUNC_QUALIFIER static detail::tmat3x4 call(detail::tmat4x3 const & m) + GLM_FUNC_QUALIFIER static tmat3x4 call(tmat4x3 const & m) { - detail::tmat3x4 result(detail::tmat3x4::_null); + tmat3x4 result(tmat3x4::_null); result[0][0] = m[0][0]; result[0][1] = m[1][0]; result[0][2] = m[2][0]; @@ -341,11 +341,11 @@ namespace detail }; template - struct compute_transpose + struct compute_transpose { - GLM_FUNC_QUALIFIER static detail::tmat4x4 call(detail::tmat4x4 const & m) + GLM_FUNC_QUALIFIER static tmat4x4 call(tmat4x4 const & m) { - detail::tmat4x4 result(detail::tmat4x4::_null); + tmat4x4 result(tmat4x4::_null); result[0][0] = m[0][0]; result[0][1] = m[1][0]; result[0][2] = m[2][0]; @@ -373,18 +373,18 @@ namespace detail struct compute_determinant{}; template - struct compute_determinant + struct compute_determinant { - GLM_FUNC_QUALIFIER static T call(detail::tmat2x2 const & m) + GLM_FUNC_QUALIFIER static T call(tmat2x2 const & m) { return m[0][0] * m[1][1] - m[1][0] * m[0][1]; } }; template - struct compute_determinant + struct compute_determinant { - GLM_FUNC_QUALIFIER static T call(detail::tmat3x3 const & m) + GLM_FUNC_QUALIFIER static T call(tmat3x3 const & m) { return + m[0][0] * (m[1][1] * m[2][2] - m[2][1] * m[1][2]) @@ -394,9 +394,9 @@ namespace detail }; template - struct compute_determinant + struct compute_determinant { - GLM_FUNC_QUALIFIER static T call(detail::tmat4x4 const & m) + GLM_FUNC_QUALIFIER static T call(tmat4x4 const & m) { T SubFactor00 = m[2][2] * m[3][3] - m[3][2] * m[2][3]; T SubFactor01 = m[2][1] * m[3][3] - m[3][1] * m[2][3]; @@ -405,7 +405,7 @@ namespace detail T SubFactor04 = m[2][0] * m[3][2] - m[3][0] * m[2][2]; T SubFactor05 = m[2][0] * m[3][1] - m[3][0] * m[2][1]; - detail::tvec4 DetCof( + tvec4 DetCof( + (m[1][1] * SubFactor00 - m[1][2] * SubFactor01 + m[1][3] * SubFactor02), - (m[1][0] * SubFactor00 - m[1][2] * SubFactor03 + m[1][3] * SubFactor04), + (m[1][0] * SubFactor01 - m[1][1] * SubFactor03 + m[1][3] * SubFactor05), @@ -454,7 +454,7 @@ namespace detail GLM_FUNC_QUALIFIER matType inverse(matType const & m) { GLM_STATIC_ASSERT(std::numeric_limits::is_iec559, "'inverse' only accept floating-point inputs"); - return detail::compute_inverse::call(m); + return detail::compute_inverse(m); } }//namespace glm diff --git a/glm/detail/func_noise.hpp b/glm/detail/func_noise.hpp index f7aca685..d0869ec7 100644 --- a/glm/detail/func_noise.hpp +++ b/glm/detail/func_noise.hpp @@ -63,7 +63,7 @@ namespace glm /// @see GLSL noise2 man page /// @see GLSL 4.20.8 specification, section 8.13 Noise Functions template - GLM_FUNC_DECL detail::tvec2 noise2(genType const & x); + GLM_FUNC_DECL tvec2 noise2(genType const & x); /// Returns a 3D noise value based on the input value x. /// @@ -72,7 +72,7 @@ namespace glm /// @see GLSL noise3 man page /// @see GLSL 4.20.8 specification, section 8.13 Noise Functions template - GLM_FUNC_DECL detail::tvec3 noise3(genType const & x); + GLM_FUNC_DECL tvec3 noise3(genType const & x); /// Returns a 4D noise value based on the input value x. /// @@ -81,7 +81,7 @@ namespace glm /// @see GLSL noise4 man page /// @see GLSL 4.20.8 specification, section 8.13 Noise Functions template - GLM_FUNC_DECL detail::tvec4 noise4(genType const & x); + GLM_FUNC_DECL tvec4 noise4(genType const & x); /// @} }//namespace glm diff --git a/glm/detail/func_noise.inl b/glm/detail/func_noise.inl index 91a72dd4..cab1414d 100644 --- a/glm/detail/func_noise.inl +++ b/glm/detail/func_noise.inl @@ -33,43 +33,43 @@ namespace glm{ namespace detail { template - GLM_FUNC_QUALIFIER detail::tvec4 grad4(T const & j, detail::tvec4 const & ip) + GLM_FUNC_QUALIFIER tvec4 grad4(T const & j, tvec4 const & ip) { - detail::tvec3 pXYZ = floor(fract(detail::tvec3(j) * detail::tvec3(ip)) * T(7)) * ip[2] - T(1); - T pW = static_cast(1.5) - dot(abs(pXYZ), detail::tvec3(1)); - detail::tvec4 s = detail::tvec4(lessThan(detail::tvec4(pXYZ, pW), detail::tvec4(0.0))); - pXYZ = pXYZ + (detail::tvec3(s) * T(2) - T(1)) * s.w; - return detail::tvec4(pXYZ, pW); + tvec3 pXYZ = floor(fract(tvec3(j) * tvec3(ip)) * T(7)) * ip[2] - T(1); + T pW = static_cast(1.5) - dot(abs(pXYZ), tvec3(1)); + tvec4 s = tvec4(lessThan(tvec4(pXYZ, pW), tvec4(0.0))); + pXYZ = pXYZ + (tvec3(s) * T(2) - T(1)) * s.w; + return tvec4(pXYZ, pW); } }//namespace detail template GLM_FUNC_QUALIFIER T noise1(T const & x) { - return noise1(detail::tvec2(x, T(0))); + return noise1(tvec2(x, T(0))); } template - GLM_FUNC_QUALIFIER detail::tvec2 noise2(T const & x) + GLM_FUNC_QUALIFIER tvec2 noise2(T const & x) { - return detail::tvec2( + return tvec2( noise1(x + T(0.0)), noise1(x + T(1.0))); } template - GLM_FUNC_QUALIFIER detail::tvec3 noise3(T const & x) + GLM_FUNC_QUALIFIER tvec3 noise3(T const & x) { - return detail::tvec3( + return tvec3( noise1(x - T(1.0)), noise1(x + T(0.0)), noise1(x + T(1.0))); } template - GLM_FUNC_QUALIFIER detail::tvec4 noise4(T const & x) + GLM_FUNC_QUALIFIER tvec4 noise4(T const & x) { - return detail::tvec4( + return tvec4( noise1(x - T(1.0)), noise1(x + T(0.0)), noise1(x + T(1.0)), @@ -77,38 +77,38 @@ namespace detail } template - GLM_FUNC_QUALIFIER T noise1(detail::tvec2 const & v) + GLM_FUNC_QUALIFIER T noise1(tvec2 const & v) { - detail::tvec4 const C = detail::tvec4( + tvec4 const C = tvec4( T( 0.211324865405187), // (3.0 - sqrt(3.0)) / 6.0 T( 0.366025403784439), // 0.5 * (sqrt(3.0) - 1.0) T(-0.577350269189626), // -1.0 + 2.0 * C.x T( 0.024390243902439)); // 1.0 / 41.0 // First corner - detail::tvec2 i = floor(v + dot(v, detail::tvec2(C[1]))); - detail::tvec2 x0 = v - i + dot(i, detail::tvec2(C[0])); + tvec2 i = floor(v + dot(v, tvec2(C[1]))); + tvec2 x0 = v - i + dot(i, tvec2(C[0])); // Other corners //i1.x = step( x0.y, x0.x ); // x0.x > x0.y ? 1.0 : 0.0 //i1.y = 1.0 - i1.x; - detail::tvec2 i1 = (x0.x > x0.y) ? detail::tvec2(1, 0) : detail::tvec2(0, 1); + tvec2 i1 = (x0.x > x0.y) ? tvec2(1, 0) : tvec2(0, 1); // x0 = x0 - 0.0 + 0.0 * C.xx ; // x1 = x0 - i1 + 1.0 * C.xx ; // x2 = x0 - 1.0 + 2.0 * C.xx ; - detail::tvec4 x12 = detail::tvec4(x0.x, x0.y, x0.x, x0.y) + detail::tvec4(C.x, C.x, C.z, C.z); - x12 = detail::tvec4(detail::tvec2(x12) - i1, x12.z, x12.w); + tvec4 x12 = tvec4(x0.x, x0.y, x0.x, x0.y) + tvec4(C.x, C.x, C.z, C.z); + x12 = tvec4(tvec2(x12) - i1, x12.z, x12.w); // Permutations i = mod(i, T(289)); // Avoid truncation effects in permutation - detail::tvec3 p = detail::permute( - detail::permute(i.y + detail::tvec3(T(0), i1.y, T(1))) + i.x + detail::tvec3(T(0), i1.x, T(1))); + tvec3 p = detail::permute( + detail::permute(i.y + tvec3(T(0), i1.y, T(1))) + i.x + tvec3(T(0), i1.x, T(1))); - detail::tvec3 m = max(T(0.5) - detail::tvec3( + tvec3 m = max(T(0.5) - tvec3( dot(x0, x0), - dot(detail::tvec2(x12.x, x12.y), detail::tvec2(x12.x, x12.y)), - dot(detail::tvec2(x12.z, x12.w), detail::tvec2(x12.z, x12.w))), T(0)); + dot(tvec2(x12.x, x12.y), tvec2(x12.x, x12.y)), + dot(tvec2(x12.z, x12.w), tvec2(x12.z, x12.w))), T(0)); m = m * m; m = m * m; @@ -116,17 +116,17 @@ namespace detail // Gradients: 41 points uniformly over a line, mapped onto a diamond. // The ring size 17*17 = 289 is close to a multiple of 41 (41*7 = 287) - detail::tvec3 x = static_cast(2) * fract(p * C.w) - T(1); - detail::tvec3 h = abs(x) - T(0.5); - detail::tvec3 ox = floor(x + T(0.5)); - detail::tvec3 a0 = x - ox; + tvec3 x = static_cast(2) * fract(p * C.w) - T(1); + tvec3 h = abs(x) - T(0.5); + tvec3 ox = floor(x + T(0.5)); + tvec3 a0 = x - ox; // Normalise gradients implicitly by scaling m // Inlined for speed: m *= taylorInvSqrt( a0*a0 + h*h ); m *= static_cast(1.79284291400159) - T(0.85373472095314) * (a0 * a0 + h * h); // Compute final noise value at P - detail::tvec3 g; + tvec3 g; g.x = a0.x * x0.x + h.x * x0.y; //g.yz = a0.yz * x12.xz + h.yz * x12.yw; g.y = a0.y * x12.x + h.y * x12.y; @@ -135,84 +135,84 @@ namespace detail } template - GLM_FUNC_QUALIFIER T noise1(detail::tvec3 const & v) + GLM_FUNC_QUALIFIER T noise1(tvec3 const & v) { - detail::tvec2 const C(1.0 / 6.0, 1.0 / 3.0); - detail::tvec4 const D(0.0, 0.5, 1.0, 2.0); + tvec2 const C(1.0 / 6.0, 1.0 / 3.0); + tvec4 const D(0.0, 0.5, 1.0, 2.0); // First corner - detail::tvec3 i(floor(v + dot(v, detail::tvec3(C.y)))); - detail::tvec3 x0(v - i + dot(i, detail::tvec3(C.x))); + tvec3 i(floor(v + dot(v, tvec3(C.y)))); + tvec3 x0(v - i + dot(i, tvec3(C.x))); // Other corners - detail::tvec3 g(step(detail::tvec3(x0.y, x0.z, x0.x), x0)); - detail::tvec3 l(T(1) - g); - detail::tvec3 i1(min(g, detail::tvec3(l.z, l.x, l.y))); - detail::tvec3 i2(max(g, detail::tvec3(l.z, l.x, l.y))); + tvec3 g(step(tvec3(x0.y, x0.z, x0.x), x0)); + tvec3 l(T(1) - g); + tvec3 i1(min(g, tvec3(l.z, l.x, l.y))); + tvec3 i2(max(g, tvec3(l.z, l.x, l.y))); // x0 = x0 - 0.0 + 0.0 * C.xxx; // x1 = x0 - i1 + 1.0 * C.xxx; // x2 = x0 - i2 + 2.0 * C.xxx; // x3 = x0 - 1.0 + 3.0 * C.xxx; - detail::tvec3 x1(x0 - i1 + C.x); - detail::tvec3 x2(x0 - i2 + C.y); // 2.0*C.x = 1/3 = C.y - detail::tvec3 x3(x0 - D.y); // -1.0+3.0*C.x = -0.5 = -D.y + tvec3 x1(x0 - i1 + C.x); + tvec3 x2(x0 - i2 + C.y); // 2.0*C.x = 1/3 = C.y + tvec3 x3(x0 - D.y); // -1.0+3.0*C.x = -0.5 = -D.y // Permutations i = mod289(i); - detail::tvec4 p(detail::permute(detail::permute(detail::permute( - i.z + detail::tvec4(T(0), i1.z, i2.z, T(1))) + - i.y + detail::tvec4(T(0), i1.y, i2.y, T(1))) + - i.x + detail::tvec4(T(0), i1.x, i2.x, T(1)))); + tvec4 p(detail::permute(detail::permute(detail::permute( + i.z + tvec4(T(0), i1.z, i2.z, T(1))) + + i.y + tvec4(T(0), i1.y, i2.y, T(1))) + + i.x + tvec4(T(0), i1.x, i2.x, T(1)))); // Gradients: 7x7 points over a square, mapped onto an octahedron. // The ring size 17*17 = 289 is close to a multiple of 49 (49*6 = 294) T n_ = static_cast(0.142857142857); // 1.0/7.0 - detail::tvec3 ns(n_ * detail::tvec3(D.w, D.y, D.z) - detail::tvec3(D.x, D.z, D.x)); + tvec3 ns(n_ * tvec3(D.w, D.y, D.z) - tvec3(D.x, D.z, D.x)); - detail::tvec4 j(p - T(49) * floor(p * ns.z * ns.z)); // mod(p,7*7) + tvec4 j(p - T(49) * floor(p * ns.z * ns.z)); // mod(p,7*7) - detail::tvec4 x_(floor(j * ns.z)); - detail::tvec4 y_(floor(j - T(7) * x_)); // mod(j,N) + tvec4 x_(floor(j * ns.z)); + tvec4 y_(floor(j - T(7) * x_)); // mod(j,N) - detail::tvec4 x(x_ * ns.x + ns.y); - detail::tvec4 y(y_ * ns.x + ns.y); - detail::tvec4 h(T(1) - abs(x) - abs(y)); + tvec4 x(x_ * ns.x + ns.y); + tvec4 y(y_ * ns.x + ns.y); + tvec4 h(T(1) - abs(x) - abs(y)); - detail::tvec4 b0(x.x, x.y, y.x, y.y); - detail::tvec4 b1(x.z, x.w, y.z, y.w); + tvec4 b0(x.x, x.y, y.x, y.y); + tvec4 b1(x.z, x.w, y.z, y.w); // vec4 s0 = vec4(lessThan(b0,0.0))*2.0 - 1.0; // vec4 s1 = vec4(lessThan(b1,0.0))*2.0 - 1.0; - detail::tvec4 s0(floor(b0) * T(2) + T(1)); - detail::tvec4 s1(floor(b1) * T(2) + T(1)); - detail::tvec4 sh(-step(h, detail::tvec4(0.0))); + tvec4 s0(floor(b0) * T(2) + T(1)); + tvec4 s1(floor(b1) * T(2) + T(1)); + tvec4 sh(-step(h, tvec4(0.0))); - detail::tvec4 a0 = detail::tvec4(b0.x, b0.z, b0.y, b0.w) + detail::tvec4(s0.x, s0.z, s0.y, s0.w) * detail::tvec4(sh.x, sh.x, sh.y, sh.y); - detail::tvec4 a1 = detail::tvec4(b1.x, b1.z, b1.y, b1.w) + detail::tvec4(s1.x, s1.z, s1.y, s1.w) * detail::tvec4(sh.z, sh.z, sh.w, sh.w); + tvec4 a0 = tvec4(b0.x, b0.z, b0.y, b0.w) + tvec4(s0.x, s0.z, s0.y, s0.w) * tvec4(sh.x, sh.x, sh.y, sh.y); + tvec4 a1 = tvec4(b1.x, b1.z, b1.y, b1.w) + tvec4(s1.x, s1.z, s1.y, s1.w) * tvec4(sh.z, sh.z, sh.w, sh.w); - detail::tvec3 p0(a0.x, a0.y, h.x); - detail::tvec3 p1(a0.z, a0.w, h.y); - detail::tvec3 p2(a1.x, a1.y, h.z); - detail::tvec3 p3(a1.z, a1.w, h.w); + tvec3 p0(a0.x, a0.y, h.x); + tvec3 p1(a0.z, a0.w, h.y); + tvec3 p2(a1.x, a1.y, h.z); + tvec3 p3(a1.z, a1.w, h.w); // Normalise gradients - detail::tvec4 norm = taylorInvSqrt(detail::tvec4(dot(p0, p0), dot(p1, p1), dot(p2, p2), dot(p3, p3))); + tvec4 norm = taylorInvSqrt(tvec4(dot(p0, p0), dot(p1, p1), dot(p2, p2), dot(p3, p3))); p0 *= norm.x; p1 *= norm.y; p2 *= norm.z; p3 *= norm.w; // Mix final noise value - detail::tvec4 m = max(T(0.6) - detail::tvec4(dot(x0, x0), dot(x1, x1), dot(x2, x2), dot(x3, x3)), T(0)); + tvec4 m = max(T(0.6) - tvec4(dot(x0, x0), dot(x1, x1), dot(x2, x2), dot(x3, x3)), T(0)); m = m * m; - return T(42) * dot(m * m, detail::tvec4(dot(p0, x0), dot(p1, x1), dot(p2, x2), dot(p3, x3))); + return T(42) * dot(m * m, tvec4(dot(p0, x0), dot(p1, x1), dot(p2, x2), dot(p3, x3))); } template - GLM_FUNC_QUALIFIER T noise1(detail::tvec4 const & v) + GLM_FUNC_QUALIFIER T noise1(tvec4 const & v) { - detail::tvec4 const C( + tvec4 const C( 0.138196601125011, // (5 - sqrt(5))/20 G4 0.276393202250021, // 2 * G4 0.414589803375032, // 3 * G4 @@ -222,66 +222,66 @@ namespace detail T const F4 = static_cast(0.309016994374947451); // First corner - detail::tvec4 i = floor(v + dot(v, detail::tvec4(F4))); - detail::tvec4 x0 = v - i + dot(i, detail::tvec4(C.x)); + tvec4 i = floor(v + dot(v, tvec4(F4))); + tvec4 x0 = v - i + dot(i, tvec4(C.x)); // Other corners // Rank sorting originally contributed by Bill Licea-Kane, AMD (formerly ATI) - detail::tvec4 i0; - detail::tvec3 isX = step(detail::tvec3(x0.y, x0.z, x0.w), detail::tvec3(x0.x)); - detail::tvec3 isYZ = step(detail::tvec3(x0.z, x0.w, x0.w), detail::tvec3(x0.y, x0.y, x0.z)); + tvec4 i0; + tvec3 isX = step(tvec3(x0.y, x0.z, x0.w), tvec3(x0.x)); + tvec3 isYZ = step(tvec3(x0.z, x0.w, x0.w), tvec3(x0.y, x0.y, x0.z)); // i0.x = dot(isX, vec3(1.0)); //i0.x = isX.x + isX.y + isX.z; //i0.yzw = static_cast(1) - isX; - i0 = detail::tvec4(isX.x + isX.y + isX.z, T(1) - isX); + i0 = tvec4(isX.x + isX.y + isX.z, T(1) - isX); // i0.y += dot(isYZ.xy, vec2(1.0)); i0.y += isYZ.x + isYZ.y; - //i0.zw += 1.0 - detail::tvec2(isYZ.x, isYZ.y); + //i0.zw += 1.0 - tvec2(isYZ.x, isYZ.y); i0.z += static_cast(1) - isYZ.x; i0.w += static_cast(1) - isYZ.y; i0.z += isYZ.z; i0.w += static_cast(1) - isYZ.z; // i0 now contains the unique values 0,1,2,3 in each channel - detail::tvec4 i3 = clamp(i0, T(0), T(1)); - detail::tvec4 i2 = clamp(i0 - T(1), T(0), T(1)); - detail::tvec4 i1 = clamp(i0 - T(2), T(0), T(1)); + tvec4 i3 = clamp(i0, T(0), T(1)); + tvec4 i2 = clamp(i0 - T(1), T(0), T(1)); + tvec4 i1 = clamp(i0 - T(2), T(0), T(1)); // x0 = x0 - 0.0 + 0.0 * C.xxxx // x1 = x0 - i1 + 0.0 * C.xxxx // x2 = x0 - i2 + 0.0 * C.xxxx // x3 = x0 - i3 + 0.0 * C.xxxx // x4 = x0 - 1.0 + 4.0 * C.xxxx - detail::tvec4 x1 = x0 - i1 + C.x; - detail::tvec4 x2 = x0 - i2 + C.y; - detail::tvec4 x3 = x0 - i3 + C.z; - detail::tvec4 x4 = x0 + C.w; + tvec4 x1 = x0 - i1 + C.x; + tvec4 x2 = x0 - i2 + C.y; + tvec4 x3 = x0 - i3 + C.z; + tvec4 x4 = x0 + C.w; // Permutations i = mod(i, T(289)); T j0 = detail::permute(detail::permute(detail::permute(detail::permute(i.w) + i.z) + i.y) + i.x); - detail::tvec4 j1 = detail::permute(detail::permute(detail::permute(detail::permute( - i.w + detail::tvec4(i1.w, i2.w, i3.w, T(1))) + - i.z + detail::tvec4(i1.z, i2.z, i3.z, T(1))) + - i.y + detail::tvec4(i1.y, i2.y, i3.y, T(1))) + - i.x + detail::tvec4(i1.x, i2.x, i3.x, T(1))); + tvec4 j1 = detail::permute(detail::permute(detail::permute(detail::permute( + i.w + tvec4(i1.w, i2.w, i3.w, T(1))) + + i.z + tvec4(i1.z, i2.z, i3.z, T(1))) + + i.y + tvec4(i1.y, i2.y, i3.y, T(1))) + + i.x + tvec4(i1.x, i2.x, i3.x, T(1))); // Gradients: 7x7x6 points over a cube, mapped onto a 4-cross polytope // 7*7*6 = 294, which is close to the ring size 17*17 = 289. - detail::tvec4 ip = detail::tvec4(T(1) / T(294), T(1) / T(49), T(1) / T(7), T(0)); + tvec4 ip = tvec4(T(1) / T(294), T(1) / T(49), T(1) / T(7), T(0)); - detail::tvec4 p0 = detail::grad4(j0, ip); - detail::tvec4 p1 = detail::grad4(j1.x, ip); - detail::tvec4 p2 = detail::grad4(j1.y, ip); - detail::tvec4 p3 = detail::grad4(j1.z, ip); - detail::tvec4 p4 = detail::grad4(j1.w, ip); + tvec4 p0 = detail::grad4(j0, ip); + tvec4 p1 = detail::grad4(j1.x, ip); + tvec4 p2 = detail::grad4(j1.y, ip); + tvec4 p3 = detail::grad4(j1.z, ip); + tvec4 p4 = detail::grad4(j1.w, ip); // Normalise gradients - detail::tvec4 norm = detail::taylorInvSqrt(detail::tvec4(dot(p0, p0), dot(p1, p1), dot(p2, p2), dot(p3, p3))); + tvec4 norm = detail::taylorInvSqrt(tvec4(dot(p0, p0), dot(p1, p1), dot(p2, p2), dot(p3, p3))); p0 *= norm.x; p1 *= norm.y; p2 *= norm.z; @@ -289,96 +289,96 @@ namespace detail p4 *= taylorInvSqrt(dot(p4, p4)); // Mix contributions from the five corners - detail::tvec3 m0 = max(T(0.6) - detail::tvec3(dot(x0, x0), dot(x1, x1), dot(x2, x2)), T(0)); - detail::tvec2 m1 = max(T(0.6) - detail::tvec2(dot(x3, x3), dot(x4, x4) ), T(0)); + tvec3 m0 = max(T(0.6) - tvec3(dot(x0, x0), dot(x1, x1), dot(x2, x2)), T(0)); + tvec2 m1 = max(T(0.6) - tvec2(dot(x3, x3), dot(x4, x4) ), T(0)); m0 = m0 * m0; m1 = m1 * m1; return T(49) * ( - dot(m0 * m0, detail::tvec3(dot(p0, x0), dot(p1, x1), dot(p2, x2))) + - dot(m1 * m1, detail::tvec2(dot(p3, x3), dot(p4, x4)))); + dot(m0 * m0, tvec3(dot(p0, x0), dot(p1, x1), dot(p2, x2))) + + dot(m1 * m1, tvec2(dot(p3, x3), dot(p4, x4)))); } template - GLM_FUNC_QUALIFIER detail::tvec2 noise2(detail::tvec2 const & x) + GLM_FUNC_QUALIFIER tvec2 noise2(tvec2 const & x) { - return detail::tvec2( - noise1(x + detail::tvec2(0.0)), - noise1(detail::tvec2(0.0) - x)); + return tvec2( + noise1(x + tvec2(0.0)), + noise1(tvec2(0.0) - x)); } template - GLM_FUNC_QUALIFIER detail::tvec2 noise2(detail::tvec3 const & x) + GLM_FUNC_QUALIFIER tvec2 noise2(tvec3 const & x) { - return detail::tvec2( - noise1(x + detail::tvec3(0.0)), - noise1(detail::tvec3(0.0) - x)); + return tvec2( + noise1(x + tvec3(0.0)), + noise1(tvec3(0.0) - x)); } template - GLM_FUNC_QUALIFIER detail::tvec2 noise2(detail::tvec4 const & x) + GLM_FUNC_QUALIFIER tvec2 noise2(tvec4 const & x) { - return detail::tvec2( - noise1(x + detail::tvec4(0)), - noise1(detail::tvec4(0) - x)); + return tvec2( + noise1(x + tvec4(0)), + noise1(tvec4(0) - x)); } template - GLM_FUNC_QUALIFIER detail::tvec3 noise3(detail::tvec2 const & x) + GLM_FUNC_QUALIFIER tvec3 noise3(tvec2 const & x) { - return detail::tvec3( - noise1(x - detail::tvec2(1.0)), - noise1(x + detail::tvec2(0.0)), - noise1(x + detail::tvec2(1.0))); + return tvec3( + noise1(x - tvec2(1.0)), + noise1(x + tvec2(0.0)), + noise1(x + tvec2(1.0))); } template - GLM_FUNC_QUALIFIER detail::tvec3 noise3(detail::tvec3 const & x) + GLM_FUNC_QUALIFIER tvec3 noise3(tvec3 const & x) { - return detail::tvec3( - noise1(x - detail::tvec3(1.0)), - noise1(x + detail::tvec3(0.0)), - noise1(x + detail::tvec3(1.0))); + return tvec3( + noise1(x - tvec3(1.0)), + noise1(x + tvec3(0.0)), + noise1(x + tvec3(1.0))); } template - GLM_FUNC_QUALIFIER detail::tvec3 noise3(detail::tvec4 const & x) + GLM_FUNC_QUALIFIER tvec3 noise3(tvec4 const & x) { - return detail::tvec3( - noise1(x - detail::tvec4(1)), - noise1(x + detail::tvec4(0)), - noise1(x + detail::tvec4(1))); + return tvec3( + noise1(x - tvec4(1)), + noise1(x + tvec4(0)), + noise1(x + tvec4(1))); } template - GLM_FUNC_QUALIFIER detail::tvec4 noise4(detail::tvec2 const & x) + GLM_FUNC_QUALIFIER tvec4 noise4(tvec2 const & x) { - return detail::tvec4( - noise1(x - detail::tvec2(1)), - noise1(x + detail::tvec2(0)), - noise1(x + detail::tvec2(1)), - noise1(x + detail::tvec2(2))); + return tvec4( + noise1(x - tvec2(1)), + noise1(x + tvec2(0)), + noise1(x + tvec2(1)), + noise1(x + tvec2(2))); } template - GLM_FUNC_QUALIFIER detail::tvec4 noise4(detail::tvec3 const & x) + GLM_FUNC_QUALIFIER tvec4 noise4(tvec3 const & x) { - return detail::tvec4( - noise1(x - detail::tvec3(1)), - noise1(x + detail::tvec3(0)), - noise1(x + detail::tvec3(1)), - noise1(x + detail::tvec3(2))); + return tvec4( + noise1(x - tvec3(1)), + noise1(x + tvec3(0)), + noise1(x + tvec3(1)), + noise1(x + tvec3(2))); } template - GLM_FUNC_QUALIFIER detail::tvec4 noise4(detail::tvec4 const & x) + GLM_FUNC_QUALIFIER tvec4 noise4(tvec4 const & x) { - return detail::tvec4( - noise1(x - detail::tvec4(1)), - noise1(x + detail::tvec4(0)), - noise1(x + detail::tvec4(1)), - noise1(x + detail::tvec4(2))); + return tvec4( + noise1(x - tvec4(1)), + noise1(x + tvec4(0)), + noise1(x + tvec4(1)), + noise1(x + tvec4(2))); } }//namespace glm diff --git a/glm/detail/intrinsic_matrix.inl b/glm/detail/intrinsic_matrix.inl index ba61a123..81f1538d 100644 --- a/glm/detail/intrinsic_matrix.inl +++ b/glm/detail/intrinsic_matrix.inl @@ -448,7 +448,7 @@ GLM_FUNC_QUALIFIER __m128 sse_detd_ps __m128 MulC = _mm_mul_ps(Swp2C, Swp3C); __m128 SubF = _mm_sub_ps(_mm_movehl_ps(MulC, MulC), MulC); - //detail::tvec4 DetCof( + //tvec4 DetCof( // + (m[1][1] * SubFactor00 - m[1][2] * SubFactor01 + m[1][3] * SubFactor02), // - (m[1][0] * SubFactor00 - m[1][2] * SubFactor03 + m[1][3] * SubFactor04), // + (m[1][0] * SubFactor01 - m[1][1] * SubFactor03 + m[1][3] * SubFactor05), @@ -514,7 +514,7 @@ GLM_FUNC_QUALIFIER __m128 sse_det_ps __m128 MulC = _mm_mul_ps(Swp2C, Swp3C); __m128 SubF = _mm_sub_ps(_mm_movehl_ps(MulC, MulC), MulC); - //detail::tvec4 DetCof( + //tvec4 DetCof( // + (m[1][1] * SubFactor00 - m[1][2] * SubFactor01 + m[1][3] * SubFactor02), // - (m[1][0] * SubFactor00 - m[1][2] * SubFactor03 + m[1][3] * SubFactor04), // + (m[1][0] * SubFactor01 - m[1][1] * SubFactor03 + m[1][3] * SubFactor05), @@ -1003,7 +1003,7 @@ GLM_FUNC_QUALIFIER void sse_rotate_ps(__m128 const in[4], float Angle, float con __m128 Sin0 = _mm_set_ss(s); __m128 SinA = _mm_shuffle_ps(Sin0, Sin0, _MM_SHUFFLE(0, 0, 0, 0)); - // detail::tvec3 temp = (valType(1) - c) * axis; + // tvec3 temp = (valType(1) - c) * axis; __m128 Temp0 = _mm_sub_ps(one, CosA); __m128 Temp1 = _mm_mul_ps(Temp0, AxisC); @@ -1049,7 +1049,7 @@ GLM_FUNC_QUALIFIER void sse_rotate_ps(__m128 const in[4], float Angle, float con Result[2] = TmpC4; Result[3] = _mm_set_ps(1, 0, 0, 0); - //detail::tmat4x4 Result(detail::tmat4x4::_null); + //tmat4x4 Result(tmat4x4::_null); //Result[0] = m[0] * Rotate[0][0] + m[1] * Rotate[0][1] + m[2] * Rotate[0][2]; //Result[1] = m[0] * Rotate[1][0] + m[1] * Rotate[1][1] + m[2] * Rotate[1][2]; //Result[2] = m[0] * Rotate[2][0] + m[1] * Rotate[2][1] + m[2] * Rotate[2][2]; diff --git a/glm/detail/intrinsic_vector_relational.inl b/glm/detail/intrinsic_vector_relational.inl index d42e9878..ecbb322a 100644 --- a/glm/detail/intrinsic_vector_relational.inl +++ b/glm/detail/intrinsic_vector_relational.inl @@ -28,10 +28,10 @@ // //// lessThan //template -//GLM_FUNC_QUALIFIER typename detail::tvec2::bool_type lessThan +//GLM_FUNC_QUALIFIER typename tvec2::bool_type lessThan //( -// detail::tvec2 const & x, -// detail::tvec2 const & y +// tvec2 const & x, +// tvec2 const & y //) //{ // GLM_STATIC_ASSERT( @@ -39,14 +39,14 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec2::bool_type(x.x < y.x, x.y < y.y); +// return typename tvec2::bool_type(x.x < y.x, x.y < y.y); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec3::bool_type lessThan +//GLM_FUNC_QUALIFIER typename tvec3::bool_type lessThan //( -// detail::tvec3 const & x, -// detail::tvec3 const & y +// tvec3 const & x, +// tvec3 const & y //) //{ // GLM_STATIC_ASSERT( @@ -54,14 +54,14 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec3::bool_type(x.x < y.x, x.y < y.y, x.z < y.z); +// return typename tvec3::bool_type(x.x < y.x, x.y < y.y, x.z < y.z); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec4::bool_type lessThan +//GLM_FUNC_QUALIFIER typename tvec4::bool_type lessThan //( -// detail::tvec4 const & x, -// detail::tvec4 const & y +// tvec4 const & x, +// tvec4 const & y //) //{ // GLM_STATIC_ASSERT( @@ -69,15 +69,15 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec4::bool_type(x.x < y.x, x.y < y.y, x.z < y.z, x.w < y.w); +// return typename tvec4::bool_type(x.x < y.x, x.y < y.y, x.z < y.z, x.w < y.w); //} // //// lessThanEqual //template -//GLM_FUNC_QUALIFIER typename detail::tvec2::bool_type lessThanEqual +//GLM_FUNC_QUALIFIER typename tvec2::bool_type lessThanEqual //( -// detail::tvec2 const & x, -// detail::tvec2 const & y +// tvec2 const & x, +// tvec2 const & y //) //{ // GLM_STATIC_ASSERT( @@ -85,14 +85,14 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec2::bool_type(x.x <= y.x, x.y <= y.y); +// return typename tvec2::bool_type(x.x <= y.x, x.y <= y.y); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec3::bool_type lessThanEqual +//GLM_FUNC_QUALIFIER typename tvec3::bool_type lessThanEqual //( -// detail::tvec3 const & x, -// detail::tvec3 const & y +// tvec3 const & x, +// tvec3 const & y //) //{ // GLM_STATIC_ASSERT( @@ -100,14 +100,14 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec3::bool_type(x.x <= y.x, x.y <= y.y, x.z <= y.z); +// return typename tvec3::bool_type(x.x <= y.x, x.y <= y.y, x.z <= y.z); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec4::bool_type lessThanEqual +//GLM_FUNC_QUALIFIER typename tvec4::bool_type lessThanEqual //( -// detail::tvec4 const & x, -// detail::tvec4 const & y +// tvec4 const & x, +// tvec4 const & y //) //{ // GLM_STATIC_ASSERT( @@ -115,15 +115,15 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec4::bool_type(x.x <= y.x, x.y <= y.y, x.z <= y.z, x.w <= y.w); +// return typename tvec4::bool_type(x.x <= y.x, x.y <= y.y, x.z <= y.z, x.w <= y.w); //} // //// greaterThan //template -//GLM_FUNC_QUALIFIER typename detail::tvec2::bool_type greaterThan +//GLM_FUNC_QUALIFIER typename tvec2::bool_type greaterThan //( -// detail::tvec2 const & x, -// detail::tvec2 const & y +// tvec2 const & x, +// tvec2 const & y //) //{ // GLM_STATIC_ASSERT( @@ -131,14 +131,14 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec2::bool_type(x.x > y.x, x.y > y.y); +// return typename tvec2::bool_type(x.x > y.x, x.y > y.y); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec3::bool_type greaterThan +//GLM_FUNC_QUALIFIER typename tvec3::bool_type greaterThan //( -// detail::tvec3 const & x, -// detail::tvec3 const & y +// tvec3 const & x, +// tvec3 const & y //) //{ // GLM_STATIC_ASSERT( @@ -146,14 +146,14 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec3::bool_type(x.x > y.x, x.y > y.y, x.z > y.z); +// return typename tvec3::bool_type(x.x > y.x, x.y > y.y, x.z > y.z); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec4::bool_type greaterThan +//GLM_FUNC_QUALIFIER typename tvec4::bool_type greaterThan //( -// detail::tvec4 const & x, -// detail::tvec4 const & y +// tvec4 const & x, +// tvec4 const & y //) //{ // GLM_STATIC_ASSERT( @@ -161,15 +161,15 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec4::bool_type(x.x > y.x, x.y > y.y, x.z > y.z, x.w > y.w); +// return typename tvec4::bool_type(x.x > y.x, x.y > y.y, x.z > y.z, x.w > y.w); //} // //// greaterThanEqual //template -//GLM_FUNC_QUALIFIER typename detail::tvec2::bool_type greaterThanEqual +//GLM_FUNC_QUALIFIER typename tvec2::bool_type greaterThanEqual //( -// detail::tvec2 const & x, -// detail::tvec2 const & y +// tvec2 const & x, +// tvec2 const & y //) //{ // GLM_STATIC_ASSERT( @@ -177,14 +177,14 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec2::bool_type(x.x >= y.x, x.y >= y.y); +// return typename tvec2::bool_type(x.x >= y.x, x.y >= y.y); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec3::bool_type greaterThanEqual +//GLM_FUNC_QUALIFIER typename tvec3::bool_type greaterThanEqual //( -// detail::tvec3 const & x, -// detail::tvec3 const & y +// tvec3 const & x, +// tvec3 const & y //) //{ // GLM_STATIC_ASSERT( @@ -192,14 +192,14 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec3::bool_type(x.x >= y.x, x.y >= y.y, x.z >= y.z); +// return typename tvec3::bool_type(x.x >= y.x, x.y >= y.y, x.z >= y.z); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec4::bool_type greaterThanEqual +//GLM_FUNC_QUALIFIER typename tvec4::bool_type greaterThanEqual //( -// detail::tvec4 const & x, -// detail::tvec4 const & y +// tvec4 const & x, +// tvec4 const & y //) //{ // GLM_STATIC_ASSERT( @@ -207,15 +207,15 @@ // detail::type::is_int || // detail::type::is_uint); // -// return typename detail::tvec4::bool_type(x.x >= y.x, x.y >= y.y, x.z >= y.z, x.w >= y.w); +// return typename tvec4::bool_type(x.x >= y.x, x.y >= y.y, x.z >= y.z, x.w >= y.w); //} // //// equal //template -//GLM_FUNC_QUALIFIER typename detail::tvec2::bool_type equal +//GLM_FUNC_QUALIFIER typename tvec2::bool_type equal //( -// detail::tvec2 const & x, -// detail::tvec2 const & y +// tvec2 const & x, +// tvec2 const & y //) //{ // GLM_STATIC_ASSERT( @@ -224,14 +224,14 @@ // detail::type::is_uint || // detail::type::is_bool); // -// return typename detail::tvec2::bool_type(x.x == y.x, x.y == y.y); +// return typename tvec2::bool_type(x.x == y.x, x.y == y.y); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec3::bool_type equal +//GLM_FUNC_QUALIFIER typename tvec3::bool_type equal //( -// detail::tvec3 const & x, -// detail::tvec3 const & y +// tvec3 const & x, +// tvec3 const & y //) //{ // GLM_STATIC_ASSERT( @@ -240,14 +240,14 @@ // detail::type::is_uint || // detail::type::is_bool); // -// return typename detail::tvec3::bool_type(x.x == y.x, x.y == y.y, x.z == y.z); +// return typename tvec3::bool_type(x.x == y.x, x.y == y.y, x.z == y.z); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec4::bool_type equal +//GLM_FUNC_QUALIFIER typename tvec4::bool_type equal //( -// detail::tvec4 const & x, -// detail::tvec4 const & y +// tvec4 const & x, +// tvec4 const & y //) //{ // GLM_STATIC_ASSERT( @@ -256,15 +256,15 @@ // detail::type::is_uint || // detail::type::is_bool); // -// return typename detail::tvec4::bool_type(x.x == y.x, x.y == y.y, x.z == y.z, x.w == y.w); +// return typename tvec4::bool_type(x.x == y.x, x.y == y.y, x.z == y.z, x.w == y.w); //} // //// notEqual //template -//GLM_FUNC_QUALIFIER typename detail::tvec2::bool_type notEqual +//GLM_FUNC_QUALIFIER typename tvec2::bool_type notEqual //( -// detail::tvec2 const & x, -// detail::tvec2 const & y +// tvec2 const & x, +// tvec2 const & y //) //{ // GLM_STATIC_ASSERT( @@ -273,14 +273,14 @@ // detail::type::is_uint || // detail::type::is_bool); // -// return typename detail::tvec2::bool_type(x.x != y.x, x.y != y.y); +// return typename tvec2::bool_type(x.x != y.x, x.y != y.y); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec3::bool_type notEqual +//GLM_FUNC_QUALIFIER typename tvec3::bool_type notEqual //( -// detail::tvec3 const & x, -// detail::tvec3 const & y +// tvec3 const & x, +// tvec3 const & y //) //{ // GLM_STATIC_ASSERT( @@ -289,14 +289,14 @@ // detail::type::is_uint || // detail::type::is_bool); // -// return typename detail::tvec3::bool_type(x.x != y.x, x.y != y.y, x.z != y.z); +// return typename tvec3::bool_type(x.x != y.x, x.y != y.y, x.z != y.z); //} // //template -//GLM_FUNC_QUALIFIER typename detail::tvec4::bool_type notEqual +//GLM_FUNC_QUALIFIER typename tvec4::bool_type notEqual //( -// detail::tvec4 const & x, -// detail::tvec4 const & y +// tvec4 const & x, +// tvec4 const & y //) //{ // GLM_STATIC_ASSERT( @@ -305,62 +305,62 @@ // detail::type::is_uint || // detail::type::is_bool); // -// return typename detail::tvec4::bool_type(x.x != y.x, x.y != y.y, x.z != y.z, x.w != y.w); +// return typename tvec4::bool_type(x.x != y.x, x.y != y.y, x.z != y.z, x.w != y.w); //} // //// any -//GLM_FUNC_QUALIFIER bool any(detail::tvec2 const & x) +//GLM_FUNC_QUALIFIER bool any(tvec2 const & x) //{ // return x.x || x.y; //} // -//GLM_FUNC_QUALIFIER bool any(detail::tvec3 const & x) +//GLM_FUNC_QUALIFIER bool any(tvec3 const & x) //{ // return x.x || x.y || x.z; //} // -//GLM_FUNC_QUALIFIER bool any(detail::tvec4 const & x) +//GLM_FUNC_QUALIFIER bool any(tvec4 const & x) //{ // return x.x || x.y || x.z || x.w; //} // //// all -//GLM_FUNC_QUALIFIER bool all(const detail::tvec2& x) +//GLM_FUNC_QUALIFIER bool all(const tvec2& x) //{ // return x.x && x.y; //} // -//GLM_FUNC_QUALIFIER bool all(const detail::tvec3& x) +//GLM_FUNC_QUALIFIER bool all(const tvec3& x) //{ // return x.x && x.y && x.z; //} // -//GLM_FUNC_QUALIFIER bool all(const detail::tvec4& x) +//GLM_FUNC_QUALIFIER bool all(const tvec4& x) //{ // return x.x && x.y && x.z && x.w; //} // //// not -//GLM_FUNC_QUALIFIER detail::tvec2::bool_type not_ +//GLM_FUNC_QUALIFIER tvec2::bool_type not_ //( -// detail::tvec2 const & v +// tvec2 const & v //) //{ -// return detail::tvec2::bool_type(!v.x, !v.y); +// return tvec2::bool_type(!v.x, !v.y); //} // -//GLM_FUNC_QUALIFIER detail::tvec3::bool_type not_ +//GLM_FUNC_QUALIFIER tvec3::bool_type not_ //( -// detail::tvec3 const & v +// tvec3 const & v //) //{ -// return detail::tvec3::bool_type(!v.x, !v.y, !v.z); +// return tvec3::bool_type(!v.x, !v.y, !v.z); //} // -//GLM_FUNC_QUALIFIER detail::tvec4::bool_type not_ +//GLM_FUNC_QUALIFIER tvec4::bool_type not_ //( -// detail::tvec4 const & v +// tvec4 const & v //) //{ -// return detail::tvec4::bool_type(!v.x, !v.y, !v.z, !v.w); +// return tvec4::bool_type(!v.x, !v.y, !v.z, !v.w); //} \ No newline at end of file diff --git a/glm/detail/setup.hpp b/glm/detail/setup.hpp index ed254fb6..0f94256f 100644 --- a/glm/detail/setup.hpp +++ b/glm/detail/setup.hpp @@ -22,7 +22,7 @@ /// /// @ref core /// @file glm/core/setup.hpp -/// @date 2006-11-13 / 2013-03-30 +/// @date 2006-11-13 / 2014-10-05 /// @author Christophe Riccio /////////////////////////////////////////////////////////////////////////////////// @@ -548,6 +548,18 @@ ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC10))) || \ ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (GLM_COMPILER & GLM_COMPILER_GCC) && (GLM_COMPILER >= GLM_COMPILER_GCC43))) +#define GLM_HAS_TEMPLATE_ALIASES ( \ + (GLM_LANG & GLM_LANG_CXX11_FLAG) || \ + ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC12))) || \ + ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (GLM_COMPILER & GLM_COMPILER_GCC) && (GLM_COMPILER >= GLM_COMPILER_GCC47)) || \ + __has_feature(cxx_alias_templates)) + +#define GLM_HAS_RANGE_FOR ( \ + (GLM_LANG & GLM_LANG_CXX11_FLAG) || \ + ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC11))) || \ + ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (GLM_COMPILER & GLM_COMPILER_GCC) && (GLM_COMPILER >= GLM_COMPILER_GCC46)) || \ + __has_feature(cxx_range_for)) + // OpenMP #ifdef _OPENMP # if(GLM_COMPILER & GLM_COMPILER_GCC) diff --git a/glm/detail/type_mat.hpp b/glm/detail/type_mat.hpp index 8e2b8bb6..e7033295 100644 --- a/glm/detail/type_mat.hpp +++ b/glm/detail/type_mat.hpp @@ -33,6 +33,10 @@ namespace glm{ namespace detail { + template class colType, template class rowType> + struct outerProduct_trait{}; +}//namespace detail + template struct tvec2; template struct tvec3; template struct tvec4; @@ -46,13 +50,6 @@ namespace detail template struct tmat4x3; template struct tmat4x4; - template class colType, template class rowType> - struct outerProduct_trait{}; - - template