mesa: remove MAX_GLUSHORT, move MAX_GLUINT
authorBrian Paul <brianp@vmware.com>
Tue, 24 Feb 2015 22:23:22 +0000 (15:23 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 25 Feb 2015 00:10:28 +0000 (17:10 -0700)
The later is only used in one place in swrast.

Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/main/imports.h
src/mesa/swrast/s_tritemp.h

index 82b3213dd906230fb921ad481d1a3c3a0be2addf..356f0e1837645cf0c2f3c043fbbe3bb6035e4b8c 100644 (file)
@@ -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)
 
index f0281e4568b950b4aaa62e13e23b596947167f63..fb73b2d59ffcfd555f37d7c6d7883f9efe2ec0a9 100644 (file)
  */
 
 
+#ifndef MAX_GLUINT
+#define MAX_GLUINT     0xffffffff
+#endif
+
+
 /*
  * Some code we unfortunately need to prevent negative interpolated colors.
  */