s/DBG/DRAW_DBG
authorBrian <brian.paul@tungstengraphics.com>
Wed, 16 Jan 2008 17:57:10 +0000 (10:57 -0700)
committerBrian <brian.paul@tungstengraphics.com>
Wed, 16 Jan 2008 17:57:10 +0000 (10:57 -0700)
src/mesa/pipe/draw/draw_vertex_fetch.c

index 7d983eb..3ca17f8 100644 (file)
@@ -37,7 +37,7 @@
 #include "draw_vertex.h"
 
 
-#define DBG 0
+#define DRAW_DBG 0
 
 
 /**
@@ -107,7 +107,7 @@ void draw_vertex_fetch( struct draw_context *draw,
    for (j = 0; j < count; j++) {
       uint attr;
 
-#if DBG
+#if DRAW_DBG
       printf("fetch vertex %u: \n", j);
 #endif
 
@@ -124,7 +124,7 @@ void draw_vertex_fetch( struct draw_context *draw,
 
          fetch_attrib4(src, draw->vertex_element[attr].src_format, p);
 
-#if DBG
+#if DRAW_DBG
          printf("  %u: %f %f %f %f\n", attr, p[0], p[1], p[2], p[3]);
 #endif