summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use `Limits::resolve` in `Stack` widgetLibravatar Héctor Ramón Jiménez2024-04-251-2/+3
|
* Fix documentation of `stack` moduleLibravatar Héctor Ramón Jiménez2024-04-251-1/+1
|
* Showcase new `Stack` widget in `bezier_tool` exampleLibravatar Héctor Ramón Jiménez2024-04-251-18/+35
|
* Implement `Stack` widgetLibravatar Héctor Ramón Jiménez2024-04-254-2/+357
| | | | It can be used to stack elements on top of each other!
* Merge pull request #2403 from iced-rs/improve-image-cache-evictionLibravatar Héctor Ramón2024-04-246-5/+41
|\ | | | | Make image `Cache` eviction strategy less aggressive in `iced_wgpu`
| * Make image `Cache` eviction strategy less aggressive in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-04-246-5/+41
|/ | | | | | | | | | | Instead of trimming unconditionally at the end of a frame, we now trim the cache only when there is a cache miss. This way, images that are not visible but still a part of the layout will stay cached. Eviction will only happen when the images are not a part of the UI for two consectuive frames.
* Don't consume unused scroll events (#2397)Libravatar Daniel2024-04-231-39/+45
| | | | | | | | | | | * Initial Commit * Update scrollable.rs * Use `let _ = ` instead of `_ =` for consistency --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev>
* Fix clip bounds with nested `scrollable` widgetsLibravatar Héctor Ramón Jiménez2024-04-231-4/+8
|
* Merge pull request #2393 from saihaze/masterLibravatar Héctor Ramón2024-04-211-1/+1
|\ | | | | Fix typo in icon.rs
| * Fix typoLibravatar saihaze2024-04-191-1/+1
|/
* Fix `SelectNextSome` poll after termination panic in `iced_winit::Proxy`Libravatar Héctor Ramón Jiménez2024-04-171-22/+15
|
* Merge pull request #2386 from mtkennerly/feature/check-text-editor-focusLibravatar Héctor Ramón2024-04-171-1/+10
|\ | | | | Allow checking whether a `TextEditor` is focused
| * Allow checking whether a TextEditor is focusedLibravatar mtkennerly2024-04-151-1/+10
| |
* | Merge pull request #2389 from iced-rs/fix/async-memory-usageLibravatar Héctor Ramón2024-04-174-118/+160
|\ \ | |/ |/| Implement backpressure mechanism for `iced_winit::Proxy`
| * Implement backpressure mechanism in `iced_winit::Proxy`Libravatar Héctor Ramón Jiménez2024-04-163-112/+152
| |
| * Use `Skip` as the `MissedTickBehavior` for `tokio` futures backendLibravatar Héctor Ramón Jiménez2024-04-161-6/+8
|/
* Merge pull request #2382 from iced-rs/wgpu/better-architectureLibravatar Héctor Ramón2024-04-1467-4158/+4848
|\ | | | | Improved architecture for `iced_wgpu` and `iced_tiny_skia`
| * Restore `PREMULTIPLIED_ALPHA_BLENDING` in `triangle::msaa` pipelineLibravatar Héctor Ramón Jiménez2024-04-121-1/+3
| |
| * Fix applying local transformation to `layer_bounds` in `iced_wgpu::text`Libravatar Héctor Ramón Jiménez2024-04-121-4/+2
| |
| * Clip quad damage with layer bounds in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-04-101-1/+11
| |
| * Sort damage by distance from origin in `iced_graphics::damage`Libravatar Héctor Ramón Jiménez2024-04-102-13/+12
| |
| * Track image damage in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-04-102-1/+20
| |
| * Account for `transformation` in `Text::visible_bounds`Libravatar Héctor Ramón Jiménez2024-04-102-5/+7
| |
| * Reintroduce damage tracking for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-04-1010-92/+347
| |
| * Remove leftover `renderer` module in `iced_graphics`Libravatar Héctor Ramón Jiménez2024-04-093-279/+1
| |
| * Port `iced_tiny_skia` to new layering architectureLibravatar Héctor Ramón Jiménez2024-04-0928-1921/+1934
| |
| * Make arguments of `Renderer::new` explicit in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-04-084-17/+17
| |
| * Remove leftover `primitive::pipeline` moduleLibravatar Héctor Ramón Jiménez2024-04-081-1/+0
| |
| * Reintroduce support for custom primitives in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-04-0811-172/+219
| |
| * Merge branch 'master' into wgpu/better-architectureLibravatar Héctor Ramón Jiménez2024-04-082-12/+16
| |\
| * | Share `msaa::Blit` texture between multiple windowsLibravatar Héctor Ramón Jiménez2024-04-074-69/+112
| | |
| * | Merge branch 'master' into wgpu/better-architectureLibravatar Héctor Ramón Jiménez2024-04-0741-267/+318
| |\ \
| * | | Check benchmarks only instead of testing them in CILibravatar Héctor Ramón Jiménez2024-04-072-5/+13
| | | |
| * | | Fix lint in `wgpu` benchmarkLibravatar Héctor Ramón Jiménez2024-04-071-2/+2
| | | |
| * | | Test benchmarks in GitHub CILibravatar Héctor Ramón Jiménez2024-04-072-4/+4
| | | |
| * | | Wait for submission in `wgpu` benchmarkLibravatar Héctor Ramón Jiménez2024-04-071-1/+3
| | | |
| * | | Add a simple `wgpu` benchmark using `criterion`Libravatar Héctor Ramón Jiménez2024-04-072-0/+191
| | | |
| * | | Reenable proper `present_mode` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-04-061-2/+2
| | | |
| * | | Avoid generating empty caches in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-04-064-22/+66
| | | |
| * | | Avoid generating empty `Frame` geometry in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-04-061-18/+25
| | | |
| * | | Decouple caching from layering and simplify everythingLibravatar Héctor Ramón Jiménez2024-04-0515-1191/+888
| | | |
| * | | Enable clipping and disable v-sync for nowLibravatar Héctor Ramón Jiménez2024-04-053-20/+20
| | | |
| * | | Fix layer transformationsLibravatar Héctor Ramón Jiménez2024-04-056-167/+209
| | | |
| * | | Fix broken doc links in `iced_wgpu` and `iced_graphics`Libravatar Héctor Ramón Jiménez2024-04-033-13/+14
| | | |
| * | | Use default tolerance for dashed paths in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-04-031-1/+3
| | | |
| * | | Set proper `present_mode` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-04-031-2/+2
| | | |
| * | | Fix `geometry::Cache` not reusing previous geometryLibravatar Héctor Ramón Jiménez2024-04-032-16/+24
| | | |
| * | | Reintroduce debug overlay in `iced_wgpu`Libravatar Héctor Ramón Jiménez2024-04-031-3/+45
| | | |
| * | | Implement preliminary cache grouping for mesh primitivesLibravatar Héctor Ramón Jiménez2024-04-032-52/+106
| | | | | | | | | | | | | | | | | | | | Due to AA, it's very expensive to render every cached layer independently.
| * | | Remove unused `layer` module in `iced_graphics`Libravatar Héctor Ramón Jiménez2024-04-031-47/+0
| | | |