Skip to content

Commit b373392

Browse files
authored
Use wgpu-native 0.19.3.1 (#474)
1 parent 3719d51 commit b373392

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

wgpu/backends/wgpu_native/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010

1111
# The wgpu-native version that we target/expect
12-
__version__ = "0.19.1.1"
13-
__commit_sha__ = "569a2be60d1dc90a660c1c96ffb3722942ada782"
12+
__version__ = "0.19.3.1"
13+
__commit_sha__ = "8f94e257f4abef4e5333fc1b181c2b404d6e34c0"
1414
version_info = tuple(map(int, __version__.split(".")))
1515
_check_expected_version(version_info) # produces a warning on mismatch
1616

wgpu/resources/wgpu.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ typedef enum WGPUNativeFeature {
2727
WGPUNativeFeature_TextureBindingArray = 0x00030006,
2828
WGPUNativeFeature_SampledTextureAndStorageBufferArrayNonUniformIndexing = 0x00030007,
2929
WGPUNativeFeature_PipelineStatisticsQuery = 0x00030008,
30+
WGPUNativeFeature_StorageResourceBindingArray = 0x00030009,
31+
WGPUNativeFeature_PartiallyBoundBindingArray = 0x0003000A,
3032
WGPUNativeFeature_Force32 = 0x7FFFFFFF
3133
} WGPUNativeFeature;
3234

0 commit comments

Comments
 (0)