librashader/librashader-runtime/src/lib.rs

20 lines
370 B
Rust
Raw Normal View History

2022-12-01 14:50:57 +11:00
//! Helpers and shared logic for librashader runtime implementations.
/// Scaling helpers.
2022-11-30 17:38:05 +11:00
pub mod scaling;
2022-12-01 14:50:57 +11:00
/// Semantics helpers.
pub mod semantics;
2022-12-01 14:50:57 +11:00
/// Uniform binding helpers.
pub mod uniforms;
2022-12-01 14:50:57 +11:00
/// Parameter reflection helpers and traits.
pub mod parameters;
/// Filter chain helpers and traits.
pub mod filter_chain;
2022-12-02 09:11:42 +11:00
/// Image handling helpers.
pub mod image;