Skip to content

Commit

Permalink
Merge pull request #14 from Zoxc/wgpu-0.18
Browse files Browse the repository at this point in the history
Update to wgpu 0.18
  • Loading branch information
wtholliday committed Oct 27, 2023
2 parents 83185e4 + 17f5d9b commit 353dd90
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 @@ -16,7 +16,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
wgpu = "0.17.0"
wgpu = "0.18.0"
euclid = "0.22.7"
fontdue = "0.7.2"
rect_packer = "0.2.1"
Expand Down
4 changes: 3 additions & 1 deletion tests/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,12 @@ pub fn render_test(
resolve_target: None,
ops: wgpu::Operations {
load: wgpu::LoadOp::Clear(wgpu::Color::BLACK),
store: true,
store: wgpu::StoreOp::Store,
},
})],
depth_stencil_attachment: None,
occlusion_query_set: None,
timestamp_writes: None,
};

vger.encode(&desc);
Expand Down

0 comments on commit 353dd90

Please sign in to comment.