Implement Canvas support for iced_tiny_skia
This commit is contained in:
parent
3f6e28fa9b
commit
5fd5d1cdf8
65 changed files with 1354 additions and 570 deletions
16
wgpu/src/widget/canvas.rs
Normal file
16
wgpu/src/widget/canvas.rs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
mod cache;
|
||||
mod frame;
|
||||
mod geometry;
|
||||
|
||||
pub use cache::Cache;
|
||||
pub use frame::Frame;
|
||||
pub use geometry::Geometry;
|
||||
|
||||
pub use iced_native::widget::canvas::event::{self, Event};
|
||||
pub use iced_native::widget::canvas::fill::{self, Fill};
|
||||
pub use iced_native::widget::canvas::gradient::{self, Gradient};
|
||||
pub use iced_native::widget::canvas::path::{self, Path};
|
||||
pub use iced_native::widget::canvas::stroke::{self, Stroke};
|
||||
pub use iced_native::widget::canvas::{
|
||||
Canvas, Cursor, LineCap, LineDash, LineJoin, Program, Renderer, Style, Text,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue