Skip to content

Commit

Permalink
Update wgpu to 0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
hecrj authored and grovesNL committed Oct 27, 2023
1 parent 6aaaf50 commit 2caa9fc
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 @@ -8,7 +8,7 @@ repository = "https://github.com/grovesNL/glyphon"
license = "MIT OR Apache-2.0 OR Zlib"

[dependencies]
wgpu = "0.17.1"
wgpu = "0.18"
etagere = "0.2.8"
cosmic-text = "0.10"
lru = "0.11"
Expand Down
4 changes: 3 additions & 1 deletion examples/hello-world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,12 @@ async fn run() {
resolve_target: None,
ops: Operations {
load: LoadOp::Clear(wgpu::Color::BLACK),
store: true,
store: wgpu::StoreOp::Store,
},
})],
depth_stencil_attachment: None,
timestamp_writes: None,
occlusion_query_set: None,
});

text_renderer.render(&atlas, &mut pass).unwrap();
Expand Down

0 comments on commit 2caa9fc

Please sign in to comment.