diff options
author | Sven Gothel <[email protected]> | 2009-06-14 18:13:32 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-06-14 18:13:32 +0000 |
commit | a420720c605b6c7be231d277e858ce8d640ecb83 (patch) | |
tree | e3eaf7e3993c92c2cdee1951adc1532f6436d43f /make | |
parent | ca8a9b56532fe4710cc4f3742c385db06dec9252 (diff) |
NEWT Mac OS X - Adding support for multithreading:
See documentation in com.sun.javafx.newt.util.MainThread.
A platform independent java user application launch toolkit,
which by default just invokes the passed user class's main method.
In case of Mac OS X, it spawns a new thread to run the user app,
and uses it's own thread to handle tasks, here all windowing tasks
from the MacWindow.
Now you can run a multithreaded native NEWT application on Mac OS X,
just pipeline this new class on your commandline, ie
java -XstartOnFirstThread com.sun.javafx.newt.util.MainThread demos.es1.RedSquare -GL2 -GL2 -GL2 -GL2
All these changes are backward compatible, of course.
NEWT Window
Finer locking granularity of event handling methods,
to prevent deadlocks with the new MainThread serialization.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1947 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make')
-rw-r--r-- | make/build-newt.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/build-newt.xml b/make/build-newt.xml index e13e9618e..a1b1baaea 100644 --- a/make/build-newt.xml +++ b/make/build-newt.xml @@ -96,7 +96,7 @@ <!-- partitioning --> <property name="java.part.core" - value="com/sun/javafx/newt/*, com/sun/javafx/newt/x11/*, com/sun/javafx/newt/windows/*, com/sun/javafx/newt/macosx/*, com/sun/javafx/newt/impl/*"/> + value="com/sun/javafx/newt/*, com/sun/javafx/newt/util/*, com/sun/javafx/newt/x11/*, com/sun/javafx/newt/windows/*, com/sun/javafx/newt/macosx/*, com/sun/javafx/newt/impl/*"/> <property name="java.part.opengl" value="com/sun/javafx/newt/opengl/*, com/sun/javafx/newt/opengl/kd/*"/> |