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
As we've discussed in the context of the Win32 window resizing problem, the message pump (implemented in vsg::Win32_Window::pollEvents) needs to be called on the same thread as owns a window to affect that window. The child windows in the vsgDynamicWindows example are created in loader threads, and those threads don't run message pumps, so messages never reach those windows, and they freeze (both literally and in the didn't handle any window messages for five seconds Win32 definition).
The text was updated successfully, but these errors were encountered:
As we've discussed in the context of the Win32 window resizing problem, the message pump (implemented in
vsg::Win32_Window::pollEvents
) needs to be called on the same thread as owns a window to affect that window. The child windows in thevsgDynamicWindows
example are created in loader threads, and those threads don't run message pumps, so messages never reach those windows, and they freeze (both literally and in the didn't handle any window messages for five seconds Win32 definition).The text was updated successfully, but these errors were encountered: