mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Disable Vulkan/MoltenVK on x64 macs
Keep getting reports of radeon and intel GPUs that don't work with Vulkan.
This commit is contained in:
parent
768174e19c
commit
f9c31072d2
@ -294,6 +294,10 @@ static VulkanLibraryHandle VulkanLoadLibrary(std::string *errorString) {
|
||||
return nullptr;
|
||||
#elif PPSSPP_PLATFORM(UWP)
|
||||
return nullptr;
|
||||
#elif PPSSPP_PLATFORM(MACOS) && PPSSPP_ARCH(AMD64)
|
||||
// Disable Vulkan on Mac/x86. Too many configurations that don't work with MoltenVK
|
||||
// for whatever reason.
|
||||
return nullptr;
|
||||
#elif PPSSPP_PLATFORM(WINDOWS)
|
||||
return LoadLibrary(L"vulkan-1.dll");
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user