summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/imports.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2015-02-24 09:33:41 -0700
committerBrian Paul <brianp@vmware.com>2015-02-24 14:44:19 -0700
commitbbb2d8403256dd16fb55b4059f396c42cdc5008c (patch)
tree0782905a541e27fff3daaa4da486fe6d3563fc36 /src/mesa/main/imports.h
parentbdd0402ca3400328b38a8cf02b501852a037b957 (diff)
downloadexternal_mesa3d-bbb2d8403256dd16fb55b4059f396c42cdc5008c.zip
external_mesa3d-bbb2d8403256dd16fb55b4059f396c42cdc5008c.tar.gz
external_mesa3d-bbb2d8403256dd16fb55b4059f396c42cdc5008c.tar.bz2
mesa: remove ceilf, floorf macros
Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r--src/mesa/main/imports.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index 5e40bd0..da373b0 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -97,8 +97,6 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type;
#if (!defined(_XOPEN_SOURCE) || (_XOPEN_SOURCE < 600)) && !defined(_ISOC99_SOURCE) \
&& (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)) \
&& (!defined(_MSC_VER) || (_MSC_VER < 1400))
-#define ceilf(f) ((float) ceil(f))
-#define floorf(f) ((float) floor(f))
#define sqrtf(f) ((float) sqrt(f))
#endif