From 353bd7c8d1eb6ea79301919c2b6828474c2f919d Mon Sep 17 00:00:00 2001 From: Jake Turner Date: Sun, 1 Jan 2017 18:57:30 +0000 Subject: [PATCH] Disable Vulkan driver by default on Apple --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 49455a44c..e24fa1509 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,6 +58,11 @@ if(WIN32) message(FATAL_ERROR "CMake is not needed on Windows, just open and build renderdoc.sln") endif() +if(APPLE) + message(STATUS "Disabling Vulkan driver on apple") + set(ENABLE_VULKAN OFF CACHE BOOL "" FORCE) +endif() + if(ANDROID) message(STATUS "Disabling GL driver on android - no support for EGL/GLES") set(ENABLE_GL OFF CACHE BOOL "" FORCE)