- `webgpu:shader,validation,expression,call,builtin,clamp:*` - Should check that `low < high` at compile time whenever they are const, even if x is non-const - This is not the same issue as https://github.com/gfx-rs/wgpu/issues/4387, although it might make sense to address them at the same time. - `webgpu:shader,validation,expression,call,builtin,insertBits:*` - Currently no const evaluation support at all; tracked in #4507. - Should check that `offset + count <= 32` at compile time if they are const, even if other arguments are not.
webgpu:shader,validation,expression,call,builtin,clamp:*low < highat compile time whenever they are const, even if x is non-constwebgpu:shader,validation,expression,call,builtin,insertBits:*offset + count <= 32at compile time if they are const, even if other arguments are not.