summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2001-03-05 19:54:03 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2001-03-05 19:54:03 +0000
commit89700a4abdf0eaa1da80fc9e0c1f856c39a1a9a4 (patch)
tree99ea6dcc655f70c5324f9246943d8fb042084a12 /src
parent0ceb82b83843735437a994337d6f743f0460d7cb (diff)
DO_POINT renamed DO_POINTS
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/common/t_dd_tritmp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/common/t_dd_tritmp.h b/src/mesa/drivers/common/t_dd_tritmp.h
index 0608fd9695..b3ab9f612f 100644
--- a/src/mesa/drivers/common/t_dd_tritmp.h
+++ b/src/mesa/drivers/common/t_dd_tritmp.h
@@ -637,7 +637,7 @@ static void TAG(line)( GLcontext *ctx, GLuint e0, GLuint e1 )
}
#endif
-#if DO_POINT
+#if DO_POINTS
static void TAG(points)( GLcontext *ctx, GLuint first, GLuint last )
{
struct vertex_buffer *VB = &TNL_CONTEXT( ctx )->vb;
@@ -674,7 +674,7 @@ static void TAG(init)( void )
#if DO_LINE
TAB[IND].line = TAG(line);
#endif
-#if DO_POINT
+#if DO_POINTS
TAB[IND].points = TAG(points);
#endif
}