aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/com/sun/opengl/impl/windows
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2006-08-01 23:00:08 +0000
committerKenneth Russel <[email protected]>2006-08-01 23:00:08 +0000
commitac1f6a6df5542a06e49166d570df6ade252ab0f1 (patch)
tree0fd602fa64881f21a056c40e985c2f70b6705f35 /src/classes/com/sun/opengl/impl/windows
parent1c2fe26c000618262be40bb4430741b34a2640ba (diff)
Revised Java2D/JOGL bridge to support new share context argument to
CGLSurfaceData.createOGLContextOnSurface(Graphics, long). Testing indicates that sharing of textures, etc. between pbuffers and the context created on the Java2D back buffer is no longer functioning, however. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@871 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/com/sun/opengl/impl/windows')
-rw-r--r--src/classes/com/sun/opengl/impl/windows/WindowsGLDrawableFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classes/com/sun/opengl/impl/windows/WindowsGLDrawableFactory.java b/src/classes/com/sun/opengl/impl/windows/WindowsGLDrawableFactory.java
index dada5d0c3..1c77d5b04 100644
--- a/src/classes/com/sun/opengl/impl/windows/WindowsGLDrawableFactory.java
+++ b/src/classes/com/sun/opengl/impl/windows/WindowsGLDrawableFactory.java
@@ -227,7 +227,7 @@ public class WindowsGLDrawableFactory extends GLDrawableFactoryImpl {
return false;
}
- public GLContext createContextOnJava2DSurface(Graphics g)
+ public GLContext createContextOnJava2DSurface(Graphics g, GLContext shareWith)
throws GLException {
throw new GLException("Unimplemented on this platform");
}