Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Invalidate existing paragraphs when new fonts are loaded | 2023-09-09 | 3 | -13/+69 | ||
| | | | ||||||
* | | | Introduce `keyed::Column` widget | 2023-09-04 | 1 | -0/+2 | ||
| | | | ||||||
* | | | Fix `Default` implementation for `Paragraph` | 2023-09-01 | 1 | -17/+23 | ||
| | | | ||||||
* | | | Replace `MaybeUninit` with `Option` in `paragraph` | 2023-09-01 | 1 | -44/+28 | ||
| | | | ||||||
* | | | Use `Arc::try_unwrap` in `Paragraph` | 2023-09-01 | 1 | -59/+95 | ||
| | | | | | | | | | | | | | | | | | | We use `MaybeUninit` here instead of `Option` to save some cycles, but I will most likely change it for an `Option` since unsafe code is quite scary. | |||||
* | | | Remove `Clone` implementation for `Paragraph` | 2023-09-01 | 1 | -1/+1 | ||
| | | | ||||||
* | | | Use `min_bounds` for cached text | 2023-08-30 | 1 | -4/+13 | ||
| | | | ||||||
* | | | Implement explicit text caching in the widget state tree | 2023-08-30 | 9 | -137/+585 | ||
|/ / | ||||||
* / | Update arc.rs with improved documentation | 2023-08-15 | 1 | -6/+6 | ||
|/ | | | added units and improved description to field comments of Arc and Ellipse structs. | |||||
* | Trim text measurements only before `layout` | 2023-06-29 | 2 | -0/+9 | ||
| | ||||||
* | Revert "Remove `layout` method from `core::Renderer` trait" | 2023-06-29 | 1 | -1/+12 | ||
| | | | | This reverts commit 2128472c2a8afcb59927712497c4f613612e9dcc. | |||||
* | Write missing docs in `iced_graphics` and `iced_wgpu` | 2023-06-29 | 6 | -3/+11 | ||
| | ||||||
* | Decouple `Mesh` primitives from main `Primitive` type | 2023-06-29 | 5 | -72/+80 | ||
| | ||||||
* | Remove `layout` method from `core::Renderer` trait | 2023-06-29 | 1 | -12/+1 | ||
| | ||||||
* | Introduce custom backend-specific primitives | 2023-06-29 | 6 | -148/+129 | ||
| | ||||||
* | Reuse entries in `text::Cache` in `iced_wgpu` | 2023-06-28 | 2 | -2/+2 | ||
| | ||||||
* | Merge pull request #1885 from bungoboingo/gradient-packing-optimization | 2023-06-27 | 1 | -23/+59 | ||
|\ | | | | | Small gradient optimization | |||||
| * | Switched to packing using f16s to maintain acceptable precision. | 2023-06-07 | 1 | -30/+52 | ||
| | | ||||||
| * | Updated color packing into u32 to consider incorrect web-colors. | 2023-06-06 | 1 | -13/+20 | ||
| | | ||||||
| * | Optimized gradient data packing. | 2023-06-06 | 1 | -32/+39 | ||
| | | ||||||
* | | Merge pull request #1845 from bungoboingo/feat/offscreen-rendering | 2023-06-27 | 1 | -1/+14 | ||
|\ \ | | | | | | | Feat: Offscreen Rendering & Screenshots | |||||
| * | | Added offscreen rendering support for wgpu & tiny-skia exposed with the ↵ | 2023-06-06 | 1 | -1/+14 | ||
| |/ | | | | | | | window::screenshot command. | |||||
* / | Use subpixel glyph positioning and layout linearity | 2023-06-20 | 3 | -32/+9 | ||
|/ | | | | ... for offsetting and scaling text | |||||
* | Introduce `web-colors` feature flag to enable sRGB linear blending | 2023-05-31 | 4 | -3/+55 | ||
| | | | | | | | | | | | | | | | This is how browsers perform color management. They treat gamma-corrected sRGB colors as if they were linear RGB. Correctness aside, this mode is introduced for legacy reasons. Most UI/UX tooling uses this color management as well, and many have created an intuition about how color should behave from interacting with a browser. This feature flag should facilitate application development with `iced` in those cases. More details: https://webcolorisstillbroken.com/ | |||||
* | Make `Packed` fully opaque | 2023-05-29 | 1 | -4/+27 | ||
| | | | | ... by only allowing direct conversion from our `Gradient` types | |||||
* | Changed gradient::Packed to be `repr(C)` for direct gpu upload. | 2023-05-26 | 2 | -6/+11 | ||
| | ||||||
* | Created "Packed" data structure for gradient data. | 2023-05-25 | 1 | -13/+20 | ||
| | ||||||
* | Made gradient pack public for iced_graphics::gradient mod for use with ↵ | 2023-05-24 | 1 | -0/+33 | ||
| | | | | GradientVertex2D. | |||||
* | Merge pull request #1846 from bungoboingo/feat/background-gradients | 2023-05-19 | 7 | -18/+124 | ||
|\ | | | | | [Feature] Gradients for Backgrounds | |||||
| * | Fix imports of `geometry::style` in `iced_graphics` | 2023-05-19 | 1 | -2/+2 | ||
| | | ||||||
| * | Remove `Builder` abstractions for gradients | 2023-05-19 | 4 | -93/+71 | ||
| | | ||||||
| * | Added support for gradients as background variants + other optimizations. | 2023-05-11 | 6 | -16/+144 | ||
| | | ||||||
* | | Enable `doc_auto_cfg` when generating documentation | 2023-05-11 | 1 | -1/+1 | ||
|/ | ||||||
* | Write missing documentation in `iced_wgpu` | 2023-05-11 | 1 | -5/+1 | ||
| | ||||||
* | Write missing documentation in `iced_graphics` | 2023-05-11 | 7 | -9/+31 | ||
| | ||||||
* | Support configurable `LineHeight` in text widgets | 2023-05-04 | 4 | -3/+21 | ||
| | ||||||
* | Introduce `text::Shaping` enum and replace magic boolean | 2023-05-02 | 4 | -33/+20 | ||
| | ||||||
* | Make basic text shaping the default shaping strategy | 2023-05-02 | 4 | -1/+27 | ||
| | ||||||
* | Expand damage regions of `Clip` primitives a bit | 2023-04-27 | 2 | -3/+5 | ||
| | ||||||
* | Move damage tracking logic to `compositor` in `iced_tiny_skia` | 2023-04-27 | 3 | -90/+141 | ||
| | ||||||
* | Expand bounds of `Text` primitives a bit further | 2023-04-08 | 1 | -1/+1 | ||
| | ||||||
* | Group damage regions by area increase | 2023-04-05 | 1 | -2/+2 | ||
| | ||||||
* | Keep playing with incremental rendering (still very slow) | 2023-04-04 | 1 | -2/+10 | ||
| | ||||||
* | Draft (very) basic incremental rendering for `iced_tiny_skia` | 2023-04-04 | 2 | -5/+148 | ||
| | ||||||
* | Introduce support for `Font` attributes | 2023-03-30 | 1 | -1/+1 | ||
| | ||||||
* | Merge branch 'master' into advanced-text | 2023-03-17 | 1 | -14/+4 | ||
|\ | ||||||
| * | Fix `clippy` lints for Rust 1.68 | 2023-03-14 | 3 | -26/+8 | ||
| | | ||||||
* | | Remove `image` abstractions in `iced_graphics` | 2023-03-07 | 4 | -440/+94 | ||
| | | ||||||
* | | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 21 | -132/+44 | ||
| | | ||||||
* | | Move `Canvas` and `QRCode` to `iced` crate | 2023-03-03 | 11 | -6/+596 | ||
| | | | | | | | | Rename `canvas` modules to `geometry` in graphics subcrates |