0.9.6
raw_data.hpp
Go to the documentation of this file.
1 
38 #pragma once
39 
40 // Dependencies
41 #include "../detail/setup.hpp"
42 #include "../detail/type_int.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"
detail::uint32 dword
Type for dword numbers.
Definition: raw_data.hpp:63
detail::uint64 qword
Type for qword numbers.
Definition: raw_data.hpp:67
Definition: _noise.hpp:31
detail::uint16 word
Type for word numbers.
Definition: raw_data.hpp:59
detail::uint8 byte
Type for byte numbers.
Definition: raw_data.hpp:55