summaryrefslogtreecommitdiffstats
path: root/renderer/src/lib.rs
blob: d0ba67930b87ed2344b362c33e7c6dd5ff29889d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>;