From 673f1963a068fb7d5cd8af9bb209c7633950e8f8 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Thu, 31 May 2018 04:23:45 -0700 Subject: Vulkan: Support macOS via MoltenVK The path to the MoltenVK library can be specified by the LIBMOLTENVK_PATH environment variable, otherwise it assumes it is located in the application bundle's Contents/MacOS directory. --- Source/Core/VideoCommon/VideoBackendBase.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Source/Core/VideoCommon/VideoBackendBase.cpp') diff --git a/Source/Core/VideoCommon/VideoBackendBase.cpp b/Source/Core/VideoCommon/VideoBackendBase.cpp index 725857a85d..fd6bbdfa2b 100644 --- a/Source/Core/VideoCommon/VideoBackendBase.cpp +++ b/Source/Core/VideoCommon/VideoBackendBase.cpp @@ -25,9 +25,7 @@ #include "VideoBackends/Null/VideoBackend.h" #include "VideoBackends/OGL/VideoBackend.h" #include "VideoBackends/Software/VideoBackend.h" -#ifndef __APPLE__ #include "VideoBackends/Vulkan/VideoBackend.h" -#endif #include "VideoCommon/AsyncRequests.h" #include "VideoCommon/BPStructs.h" @@ -187,9 +185,7 @@ void VideoBackendBase::PopulateList() #ifdef _WIN32 g_available_video_backends.push_back(std::make_unique()); #endif -#ifndef __APPLE__ g_available_video_backends.push_back(std::make_unique()); -#endif g_available_video_backends.push_back(std::make_unique()); g_available_video_backends.push_back(std::make_unique()); -- cgit v1.2.3