Skip to content

Commit

Permalink
Remove debug traces
Browse files Browse the repository at this point in the history
  • Loading branch information
Remmirad committed Sep 25, 2023
1 parent 4d39f71 commit 710fd48
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions wgpu/src/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -494,9 +494,8 @@ impl Pipeline {
render_pass: &mut wgpu::RenderPass<'a>,
) {
if let Some(layer_group) = self.layers.get(layer) {
for (i, layer) in layer_group.iter().enumerate() {
for layer in layer_group.iter() {
if let Some(layer) = layer {
println!("Render {i}");
render_pass.set_pipeline(&self.pipeline);

render_pass.set_scissor_rect(
Expand Down

0 comments on commit 710fd48

Please sign in to comment.