00001
00002
00004
00005
00006
00007
00009
00010
00011
00013
00014 #ifndef glm_gtx_unsigned_int
00015 #define glm_gtx_unsigned_int
00016
00017
00018 #include "../glm.hpp"
00019 #include "../gtx/integer.hpp"
00020
00021 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00022 # pragma message("GLM: GLM_GTX_unsigned_int extension included")
00023 #endif
00024
00025 namespace glm{
00026 namespace gtx{
00027 namespace unsigned_int
00028 {
00029 using namespace gtx::integer;
00030
00033
00036 typedef signed int sint;
00037
00040 uint pow(uint x, uint y);
00041
00044 uint sqrt(uint x);
00045
00048 uint mod(uint x, uint y);
00049
00051 }
00052 }
00053 }
00054
00055 #include "unsigned_int.inl"
00056
00057 namespace glm{using namespace gtx::unsigned_int;}
00058
00059 #endif//glm_gtx_unsigned_int