Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-11-26 13:53:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-11-26 13:53:26 +0400
commit13896063bccdf97f790db5a4048514a3bf0bf0b4 (patch)
treef65026d6a5d78c655c3f7c9e9c1cd0249d63afc4 /source/blender/blenlib/BLI_math_base.h
parent0570bdc13d297a80c702a69f72bf28f8d4e2e9b5 (diff)
Math library: minor additions sqrtf_signed and copy_v2_fl2
Diffstat (limited to 'source/blender/blenlib/BLI_math_base.h')
-rw-r--r--source/blender/blenlib/BLI_math_base.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_math_base.h b/source/blender/blenlib/BLI_math_base.h
index 1cb28d25b6c..f7e6dc14295 100644
--- a/source/blender/blenlib/BLI_math_base.h
+++ b/source/blender/blenlib/BLI_math_base.h
@@ -197,6 +197,8 @@ static const int NAN_INT = 0x7FC00000;
MINLINE float sqrt3f(float f);
MINLINE double sqrt3d(double d);
+MINLINE float sqrtf_signed(float f);
+
MINLINE float saacosf(float f);
MINLINE float saasinf(float f);
MINLINE float sasqrtf(float f);