mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
iOS: Default to the Vulkan backend
This commit is contained in:
@@ -448,13 +448,18 @@ static int DefaultGPUBackend() {
|
||||
return (int)GPUBackend::VULKAN;
|
||||
}
|
||||
#endif
|
||||
|
||||
#elif PPSSPP_PLATFORM(MAC)
|
||||
|
||||
#if PPSSPP_ARCH(ARM64)
|
||||
return (int)GPUBackend::VULKAN;
|
||||
#else
|
||||
// On Intel (generally older Macs) default to OpenGL.
|
||||
return (int)GPUBackend::OPENGL;
|
||||
#endif
|
||||
|
||||
#elif PPSSPP_PLATFORM(IOS_APP_STORE)
|
||||
return (int)GPUBackend::VULKAN;
|
||||
#endif
|
||||
|
||||
// TODO: On some additional Linux platforms, we should also default to Vulkan.
|
||||
|
||||
Reference in New Issue
Block a user