From 2ac78b50966af7c0ae7f3bfac7af45a392c02f9a Mon Sep 17 00:00:00 2001 From: Sagar Ghuge Date: Thu, 14 Dec 2023 10:51:00 -0800 Subject: [PATCH] anv: Enable blitter engine unconditionally on ACM+ Signed-off-by: Sagar Ghuge Reviewed-by: Lionel Landwerlin Part-of: --- 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");