2022-12-22 13:13:35 +11:00
|
|
|
#![feature(array_chunks)]
|
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.
|
2022-11-29 16:23:48 +11:00
|
|
|
pub mod semantics;
|
2022-12-01 14:50:57 +11:00
|
|
|
|
|
|
|
/// Uniform binding helpers.
|
2022-11-29 16:23:48 +11:00
|
|
|
pub mod uniforms;
|
2022-12-01 14:50:57 +11:00
|
|
|
|
|
|
|
/// Parameter reflection helpers and traits.
|
|
|
|
pub mod parameters;
|
|
|
|
|
2022-12-02 09:11:42 +11:00
|
|
|
/// Image handling helpers.
|
|
|
|
pub mod image;
|
2022-12-06 17:01:21 +11:00
|
|
|
|
|
|
|
/// Ringbuffer helpers
|
|
|
|
pub mod ringbuffer;
|