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