summaryrefslogtreecommitdiffstats
path: root/examples/screenshot (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez2024-01-211-2/+2
|
* Refactor `KeyCode` into `Key` and `Location`Libravatar Héctor Ramón Jiménez2024-01-161-18/+15
|
* Merge branch 'master' into feat/multi-window-supportLibravatar Héctor Ramón Jiménez2023-11-292-25/+32
|\
| * Fix lint in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-10-181-4/+1
| |
| * Revert "Chore: Apply clippy map transformations"Libravatar Héctor Ramón Jiménez2023-09-201-1/+4
| | | | | | | | This reverts commit c997aad85d7ee6e77085e50e5e599002549d228f.
| * Fix `clippy::unused_async`Libravatar Héctor Ramón Jiménez2023-09-202-11/+20
| |
| * Merge pull request #2090 from nyurik/mappingLibravatar Héctor Ramón2023-09-191-4/+1
| |\ | | | | | | Chore: Apply clippy map transformations
| | * Chore: Apply clippy map transformationsLibravatar Yuri Astrakhan2023-09-191-4/+1
| | | | | | | | | | | | Convert `.map().unwrap_or()` to `.map_or()` and similar transformations.
| * | Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-191-5/+5
| |/ | | | | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
| * Merge pull request #2069 from iced-rs/use-workspace-dependenciesLibravatar Héctor Ramón2023-09-072-4/+6
| |\ | | | | | | Use workspace dependencies and package inheritance
| | * Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez2023-09-042-4/+6
| | | | | | | | | | | | | | | | | | 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.
| * | Introduce `keyboard::on_key_press` and `on_key_release`Libravatar Héctor Ramón Jiménez2023-09-071-4/+3
| |/ | | | | | | Also rename `subscription::events*` to `event::listen*`.
* / refactored window storage;Libravatar Bingus2023-07-211-2/+5
|/ | | | | new helper window events (Destroyed, Created); clippy + fmt;
* Move `Screenshot` inside `window` moduleLibravatar Héctor Ramón Jiménez2023-06-271-4/+5
|
* Adjusted offscreen pass to be a render pass vs compute for compat with ↵Libravatar Bingus2023-06-081-1/+1
| | | | web-colors flag.
* Fix width of crop labels in `screenshot` example (again)Libravatar Héctor Ramón Jiménez2023-06-061-4/+4
|
* Rearrange controls of the `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-32/+52
|
* Introduce `on_press_maybe` helper for `Button`Libravatar Héctor Ramón Jiménez2023-06-061-2/+3
|
* Wrap `Screenshot::bytes` in an `Arc` and implement `AsRef<[u8]>`Libravatar Héctor Ramón Jiménez2023-06-061-1/+1
|
* Avoid `iced_image` import in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-5/+4
|
* Fix punctuation in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-2/+2
|
* Fix width of crop labels in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-4/+4
|
* Create `numeric_input` helper in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-44/+54
|
* Use `Container::Box` in `screenshot` exampleLibravatar Héctor Ramón Jiménez2023-06-061-17/+1
|
* Added offscreen rendering support for wgpu & tiny-skia exposed with the ↵Libravatar Bingus2023-06-062-0/+316
window::screenshot command.