diff options
author | Brian Paul <[email protected]> | 2011-09-28 10:37:22 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-09-28 10:39:10 -0600 |
commit | 124fc96ddf2695b4eca1a9b373f33cb993de9f6a (patch) | |
tree | ec860393e0427651a1978a14cf4805c2be4248cd /src/mesa | |
parent | d1e567fb00fbc066e4af9f58f1c106a6b0b5b827 (diff) |
st/mesa: substitute argument to guess_base_level_size() call
stObj->base.BaseLevel and firstImage->base.Level have the same value
but the later looks more consistent in the function call.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/state_tracker/st_cb_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_cb_texture.c b/src/mesa/state_tracker/st_cb_texture.c index 354e58de91d..8df753f7c16 100644 --- a/src/mesa/state_tracker/st_cb_texture.c +++ b/src/mesa/state_tracker/st_cb_texture.c @@ -1707,7 +1707,7 @@ st_finalize_texture(struct gl_context *ctx, firstImage->base.Width2, firstImage->base.Height2, firstImage->base.Depth2, - stObj->base.BaseLevel, + firstImage->base.Level, &width, &height, &depth)) { width = stObj->width0; height = stObj->height0; |