diff --git a/wgpu-core/src/device/queue.rs b/wgpu-core/src/device/queue.rs index 3e682f9f23..727982a741 100644 --- a/wgpu-core/src/device/queue.rs +++ b/wgpu-core/src/device/queue.rs @@ -294,7 +294,7 @@ impl Global { None => {} } - if size.width == 0 || size.height == 0 || size.width == 0 { + if size.width == 0 || size.height == 0 || size.depth == 0 { tracing::trace!("Ignoring write_texture of size 0"); return Ok(()); }