summaryrefslogtreecommitdiffstats
path: root/platform/macos/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-01-23 10:24:51 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-01-23 10:24:51 +0100
commit59dce77d4f055b6211c5832cbd0ee14af4deefea (patch)
treec7c4e2ae82282f89a1d9b1cf4215f99c188026ed /platform/macos/detect.py
parentdb23d7a47ccc0e2b7bc2126bff540ee277c17480 (diff)
parent1cc5524b81dbc699a9eeb302ca9792377f8352c7 (diff)
downloadredot-engine-59dce77d4f055b6211c5832cbd0ee14af4deefea.tar.gz
Merge pull request #71848 from bruvzg/ios_gles
[iOS] Restore OpenGLES3 renderer support.
Diffstat (limited to 'platform/macos/detect.py')
-rw-r--r--platform/macos/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/macos/detect.py b/platform/macos/detect.py
index 14e6e92bfa..cd46dab4f3 100644
--- a/platform/macos/detect.py
+++ b/platform/macos/detect.py
@@ -230,7 +230,7 @@ def configure(env: "Environment"):
env.Append(LIBS=["pthread", "z"])
if env["opengl3"]:
- env.Append(CPPDEFINES=["GLES_ENABLED", "GLES3_ENABLED"])
+ env.Append(CPPDEFINES=["GLES3_ENABLED"])
env.Append(LINKFLAGS=["-framework", "OpenGL"])
env.Append(LINKFLAGS=["-rpath", "@executable_path/../Frameworks", "-rpath", "@executable_path"])