We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cecdd3f commit 177b2a4Copy full SHA for 177b2a4
CHANGELOG.md
@@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
> breaking changes may be introduced
11
> at any time without warning.
12
13
+## [0.1.6] - 2024-06-03
14
+
15
+### Changed
16
17
+- Don't catch a failure to import `OpenGL` in `moderngl.py`.
18
19
## [0.1.5] - 2024-06-03
20
21
### Fixed
src/libretro/drivers/video/opengl/moderngl.py
@@ -28,11 +28,7 @@
28
VertexArray,
29
create_context,
30
)
31
-
32
-try:
33
- from OpenGL import GL
34
-except ImportError | AttributeError:
35
- GL = None
+from OpenGL import GL
36
37
from libretro.api.av import retro_game_geometry, retro_system_av_info
38
from libretro.api.video import (
0 commit comments