diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 93092047f62..6713e778f86 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1152,7 +1152,8 @@ 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", false) && + pdevice->info.verx10 >= 125) { blit_count = intel_engines_count(pdevice->engine_info, INTEL_ENGINE_CLASS_COPY); }