Skip to content

Commit

Permalink
List the OpenGL extensions that are present in the log.
Browse files Browse the repository at this point in the history
  • Loading branch information
stump committed May 22, 2011
1 parent 9317a73 commit ccf09a9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/GameEngine.py
Expand Up @@ -557,6 +557,7 @@ def __init__(self, config = None):
Log.debug("OpenGL version: " + glGetString(GL_VERSION))
Log.debug("OpenGL vendor: " + glGetString(GL_VENDOR))
Log.debug("OpenGL renderer: " + glGetString(GL_RENDERER))
Log.debug("OpenGL extensions: " + ' '.join(sorted(glGetString(GL_EXTENSIONS).split())))

if self.video.default:
self.config.set("video", "fullscreen", False)
Expand Down

0 comments on commit ccf09a9

Please sign in to comment.