Skip to content

Commit

Permalink
examples: Update wgpu dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ids1024 authored and wash2 committed Nov 16, 2023
1 parent e63ab5f commit c490084
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ drm-fourcc = "2.2.0"
font-kit = "0.11.0"
image = "0.24"
env_logger = "0.10"
wgpu = "0.17.1"
wgpu = "0.18.0"
raqote = "0.8.2"
raw-window-handle = "0.5.2"
pollster = "0.3.0"
Expand Down
4 changes: 3 additions & 1 deletion examples/wgpu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,12 @@ impl WindowHandler for Wgpu {
resolve_target: None,
ops: wgpu::Operations {
load: wgpu::LoadOp::Clear(wgpu::Color::BLUE),
store: true,
store: wgpu::StoreOp::Store,
},
})],
depth_stencil_attachment: None,
timestamp_writes: None,
occlusion_query_set: None,
});
}

Expand Down

0 comments on commit c490084

Please sign in to comment.