Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
928ed97
Initial changes
SupaMaggie70Incorporated Aug 15, 2025
2f2cf37
Added set_options to WGSL front and SPV back
SupaMaggie70Incorporated Aug 15, 2025
c2ece41
Merge branch 'trunk' into bencher-update
SupaMaggie70Incorporated Aug 17, 2025
aed95c8
Merge branch 'trunk' into bencher-update
SupaMaggie70Incorporated Aug 20, 2025
77e8ade
Merge branch 'trunk' into bencher-update
SupaMaggie70Incorporated Aug 24, 2025
0cb64fd
Updated snapshots
SupaMaggie70Incorporated Aug 24, 2025
c6e8082
Merge branch 'trunk' into bencher-update
SupaMaggie70Incorporated Aug 27, 2025
6851ec4
Merge branch 'trunk' into bencher-update
SupaMaggie70Incorporated Sep 1, 2025
e00ef99
Moved stuff into a naga-test crate to avoid naga dependency on wgpu-test
SupaMaggie70Incorporated Sep 4, 2025
2fe98e2
Made naga forward features to naga-test
SupaMaggie70Incorporated Sep 4, 2025
44263ea
Merge branch 'trunk' into bencher-update
SupaMaggie70Incorporated Sep 4, 2025
06ec321
Refactored naga-test into its own top-level directory
SupaMaggie70Incorporated Sep 4, 2025
e82ce47
Merge branch 'trunk' into bencher-update
SupaMaggie70Incorporated Sep 4, 2025
17aebd6
Updated writer behavior
SupaMaggie70Incorporated Sep 4, 2025
32d1b82
Hopefully fixed spirv f16 defaults
SupaMaggie70Incorporated Sep 4, 2025
70fb81b
Undid changes to ci.yml to see if its broken again
SupaMaggie70Incorporated Sep 4, 2025
09773d7
Remade fix to broken CI
SupaMaggie70Incorporated Sep 4, 2025
7030b14
Removed all features from naga-test
SupaMaggie70Incorporated Sep 4, 2025
d906248
Addressed comments
SupaMaggie70Incorporated Sep 5, 2025
9f1e978
Merge branch 'trunk' into bencher-update
SupaMaggie70Incorporated Sep 5, 2025
aceb7cc
Fix compilation
cwfitzgerald Sep 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ members = [
"examples/standalone/*",
"lock-analyzer",
"naga-cli",
"naga-test",
"naga",
"naga/fuzz",
"naga/hlsl-snapshots",
Expand All @@ -32,6 +33,7 @@ default-members = [
"examples/standalone/*",
"lock-analyzer",
"naga-cli",
"naga-test",
"naga",
"naga/fuzz",
"naga/hlsl-snapshots",
Expand Down Expand Up @@ -64,6 +66,7 @@ authors = ["gfx-rs developers"]

[workspace.dependencies]
naga = { version = "26.0.0", path = "./naga" }
naga-test = { version = "26.0.0", path = "./naga-test" }
wgpu = { version = "26.0.0", path = "./wgpu", default-features = false, features = [
"serde",
"wgsl",
Expand Down
1 change: 1 addition & 0 deletions benches/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ naga = { workspace = true, features = [
"glsl-out",
"wgsl-out",
] }
naga-test = { workspace = true, features = [] }
nanorand.workspace = true
pollster.workspace = true
profiling.workspace = true
Expand Down
Loading
Loading