From c886922cc0b8c32ead0459b581f51ff60fdebbd4 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Wed, 6 Dec 2017 23:47:39 +0000 Subject: Gem 427a3d0e61d61e64e76facfa905c120356383bab osx/x86_64 built 'master:427a3d0e61d61e64e76facfa905c120356383bab' for osx/x86_64 --- Gem/develop/include/Gem/Utils/GemMath.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Gem/develop/include/Gem/Utils/GemMath.h') diff --git a/Gem/develop/include/Gem/Utils/GemMath.h b/Gem/develop/include/Gem/Utils/GemMath.h index 769edec..595c1d6 100644 --- a/Gem/develop/include/Gem/Utils/GemMath.h +++ b/Gem/develop/include/Gem/Utils/GemMath.h @@ -2,7 +2,7 @@ LOG GEM - Graphics Environment for Multimedia - Matrix class + Matrix class Copyright (c) 1997-1999 Mark Danks. mark@danks.org Copyright (c) Günther Geiger. geiger@epy.co.at @@ -63,14 +63,14 @@ LOG inline double fast_sqrt(double x) { - register double est = __frsqrte(x); - return x * 0.5 * est * __fnmsub(est * est, x, 3.0); + register double est = __frsqrte(x); + return x * 0.5 * est * __fnmsub(est * est, x, 3.0); } inline float fast_sqrtf(float x) { - register float est = (float)__frsqrte(x); - return x * 0.5f * est * __fnmsubs(est * est, x, 3.0f); + register float est = (float)__frsqrte(x); + return x * 0.5f * est * __fnmsubs(est * est, x, 3.0f); } #endif /* __ppc__ */ @@ -82,4 +82,4 @@ inline float fast_sqrtf(float x) #endif /* _WIN32 */ -#endif // for header file +#endif // for header file -- cgit v1.2.1