Skip to content

Commit 6f96eae

Browse files
committed
Address review
1 parent 6621213 commit 6f96eae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ See docs/process.md for more on how version tagging works.
4747
from later enabling "dormant" features if WebGL implementations gain new
4848
WebGL extensions in the future. (#20802)
4949
- Breaking change: Using the `*glGetProcAddress()` family of functions now
50-
requires passing a linker flag -sGL_ENABLE_GET_PROC_ADDRESS=1. This prevents
50+
requires passing a linker flag -sGL_ENABLE_GET_PROC_ADDRESS. This prevents
5151
ports of native GL renderers from later accidentally attempting to activate
5252
"dormant" features if web browser implementations gain new WebGL extensions in
5353
the future. (#20802)

emcc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ def phase_setup(options, state, newargs):
937937

938938
# SDL2 requires eglGetProcAddress() to work.
939939
# NOTE: if SDL2 is updated to not rely on eglGetProcAddress(), this can be removed
940-
if settings.USE_SDL == 2 or settings.USE_SDL_MIXER == 2 or settings.USE_SDL_GFX == 2:
940+
if settings.USE_SDL == 2:
941941
default_setting('GL_ENABLE_GET_PROC_ADDRESS', 1)
942942

943943
return (newargs, input_files)

0 commit comments

Comments
 (0)