2023-02-28 20:47:13 +01:00
|
|
|
pub mod widget;
|
2023-02-24 23:24:48 +01:00
|
|
|
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>;
|