summaryrefslogtreecommitdiffstats
path: root/native/src/image.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-174/+0
|
* Remove `Clone` bound for `Bytes::new` in `image`Libravatar Héctor Ramón Jiménez2023-02-181-3/+3
|
* Wrap image `Bytes` with `Arc` instead of `Data`Libravatar Héctor Ramón Jiménez2023-02-171-35/+18
|
* image: Allow any kind of data that implements `AsRef<[u8]>` for the image dataLibravatar Sebastian Dröge2023-02-171-7/+64
| | | | | | It's not required anywhere for it to be a plain slice or a `Vec` and this makes it possible to use data allocated in a different way without copying.
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-271-2/+2
|
* Use RGBA texture for `image` and `svg` pipelinesLibravatar Héctor Ramón Jiménez2022-11-051-5/+5
|
* Refactor some `image` traits a bitLibravatar Héctor Ramón Jiménez2022-11-051-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`.
* Unify methods by leveraging `Into<Cow>` in `image` and `svg`Libravatar Héctor Ramón Jiménez2022-11-051-23/+5
|
* Use `Cow<'static, [u8]>` in image/svg, add constructors taking &[u8]`Libravatar Ian Douglas Scott2022-10-031-4/+27
| | | | | | | | | | | | | 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]`.
* Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-301-2/+2
|
* Decouple the image Handle type from the iced_native implementationLibravatar Olivier Pinon2021-12-101-2/+7
|
* Write documentation for `iced_native::image`Libravatar Héctor Ramón Jiménez2021-11-041-3/+5
|
* Introduce first-class `image` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-0/+122