Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2025-02-21 | Run `cargo fmt` | 1 | -2/+2 | ||
2024-08-04 | Introduce `Svg` struct in `core::svg` | 1 | -28/+5 | ||
2024-08-04 | Introduce `Image` struct in `core::image` | 1 | -40/+11 | ||
2024-08-04 | Implement image support for `canvas` widget | 1 | -0/+45 | ||
2024-08-03 | Render text on top of images by default | 1 | -1/+1 | ||
2024-05-03 | Introduce dynamic `opacity` support for `Image` and `Svg` | 1 | -0/+4 | ||
2024-05-02 | Simplify image rotation API and its internals | 1 | -7/+3 | ||
2024-05-02 | Add `Image` rotation support | 1 | -2/+11 | ||
Co-authored-by: DKolter <68352124+DKolter@users.noreply.github.com> | |||||
2024-04-09 | Port `iced_tiny_skia` to new layering architecture | 1 | -174/+127 | ||
2024-04-08 | Reintroduce support for custom primitives in `iced_wgpu` | 1 | -0/+16 | ||
2024-04-05 | Decouple caching from layering and simplify everything | 1 | -131/+127 | ||
2024-04-05 | Enable clipping and disable v-sync for now | 1 | -18/+17 | ||
2024-04-05 | Fix layer transformations | 1 | -32/+33 | ||
2024-04-03 | Redesign `iced_wgpu` layering architecture | 1 | -317/+300 | ||
2024-02-02 | Apply `Transformation` to `RawText` primitives | 1 | -12/+5 | ||
2024-02-02 | Introduce `with_transformation` to `Renderer` trait | 1 | -9/+11 | ||
2024-02-02 | Allow only uniform scaling in `Transformation` | 1 | -3/+3 | ||
2024-02-02 | Apply `Transform` scaling to text primitives | 1 | -1/+1 | ||
2024-02-02 | Replace `Primitive::Translate` with `Transform` | 1 | -41/+31 | ||
2024-01-20 | Introduce `Border` struct analogous to `Shadow` | 1 | -15/+5 | ||
2024-01-20 | Make `shadow` optional in `renderer::Quad` | 1 | -7/+13 | ||
2024-01-20 | feat: quad shadows | 1 | -0/+6 | ||
2023-12-05 | Introduce `RawText` to `Primitive` in `iced_graphics` | 1 | -0/+15 | ||
This should allow users to directly render a `cosmic_text::Buffer`. | |||||
2023-12-02 | Rename `viewport` to `clip_bounds` | 1 | -7/+7 | ||
2023-12-01 | Clip text to `viewport` bounds instead of layout bounds | 1 | -0/+7 | ||
2023-11-28 | Provide actual bounds to `Shader` primitives | 1 | -8/+7 | ||
... and allow for proper translation and scissoring. | |||||
2023-11-14 | Re-organize `custom` module as `pipeline` module | 1 | -7/+12 | ||
... and move `Shader` widget to `iced_widget` crate | |||||
2023-11-14 | Added support for custom shader widget for iced_wgpu backend. | 1 | -0/+16 | ||
2023-11-11 | Refactor texture image filtering | 1 | -1/+6 | ||
- Support only `Linear` or `Nearest` - Simplify `Layer` groups - Move `FilterMethod` to `Image` and `image::Viewer` | |||||
2023-09-20 | Fix `clippy::semicolon_if_nothing_returned` | 1 | -1/+1 | ||
2023-09-12 | Draft `Editor` API and `TextEditor` widget | 1 | -1/+14 | ||
2023-08-30 | Implement explicit text caching in the widget state tree | 1 | -8/+21 | ||
2023-06-29 | Decouple `Mesh` primitives from main `Primitive` type | 1 | -36/+50 | ||
2023-06-29 | Introduce custom backend-specific primitives | 1 | -8/+3 | ||
2023-05-31 | Introduce `web-colors` feature flag to enable sRGB linear blending | 1 | -1/+2 | ||
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/ | |||||
2023-05-30 | Move `layer::quad` types to `quad` module | 1 | -4/+3 | ||
Not sure why I split these to begin with! | |||||
2023-05-29 | Adjusted `Quads` struct to be opaque `quad::Layer`. | 1 | -83/+4 | ||
2023-05-29 | Fixed issue where quads of different types were not ordered. | 1 | -1/+41 | ||
2023-05-29 | Make `Packed` fully opaque | 1 | -33/+1 | ||
... by only allowing direct conversion from our `Gradient` types | |||||
2023-05-26 | Changed gradient::Packed to be `repr(C)` for direct gpu upload. | 1 | -12/+16 | ||
2023-05-19 | Fix inconsistent `pub use` in `wgpu::layer` | 1 | -1/+1 | ||
2023-05-19 | Remove `Builder` abstractions for gradients | 1 | -1/+1 | ||
2023-05-11 | Added support for gradients as background variants + other optimizations. | 1 | -17/+77 | ||
2023-05-08 | Warn about unsupported primitives in `iced_wgpu` | 1 | -1/+5 | ||
2023-05-08 | Use `LineHeight::default` in `iced_wgpu::layer` | 1 | -1/+1 | ||
2023-05-04 | Support configurable `LineHeight` in text widgets | 1 | -0/+3 | ||
2023-05-02 | Introduce `text::Shaping` enum and replace magic boolean | 1 | -3/+4 | ||
2023-05-02 | Make basic text shaping the default shaping strategy | 1 | -0/+3 | ||
2023-03-30 | Introduce support for `Font` attributes | 1 | -1/+1 | ||
2023-03-04 | Create `iced_widget` subcrate and re-organize the whole codebase | 1 | -6/+3 | ||