From 6f67371bb1b46579ae837d0e0c61ac1b291be743 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Sat, 13 Jan 2018 07:51:33 +0500 Subject: Directory renamed --- depedencies/include/glm/gtx/optimum_pow.hpp | 50 ----------------------------- 1 file changed, 50 deletions(-) delete mode 100644 depedencies/include/glm/gtx/optimum_pow.hpp (limited to 'depedencies/include/glm/gtx/optimum_pow.hpp') diff --git a/depedencies/include/glm/gtx/optimum_pow.hpp b/depedencies/include/glm/gtx/optimum_pow.hpp deleted file mode 100644 index e9510c4..0000000 --- a/depedencies/include/glm/gtx/optimum_pow.hpp +++ /dev/null @@ -1,50 +0,0 @@ -/// @ref gtx_optimum_pow -/// @file glm/gtx/optimum_pow.hpp -/// -/// @see core (dependence) -/// -/// @defgroup gtx_optimum_pow GLM_GTX_optimum_pow -/// @ingroup gtx -/// -/// @brief Integer exponentiation of power functions. -/// -/// need to be included to use these functionalities. - -#pragma once - -// Dependency: -#include "../glm.hpp" - -#if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED) -# pragma message("GLM: GLM_GTX_optimum_pow extension included") -#endif - -namespace glm{ -namespace gtx -{ - /// @addtogroup gtx_optimum_pow - /// @{ - - /// Returns x raised to the power of 2. - /// - /// @see gtx_optimum_pow - template - GLM_FUNC_DECL genType pow2(genType const & x); - - /// Returns x raised to the power of 3. - /// - /// @see gtx_optimum_pow - template - GLM_FUNC_DECL genType pow3(genType const & x); - - /// Returns x raised to the power of 4. - /// - /// @see gtx_optimum_pow - template - GLM_FUNC_DECL genType pow4(genType const & x); - - /// @} -}//namespace gtx -}//namespace glm - -#include "optimum_pow.inl" -- cgit v1.2.3