summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-06-17 11:29:59 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-06-18 09:22:00 -0600
commitc366fd83b617db6c8c064802ff4bf120d654507d (patch)
tree23201609ebb341221b0e3f9338e930597837dc93 /src
parent666b771e512a7c91fa43544afec61bda63edc240 (diff)
mesa: add parenthesis
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/dd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index 37ef2a865b..a24021c63f 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -912,9 +912,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.