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_string_cast
24b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @file glm/gtx/string_cast.hpp
25b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @date 2008-04-26 / 2011-06-07
26b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @author Christophe Riccio
27b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
28b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @see core (dependence)
29b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @see gtc_half_float (dependence)
30b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @see gtx_integer (dependence)
31b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @see gtx_quaternion (dependence)
32b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
33b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @defgroup gtx_string_cast GLM_GTX_string_cast
34b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @ingroup gtx
35b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
36b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @brief Setup strings for GLM type values
37b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
38b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// <glm/gtx/string_cast.hpp> need to be included to use these functionalities.
39b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// This extension is not supported with CUDA
40b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///////////////////////////////////////////////////////////////////////////////////
41b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
42b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#ifndef GLM_GTX_string_cast
43b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#define GLM_GTX_string_cast
44b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
45b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG// Dependency:
46b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#include "../glm.hpp"
47b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#include "../gtx/integer.hpp"
48b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#include "../gtx/quaternion.hpp"
49b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#include <string>
50b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
51b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#if(GLM_COMPILER & GLM_COMPILER_CUDA)
52b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#	error "GLM_GTX_string_cast is not supported on CUDA compiler"
53b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#endif
54b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
55b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
56b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#	pragma message("GLM: GLM_GTX_string_cast extension included")
57b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#endif
58b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
59b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarGnamespace glm
60b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG{
61b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	/// @addtogroup gtx_string_cast
62b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	/// @{
63b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
64b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	/// Create a string from a GLM type value.
65b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	/// @see gtx_string_cast extension.
66b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	template <typename genType>
67b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	GLM_FUNC_DECL std::string to_string(genType const & x);
68b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
69b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	/// @}
70b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG}//namespace glm
71b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
72b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#include "string_cast.inl"
73b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
74b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#endif//GLM_GTX_string_cast
75