summaryrefslogtreecommitdiffstats
path: root/graphics (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make `Cache::clear` immutableLibravatar Héctor Ramón Jiménez2022-09-131-1/+1
|
* Don't double translate text clipLibravatar Cory Forsstrom2022-08-151-1/+1
|
* Remove `pure` leftovers in `iced_graphics`Libravatar Héctor Ramón Jiménez2022-07-274-325/+0
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-2711-164/+67
|
* Remove unnecessary `let` bindings in `canvas::Frame`Libravatar Héctor Ramón Jiménez2022-07-111-4/+3
|
* Update `lyon` to `1.0` :tada:Libravatar Héctor Ramón Jiménez2022-07-114-9/+8
| | | | Congrats and thanks to @nical!
* fix another discrepancy with HTML5 arcToLibravatar ThatsNoMoon2022-07-101-7/+12
| | | | | HTML5's arcTo does not draw a line from the end of the arc to `b`, so this should not either.
* fix arc_toLibravatar ThatsNoMoon2022-07-101-7/+41
| | | | | Fixed `path::Builder::arc_to` to behave the same as [HTML5's `arcTo`] ( https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-arcto ).
* Merge pull request #1379 from PolyMeilex/fix/clippyLibravatar Héctor Ramón2022-07-098-24/+42
|\ | | | | Address Clippy lints
| * Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-095-8/+23
| | | | | | | | ... and check those in CI as well!
| * Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-091-4/+12
| | | | | | | | ... and explicitly annotate crates as well.
| * Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-07-091-3/+2
| |
| * Address Clippy lintsLibravatar Poly2022-07-094-10/+6
| |
* | Fix doc example in `pure::canvas::Program`Libravatar Héctor Ramón2022-07-091-1/+3
| | | | | | The `widget` module was missing.
* | Update import path in pure canvas exampleLibravatar Zoron2022-07-091-1/+1
|/ | | | | In current version, `iced::pure::canvas` would be unresolved. It should be `iced::pure::widget::canvas`.
* Merge branch 'master' into themingLibravatar Héctor Ramón Jiménez2022-07-083-3/+11
|\
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-07-011-1/+1
| |
| * Fix `Widget::tag` implementation of `pure::Canvas`Libravatar Héctor Ramón Jiménez2022-07-011-1/+2
| | | | | | | | | | Using `P::State` can cause a panic if the `Canvas` has `()` as `P::State` and replaces a stateless widget in a future `view` call.
| * Added more clarification as to how the position and alignment of the Canvas ↵Libravatar Jhanny Jimenez2022-06-221-1/+8
| | | | | | | | Text structure interact
* | Implement theme styling for `Canvas`Libravatar Héctor Ramón Jiménez2022-06-074-37/+63
| |
* | Implement theme styling for `PickList` and `Menu`Libravatar Héctor Ramón Jiménez2022-06-071-1/+1
| |
* | Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-145-36/+53
|/ | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Merge branch 'master' into dev/system-informationLibravatar Héctor Ramón Jiménez2022-05-045-15/+16
|\
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-05-021-5/+5
| |
| * Replace `hecrj` in links with `iced-rs`Libravatar Héctor Ramón Jiménez2022-05-022-6/+6
| |
| * Fix broken intra-doc links in documentationLibravatar Héctor Ramón Jiménez2022-04-302-4/+5
| |
| * Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-4/+4
| |
* | Rename `get_information` to `fetch_information`Libravatar Richard2022-04-272-2/+2
| |
* | Move `compositor` module access from `window` to `crate`Libravatar Richard2022-04-274-4/+9
| |
* | Rename `GraphicsInformation` to `Information`Libravatar Richard2022-04-263-5/+5
| |
* | Implement `GraphicsInformation` for `iced_glow`Libravatar Richard2022-04-261-0/+4
| |
* | Implement `GraphicsInformation` for `iced_wgpu`Libravatar Richard2022-04-261-0/+3
| |
* | Introduce `GraphicsInformation` to `iced_graphics`Libravatar Richard2022-04-262-1/+10
| |
* | Introduce `Error::ContextCreationFailed`Libravatar Richard2022-04-201-3/+15
|/
* Merge pull request #1284 from iced-rs/virtual-widgetsLibravatar Héctor Ramón2022-03-2329-280/+464
|\ | | | | Stateless widgets
| * Implement `pure` version of `QRCode` widgetLibravatar Héctor Ramón Jiménez2022-03-212-0/+67
| |
| * Reintroduce generic `Message` type for `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-184-51/+49
| | | | | | | | | | As it is useful to make the `Message` completely free in many implementations.
| * Export widget modules in `iced_pure`Libravatar Héctor Ramón Jiménez2022-03-161-1/+1
| | | | | | | | ... and fix collisions with the new `helpers`
| * Implement `Widget::tag` for `pure::Canvas`Libravatar Héctor Ramón Jiménez2022-03-091-0/+4
| |
| * Implement `pure` version of `Canvas` widgetLibravatar Héctor Ramón Jiménez2022-03-095-0/+348
| |
| * Use associated type for `Message` in a `canvas::Program`Libravatar Héctor Ramón Jiménez2022-03-092-19/+22
| |
| * Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez2022-03-0923-270/+34
| | | | | | | | Instead, we can define the type aliases just once in the root crate!
* | Fix `canvas::Frame` issuing a new layer for `Mesh2D` in `with_clip`Libravatar Héctor Ramón Jiménez2022-03-102-16/+32
|/ | | | Text will still be rendered in its own layer, until we fix the composition bottleneck in `glyph-brush`.
* Merge pull request #1264 from tarkah/canvas/clipLibravatar Héctor Ramón2022-03-051-0/+21
|\ | | | | Add clip to canvas
| * Use `Rectangle` directly in `Frame::with_clip`Libravatar Héctor Ramón Jiménez2022-03-021-21/+11
| |
| * Add doc commentLibravatar Cory Forsstrom2022-02-231-1/+8
| |
| * Add with_clip for canvasLibravatar Cory Forsstrom2022-02-231-0/+24
| |
* | 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-232-19/+3
| |
* | Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
| |