diff options
author | Kenneth Russel <[email protected]> | 2005-05-10 17:47:31 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-05-10 17:47:31 +0000 |
commit | 7da326380ca234d31627c5eaa8e7eacd3bfb8a4d (patch) | |
tree | 0a827c1e1384f9b36e01fb314d9ee182bcfa23a2 /src/net/java/games/jogl/impl/macosx/MacOSXDummyGLContext.java | |
parent | ff22a4f5a17eac8402706993dd54f75b6fae0110 (diff) |
Fixed race conditions in Mac OS X onscreen context creation that
showed up after recent GLJPanel fix to clean up resource leaks.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@267 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/net/java/games/jogl/impl/macosx/MacOSXDummyGLContext.java')
-rw-r--r-- | src/net/java/games/jogl/impl/macosx/MacOSXDummyGLContext.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/java/games/jogl/impl/macosx/MacOSXDummyGLContext.java b/src/net/java/games/jogl/impl/macosx/MacOSXDummyGLContext.java index 9b8f02660..f32c8bb15 100644 --- a/src/net/java/games/jogl/impl/macosx/MacOSXDummyGLContext.java +++ b/src/net/java/games/jogl/impl/macosx/MacOSXDummyGLContext.java @@ -106,7 +106,7 @@ class MacOSXDummyGLContext extends MacOSXGLContext throw new GLException("Should not call this"); } - protected void create() { + protected boolean create() { throw new GLException("Should not call this"); } |