mesa: remove unused CEILF macro

Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Brian Paul 2015-02-24 09:03:25 -07:00
parent 79b480ccc0
commit b2c13534f7

View file

@ -204,17 +204,14 @@ static inline GLfloat LOG2(GLfloat x)
/*** /***
*** CEILF: ceiling of float
*** FLOORF: floor of float *** FLOORF: floor of float
*** FABSF: absolute value of float *** FABSF: absolute value of float
***/ ***/
#if defined(__gnu_linux__) #if defined(__gnu_linux__)
/* C99 functions */ /* C99 functions */
#define CEILF(x) ceilf(x)
#define FLOORF(x) floorf(x) #define FLOORF(x) floorf(x)
#define FABSF(x) fabsf(x) #define FABSF(x) fabsf(x)
#else #else
#define CEILF(x) ((GLfloat) ceil(x))
#define FLOORF(x) ((GLfloat) floor(x)) #define FLOORF(x) ((GLfloat) floor(x))
#define FABSF(x) ((GLfloat) fabs(x)) #define FABSF(x) ((GLfloat) fabs(x))
#endif #endif