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 {
00031 using namespace gtx::integer;
00032
00035 typedef signed int sint;
00036
00039 uint pow(uint x, uint y);
00040
00043 uint sqrt(uint x);
00044
00047 uint mod(uint x, uint y);
00048
00049 }
00050 }
00051 }
00052
00053 #include "unsigned_int.inl"
00054
00055 namespace glm{using namespace gtx::unsigned_int;}
00056
00057 #endif//glm_gtx_unsigned_int