summaryrefslogtreecommitdiffstats
path: root/graphics/src/image.rs
blob: 04f4ff9d0a111d1e79daf8135b0072111a52d699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
//! Render images.
#[cfg(feature = "image_rs")]
pub mod raster;

#[cfg(feature = "svg")]
pub mod vector;

pub mod storage;

pub use storage::Storage;