fast image operations
Diffstat (limited to 'src/pixels/mod.rs')
| -rw-r--r-- | src/pixels/mod.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pixels/mod.rs b/src/pixels/mod.rs new file mode 100644 index 0000000..503115a --- /dev/null +++ b/src/pixels/mod.rs @@ -0,0 +1,8 @@ +//! module for pixels ops. +#![allow(unused_imports)] +pub mod blending; +mod utility; +mod wam; +pub use blending::Blend; +pub(crate) use utility::{float, unfloat, Floatify, PMap, Trunc, Unfloatify}; +pub(crate) use wam::Wam; |