summaryrefslogtreecommitdiff
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-06-17 11:29:59 -0600
committerKeith Whitwell <keith@tungstengraphics.com>2008-09-21 09:45:41 -0700
commite019ead5d76fd4e6e7d47d23e0284058391e1e29 (patch)
tree9077392202c3984e66ab20e84201e0f3fc547aea /src/mesa/main/dd.h
parent5a46e176715b0eae7b8a715e8aec42f5a27214fc (diff)
mesa: add parenthesis
(cherry picked from commit c366fd83b617db6c8c064802ff4bf120d654507d)
Diffstat (limited to 'src/mesa/main/dd.h')
-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 cd7f54a93b..ddb38030bf 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.