iced-yoda/graphics/src/image.rs

11 lines
150 B
Rust
Raw Normal View History

//! Render images.
#[cfg(feature = "image_rs")]
pub mod raster;
#[cfg(feature = "svg")]
pub mod vector;
pub mod storage;
pub use storage::Storage;