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
8907d77
Support scalar pair ABI
LegNeato Sep 8, 2025
4ced396
abi layout difftest: add difftest for layout size and alignment
Firestar99 Sep 8, 2025
54872ee
abi layout difftest: add member offset checking
Firestar99 Sep 8, 2025
7c2206a
update glam: switch from `#[repr(SIMD)]` to `#[rust_gpu::vector::v1]`
Firestar99 Sep 16, 2025
a6f5f39
abi layout: give Vector a dynamic size and alignment
Firestar99 Sep 15, 2025
65e2b24
abi layout: `glam::BVec` support
Firestar99 Sep 16, 2025
ad1dd83
abi layout: make `insert_value()` support Array, Vector, Matrix
Firestar99 Sep 16, 2025
a730c69
abi layout compiletest: fix invalid-matrix-type
Firestar99 Sep 16, 2025
713231e
abi layout: change Subgroup from transparent struct to typedef
Firestar99 Sep 18, 2025
0253211
abi layout compiletest: bless complex_image_sample_inst
Firestar99 Sep 16, 2025
382f681
abi layout: remove `#[repr(SIMD)]` hack
Firestar99 Sep 16, 2025
56563c9
abi layout difftest: add all remaining glam types
Firestar99 Sep 17, 2025
b89a6d8
abi layout difftest: cuda and scalar-math feature forwarding
Firestar99 Sep 18, 2025
dabdb56
abi layout difftest: cuda and scalar-math feature testing
Firestar99 Sep 18, 2025
c001eaf
abi layout: minor code cleanups
Firestar99 Sep 24, 2025
fbfcc34
abi layout: improve documentation on `Scalar` and `Vector`
Firestar99 Sep 24, 2025
1c72e7e
abi layout: limit vectors to at most 4 components, as spec states
Firestar99 Sep 24, 2025
6f13e72
abi layout: add some compiletests
Firestar99 Sep 24, 2025
49ea80a
abi layout: assert member offsets of vectors are as expected
Firestar99 Sep 24, 2025
db60a40
compiletest: update readme normalize examples
Firestar99 Sep 24, 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
15 changes: 4 additions & 11 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.7", default-features = false }
glam = { version = ">=0.30.8", default-features = false }
libm = { version = "0.2.5", default-features = false }
bytemuck = { version = "1.23", features = ["derive"] }

Expand Down
Loading