Skip to content

Commit

Permalink
fix(core): handle HAL errors from query set creation
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichDonGubler committed Nov 8, 2024
1 parent 47d20d9 commit 3dfcd1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ Bottom level categories:

### Bug Fixes

#### General

- Handle query set creation as an internal error that loses the `Device`, rather than panicking. By @ErichDonGubler in [#6505](https://github.com/gfx-rs/wgpu/pull/6505).

#### Naga

- Fix crash when a texture argument is missing. By @aedm in [#6486](https://github.com/gfx-rs/wgpu/pull/6486)
Expand Down
3 changes: 2 additions & 1 deletion wgpu-core/src/device/resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3605,7 +3605,8 @@ impl Device {

let hal_desc = desc.map_label(|label| label.to_hal(self.instance_flags));

let raw = unsafe { self.raw().create_query_set(&hal_desc).unwrap() };
let raw = unsafe { self.raw().create_query_set(&hal_desc) }
.map_err(|e| self.handle_hal_error(e))?;

let query_set = QuerySet {
raw: ManuallyDrop::new(raw),
Expand Down

0 comments on commit 3dfcd1c

Please sign in to comment.