Skip to content

Commit

Permalink
Fix unnecessary references in iced_wgpu::image
Browse files Browse the repository at this point in the history
  • Loading branch information
hecrj committed Nov 11, 2023
1 parent a5125d6 commit 9d560c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wgpu/src/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ impl Data {
binding: 0,
resource: wgpu::BindingResource::Buffer(
wgpu::BufferBinding {
buffer: &uniforms,
buffer: uniforms,
offset: 0,
size: None,
},
Expand Down Expand Up @@ -517,8 +517,8 @@ impl Pipeline {
layer.prepare(
device,
queue,
&nearest_instances,
&linear_instances,
nearest_instances,
linear_instances,
transformation,
);

Expand Down

0 comments on commit 9d560c8

Please sign in to comment.