Skip to content
Snippets Groups Projects
Commit 7abc600f authored by Ashish Gaurav's avatar Ashish Gaurav
Browse files

update gitignore, revert vm pyglet fix

parent f428cd41
No related branches found
No related tags found
1 merge request!3Formatting
*.pyc
*.py~
__pycache__
......@@ -201,9 +201,14 @@ def config_Pyglet(pyglet, win_x, win_y):
"""
pyglet.options['debug_gl'] = False
config = pyglet.gl.Config()
# This configuration doesn't work on some screens
# config = pyglet.gl.Config(sample_buffers=1, samples=4)
# Use the no arguments version, if you don't have a GPU. Uncomment the
# line below then.
# config = pyglet.gl.Config()
# Otherwise use the following line.
config = pyglet.gl.Config(sample_buffers=1, samples=4)
window = pyglet.window.Window(width=win_x, height=win_y, config=config)
return window
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment