From 70130333c257e1780ea7b4e95bda030586d74688 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Sun, 23 Feb 2003 19:27:03 +0000 Subject: [PATCH] Use correct pv for flatshaded quadstrips --- src/mesa/drivers/dri/radeon/radeon_subset_vtx.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/mesa/drivers/dri/radeon/radeon_subset_vtx.c b/src/mesa/drivers/dri/radeon/radeon_subset_vtx.c index 82419d63628..9016b9514fe 100644 --- a/src/mesa/drivers/dri/radeon/radeon_subset_vtx.c +++ b/src/mesa/drivers/dri/radeon/radeon_subset_vtx.c @@ -48,7 +48,6 @@ #include "radeon_context.h" #include "radeon_state.h" #include "radeon_ioctl.h" -#include "radeon_tex.h" #include "radeon_subset.h" @@ -301,8 +300,6 @@ static void notify_wrap_buffer( void ) GLfloat tmp[3][MAX_VERTEX_DWORDS]; GLuint i, nrverts = 0; - fprintf(stderr, "%s\n", __FUNCTION__); - /* Copy vertices out of dma: */ nrverts = copy_dma_verts( rmesa, tmp ); @@ -450,7 +447,7 @@ static void notify_qstrip0( void ) static void notify_qstrip1( void ) { pop_notify(); - emit_quad( 1, 0, 2, 3 ); + emit_quad( 2, 3, 1, 0 ); push_notify( notify_qstrip0, 2, vb.vertex_store + 2*vb.vertex_size ); }