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_integer extension included")
00045 #endif
00046
00047 namespace glm
00048 {
00051
00054 GLM_FUNC_DECL int pow(int x, int y);
00055
00058 GLM_FUNC_DECL int sqrt(int x);
00059
00062 template <typename genIUType>
00063 GLM_FUNC_DECL genIUType log2(genIUType x);
00064
00067 GLM_FUNC_DECL unsigned int floor_log2(unsigned int x);
00068
00071 GLM_FUNC_DECL int mod(int x, int y);
00072
00075 template <typename genType>
00076 GLM_FUNC_DECL genType factorial(genType const & x);
00077
00080 typedef signed int sint;
00081
00084 GLM_FUNC_DECL uint pow(uint x, uint y);
00085
00088 GLM_FUNC_DECL uint sqrt(uint x);
00089
00092 GLM_FUNC_DECL uint mod(uint x, uint y);
00093
00096 GLM_FUNC_DECL uint nlz(uint x);
00097
00099 }
00100
00101 #include "integer.inl"