summaryrefslogtreecommitdiffstats
path: root/wgpu (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename `Cursor::*_position` methods in `canvas`Libravatar Héctor Ramón Jiménez2020-04-291-11/+11
|
* Merge branch 'master' into feature/canvas-interactionLibravatar Héctor Ramón Jiménez2020-04-295-13/+26
|\
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2020-04-261-1/+1
| |
| * Render meshes after quads in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-04-261-12/+12
| |
| * Make `Font` an associated type of `text::Renderer`Libravatar Héctor Ramón Jiménez2020-04-233-0/+13
| |
* | Introduce `Cursor` type in `canvas`Libravatar Héctor Ramón Jiménez2020-04-293-32/+88
| |
* | Let a `canvas::Program` control the mouse cursorLibravatar Héctor Ramón Jiménez2020-04-292-1/+10
| |
* | Remove `OutOfBounds` variant from `MouseCursor`Libravatar Héctor Ramón Jiménez2020-04-2913-13/+13
| |
* | Remove `Drawable` and rename `State` to `Program`Libravatar Héctor Ramón Jiménez2020-04-284-100/+37
| |
* | Clip and cull `Mesh2D` primitives in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-04-284-25/+44
| |
* | Allow `canvas::State` to produce messagesLibravatar Héctor Ramón Jiménez2020-04-283-16/+30
| |
* | 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-288-45/+64
| |
* | 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
| |
* | 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-197-107/+100
| |
* | Add interactivity to `solar_system` exampleLibravatar Héctor Ramón Jiménez2020-04-191-38/+12
| |
* | 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-196-29/+99
|/
* fix progress bar docs to no longer mention buttons (#301)Libravatar ethanpailes2020-04-181-4/+4
|
* 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-1611-251/+281
|\ | | | | 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-0710-250/+280
| |
* | Bump versions :tada:Libravatar Héctor Ramón Jiménez2020-04-151-1/+1
| |
* | 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-141-0/+8
| |
* | Implement `canvas::Path::rectangle` helper methodLibravatar Héctor Ramón Jiménez2020-04-142-5/+18
| |
* | 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-141-0/+6
| |
* | 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.
* | Align text in `iced_wgpu` on a case-by-case basisLibravatar Héctor Ramón Jiménez2020-04-104-23/+23
| |
* | Merge pull request #279 from hecrj/fix/text-input-measure-valueLibravatar Héctor Ramón2020-04-101-7/+17
|\ \ | | | | | | Fix `text_input::Renderer` implementation in `iced_wgpu`
| * | Fix unnecessary clip of text input in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-04-091-4/+14
| | | | | | | | | | | | | | | It should only produce a `Clip` primitive when the contents overflow the input now.
| * | Fix `measure_value` for text input in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-04-091-3/+3
| | | | | | | | | | | | It accounts for spaces at the start of text now.
* | | Stop generating empty `Mesh2D` in `canvas::Frame`Libravatar Héctor Ramón Jiménez2020-04-091-7/+9
|/ /
* / impl default for canvas cacheLibravatar Rob Ede2020-04-081-7/+24
|/
* Enable feature flags in `docs.rs`Libravatar Héctor Ramón Jiménez2020-04-051-0/+4
|
* document wgpu feature flagsLibravatar Rob Ede2020-04-043-0/+4
|
* Bump all versions :tada:Libravatar Héctor Ramón Jiménez2020-04-022-4/+10
|
* Remove subcrates `CHANGELOG`Libravatar Héctor Ramón Jiménez2020-04-021-14/+0
| | | | | | | | | | | | At this stage, it is important to allow the library to change rapidly. Because of this, keeping a log of changes can be counter-productive. We do not want pin down design decisions by writing detailed changelogs (sunk cost fallacy). Once the library and its different parts start becoming more stable and mature, we will reintroduce changelogs accordingly. For now, we will keep a main `CHANGELOG` file just for the `iced` crate.
* Add example to `pane_grid` module documentationLibravatar Héctor Ramón Jiménez2020-04-021-0/+7
|
* Update `iced_wgpu` root documentationLibravatar Héctor Ramón Jiménez2020-04-022-2/+3
|