diff options
author | Sven Gothel <[email protected]> | 2009-06-13 23:41:36 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-06-13 23:41:36 +0000 |
commit | ca8a9b56532fe4710cc4f3742c385db06dec9252 (patch) | |
tree | e5577cfe344e7ee8ad0892985af0184b4eb28f02 | |
parent | d5e07502834a2c1d8383e9f730e1e0ee06976a29 (diff) |
NEWT WindowsWindow multithreaded/multiwindows works.
Caveat: They must be created in their own thread,
which is being used to dispatch the messages.
FIXME: Need to make such notes / restrictions in the documentation !!
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1946 232f8b59-042b-4e1e-8c03-345bb8c30851
-rwxr-xr-x | src/newt/native/WindowsWindow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newt/native/WindowsWindow.c b/src/newt/native/WindowsWindow.c index af5e2a8f2..f609de08d 100755 --- a/src/newt/native/WindowsWindow.c +++ b/src/newt/native/WindowsWindow.c @@ -1096,7 +1096,7 @@ JNIEXPORT void JNICALL Java_com_sun_javafx_newt_windows_WindowsWindow_DispatchMe TranslateMessage(&msg); DispatchMessage(&msg); } - } while (gotOne && i < 10); + } while (gotOne && i < 100); } /* |