Turn off gles by default for apple
This commit is contained in:
parent
4505e758f0
commit
1ce1e1f6be
1 changed files with 5 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue