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