Skip to content

Commit

Permalink
Update name of variable
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Nov 20, 2024
1 parent e6ca719 commit 606b89d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions experiments/2024-10-30/src/render/pipeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl Pipeline {
let shader =
device.create_shader_module(wgpu::include_wgsl!("shader.wgsl"));

let pipeline =
let render_pipeline =
device.create_render_pipeline(&wgpu::RenderPipelineDescriptor {
label: None,
layout: Some(&layout),
Expand Down Expand Up @@ -97,7 +97,7 @@ impl Pipeline {
});

Pipeline {
render_pipeline: pipeline,
render_pipeline,
bind_group,
}
}
Expand Down

0 comments on commit 606b89d

Please sign in to comment.