From b4ecb3e3dad654e01d0ceb4c359721650dda425b Mon Sep 17 00:00:00 2001 From: Fire-Head Date: Wed, 24 Jul 2019 19:55:43 +0300 Subject: shadows done --- src/math/maths.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/math/maths.h') diff --git a/src/math/maths.h b/src/math/maths.h index a1c3f109..51b0ef10 100644 --- a/src/math/maths.h +++ b/src/math/maths.h @@ -12,5 +12,6 @@ inline float Atan(float x) { return atanf(x); } inline float Atan2(float y, float x) { return atan2f(y, x); } inline float Abs(float x) { return fabs(x); } inline float Sqrt(float x) { return sqrtf(x); } -inline float RecipSqrt(float x) { return 1.0f/Sqrt(x); } +inline float RecipSqrt(float x, float y) { return x/Sqrt(y); } +inline float RecipSqrt(float x) { return RecipSqrt(1.0f, x); } inline float Pow(float x, float y) { return powf(x, y); } -- cgit v1.2.3