summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Let a `canvas::Program` control the mouse cursorLibravatar Héctor Ramón Jiménez2020-04-292-1/+10
|
* Add `Crosshair` variant to `MouseCursor`Libravatar Héctor Ramón Jiménez2020-04-292-3/+7
|
* Remove `OutOfBounds` variant from `MouseCursor`Libravatar Héctor Ramón Jiménez2020-04-2919-22/+18
|
* Expose `Rectangle` in `iced_web`Libravatar Héctor Ramón Jiménez2020-04-281-1/+1
|
* Remove `Drawable` and rename `State` to `Program`Libravatar Héctor Ramón Jiménez2020-04-2811-299/+197
|
* Remove unnecessary `Container` in `bezier_tool`Libravatar Héctor Ramón Jiménez2020-04-281-10/+3
|
* Clip and cull `Mesh2D` primitives in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-04-285-25/+45
|
* Implement `std::ops::Add<Vector>` for `Rectangle`Libravatar Héctor Ramón Jiménez2020-04-281-1/+16
|
* Implement `Rectangle::new`Libravatar Héctor Ramón Jiménez2020-04-281-0/+15
|
* Port `bezier_tool` example to use `Canvas`Libravatar Héctor Ramón Jiménez2020-04-284-299/+150
|
* Allow `canvas::State` to produce messagesLibravatar Héctor Ramón Jiménez2020-04-284-17/+31
|
* Implement `Drawable` for slices of drawablesLibravatar Héctor Ramón Jiménez2020-04-281-0/+9
|
* Introduce `Translate` primitive in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-04-2810-104/+127
|
* Ask for a `Size` in `Frame::new`Libravatar Héctor Ramón Jiménez2020-04-282-10/+8
|
* Add convenient builder methods to `canvas::Stroke`Libravatar Héctor Ramón Jiménez2020-04-281-0/+18
|
* Move reusable `mouse` types to `iced_core`Libravatar Héctor Ramón Jiménez2020-04-2810-12/+23
|
* Implement `Default` for `Point`Libravatar Héctor Ramón Jiménez2020-04-281-1/+1
|
* Implement `std::ops::Sub<Point>` for `Point`Libravatar Héctor Ramón Jiménez2020-04-281-0/+8
|
* Remove interaction from `solar_system` exampleLibravatar Héctor Ramón Jiménez2020-04-281-40/+17
|
* Fix alignment in triangle pipeline of `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-04-191-5/+19
|
* Remove `Layer` trait and simplify `Canvas`Libravatar Héctor Ramón Jiménez2020-04-199-171/+178
|
* Add interactivity to `solar_system` exampleLibravatar Héctor Ramón Jiménez2020-04-192-56/+81
|
* Use `Borrow<T>` when binding in `layer::Cache<T>`Libravatar Héctor Ramón Jiménez2020-04-191-6/+10
|
* Simplify `Canvas` example in documentationLibravatar Héctor Ramón Jiménez2020-04-191-1/+1
|
* Draft `Program` interactivity for `Canvas`Libravatar Héctor Ramón Jiménez2020-04-199-36/+112
|
* fix progress bar docs to no longer mention buttons (#301)Libravatar ethanpailes2020-04-181-4/+4
|
* Revert "Merge pull request #289 from hecrj/fix/cursor-events"Libravatar Héctor Ramón Jiménez2020-04-172-15/+2
| | | | | | | | `winit` seems to produce `CursorEntered` and `CursorLeft` events after wheel scrolling for no apparent reason (?). This causes annoying flickering when hovering some widgets on a scrollable. I should investigate this further. We are rolling back the fix for the time being.
* Fix MSAA blit vertex shader to match `wgpu` NDCLibravatar Héctor Ramón Jiménez2020-04-163-4/+4
|
* Change `&mut wgpu::Device` to `&wgpu::Device` (#299)Libravatar Lain-dono2020-04-165-13/+10
| | | | | * Change `&mut wgpu::Device` to `&wgpu::Device` * Fix for rustfmt
* Merge pull request #269 from hecrj/update-wgpuLibravatar Héctor Ramón2020-04-1613-268/+313
|\ | | | | Update `wgpu` to `0.5` in `iced_wgpu`
| * Use new release of `wgpu_glyph`Libravatar Héctor Ramón Jiménez2020-04-131-1/+1
| |
| * Fix `angle` sign in `canvas::Frame::rotate`Libravatar Héctor Ramón Jiménez2020-04-081-1/+1
| |
| * Update `wgpu` to `0.5` in `iced_wgpu` :tada:Libravatar Héctor Ramón Jiménez2020-04-0712-267/+312
| |
* | Bump versions :tada:Libravatar Héctor Ramón Jiménez2020-04-158-10/+15
| |
* | Update `CHANGELOG`Libravatar Héctor Ramón Jiménez2020-04-151-0/+35
| |
* | Mention flags are not supported by `Sandbox`Libravatar Héctor Ramón Jiménez2020-04-151-3/+3
| | | | | | | | Fixes #291
* | Merge pull request #293 from hecrj/improvement/canvas-ergonomicsLibravatar Héctor Ramón2020-04-157-85/+118
|\ \ | | | | | | Improve `Canvas` ergonomics
| * | Simplify drawing logic in `clock` exampleLibravatar Héctor Ramón Jiménez2020-04-141-42/+32
| | |
| * | Implement `canvas::Path::line` helper methodLibravatar Héctor Ramón Jiménez2020-04-141-0/+11
| | |
| * | Implement `canvas::Path::circle` helper methodLibravatar Héctor Ramón Jiménez2020-04-143-11/+15
| | |
| * | Implement `canvas::Path::rectangle` helper methodLibravatar Héctor Ramón Jiménez2020-04-143-17/+23
| | |
| * | Implement `From<&str>` for `canvas::Text`Libravatar Héctor Ramón Jiménez2020-04-141-0/+6
| | |
| * | Implement `From<String>` for `canvas::Text`Libravatar Héctor Ramón Jiménez2020-04-141-0/+9
| | |
| * | Make `Frame::fill_text` take a generic `Into<Text>`Libravatar Héctor Ramón Jiménez2020-04-141-1/+3
| | |
| * | Make `Frame::stroke` take a generic `Into<Stroke>`Libravatar Héctor Ramón Jiménez2020-04-141-1/+3
| | |
| * | Implement `From<Color>` for `canvas::Fill`Libravatar Héctor Ramón Jiménez2020-04-143-12/+15
| | |
| * | Make `Frame::fill` take a generic `Into<Fill>`Libravatar Héctor Ramón Jiménez2020-04-141-2/+2
| | | | | | | | | | | | This can be used to improve readability by using your own types.
* | | Merge pull request #294 from MrMonotone/patch-1Libravatar Héctor Ramón2020-04-143-4/+11
|\ \ \ | |/ / |/| | Fix tour example
| * | Check Wasm compilation of `tour` example in CILibravatar Héctor Ramón Jiménez2020-04-141-0/+2
| | |
| * | Fix `Checkbox` and `Radio` API in `iced_web`Libravatar Héctor Ramón Jiménez2020-04-143-5/+10
| | |