1707: Update naga revision r=kvark a=munrocket

**Connections**
https://github.com/gfx-rs/naga/pull/1096

**Description**
Updating `naga` with new WGSL operator `select(f, t, cons)`.

**Testing**
`cargo test` passed


Co-authored-by: munrocket <munrocket@pm.me>
This commit is contained in:
bors[bot] 2021-07-22 16:53:54 +00:00 committed by GitHub
commit 10638f830f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -36,7 +36,7 @@ thiserror = "1"
[dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "7b9b56a"
rev = "e017cb4"
features = ["wgsl-in"]
[dependencies.wgt]

View File

@ -65,11 +65,11 @@ core-graphics-types = "0.1"
[dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "7b9b56a"
rev = "e017cb4"
[dev-dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "7b9b56a"
rev = "e017cb4"
features = ["wgsl-in"]
[dev-dependencies]

View File

@ -75,13 +75,13 @@ env_logger = "0.8"
[dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "7b9b56a"
rev = "e017cb4"
optional = true
# used to test all the example shaders
[dev-dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "7b9b56a"
rev = "e017cb4"
features = ["wgsl-in"]
[[example]]