summaryrefslogtreecommitdiffstats
path: root/wgpu/src/image/atlas (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-04-24Make image `Cache` eviction strategy less aggressive in `iced_wgpu`Libravatar Héctor Ramón Jiménez2-0/+12
Instead of trimming unconditionally at the end of a frame, we now trim the cache only when there is a cache miss. This way, images that are not visible but still a part of the layout will stay cached. Eviction will only happen when the images are not a part of the UI for two consectuive frames.
2023-03-07Remove `image` abstractions in `iced_graphics`Libravatar Héctor Ramón Jiménez1-3/+3
2023-03-04Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez3-7/+5
2022-11-05Refactor some `image` traits a bitLibravatar Héctor Ramón Jiménez3-8/+12
- 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-05Move image/svg handling into `iced_graphics`Libravatar Ian Douglas Scott1-3/+3
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.
2022-07-09Address Clippy lintsLibravatar Poly1-4/+1
2021-02-13Add image format options to reduce code bloat, fixes #376Libravatar Greg V1-1/+1
2020-02-28Stop creating image pipeline when unnecessaryLibravatar Héctor Ramón Jiménez4-0/+147