diff --git a/glm/core/func_common.hpp b/glm/core/func_common.hpp index 8a1de5ad..6127d284 100644 --- a/glm/core/func_common.hpp +++ b/glm/core/func_common.hpp @@ -31,7 +31,8 @@ #include "_fixes.hpp" -namespace glm +namespace glm{ +namespace core { /// @addtogroup core_funcs /// @{ @@ -366,6 +367,7 @@ namespace glm genType ldexp(genType const & x, genIType const & exp); /// @} +}//namespace core }//namespace glm #include "func_common.inl" diff --git a/glm/core/func_common.inl b/glm/core/func_common.inl index cceac54e..bf6871c3 100644 --- a/glm/core/func_common.inl +++ b/glm/core/func_common.inl @@ -38,6 +38,8 @@ namespace detail }; }//namespace detail +namespace core +{ // abs template GLM_FUNC_QUALIFIER genFIType abs( @@ -1563,4 +1565,6 @@ namespace detail { return std::frexp(x, exp); } + +}//namespace core }//namespace glm diff --git a/glm/core/func_exponential.hpp b/glm/core/func_exponential.hpp index 6d917a22..f2e001ab 100644 --- a/glm/core/func_exponential.hpp +++ b/glm/core/func_exponential.hpp @@ -10,7 +10,8 @@ #ifndef glm_core_func_exponential #define glm_core_func_exponential -namespace glm +namespace glm{ +namespace core { /// \addtogroup core_funcs /// @{ @@ -68,6 +69,7 @@ namespace glm genType inversesqrt(genType const & x); /// @} +}//namespace core }//namespace glm #include "func_exponential.inl" diff --git a/glm/core/func_exponential.inl b/glm/core/func_exponential.inl index 272149b7..3c950b20 100644 --- a/glm/core/func_exponential.inl +++ b/glm/core/func_exponential.inl @@ -7,7 +7,8 @@ // File : glm/core/func_exponential.inl /////////////////////////////////////////////////////////////////////////////////////////////////// -namespace glm +namespace glm{ +namespace core { // pow template @@ -348,4 +349,5 @@ namespace glm inversesqrt(x.w)); } +}//namespace core }//namespace glm diff --git a/glm/core/func_geometric.hpp b/glm/core/func_geometric.hpp index 5534acd6..b069590d 100644 --- a/glm/core/func_geometric.hpp +++ b/glm/core/func_geometric.hpp @@ -10,7 +10,8 @@ #ifndef glm_core_func_geometric #define glm_core_func_geometric -namespace glm +namespace glm{ +namespace core { /// \addtogroup core_funcs /// @{ @@ -19,9 +20,9 @@ namespace glm //! //! \li GLSL length man page //! \li GLSL 1.30.08 specification, section 8.4 - //template - //typename genType::value_type length( - // genType const & x); + template + typename genType::value_type length( + genType const & x); //! Returns the distance betwwen p0 and p1, i.e., length(p0 - p1). //! @@ -91,6 +92,7 @@ namespace glm typename genType::value_type const & eta); /// @} +}//namespace core }//namespace glm #include "func_geometric.inl" diff --git a/glm/core/func_geometric.inl b/glm/core/func_geometric.inl index 35b25711..3963da96 100644 --- a/glm/core/func_geometric.inl +++ b/glm/core/func_geometric.inl @@ -7,7 +7,8 @@ // File : glm/core/func_geometric.inl /////////////////////////////////////////////////////////////////////////////////////////////////// -namespace glm +namespace glm{ +namespace core { // length template @@ -280,4 +281,5 @@ namespace glm return eta * I - (eta * dotValue + sqrt(k)) * N; } +}//namespace core }//namespace glm diff --git a/glm/core/func_integer.hpp b/glm/core/func_integer.hpp index 8ae1df4b..661e1f09 100644 --- a/glm/core/func_integer.hpp +++ b/glm/core/func_integer.hpp @@ -10,7 +10,8 @@ #ifndef glm_core_func_integer #define glm_core_func_integer -namespace glm +namespace glm{ +namespace core { /// \addtogroup core_funcs /// @{ @@ -139,6 +140,7 @@ namespace glm typename C::signed_type findMSB(C const & Value); /// @} +}//namespace core }//namespace glm #include "func_integer.inl" diff --git a/glm/core/func_integer.inl b/glm/core/func_integer.inl index 93f41f82..980d898a 100644 --- a/glm/core/func_integer.inl +++ b/glm/core/func_integer.inl @@ -7,7 +7,8 @@ // File : glm/core/func_integer.inl /////////////////////////////////////////////////////////////////////////////////////////////////// -namespace glm +namespace glm{ +namespace core { // uaddCarry template @@ -581,4 +582,6 @@ namespace glm findMSB(value[2]), findMSB(value[3])); } + +}//namespace core }//namespace glm diff --git a/glm/core/func_matrix.hpp b/glm/core/func_matrix.hpp index 39039cf0..fc475287 100644 --- a/glm/core/func_matrix.hpp +++ b/glm/core/func_matrix.hpp @@ -10,7 +10,8 @@ #ifndef glm_core_func_matrix #define glm_core_func_matrix -namespace glm +namespace glm{ +namespace core { /// \addtogroup core_funcs /// @{ @@ -93,6 +94,7 @@ namespace glm detail::tmat4x4 const & m); /// @} +}//namespace core }//namespace glm #include "func_matrix.inl" diff --git a/glm/core/func_matrix.inl b/glm/core/func_matrix.inl index 29fbb4b3..e78d9faa 100644 --- a/glm/core/func_matrix.inl +++ b/glm/core/func_matrix.inl @@ -8,7 +8,8 @@ /////////////////////////////////////////////////////////////////////////////////////////////////// namespace glm{ - +namespace core +{ // matrixCompMult template GLM_FUNC_QUALIFIER matType matrixCompMult @@ -561,4 +562,5 @@ namespace glm{ return Inverse; } +}//namespace core }//namespace glm diff --git a/glm/core/func_noise.hpp b/glm/core/func_noise.hpp index b677e41a..35a1e572 100644 --- a/glm/core/func_noise.hpp +++ b/glm/core/func_noise.hpp @@ -10,7 +10,8 @@ #ifndef glm_core_func_noise #define glm_core_func_noise -namespace glm +namespace glm{ +namespace core { /// \addtogroup core_funcs /// @{ @@ -44,6 +45,7 @@ namespace glm detail::tvec4 noise4(genType const & x); /// @} +}//namespace core }//namespace glm #include "func_noise.inl" diff --git a/glm/core/func_packing.hpp b/glm/core/func_packing.hpp index 42392e31..23388bbf 100644 --- a/glm/core/func_packing.hpp +++ b/glm/core/func_packing.hpp @@ -10,7 +10,8 @@ #ifndef glm_core_func_packing #define glm_core_func_packing -namespace glm +namespace glm{ +namespace core { /// \addtogroup core_funcs ///@{ @@ -113,6 +114,7 @@ namespace glm detail::tvec2 unpackDouble2x32(double const & v); /// @} +}//namespace core }//namespace glm #include "func_packing.inl" diff --git a/glm/core/func_packing.inl b/glm/core/func_packing.inl index 962d7d06..cc5a5776 100644 --- a/glm/core/func_packing.inl +++ b/glm/core/func_packing.inl @@ -7,7 +7,8 @@ // File : glm/core/func_packing.inl /////////////////////////////////////////////////////////////////////////////////////////////////// -namespace glm +namespace glm{ +namespace core { GLM_FUNC_QUALIFIER detail::uint32 packUnorm2x16(detail::tvec2 const & v) { @@ -79,4 +80,5 @@ namespace glm return *(detail::tvec2*)&v; } +}//namespace core }//namespace glm diff --git a/glm/core/func_trigonometric.hpp b/glm/core/func_trigonometric.hpp index 089e19ea..62dec8c0 100644 --- a/glm/core/func_trigonometric.hpp +++ b/glm/core/func_trigonometric.hpp @@ -10,7 +10,8 @@ #ifndef glm_core_func_trigonometric #define glm_core_func_trigonometric -namespace glm +namespace glm{ +namespace core { /// \addtogroup core_funcs /// @{ @@ -134,6 +135,7 @@ namespace glm genType atanh(genType const & x); /// @} +}//namespace core }//namespace glm #include "func_trigonometric.inl" diff --git a/glm/core/func_trigonometric.inl b/glm/core/func_trigonometric.inl index 4b59bfc7..d0db73a1 100644 --- a/glm/core/func_trigonometric.inl +++ b/glm/core/func_trigonometric.inl @@ -7,7 +7,8 @@ // File : glm/core/func_trigonometric.inl /////////////////////////////////////////////////////////////////////////////////////////////////// -namespace glm +namespace glm{ +namespace core { // radians template @@ -735,4 +736,5 @@ namespace glm atanh(x.w)); } +}//namespace core }//namespace glm diff --git a/glm/core/func_vector_relational.hpp b/glm/core/func_vector_relational.hpp index ce698014..2889ae50 100644 --- a/glm/core/func_vector_relational.hpp +++ b/glm/core/func_vector_relational.hpp @@ -12,7 +12,8 @@ #include "_detail.hpp" -namespace glm +namespace glm{ +namespace core { /// \addtogroup core_funcs /// @{ @@ -196,6 +197,7 @@ namespace glm } /// @} +}//namespace core }//namespace glm #include "func_vector_relational.inl" diff --git a/glm/glm.hpp b/glm/glm.hpp index 09c95d1a..1fb994b6 100644 --- a/glm/glm.hpp +++ b/glm/glm.hpp @@ -73,9 +73,12 @@ namespace glm //! VIRTREV extensions. namespace virtrev{} + using namespace core; using namespace core::type; using namespace core::type::precision; using namespace core::function; + using namespace gtc; + using namespace gtx; }//namespace glm #include "./core/_detail.hpp" diff --git a/glm/gtc/swizzle.hpp b/glm/gtc/swizzle.hpp index 3fd6bc00..4ce767b3 100644 --- a/glm/gtc/swizzle.hpp +++ b/glm/gtc/swizzle.hpp @@ -40,8 +40,7 @@ #endif namespace glm{ -namespace gtc{ -namespace swizzle ///< GLM_GTC_swizzle extension +namespace gtc { using namespace gtc::half_float; @@ -361,12 +360,10 @@ namespace swizzle ///< GLM_GTC_swizzle extension static_swizzle4_ref(glm::u32, 4) static_swizzle4_ref(glm::u64, 4) -}//namespace swizzle + }//namespace gtc }//namespace glm #include "swizzle.inl" -namespace glm{using namespace gtc::swizzle;} - #endif//glm_gtc_swizzle diff --git a/glm/gtc/swizzle.inl b/glm/gtc/swizzle.inl index 9e5f789a..6d783c23 100644 --- a/glm/gtc/swizzle.inl +++ b/glm/gtc/swizzle.inl @@ -12,7 +12,6 @@ namespace glm{ namespace gtc{ -namespace swizzle{ template class vecType> GLM_FUNC_QUALIFIER T swizzle @@ -172,6 +171,6 @@ GLM_FUNC_QUALIFIER detail::tref4 swizzle return detail::tref4(v[x], v[y], v[z], v[w]); } */ -}//namespace swizzle + }//namespace gtc }//namespace glm diff --git a/test/gtx/gtx_quaternion.cpp b/test/gtx/gtx_quaternion.cpp index 287dc1df..bfe1221a 100644 --- a/test/gtx/gtx_quaternion.cpp +++ b/test/gtx/gtx_quaternion.cpp @@ -8,6 +8,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////// #include +#include #include #include