Skip to content

Commit

Permalink
Merge pull request #21 from maaku/update-deps
Browse files Browse the repository at this point in the history
Update wgpu 0.20 -> 22
  • Loading branch information
wtholliday authored Sep 7, 2024
2 parents f057b15 + dbf8335 commit 800d36c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
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.20.0"
wgpu = "22"
euclid = "0.22.7"
fontdue = "0.9.0"
rect_packer = "0.2.1"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ impl Vger {
depth_stencil: None,
multisample: wgpu::MultisampleState::default(),
multiview: None,
cache: None,
});

let layout = Layout::new(CoordinateSystem::PositiveYUp);
Expand Down
1 change: 1 addition & 0 deletions tests/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ pub async fn setup() -> (wgpu::Device, wgpu::Queue) {
label: None,
required_features: wgpu::Features::default(),
required_limits: wgpu::Limits::default(),
memory_hints: wgpu::MemoryHints::Performance,
},
trace_dir.ok().as_ref().map(std::path::Path::new),
)
Expand Down

0 comments on commit 800d36c

Please sign in to comment.