We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f0d096 commit 6b079cfCopy full SHA for 6b079cf
p5/sketch/Skia2DRenderer/base.py
@@ -75,9 +75,6 @@ def clean_up(self):
75
def glfw_window(self):
76
if not glfw.init():
77
raise RuntimeError("glfw.init() failed")
78
- glfw.window_hint(glfw.STENCIL_BITS, 8)
79
- glfw.window_hint(glfw.SAMPLES, 4)
80
- GL.glEnable(GL.GL_MULTISAMPLE)
81
window = glfw.create_window(*self._size, "p5py", None, None)
82
glfw.make_context_current(window)
83
return window
0 commit comments