semantic in parameter names
authorDaniel Borca <dborca@users.sourceforge.net>
Thu, 6 Jan 2005 14:34:48 +0000 (14:34 +0000)
committerDaniel Borca <dborca@users.sourceforge.net>
Thu, 6 Jan 2005 14:34:48 +0000 (14:34 +0000)
src/mesa/drivers/dri/tdfx/tdfx_vb.c

index 16b947d01c8ac876cb59bee936a7cbfa5df92fd2..0580135d1be3e385eae4333ef432ac5414e3cbcc 100644 (file)
@@ -240,7 +240,7 @@ void tdfxCheckTexSizes( GLcontext *ctx )
 }
 
 
-void tdfxBuildVertices( GLcontext *ctx, GLuint start, GLuint count,
+void tdfxBuildVertices( GLcontext *ctx, GLuint start, GLuint end,
                        GLuint newinputs )
 {
    tdfxContextPtr fxMesa = TDFX_CONTEXT( ctx );
@@ -253,7 +253,7 @@ void tdfxBuildVertices( GLcontext *ctx, GLuint start, GLuint count,
       return;
 
    if (newinputs & VERT_BIT_POS) {
-      setup_tab[fxMesa->SetupIndex].emit( ctx, start, count, v );
+      setup_tab[fxMesa->SetupIndex].emit( ctx, start, end, v );
    } else {
       GLuint ind = 0;
 
@@ -275,7 +275,7 @@ void tdfxBuildVertices( GLcontext *ctx, GLuint start, GLuint count,
       ind &= fxMesa->SetupIndex;
 
       if (ind) {
-        setup_tab[ind].emit( ctx, start, count, v );
+        setup_tab[ind].emit( ctx, start, end, v );
       }
    }
 }