From 3f766b7a89cfb63867857fc3d97f8dca50895981 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Mon, 19 Nov 2001 10:22:41 +0000 Subject: [PATCH] possible fix for cva ignore start index bug --- src/mesa/tnl/t_vb_render.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/tnl/t_vb_render.c b/src/mesa/tnl/t_vb_render.c index 5ad8c3e..372a4c3 100644 --- a/src/mesa/tnl/t_vb_render.c +++ b/src/mesa/tnl/t_vb_render.c @@ -1,4 +1,4 @@ -/* $Id: t_vb_render.c,v 1.22 2001/07/12 22:09:22 keithw Exp $ */ +/* $Id: t_vb_render.c,v 1.23 2001/11/19 10:22:41 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -318,7 +318,7 @@ static GLboolean run_render( GLcontext *ctx, do { GLuint i, length, flags = 0; - for (i = 0 ; !(flags & PRIM_LAST) ; i += length) + for (i = VB->FirstPrimitive ; !(flags & PRIM_LAST) ; i += length) { flags = VB->Primitive[i]; length= VB->PrimitiveLength[i]; -- 2.7.4