//!
//! Data structures to store pixel data, also called *Pixmaps*
//!
use Arc;
pub use *;
pub use ;
/// A [`Pixmap`] which can be used throughout multiple threads
///
/// This is simply an [`Arc`] around a pixmap because pixmaps are already implementing
/// interior mutability and thus are already [`Send`] and [`Sync`]. The Arc then allows actual
/// sharing between multiple contexts because it provides a [`Clone`] implementation that refers
/// to the same data.
pub type SharedPixmap = ;