Skip to content

Commit

Permalink
Use wgpu-native 0.19.3.1 (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein committed Mar 7, 2024
1 parent 3719d51 commit b373392
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wgpu/backends/wgpu_native/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@


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

Expand Down
2 changes: 2 additions & 0 deletions wgpu/resources/wgpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ typedef enum WGPUNativeFeature {
WGPUNativeFeature_TextureBindingArray = 0x00030006,
WGPUNativeFeature_SampledTextureAndStorageBufferArrayNonUniformIndexing = 0x00030007,
WGPUNativeFeature_PipelineStatisticsQuery = 0x00030008,
WGPUNativeFeature_StorageResourceBindingArray = 0x00030009,
WGPUNativeFeature_PartiallyBoundBindingArray = 0x0003000A,
WGPUNativeFeature_Force32 = 0x7FFFFFFF
} WGPUNativeFeature;

Expand Down

0 comments on commit b373392

Please sign in to comment.