Skip to content

Commit

Permalink
fix clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Mar 16, 2023
1 parent 9f3f0f3 commit 9dd9e62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wgpu-hal/src/gles/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ impl crate::CommandEncoder<super::Api> for super::CommandEncoder {
.state
.vertex_buffers
.iter()
.any(|(desc, _)| desc.step == wgt::VertexStepMode::Instance);
.any(|(desc, _binding)| desc.step == wgt::VertexStepMode::Instance);
self.cmd_buffer.commands.push(C::DrawIndexed {
topology: self.state.topology,
index_type,
Expand Down

0 comments on commit 9dd9e62

Please sign in to comment.