Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-10-26 | Use float total_cmp instead of partial_cmp to get a total order. | 1 | -4/+1 | ||
Since Rust version 1.81, sort_by will panic if the provided comparison function does not implement a total order. See https://github.com/rust/lang/rust/issues/129561 for more details. The simplest fix seems to be to use total_cmp instead of partial_cmp. | |||||
2024-04-10 | Sort damage by distance from origin in `iced_graphics::damage` | 1 | -3/+4 | ||
2024-04-10 | Reintroduce damage tracking for `iced_tiny_skia` | 1 | -0/+80 | ||
2024-04-09 | Port `iced_tiny_skia` to new layering architecture | 1 | -257/+0 | ||
2024-02-02 | Replace `Primitive::Translate` with `Transform` | 1 | -9/+9 | ||
2024-01-20 | Introduce `Border` struct analogous to `Shadow` | 1 | -5/+1 | ||
2024-01-20 | Make `shadow` optional in `renderer::Quad` | 1 | -11/+10 | ||
2024-01-20 | feat: quad shadows | 1 | -3/+22 | ||
2023-12-05 | Introduce `RawText` to `Primitive` in `iced_graphics` | 1 | -0/+5 | ||
This should allow users to directly render a `cosmic_text::Buffer`. | |||||
2023-09-12 | Draft `Editor` API and `TextEditor` widget | 1 | -0/+7 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -0/+26 | ||
2023-06-29 | Write missing docs in `iced_graphics` and `iced_wgpu` | 1 | -0/+1 | ||
2023-06-29 | Decouple `Mesh` primitives from main `Primitive` type | 1 | -3/+0 | ||
2023-06-29 | Introduce custom backend-specific primitives | 1 | -4/+64 | ||
2023-05-11 | Write missing documentation in `iced_graphics` | 1 | -0/+5 | ||
2023-04-27 | Expand damage regions of `Clip` primitives a bit | 1 | -2/+4 | ||
2023-04-27 | Move damage tracking logic to `compositor` in `iced_tiny_skia` | 1 | -0/+140 | ||