mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 06:44:14 +00:00
Fix error message in create_render_pass (#6041)
# Conflicts: # CHANGELOG.md
This commit is contained in:
parent
60983f3ab1
commit
a1c5e09c30
@ -46,6 +46,7 @@ Bottom level categories:
|
|||||||
- Fix function for checking bind compatibility to error instead of panic. By @sagudev [#6012](https://github.com/gfx-rs/wgpu/pull/6012)
|
- Fix function for checking bind compatibility to error instead of panic. By @sagudev [#6012](https://github.com/gfx-rs/wgpu/pull/6012)
|
||||||
- Fix crash when dropping the surface after the device. By @wumpf in [#6052](https://github.com/gfx-rs/wgpu/pull/6052)
|
- Fix crash when dropping the surface after the device. By @wumpf in [#6052](https://github.com/gfx-rs/wgpu/pull/6052)
|
||||||
- Fix length of copy in `queue_write_texture`. By @teoxoy in [#6009](https://github.com/gfx-rs/wgpu/pull/6009)
|
- Fix length of copy in `queue_write_texture`. By @teoxoy in [#6009](https://github.com/gfx-rs/wgpu/pull/6009)
|
||||||
|
- Fix error message that is thrown in create_render_pass to no longer say `compute_pass`. By @matthew-wong1 [#6041](https://github.com/gfx-rs/wgpu/pull/6041)
|
||||||
|
|
||||||
## 22.0.0 (2024-07-17)
|
## 22.0.0 (2024-07-17)
|
||||||
|
|
||||||
|
@ -1981,7 +1981,7 @@ impl crate::Context for ContextWgpuCore {
|
|||||||
&encoder_data.error_sink,
|
&encoder_data.error_sink,
|
||||||
cause,
|
cause,
|
||||||
desc.label,
|
desc.label,
|
||||||
"CommandEncoder::begin_compute_pass",
|
"CommandEncoder::begin_render_pass",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user