vyre-wgpu 0.1.0

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
11
12
13
14
15
16
//! GPU device abstraction and initialization.

pub(crate) use device::is_cached_device;
pub use device::{acquire_gpu, cached_device, init_device};

mod device;

/// Backwards-compatible cached device path.
pub mod cached_device {
    pub use super::device::cached_device;
}

/// Backwards-compatible initialization path.
pub mod init_device {
    pub use super::device::init_device;
}