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