2023-02-25 15:38:25 +01:00
|
|
|
pub mod window;
|
|
|
|
|
|
|
|
|
|
mod backend;
|
|
|
|
|
mod settings;
|
2023-02-26 23:40:17 +01:00
|
|
|
mod text;
|
2023-02-25 15:38:25 +01:00
|
|
|
|
|
|
|
|
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>;
|