summaryrefslogtreecommitdiffstats
path: root/src/net/java/games/jogl
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/games/jogl')
-rw-r--r--src/net/java/games/jogl/impl/FunctionAvailabilityCache.java4
-rw-r--r--src/net/java/games/jogl/impl/GLContext.java2
-rw-r--r--src/net/java/games/jogl/impl/windows/WindowsGLContext.java2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/net/java/games/jogl/impl/FunctionAvailabilityCache.java b/src/net/java/games/jogl/impl/FunctionAvailabilityCache.java
index 74a3e888d..99fb36434 100644
--- a/src/net/java/games/jogl/impl/FunctionAvailabilityCache.java
+++ b/src/net/java/games/jogl/impl/FunctionAvailabilityCache.java
@@ -136,9 +136,9 @@ public final class FunctionAvailabilityCache {
* Returns true if the given OpenGL function is part of the OpenGL core
* that corresponds to the give OpenGL version string.
*
- * @param versionString must be of the form "X" or "X.Y" or "X.Y.Z", where
+ * @param glVersionString must be of the form "X" or "X.Y" or "X.Y.Z", where
* X, Y, and Z are integers
- @ @exception GLException if the glFunctionName passed in is
+ * @exception GLException if the glFunctionName passed in is
* not the name of any known OpenGL extension function.
*/
public static boolean isPartOfGLCore(String glVersionString, String glFunctionName)
diff --git a/src/net/java/games/jogl/impl/GLContext.java b/src/net/java/games/jogl/impl/GLContext.java
index db8842b39..3923ed307 100644
--- a/src/net/java/games/jogl/impl/GLContext.java
+++ b/src/net/java/games/jogl/impl/GLContext.java
@@ -309,7 +309,7 @@ public abstract class GLContext {
*
* @param glFunctionName the name of the OpenGL function (e.g., use
* "glPolygonOffsetEXT" to check if the {@link
- * net.java.games.jogl.glPolygonOffsetEXT(float,float)} is available).
+ * net.java.games.jogl.GL#glPolygonOffsetEXT(float,float)} is available).
*/
protected boolean isFunctionAvailable(String glFunctionName) {
return functionAvailability.isFunctionAvailable(mapToRealGLFunctionName(glFunctionName));
diff --git a/src/net/java/games/jogl/impl/windows/WindowsGLContext.java b/src/net/java/games/jogl/impl/windows/WindowsGLContext.java
index 44ff97ffc..bdda563b4 100644
--- a/src/net/java/games/jogl/impl/windows/WindowsGLContext.java
+++ b/src/net/java/games/jogl/impl/windows/WindowsGLContext.java
@@ -107,7 +107,7 @@ public abstract class WindowsGLContext extends GLContext {
/**
* Creates and initializes an appropriate OpenGL context. Should only be
- * called by {@link makeCurrent(Runnable)}.
+ * called by {@link #makeCurrent(Runnable)}.
*/
protected abstract void create();