mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
Fix error message for sampler arrays (#7704)
This commit is contained in:
parent
26bab56fd5
commit
45b3d66301
@ -57,6 +57,10 @@ Bottom level categories:
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
#### General
|
||||
|
||||
- Fix error message for sampler array limit. By @LPGhatguy in [#7704](https://github.com/gfx-rs/wgpu/pull/7704).
|
||||
|
||||
#### Naga
|
||||
|
||||
Naga now infers the correct binding layout when a resource appears only in an assignment to `_`. By @andyleiserson in [#7540](https://github.com/gfx-rs/wgpu/pull/7540).
|
||||
|
||||
@ -255,7 +255,7 @@ impl BindingTypeMaxCountErrorKind {
|
||||
"max_binding_array_elements_per_shader_stage"
|
||||
}
|
||||
BindingTypeMaxCountErrorKind::BindingArraySamplerElements => {
|
||||
"max_binding_array_elements_per_shader_stage"
|
||||
"max_binding_array_sampler_elements_per_shader_stage"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user