Skip to content

Commit 8a0e8b7

Browse files
committed
Remove PyOpenGL from context
1 parent 928ef39 commit 8a0e8b7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

demosys/context/glfw.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ def __init__(self):
4646

4747
glfw.window_hint(glfw.DOUBLEBUFFER, GL.GL_TRUE)
4848

49-
glfw.window_hint(glfw.RED_BITS, 8)
50-
glfw.window_hint(glfw.GREEN_BITS, 8)
51-
glfw.window_hint(glfw.BLUE_BITS, 8)
52-
glfw.window_hint(glfw.ALPHA_BITS, 8)
49+
# glfw.window_hint(glfw.RED_BITS, 8)
50+
# glfw.window_hint(glfw.GREEN_BITS, 8)
51+
# glfw.window_hint(glfw.BLUE_BITS, 8)
52+
# glfw.window_hint(glfw.ALPHA_BITS, 8)
5353

5454
glfw.window_hint(glfw.DEPTH_BITS, 24)
55-
glfw.window_hint(glfw.STENCIL_BITS, 8)
55+
# glfw.window_hint(glfw.STENCIL_BITS, 8)
5656

5757
monitor = None
5858
if settings.WINDOW.get('fullscreen'):

0 commit comments

Comments
 (0)