From 2877f4eda3d1b0c7431039e3142ecf1a282a34b1 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Tue, 21 Aug 2018 20:40:38 +0500 Subject: Update glm to 0.9.9.0 --- external/include/glm/gtx/fast_exponential.hpp | 44 +++++++++++++++------------ 1 file changed, 24 insertions(+), 20 deletions(-) (limited to 'external/include/glm/gtx/fast_exponential.hpp') diff --git a/external/include/glm/gtx/fast_exponential.hpp b/external/include/glm/gtx/fast_exponential.hpp index ed64a27..2d4918e 100644 --- a/external/include/glm/gtx/fast_exponential.hpp +++ b/external/include/glm/gtx/fast_exponential.hpp @@ -7,15 +7,19 @@ /// @defgroup gtx_fast_exponential GLM_GTX_fast_exponential /// @ingroup gtx /// -/// @brief Fast but less accurate implementations of exponential based functions. +/// Include to use the features of this extension. /// -/// need to be included to use these functionalities. +/// Fast but less accurate implementations of exponential based functions. #pragma once // Dependency: #include "../glm.hpp" +#ifndef GLM_ENABLE_EXPERIMENTAL +# error "GLM: GLM_GTX_fast_exponential is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it." +#endif + #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED) # pragma message("GLM: GLM_GTX_fast_exponential extension included") #endif @@ -27,63 +31,63 @@ namespace glm /// Faster than the common pow function but less accurate. /// @see gtx_fast_exponential - template + template GLM_FUNC_DECL genType fastPow(genType x, genType y); /// Faster than the common pow function but less accurate. /// @see gtx_fast_exponential - template class vecType> - GLM_FUNC_DECL vecType fastPow(vecType const & x, vecType const & y); + template + GLM_FUNC_DECL vec fastPow(vec const& x, vec const& y); /// Faster than the common pow function but less accurate. /// @see gtx_fast_exponential - template + template GLM_FUNC_DECL genTypeT fastPow(genTypeT x, genTypeU y); /// Faster than the common pow function but less accurate. /// @see gtx_fast_exponential - template class vecType> - GLM_FUNC_DECL vecType fastPow(vecType const & x); + template + GLM_FUNC_DECL vec fastPow(vec const& x); /// Faster than the common exp function but less accurate. /// @see gtx_fast_exponential - template + template GLM_FUNC_DECL T fastExp(T x); /// Faster than the common exp function but less accurate. /// @see gtx_fast_exponential - template class vecType> - GLM_FUNC_DECL vecType fastExp(vecType const & x); + template + GLM_FUNC_DECL vec fastExp(vec const& x); /// Faster than the common log function but less accurate. /// @see gtx_fast_exponential - template + template GLM_FUNC_DECL T fastLog(T x); /// Faster than the common exp2 function but less accurate. /// @see gtx_fast_exponential - template class vecType> - GLM_FUNC_DECL vecType fastLog(vecType const & x); + template + GLM_FUNC_DECL vec fastLog(vec const& x); /// Faster than the common exp2 function but less accurate. /// @see gtx_fast_exponential - template + template GLM_FUNC_DECL T fastExp2(T x); /// Faster than the common exp2 function but less accurate. /// @see gtx_fast_exponential - template class vecType> - GLM_FUNC_DECL vecType fastExp2(vecType const & x); + template + GLM_FUNC_DECL vec fastExp2(vec const& x); /// Faster than the common log2 function but less accurate. /// @see gtx_fast_exponential - template + template GLM_FUNC_DECL T fastLog2(T x); /// Faster than the common log2 function but less accurate. /// @see gtx_fast_exponential - template class vecType> - GLM_FUNC_DECL vecType fastLog2(vecType const & x); + template + GLM_FUNC_DECL vec fastLog2(vec const& x); /// @} }//namespace glm -- cgit v1.2.3