librashader/librashader-runtime/src/lib.rs
2022-11-30 22:50:57 -05:00

17 lines
326 B
Rust

//! Helpers and shared logic for librashader runtime implementations.
/// Scaling helpers.
pub mod scaling;
/// Semantics helpers.
pub mod semantics;
/// Uniform binding helpers.
pub mod uniforms;
/// Parameter reflection helpers and traits.
pub mod parameters;
/// Filter chain helpers and traits.
pub mod filter_chain;