0.9.8
raw_data.hpp
Go to the documentation of this file.
1 
13 #pragma once
14 
15 // Dependencies
16 #include "../detail/setup.hpp"
17 #include "../detail/type_int.hpp"
18 
19 #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED)
20 # pragma message("GLM: GLM_GTX_raw_data extension included")
21 #endif
22 
23 namespace glm
24 {
27 
30  typedef detail::uint8 byte;
31 
34  typedef detail::uint16 word;
35 
38  typedef detail::uint32 dword;
39 
42  typedef detail::uint64 qword;
43 
45 }// namespace glm
46 
47 #include "raw_data.inl"
detail::uint64 qword
Type for qword numbers.
Definition: raw_data.hpp:42
Definition: _noise.hpp:11
detail::uint8 byte
Type for byte numbers.
Definition: raw_data.hpp:30
detail::uint16 word
Type for word numbers.
Definition: raw_data.hpp:34
detail::uint32 dword
Type for dword numbers.
Definition: raw_data.hpp:38