1 2 3 4 5 6 7 8 9 10
//! Persistent GPU buffer handles and reusable allocation pools. mod handle; mod pool; pub(crate) use handle::write_padded; pub use handle::{ BindGroupCache, BindGroupCacheStats, GpuBufferHandle, StagingBufferPool, StagingBufferPoolStats, }; pub use pool::{BufferPool, BufferPoolStats};