Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
791cf21
tool: move attr parsing to `mod attr`
Firestar99 Sep 22, 2025
823f0ab
tool: simplify attr parsing
Firestar99 Sep 22, 2025
0421550
tool: simplify attr parsing 2
Firestar99 Sep 22, 2025
706d734
tool: simplify spirv proc macro
Firestar99 Sep 22, 2025
40b0a35
tool: versionize `rust_gpu::spirv` to `rust_gpu::spirv_v0_9`
Firestar99 Sep 22, 2025
d37bf4e
tool: fixup compiletest invalid-target
Firestar99 Sep 22, 2025
17e3197
Support scalar pair ABI
LegNeato Sep 8, 2025
78c0dd0
abi layout difftest: add difftest for layout size and alignment
Firestar99 Sep 8, 2025
fe56e1f
abi layout difftest: add member offset checking
Firestar99 Sep 8, 2025
2d94b86
update glam: switch from `#[repr(SIMD)]` to `#[rust_gpu::vector::v1]`
Firestar99 Sep 16, 2025
8e7b10a
abi layout: give Vector a dynamic size and alignment
Firestar99 Sep 15, 2025
f284189
abi layout: `glam::BVec` support
Firestar99 Sep 16, 2025
13c3354
abi layout: make `insert_value()` support Array, Vector, Matrix
Firestar99 Sep 16, 2025
db54acd
abi layout compiletest: fix invalid-matrix-type
Firestar99 Sep 16, 2025
6c5cdc5
abi layout: change Subgroup from transparent struct to typedef
Firestar99 Sep 18, 2025
4a17a33
abi layout compiletest: bless complex_image_sample_inst
Firestar99 Sep 16, 2025
023f3e3
abi layout: remove `#[repr(SIMD)]` hack
Firestar99 Sep 16, 2025
0ec3c6b
abi layout difftest: add all remaining glam types
Firestar99 Sep 17, 2025
56026e5
abi layout difftest: cuda and scalar-math feature forwarding
Firestar99 Sep 18, 2025
87e47c7
abi layout difftest: cuda and scalar-math feature testing
Firestar99 Sep 18, 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
16 changes: 4 additions & 12 deletions 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 @@ -59,7 +59,7 @@ difftest = { path = "tests/difftests/lib" }
tracing = "0.1"
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "json"] }
num-traits = { version = "0.2.15", default-features = false }
glam = { version = ">=0.22, <=0.30", default-features = false }
glam = { version = ">=0.22, <=0.30", git = "https://github.com/bitshifter/glam-rs", rev = "ae9627fca68d6b5b24e80711f8c40bb92d7bdc82", default-features = false }
libm = { version = "0.2.5", default-features = false }
bytemuck = { version = "1.23", features = ["derive"] }

Expand Down
Loading