raw_data.hpp

00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2008-11-19
00005 // Updated : 2010-01-28
00006 // Licence : This source is under MIT License
00007 // File    : glm/gtx/raw_data.hpp
00009 // Dependency:
00010 // - GLM core
00012 
00013 #ifndef glm_gtx_raw_data
00014 #define glm_gtx_raw_data
00015 
00016 // Dependency:
00017 #include "../glm.hpp"
00018 #include "../gtc/type_precision.hpp"
00019 
00020 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00021 #       pragma message("GLM: GLM_GTX_raw_data extension included")
00022 #endif
00023 
00024 namespace glm{
00025 namespace gtx
00026 {
00028     namespace raw_data
00029     {
00030                 using namespace gtc::type_precision;
00031 
00034 
00037                 typedef uint8           byte;
00038 
00041                 typedef uint16          word;
00042 
00045                 typedef uint32          dword;
00046 
00049                 typedef uint64          qword;
00050 
00052         }
00053 }//namespace gtx
00054 }//namespace glm
00055 
00056 #include "raw_data.inl"
00057 
00058 namespace glm{using namespace gtx::raw_data;}
00059 
00060 #endif//glm_gtx_raw_data