1b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///////////////////////////////////////////////////////////////////////////////////
2b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// OpenGL Mathematics (glm.g-truc.net)
3b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
4b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// Copyright (c) 2005 - 2014 G-Truc Creation (www.g-truc.net)
5b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// Permission is hereby granted, free of charge, to any person obtaining a copy
6b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// of this software and associated documentation files (the "Software"), to deal
7b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// in the Software without restriction, including without limitation the rights
8b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// copies of the Software, and to permit persons to whom the Software is
10b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// furnished to do so, subject to the following conditions:
11b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
12b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// The above copyright notice and this permission notice shall be included in
13b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// all copies or substantial portions of the Software.
14b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
15b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// THE SOFTWARE.
22b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
23b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @ref gtx_raw_data
24b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @file glm/gtx/raw_data.hpp
25b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @date 2008-11-19 / 2011-06-07
26b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @author Christophe Riccio
27b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
28b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @see core (dependence)
29b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
30b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @defgroup gtx_raw_data GLM_GTX_raw_data
31b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @ingroup gtx
32b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
33b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @brief Projection of a vector to other one
34b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
35b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// <glm/gtx/raw_data.hpp> need to be included to use these functionalities.
36b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///////////////////////////////////////////////////////////////////////////////////
37b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
38b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#ifndef GLM_GTX_raw_data
39b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#define GLM_GTX_raw_data
40b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
41b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG// Dependencies
42b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#include "../detail/setup.hpp"
43b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#include "../detail/type_int.hpp"
44b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
45b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
46b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#	pragma message("GLM: GLM_GTX_raw_data extension included")
47b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#endif
48b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
49b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarGnamespace glm
50b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG{
51b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	/// @addtogroup gtx_raw_data
52b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	/// @{
53b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
54b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! Type for byte numbers.
55b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! From GLM_GTX_raw_data extension.
56b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	typedef detail::uint8		byte;
57b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
58b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! Type for word numbers.
59b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! From GLM_GTX_raw_data extension.
60b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	typedef detail::uint16		word;
61b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
62b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! Type for dword numbers.
63b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! From GLM_GTX_raw_data extension.
64b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	typedef detail::uint32		dword;
65b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
66b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! Type for qword numbers.
67b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! From GLM_GTX_raw_data extension.
68b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	typedef detail::uint64		qword;
69b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
70b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	/// @}
71b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG}// namespace glm
72b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
73b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#include "raw_data.inl"
74b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
75b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#endif//GLM_GTX_raw_data
76