diff options
author | 2023-05-11 20:19:37 +0200 | |
---|---|---|
committer | 2023-05-11 20:19:37 +0200 | |
commit | 0ef5ab6c84643784d37801598c68a259f0ca64ff (patch) | |
tree | 4db36140bff155342995d34ddc21ce93ceb2e8d7 /wgpu/src/image | |
parent | f02f0c01ea9b46b3b303c805b4e001a3f10be748 (diff) | |
download | iced-0ef5ab6c84643784d37801598c68a259f0ca64ff.tar.gz iced-0ef5ab6c84643784d37801598c68a259f0ca64ff.tar.bz2 iced-0ef5ab6c84643784d37801598c68a259f0ca64ff.zip |
Remove `dbg!` leftovers in `image::atlas`
Diffstat (limited to 'wgpu/src/image')
-rw-r--r-- | wgpu/src/image/atlas.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/wgpu/src/image/atlas.rs b/wgpu/src/image/atlas.rs index 2296710b..9b6dcc46 100644 --- a/wgpu/src/image/atlas.rs +++ b/wgpu/src/image/atlas.rs @@ -74,9 +74,6 @@ impl Atlas { let current_size = self.layers.len(); let entry = self.allocate(width, height)?; - dbg!(&entry); - dbg!(&self.layers); - // We grow the internal texture after allocating if necessary let new_layers = self.layers.len() - current_size; self.grow(new_layers, device, encoder); |