diff options
Diffstat (limited to 'graphics/src/widget/svg.rs')
-rw-r--r-- | graphics/src/widget/svg.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/graphics/src/widget/svg.rs b/graphics/src/widget/svg.rs index b74a0abb..621f1a85 100644 --- a/graphics/src/widget/svg.rs +++ b/graphics/src/widget/svg.rs @@ -1,6 +1,6 @@ //! Display vector graphics in your application. use crate::backend::{self, Backend}; -use crate::Renderer; +use crate::{Primitive, Rectangle, Renderer}; use iced_native::svg; pub use iced_native::svg::{Handle, Svg}; @@ -12,4 +12,8 @@ where fn dimensions(&self, handle: &svg::Handle) -> (u32, u32) { self.backend().viewport_dimensions(handle) } + + fn draw(&mut self, handle: svg::Handle, bounds: Rectangle) { + self.draw_primitive(Primitive::Svg { handle, bounds }) + } } |