Changes between Version 2 and Version 3 of Ticket #1331
- Timestamp:
- Jul 22, 2011 3:19:44 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1331 – Description
v2 v3 11 11 '''Linux/X11:''' drawing and event polling must be done in the same thread as the thread that created the window, otherwise there will be no picture. Multiple windows are supported, but they must be done in the same '''one thread''' (it doesn't have to be the main thread). If each of the window uses a separate thread, crash will happen during window creation. 12 12 13 '''Windows:''' drawing and event polling must be done in the same thread as the thread that created the window. Multiple windows are supported, and each may use a dedicated thread, as long as window creation, drawing, and event polling for one window alluse the same thread.13 '''Windows:''' event polling must be done in the same thread as the thread that created the window, drawing can be done from any thread. Multiple windows are supported, and each may use a dedicated thread, as long as window creation and event polling for one window use the same thread. 14 14 15 15