summaryrefslogtreecommitdiffstats
path: root/wgpu/src/renderer (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add `border_width` and `border_color` to `Quad`Libravatar Héctor Ramón Jiménez2019-12-317-110/+91
|
* Merge branch 'master' into feature/custom-stylingLibravatar Héctor Ramón Jiménez2019-12-312-0/+9
|\
| * Rename `Empty` widget to `Space`Libravatar Héctor Ramón Jiménez2019-12-302-3/+3
| |
| * Implement `Empty` widgetLibravatar Héctor Ramón Jiménez2019-12-302-0/+9
| | | | | | | | It can be useful if you want to fill some space with nothing.
* | Draft basic styling for `Container`Libravatar Héctor Ramón Jiménez2019-12-312-0/+47
| |
* | Add `Renderer::Defaults` and style inheritanceLibravatar Héctor Ramón Jiménez2019-12-305-9/+28
| |
* | Draft `Style` and `StyleSheet` for `Button`Libravatar Héctor Ramón Jiménez2019-12-292-14/+15
|/
* Fix cursor positioning in `TextInput` on overflowLibravatar Héctor Ramón Jiménez2019-12-211-10/+47
|
* Put `svg` rendering behind a feature gateLibravatar Héctor Ramón Jiménez2019-12-151-1/+3
| | | | This reduces binary size when SVG supoprt is not needed.
* Rerasterize SVGs when resized and refactor a bitLibravatar Héctor Ramón Jiménez2019-12-152-0/+23
|
* Merged svg pipeline into imageLibravatar Malte Veerman2019-12-122-16/+0
|
* Ran cargo_fmt over changed files.Libravatar Malte Veerman2019-12-111-9/+3
|
* Added an `Icon` widget to native.Libravatar Malte Veerman2019-12-112-0/+22
|
* Place `TextInput` cursor position on clickLibravatar Héctor Ramón Jiménez2019-12-051-16/+21
|
* Implemented `From<Color` for `Background`Libravatar Malte Veerman2019-12-041-2/+2
|
* Merge branch 'master' into feature/image-from-bytesLibravatar Héctor Ramón Jiménez2019-12-042-57/+65
|\
| * Merge pull request #95 from Friz64/scrolling-behaviourLibravatar Héctor Ramón2019-12-041-56/+64
| |\ | | | | | | Make scrolling behave like you'd expect it to
| | * Unify logic by introducing `scrollable::Scrollbar`Libravatar Héctor Ramón Jiménez2019-12-031-49/+61
| | |
| | * Address suggestionsLibravatar Friz642019-12-021-73/+29
| | |
| | * Finalize workLibravatar Friz642019-12-021-14/+18
| | |
| | * First implementationLibravatar Friz642019-12-021-24/+60
| | |
| * | Fix `TextInput` inner border radius in `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-12-031-1/+1
| |/
* / Allow to load an image from memoryLibravatar Héctor Ramón Jiménez2019-11-291-4/+8
|/ | | | | New `image::Handle` opaque type uniquely identifying some `image::Data`, allowing reliable caching.
* Fix `iced_native` widget examplesLibravatar Héctor Ramón Jiménez2019-11-241-3/+3
|
* Write docs for `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-11-221-4/+6
|
* Move widgets from `core` to `native` and `web`Libravatar Héctor Ramón Jiménez2019-11-2110-251/+129
| | | | Also made fields private and improved `Renderer` traits.
* Draw proper checkmark for `Checkbox` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2019-11-141-8/+9
|
* Remove default styling of `Button`Libravatar Héctor Ramón Jiménez2019-11-131-22/+23
| | | | | - A background will only show if explicitly set. - `iced_wgpu` won't apply a `min_width` of 100 units anymore.
* Draft `Font` type and implement `Text::font`Libravatar Héctor Ramón Jiménez2019-11-132-20/+12
|
* Move text logic in `iced_wgpu` to a `text` moduleLibravatar Héctor Ramón Jiménez2019-11-132-28/+7
|
* Split text measurements cache from rendering cacheLibravatar Héctor Ramón Jiménez2019-11-112-3/+3
| | | | | This speeds up layouting in the most common scenario considerably! :tada:
* Draft custom layout engine based on `druid`Libravatar Héctor Ramón Jiménez2019-11-119-66/+107
|
* Draft new layout APILibravatar Héctor Ramón Jiménez2019-11-109-138/+84
|
* use Color's `From` impl in more placesLibravatar memoryruins2019-11-076-133/+48
|
* Remove hardcoded HiDPI scalingLibravatar Héctor Ramón Jiménez2019-11-061-1/+2
|
* Fix Tour for HiDPI (stub)Libravatar Matthias Fauconneau2019-11-061-2/+4
|
* Fix checkbox border radiusLibravatar Héctor Ramón Jiménez2019-11-051-1/+1
|
* Apply HiDPI to text, images, and clip primitivesLibravatar Héctor Ramón Jiménez2019-11-051-1/+15
| | | | | Quads are a bit trickier to handle. We may need to change the shaders a bit.
* Merge branch 'master' into feature/performance-metricsLibravatar Héctor Ramón Jiménez2019-11-052-59/+68
|\
| * Implement state-less scrolling in `TextInput`Libravatar Héctor Ramón Jiménez2019-11-051-56/+65
| |
| * Add horizontal offset to `Primitive::Clip`Libravatar Héctor Ramón Jiménez2019-11-052-4/+4
| |
* | Move `Target` to its own moduleLibravatar Héctor Ramón Jiménez2019-11-0212-0/+84
|/
* Merge branch 'feature/scrollables' into feature/text-inputLibravatar Héctor Ramón Jiménez2019-11-021-1/+1
|\
| * Add scrollable section to `tour`Libravatar Héctor Ramón Jiménez2019-11-021-1/+1
| |
* | Fix text measurement (needs further testing)Libravatar Héctor Ramón Jiménez2019-11-021-1/+1
| |
* | Render `TextInput` cursor inside the clipping areaLibravatar Héctor Ramón Jiménez2019-10-311-86/+87
| |
* | Implement cursor movement in `TextInput`Libravatar Héctor Ramón Jiménez2019-10-311-7/+28
| |
* | Show text cursor in `TextInput`Libravatar Héctor Ramón Jiménez2019-10-301-2/+40
| |
* | Handle some `TextInput` eventsLibravatar Héctor Ramón Jiménez2019-10-304-20/+23
| |
* | Draft `TextInput` widget structureLibravatar Héctor Ramón Jiménez2019-10-302-8/+104
|/ | | | Also started a `todos` example to showcase it!