optimum_pow.hpp
Go to the documentation of this file.
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35 
36 
37 
38 #ifndef GLM_GTX_optimum_pow
39 #define GLM_GTX_optimum_pow GLM_VERSION
40 
41 // Dependency:
42 #include "../glm.hpp"
43 
44 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
45 # pragma message("GLM: GLM_GTX_optimum_pow extension included")
46 #endif
47 
48 namespace glm{
49 namespace gtx
50 {
53 
56  template <typename genType>
57  genType pow2(const genType& x);
58 
61  template <typename genType>
62  genType pow3(const genType& x);
63 
66  template <typename genType>
67  genType pow4(const genType& x);
68 
71  bool powOfTwo(int num);
72 
75  detail::tvec2<bool> powOfTwo(const detail::tvec2<int>& x);
76 
79  detail::tvec3<bool> powOfTwo(const detail::tvec3<int>& x);
80 
83  detail::tvec4<bool> powOfTwo(const detail::tvec4<int>& x);
84 
86 }//namespace gtx
87 }//namespace glm
88 
89 #include "optimum_pow.inl"
90 
91 #endif//GLM_GTX_optimum_pow