diff --git a/src/dawn/native/metal/BackendMTL.mm b/src/dawn/native/metal/BackendMTL.mm index 180baaa47b..aaf40e4d0e 100644 --- a/src/dawn/native/metal/BackendMTL.mm +++ b/src/dawn/native/metal/BackendMTL.mm @@ -475,6 +475,9 @@ class PhysicalDevice : public PhysicalDeviceBase { if (gpu_info::IsIntelGen7(vendorId, deviceId)) { return true; } + if (gpu_info::IsIntelGen11(vendorId, deviceId)) { + return true; + } if (gpu_info::IsIntel(vendorId) && !IsMacOSVersionAtLeast(11)) { return true; }