Scaffold iced_tiny_skia and connect it to iced_renderer
This commit is contained in:
parent
a01bc865a0
commit
8c373cd497
10 changed files with 318 additions and 12 deletions
16
tiny_skia/src/lib.rs
Normal file
16
tiny_skia/src/lib.rs
Normal file
|
|
@ -0,0 +1,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>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue