summaryrefslogtreecommitdiffstats
path: root/examples/integration (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove redundant depth bias fields in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-08-271-3/+0
|
* Update `wgpu` in `integration` exampleLibravatar Héctor Ramón Jiménez2020-08-272-38/+56
|
* Decouple `cursor_position` from `Cache`Libravatar Héctor Ramón Jiménez2020-06-231-3/+12
| | | | | | Instead, we ask explicitly for it in the different `update` and `draw` methods. This way, the runtime can derive the logical position of the cursor from the source of truth.
* Add `step` member to slider widgetsLibravatar Sebastian Zivota2020-06-111-15/+24
| | | | | | Both the native and the web slider now have a member `step` to control the least possible change of the slider's value. It defaults to 1.0 for all sliders and can be adjusted with the step method.
* Request a redraw only on relevant eventsLibravatar Héctor Ramón Jiménez2020-06-091-9/+12
|
* Add on_release message to Slider (#378)Libravatar Duncan Freeman2020-06-081-1/+1
| | | | | | | | | | | * Add on_finish callback to Slider * Fix formatting * Rename Slider's on_finish to on_release, make the message simply an event without data * Satisfy Clone impl requirement on Message in integration test * Only call on_release after dragging a slider
* Removed empty bind group from integration example (#390)Libravatar Richard2020-06-081-24/+5
|
* Clear frames explicitly in `integration` exampleLibravatar Héctor Ramón Jiménez2020-06-052-56/+37
|
* Add a comment of how to clear the display to `integration` exampleLibravatar hatoo2020-06-031-0/+23
|
* Attempt to appease rustfmtLibravatar Cedric Hutchings2020-06-021-1/+1
|
* Prevent gratuitous resizing in integration exampleLibravatar Cedric Hutchings2020-06-021-0/+2
| | | If I didn't miss anything, that `resized` variable is never set back to `false`, meaning that swapchain recreation is retriggered every frame after the first resize.
* Simplify `integration` example with `Program`Libravatar Héctor Ramón Jiménez2020-05-213-116/+67
|
* Refactor `Viewport` and `Compositor`Libravatar Héctor Ramón Jiménez2020-05-201-22/+35
|
* Draft new `iced_graphics` crate :tada:Libravatar Héctor Ramón Jiménez2020-05-191-3/+4
|
* Rename `MouseCursor` to `mouse::Interaction`Libravatar Héctor Ramón Jiménez2020-04-301-6/+8
|
* Remove `OutOfBounds` variant from `MouseCursor`Libravatar Héctor Ramón Jiménez2020-04-291-1/+1
|
* Update `wgpu` to `0.5` in `iced_wgpu` :tada:Libravatar Héctor Ramón Jiménez2020-04-072-17/+32
|
* Merge pull request #240 from kaimast/masterLibravatar Héctor Ramón2020-03-281-4/+1
|\ | | | | remove explicit lifetimes in integration example
| * remove explicit lifetimes in integration exampleLibravatar Kai Mast2020-03-271-4/+1
| |
* | Convert `WindowEvent` from a reference in `iced_winit`Libravatar Héctor Ramón Jiménez2020-03-271-1/+1
|/
* Update `winit` to `0.22`Libravatar Héctor Ramón Jiménez2020-03-091-7/+5
|
* Make output format of `iced_wgpu` configurableLibravatar Héctor Ramón Jiménez2020-02-241-1/+3
|
* Create `README` files for all the examplesLibravatar Héctor Ramón Jiménez2020-02-211-0/+18
|
* Add `integration` exampleLibravatar Héctor Ramón Jiménez2020-02-096-0/+436
It showcases how to integrate iced in an existing graphical application.