Implement transform colors

This commit is contained in:
2026-07-03 11:30:40 -04:00
parent 616bd2ae6d
commit a1b9a274f7
6 changed files with 152 additions and 20 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ pub(crate) fn xoshiro256starstar_from_seed(
) -> Xoshiro256StarStar {
let mut rng_state_actual = [0u64; 4];
// NOTE: Bit shifting is bad, but we don't have great alternatives:
// NOTE: Bit shifting is tedious, but we don't have great alternatives:
// - `chunks_exact` has issues with pointer casting
// - `u64::from_le_bytes` has issues with `OpBitcast` in SPIR-V validation
for i in 0..rng_state_actual.len() {