Skip to content

Commit dad1047

Browse files
committed
Backends: Win32: Fixed a crash when multiple processes are running with multi-viewports, caused by misusage of GetProp(). (#8162, #8069)
Amend fedf45c
1 parent cdf21f6 commit dad1047

File tree

4 files changed

+32
-14
lines changed

4 files changed

+32
-14
lines changed

backends/imgui_impl_win32.cpp

+19-13
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
// CHANGELOG
2424
// (minor and older changes stripped away, please see git history for details)
2525
// 2024-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
26+
// 2024-11-21: [Docking] Fixed a crash when multiple processes are running with multi-viewports, caused by misusage of GetProp(). (#8162, #8069)
2627
// 2024-10-28: [Docking] Rely on property stored inside HWND to retrieve context/viewport, should facilitate attempt to use this for parallel contexts. (#8069)
2728
// 2024-09-16: [Docking] Inputs: fixed an issue where a viewport destroyed while clicking would hog mouse tracking and temporary lead to incorrect update of HoveredWindow. (#7971)
2829
// 2024-07-08: Inputs: Fixed ImGuiMod_Super being mapped to VK_APPS instead of VK_LWIN||VK_RWIN. (#7768)
@@ -192,8 +193,10 @@ static bool ImGui_ImplWin32_InitEx(void* hwnd, bool platform_has_own_dc)
192193
// Our mouse update function expect PlatformHandle to be filled for the main viewport
193194
ImGuiViewport* main_viewport = ImGui::GetMainViewport();
194195
main_viewport->PlatformHandle = main_viewport->PlatformHandleRaw = (void*)bd->hWnd;
196+
197+
// Be aware that GetPropA()/SetPropA() may be accessed from other processes.
198+
// So as we store a pointer in IMGUI_CONTEXT we need to make sure we only call GetPropA() on windows owned by our process.
195199
::SetPropA(bd->hWnd, "IMGUI_CONTEXT", ImGui::GetCurrentContext());
196-
::SetPropA(bd->hWnd, "IMGUI_VIEWPORT", main_viewport);
197200
ImGui_ImplWin32_InitMultiViewportSupport(platform_has_own_dc);
198201

199202
// Dynamically load XInput library
@@ -238,7 +241,6 @@ void ImGui_ImplWin32_Shutdown()
238241
ImGuiIO& io = ImGui::GetIO();
239242

240243
::SetPropA(bd->hWnd, "IMGUI_CONTEXT", nullptr);
241-
::SetPropA(bd->hWnd, "IMGUI_VIEWPORT", nullptr);
242244
ImGui_ImplWin32_ShutdownMultiViewportSupport();
243245

244246
// Unload XInput library
@@ -319,17 +321,20 @@ static void ImGui_ImplWin32_UpdateKeyModifiers(ImGuiIO& io)
319321
io.AddKeyEvent(ImGuiMod_Super, IsVkDown(VK_LWIN) || IsVkDown(VK_RWIN));
320322
}
321323

322-
static ImGuiViewport* ImGui_ImplWin32_FindViewportByPlatformHandle(HWND hwnd)
324+
static ImGuiViewport* ImGui_ImplWin32_FindViewportByPlatformHandle(ImGuiPlatformIO& platform_io, HWND hwnd)
323325
{
324-
// We could use ImGui::FindViewportByPlatformHandle() but GetPropA() gets us closer to parallel multi-contexts,
325-
// until we can pass an explicit context to FindViewportByPlatformHandle().
326+
// We cannot use ImGui::FindViewportByPlatformHandle() because it doesn't take a context.
327+
// When called from ImGui_ImplWin32_WndProcHandler_PlatformWindow() we don't assume that context is bound.
326328
//return ImGui::FindViewportByPlatformHandle((void*)hwnd);
327-
return (ImGuiViewport*)::GetPropA(hwnd, "IMGUI_VIEWPORT");
329+
for (ImGuiViewport* viewport : platform_io.Viewports)
330+
if (viewport->PlatformHandle == hwnd)
331+
return viewport;
332+
return nullptr;
328333
}
329334

