diff options
author | Vadim Girlin <[email protected]> | 2012-05-23 06:07:00 +0400 |
---|---|---|
committer | Vadim Girlin <[email protected]> | 2012-05-23 06:07:00 +0400 |
commit | c91b4edff978ee19afb4fe38ad69efc52db90691 (patch) | |
tree | 462b900139b979624b4647695eaf556b010cd091 | |
parent | ea8e854b2cefc3f3590b6c19e6108a471be951ba (diff) |
st/mesa: set stObj->lastLevel in guess_and_alloc_texture
Fixes lockups/asserts with depthstencil-render-miplevels tests and r600g.
Should also fix https://bugs.freedesktop.org/show_bug.cgi?id=50033
NOTE: This is a candidate for the 8.0 branch.
Signed-off-by: Vadim Girlin <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
-rw-r--r-- | src/mesa/state_tracker/st_cb_texture.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_cb_texture.c b/src/mesa/state_tracker/st_cb_texture.c index f9c190a68ad..b24f9a1ceff 100644 --- a/src/mesa/state_tracker/st_cb_texture.c +++ b/src/mesa/state_tracker/st_cb_texture.c @@ -400,6 +400,8 @@ guess_and_alloc_texture(struct st_context *st, ptLayers, bindings); + stObj->lastLevel = lastLevel; + DBG("%s returning %d\n", __FUNCTION__, (stObj->pt != NULL)); return stObj->pt != NULL; |