From 2877f4eda3d1b0c7431039e3142ecf1a282a34b1 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Tue, 21 Aug 2018 20:40:38 +0500 Subject: Update glm to 0.9.9.0 --- external/include/glm/gtx/normalize_dot.inl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'external/include/glm/gtx/normalize_dot.inl') diff --git a/external/include/glm/gtx/normalize_dot.inl b/external/include/glm/gtx/normalize_dot.inl index 0d01ffe..8b88860 100644 --- a/external/include/glm/gtx/normalize_dot.inl +++ b/external/include/glm/gtx/normalize_dot.inl @@ -3,14 +3,14 @@ namespace glm { - template class vecType> - GLM_FUNC_QUALIFIER T normalizeDot(vecType const & x, vecType const & y) + template + GLM_FUNC_QUALIFIER T normalizeDot(vec const& x, vec const& y) { return glm::dot(x, y) * glm::inversesqrt(glm::dot(x, x) * glm::dot(y, y)); } - template class vecType> - GLM_FUNC_QUALIFIER T fastNormalizeDot(vecType const & x, vecType const & y) + template + GLM_FUNC_QUALIFIER T fastNormalizeDot(vec const& x, vec const& y) { return glm::dot(x, y) * glm::fastInverseSqrt(glm::dot(x, x) * glm::dot(y, y)); } -- cgit v1.2.3