You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
manim3 v0.1.0
Traceback (most recent call last):
File "D:\src\manim3\examples\create.py", line 31, in <module>
CreateExample().run()
File "D:\src\manim3\manim3\toplevel\scene.py", line 59, in run
self._run()
File "D:\src\manim3\manim3\toplevel\scene.py", line 50, in _run
Toplevel._get_renderer().process_frame()
File "D:\src\manim3\manim3\toplevel\renderer.py", line 344, in process_frame
self._render_frame()
File "D:\src\manim3\manim3\toplevel\renderer.py", line 335, in _render_frame
self._final_framebuffer.render(self._oit_compose_vertex_array)
File "D:\src\manim3\manim3\rendering\framebuffers\framebuffer.py", line 100, in render
Toplevel._get_context().set_blendings(self._blendings)
File "D:\src\manim3\manim3\toplevel\context.py", line 48, in set_blendings
gl.glBlendFunci(
File "D:\app\conda-env\py312\Lib\site-packages\pyglet\gl\lib_wgl.py", line 66, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "D:\app\conda-env\py312\Lib\site-packages\pyglet\gl\lib.py", line 78, in errcheck
raise GLException(f'(0x{error}): {msg}')
pyglet.gl.lib.GLException: (0x1280): Invalid enum. An unacceptable value is specified for an enumerated argument.
platform: windows 10
python version 3.12.1
pyglet version 2.0.10
OpenGL version 4.3.0 NVIDIA 536.23
The text was updated successfully, but these errors were encountered:
Please check out your OpenGL version support. The gl.glBlendFunci is supported for OpenGL >= 4.0. The version restriction should be applied in toplevel/window.py.
To check out the gl version of the context attached to the created window, after the window creation insert this line:
$ cd manim3/examples $ python create.py
3.12.1
2.0.10
4.3.0 NVIDIA 536.23
The text was updated successfully, but these errors were encountered: