GLM  0.9.5
raw_data.hpp
Go to the documentation of this file.
1 
38 #ifndef GLM_GTX_raw_data
39 #define GLM_GTX_raw_data
40 
41 // Dependencies
42 #include "../detail/setup.hpp"
43 
44 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
45 # pragma message("GLM: GLM_GTX_raw_data extension included")
46 #endif
47 
48 namespace glm
49 {
52 
55  typedef detail::uint8 byte;
56 
59  typedef detail::uint16 word;
60 
63  typedef detail::uint32 dword;
64 
67  typedef detail::uint64 qword;
68 
70 }// namespace glm
71 
72 #include "raw_data.inl"
73 
74 #endif//GLM_GTX_raw_data
detail::uint32 dword
Type for dword numbers.
Definition: raw_data.hpp:63
detail::uint64 qword
Type for qword numbers.
Definition: raw_data.hpp:67
detail::uint16 word
Type for word numbers.
Definition: raw_data.hpp:59
detail::uint8 byte
Type for byte numbers.
Definition: raw_data.hpp:55