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 namespace glm
00022 {
00023 namespace test{
00024 void main_gtx_unsigned_int();
00025 }
00026
00027 namespace gtx{
00029 namespace unsigned_int
00030 {
00033 typedef signed int sint;
00034
00037 uint pow(uint x, uint y);
00038
00041 uint sqrt(uint x);
00042
00045 uint mod(uint x, uint y);
00046
00047 }
00048 }
00049 }
00050
00051 #define GLM_GTX_unsigned_int namespace gtx::unsigned_int; using namespace gtx::integer
00052 #ifndef GLM_GTX_GLOBAL
00053 namespace glm {using GLM_GTX_unsigned_int;}
00054 #endif//GLM_GTX_GLOBAL
00055
00056 #include "unsigned_int.inl"
00057
00058 #endif//glm_gtx_unsigned_int