summaryrefslogtreecommitdiffstats
path: root/renderer/src/lib.rs
blob: d9c85e82c434142e68030aa21a66f6b83e316181 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
pub mod widget;
pub mod window;

mod backend;
mod settings;

pub use iced_graphics::primitive;

pub use backend::Backend;
pub use primitive::Primitive;
pub use settings::Settings;

pub use iced_graphics::{
    Antialiasing, Color, Error, Font, Point, Rectangle, Size, Vector, 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>;

#[derive(Debug, Clone)]
pub struct Geometry(pub(crate) Primitive);

impl From<Geometry> for Primitive {
    fn from(geometry: Geometry) -> Self {
        geometry.0
    }
}