vyre-driver-wgpu 0.6.5

wgpu backend for vyre IR - implements VyreBackend, owns GPU runtime, buffer pool, pipeline cache
Documentation
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};