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 {
00027 namespace test{
00028 void main_gtx_unsigned_int();
00029 }
00030
00031 namespace gtx{
00033 namespace unsigned_int
00034 {
00035 using namespace gtx::integer;
00036
00039
00042 typedef signed int sint;
00043
00046 uint pow(uint x, uint y);
00047
00050 uint sqrt(uint x);
00051
00054 uint mod(uint x, uint y);
00055
00057
00058 }
00059 }
00060 }
00061
00062 #include "unsigned_int.inl"
00063
00064 namespace glm{using namespace gtx::unsigned_int;}
00065
00066 #endif//glm_gtx_unsigned_int