diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 82b3213dd90..356f0e18376 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) diff --git a/src/mesa/swrast/s_tritemp.h b/src/mesa/swrast/s_tritemp.h index f0281e4568b..fb73b2d59ff 100644 --- a/src/mesa/swrast/s_tritemp.h +++ b/src/mesa/swrast/s_tritemp.h @@ -91,6 +91,11 @@ */ +#ifndef MAX_GLUINT +#define MAX_GLUINT 0xffffffff +#endif + + /* * Some code we unfortunately need to prevent negative interpolated colors. */