summaryrefslogtreecommitdiffstats
path: root/native/src/svg.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-04Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez1-89/+0
2023-01-27Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck1-1/+1
2022-12-06Remove `appearance` from `Handle`Libravatar Héctor Ramón Jiménez1-17/+3
... and pass it directly to `Renderer::draw` instead.
2022-12-06feat: SVG styling with icon fill colorLibravatar Michael Aaron Murphy1-0/+14
2022-11-05Refactor some `image` traits a bitLibravatar Héctor Ramón Jiménez1-2/+2
- Use `Size<u32>` were applicable. - Rename `TextureStore` to `image::Storage`. - Rename `TextureStoreEntry` to `image::storage::Entry`. - Wire up `viewport_dimensions` to `iced_glow` for `Svg`.
2022-11-05Unify methods by leveraging `Into<Cow>` in `image` and `svg`Libravatar Héctor Ramón Jiménez1-9/+2
2022-10-03Use `Cow<'static, [u8]>` in image/svg, add constructors taking &[u8]`Libravatar Ian Douglas Scott1-2/+10
This should resolve https://github.com/iced-rs/iced/issues/580 by providing a way to use an image included with `include_bytes!` without needing to copy it to a `Vec` to create an image handle. It would be nice if these methods could also be `const`, but that isn't possible due to the hashing being done. This is technically a breaking change since `Handle::data()` is public. But if that is used, it's most likely in used somewhere that only relies on the type derefing to `&[u8]`.
2022-04-30Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez1-2/+2
2021-11-04Write documentation for `iced_native::svg`Libravatar Héctor Ramón Jiménez1-6/+4
2021-10-31Introduce first-class `svg` module in `iced_native`Libravatar Héctor Ramón Jiménez1-0/+90