summaryrefslogtreecommitdiffstats
path: root/wgpu (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove `Editor::min_bounds` and use `bounds` insteadLibravatar Héctor Ramón Jiménez2023-09-141-1/+1
|
* Draft `Editor` API and `TextEditor` widgetLibravatar Héctor Ramón Jiménez2023-09-123-5/+46
|
* Make `FontSystem` global and simplify `Paragraph` APILibravatar Héctor Ramón Jiménez2023-09-112-14/+8
|
* Merge branch 'master' into explicit-text-cachingLibravatar Héctor Ramón Jiménez2023-09-1015-536/+607
|\
| * Deny `broken_intradoc_links` and verify documentation in CILibravatar Héctor Ramón Jiménez2023-09-091-2/+3
| |
| * Fix majority of unresolved documentation linksLibravatar Matthias Vogelgesang2023-09-091-3/+1
| |
| * Use Oklab color interpolation only with `color::GAMMA_CORRECTION`Libravatar Héctor Ramón Jiménez2023-09-0711-489/+544
| |
| * Compute gradients in Oklab color spaceLibravatar Matthias Vogelgesang2023-09-071-5/+21
| |
| * Merge pull request #2070 from ripytide/masterLibravatar Héctor Ramón2023-09-071-3/+13
| |\ | | | | | | Added a Frame::scale_nonuniform method
| | * Make `scale` methods in `Frame` generic over `f32` and `Vector`Libravatar Héctor Ramón Jiménez2023-09-071-2/+6
| | |
| | * Implement `scale` in terms of `scale_nonuniform`Libravatar Héctor Ramón Jiménez2023-09-071-3/+1
| | |
| | * added a Frame::scale_nonuniform methodLibravatar ripytide2023-09-051-1/+9
| | |
| * | Merge pull request #2071 from Davidster/wgpu_webgpu_supportLibravatar Héctor Ramón2023-09-072-20/+20
| |\ \ | | | | | | | | use @interpolate(flat) attribute as per the WebGPU spec
| | * | Remove unnecessary `interpolate(flat)` in `quad.wgsl`Libravatar Héctor Ramón Jiménez2023-09-071-1/+1
| | | |
| | * | use @interpolate(flat) attribute as per the WebGPU spec:Libravatar David Huculak2023-09-032-21/+21
| | | | | | | | | | | | | | | | | | | | | | | | User-defined vertex outputs and fragment inputs of scalar or vector integer type must always be specified as @interpolate(flat) https://www.w3.org/TR/WGSL/#interpolation
| * | | Merge pull request #2059 from joshuamegnauth54/ensure_nonzero_text_lineheightLibravatar Héctor Ramón2023-09-071-1/+4
| |\ \ \ | | | | | | | | | | [issue #2002] Ensure that absolute `LineHeight` is always > 0.0
| | * | | Check LineHeight > 0.0 before allocating textLibravatar Josh Megnauth2023-09-041-7/+7
| | | | |
| | * | | Ensure LineHeight > 0.0 for the WGPU rendererLibravatar Josh Megnauth2023-09-041-3/+6
| | | |/ | | |/|
| * / | Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-041-50/+40
| |/ / | | | | | | | | | | | | | | | 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.
| * / Enable WebGPU backend in `wgpu` by default instead of WebGLLibravatar Héctor Ramón Jiménez2023-09-041-3/+1
| |/ | | | | | | Instead, we expose a new `webgl` feature.
| * Fix adapter selection loop in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-09-031-6/+4
| |
| * Remove redundant `into_iter` call in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-09-031-7/+4
| |
| * Fix `iced_wgpu` device selection on WasmLibravatar Héctor Ramón Jiménez2023-09-031-14/+19
| |
| * Update `wgpu` for WasmLibravatar Héctor Ramón Jiménez2023-09-031-1/+1
| |
| * Update `wgpu` to `0.17`Libravatar Héctor Ramón Jiménez2023-09-031-2/+2
| |
* | Invalidate existing paragraphs when new fonts are loadedLibravatar Héctor Ramón Jiménez2023-09-091-4/+1
| |
* | Implement `draw_paragraph` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-09-031-13/+12
| |
* | Use `min_bounds` for cached textLibravatar Héctor Ramón Jiménez2023-08-301-7/+10
| |
* | Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-309-468/+190
|/
* Make the style attribute available on FontLibravatar lufte2023-08-181-1/+10
|
* Bump version of `iced_wgpu` :tada:Libravatar Héctor Ramón Jiménez2023-08-021-1/+1
|
* Avoid empty overlay layer in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-08-021-1/+4
|
* Fix `iced_wgpu` freezing on empty layersLibravatar Héctor Ramón Jiménez2023-08-021-1/+1
| | | | The `render` method would return when an empty layer is encountered without explicitly dropping the `RenderPass` (necessary because we use `ManuallyDrop`), which would then leak memory and freeze `wgpu` until the surface was recreated.
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-07-282-8/+5
|
* Update `glyphon` to `0.3` :tada:Libravatar Héctor Ramón Jiménez2023-07-271-6/+2
|
* Use official `glyphon` repository instead of forkLibravatar Héctor Ramón Jiménez2023-07-201-2/+2
|
* Update `cosmic-text` and `glyphon`Libravatar Héctor Ramón Jiménez2023-07-203-57/+20
|
* Update `resvg` dependency to `0.35`Libravatar Héctor Ramón Jiménez2023-07-121-1/+1
|
* Improve code style in `vector` modulesLibravatar Héctor Ramón Jiménez2023-07-121-11/+12
|
* Upgrade resvg to 0.34 and tiny_skia to 0.10Libravatar Alec Deason2023-07-122-11/+22
|
* Trim text measurements only before `layout`Libravatar Héctor Ramón Jiménez2023-06-292-28/+21
|
* Introduce `Mode` for `text::Cache` and trim only when switching modesLibravatar Héctor Ramón Jiménez2023-06-291-18/+64
|
* Write missing docs in `iced_graphics` and `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-06-292-2/+6
|
* Decouple `Mesh` primitives from main `Primitive` typeLibravatar Héctor Ramón Jiménez2023-06-296-107/+142
|
* Introduce custom backend-specific primitivesLibravatar Héctor Ramón Jiménez2023-06-296-16/+21
|
* Retain text measurements as long as original entriesLibravatar Héctor Ramón Jiménez2023-06-281-17/+18
|
* Retain measurements for text entries even if not directly usedLibravatar Héctor Ramón Jiménez2023-06-281-2/+4
|
* Fix needless borrow in `iced_wgpu` and `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-06-281-1/+1
|
* Reuse entries in `text::Cache` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-06-281-7/+10
|
* Reuse entries in `text::Cache` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-06-282-29/+54
|