Fix use of uninited value 'flags', removed unused vars.
authorKeith Whitwell <keith@tungstengraphics.com>
Tue, 9 Dec 2003 16:02:43 +0000 (16:02 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Tue, 9 Dec 2003 16:02:43 +0000 (16:02 +0000)
src/mesa/drivers/dri/radeon/radeon_swtcl.c

index b6014cd5fa0e40e6bf2a896f227e33c1666021fc..46ace70c8968ddd45dac3ef80334e04e6adf6efb 100644 (file)
@@ -626,8 +626,8 @@ static GLboolean radeon_run_render( GLcontext *ctx,
    radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    struct vertex_buffer *VB = &tnl->vb;
-   GLuint i, length, flags = 0;
    render_func *tab = TAG(render_tab_verts);
+   GLuint i;
 
    if (rmesa->swtcl.indexed_verts.buf && (!VB->Elts || stage->changed_inputs)) 
       RELEASE_ELT_VERTS();
@@ -661,7 +661,7 @@ static GLboolean radeon_run_render( GLcontext *ctx,
                 start, start+length);
 
       if (length)
-        tab[prim & PRIM_MODE_MASK]( ctx, start, start + length, flags );
+        tab[prim & PRIM_MODE_MASK]( ctx, start, start + length, prim );
    }
 
    tnl->Driver.Render.Finish( ctx );