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 0794141 commit 82a1ea9Copy full SHA for 82a1ea9
CHANGELOG.md
@@ -18,6 +18,17 @@ Possible sections in each release:
18
* Security: in case of vulnerabilities.
19
20
21
+### [v0.9.2] - 17-02-2023
22
+
23
+Fixed:
24
25
+* Fixed that `get_preferred_format()` could crash (in `wgpuSurfaceGetSupportedFormats`) due to an upstream bug in wgpu-native (#342)
26
27
+Added:
28
29
+* The shadertoy util now supports GLSL, so code from the shadertoy website can be direcly copied and run with wgpu (#343)
30
31
32
### [v0.9.1] - 13-02-2023
33
34
Changed:
wgpu/__init__.py
@@ -8,7 +8,7 @@
8
from .base import * # noqa: F401,F403
9
from .gui import WgpuCanvasInterface # noqa: F401,F403
10
11
-__version__ = "0.9.1"
+__version__ = "0.9.2"
12
version_info = tuple(map(int, __version__.split(".")))
13
14
0 commit comments