Fix emscripten 3.1.51 breaking change about `*glGetProcAddress()`

This commit is contained in:
Adam Scott 2024-02-05 11:42:28 -05:00
parent f8f2c8c85a
commit 5922ac0fb1
No known key found for this signature in database
GPG Key ID: 1352C2919D96DDDF
1 changed files with 5 additions and 0 deletions

View File

@ -206,6 +206,11 @@ def configure(env: "Environment"):
env.Append(LINKFLAGS=["-s", "USE_WEBGL2=1"])
# Allow use to take control of swapping WebGL buffers.
env.Append(LINKFLAGS=["-s", "OFFSCREEN_FRAMEBUFFER=1"])
# Breaking change since emscripten 3.1.51
# https://github.com/emscripten-core/emscripten/blob/main/ChangeLog.md#3151---121323
if cc_semver >= (3, 1, 51):
# Enables the use of *glGetProcAddress()
env.Append(LINKFLAGS=["-s", "GL_ENABLE_GET_PROC_ADDRESS=1"])
if env["javascript_eval"]:
env.Append(CPPDEFINES=["JAVASCRIPT_EVAL_ENABLED"])