diff options
author | Michael Bien <[email protected]> | 2010-09-10 21:33:20 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-09-10 21:33:20 +0200 |
commit | d34722a23b384711079409e4963b46c9d4413d89 (patch) | |
tree | d47d2d4de3f4c6642d94fa4e03fd0dfb2ed702b8 /src/jogl/classes/com/jogamp | |
parent | 82a88278a0360e0e5896c5c0f009c47f9ff2a83c (diff) | |
parent | 340b1ceb07907be113e33c54d084e53ddc93e368 (diff) |
Merge branch 'master' of git://github.com/sgothel/jogl
Diffstat (limited to 'src/jogl/classes/com/jogamp')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/impl/GLContextImpl.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/impl/GLContextImpl.java b/src/jogl/classes/com/jogamp/opengl/impl/GLContextImpl.java index e63f5a225..258445ce2 100644 --- a/src/jogl/classes/com/jogamp/opengl/impl/GLContextImpl.java +++ b/src/jogl/classes/com/jogamp/opengl/impl/GLContextImpl.java @@ -250,14 +250,14 @@ public abstract class GLContextImpl extends GLContext { * MakeCurrent functionality, which also issues the creation of the actual OpenGL context.<br> * The complete callgraph for general OpenGL context creation is:<br> * <ul> - * <li> {@link #makeCurrent} <i>GLContextImpl</i> - * <li> {@link #makeCurrentImpl} <i>Platform Implementation</i> - * <li> {@link #create} <i>Platform Implementation</i> + * <li> {@link #makeCurrent} <i>GLContextImpl</i></li> + * <li> {@link #makeCurrentImpl} <i>Platform Implementation</i></li> + * <li> {@link #create} <i>Platform Implementation</i></li> * <li> If <code>ARB_create_context</code> is supported: * <ul> - * <li> {@link #createContextARB} <i>GLContextImpl</i> - * <li> {@link #createContextARBImpl} <i>Platform Implementation</i> - * </ul> + * <li> {@link #createContextARB} <i>GLContextImpl</i></li> + * <li> {@link #createContextARBImpl} <i>Platform Implementation</i></li> + * </ul></li> * </ul><br> * * Once at startup, ie triggered by the singleton constructor of a {@link GLDrawableFactoryImpl} specialization, @@ -267,10 +267,10 @@ public abstract class GLContextImpl extends GLContext { * <ul> * <li> {@link #createContextARBMapVersionsAvailable} * <ul> - * <li> {@link #createContextARBVersions} - * </ul> - * <li> {@link #mapVersionAvailable} - * </ul> + * <li> {@link #createContextARBVersions}</li> + * </ul></li> + * <li> {@link #mapVersionAvailable}</li> + * </ul></li> * </ul><br> * * @see #makeCurrentImpl |