We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
StageError::InvalidWorkgroupSize
1 parent d7d2ede commit e5b0edeCopy full SHA for e5b0ede
1 file changed
wgpu-core/src/validation.rs
@@ -282,8 +282,10 @@ impl WebGpuError for InputError {
282
#[non_exhaustive]
283
pub enum StageError {
284
#[error(
285
- "Shader entry point's workgroup size {dimensions:?} ({total} total invocations) must be less or equal to the per-dimension \
286
- limit `Limits::{per_dimension_limits_desc}` of {per_dimension_limits:?} and the total invocation limit `Limits::{total_limit_desc}` of {total_limit}"
+ "Shader entry point's workgroup size {dimensions:?} ({total} total invocations) must be \
+ less or equal to the per-dimension limit `Limits::{per_dimension_limits_desc}` of \
287
+ {per_dimension_limits:?} and the total invocation limit `Limits::{total_limit_desc}` of \
288
+ {total_limit}"
289
)]
290
InvalidWorkgroupSize {
291
dimensions: [u32; 3],
0 commit comments