summaryrefslogtreecommitdiff
path: root/src/math
diff options
context:
space:
mode:
authorFire-Head <Fire-Head@users.noreply.github.com>2019-07-24 19:55:43 +0300
committerFire-Head <Fire-Head@users.noreply.github.com>2019-07-24 19:55:43 +0300
commitb4ecb3e3dad654e01d0ceb4c359721650dda425b (patch)
tree27cfc6fb58ec53080d9c4850f13b8b97ad681b13 /src/math
parentad1920bc6f9eaad5d517352c3853e448a048965d (diff)
shadows done
Diffstat (limited to 'src/math')
-rw-r--r--src/math/maths.h3
1 files changed, 2 insertions, 1 deletions
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); }