Update naga to 0.13.0@git:3c7dbc4016b84a35c69b30305b12abaeefc21fd9 (#4221)

This commit is contained in:
Nicolas Silva 2023-10-09 18:39:22 +02:00 committed by GitHub
parent a5b9ebb3c9
commit 2664da88b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 5 deletions

2
Cargo.lock generated
View File

@ -1686,7 +1686,7 @@ dependencies = [
[[package]]
name = "naga"
version = "0.13.0"
source = "git+https://github.com/gfx-rs/naga?rev=6668d0694cc51ee66c71c2ca3a1ab1081956299b#6668d0694cc51ee66c71c2ca3a1ab1081956299b"
source = "git+https://github.com/gfx-rs/naga?rev=3c7dbc4016b84a35c69b30305b12abaeefc21fd9#3c7dbc4016b84a35c69b30305b12abaeefc21fd9"
dependencies = [
"bit-set",
"bitflags 2.4.0",

View File

@ -51,7 +51,7 @@ version = "0.17"
[workspace.dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "6668d0694cc51ee66c71c2ca3a1ab1081956299b"
rev = "3c7dbc4016b84a35c69b30305b12abaeefc21fd9"
version = "0.13.0"
[workspace.dependencies]

View File

@ -77,7 +77,7 @@ thiserror = "1"
[dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "6668d0694cc51ee66c71c2ca3a1ab1081956299b"
rev = "3c7dbc4016b84a35c69b30305b12abaeefc21fd9"
version = "0.13.0"
features = ["clone", "span", "validate"]

View File

@ -350,6 +350,7 @@ fn map_storage_format_from_naga(format: naga::StorageFormat) -> wgt::TextureForm
Sf::Rgba8Snorm => Tf::Rgba8Snorm,
Sf::Rgba8Uint => Tf::Rgba8Uint,
Sf::Rgba8Sint => Tf::Rgba8Sint,
Sf::Bgra8Unorm => Tf::Bgra8Unorm,
Sf::Rgb10a2Uint => Tf::Rgb10a2Uint,
Sf::Rgb10a2Unorm => Tf::Rgb10a2Unorm,

View File

@ -120,14 +120,14 @@ android_system_properties = "0.1.1"
[dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "6668d0694cc51ee66c71c2ca3a1ab1081956299b"
rev = "3c7dbc4016b84a35c69b30305b12abaeefc21fd9"
version = "0.13.0"
features = ["clone"]
# DEV dependencies
[dev-dependencies.naga]
git = "https://github.com/gfx-rs/naga"
rev = "6668d0694cc51ee66c71c2ca3a1ab1081956299b"
rev = "3c7dbc4016b84a35c69b30305b12abaeefc21fd9"
version = "0.13.0"
features = ["wgsl-in"]