aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/com/sun/opengl/impl/windows
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2006-04-02 23:53:45 +0000
committerKenneth Russel <[email protected]>2006-04-02 23:53:45 +0000
commit19210d91a89f184d3425cedf499517952a2aaa61 (patch)
treebafb0972ea90d025b01420f5dd75a2e84a5afd96 /src/classes/com/sun/opengl/impl/windows
parentd6ee9155105cb90a388cd6c9474ec43261541a1c (diff)
Made internal methods which fetch the platform-dependent context out
of the GLContext implementations public instead of protected for easier interoperability with C libraries git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@699 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/WindowsGLContext.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classes/com/sun/opengl/impl/windows/WindowsGLContext.java b/src/classes/com/sun/opengl/impl/windows/WindowsGLContext.java
index 7a827854c..a78c3baf0 100644
--- a/src/classes/com/sun/opengl/impl/windows/WindowsGLContext.java
+++ b/src/classes/com/sun/opengl/impl/windows/WindowsGLContext.java
@@ -286,7 +286,7 @@ public class WindowsGLContext extends GLContextImpl {
// Internals only below this point
//
- protected long getHGLRC() {
+ public long getHGLRC() {
return hglrc;
}
}