Module: Mesa Branch: main Commit: 2ac78b50966af7c0ae7f3bfac7af45a392c02f9a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2ac78b50966af7c0ae7f3bfac7af45a392c02f9a
Author: Sagar Ghuge <[email protected]> Date: Thu Dec 14 10:51:00 2023 -0800 anv: Enable blitter engine unconditionally on ACM+ Signed-off-by: Sagar Ghuge <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26703> --- src/intel/vulkan/anv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index c3b428d55a7..80bb62977a4 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -2012,7 +2012,7 @@ anv_physical_device_init_queue_families(struct anv_physical_device *pdevice) c_count < 1 ? INTEL_ENGINE_CLASS_RENDER : INTEL_ENGINE_CLASS_COMPUTE; int blit_count = 0; - if (debug_get_bool_option("INTEL_COPY_CLASS", false) && + if (debug_get_bool_option("INTEL_COPY_CLASS", true) && pdevice->info.verx10 >= 125) { if (!can_use_non_render_engines) mesa_logw("cannot initialize blitter engine");
