Skip to content

Commit

Permalink
fix(core): handle HAL errors from query set creation (#6505)
Browse files Browse the repository at this point in the history
* fix(core): handle HAL errors from query set creation

* Update CHANGELOG.md

Co-authored-by: Andreas Reich <[email protected]>

---------

Co-authored-by: Andreas Reich <[email protected]>
  • Loading branch information
ErichDonGubler and Wumpf authored Nov 9, 2024
1 parent b89a57f commit 01973a9
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 failure 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 01973a9

Please sign in to comment.