diff options
author | Brian Paul <[email protected]> | 2015-02-24 15:03:44 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-02-24 17:10:28 -0700 |
commit | 9fd7e9d83197f90d008043446317ebe01432144b (patch) | |
tree | d26909e05159e328debe430806bf11d7ee140366 /src/mesa/main | |
parent | ee3f6745723856419d7f5ecb17652e19855c4caa (diff) |
mesa: remove sqrtf macro
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/imports.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index df6a3fe994a..7fb9381e546 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -90,17 +90,6 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type; #define DEG2RAD (M_PI/180.0) -/** - * \name Work-arounds for platforms that lack C99 math functions - */ -/*@{*/ -#if (!defined(_XOPEN_SOURCE) || (_XOPEN_SOURCE < 600)) && !defined(_ISOC99_SOURCE) \ - && (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)) \ - && (!defined(_MSC_VER) || (_MSC_VER < 1400)) - -#define sqrtf(f) ((float) sqrt(f)) -#endif - #if defined(_MSC_VER) #if _MSC_VER < 1800 /* Not req'd on VS2013 and above */ static inline int isblank(int ch) { return ch == ' ' || ch == '\t'; } |