summaryrefslogtreecommitdiffstats
path: root/graphics (follow)
Commit message (Collapse)AuthorAgeFilesLines
* WIP: background image supportmasterLibravatar cel 🌸2025-03-202-0/+2
|
* Update `wgpu` to `24` and use `cryoglyph` forkLibravatar Héctor Ramón Jiménez2025-03-091-0/+3
| | | | Co-authored-by: Winfried Baumann <codewing@web.de>
* Remove unnecessary `Future` importsLibravatar Héctor Ramón Jiménez2025-02-211-1/+0
|
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2025-02-214-8/+10
|
* Simplify `InputMethod` API with only two statesLibravatar Héctor Ramón Jiménez2025-02-121-3/+28
| | | | | Co-authored-by: rhysd <lin90162@yahoo.co.jp> Co-authored-by: KENZ <KENZ.gelsoft@gmail.com>
* Introduce `LineEnding` to `editor` and fix inconsistenciesLibravatar Héctor Ramón Jiménez2025-01-281-5/+12
|
* Fix text wrapping for `rich_text`Libravatar Héctor Ramón Jiménez2025-01-101-0/+2
|
* Apply wrapping to paragraphsLibravatar Konsl2025-01-071-0/+2
|
* chore: remove once_cell dependencyLibravatar Tommy Volk2025-01-062-4/+2
|
* Skip loading fonts that were previously loadedLibravatar Héctor Ramón Jiménez2024-12-141-0/+11
|
* Support custom renderers in `iced_test` through `renderer::Headless` traitLibravatar Héctor Ramón Jiménez2024-12-141-1/+2
|
* Embed and use Fira Sans as default font when testingLibravatar Héctor Ramón Jiménez2024-12-121-3/+3
|
* Fix new `clippy` lintsLibravatar Héctor Ramón Jiménez2024-12-021-2/+2
|
* Remove `surface` argument of `Compositor::screenshot`Libravatar Ian Douglas Scott2024-11-211-2/+0
| | | | | | | | This argument was completely ignored by the wgpu renderer, and used only for the `clip_mask` by the `tiny_skia` renderer. I believe creating a new clip mask is correct. This way it's possible to render offscreen without needing a surface.
* Use float total_cmp instead of partial_cmp to get a total order.Libravatar Rose Hogenson2024-10-261-4/+1
| | | | | | | Since Rust version 1.81, sort_by will panic if the provided comparison function does not implement a total order. See https://github.com/rust/lang/rust/issues/129561 for more details. The simplest fix seems to be to use total_cmp instead of partial_cmp.
* Fix various typosLibravatar bbb6512024-09-291-1/+1
| | | | Using https://github.com/crate-ci/typos
* Merge pull request #2575 from m4rch3n1ng/rm-clone-trait-boundLibravatar Héctor Ramón2024-09-131-9/+10
|\ | | | | remove unnecessary Clone trait bound for Cache::clear
| * Remove `Clone` bound for `graphics::Cache::clear`Libravatar may2024-09-131-9/+10
| |
* | Add `rounded_rectangle` to `geometry::Path`Libravatar Gints Polis2024-09-132-2/+79
|/
* Add stroke_rectangleLibravatar Vlad-Stefan Harbuz2024-09-101-0/+24
| | | | | This method should be able to leverage performance improvements in lyon's `tessellate_rectangle` over `tessellate_path`.
* Remove unnecessary `buffer_mut_from_editor` callLibravatar Héctor Ramón Jiménez2024-09-041-1/+1
|
* Add `text::Wrapping` supportLibravatar Héctor Ramón Jiménez2024-09-043-13/+33
| | | | Co-authored-by: Neeraj Jaiswal <neerajj85@gmail.com>
* Implement missing `draw_svg` in `Frame` wrapperLibravatar Héctor Ramón Jiménez2024-08-041-1/+7
|
* Introduce `Svg` struct in `core::svg`Libravatar Héctor Ramón Jiménez2024-08-043-44/+11
|
* Introduce `Image` struct in `core::image`Libravatar Héctor Ramón Jiménez2024-08-043-59/+9
|
* Implement image support for `canvas` widgetLibravatar Héctor Ramón Jiménez2024-08-043-7/+72
|
* Use `for` loop instead of `fold` in `span_bounds`Libravatar Héctor Ramón Jiménez2024-07-281-29/+29
|
* Add background styling to span / rich textLibravatar Cory Forsstrom2024-07-281-1/+52
|
* Add `placeholder` support to `text_editor` widgetLibravatar Héctor Ramón Jiménez2024-07-241-0/+7
|
* Simplify font attributes in `Paragraph::with_spans`Libravatar Héctor Ramón Jiménez2024-07-211-9/+1
|
* Add `Link` support to `rich_text` widgetLibravatar Héctor Ramón Jiménez2024-07-211-7/+35
|
* Implement `rich_text` widget and `markdown` exampleLibravatar Héctor Ramón Jiménez2024-07-172-8/+85
|
* Decouple caching from `Paragraph` APILibravatar Héctor Ramón Jiménez2024-07-171-58/+24
|
* Update `cosmic-text` and `resvg` (#2416)Libravatar Héctor Ramón2024-07-174-170/+136
| | | | | | | | | | | | | | | | | * Update `cosmic-text`, `glyphon`, and `resvg` * Fix slow font fallback with `Shaping::Basic` in `cosmic-text` * Update `cosmic-text` and `resvg` * Update `cosmic-text` * Fix `SelectAll` action in `editor` * Fix some panics in `graphics::text::editor` * Remove empty `if` statement in `tiny_skia::vector` * Update `cosmic-text`, `glyphon`, and `rustc-hash`
* add SelectAll to TextEditorLibravatar PgBiel2024-07-081-0/+21
|
* Implement Copy on Fill and StrokeLibravatar Vlad-Stefan Harbuz2024-06-214-4/+4
|
* Fix `text_editor` always capturing scroll eventsLibravatar Héctor Ramón Jiménez2024-06-171-8/+4
|
* Introduce dynamic `opacity` support for `Image` and `Svg`Libravatar Héctor Ramón Jiménez2024-05-031-2/+8
|
* Fix `Image::bounds` when rotation present in `iced_graphics`Libravatar Héctor Ramón Jiménez2024-05-031-2/+5
|
* Simplify image rotation API and its internalsLibravatar Héctor Ramón Jiménez2024-05-021-9/+3
|
* Add `Image` rotation supportLibravatar Héctor Ramón Jiménez2024-05-021-3/+13
| | | | Co-authored-by: DKolter <68352124+DKolter@users.noreply.github.com>
* Use an opaque `Id` type for `image::Handle`Libravatar Héctor Ramón Jiménez2024-05-011-2/+3
| | | | Hashing pointers is a terrible idea.
* Use `Bytes` as the `Container` of `ImageBuffer`Libravatar Héctor Ramón Jiménez2024-05-011-20/+31
| | | | | Since we don't need to mutate images once loaded, we avoid unnecessary extra allocations.
* Fix cache trimming loop in `iced_wgpu::text`Libravatar Héctor Ramón Jiménez2024-04-301-3/+34
|
* Introduce `canvas::Cache` groupingLibravatar Héctor Ramón Jiménez2024-04-305-71/+200
| | | | | Caches with the same `Group` will share their text atlas!
* Fix panic when scrolling a `TextEditor` inside a `scrollable`Libravatar Héctor Ramón Jiménez2024-04-261-4/+8
|
* Sort damage by distance from origin in `iced_graphics::damage`Libravatar Héctor Ramón Jiménez2024-04-101-3/+4
|
* Track image damage in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-04-101-1/+12
|
* Account for `transformation` in `Text::visible_bounds`Libravatar Héctor Ramón Jiménez2024-04-101-2/+6
|
* Reintroduce damage tracking for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-04-104-0/+156
|