Expand description
Thread safety implementations for Vulkan structures
Vulkan structures contain pNext pointers for extension chains. These are *const c_void pointers that are typically null or point to other Vulkan structures. They are safe to send between threads because:
- They are read-only (const pointers)
- They point to immutable data during structure lifetime
- Vulkan API guarantees thread safety for these structures