MTLUtil: Remove availability check for macOS 11

This commit is contained in:
OatmealDome 2025-04-01 15:17:22 -04:00
parent 0f18cb221f
commit 6db2173822

View file

@ -324,9 +324,8 @@ void Metal::Util::PopulateBackendInfoFeatures(const VideoConfig& config, Backend
}
}
#if TARGET_OS_OSX
if (@available(macOS 11, *))
if (vendor == DriverDetails::VENDOR_INTEL)
backend_info->bSupportsFramebufferFetch |= DetectIntelGPUFBFetch(device);
if (vendor == DriverDetails::VENDOR_INTEL)
backend_info->bSupportsFramebufferFetch |= DetectIntelGPUFBFetch(device);
#endif
if (DriverDetails::HasBug(DriverDetails::BUG_BROKEN_DYNAMIC_SAMPLER_INDEXING))
backend_info->bSupportsDynamicSamplerIndexing = false;