aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_tex_layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_tex_layout.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_tex_layout.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_tex_layout.c b/src/mesa/drivers/dri/i965/brw_tex_layout.c
index 1f0a1e9a38d..fd774f42c83 100644
--- a/src/mesa/drivers/dri/i965/brw_tex_layout.c
+++ b/src/mesa/drivers/dri/i965/brw_tex_layout.c
@@ -272,7 +272,9 @@ brw_miptree_layout_gen6_hiz_stencil(struct intel_mipmap_tree *mt)
mt->total_height = 0;
for (unsigned level = mt->first_level; level <= mt->last_level; level++) {
- intel_miptree_set_level_info(mt, level, x, y, depth);
+ intel_miptree_set_level_info(
+ mt, level, x, y,
+ mt->target == GL_TEXTURE_3D ? minify(depth, level) : depth);
const unsigned img_width = ALIGN(DIV_ROUND_UP(width, bw), mt->halign);
const unsigned img_height =