From f5f996c14a7d7c46f0967eee01af9b6b77caa4a7 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 6 Feb 2018 02:35:08 -0800 Subject: Check for a cbrtf function --- common/math_defs.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'common') diff --git a/common/math_defs.h b/common/math_defs.h index cbe9091f..428f5181 100644 --- a/common/math_defs.h +++ b/common/math_defs.h @@ -29,6 +29,13 @@ static inline float log2f(float f) } #endif +#ifndef HAVE_CBRTF +static inline float cbrtf(float f) +{ + return powf(f, 1.0f/3.0f); +} +#endif + #define DEG2RAD(x) ((float)(x) * (F_PI/180.0f)) #define RAD2DEG(x) ((float)(x) * (180.0f/F_PI)) -- cgit v1.2.3