Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Run `cargo fmt` | 1 | -4/+4 | ||
2024-11-21 | Remove `surface` argument of `Compositor::screenshot` | 1 | -24/+17 | ||
This argument was completely ignored by the wgpu renderer, and used only for the `clip_mask` by the `tiny_skia` renderer. I believe creating a new clip mask is correct. This way it's possible to render offscreen without needing a surface. | |||||
2024-09-10 | Add stroke_rectangle | 1 | -0/+13 | ||
This method should be able to leverage performance improvements in lyon's `tessellate_rectangle` over `tessellate_path`. | |||||
2024-08-04 | Introduce `Svg` struct in `core::svg` | 1 | -30/+6 | ||
2024-08-04 | Introduce `Image` struct in `core::image` | 1 | -41/+7 | ||
2024-08-04 | Fix broken imports in `iced_renderer` | 1 | -5/+7 | ||
2024-08-04 | Implement image support for `canvas` widget | 1 | -3/+39 | ||
2024-05-03 | Introduce dynamic `opacity` support for `Image` and `Svg` | 1 | -2/+10 | ||
2024-05-02 | Simplify image rotation API and its internals | 1 | -7/+5 | ||
2024-05-02 | Add `Image` rotation support | 1 | -2/+10 | ||
Co-authored-by: DKolter <68352124+DKolter@users.noreply.github.com> | |||||
2024-04-30 | Introduce `canvas::Cache` grouping | 1 | -6/+10 | ||
Caches with the same `Group` will share their text atlas! | |||||
2024-04-09 | Port `iced_tiny_skia` to new layering architecture | 1 | -8/+10 | ||
2024-04-08 | Reintroduce support for custom primitives in `iced_wgpu` | 1 | -5/+5 | ||
2024-04-07 | Use built-in `[lints]` table in `Cargo.toml` | 1 | -113/+145 | ||
2024-04-05 | Decouple caching from layering and simplify everything | 1 | -4/+4 | ||
2024-04-03 | Redesign `iced_wgpu` layering architecture | 1 | -8/+24 | ||
2024-04-01 | Use generic `Content` in `Text` to avoid reallocation in `fill_text` | 1 | -1/+1 | ||
2024-03-24 | Reintroduce backend selection through `ICED_BACKEND` env var | 1 | -7/+44 | ||
2024-03-22 | Rename `compositor::Renderer` to `Default` | 1 | -3/+3 | ||
2024-03-22 | Fix unnecessary `into` calls in `iced_renderer::fallback` | 1 | -4/+2 | ||
2024-03-22 | Allow custom renderers in `Program` and `Application` | 1 | -4/+9 | ||
2024-03-22 | Make `iced_tiny_skia` optional with a `tiny-skia` feature | 1 | -28/+1 | ||
2024-03-22 | Fix broken links in documentation | 1 | -3/+4 | ||
2024-03-22 | Restore `canvas::Frame` API | 1 | -13/+7 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 1 | -0/+562 | ||