DO_POINT renamed DO_POINTS
authorKeith Whitwell <keith@tungstengraphics.com>
Mon, 5 Mar 2001 19:54:03 +0000 (19:54 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Mon, 5 Mar 2001 19:54:03 +0000 (19:54 +0000)
src/mesa/drivers/common/t_dd_tritmp.h

index 0608fd9..b3ab9f6 100644 (file)
@@ -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
 }