mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 01:00:10 +01:00
semantic in parameter names
This commit is contained in:
parent
d401faf877
commit
9f149bf206
1 changed files with 3 additions and 3 deletions
|
|
@ -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 );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue