aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-11-26 13:56:33 +0100
committerSven Gothel <[email protected]>2010-11-26 13:56:33 +0100
commitc6c30d46bc9c6ff472e35cf592713297b1ef7409 (patch)
treef116449bbba8caf28d0b8fcd35f0d59ab7eca4e1 /src/jogl/classes
parentbe576b98ac0d8f8309510763064485961e485a7d (diff)
Add GL_VENDOR to JoglVersion GL output
Diffstat (limited to 'src/jogl/classes')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/JoglVersion.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/JoglVersion.java b/src/jogl/classes/com/jogamp/opengl/JoglVersion.java
index ae650d059..aa0586039 100644
--- a/src/jogl/classes/com/jogamp/opengl/JoglVersion.java
+++ b/src/jogl/classes/com/jogamp/opengl/JoglVersion.java
@@ -85,6 +85,8 @@ public class JoglVersion extends JogampVersion {
sb.append(Platform.getNewline());
sb.append("GL ").append(gl);
sb.append(Platform.getNewline());
+ sb.append("GL_VENDOR ").append(gl.glGetString(gl.GL_VENDOR));
+ sb.append(Platform.getNewline());
sb.append("GL_VERSION ").append(gl.glGetString(gl.GL_VERSION));
sb.append(Platform.getNewline());
sb.append("GL_EXTENSIONS ");