diff options
author | Kenneth Russel <[email protected]> | 2005-07-19 01:00:42 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2005-07-19 01:00:42 +0000 |
commit | 730e752dc282ab4230e6fc80d934011bffdc6007 (patch) | |
tree | 419398176a9d7d1e47be48fa53ad9fc1b8f13143 /src/net/java/games/jogl/impl/windows/WindowsPbufferGLContext.java | |
parent | 35435c313ba527c9bea35a14f72492d2f80a9c84 (diff) |
Moved all functionality from GLContextFactory implementations into
concrete GLDrawableFactory implementations. Made GLDrawableFactory
abstract and added GLDrawableFactoryImpl to support creation of
offscreen GLDrawables for non-pbuffer fallback path of GLJPanel.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JSR-231@329 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/net/java/games/jogl/impl/windows/WindowsPbufferGLContext.java')
-rw-r--r-- | src/net/java/games/jogl/impl/windows/WindowsPbufferGLContext.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/java/games/jogl/impl/windows/WindowsPbufferGLContext.java b/src/net/java/games/jogl/impl/windows/WindowsPbufferGLContext.java index 80d6d2a02..c602cab99 100644 --- a/src/net/java/games/jogl/impl/windows/WindowsPbufferGLContext.java +++ b/src/net/java/games/jogl/impl/windows/WindowsPbufferGLContext.java @@ -157,6 +157,6 @@ public class WindowsPbufferGLContext extends WindowsGLContext { } private static String wglGetLastError() { - return WindowsGLContextFactory.wglGetLastError(); + return WindowsGLDrawableFactory.wglGetLastError(); } } |