Turn off gles by default for apple

This commit is contained in:
Marcus Minhorst 2025-09-22 22:41:51 -04:00 committed by Rachael Alexanderson
commit 1ce1e1f6be

View file

@ -232,7 +232,11 @@ if( ${TARGET_ARCHITECTURE} MATCHES "x86_64" )
endif()
option (HAVE_VULKAN "Enable Vulkan support" ON)
option (HAVE_GLES2 "Enable GLES2 support" ON)
if( APPLE )
option (HAVE_GLES2 "Enable GLES2 support" OFF)
else()
option (HAVE_GLES2 "Enable GLES2 support" ON)
endif()
# no, we're not using external asmjit for now, we made too many modifications to our's.
# if the asmjit author uses our changes then we'll update this.