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/dlist.c | |
parent | b2c13534f7b38eed1c5b15d73e8171d3038765c7 (diff) |
mesa: replace FLOORF with floorf
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index ff9ab07c6ec..431c4b48b79 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -29,6 +29,7 @@ * Display lists management functions. */ +#include "c99_math.h" #include "glheader.h" #include "imports.h" #include "api_arrayelt.h" @@ -912,7 +913,7 @@ translate_id(GLsizei n, GLenum type, const GLvoid * list) return (GLint) uiptr[n]; case GL_FLOAT: fptr = (GLfloat *) list; - return (GLint) FLOORF(fptr[n]); + return (GLint) floorf(fptr[n]); case GL_2_BYTES: ubptr = ((GLubyte *) list) + 2 * n; return (GLint) ubptr[0] * 256 |