summaryrefslogtreecommitdiffstats
path: root/tiny_skia/src/lib.rs
blob: 420a1ffbeb2c7149451d299dc4eee2b8ee4e6d60 (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;
mod text;

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

pub use iced_graphics::{Color, Error, Font, Point, Size, Vector, Viewport};

/// A [`tiny-skia`] graphics renderer for [`iced`].
///
/// [`tiny-skia`]: https://github.com/RazrFalcon/tiny-skia
/// [`iced`]: https://github.com/iced-rs/iced
pub type Renderer<Theme = iced_native::Theme> =
    iced_graphics::Renderer<Backend, Theme>;