Skip to content

Commit

Permalink
fixed clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasJowett committed Feb 27, 2024
1 parent e25d604 commit 8feb721
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ struct State {
num_indices: u32,
diffuse_bind_group: wgpu::BindGroup,
_diffuse_texture: texture::Texture,
camera: Camera,
camera_buffer: wgpu::Buffer,
_camera: Camera,
_camera_buffer: wgpu::Buffer,
camera_bind_group: wgpu::BindGroup,
window: Window,
}
Expand Down Expand Up @@ -278,9 +278,9 @@ impl State {
num_indices,
diffuse_bind_group,
_diffuse_texture: diffuse_texture,
camera,
_camera: camera,
camera_bind_group,
camera_buffer,
_camera_buffer: camera_buffer,
window,
}
}
Expand Down

0 comments on commit 8feb721

Please sign in to comment.