Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Avoid generating empty caches in `iced_wgpu` | 2024-04-06 | 1 | -4/+13 | |
| | |||||
* | Avoid generating empty `Frame` geometry in `iced_wgpu` | 2024-04-06 | 1 | -18/+25 | |
| | |||||
* | Decouple caching from layering and simplify everything | 2024-04-05 | 1 | -108/+80 | |
| | |||||
* | Fix layer transformations | 2024-04-05 | 1 | -17/+22 | |
| | |||||
* | Use default tolerance for dashed paths in `iced_wgpu` | 2024-04-03 | 1 | -1/+3 | |
| | |||||
* | Redesign `iced_wgpu` layering architecture | 2024-04-03 | 1 | -70/+105 | |
| | |||||
* | Restore `canvas::Frame` API | 2024-03-22 | 1 | -6/+5 | |
| | |||||
* | Implement composable, type-safe renderer fallback | 2024-03-21 | 1 | -276/+217 | |
| | |||||
* | Show name of current `Theme` in `clock` example | 2024-03-16 | 1 | -3/+5 | |
| | |||||
* | Introduce `with_transformation` to `Renderer` trait | 2024-02-02 | 1 | -2/+1 | |
| | |||||
* | Replace `Primitive::Translate` with `Transform` | 2024-02-02 | 1 | -5/+6 | |
| | |||||
* | Add return values to Frame::with_clip() and Frame::with_save() | 2024-01-31 | 1 | -4/+12 | |
| | |||||
* | Implement vectorial text support for `iced_tiny_skia` | 2024-01-17 | 1 | -140/+2 | |
| | |||||
* | Implement vectorial text support for `iced_wgpu` | 2024-01-17 | 1 | -37/+188 | |
| | |||||
* | Simplify `Transform` API in `iced_wgpu::geometry` | 2024-01-17 | 1 | -74/+62 | |
| | |||||
* | Apply scaling during `Frame::fill_text` in `iced_wgpu` | 2024-01-17 | 1 | -6/+34 | |
| | |||||
* | Rename `viewport` to `clip_bounds` | 2023-12-02 | 1 | -1/+1 | |
| | |||||
* | Clip text to `viewport` bounds instead of layout bounds | 2023-12-01 | 1 | -6/+9 | |
| | |||||
* | Fix `clippy::semicolon_if_nothing_returned` | 2023-09-20 | 1 | -2/+2 | |
| | |||||
* | Fix majority of unresolved documentation links | 2023-09-09 | 1 | -3/+1 | |
| | |||||
* | Make `scale` methods in `Frame` generic over `f32` and `Vector` | 2023-09-07 | 1 | -2/+6 | |
| | |||||
* | Implement `scale` in terms of `scale_nonuniform` | 2023-09-07 | 1 | -3/+1 | |
| | |||||
* | added a Frame::scale_nonuniform method | 2023-09-05 | 1 | -1/+9 | |
| | |||||
* | Decouple `Mesh` primitives from main `Primitive` type | 2023-06-29 | 1 | -30/+34 | |
| | |||||
* | Introduce custom backend-specific primitives | 2023-06-29 | 1 | -3/+3 | |
| | |||||
* | Introduce `web-colors` feature flag to enable sRGB linear blending | 2023-05-31 | 1 | -3/+4 | |
| | | | | | | | | | | | | | | | 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/ | ||||
* | Changed gradient::Packed to be `repr(C)` for direct gpu upload. | 2023-05-26 | 1 | -2/+2 | |
| | |||||
* | Created "Packed" data structure for gradient data. | 2023-05-25 | 1 | -3/+4 | |
| | |||||
* | Made gradient pack public for iced_graphics::gradient mod for use with ↵ | 2023-05-24 | 1 | -41/+2 | |
| | | | | GradientVertex2D. | ||||
* | Avoid packing gradient data for every vertex in `iced_wgpu` | 2023-05-19 | 1 | -5/+5 | |
| | |||||
* | Remove `Builder` abstractions for gradients | 2023-05-19 | 1 | -1/+1 | |
| | |||||
* | Added support for gradients as background variants + other optimizations. | 2023-05-11 | 1 | -30/+81 | |
| | |||||
* | Write missing documentation in `iced_wgpu` | 2023-05-11 | 1 | -6/+9 | |
| | |||||
* | Support configurable `LineHeight` in text widgets | 2023-05-04 | 1 | -0/+1 | |
| | |||||
* | Introduce `text::Shaping` enum and replace magic boolean | 2023-05-02 | 1 | -1/+1 | |
| | |||||
* | Make basic text shaping the default shaping strategy | 2023-05-02 | 1 | -0/+1 | |
| | |||||
* | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -4/+4 | |
| | |||||
* | Move `Canvas` and `QRCode` to `iced` crate | 2023-03-03 | 1 | -0/+608 | |
Rename `canvas` modules to `geometry` in graphics subcrates |