diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 2caa994249e..a2b87e091f0 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -3936,7 +3936,7 @@ anv_can_sample_mcs_with_clear(const struct intel_device_info * const devinfo, * See HSD 1707282275, wa_14013111325. Due to the use of * format-reinterpretation, a simplified workaround is implemented. */ - if (devinfo->ver >= 12 && + if (intel_needs_workaround(devinfo, 14013111325) && isl_format_get_layout(anv_surf->isl.format)->bpb <= 16) { return false; }