diff options
author | Roland Scheidegger <[email protected]> | 2005-10-05 12:38:07 +0000 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2005-10-05 12:38:07 +0000 |
commit | 11f763f5057490477a2771febe8923682f6a5ada (patch) | |
tree | cb1db3befe32e428c379a78409b3109853792d69 /src/mesa/drivers/dri/radeon/radeon_maos_arrays.c | |
parent | a3c8de2fa7fba22647e5b3e8cfb05c85d1a5a980 (diff) |
remove unneeded parameter from radeonUploadTexMatrix.
Diffstat (limited to 'src/mesa/drivers/dri/radeon/radeon_maos_arrays.c')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_maos_arrays.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c b/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c index b5c6f12248c..b2cd90c8693 100644 --- a/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c +++ b/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c @@ -550,7 +550,7 @@ void radeonEmitArrays( GLcontext *ctx, GLuint inputs ) GLuint swaptexmatcol = (VB->TexCoordPtr[0]->size - 3); if ((rmesa->NeedTexMatrix & 1) && (swaptexmatcol != (rmesa->TexMatColSwap & 1))) - radeonUploadTexMatrix( rmesa, rmesa->tmpmat[0].m, 0, swaptexmatcol ) ; + radeonUploadTexMatrix( rmesa, 0, swaptexmatcol ) ; } component[nr++] = &rmesa->tcl.tex[0]; } @@ -575,7 +575,7 @@ void radeonEmitArrays( GLcontext *ctx, GLuint inputs ) GLuint swaptexmatcol = (VB->TexCoordPtr[1]->size - 3); if (((rmesa->NeedTexMatrix >> 1) & 1) && (swaptexmatcol != ((rmesa->TexMatColSwap >> 1) & 1))) - radeonUploadTexMatrix( rmesa, rmesa->tmpmat[1].m, 1, swaptexmatcol ) ; + radeonUploadTexMatrix( rmesa, 1, swaptexmatcol ) ; } component[nr++] = &rmesa->tcl.tex[1]; } |