radiant-rs 0.15.0

Thread-safe Rust sprite rendering engine with a friendly API and custom shader support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "backend-wgpu")]
mod wgpu;

#[cfg(feature = "backend-wgpu")]
pub mod backend {
    pub use super::wgpu::*;
}

#[cfg(feature = "backend-null")]
mod null;

#[cfg(feature = "backend-null")]
pub mod backend {
    pub use super::null::*;
}