summaryrefslogtreecommitdiffstats
path: root/examples/integration/src/main.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-03-09Update `wgpu` to `24` and use `cryoglyph` forkLibravatar Héctor Ramón Jiménez1-3/+2
Co-authored-by: Winfried Baumann <codewing@web.de>
2025-02-21Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez1-3/+3
2024-09-20Update `wgpu` to `22.0`Libravatar Héctor Ramón Jiménez1-0/+2
2024-08-12Fix `integration` exampleLibravatar Héctor Ramón Jiménez1-1/+1
2024-06-10Introduce `window::Id` to `Event` subscriptionsLibravatar Héctor Ramón Jiménez1-2/+0
And remove `window::Id` from `Event` altogether.
2024-05-07Update `winit` to `0.30`Libravatar Héctor Ramón Jiménez1-270/+307
2024-05-06Fix windows fighting over shared `image::Cache`Libravatar Héctor Ramón Jiménez1-1/+1
Image caches are local to each window now.
2024-04-08Make arguments of `Renderer::new` explicit in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-3/+4
2024-04-03Redesign `iced_wgpu` layering architectureLibravatar Héctor Ramón Jiménez1-20/+15
2024-03-09fix some commentsLibravatar rustrover1-1/+1
Signed-off-by: rustrover <seekseat@126.com>
2024-03-07Move `Theme` type to `iced_core`Libravatar Héctor Ramón Jiménez1-2/+1
2024-02-19Use two layers for `image::atlas` only on `Gl` backendLibravatar Héctor Ramón Jiménez1-14/+18
2024-01-18Remove `Compositor` window genericLibravatar Héctor Ramón Jiménez1-3/+9
And update `glyphon` and `window_clipboard`
2024-01-16Refactor `KeyCode` into `Key` and `Location`Libravatar Héctor Ramón Jiménez1-1/+1
2023-12-15Update `winit` to `0.29.4`Libravatar Héctor Ramón Jiménez1-61/+63
2023-11-14Added support for custom shader widget for iced_wgpu backend.Libravatar Bingus1-0/+1
2023-09-20Revert "Chore: Apply clippy map transformations"Libravatar Héctor Ramón Jiménez1-4/+2
This reverts commit c997aad85d7ee6e77085e50e5e599002549d228f.
2023-09-20Fix `clippy::manual_let_else`Libravatar Héctor Ramón Jiménez1-1/+1
2023-09-19Chore: Apply clippy map transformationsLibravatar Yuri Astrakhan1-2/+4
Convert `.map().unwrap_or()` to `.map_or()` and similar transformations.
2023-09-09Change init_with_level to init in examplesLibravatar Thomas1-1/+1
2023-09-04Use workspace dependencies and package inheritanceLibravatar Héctor Ramón Jiménez1-1/+1
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-03Update `wgpu` to `0.17`Libravatar Héctor Ramón Jiménez1-1/+0
2023-08-30Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez1-7/+6
2023-07-21refactored window storage;Libravatar Bingus1-1/+1
new helper window events (Destroyed, Created); clippy + fmt;
2023-06-08Use `mouse::Cursor` in `integration` exampleLibravatar Héctor Ramón Jiménez1-15/+27
2023-06-08Extend cursor availability to the shell levelLibravatar Héctor Ramón Jiménez1-2/+3
2023-04-27Fix build of `integration` example for Wasm targetLibravatar Héctor Ramón Jiménez1-1/+2
2023-04-08Update `wgpu` and `cosmic-text`Libravatar Héctor Ramón Jiménez1-12/+15
2023-03-05Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez1-2/+2
2023-03-04Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez1-43/+48
2023-02-24Reuse a `RenderPass` as much as possible in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-0/+1
2023-02-24Refactor `triangle::Pipeline` into `prepare` and `render` architectureLibravatar Héctor Ramón Jiménez1-9/+0
And get rid of the staging belt! :tada:
2023-02-24Draft `glyphon` implementation of text pipeline for `iced_wgpu`Libravatar Héctor Ramón Jiménez1-2/+7
2023-02-24Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependenciesLibravatar Héctor Ramón Jiménez1-0/+0
2023-01-27Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck1-1/+1
2023-01-09add `window::Id` to `Event` and `Action`Libravatar Richard1-2/+3
2023-01-09Restructured everything to make profiling a feature of iced_winit.Libravatar bungoboingo1-7/+0
2023-01-09Initial profiling support for Iced.Libravatar Bingus1-0/+7
2022-11-01Remove inconsistent `wgpu` importsLibravatar Héctor Ramón Jiménez1-3/+2
2022-11-01Update `wgpu` to `0.14` and `wgpu_glyph` to `0.18`Libravatar Wyatt Herkamp1-0/+3
2022-09-26Recreate `Viewport` on `RedrawRequested` in `integration_wgpu`Libravatar nlevy1-6/+6
2022-07-09Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez1-5/+5
... and check those in CI as well!
2022-07-08Add `Style` variant support to `application::StyleSheet`Libravatar Héctor Ramón Jiménez1-1/+5
2022-07-03Use `expect` in `integration_wgpu` exampleLibravatar Héctor Ramón Jiménez1-1/+5
... together with `first` and `copied`.
2022-07-02update `wgpu` to `0.13`Libravatar Cupnfish1-13/+5
2022-05-14Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez1-0/+1
RFC: https://github.com/iced-rs/rfcs/pull/6
2022-01-28Experimental wgpu WebGL backend supportLibravatar Vladyslav Nikonov1-26/+68
- Added missing `draw_cache_align_4x4` call for `brush_glyph` on wasm32 target - Added WebGL support to `integratio_wgpu` example - Fixed test.yml CI workflow - Removed spir-v shader in `integration_wgpu`; Fixed formatting - Removed redundant `BoxStream` typedef
2021-11-05Rename `Renderer::present` to `with_primitives`Libravatar Héctor Ramón Jiménez1-1/+1
2021-10-31Rewrite cursor icon logic for `integration_wgpu` exampleLibravatar Héctor Ramón Jiménez1-5/+5
2021-10-18Introduce `mouse_interaction` method to `Widget` traitLibravatar Héctor Ramón Jiménez1-1/+0