#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![deny(unused_results)]
#![cfg_attr(docsrs, feature(doc_cfg))]
mod backend;
mod clipboard;
mod mode;
mod program;
mod quad;
mod text;
mod triangle;
pub mod conversion;
pub mod themes;
pub mod settings;
pub mod widget;
pub mod window;
pub use backend::Backend;
pub use clipboard::Clipboard;
pub use mode::Mode;
pub use settings::Settings;
pub(crate) use iced_graphics::Transformation;
#[doc(no_inline)]
pub use widget::*;
pub use iced_graphics::{
triangle::{Mesh2D, Vertex2D},
Defaults, Error, Primitive, Viewport,
};
pub use iced_native::{
Background, Color, Command, HorizontalAlignment, Length, Vector, VerticalAlignment,
};
pub type Renderer = iced_graphics::Renderer<Backend>;