GLM Version 0.9.0
|
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 namespace glm 00022 { 00023 namespace test{ 00024 void main_gtx_unsigned_int(); 00025 }//namespace test 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 }//namespace unsigned_int 00050 }//namespace gtx 00051 }//namespace glm 00052 00053 #include "unsigned_int.inl" 00054 00055 namespace glm{using namespace gtx::unsigned_int;} 00056 00057 #endif//glm_gtx_unsigned_int