330335
// This code supports multi-viewports (multiple OS Windows mapped into different Dear ImGui viewports)
331336
// Because of that, it is a little more complicated than your typical single-viewport binding code!
332-
static void ImGui_ImplWin32_UpdateMouseData(ImGuiIO& io)
337+
static void ImGui_ImplWin32_UpdateMouseData(ImGuiIO& io, ImGuiPlatformIO& platform_io)
333338
{
334339
ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(io);
335340
IM_ASSERT(bd->hWnd != 0);
@@ -338,7 +343,7 @@ static void ImGui_ImplWin32_UpdateMouseData(ImGuiIO& io)
338343
bool has_mouse_screen_pos = ::GetCursorPos(&mouse_screen_pos) != 0;
339344

340345
HWND focused_window = ::GetForegroundWindow();
341-
const bool is_app_focused = (focused_window && (focused_window == bd->hWnd || ::IsChild(focused_window, bd->hWnd) || ImGui_ImplWin32_FindViewportByPlatformHandle(focused_window)));
346+
const bool is_app_focused = (focused_window && (focused_window == bd->hWnd || ::IsChild(focused_window, bd->hWnd) || ImGui_ImplWin32_FindViewportByPlatformHandle(platform_io, focused_window)));
342347
if (is_app_focused)
343348
{
344349
// (Optional) Set OS mouse position from Dear ImGui if requested (rarely used, only when io.ConfigNavMoveSetMousePos is enabled by user)
@@ -376,7 +381,7 @@ static void ImGui_ImplWin32_UpdateMouseData(ImGuiIO& io)
376381
ImGuiID mouse_viewport_id = 0;
377382
if (has_mouse_screen_pos)
378383
if (HWND hovered_hwnd = ::WindowFromPoint(mouse_screen_pos))
379-
if (ImGuiViewport* viewport = ImGui_ImplWin32_FindViewportByPlatformHandle(hovered_hwnd))
384+
if (ImGuiViewport* viewport = ImGui_ImplWin32_FindViewportByPlatformHandle(platform_io, hovered_hwnd))
380385
mouse_viewport_id = viewport->ID;
381386
io.AddMouseViewportEvent(mouse_viewport_id);
382387
}
@@ -475,6 +480,7 @@ void ImGui_ImplWin32_NewFrame()
475480
ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData();
476481
IM_ASSERT(bd != nullptr && "Context or backend not initialized? Did you call ImGui_ImplWin32_Init()?");
477482
ImGuiIO& io = ImGui::GetIO();
483+
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
478484

479485
// Setup display size (every frame to accommodate for window resizing)
480486
RECT rect = { 0, 0, 0, 0 };
@@ -490,7 +496,7 @@ void ImGui_ImplWin32_NewFrame()
490496
bd->Time = current_time;
491497

492498
// Update OS mouse position
493-
ImGui_ImplWin32_UpdateMouseData(io);
499+
ImGui_ImplWin32_UpdateMouseData(io, platform_io);
494500

495501
// Process workarounds for known Windows key handling issues
496502
ImGui_ImplWin32_ProcessKeyEventsWorkarounds(io);
@@ -1091,7 +1097,6 @@ static void ImGui_ImplWin32_CreateWindow(ImGuiViewport* viewport)
10911097

10921098
// Secondary viewports store their imgui context
10931099
::SetPropA(vd->Hwnd, "IMGUI_CONTEXT", ImGui::GetCurrentContext());
1094-
::SetPropA(vd->Hwnd, "IMGUI_VIEWPORT", viewport);
10951100
}
10961101

10971102
static void ImGui_ImplWin32_DestroyWindow(ImGuiViewport* viewport)
@@ -1303,7 +1308,7 @@ static void ImGui_ImplWin32_OnChangedViewport(ImGuiViewport* viewport)
13031308
#endif
13041309
}
13051310

