From 4e57f295b71f050318ea75109ebd4883da4c9037 Mon Sep 17 00:00:00 2001 From: baldurk Date: Sat, 7 Jul 2018 00:38:14 +0100 Subject: [PATCH] Disable GLES support on mac --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bf2e2510f..a4077ce82 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -141,8 +141,9 @@ set(RENDERDOC_VERSION "${RENDERDOC_VERSION_MAJOR}.${RENDERDOC_VERSION_MINOR}") message(STATUS "Building RenderDoc version ${RENDERDOC_VERSION}") if(APPLE) - message(STATUS "Disabling Vulkan driver on apple") + message(STATUS "Disabling Vulkan and GLES drivers on apple") set(ENABLE_VULKAN OFF CACHE BOOL "" FORCE) + set(ENABLE_GLES OFF CACHE BOOL "" FORCE) endif() if(ANDROID)