Skip to content

Commit 85fda2d

Browse files
Update to ash 0.37.1 to replace deprecated function call (#3273)
* update to ash 0.37.1 to fix CI * changelog * Use equals for ash version Co-authored-by: Connor Fitzgerald <[email protected]> Co-authored-by: Connor Fitzgerald <[email protected]>
1 parent 458fb9b commit 85fda2d

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,10 @@ Additionally `Surface::get_default_config` now returns an Option and returns Non
179179

180180
- Let the wgpu examples `framework.rs` compile again under Emscripten. By @jimblandy in [#3246](https://github.com/gfx-rs/wgpu/pull/3246)
181181

182+
#### Vulkan
183+
184+
- Update ash to 0.37.1+1.3.235 to fix CI breaking by changing a call to the deprecated `debug_utils_set_object_name()` function to `set_debug_utils_object_name()` by @elabajaba in [#3273](https://github.com/gfx-rs/wgpu/pull/3273)
185+
182186
### Examples
183187

184188
- Log adapter info in hello example on wasm target by @JolifantoBambla in [#2858](https://github.com/gfx-rs/wgpu/pull/2858)

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ objc = "0.2.5"
8888
core-graphics-types = "0.1"
8989

9090
# Vulkan dependencies
91-
ash = "0.37"
91+
ash = "0.37.1"
9292
gpu-alloc = "0.5"
9393
gpu-descriptor = "0.2"
9494
android_system_properties = "0.1.1"

wgpu-hal/src/vulkan/device.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ impl super::DeviceShared {
5252
let name = unsafe { CStr::from_bytes_with_nul_unchecked(name_bytes) };
5353

5454
let _result = unsafe {
55-
extension.debug_utils_set_object_name(
55+
extension.set_debug_utils_object_name(
5656
self.raw.handle(),
5757
&vk::DebugUtilsObjectNameInfoEXT::builder()
5858
.object_type(object_type)

0 commit comments

Comments
 (0)