Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement `Canvas` support for `iced_tiny_skia` | 2023-03-01 | 1 | -268/+0 | |
| | |||||
* | Use `f32` in `Length::Units` and rename it to `Fixed` | 2023-02-17 | 1 | -7/+7 | |
| | |||||
* | Group all solid triangles independently of color | 2022-11-16 | 1 | -0/+2 | |
| | |||||
* | Move re-export in `widget::canvas` in `iced_graphics` | 2022-11-03 | 1 | -1/+1 | |
| | |||||
* | Fix documentation example of `Canvas` | 2022-11-03 | 1 | -5/+9 | |
| | | | | ... so it makes sense when seen from the `iced` crate. | ||||
* | Refactor imports in `widget::canvas` in `iced_graphics` | 2022-11-03 | 1 | -4/+3 | |
| | |||||
* | Run `cargo fmt` | 2022-11-03 | 1 | -4/+4 | |
| | |||||
* | Merge branch 'master' into fear/linear-gradients | 2022-10-07 | 1 | -0/+3 | |
|\ | |||||
| * | expose touch events in canvas widget | 2022-10-04 | 1 | -0/+3 | |
| | | |||||
* | | Adjusted reexports for clarity. | 2022-10-07 | 1 | -1/+1 | |
| | | |||||
* | | Added support for relative positioning of gradient fills. Addressed some PR ↵ | 2022-10-07 | 1 | -1/+1 | |
| | | | | | | | | feedback. | ||||
* | | Added support for gradients to respect current frame transform. | 2022-10-06 | 1 | -1/+1 | |
| | | |||||
* | | Reduced memory transfer of OpenGL gradient uniform upload. Rearranged ↵ | 2022-10-05 | 1 | -2/+1 | |
| | | | | | | | | gradient uniforms on OpenGL side to be more performant. | ||||
* | | Readjusted namespaces, removed Geometry example as it's no longer relevant. | 2022-10-05 | 1 | -3/+5 | |
| | | |||||
* | | Reworked wgpu buffers, updated glow side to have proper transform location ↵ | 2022-10-04 | 1 | -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 ↵ | 2022-09-30 | 1 | -11/+5 | |
| | | | | | | | | Canvas widget, where it was previously only accessible. | ||||
* | | Adds linear gradient support to 2D meshes in the canvas widget. | 2022-09-29 | 1 | -2/+4 | |
|/ | |||||
* | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 1 | -28/+33 | |
| | |||||
* | Implement theme styling for `Canvas` | 2022-06-07 | 1 | -12/+21 | |
| | |||||
* | Draft first-class `Theme` support | 2022-05-14 | 1 | -8/+11 | |
| | | | | RFC: https://github.com/iced-rs/rfcs/pull/6 | ||||
* | Replace `hecrj` in links with `iced-rs` | 2022-05-02 | 1 | -4/+4 | |
| | |||||
* | Point repository links to `0.4` branch in documentation | 2022-04-30 | 1 | -4/+4 | |
| | |||||
* | Reintroduce generic `Message` type for `canvas::Program` | 2022-03-18 | 1 | -19/+22 | |
| | | | | | As it is useful to make the `Message` completely free in many implementations. | ||||
* | Use associated type for `Message` in a `canvas::Program` | 2022-03-09 | 1 | -14/+12 | |
| | |||||
* | Skip `Canvas::draw` if `bounds` have no logical pixels | 2022-02-28 | 1 | -0/+5 | |
| | |||||
* | Remove `hash_layout` method from `Widget` trait | 2022-02-23 | 1 | -11/+2 | |
| | |||||
* | Add line dash API | 2022-01-27 | 1 | -1/+1 | |
| | |||||
* | Introduce `Renderer` argument to `mouse_interaction` and `on_event` | 2022-01-11 | 1 | -0/+1 | |
| | |||||
* | Introduce `Shell` type in `iced_native` | 2021-11-29 | 1 | -4/+4 | |
| | | | | Widgets now can invalidate the current layout of the application on demand. | ||||
* | Move `viewport` argument to last position in `mouse_interaction` methods | 2021-11-02 | 1 | -1/+1 | |
| | | | | This keeps the order of the arguments consistent with `draw`. | ||||
* | Implement `Widget::mouse_interaction` for `Canvas` in `iced_graphics` | 2021-10-29 | 1 | -0/+13 | |
| | |||||
* | Implement `Widget::draw` for `Canvas` in `iced_graphics` | 2021-10-29 | 1 | -24/+22 | |
| | |||||
* | Move `Defaults` from `iced_graphics` to `iced_native` | 2021-10-18 | 1 | -2/+4 | |
| | |||||
* | Remove trait-specific draw logic in `iced_native` | 2021-10-14 | 1 | -25/+24 | |
| | |||||
* | Make `Clipboard` argument in `Widget` trait mutable | 2021-03-10 | 1 | -2/+2 | |
| | |||||
* | Use recently stabilized intra-doc links | 2020-11-26 | 1 | -11/+0 | |
| | | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md | ||||
* | Implement event capturing for `Canvas` | 2020-11-12 | 1 | -4/+7 | |
| | |||||
* | Make `Widget::on_event` return an `event::Status` | 2020-11-12 | 1 | -3/+7 | |
| | |||||
* | Introduce `viewport` to `Widget::draw` | 2020-10-28 | 1 | -2/+3 | |
| | | | | | This should eventually allow us to only generate primitives that are visible. | ||||
* | Add `Keyboard` variant to `canvas::Event` | 2020-08-10 | 1 | -0/+3 | |
| | |||||
* | Introduce fill rule setting in `canvas` | 2020-06-02 | 1 | -2/+2 | |
| | |||||
* | Draft new `iced_graphics` crate :tada: | 2020-05-19 | 1 | -0/+236 | |