From: Brian Paul Date: Tue, 17 Jun 2008 17:29:59 +0000 (-0600) Subject: mesa: add parenthesis X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e019ead5d76fd4e6e7d47d23e0284058391e1e29;p=mesa.git mesa: add parenthesis (cherry picked from commit c366fd83b617db6c8c064802ff4bf120d654507d) --- diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index cd7f54a93b4..ddb38030bf7 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -919,9 +919,9 @@ struct dd_function_table { void (*ValidateTnlModule)( GLcontext *ctx, GLuint new_state ); -#define PRIM_OUTSIDE_BEGIN_END GL_POLYGON+1 -#define PRIM_INSIDE_UNKNOWN_PRIM GL_POLYGON+2 -#define PRIM_UNKNOWN GL_POLYGON+3 +#define PRIM_OUTSIDE_BEGIN_END (GL_POLYGON+1) +#define PRIM_INSIDE_UNKNOWN_PRIM (GL_POLYGON+2) +#define PRIM_UNKNOWN (GL_POLYGON+3) /** * Set by the driver-supplied T&L engine.