diff options
author | Brian Paul <[email protected]> | 2015-02-24 09:03:25 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-02-24 14:44:19 -0700 |
commit | b2c13534f7b38eed1c5b15d73e8171d3038765c7 (patch) | |
tree | 148a84e0214474f19e177478d594841405950971 /src/mesa/main/imports.h | |
parent | 79b480ccc069b92d4614ed7f61d810bdc816cb7c (diff) |
mesa: remove unused CEILF macro
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index b7bb6e271ba..bcbcd0f3e27 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -204,17 +204,14 @@ static inline GLfloat LOG2(GLfloat x) /*** - *** CEILF: ceiling of float *** FLOORF: floor of float *** FABSF: absolute value of float ***/ #if defined(__gnu_linux__) /* C99 functions */ -#define CEILF(x) ceilf(x) #define FLOORF(x) floorf(x) #define FABSF(x) fabsf(x) #else -#define CEILF(x) ((GLfloat) ceil(x)) #define FLOORF(x) ((GLfloat) floor(x)) #define FABSF(x) ((GLfloat) fabs(x)) #endif |