summaryrefslogtreecommitdiffstats
path: root/graphics/src/image.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
|
* Write missing documentation in `iced_graphics`Libravatar Héctor Ramón Jiménez2023-05-111-0/+1
|
* Remove `image` abstractions in `iced_graphics`Libravatar Héctor Ramón Jiménez2023-03-071-7/+91
|
* Refactor some `image` traits a bitLibravatar Héctor Ramón Jiménez2022-11-051-27/+3
| | | | | | | - 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`.
* Move image/svg handling into `iced_graphics`Libravatar Ian Douglas Scott2022-11-051-0/+34
The `TextureStore` trait is implemented by the atlas, and can also be implemented in the glow renderer or in a software renderer. The API here may be improved in the future, but API stability is presumably not a huge issue since these types will only be used by renderer backends.