mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-26 08:44:08 +00:00
Fixed typo in texture size check
This commit is contained in:
parent
a56f9949ec
commit
1fecbe18ed
@ -294,7 +294,7 @@ impl<G: GlobalIdentityHandlerFactory> Global<G> {
|
||||
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(());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user