Skip to content

Commit

Permalink
fix: request webgpu features for the device
Browse files Browse the repository at this point in the history
  • Loading branch information
panekj authored Oct 21, 2023
1 parent ccb0f71 commit 77ae3cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vger/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl VgerRenderer {

let (device, queue) = futures::executor::block_on(adapter.request_device(
&wgpu::DeviceDescriptor {
features: wgpu::Features::empty(),
features: wgpu::Features::all_webgpu_mask(),

Check warning on line 53 in vger/src/lib.rs

View check run for this annotation

Codecov / codecov/patch

vger/src/lib.rs#L53

Added line #L53 was not covered by tests
limits: wgpu::Limits::default(),
label: None,
},
Expand Down

0 comments on commit 77ae3cf

Please sign in to comment.