1306-
namespace ImGui { extern ImGuiIO& GetIOEx(ImGuiContext*); }
1311+
namespace ImGui { extern ImGuiIO& GetIOEx(ImGuiContext*); extern ImGuiPlatformIO& GetPlatformIOEx(ImGuiContext*); }
13071312

13081313
static LRESULT CALLBACK ImGui_ImplWin32_WndProcHandler_PlatformWindow(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
13091314
{
@@ -1313,10 +1318,11 @@ static LRESULT CALLBACK ImGui_ImplWin32_WndProcHandler_PlatformWindow(HWND hWnd,
13131318
return DefWindowProc(hWnd, msg, wParam, lParam); // unlike ImGui_ImplWin32_WndProcHandler() we are called directly by Windows, we can't just return 0.
13141319

13151320
ImGuiIO& io = ImGui::GetIOEx(ctx);
1321+
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIOEx(ctx);
13161322
LRESULT result = 0;
13171323
if (ImGui_ImplWin32_WndProcHandlerEx(hWnd, msg, wParam, lParam, io))
13181324
result = true;
1319-
else if (ImGuiViewport* viewport = ImGui_ImplWin32_FindViewportByPlatformHandle(hWnd))
1325+
else if (ImGuiViewport* viewport = ImGui_ImplWin32_FindViewportByPlatformHandle(platform_io, hWnd))
13201326
{
13211327
switch (msg)
13221328
{

docs/CHANGELOG.txt

+4
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ Other changes:
6464

6565
Docking+Viewports Branch:
6666

67+
- Backends: Win32: Fixed a crash/regression in 1.91.5 when running two processes
68+
with multi-viewports (was using GetProp() to query property which could have
69+
belonged to another process). (#8162, #8069) [@sammyfreg, @ocornut]
70+
6771

6872
-----------------------------------------------------------------------
6973
VERSION 1.91.5 (Released 2024-11-07)

imgui.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -4856,6 +4856,13 @@ ImGuiPlatformIO& ImGui::GetPlatformIO()
48564856
return GImGui->PlatformIO;
48574857
}
48584858

4859+
// This variant exists to facilitate backends experimenting with multi-threaded parallel context. (#8069, #6293, #5856)
4860+
ImGuiPlatformIO& ImGui::GetPlatformIOEx(ImGuiContext* ctx)
4861+
{
4862+
IM_ASSERT(ctx != NULL);
4863+
return ctx->PlatformIO;
4864+
}
4865+
48594866
// Pass this to your backend rendering function! Valid after Render() and until the next call to NewFrame()
48604867
ImDrawData* ImGui::GetDrawData()
48614868
{

imgui_internal.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -3184,7 +3184,8 @@ namespace ImGui
31843184
// If this ever crashes because g.CurrentWindow is NULL, it means that either:
31853185
// - ImGui::NewFrame() has never been called, which is illegal.
31863186
// - You are calling ImGui functions after ImGui::EndFrame()/ImGui::Render() and before the next ImGui::NewFrame(), which is also illegal.
3187-
IMGUI_API ImGuiIO& GetIOEx(ImGuiContext* ctx);
3187+
IMGUI_API ImGuiIO& GetIOEx(ImGuiContext* ctx);
3188+
IMGUI_API ImGuiPlatformIO& GetPlatformIOEx(ImGuiContext* ctx);
31883189
inline ImGuiWindow* GetCurrentWindowRead() { ImGuiContext& g = *GImGui; return g.CurrentWindow; }
31893190
inline ImGuiWindow* GetCurrentWindow() { ImGuiContext& g = *GImGui; g.CurrentWindow->WriteAccessed = true; return g.CurrentWindow; }
31903191
IMGUI_API ImGuiWindow* FindWindowByID(ImGuiID id);

0 commit comments

Comments
 (0)