mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 17:20:10 +01:00
i965/mt: Disable HiZ when sharing depth buffer externally (v2)
intel_miptree_make_shareable() discarded and disabled CCS. Fix it so that it discards and disables HiZ too. Fixes dEQP-EGL.functional.image.render_multiple_contexts.gles2_renderbuffer_depth16_depth_buffer on Skylake. v2: Actually do what the commit message says. Discard the HiZ buffer. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=98329 Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Cc: Nanley Chery <nanley.g.chery@intel.com Cc: Haixia Shi <hshi@chromium.org> Cc: mesa-stable@lists.freedesktop.org
This commit is contained in:
parent
1c8be049be
commit
42011be1e2
1 changed files with 22 additions and 7 deletions
|
|
@ -945,6 +945,19 @@ intel_miptree_reference(struct intel_mipmap_tree **dst,
|
|||
*dst = src;
|
||||
}
|
||||
|
||||
static void
|
||||
intel_miptree_hiz_buffer_free(struct intel_miptree_hiz_buffer *hiz_buf)
|
||||
{
|
||||
if (hiz_buf == NULL)
|
||||
return;
|
||||
|
||||
if (hiz_buf->mt)
|
||||
intel_miptree_release(&hiz_buf->mt);
|
||||
else
|
||||
drm_intel_bo_unreference(hiz_buf->aux_base.bo);
|
||||
|
||||
free(hiz_buf);
|
||||
}
|
||||
|
||||
void
|
||||
intel_miptree_release(struct intel_mipmap_tree **mt)
|
||||
|
|
@ -961,13 +974,7 @@ intel_miptree_release(struct intel_mipmap_tree **mt)
|
|||
drm_intel_bo_unreference((*mt)->bo);
|
||||
intel_miptree_release(&(*mt)->stencil_mt);
|
||||
intel_miptree_release(&(*mt)->r8stencil_mt);
|
||||
if ((*mt)->hiz_buf) {
|
||||
if ((*mt)->hiz_buf->mt)
|
||||
intel_miptree_release(&(*mt)->hiz_buf->mt);
|
||||
else
|
||||
drm_intel_bo_unreference((*mt)->hiz_buf->aux_base.bo);
|
||||
free((*mt)->hiz_buf);
|
||||
}
|
||||
intel_miptree_hiz_buffer_free((*mt)->hiz_buf);
|
||||
if ((*mt)->mcs_buf) {
|
||||
drm_intel_bo_unreference((*mt)->mcs_buf->bo);
|
||||
free((*mt)->mcs_buf);
|
||||
|
|
@ -2311,6 +2318,8 @@ intel_miptree_all_slices_resolve_color(struct brw_context *brw,
|
|||
* Fast color clears are unsafe with shared buffers, so we need to resolve and
|
||||
* then discard the MCS buffer, if present. We also set the no_ccs flag to
|
||||
* ensure that no MCS buffer gets allocated in the future.
|
||||
*
|
||||
* HiZ is similarly unsafe with shared buffers.
|
||||
*/
|
||||
void
|
||||
intel_miptree_make_shareable(struct brw_context *brw,
|
||||
|
|
@ -2331,6 +2340,12 @@ intel_miptree_make_shareable(struct brw_context *brw,
|
|||
mt->mcs_buf = NULL;
|
||||
}
|
||||
|
||||
if (mt->hiz_buf) {
|
||||
intel_miptree_all_slices_resolve_depth(brw, mt);
|
||||
intel_miptree_hiz_buffer_free(mt->hiz_buf);
|
||||
mt->hiz_buf = NULL;
|
||||
}
|
||||
|
||||
mt->disable_aux_buffers = true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue