summaryrefslogtreecommitdiffstats
path: root/wgpu/src/image/atlas.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update `wgpu` to `24` and use `cryoglyph` forkLibravatar Héctor Ramón Jiménez2025-03-091-5/+5
| | | | Co-authored-by: Winfried Baumann <codewing@web.de>
* Fix windows fighting over shared `image::Cache`Libravatar Héctor Ramón Jiménez2024-05-061-3/+35
| | | | Image caches are local to each window now.
* Make image `Cache` eviction strategy less aggressive in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-04-241-4/+11
| | | | | | | | | | | 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.
* Use two layers for `image::atlas` only on `Gl` backendLibravatar Héctor Ramón Jiménez2024-02-191-5/+9
|
* [wgpu.image] Workaround WGPU OpenGL heuristicsLibravatar PolyMeilex2024-02-181-2/+6
|
* Fix `clippy::match-wildcard-for-single-variants`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
|
* Fix `clippy::semicolon_if_nothing_returned`Libravatar Héctor Ramón Jiménez2023-09-201-1/+1
|
* Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-191-4/+4
| | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
* Use proper gamma correction mode in `image::Atlas::grow`Libravatar Héctor Ramón Jiménez2023-05-311-1/+5
|
* Avoid gamma correction when `web-colors` is enabled for imagesLibravatar Héctor Ramón Jiménez2023-05-311-1/+6
|
* Remove `dbg!` leftovers in `image::atlas`Libravatar Héctor Ramón Jiménez2023-05-111-3/+0
|
* Fix race condition when growing an `image::Atlas`Libravatar Héctor Ramón Jiménez2023-05-111-11/+27
|
* Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-05-021-4/+2
|\
| * remove unused importLibravatar David Huculak2023-04-201-2/+0
| |
| * wgpu 0.16Libravatar David Huculak2023-04-201-2/+2
| |
| * Update `wgpu` to `0.15`Libravatar Elham Aryanpur2023-04-131-0/+2
| |
* | Update `wgpu` and `cosmic-text`Libravatar Héctor Ramón Jiménez2023-04-081-0/+2
| |
* | Remove `image` abstractions in `iced_graphics`Libravatar Héctor Ramón Jiménez2023-03-071-99/+91
| |
* | Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-2/+2
| |
* | Refactor `image::Pipeline` into `prepare` and `render` architectureLibravatar Héctor Ramón Jiménez2023-02-241-25/+24
|/
* Use RGBA texture for `image` and `svg` pipelinesLibravatar Héctor Ramón Jiménez2022-11-051-2/+2
|
* Refactor some `image` traits a bitLibravatar Héctor Ramón Jiménez2022-11-051-6/+8
| | | | | | | - 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-93/+98
| | | | | | | | | 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.
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-07-091-7/+1
|
* Address Clippy lintsLibravatar Poly2022-07-091-1/+1
|
* wgpu: Update to 0.10Libravatar Poly2021-08-191-7/+10
|
* Upgrade wgpuLibravatar Dispersia2021-04-111-11/+13
|
* Add labels to `iced_wgpu` internalsLibravatar Héctor Ramón Jiménez2020-08-311-3/+3
|
* Fix `offset` calculation in `image::Atlas`Libravatar Héctor Ramón Jiménez2020-08-271-1/+1
|
* Fix `layers` initialization in `image::Atlas`Libravatar Héctor Ramón Jiménez2020-08-271-1/+1
|
* Update `image` pipeline in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-08-271-16/+60
|
* Update `wgpu` to `0.5` in `iced_wgpu` :tada:Libravatar Héctor Ramón Jiménez2020-04-071-26/+12
|
* Stop creating image pipeline when unnecessaryLibravatar Héctor Ramón Jiménez2020-02-281-0/+361