Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-06-21 | Implement Copy on Fill and Stroke | 1 | -1/+1 | ||
2023-09-20 | Fix `clippy::semicolon_if_nothing_returned` | 1 | -1/+1 | ||
2023-09-19 | Chore: Apply some minor clippy fixes | 1 | -1/+1 | ||
* Use `.elapsed()` for duration * Use direct iteration without calling `.iter()` and the like * order fields in the `Text` struct creation as declared | |||||
2023-09-09 | Fix outstanding broken intradoc links | 1 | -6/+1 | ||
2023-09-09 | Fix majority of unresolved documentation links | 1 | -2/+2 | ||
2023-06-29 | Decouple `Mesh` primitives from main `Primitive` type | 1 | -1/+2 | ||
2023-06-07 | Switched to packing using f16s to maintain acceptable precision. | 1 | -30/+52 | ||
2023-06-06 | Updated color packing into u32 to consider incorrect web-colors. | 1 | -13/+20 | ||
2023-06-06 | Optimized gradient data packing. | 1 | -32/+39 | ||
2023-05-31 | Introduce `web-colors` feature flag to enable sRGB linear blending | 1 | -2/+6 | ||
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-29 | Make `Packed` fully opaque | 1 | -4/+27 | ||
... by only allowing direct conversion from our `Gradient` types | |||||
2023-05-26 | Changed gradient::Packed to be `repr(C)` for direct gpu upload. | 1 | -5/+9 | ||
2023-05-25 | Created "Packed" data structure for gradient data. | 1 | -13/+20 | ||
2023-05-24 | Made gradient pack public for iced_graphics::gradient mod for use with ↵ | 1 | -0/+33 | ||
GradientVertex2D. | |||||
2023-05-19 | Remove `Builder` abstractions for gradients | 1 | -88/+57 | ||
2023-05-11 | Added support for gradients as background variants + other optimizations. | 1 | -0/+119 | ||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 1 | -117/+0 | ||
2023-01-04 | Fix lint | 1 | -1/+1 | ||
2023-01-04 | Make location copy | 1 | -1/+1 | ||
2022-11-10 | Fix broken documentation links | 1 | -1/+6 | ||
2022-11-03 | Move `Position` and `Location` to `gradient` module | 1 | -7/+89 | ||
2022-10-07 | Adjusted gradient transform function to be more readable. | 1 | -7/+1 | ||
2022-10-07 | Fixed import issue with canvas in the gradient mod for situations where ↵ | 1 | -21/+5 | ||
canvas feature is not enabled. | |||||
2022-10-07 | Added support for relative positioning of gradient fills. Addressed some PR ↵ | 1 | -6/+16 | ||
feedback. | |||||
2022-10-06 | Fixed some more imports/documentation. | 1 | -2/+1 | ||
2022-10-06 | Added support for gradients to respect current frame transform. | 1 | -1/+13 | ||
2022-10-06 | Fixed lint issues & cleaned up some documentation. | 1 | -1/+0 | ||
2022-10-05 | Readjusted namespaces, removed Geometry example as it's no longer relevant. | 1 | -73/+2 | ||
2022-10-04 | Reworked wgpu buffers, updated glow side to have proper transform location ↵ | 1 | -1/+1 | ||
storage, attempting to fix visibility modifiers, implemented some of the feedback received in initial PR. | |||||
2022-09-30 | Fixed some importing issues since you can use a Shader::Gradient outside a ↵ | 1 | -6/+86 | ||
Canvas widget, where it was previously only accessible. | |||||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -0/+23 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -0/+23 | ||