1 2 3 4 5 6 7 8 9
//! Vulkan backend for GPU allocation //! //! This module provides a Vulkan implementation of the GpuAllocator trait using the ash crate. pub mod allocator; pub mod buffer; pub use allocator::VulkanAllocator; pub use buffer::VulkanBuffer;