iced_graphics 0.6.0

A bunch of backend-agnostic types that can be leveraged to build a renderer for Iced
Documentation
//! Draw graphics to window surfaces.
pub mod compositor;

#[cfg(feature = "opengl")]
pub mod gl_compositor;

pub use compositor::Compositor;

#[cfg(feature = "opengl")]
pub use gl_compositor::GLCompositor;