summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget/canvas.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Reduced memory transfer of OpenGL gradient uniform upload. Rearranged ↵Libravatar shan2022-10-051-2/+1
| | | | gradient uniforms on OpenGL side to be more performant.
* Readjusted namespaces, removed Geometry example as it's no longer relevant.Libravatar shan2022-10-051-3/+5
|
* Reworked wgpu buffers, updated glow side to have proper transform location ↵Libravatar shan2022-10-041-2/+2
| | | | storage, attempting to fix visibility modifiers, implemented some of the feedback received in initial PR.
* Fixed some importing issues since you can use a Shader::Gradient outside a ↵Libravatar shan2022-09-301-11/+5
| | | | Canvas widget, where it was previously only accessible.
* Adds linear gradient support to 2D meshes in the canvas widget.Libravatar shan2022-09-291-2/+4
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-271-28/+33
|
* Implement theme styling for `Canvas`Libravatar Héctor Ramón Jiménez2022-06-071-12/+21
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-141-8/+11
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Replace `hecrj` in links with `iced-rs`Libravatar Héctor Ramón Jiménez2022-05-021-4/+4
|
* Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-4/+4
|
* Reintroduce generic `Message` type for `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-181-19/+22
| | | | | As it is useful to make the `Message` completely free in many implementations.
* Use associated type for `Message` in a `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-091-14/+12
|
* Skip `Canvas::draw` if `bounds` have no logical pixelsLibravatar Héctor Ramón Jiménez2022-02-281-0/+5
|
* Remove `hash_layout` method from `Widget` traitLibravatar Héctor Ramón Jiménez2022-02-231-11/+2
|
* Add line dash APILibravatar Cory Forsstrom2022-01-271-1/+1
|
* Introduce `Renderer` argument to `mouse_interaction` and `on_event`Libravatar Héctor Ramón Jiménez2022-01-111-0/+1
|
* Introduce `Shell` type in `iced_native`Libravatar Héctor Ramón Jiménez2021-11-291-4/+4
| | | | Widgets now can invalidate the current layout of the application on demand.
* Move `viewport` argument to last position in `mouse_interaction` methodsLibravatar Héctor Ramón Jiménez2021-11-021-1/+1
| | | | This keeps the order of the arguments consistent with `draw`.
* Implement `Widget::mouse_interaction` for `Canvas` in `iced_graphics`Libravatar Héctor Ramón Jiménez2021-10-291-0/+13
|
* Implement `Widget::draw` for `Canvas` in `iced_graphics`Libravatar Héctor Ramón Jiménez2021-10-291-24/+22
|
* Move `Defaults` from `iced_graphics` to `iced_native`Libravatar Héctor Ramón Jiménez2021-10-181-2/+4
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-141-25/+24
|
* Make `Clipboard` argument in `Widget` trait mutableLibravatar Héctor Ramón Jiménez2021-03-101-2/+2
|
* Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-261-11/+0
| | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* Implement event capturing for `Canvas`Libravatar Héctor Ramón Jiménez2020-11-121-4/+7
|
* Make `Widget::on_event` return an `event::Status`Libravatar Héctor Ramón Jiménez2020-11-121-3/+7
|
* Introduce `viewport` to `Widget::draw`Libravatar Héctor Ramón Jiménez2020-10-281-2/+3
| | | | | This should eventually allow us to only generate primitives that are visible.
* Add `Keyboard` variant to `canvas::Event`Libravatar Héctor Ramón Jiménez2020-08-101-0/+3
|
* Introduce fill rule setting in `canvas`Libravatar Héctor Ramón Jiménez2020-06-021-2/+2
|
* Draft new `iced_graphics` crate :tada:Libravatar Héctor Ramón Jiménez2020-05-191-0/+236