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_fast_square_root
24b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @file glm/gtx/fast_square_root.hpp
25b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @date 2006-01-04 / 2011-06-07
26b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @author Christophe Riccio
27b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
28b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @see core (dependence)
29b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
30b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @defgroup gtx_fast_square_root GLM_GTX_fast_square_root
31b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @ingroup gtx
32b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
33b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// @brief Fast but less accurate implementations of square root based functions.
34b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// - Sqrt optimisation based on Newton's method,
35b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// www.gamedev.net/community/forums/topic.asp?topic id=139956
36b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///
37b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG/// <glm/gtx/fast_square_root.hpp> need to be included to use these functionalities.
38b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG///////////////////////////////////////////////////////////////////////////////////
39b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
40b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#ifndef GLM_GTX_fast_square_root
41b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#define GLM_GTX_fast_square_root
42b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
43b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG// Dependency:
44b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#include "../glm.hpp"
45b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
46b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
47b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#	pragma message("GLM: GLM_GTX_fast_square_root extension included")
48b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#endif
49b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
50b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarGnamespace glm
51b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG{
52b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	/// @addtogroup gtx_fast_square_root
53b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	/// @{
54b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
55b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! Faster than the common sqrt function but less accurate.
56b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! From GLM_GTX_fast_square_root extension.
57b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	template <typename genType>
58b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	GLM_FUNC_DECL genType fastSqrt(genType const & x);
59b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
60b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! Faster than the common inversesqrt function but less accurate.
61b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! From GLM_GTX_fast_square_root extension.
62b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	template <typename genType>
63b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	GLM_FUNC_DECL genType fastInverseSqrt(genType const & x);
64b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
65b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! Faster than the common inversesqrt function but less accurate.
66b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! From GLM_GTX_fast_square_root extension.
67b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	template <typename T, precision P, template <typename, precision> class vecType>
68b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	GLM_FUNC_DECL vecType<T, P> fastInverseSqrt(vecType<T, P> const & x);
69b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
70b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! Faster than the common length function but less accurate.
71b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! From GLM_GTX_fast_square_root extension.
72b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	template <typename genType>
73b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	GLM_FUNC_DECL typename genType::value_type fastLength(genType const & x);
74b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
75b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! Faster than the common distance function but less accurate.
76b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! From GLM_GTX_fast_square_root extension.
77b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	template <typename genType>
78b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	GLM_FUNC_DECL typename genType::value_type fastDistance(genType const & x, genType const & y);
79b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
80b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! Faster than the common normalize function but less accurate.
81b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	//! From GLM_GTX_fast_square_root extension.
82b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	template <typename genType>
83b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	GLM_FUNC_DECL genType fastNormalize(genType const & x);
84b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
85b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG	/// @}
86b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG}// namespace glm
87b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
88b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#include "fast_square_root.inl"
89b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG
90b0b195df6c4343219e339ccb37978e8432a5f871Tony-LunarG#endif//GLM_GTX_fast_square_root
91