vulkano-rs / vulkano

Safe and rich Rust wrapper around the Vulkan API
Apache License 2.0
4.54k stars 438 forks source link

Fix UB in `impl VertexBufferCollection for Vec<Subbuffer<T>>` #2577

Closed marc0246 closed 1 month ago

marc0246 commented 1 month ago

Vec is #[repr(Rust)]... oopsie.

Changelog:

### Bugs fixed
- Fixed UB in `impl VertexBufferCollection for Vec<Subbuffer<T>>` where a `Vec` was being transmuted.