You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[naga] Correct override resolution in array lengths.
When the user provides values for a module's overrides, rather than
replacing override-sized array types with ordinary array types (which
could require adjusting type handles throughout the module), instead
edit all overrides to have initializers that are fully-evaluated
constant expressions. Then, change all backends to handle
override-sized arrays by retrieving their overrides' values.
For arrays whose sizes are override expressions, not simple references
to a specific override's value, let front ends built array types that
refer to anonymous overrides whose initializers are the necessary
expression.
This means that all arrays whose sizes are override expressions are
references to some `Override`. Remove `naga::PendingArraySize`, and
let `ArraySize::Pending` hold a `Handle<Override>` in all cases.
Expand `tests/gpu-tests/shader/array_size_overrides.rs` to include the
test case that motivated this approach.
Copy file name to clipboardexpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -199,6 +199,7 @@ By @Vecvec in [#6905](https://github.com/gfx-rs/wgpu/pull/6905), [#7086](https:/
199
199
-Forward '--keep-coordinate-space' flag to GLSL backend in naga-cli.By@cloone8 in [#7206](https://github.com/gfx-rs/wgpu/pull/7206).
200
200
-Allow template lists to have a trailing comma.By@KentSlaneyin [#7142](https://github.com/gfx-rs/wgpu/pull/7142).
201
201
-AllowWGSLconst declarations to have abstract types.By@jamienicol in [#7055](https://github.com/gfx-rs/wgpu/pull/7055) and [#7222](https://github.com/gfx-rs/wgpu/pull/7222).
202
+
-Allowsoverride-sized arrays to resolve to the same size without causing the type arena to panic.By@KentSlaneyin [#7082](https://github.com/gfx-rs/wgpu/pull/7082).
0 commit comments