diff options
author | Brian Paul <[email protected]> | 2015-02-24 09:04:54 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-02-24 14:44:19 -0700 |
commit | 46ce78d4c659fcf9fb2b088424d4d16d13ab5d75 (patch) | |
tree | e2a556f00add71af25185dbe8239d241fc7b9175 /src/mesa/main/imports.h | |
parent | b2c13534f7b38eed1c5b15d73e8171d3038765c7 (diff) |
mesa: replace FLOORF with floorf
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 bcbcd0f3e27..9dee565aa58 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -204,15 +204,12 @@ static inline GLfloat LOG2(GLfloat x) /*** - *** FLOORF: floor of float *** FABSF: absolute value of float ***/ #if defined(__gnu_linux__) /* C99 functions */ -#define FLOORF(x) floorf(x) #define FABSF(x) fabsf(x) #else -#define FLOORF(x) ((GLfloat) floor(x)) #define FABSF(x) ((GLfloat) fabs(x)) #endif |