diff options
author | Sven Gothel <[email protected]> | 2010-11-26 13:56:33 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-26 13:56:33 +0100 |
commit | c6c30d46bc9c6ff472e35cf592713297b1ef7409 (patch) | |
tree | f116449bbba8caf28d0b8fcd35f0d59ab7eca4e1 | |
parent | be576b98ac0d8f8309510763064485961e485a7d (diff) |
Add GL_VENDOR to JoglVersion GL output
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/JoglVersion.java | 2 |
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 "); |