diff options
author | Kenneth Russel <[email protected]> | 2008-12-23 05:32:57 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2008-12-23 05:32:57 +0000 |
commit | 00b865b520d91cee6eda142cfcdf1fad4ab5a8c5 (patch) | |
tree | c94a5232634726d1a4acdf206c381b12a4ec1299 /src/classes/javax/media/opengl/GLDrawable.java | |
parent | 040200121e35aced836985c085699ef6c9df0719 (diff) |
Removed notion of wrapped windows from the NativeWindow interface,
leaving such handling up to toolkits such as Newt. Updated
NativeWindow documentation.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1827 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src/classes/javax/media/opengl/GLDrawable.java')
-rw-r--r-- | src/classes/javax/media/opengl/GLDrawable.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/classes/javax/media/opengl/GLDrawable.java b/src/classes/javax/media/opengl/GLDrawable.java index 844e025a0..219af33c4 100644 --- a/src/classes/javax/media/opengl/GLDrawable.java +++ b/src/classes/javax/media/opengl/GLDrawable.java @@ -82,7 +82,6 @@ public interface GLDrawable { public GLContext createContext(GLContext shareWith); /** - * Indicates to on-screen GLDrawable implementations whether the * underlying window has been created and can be drawn into. This * method must be called from GLDrawables obtained from the @@ -99,7 +98,7 @@ public interface GLDrawable { * by the implementation. It is not necessary to call * <code>setRealized</code> on a GLCanvas, a GLJPanel, or a * GLPbuffer, as these perform the appropriate calls on their - * underlying GLDrawables internally.. + * underlying GLDrawables internally. */ public void setRealized(boolean realized); |