diff options
author | Sven Gothel <[email protected]> | 2008-07-05 22:40:34 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2008-07-05 22:40:34 +0000 |
commit | 649888422631e3bec8fa0f60afa99bc690992d71 (patch) | |
tree | fab9103d5ccecca52923bb7bd9e7b0e551631346 /src/java/com/sun/gluegen/runtime/opengl | |
parent | 9e5d4716a654e425f0ca5a3f676797e1ffb263ad (diff) |
Fixed fine javadoc entries for aliased/unified GL functions
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/branches/JOGL_2_SANDBOX@95 a78bb65f-1512-4460-ba86-f6dc96a7bf27
Diffstat (limited to 'src/java/com/sun/gluegen/runtime/opengl')
-rw-r--r-- | src/java/com/sun/gluegen/runtime/opengl/GLUnifiedName.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/java/com/sun/gluegen/runtime/opengl/GLUnifiedName.java b/src/java/com/sun/gluegen/runtime/opengl/GLUnifiedName.java index 89d40e3..403e388 100644 --- a/src/java/com/sun/gluegen/runtime/opengl/GLUnifiedName.java +++ b/src/java/com/sun/gluegen/runtime/opengl/GLUnifiedName.java @@ -57,10 +57,6 @@ public class GLUnifiedName implements Cloneable { if(str.endsWith(extensions[i])) { return true; } - /* - if(str.startsWith("GL_"+extensions[i]+"_")) { - return true; - } */ } return false; } @@ -77,11 +73,6 @@ public class GLUnifiedName implements Cloneable { str = str.substring(0, str.length()-extensions[i].length()); touched=true; } - /* - if(str.startsWith("GL_"+extensions[i]+"_")) { - str = "GL_"+str.substring(4+extensions[i].length()); - touched=true; - } */ } return str; } |