Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-03-03 | Rename `canvas::frame` to `canvas` in `iced_wgpu` | 3 | -726/+0 | ||
2023-03-01 | Implement `Canvas` support for `iced_tiny_skia` | 3 | -0/+726 | ||
2020-05-19 | Draft new `iced_graphics` crate :tada: | 12 | -1163/+0 | ||
2020-05-01 | Implement `Frame::fill_rectangle` | 1 | -0/+51 | ||
This method greatly improves performance when drawing axis-aligned rectangles. | |||||
2020-04-30 | Rename `MouseCursor` to `mouse::Interaction` | 1 | -7/+15 | ||
2020-04-30 | Write documentation for the new `canvas` API | 6 | -12/+114 | ||
2020-04-30 | Remove inconsistent `input` module in `iced_native` | 1 | -1/+1 | ||
2020-04-29 | Rename `Cursor::*_position` methods in `canvas` | 1 | -11/+11 | ||
2020-04-29 | Introduce `Cursor` type in `canvas` | 2 | -11/+71 | ||
2020-04-29 | Let a `canvas::Program` control the mouse cursor | 1 | -0/+9 | ||
2020-04-28 | Remove `Drawable` and rename `State` to `Program` | 3 | -69/+10 | ||
2020-04-28 | Clip and cull `Mesh2D` primitives in `iced_wgpu` | 1 | -0/+1 | ||
2020-04-28 | Allow `canvas::State` to produce messages | 2 | -8/+13 | ||
2020-04-28 | Implement `Drawable` for slices of drawables | 1 | -0/+9 | ||
2020-04-28 | Introduce `Translate` primitive in `iced_wgpu` | 3 | -14/+25 | ||
2020-04-28 | Ask for a `Size` in `Frame::new` | 2 | -10/+8 | ||
2020-04-28 | Add convenient builder methods to `canvas::Stroke` | 1 | -0/+18 | ||
2020-04-19 | Remove `Layer` trait and simplify `Canvas` | 6 | -84/+77 | ||
2020-04-19 | Add interactivity to `solar_system` example | 1 | -38/+12 | ||
2020-04-19 | Use `Borrow<T>` when binding in `layer::Cache<T>` | 1 | -6/+10 | ||
2020-04-19 | Draft `Program` interactivity for `Canvas` | 4 | -1/+43 | ||
2020-04-16 | Fix MSAA blit vertex shader to match `wgpu` NDC | 1 | -1/+1 | ||
2020-04-14 | Implement `canvas::Path::line` helper method | 1 | -0/+11 | ||
2020-04-14 | Implement `canvas::Path::circle` helper method | 1 | -0/+8 | ||
2020-04-14 | Implement `canvas::Path::rectangle` helper method | 2 | -5/+18 | ||
2020-04-14 | Implement `From<&str>` for `canvas::Text` | 1 | -0/+6 | ||
2020-04-14 | Implement `From<String>` for `canvas::Text` | 1 | -0/+9 | ||
2020-04-14 | Make `Frame::fill_text` take a generic `Into<Text>` | 1 | -1/+3 | ||
2020-04-14 | Make `Frame::stroke` take a generic `Into<Stroke>` | 1 | -1/+3 | ||
2020-04-14 | Implement `From<Color>` for `canvas::Fill` | 1 | -0/+6 | ||
2020-04-14 | Make `Frame::fill` take a generic `Into<Fill>` | 1 | -2/+2 | ||
This can be used to improve readability by using your own types. | |||||
2020-04-09 | Stop generating empty `Mesh2D` in `canvas::Frame` | 1 | -7/+9 | ||
2020-04-08 | impl default for canvas cache | 1 | -7/+24 | ||
2020-04-08 | Fix `angle` sign in `canvas::Frame::rotate` | 1 | -1/+1 | ||
2020-04-04 | document wgpu feature flags | 1 | -0/+1 | ||
2020-04-02 | Fix minor documentation issues | 2 | -1/+2 | ||
2020-03-10 | Fix `Debug` implementation of `layer::cache::State` | 1 | -3/+2 | ||
2020-03-08 | Implement `Default` for `canvas::Text` | 1 | -0/+14 | ||
2020-03-08 | Transform text position in `Frame::fill_text` | 1 | -3/+23 | ||
Also add a warning explaining its current limitations. | |||||
2020-03-07 | Implement `Primitive::Cached` | 4 | -47/+46 | ||
2020-03-07 | Rename `Frame::text` to `Frame::fill_text` | 1 | -2/+4 | ||
This keeps the API similar to the Web Canvas API. | |||||
2020-03-07 | Rename `canvas::TextNode` to `canvas::Text` | 2 | -8/+10 | ||
2020-03-06 | implement text support in canvas widget | 4 | -27/+77 | ||
2020-03-04 | Improve `Debug` implementation of `cache::State` | 1 | -1/+14 | ||
2020-02-18 | Write documentation for new `canvas` module | 9 | -172/+367 | ||
2020-02-14 | Upgrade `Mesh2D` indices from `u16` to `u32` | 1 | -1/+1 | ||
2020-02-14 | Add transform stack to `canvas::Frame` | 2 | -7/+105 | ||
2020-02-14 | Implement additional methods in `path::Builder` | 1 | -10/+75 | ||
2020-02-13 | Move `layer::Cached` to its own module | 2 | -76/+86 | ||
2020-02-12 | Remove `canvas::Data` leftover | 1 | -20/+0 | ||