From 0906140a18690a9dced8dec12dfdd8cf4c95a4df Mon Sep 17 00:00:00 2001 From: sg215889 Date: Fri, 24 Jul 2009 07:29:28 -0700 Subject: Add: Extended support for CVM crosscompile: - Clean up X11 dependency - NativeWindow: - Seperate X11 out of core. - Add nativewindow.x11.jar and nativewindow.x11.cdc.jar - Newt: - Seperate X11,win,osx out of core. - Add newt.x11.jar, newt.win.jar, newt.osx.jar and the CDC variants Fix: External Context & Drawable (X11 and Windows) - Properly fetch current context values (ctx, display, drawable, ..) - Create GraphicsConfiguration based on the given pixelformat/FBConfig Fix: Java2D OpenGL Usage - Using the external context as shared for the external drawable - JAWTUtil: Skip locking in case of OGL-Flush-Queue - TODO: Windows FBO still does not work .. (X11 is fine) --- jnlp-files/jogl-all-awt.jnlp | 4 +-- jnlp-files/jogl-all.jnlp | 66 ------------------------------------ jnlp-files/jogl-awt.jnlp | 2 +- jnlp-files/jogl-core.jnlp | 2 +- jnlp-files/jogl-gl2es12.jnlp | 2 +- jnlp-files/nativewindow-all-awt.jnlp | 64 ++++++++++++++++++++++++++++++++++ jnlp-files/nativewindow-awt.jnlp | 51 +++------------------------- jnlp-files/nativewindow.jnlp | 13 +++++-- jnlp-files/newt-all-awt.jnlp | 64 ++++++++++++++++++++++++++++++++++ jnlp-files/newt-awt.jnlp | 4 +-- jnlp-files/newt-jogl.jnlp | 4 +-- jnlp-files/newt.jnlp | 18 ++++++++-- 12 files changed, 168 insertions(+), 126 deletions(-) delete mode 100644 jnlp-files/jogl-all.jnlp create mode 100644 jnlp-files/nativewindow-all-awt.jnlp create mode 100644 jnlp-files/newt-all-awt.jnlp (limited to 'jnlp-files') diff --git a/jnlp-files/jogl-all-awt.jnlp b/jnlp-files/jogl-all-awt.jnlp index 9c5962581..125980882 100644 --- a/jnlp-files/jogl-all-awt.jnlp +++ b/jnlp-files/jogl-all-awt.jnlp @@ -5,7 +5,7 @@ Java(tm) Binding to the OpenGL(r) API (ALL.AWT) Sun Microsystems, Inc. - Java Binding to the OpenGL API - JSR-231 2.0.0 (beta2) - ALL.AWT + Java Binding to the OpenGL API - JSR-231 2.0.0 - ALL.AWT Java programming language binding for the OpenGL 3D graphics API - ALL.AWT @@ -16,7 +16,7 @@ - + diff --git a/jnlp-files/jogl-all.jnlp b/jnlp-files/jogl-all.jnlp deleted file mode 100644 index 744492675..000000000 --- a/jnlp-files/jogl-all.jnlp +++ /dev/null @@ -1,66 +0,0 @@ - - - - Java(tm) Binding to the OpenGL(r) API (ALL) - Sun Microsystems, Inc. - - Java Binding to the OpenGL API - JSR-231 2.0.0 (beta2) - ALL - Java programming language binding for the OpenGL 3D graphics API - ALL. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jnlp-files/jogl-awt.jnlp b/jnlp-files/jogl-awt.jnlp index b77e40e04..03c61b37a 100644 --- a/jnlp-files/jogl-awt.jnlp +++ b/jnlp-files/jogl-awt.jnlp @@ -5,7 +5,7 @@ Java(tm) Binding to the OpenGL(r) API (AWT) Sun Microsystems, Inc. - Java Binding to the OpenGL API - JSR-231 2.0.0 (beta2) - AWT + Java Binding to the OpenGL API - JSR-231 2.0.0 - AWT Java programming language binding for the OpenGL 3D graphics API - AWT. diff --git a/jnlp-files/jogl-core.jnlp b/jnlp-files/jogl-core.jnlp index 8f6832e42..c1dbcfc1d 100644 --- a/jnlp-files/jogl-core.jnlp +++ b/jnlp-files/jogl-core.jnlp @@ -5,7 +5,7 @@ Java(tm) Binding to the OpenGL(r) API (CORE) Sun Microsystems, Inc. - Java Binding to the OpenGL API - JSR-231 2.0.0 (beta2) - CORE + Java Binding to the OpenGL API - JSR-231 2.0.0 - CORE Java programming language binding for the OpenGL 3D graphics API - CORE. diff --git a/jnlp-files/jogl-gl2es12.jnlp b/jnlp-files/jogl-gl2es12.jnlp index 2ae20531e..25402adcb 100644 --- a/jnlp-files/jogl-gl2es12.jnlp +++ b/jnlp-files/jogl-gl2es12.jnlp @@ -5,7 +5,7 @@ Java(tm) Binding to the OpenGL(r) API (GL2ES12) Sun Microsystems, Inc. - Java Binding to the OpenGL API - JSR-231 2.0.0 (beta2) - GL2ES12 + Java Binding to the OpenGL API - JSR-231 2.0.0 - GL2ES12 Java programming language binding for the OpenGL 3D graphics API - GL2ES12. diff --git a/jnlp-files/nativewindow-all-awt.jnlp b/jnlp-files/nativewindow-all-awt.jnlp new file mode 100644 index 000000000..f22166ecb --- /dev/null +++ b/jnlp-files/nativewindow-all-awt.jnlp @@ -0,0 +1,64 @@ + + + + Java(tm) NativeWindow Interface API (ALL.AWT) + Sun Microsystems, Inc. + + Java API for a binding to a native windowing system - 2.0 - ALL.AWT + Java API for a binding to a native windowing system - 2.0 - ALL.AWT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jnlp-files/nativewindow-awt.jnlp b/jnlp-files/nativewindow-awt.jnlp index b78dad9e4..aa07c3a24 100644 --- a/jnlp-files/nativewindow-awt.jnlp +++ b/jnlp-files/nativewindow-awt.jnlp @@ -5,59 +5,16 @@ Java(tm) NativeWindow Interface API (AWT) Sun Microsystems, Inc. - Java API for a binding to a native windowing system - 2.0 (beta2) - AWT - Java API for a binding to a native windowing system - 2.0 (beta2) - AWT + Java API for a binding to a native windowing system - 2.0 - AWT + Java API for a binding to a native windowing system - 2.0 - AWT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + diff --git a/jnlp-files/nativewindow.jnlp b/jnlp-files/nativewindow.jnlp index e49d6c4ac..60a07aede 100644 --- a/jnlp-files/nativewindow.jnlp +++ b/jnlp-files/nativewindow.jnlp @@ -5,8 +5,8 @@ Java(tm) NativeWindow Interface API (CORE) Sun Microsystems, Inc. - Java API for a binding to a native windowing system - 2.0 (beta2) - CORE - Java API for a binding to a native windowing system - 2.0 (beta2) - CORE + Java API for a binding to a native windowing system - 2.0 - CORE + Java API for a binding to a native windowing system - 2.0 - CORE @@ -27,30 +27,39 @@ + + + + + + + + + diff --git a/jnlp-files/newt-all-awt.jnlp b/jnlp-files/newt-all-awt.jnlp new file mode 100644 index 000000000..7378e8ca2 --- /dev/null +++ b/jnlp-files/newt-all-awt.jnlp @@ -0,0 +1,64 @@ + + + + NEWT - New Windowing Toolkit (ALL.AWT) + Sun Microsystems, Inc. + + NEWT - A NativeWindow Interface implementation - ALL.AWT + NEWT - A NativeWindow Interface implementation - ALL.AWT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jnlp-files/newt-awt.jnlp b/jnlp-files/newt-awt.jnlp index 9df4e9495..28bb8e706 100644 --- a/jnlp-files/newt-awt.jnlp +++ b/jnlp-files/newt-awt.jnlp @@ -5,8 +5,8 @@ NEWT - New Windowing Toolkit (AWT) Sun Microsystems, Inc. - NEWT - A NativeWindow Interface implementation (beta2) - AWT - NEWT - A NativeWindow Interface implementation (beta2) - AWT + NEWT - A NativeWindow Interface implementation - AWT + NEWT - A NativeWindow Interface implementation - AWT diff --git a/jnlp-files/newt-jogl.jnlp b/jnlp-files/newt-jogl.jnlp index ed5cc6d35..1ac69781a 100644 --- a/jnlp-files/newt-jogl.jnlp +++ b/jnlp-files/newt-jogl.jnlp @@ -5,8 +5,8 @@ NEWT - New Windowing Toolkit (JOGL) Sun Microsystems, Inc. - NEWT - A NativeWindow Interface implementation (beta2) - JOGL - NEWT - A NativeWindow Interface implementation (beta2) - JOGL + NEWT - A NativeWindow Interface implementation - JOGL + NEWT - A NativeWindow Interface implementation - JOGL diff --git a/jnlp-files/newt.jnlp b/jnlp-files/newt.jnlp index 538760369..cb6899256 100644 --- a/jnlp-files/newt.jnlp +++ b/jnlp-files/newt.jnlp @@ -5,8 +5,8 @@ NEWT - New Windowing Toolkit (CORE) Sun Microsystems, Inc. - NEWT - A NativeWindow Interface implementation (beta2) - CORE - NEWT - A NativeWindow Interface implementation (beta2) - CORE + NEWT - A NativeWindow Interface implementation - CORE + NEWT - A NativeWindow Interface implementation - CORE @@ -18,45 +18,59 @@ + + + + + + + + + + + + + + -- cgit v1.2.3