Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #pragma once
00039
00040
00041 #include "../glm.hpp"
00042
00043 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
00044 # pragma message("GLM: GLM_GTX_optimum_pow extension included")
00045 #endif
00046
00047 namespace glm{
00048 namespace gtx
00049 {
00052
00055 template <typename genType>
00056 GLM_FUNC_DECL genType pow2(const genType& x);
00057
00060 template <typename genType>
00061 GLM_FUNC_DECL genType pow3(const genType& x);
00062
00065 template <typename genType>
00066 GLM_FUNC_DECL genType pow4(const genType& x);
00067
00070 GLM_FUNC_DECL bool powOfTwo(int num);
00071
00074 template <precision P>
00075 GLM_FUNC_DECL detail::tvec2<bool, P> powOfTwo(detail::tvec2<int, P> const & x);
00076
00079 template <precision P>
00080 GLM_FUNC_DECL detail::tvec3<bool, P> powOfTwo(detail::tvec3<int, P> const & x);
00081
00084 template <precision P>
00085 GLM_FUNC_DECL detail::tvec4<bool, P> powOfTwo(detail::tvec4<int, P> const & x);
00086
00088 }
00089 }
00090
00091 #include "optimum_pow.inl"