diff --git a/glm/gtx/fast_square_root.hpp b/glm/gtx/fast_square_root.hpp index 9fb3f2fc..ac42a9c0 100644 --- a/glm/gtx/fast_square_root.hpp +++ b/glm/gtx/fast_square_root.hpp @@ -84,7 +84,13 @@ namespace glm /// /// @see gtx_fast_square_root extension. template - GLM_FUNC_DECL genType fastNormalize(genType const& x); + GLM_FUNC_DECL genType fastNormalize(genType x); + + /// Faster than the common normalize function but less accurate. + /// + /// @see gtx_fast_square_root extension. + template + GLM_FUNC_DECL vec fastNormalize(vec const& x); /// @} }// namespace glm