[dxvk] Don't skip CPU devices when a device filter is set

This commit is contained in:
WinterSnowfall 2025-02-25 19:59:16 +02:00
parent 13bd234cea
commit ab741e8ba0
No known key found for this signature in database

View file

@ -33,9 +33,7 @@ namespace dxvk {
if (m_flags.test(DxvkDeviceFilterFlag::MatchDeviceName)) {
if (std::string(properties.deviceName).find(m_matchDeviceName) == std::string::npos)
return false;
}
if (m_flags.test(DxvkDeviceFilterFlag::SkipCpuDevices)) {
} else if (m_flags.test(DxvkDeviceFilterFlag::SkipCpuDevices)) {
if (properties.deviceType == VK_PHYSICAL_DEVICE_TYPE_CPU) {
Logger::warn(str::format("Skipping CPU adapter: ", properties.deviceName));
return false;