Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = "27.0.1"
wgpu = "28.0.0"
euclid = "0.22.7"
fontdue = "0.9.3"
rect_packer = "0.2.1"
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ impl Vger {
&uniform_bind_group_layout,
&image_bind_group_layout,
],
push_constant_ranges: &[],
immediate_size: 0,
});

let blend_comp = wgpu::BlendComponent {
Expand Down Expand Up @@ -251,8 +251,8 @@ impl Vger {
},
depth_stencil: None,
multisample: wgpu::MultisampleState::default(),
multiview: None,
cache: None,
multiview_mask: 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 @@ -183,6 +183,7 @@ pub fn render_test(
depth_stencil_attachment: None,
occlusion_query_set: None,
timestamp_writes: None,
multiview_mask: None,
};

vger.encode(&desc);
Expand Down