gallium: move the vertex print/debug code

This commit is contained in:
Brian Paul
2008-04-22 16:15:49 -06:00
parent 8f4f89c043
commit 465bc9473a
+6 -8
View File
@@ -299,13 +299,6 @@ static boolean setup_sort_vertices( struct setup_context *setup,
const float (*v1)[4],
const float (*v2)[4] )
{
#if DEBUG_VERTS
debug_printf("Triangle:\n");
print_vertex(setup, v0);
print_vertex(setup, v1);
print_vertex(setup, v2);
#endif
setup->vprovoke = v2;
/* determine bottom to top order of vertices */
@@ -738,7 +731,12 @@ void setup_tri( struct setup_context *setup,
setup->numFragsWritten = 0;
#endif
#if DEBUG_VERTS
debug_printf("Triangle:\n");
print_vertex(setup, v0);
print_vertex(setup, v1);
print_vertex(setup, v2);
#endif
if (cull_tri( setup, det ))
return;