diff options
author | Kenneth Russel <[email protected]> | 2003-06-26 13:35:42 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2003-06-26 13:35:42 +0000 |
commit | 4f1304e3d4039b6388f7ac7886894b5fc280b089 (patch) | |
tree | d9ece5d29e87f6cbbec88752aaf4420a1bee121e | |
parent | 0a6e191eaebcc8edc2611dbedab6fd04a615fc2f (diff) |
Fixed inheritance problem with GL on Mac OS X. Updated documentation.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@14 232f8b59-042b-4e1e-8c03-345bb8c30851
-rw-r--r-- | doc/userguide/index.html | 4 | ||||
-rw-r--r-- | make/gl-macosx.cfg | 8 | ||||
-rw-r--r-- | make/gl-win32.cfg | 1 | ||||
-rw-r--r-- | make/gl-x11.cfg | 1 |
4 files changed, 11 insertions, 3 deletions
diff --git a/doc/userguide/index.html b/doc/userguide/index.html index 47f5d095b..512c12bcb 100644 --- a/doc/userguide/index.html +++ b/doc/userguide/index.html @@ -467,6 +467,10 @@ The following issues remain with the Mac OS X port: <UL> +<LI> Jogl's GLCanvas support does not and will never work with any +earlier release of Java on Mac OS X than the first developer preview +of Panther (10.3). + <LI> Due to bugs in the JAWT implementation on Mac OS X, some fairly severe workarounds had to be put into the Jogl sources that impact performance significantly. These bugs have been fixed by Gerard diff --git a/make/gl-macosx.cfg b/make/gl-macosx.cfg index 234878b93..a22b13477 100644 --- a/make/gl-macosx.cfg +++ b/make/gl-macosx.cfg @@ -1,8 +1,10 @@ -# This .cfg file is used to generate the class which implements the GL -# interface on a particular platform. +# This .cfg file is used to generate the GL interface. Package net.java.games.jogl Style InterfaceOnly JavaClass GL +Extends GL WGL +Extends GL GLX +Extends GL CGL Include gl-common-macosx.cfg -EmitProcAddressTable false
\ No newline at end of file +EmitProcAddressTable false diff --git a/make/gl-win32.cfg b/make/gl-win32.cfg index 9b181ffdf..83cb3e3bd 100644 --- a/make/gl-win32.cfg +++ b/make/gl-win32.cfg @@ -4,6 +4,7 @@ Style InterfaceOnly JavaClass GL Extends GL WGL Extends GL GLX +Extends GL CGL Include gl-common-win32.cfg EmitProcAddressTable false diff --git a/make/gl-x11.cfg b/make/gl-x11.cfg index cdd595b0b..e20deed55 100644 --- a/make/gl-x11.cfg +++ b/make/gl-x11.cfg @@ -5,6 +5,7 @@ Style InterfaceOnly JavaClass GL Extends GL WGL Extends GL GLX +Extends GL CGL Include gl-common-x11.cfg EmitProcAddressTable false
\ No newline at end of file |