mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
anv: fix Wa_14024015672 interaction in blorp
This was causing issue within hiz clears, apply workaround only
when doing RT writes (not for WM_HZ ops).
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/work_items/14533
Fixes: 7be8af1dad ("anv: deal with Wa 14024015672 on the blorp path")
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40913>
This commit is contained in:
parent
f3ce8fe90b
commit
745dc66b69
1 changed files with 2 additions and 2 deletions
|
|
@ -309,10 +309,10 @@ blorp_exec_on_render(struct blorp_batch *batch,
|
|||
* key.
|
||||
*/
|
||||
#if INTEL_WA_14024015672_GFX_VER
|
||||
genX(cmd_buffer_rhwo_wa_14024015672)(cmd_buffer, params->num_samples > 1);
|
||||
if (blorp_uses_bti_rt_writes(batch, params))
|
||||
genX(cmd_buffer_rhwo_wa_14024015672)(cmd_buffer, params->num_samples > 1);
|
||||
#endif
|
||||
|
||||
|
||||
#if GFX_VER >= 11
|
||||
/* The PIPE_CONTROL command description says:
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue