Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Run `cargo fmt` | 1 | -4/+4 | ||
2024-12-14 | Support custom renderers in `iced_test` through `renderer::Headless` trait | 1 | -0/+28 | ||
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-20 | Introduce `strict-assertions` feature flag | 1 | -0/+1 | ||
For now, this feature flag only enables validation in `iced_wgpu`; which has become quite expensive since its `0.20` release. | |||||
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-22 | Produce a compile error in `iced_renderer` when no backend is enabled | 1 | -0/+7 | ||
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` | 3 | -115/+149 | ||
2024-04-05 | Decouple caching from layering and simplify everything | 1 | -4/+4 | ||
2024-04-03 | Redesign `iced_wgpu` layering architecture | 2 | -9/+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` | 3 | -63/+9 | ||
2024-03-22 | Make `iced_tiny_skia` optional with a `tiny-skia` feature | 4 | -52/+45 | ||
2024-03-22 | Fix broken links in documentation | 1 | -3/+4 | ||
2024-03-22 | Restore `canvas::Frame` API | 3 | -386/+7 | ||
2024-03-21 | Remove `custom` module from `iced_renderer` | 1 | -162/+0 | ||
2024-03-21 | Implement composable, type-safe renderer fallback | 5 | -647/+607 | ||
2024-03-21 | Use `&mut dyn Surface` instead of `&mut Box<dyn Surface>` | 2 | -2/+2 | ||
2024-03-21 | Gate `Custom` variants in `iced_renderer` behind `custom` feature | 5 | -9/+34 | ||
2024-03-21 | Draft support for dynamic custom renderer injection | 5 | -16/+289 | ||
2024-03-16 | Show name of current `Theme` in `clock` example | 1 | -2/+2 | ||
2024-03-07 | Fix `block_on` in `iced_wgpu` hanging Wasm builds | 1 | -11/+16 | ||
2024-02-20 | Embed Fira Sans font on Wasm builds by default | 1 | -0/+1 | ||
2024-02-02 | Introduce `with_transformation` to `Renderer` trait | 2 | -9/+10 | ||
2024-02-02 | Implement `transform` method for `Geometry` | 1 | -10/+25 | ||
2024-01-31 | Add return values to Frame::with_clip() and Frame::with_save() | 1 | -4/+12 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 4 | -26/+23 | ||
2024-01-18 | Make `compatible_window` mandatory in `Compositor` | 1 | -2/+2 | ||
2024-01-18 | Remove redundant `ref mut` in `iced_renderer::compositor` | 1 | -3/+3 | ||
2024-01-18 | Remove `Compositor` window generic | 2 | -23/+14 | ||
And update `glyphon` and `window_clipboard` | |||||
2024-01-16 | WIP raw-window-handle 0.6 | 1 | -22/+29 | ||
2024-01-17 | Update to `softbuffer` 0.3, tracking up to `age` sets of primitives | 1 | -0/+1 | ||
2024-01-04 | Remove backend module in renderer crate that has been unused since ↵ | 1 | -100/+0 | ||
https://github.com/iced-rs/iced/pull/1932 | |||||
2023-12-02 | Separate `Compositor::new` from `Compositor::create_renderer` | 1 | -32/+15 | ||
2023-12-02 | Rename `viewport` to `clip_bounds` | 1 | -6/+6 | ||
2023-12-01 | Clip text to `viewport` bounds instead of layout bounds | 1 | -3/+10 | ||
2023-11-29 | Fix `renderer` method in `iced_renderer::Compositor` | 1 | -4/+0 | ||
2023-11-14 | Re-organize `custom` module as `pipeline` module | 5 | -327/+23 | ||
... and move `Shader` widget to `iced_widget` crate |