blob: d0ba67930b87ed2344b362c33e7c6dd5ff29889d (
plain) (
tree)
|
|
pub mod window;
mod backend;
mod settings;
pub use backend::Backend;
pub use settings::Settings;
pub use iced_graphics::{
Antialiasing, Color, Error, Font, Point, Size, Viewport,
};
/// The default graphics renderer for [`iced`].
///
/// [`iced`]: https://github.com/iced-rs/iced
pub type Renderer<Theme = iced_native::Theme> =
iced_graphics::Renderer<Backend, Theme>;
|