From 51e2ce7df5b566b526babc750a7288eab4ccd4e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cle=CC=81ment=20Foucault?= Date: Wed, 21 Dec 2022 16:03:20 +0100 Subject: [PATCH] Metal: Turn Metal backend build option ON by default This enable building the metal backend by default on Apple hardware. This is needed for further testing and the new backend selector D16774. Ref T96261 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a6683ce40b1..8aa8bffe08f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -593,7 +593,7 @@ mark_as_advanced( # Metal if(APPLE) - option(WITH_METAL_BACKEND "Use Metal for graphics instead of (or as well as) OpenGL on macOS." OFF) + option(WITH_METAL_BACKEND "Use Metal for graphics instead of (or as well as) OpenGL on macOS." ON) mark_as_advanced(WITH_METAL_BACKEND) else() set(WITH_METAL_BACKEND OFF)