unsigned_int.hpp
00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2005-12-24
00005 // Updated : 2008-10-07
00006 // Licence : This source is under MIT License
00007 // File    : glm/gtx/unsigned_int.hpp
00009 // Dependency:
00010 // - GLM core
00011 // - GLM_GTX_integer
00013 
00014 #ifndef glm_gtx_unsigned_int
00015 #define glm_gtx_unsigned_int
00016 
00017 // Dependency:
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 }//namespace unsigned_int
00052 }//namespace gtx
00053 }//namespace glm
00054 
00055 #include "unsigned_int.inl"
00056 
00057 namespace glm{using namespace gtx::unsigned_int;}
00058 
00059 #endif//glm_gtx_unsigned_int