diff options
author | Sven Gothel <[email protected]> | 2014-10-08 21:15:27 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-10-08 22:32:58 +0200 |
commit | f548fbd6c6771f86977f309416310e15c117bad2 (patch) | |
tree | 1017850677cb60751f8d310794675036e96f00d8 /src/jogl/classes/com | |
parent | 6cbc626a2815595e7bea6177cac17aade906d315 (diff) |
ShaderCode: Fix link to create(..) method
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderCode.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderCode.java b/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderCode.java index 6c507d209..f56ac328c 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderCode.java +++ b/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderCode.java @@ -443,9 +443,8 @@ public class ShaderCode { } /** - * Simplified variation of {@link #create(GL2ES2, int, int, Class, String, String[], String, String)}. - * <br> - * + * Simplified variation of {@link #create(GL2ES2, int, int, Class, String, String[], String, String, boolean)}. + * <p> * Example: * <pre> * Your std JVM layout (plain or within a JAR): @@ -476,6 +475,7 @@ public class ShaderCode { * sp0.add(gl, fp0, System.err); * st.attachShaderProgram(gl, sp0, true); * </pre> + * </p> * * @param gl current GL object to determine whether a shader compiler is available (if <code>source</code> is used), * or to determine the shader binary format (if <code>binary</code> is used). |