diff options
author | Daniel Borca <[email protected]> | 2005-01-06 14:34:48 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2005-01-06 14:34:48 +0000 |
commit | 9f149bf2068c8897497d2b795006ae7334cfc3f6 (patch) | |
tree | d8deeccdb7cea2215d8a53569a876b53de486838 /src | |
parent | d401faf877f0b6e98b179e1e1d0bb83cfdf4a9fb (diff) |
semantic in parameter names
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/tdfx/tdfx_vb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/tdfx/tdfx_vb.c b/src/mesa/drivers/dri/tdfx/tdfx_vb.c index 16b947d01c8..0580135d1be 100644 --- a/src/mesa/drivers/dri/tdfx/tdfx_vb.c +++ b/src/mesa/drivers/dri/tdfx/tdfx_vb.c @@ -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 ); } } } |