You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creating a window with SDL_CreateWindowWithProperties from a SDL_PROP_WINDOW_WIN32_HWND_POINTER handles events normally only if it is called from the same process where the foreign window was created.
Trying the same procedure with a handle from an external process isn't polling any events.
Notice:
The foreign window is also created using SDL3.
Platform: Windows 11 SDL3 main branch
The text was updated successfully, but these errors were encountered:
Is it valid to use a Window handle from a foreign process in Win32 API calls? I haven't tried this. You definitely won't get any events, because the process that created the window (in fact the thread that created the window) is the one that gets events for it.
Creating a window with
SDL_CreateWindowWithProperties
from aSDL_PROP_WINDOW_WIN32_HWND_POINTER
handles events normally only if it is called from the same process where the foreign window was created.Trying the same procedure with a handle from an external process isn't polling any events.
Notice:
The foreign window is also created using SDL3.
Platform: Windows 11
SDL3 main branch
The text was updated successfully, but these errors were encountered: