Skip to content

Commit

Permalink
Clippy 1.77 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-harding committed Mar 22, 2024
1 parent bf7a513 commit 2b0578f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/rendering/pipelines/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,29 @@ impl Pipelines {
targets: &Targets,
) -> Self {
Pipelines {
cursor: cursor::Pipeline::new(&device, &targets.monochrome.view),
cmdline_cursor: cursor::Pipeline::new(&device, &targets.monochrome.view),
blend: blend::Pipeline::new(&device, &targets.color.view),
default_fill: default_fill::Pipeline::new(&device, Texture::LINEAR_FORMAT),
cursor: cursor::Pipeline::new(device, &targets.monochrome.view),
cmdline_cursor: cursor::Pipeline::new(device, &targets.monochrome.view),
blend: blend::Pipeline::new(device, &targets.color.view),
default_fill: default_fill::Pipeline::new(device, Texture::LINEAR_FORMAT),
cell_fill: cell_fill::Pipeline::new(
&device,
device,
text_bind_group_layout,
Texture::LINEAR_FORMAT,
),
monochrome: text::Pipeline::new(
&device,
device,
text_bind_group_layout,
text::Kind::Monochrome,
),
emoji: text::Pipeline::new(&device, text_bind_group_layout, text::Kind::Emoji),
lines: lines::Pipeline::new(&device, text_bind_group_layout, Texture::LINEAR_FORMAT),
emoji: text::Pipeline::new(device, text_bind_group_layout, text::Kind::Emoji),
lines: lines::Pipeline::new(device, text_bind_group_layout, Texture::LINEAR_FORMAT),
gamma_blit_final: gamma_blit::Pipeline::new(
&device,
device,
surface_config.format,
&targets.color.view,
),
blit_png: png_blit::Pipeline::new(
&device,
device,
&targets.color.view,
surface_config.width as f32 / targets.png_size.0.x as f32,
),
Expand Down

0 comments on commit 2b0578f

Please sign in to comment.