Skip to content

Commit

Permalink
Update wgpu version
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianEddy committed Oct 31, 2024
1 parent eff9ba7 commit a07d52a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/rust_gpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crate-type = ["cdylib"]
[dependencies]
after-effects = { path = "../../after-effects" }
log = "0.4"
wgpu = { version = "22.1", features = ["spirv"] }
wgpu = { version = "23.0", features = ["spirv"] }
pollster = "0.4"
futures-intrusive = "0.5"
parking_lot = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion examples/rust_gpu/src/wgpu_proc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl<T: Sized> WgpuProcessing<T> {

let pipeline = device.create_compute_pipeline(&ComputePipelineDescriptor {
module: &shader,
entry_point: "main",
entry_point: Some("main"),
label: None,
layout: Some(&pipeline_layout),
compilation_options: Default::default(),
Expand Down
2 changes: 1 addition & 1 deletion examples/sdk_noise/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = ["cdylib"]

[dependencies]
after-effects = { path = "../../after-effects" }
rayon = "1.9"
rayon = "1.10"

[build-dependencies]
pipl = { path = "../../pipl" }

0 comments on commit a07d52a

Please sign in to comment.