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 8aed6ed commit 20973d1Copy full SHA for 20973d1
CHANGELOG.md
@@ -39,6 +39,12 @@ Bottom level categories:
39
40
## Unreleased
41
42
+### Bug Fixes
43
+
44
+#### General
45
46
+- Fix profiling with `tracy`. By @waywardmonkeys in [#5988](https://github.com/gfx-rs/wgpu/pull/5988)
47
48
## 22.0.0 (2024-07-17)
49
50
### Overview
wgpu-core/src/command/render.rs
@@ -1566,7 +1566,7 @@ impl Global {
1566
1567
profiling::scope!(
1568
"CommandEncoder::run_render_pass {}",
1569
- base.label.unwrap_or("")
+ base.label.as_deref().unwrap_or("")
1570
);
1571
1572
let Some(cmd_buf) = pass.parent.as_ref() else {
0 commit comments