Skip to content

Commit

Permalink
dev-deps: Update wgpu to 0.19
Browse files Browse the repository at this point in the history
This requires features enabled to select a backend.
  • Loading branch information
waywardmonkeys authored and teoxoy committed Mar 31, 2024
1 parent 885bc60 commit 7e1a194
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static-rc = { version = "0.6", features = ["alloc"], default-features = false, o
criterion = { version = "0.4", features = ["cargo_bench_support", "html_reports"], default-features = false }
rand = { version = "0.8", features = ["std_rng"], default-features = false }
mimalloc = { version = "0.1", default-features = false }
wgpu = { version = "0.17", features = ["wgsl"], default-features = false }
wgpu = { version = "0.19", features = ["wgsl"] }
futures = { version = "0.3", features = ["executor"], default-features = false }
pprof = { version = "0.11", features = ["criterion", "flamegraph"], default-features = false }
trybuild = { version = "1", default-features = false }
1 change: 1 addition & 0 deletions tests/wgpu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ fn in_out<IN: encase::ShaderType, OUT: encase::ShaderType>(
let instance = wgpu::Instance::new(wgpu::InstanceDescriptor {
backends: wgpu::Backends::PRIMARY,
dx12_shader_compiler: wgpu::Dx12Compiler::Fxc,
..Default::default()
});
let adapter = block_on(instance.request_adapter(&wgpu::RequestAdapterOptions {
power_preference: wgpu::PowerPreference::default(),
Expand Down

0 comments on commit 7e1a194

Please sign in to comment.