From: Jason Ekstrand Date: Mon, 10 Oct 2016 16:29:34 +0000 (-0700) Subject: intel/blorp: Set QPitch for depth and HiZ on gen8+ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0414aaa1339f26bffef3852ea1030c339dded314;p=mesa.git intel/blorp: Set QPitch for depth and HiZ on gen8+ --- diff --git a/src/intel/blorp/blorp_genX_exec.h b/src/intel/blorp/blorp_genX_exec.h index 85fb7549f80..889e74c9ca1 100644 --- a/src/intel/blorp/blorp_genX_exec.h +++ b/src/intel/blorp/blorp_genX_exec.h @@ -780,6 +780,11 @@ blorp_emit_depth_stencil_config(struct blorp_batch *batch, db.MinimumArrayElement = params->depth.view.base_array_layer; db.SurfacePitch = params->depth.surf.row_pitch - 1; +#if GEN_GEN >= 8 + db.SurfaceQPitch = + isl_surf_get_array_pitch_el_rows(¶ms->depth.surf) >> 2, +#endif + db.SurfaceBaseAddress = params->depth.addr; db.DepthBufferMOCS = mocs; } else { @@ -804,6 +809,10 @@ blorp_emit_depth_stencil_config(struct blorp_batch *batch, hiz.SurfacePitch = params->depth.aux_surf.row_pitch - 1; hiz.SurfaceBaseAddress = params->depth.aux_addr; hiz.HierarchicalDepthBufferMOCS = mocs; +#if GEN_GEN >= 8 + hiz.SurfaceQPitch = + isl_surf_get_array_pitch_sa_rows(¶ms->depth.aux_surf) >> 2; +#endif } }