Skip to content

Commit a8e96ae

Browse files
committed
Backends: GLFW+Emscripten: Fixed build (#7647)
1 parent 2937339 commit a8e96ae

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

backends/imgui_impl_glfw.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ struct ImGui_ImplGlfw_Data
139139
ImVec2 LastValidMousePos;
140140
bool InstalledCallbacks;
141141
bool CallbacksChainForAllWindows;
142-
#if EMSCRIPTEN_USE_EMBEDDED_GLFW3
142+
#ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
143143
const char* CanvasSelector;
144144
#endif
145145

docs/CHANGELOG.txt

+4
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ Other changes:
6868
- Backends: SDL2,SDL3,OSX: Update for io.SetPlatformImeDataFn() -> io.PlatformSetImeDataFn() rename.
6969
- Backends: GLFW,SDL2: Added io.PlatformOpenInShellFn handler for web/Emscripten versions. (#7660)
7070
[@ypujante, @ocornut]
71+
- Backends; GLFW+Emscripten: Added support for GLFW3 contrib port which fixes many of the things
72+
not supported by the embedded GLFW: gamepad support, mouse cursor shapes, copy to clipboard,
73+
workaround for Super/Meta key, different ways of resizing, multi-window (glfw/canvas) support.
74+
(#7647) [@ypujante]
7175
- Backends: GLFW+Emscripten: Fixed Emscripten warning when using mouse wheel on some setups
7276
"Unable to preventDefault inside passive event listener". (#7647, #7600) [@ypujante]
7377

0 commit comments

Comments
 (0)