diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 0c57bf11c6..75c5fa2205 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -36,7 +36,7 @@ thiserror = "1" [dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "e226cf3" +rev = "130f802" #version = "0.6" features = ["wgsl-in"] diff --git a/wgpu-hal/Cargo.toml b/wgpu-hal/Cargo.toml index 075039580b..86c0d23780 100644 --- a/wgpu-hal/Cargo.toml +++ b/wgpu-hal/Cargo.toml @@ -69,12 +69,12 @@ core-graphics-types = "0.1" [dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "e226cf3" +rev = "130f802" #version = "0.6" [dev-dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "e226cf3" +rev = "130f802" #version = "0.6" features = ["wgsl-in"] diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index 34305066ce..234a97513e 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -90,14 +90,14 @@ env_logger = "0.8" [dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "e226cf3" +rev = "130f802" #version = "0.6" optional = true # used to test all the example shaders [dev-dependencies.naga] git = "https://github.com/gfx-rs/naga" -rev = "e226cf3" +rev = "130f802" #version = "0.6" features = ["wgsl-in"] diff --git a/wgpu/src/backend/direct.rs b/wgpu/src/backend/direct.rs index 5ac71e56f7..426129146e 100644 --- a/wgpu/src/backend/direct.rs +++ b/wgpu/src/backend/direct.rs @@ -983,7 +983,7 @@ impl crate::Context for Context { let options = naga::front::spv::Options { adjust_coordinate_space: false, // we require NDC_Y_UP feature strict_capabilities: true, - flow_graph_dump_prefix: None, + block_ctx_dump_prefix: None, }; let parser = naga::front::spv::Parser::new(spv.iter().cloned(), &options); let module = parser.parse().unwrap();