summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2015-02-24 15:23:22 -0700
committerBrian Paul <brianp@vmware.com>2015-02-24 17:10:28 -0700
commitab68219a59c128e018ba68a287228c24890b8f4f (patch)
tree0355694a27c71aff74babc72dd83ebeeef40d0a9 /src/mesa/main
parentf847ddb64dfe7d0e84354b30b7551d83fe3463c9 (diff)
downloadexternal_mesa3d-ab68219a59c128e018ba68a287228c24890b8f4f.zip
external_mesa3d-ab68219a59c128e018ba68a287228c24890b8f4f.tar.gz
external_mesa3d-ab68219a59c128e018ba68a287228c24890b8f4f.tar.bz2
mesa: remove MAX_GLUSHORT, move MAX_GLUINT
The later is only used in one place in swrast. Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/imports.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index 82b3213..356f0e1 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -83,9 +83,6 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type;
* Math macros
*/
-#define MAX_GLUSHORT 0xffff
-#define MAX_GLUINT 0xffffffff
-
/* Degrees to radians conversion: */
#define DEG2RAD (M_PI/180.0)