diff options
author | Marius Kintel <marius@kintel.net> | 2012-01-04 17:40:58 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-01-04 17:40:58 (GMT) |
commit | 7337f86c96451f92235abe528119ab4116786ee7 (patch) | |
tree | 4f01f862d7b339f5462f5e5aba027e0211b5c082 /src | |
parent | 761eb4f8af8a8b311d4551e3a8988e3ddaded87d (diff) |
minor fix: version and vendor output was mixed up in the info string
Diffstat (limited to 'src')
-rw-r--r-- | src/glview.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glview.cc b/src/glview.cc index 141d998..63573e3 100644 --- a/src/glview.cc +++ b/src/glview.cc @@ -154,9 +154,9 @@ void GLView::initializeGL() "Extensions:\n" "%s\n", glewGetString(GLEW_VERSION), + glGetString(GL_VERSION), glGetString(GL_RENDERER), glGetString(GL_VENDOR), - glGetString(GL_VERSION), rbits, gbits, bbits, abits, dbits, sbits, glGetString(GL_EXTENSIONS)); // FIXME: glGetString(GL_EXTENSIONS) is deprecated in OpenGL 3.0. |