From 0ef5ab6c84643784d37801598c68a259f0ca64ff Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 11 May 2023 20:19:37 +0200 Subject: Remove `dbg!` leftovers in `image::atlas` --- wgpu/src/image/atlas.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'wgpu/src/image') 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); -- cgit