blob: fce44e9e19e5fa518cd9e9ebee0cce0f76a8e9f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
pub mod window;
mod backend;
mod settings;
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>;
|