17 lines
326 B
Rust
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;
|