Skip to content

Commit

Permalink
Update naga to 0.13.0@git:9eb3a1dc (const expressions) (#4233)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimblandy authored Oct 12, 2023
1 parent 858d7d5 commit 9df73c5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ Bottom level categories:

### Major changes

- Update Naga to 9eb3a1dc (2023-10-12), which includes support for WGSL constant expressions. By @jimblandy in [#4233](https://github.com/gfx-rs/wgpu/pull/4233)

#### Pass timestamp queries

Addition of `TimestampWrites` to compute and render passes to allow profiling.
Expand Down Expand Up @@ -102,7 +104,6 @@ By @teoxoy in [#4185](https://github.com/gfx-rs/wgpu/pull/4185)

#### General

- Update Naga to df8107b7 (2023-9-15). By @jimblandy in [#4149](https://github.com/gfx-rs/wgpu/pull/4149)
- Omit texture store bound checks since they are no-ops if out of bounds on all APIs. By @teoxoy in [#3975](https://github.com/gfx-rs/wgpu/pull/3975)
- Validate `DownlevelFlags::READ_ONLY_DEPTH_STENCIL`. By @teoxoy in [#4031](https://github.com/gfx-rs/wgpu/pull/4031)
- Add validation in accordance with WebGPU `setViewport` valid usage for `x`, `y` and `this.[[attachment_size]]`. By @James2022-rgb in [#4058](https://github.com/gfx-rs/wgpu/pull/4058)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ version = "0.17"

[workspace.dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "33b75a27d93c6574b11b4dd4492b85b5783d6c52"
rev = "9eb3a1dc8a522e627b266f9157442f0fe8b65ec9"
version = "0.13.0"

[workspace.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion wgpu-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ thiserror = "1"

[dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "33b75a27d93c6574b11b4dd4492b85b5783d6c52"
rev = "9eb3a1dc8a522e627b266f9157442f0fe8b65ec9"
version = "0.13.0"
features = ["clone", "span", "validate"]

Expand Down
4 changes: 2 additions & 2 deletions wgpu-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ android_system_properties = "0.1.1"

[dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "33b75a27d93c6574b11b4dd4492b85b5783d6c52"
rev = "9eb3a1dc8a522e627b266f9157442f0fe8b65ec9"
version = "0.13.0"
features = ["clone"]

# DEV dependencies
[dev-dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "33b75a27d93c6574b11b4dd4492b85b5783d6c52"
rev = "9eb3a1dc8a522e627b266f9157442f0fe8b65ec9"
version = "0.13.0"
features = ["wgsl-in"]

Expand Down

0 comments on commit 9df73c5

Please sign in to comment.