diff options
author | Felix Kuehling <[email protected]> | 2004-03-04 22:11:38 +0000 |
---|---|---|
committer | Felix Kuehling <[email protected]> | 2004-03-04 22:11:38 +0000 |
commit | 2c8dacea5fa52e793bc594c97f6bc730459f915d (patch) | |
tree | 8e98c4a6c400b6031099d435e4a2cd42f75c2b73 | |
parent | 9b71f621d1e242c798c90062e06c49221f34c2b1 (diff) |
Small texture management fixes. Should get rid of assertions some people were getting in savageBindTexture.
-rw-r--r-- | src/mesa/drivers/dri/savage/savagetex.c | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/src/mesa/drivers/dri/savage/savagetex.c b/src/mesa/drivers/dri/savage/savagetex.c index ee2e403061c..e2a28ae50ae 100644 --- a/src/mesa/drivers/dri/savage/savagetex.c +++ b/src/mesa/drivers/dri/savage/savagetex.c @@ -702,7 +702,6 @@ static void savageSetTexImages( savageContextPtr imesa, log_pitch++; t->dirty_images = 0; - t->bound = 0; offset = 0; for ( i = 0 ; i < SAVAGE_TEX_MAXLEVELS && tObj->Image[0][i] ; i++ ) { @@ -737,9 +736,6 @@ void savageDestroyTexObj(savageContextPtr imesa, savageTextureObjectPtr t) if (t->globj) t->globj->DriverData = 0; - if (t->bound) - imesa->CurrentTexObj[t->bound - 1] = 0; - remove_from_list(t); free(t); } @@ -1057,7 +1053,7 @@ static void savageUpdateTex0State_s4( GLcontext *ctx ) savageTexSetUnit( t, 0 ); imesa->CurrentTexObj[0] = t; - t->bound = 1; + t->bound |= 1; if (t->dirty_images) { savageSetTexImages(imesa, tObj); @@ -1349,7 +1345,7 @@ static void savageUpdateTex1State_s4( GLcontext *ctx ) imesa->CurrentTexObj[1] = t; - t->bound = 2; + t->bound |= 2; if (t->dirty_images) { savageSetTexImages(imesa, tObj); @@ -1561,7 +1557,7 @@ static void savageUpdateTexState_s3d( GLcontext *ctx ) savageTexSetUnit( t, 0 ); imesa->CurrentTexObj[0] = t; - t->bound = 1; + t->bound |= 1; if (t->dirty_images) { savageSetTexImages(imesa, tObj); @@ -1668,8 +1664,8 @@ static void savageUpdateTexState_s3d( GLcontext *ctx ) static void savageUpdateTextureState_s4( GLcontext *ctx ) { savageContextPtr imesa = SAVAGE_CONTEXT(ctx); - if (imesa->CurrentTexObj[0]) imesa->CurrentTexObj[0]->bound = 0; - if (imesa->CurrentTexObj[1]) imesa->CurrentTexObj[1]->bound = 0; + if (imesa->CurrentTexObj[0]) imesa->CurrentTexObj[0]->bound &= ~1; + if (imesa->CurrentTexObj[1]) imesa->CurrentTexObj[1]->bound &= ~2; imesa->CurrentTexObj[0] = 0; imesa->CurrentTexObj[1] = 0; FALLBACK (ctx, SAVAGE_FALLBACK_TEXTURE, GL_FALSE); @@ -1682,7 +1678,7 @@ static void savageUpdateTextureState_s4( GLcontext *ctx ) static void savageUpdateTextureState_s3d( GLcontext *ctx ) { savageContextPtr imesa = SAVAGE_CONTEXT(ctx); - if (imesa->CurrentTexObj[0]) imesa->CurrentTexObj[0]->bound = 0; + if (imesa->CurrentTexObj[0]) imesa->CurrentTexObj[0]->bound &= ~1; imesa->CurrentTexObj[0] = 0; if (ctx->Texture.Unit[1]._ReallyEnabled) { FALLBACK (ctx, SAVAGE_FALLBACK_TEXTURE, GL_TRUE); @@ -1838,12 +1834,6 @@ static void savageBindTexture( GLcontext *ctx, GLenum target, { savageContextPtr imesa = SAVAGE_CONTEXT( ctx ); - - if (imesa->CurrentTexObj[ctx->Texture.CurrentUnit]) { - imesa->CurrentTexObj[ctx->Texture.CurrentUnit]->bound = 0; - imesa->CurrentTexObj[ctx->Texture.CurrentUnit] = 0; - } - assert( (target != GL_TEXTURE_2D) || (tObj->DriverData != NULL) ); imesa->new_state |= SAVAGE_NEW_TEXTURE; |