Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-03-09 | Update `wgpu` to `24` and use `cryoglyph` fork | 1 | -5/+5 | ||
Co-authored-by: Winfried Baumann <codewing@web.de> | |||||
2025-02-21 | Run `cargo fmt` | 2 | -2/+2 | ||
2024-11-05 | Update `wgpu` to `23.0` | 1 | -2/+2 | ||
2024-09-20 | Update `wgpu` to `22.0` | 1 | -0/+1 | ||
2024-09-20 | Update `wgpu` to `0.20.1` | 1 | -0/+4 | ||
2024-09-13 | Make rendering of svg that has text work out of the box (#2560) | 1 | -9/+21 | ||
* fix: load system fonts to usvg font_db, this will make rendering of text in svg that has it * feat: add an example that renders svg that has text on it * Initialize `fontdb` only once for `vector` images * Remove `svg_text` example * Set `fontdb` for `usvg::Options` in `tiny_skia::vector` --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev> | |||||
2024-08-04 | Introduce `Svg` struct in `core::svg` | 1 | -10/+9 | ||
2024-08-04 | Introduce `Image` struct in `core::image` | 1 | -13/+6 | ||
2024-08-04 | Implement image support for `canvas` widget | 1 | -4/+20 | ||
2024-07-17 | Update `cosmic-text` and `resvg` (#2416) | 1 | -21/+14 | ||
* Update `cosmic-text`, `glyphon`, and `resvg` * Fix slow font fallback with `Shaping::Basic` in `cosmic-text` * Update `cosmic-text` and `resvg` * Update `cosmic-text` * Fix `SelectAll` action in `editor` * Fix some panics in `graphics::text::editor` * Remove empty `if` statement in `tiny_skia::vector` * Update `cosmic-text`, `glyphon`, and `rustc-hash` | |||||
2024-05-06 | Fix windows fighting over shared `image::Cache` | 3 | -62/+57 | ||
Image caches are local to each window now. | |||||
2024-05-03 | Introduce dynamic `opacity` support for `Image` and `Svg` | 1 | -5/+17 | ||
2024-05-02 | Rename `global_scale` to `scale` in `wgpu::image` | 1 | -9/+3 | ||
2024-05-02 | Simplify image rotation API and its internals | 1 | -18/+6 | ||
2024-05-02 | Add `Image` rotation support | 1 | -9/+56 | ||
Co-authored-by: DKolter <68352124+DKolter@users.noreply.github.com> | |||||
2024-05-01 | Use an opaque `Id` type for `image::Handle` | 1 | -2/+2 | ||
Hashing pointers is a terrible idea. | |||||
2024-05-01 | Use `Bytes` as the `Container` of `ImageBuffer` | 1 | -2/+2 | ||
Since we don't need to mutate images once loaded, we avoid unnecessary extra allocations. | |||||
2024-04-24 | Make image `Cache` eviction strategy less aggressive in `iced_wgpu` | 6 | -5/+41 | ||
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. | |||||
2024-04-05 | Decouple caching from layering and simplify everything | 1 | -3/+4 | ||
2024-04-03 | Redesign `iced_wgpu` layering architecture | 3 | -0/+688 | ||
2024-04-01 | Use `rustc-hash` for most of our `HashMap` and `HashSet` instances | 2 | -8/+8 | ||
2024-02-19 | Use two layers for `image::atlas` only on `Gl` backend | 1 | -5/+9 | ||
2024-02-18 | [wgpu.image] Workaround WGPU OpenGL heuristics | 1 | -2/+6 | ||
2023-12-11 | Convert SVG text nodes for in-memory SVGs in `iced_wgpu` | 1 | -20/+17 | ||
2023-12-11 | Fix import styling in `iced_wgpu::image::vector` | 1 | -1/+1 | ||
2023-12-10 | implement svg text fix for native renderer | 1 | -5/+18 | ||
Signed-off-by: Cory Frenette <cory@frenette.dev> | |||||
2023-09-20 | Revert "Chore: Apply clippy map transformations" | 1 | -1/+1 | ||
This reverts commit c997aad85d7ee6e77085e50e5e599002549d228f. | |||||
2023-09-20 | Fix `clippy::match-wildcard-for-single-variants` | 1 | -1/+1 | ||
2023-09-20 | Fix `clippy::semicolon_if_nothing_returned` | 1 | -1/+1 | ||
2023-09-19 | Chore: Apply clippy map transformations | 1 | -1/+1 | ||
Convert `.map().unwrap_or()` to `.map_or()` and similar transformations. | |||||
2023-09-19 | Chore: Inline format args for ease of reading | 2 | -5/+5 | ||
A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read. | |||||
2023-07-12 | Improve code style in `vector` modules | 1 | -11/+12 | ||
2023-07-12 | Upgrade resvg to 0.34 and tiny_skia to 0.10 | 1 | -10/+21 | ||
2023-05-31 | Use proper gamma correction mode in `image::Atlas::grow` | 1 | -1/+5 | ||
2023-05-31 | Avoid gamma correction when `web-colors` is enabled for images | 1 | -1/+6 | ||
2023-05-11 | Remove `dbg!` leftovers in `image::atlas` | 1 | -3/+0 | ||
2023-05-11 | Fix race condition when growing an `image::Atlas` | 3 | -17/+30 | ||
2023-04-26 | Update `tiny-skia` and `resvg` | 1 | -2/+4 | ||
2023-04-20 | remove unused import | 1 | -2/+0 | ||
2023-04-20 | wgpu 0.16 | 1 | -2/+2 | ||
2023-04-13 | Update `wgpu` to `0.15` | 1 | -0/+2 | ||
2023-04-08 | Update `wgpu` and `cosmic-text` | 1 | -0/+2 | ||
2023-03-07 | Remove `image` abstractions in `iced_graphics` | 4 | -102/+396 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 4 | -9/+7 | ||
2023-02-24 | Refactor `image::Pipeline` into `prepare` and `render` architecture | 1 | -25/+24 | ||
2022-11-05 | Use RGBA texture for `image` and `svg` pipelines | 1 | -2/+2 | ||
2022-11-05 | Refactor some `image` traits a bit | 4 | -14/+20 | ||
- 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-05 | Move image/svg handling into `iced_graphics` | 4 | -491/+101 | ||
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-09 | Fix `clippy` lints for all crates and features | 1 | -1/+1 | ||
... and check those in CI as well! | |||||
2022-07-09 | Run `cargo fmt` | 1 | -7/+1 | ||