Fixed typo in texture size check

This commit is contained in:
Leon Scherer 2020-09-25 14:21:38 +02:00
parent a56f9949ec
commit 1fecbe18ed

View File

@ -294,7 +294,7 @@ impl<G: GlobalIdentityHandlerFactory> Global<G> {
None => {} 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"); tracing::trace!("Ignoring write_texture of size 0");
return Ok(()); return Ok(());
} }