devela 0.28.0

A development substrate of coherence.
Documentation
// devela::media::visual::image::raster::format
//
//! Raster image formats.
//

mod impl_const;

mod base; // RasterFormat, (RasterTransfer, RasterAlpha)
mod channels; // (RasterChannels)
mod packed; // (RasterPackedChannels)
mod sample; // (RasterSampleFormat)

crate::structural_mods! { // _mods
    _mods {
        pub use super::{
            base::*,
            channels::*,
            packed::*,
            sample::*,
        };
    }
}