Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-11-21 | Remove `surface` argument of `Compositor::screenshot` | 1 | -4/+5 | ||
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-04-10 | Reintroduce damage tracking for `iced_tiny_skia` | 1 | -14/+17 | ||
2024-04-09 | Port `iced_tiny_skia` to new layering architecture | 1 | -46/+26 | ||
2024-04-07 | Use built-in `[lints]` table in `Cargo.toml` | 1 | -0/+2 | ||
2024-03-24 | Reintroduce backend selection through `ICED_BACKEND` env var | 1 | -5/+16 | ||
2024-03-22 | Allow custom renderers in `Program` and `Application` | 1 | -4/+3 | ||
2024-03-07 | Fix `block_on` in `iced_wgpu` hanging Wasm builds | 1 | -2/+3 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -12/+6 | ||
2024-01-18 | Use `Self::Surface` in `Compositor` implementors | 1 | -3/+3 | ||
2024-01-18 | Resize surface in `configure_surface` in `iced_tiny_skia` | 1 | -10/+14 | ||
2024-01-18 | Nest `age` declaration inside `last_primitives` | 1 | -2/+2 | ||
2024-01-18 | Avoid stacking new primitives when undamaged | 1 | -19/+21 | ||
2024-01-18 | Support out-of-order `Buffer` ages in `iced_tiny_skia` | 1 | -17/+15 | ||
2024-01-18 | Make `compatible_window` mandatory in `Compositor` | 1 | -16/+10 | ||
2024-01-18 | Remove `Compositor` window generic | 1 | -27/+29 | ||
And update `glyphon` and `window_clipboard` | |||||
2024-01-16 | WIP raw-window-handle 0.6 | 1 | -27/+29 | ||
2024-01-17 | Update to `softbuffer` 0.3, tracking up to `age` sets of primitives | 1 | -44/+77 | ||
2023-12-02 | Separate `Compositor::new` from `Compositor::create_renderer` | 1 | -20/+8 | ||
2023-09-09 | Deny `broken_intradoc_links` and verify documentation in CI | 1 | -0/+1 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -4/+11 | ||
2023-07-21 | refactored window storage; | 1 | -0/+6 | ||
new helper window events (Destroyed, Created); clippy + fmt; | |||||
2023-06-29 | Introduce custom backend-specific primitives | 1 | -2/+2 | ||
2023-06-06 | Added offscreen rendering support for wgpu & tiny-skia exposed with the ↵ | 1 | -3/+73 | ||
window::screenshot command. | |||||
2023-04-27 | Remove unnecessary `last_` prefix in `Surface` of `iced_tiny_skia` | 1 | -9/+9 | ||
2023-04-27 | Invalidate `last_primitives` on resize in `iced_tiny_skia` | 1 | -10/+12 | ||
2023-04-27 | Fix double reference in `compositor` in `iced_tiny_skia` | 1 | -1/+1 | ||
2023-04-27 | Move damage tracking logic to `compositor` in `iced_tiny_skia` | 1 | -15/+39 | ||
2023-04-26 | Update `tiny-skia` and `resvg` | 1 | -7/+7 | ||
2023-04-26 | Revert "Use `pixels` for presentation in `iced_tiny_skia` when possible" | 1 | -63/+13 | ||
This reverts commit 16e6efe020e75d51958875fa198196534679af8d. | |||||
2023-04-08 | Use `pixels` for presentation in `iced_tiny_skia` when possible | 1 | -13/+63 | ||
2023-04-05 | Revert "Use `softbuffer` fork with owned pixel buffer" | 1 | -26/+16 | ||
This reverts commit 92d61e5c592818745abbab245a82cb14b262ae67. The owned pixel buffer zeroes the data in some platforms. `softbuffer` will need some first-class support for damage regions. | |||||
2023-04-05 | Use `softbuffer` fork with owned pixel buffer | 1 | -16/+26 | ||
2023-04-05 | Present new frame only when damaged in `iced_tiny_skia` | 1 | -6/+8 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -4/+5 | ||
2023-03-02 | Reuse `ClipMask` in `iced_tiny_skia` | 1 | -2/+5 | ||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -2/+1 | ||
2023-02-26 | Use `Surface::buffer` directly for drawing in `iced_tiny_skia` | 1 | -19/+11 | ||
... with a nice little color trick :^) | |||||
2023-02-25 | Resize `Surface::buffer` instead of reallocating in `iced_tiny_skia` | 1 | -1/+2 | ||
2023-02-25 | Implement basic presentation with `softbuffer` for `iced_tiny_skia` | 1 | -14/+52 | ||
2023-02-25 | Scaffold `iced_tiny_skia` and connect it to `iced_renderer` | 1 | -0/+96 | ||