anv: hand over ANV_PIPE_RT_BTI_CHANGE to pipe control
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

There are issues when using resource barrier for this.

Fixes: 24e9afb0b7 ("anv: implement resource barrier emissions")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/14533
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/39132>
This commit is contained in:
Tapani Pälli 2025-12-29 10:15:06 +02:00 committed by Marge Bot
parent ee5e6245ce
commit 4b2b824112

View file

@ -1964,6 +1964,12 @@ can_use_resource_barrier(const struct intel_device_info *devinfo,
ANV_PIPE_CS_STALL_BIT))
return false;
/* There are issues with resource barrier and ANV_PIPE_RT_BTI_CHANGE,
* see https://gitlab.freedesktop.org/mesa/mesa/-/issues/14533
*/
if (bits & ANV_PIPE_RT_BTI_CHANGE)
return false;
return true;
}