[iOS] Restore OpenGLES3 renderer support.

This commit is contained in:
bruvzg 2023-01-21 00:20:30 +02:00
parent cd031fd31a
commit 1cc5524b81
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38
9 changed files with 84 additions and 42 deletions

View file

@ -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"])