diff options
author | Brian Paul <[email protected]> | 2009-04-09 15:00:54 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-04-09 15:02:48 -0600 |
commit | 311f77198e171e9ce8ddcce91fd6a894fff1f14f (patch) | |
tree | 49ccb8180145ccca61274987e6c41c00fcf06876 /src/mesa | |
parent | 1f4a7f3a2eafd99906105ff74b26ea3ae0f19030 (diff) |
st: remove another unneeded 'is compressed' comparison
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/state_tracker/st_cb_texture.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_cb_texture.c b/src/mesa/state_tracker/st_cb_texture.c index bd023e00183..57c0544ba8b 100644 --- a/src/mesa/state_tracker/st_cb_texture.c +++ b/src/mesa/state_tracker/st_cb_texture.c @@ -1394,8 +1394,9 @@ st_finalize_texture(GLcontext *ctx, stObj->pt->width[0] != firstImage->base.Width2 || stObj->pt->height[0] != firstImage->base.Height2 || stObj->pt->depth[0] != firstImage->base.Depth2 || - stObj->pt->block.size/stObj->pt->block.width != cpp || /* Nominal bytes per pixel */ - stObj->pt->compressed != firstImage->base.IsCompressed) { + /* Nominal bytes per pixel: */ + stObj->pt->block.size / stObj->pt->block.width != cpp) + { pipe_texture_reference(&stObj->pt, NULL); ctx->st->dirty.st |= ST_NEW_FRAMEBUFFER; } |