summaryrefslogtreecommitdiffstats
path: root/renderer/Cargo.toml (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-09-20Introduce `strict-assertions` feature flagLibravatar Héctor Ramón Jiménez1-0/+1
For now, this feature flag only enables validation in `iced_wgpu`; which has become quite expensive since its `0.20` release.
2024-04-07Use built-in `[lints]` table in `Cargo.toml`Libravatar Héctor Ramón Jiménez1-0/+3
2024-04-03Redesign `iced_wgpu` layering architectureLibravatar Héctor Ramón Jiménez1-1/+0
2024-03-22Make `iced_tiny_skia` optional with a `tiny-skia` featureLibravatar Héctor Ramón Jiménez1-4/+6
2024-03-21Gate `Custom` variants in `iced_renderer` behind `custom` featureLibravatar Héctor Ramón Jiménez1-0/+1
2024-02-20Embed Fira Sans font on Wasm builds by defaultLibravatar Héctor Ramón Jiménez1-0/+1
2024-01-18Remove `Compositor` window genericLibravatar Héctor Ramón Jiménez1-1/+0
And update `glyphon` and `window_clipboard`
2023-09-04Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez1-23/+16
We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version.
2023-09-04Enable WebGPU backend in `wgpu` by default instead of WebGLLibravatar Héctor Ramón Jiménez1-0/+1
Instead, we expose a new `webgl` feature.
2023-07-28Bump versions :tada:Libravatar Héctor Ramón Jiménez1-2/+9
2023-06-29Decouple `Mesh` primitives from main `Primitive` typeLibravatar Héctor Ramón Jiménez1-0/+1
2023-05-31Introduce `web-colors` feature flag to enable sRGB linear blendingLibravatar Héctor Ramón Jiménez1-0/+1
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-10Bundle `tiny-skia` backend together with `iced_renderer`Libravatar Héctor Ramón Jiménez1-10/+8
2023-03-06Introduce backend feature flags in `iced_renderer`Libravatar Héctor Ramón Jiménez1-1/+5
2023-03-05Move `webgl` feature selection for `wgpu` into `iced_wgpu`Libravatar Héctor Ramón Jiménez1-6/+4
2023-03-04Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez1-4/+0
2023-03-03Move `Canvas` and `QRCode` to `iced` crateLibravatar Héctor Ramón Jiménez1-7/+1
Rename `canvas` modules to `geometry` in graphics subcrates
2023-03-01Implement `Canvas` support for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez1-2/+8
2023-02-28Use `iced_renderer` instead of `iced_graphics` in root crateLibravatar Héctor Ramón Jiménez1-0/+2
2023-02-25Scaffold `iced_tiny_skia` and connect it to `iced_renderer`Libravatar Héctor Ramón Jiménez1-2/+6
2023-02-24Introduce `iced_renderer` subcrate featuring runtime renderer fallbackLibravatar Héctor Ramón Jiménez1-0/+26