From f301ebf780efc6216e6548d7985a153cc986bab4 Mon Sep 17 00:00:00 2001 From: Michael Maltese Date: Thu, 6 Oct 2016 16:47:03 -0700 Subject: Don't build Vulkan video backend on macOS There's no official implementation of the Vulkan API, and Dolphin currently isn't set-up to work with the single, commercially-available third-party implementation. --- Source/Core/VideoCommon/VideoBackendBase.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Source/Core/VideoCommon/VideoBackendBase.cpp') diff --git a/Source/Core/VideoCommon/VideoBackendBase.cpp b/Source/Core/VideoCommon/VideoBackendBase.cpp index 3e07f66eb8..4daac1b194 100644 --- a/Source/Core/VideoCommon/VideoBackendBase.cpp +++ b/Source/Core/VideoCommon/VideoBackendBase.cpp @@ -15,7 +15,9 @@ #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/VideoBackendBase.h" @@ -49,7 +51,9 @@ void VideoBackendBase::PopulateList() 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