summaryrefslogtreecommitdiffstats
path: root/wgpu (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Forbid unsafe code and Rust 2018 idiomsLibravatar Héctor Ramón Jiménez2020-01-201-2/+2
|
* Make layout bounds explicit in `UserInterface`Libravatar Héctor Ramón Jiménez2020-01-101-1/+2
|
* Move `Debugger` and `Windowed` to a better locationLibravatar Héctor Ramón Jiménez2020-01-102-5/+6
| | | | | We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`.
* Write missing docs and reenable deny statementsLibravatar Héctor Ramón Jiménez2020-01-094-1/+38
|
* Fix drawing empty `Quad` on empty `ProgressBar`Libravatar Héctor Ramón Jiménez2020-01-081-13/+17
|
* Allow `Checkbox` style to change based on its stateLibravatar Héctor Ramón Jiménez2020-01-081-2/+2
|
* Always show scroller if scrollbar is visibleLibravatar Héctor Ramón Jiménez2020-01-071-35/+38
|
* Implement styling for `Checkbox`Libravatar Héctor Ramón Jiménez2020-01-073-15/+26
|
* Implement styling for `Radio`Libravatar Héctor Ramón Jiménez2020-01-073-12/+25
|
* Implement styling for `ProgressBar`Libravatar Héctor Ramón Jiménez2020-01-073-14/+29
|
* Implement styling for `Slider`Libravatar Héctor Ramón Jiménez2020-01-073-21/+53
|
* Implement styling for `Scrollable`Libravatar Héctor Ramón Jiménez2020-01-063-12/+35
|
* Draft `styling` exampleLibravatar Héctor Ramón Jiménez2020-01-061-1/+0
|
* Merge branch 'master' into feature/custom-stylingLibravatar Héctor Ramón Jiménez2020-01-0510-3/+353
|\
| * Merge pull request #141 from Songtronix/songtronix/progressbar-widgetLibravatar Héctor Ramón2020-01-042-0/+48
| |\ | | | | | | Progress bar widget
| | * Move `DEFAULT_HEIGHT` constant to `Renderer`Libravatar Héctor Ramón Jiménez2020-01-031-0/+2
| | | | | | | | | | | | Also fixes some minor documentation issues.
| | * change(widget): make height adjustable at widget levelLibravatar Songtronix2020-01-022-7/+3
| | | | | | | | | | | | addtionally rename Progressbar to ProgressBar
| | * change(widget): custom coloring for progressbarLibravatar Songtronix2020-01-021-3/+9
| | |
| | * add(widget): primitive progressbar widgetLibravatar Songtronix2020-01-022-0/+44
| | |
| * | Rename `Geometry2D` to `Mesh2D` and move it to `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-01-028-69/+95
| | |
| * | Implement Geometry2D primitiveLibravatar Artur Sapek2020-01-018-3/+278
| |/
* | Fix styling in `button::Renderer` implementationLibravatar Héctor Ramón Jiménez2020-01-051-27/+37
| |
* | Add border and shadow styling to `Button`Libravatar Héctor Ramón Jiménez2020-01-051-4/+4
| |
* | Add border styling to `Container`Libravatar Héctor Ramón Jiménez2020-01-051-18/+19
| |
* | Remove `background` from `Settings`Libravatar Héctor Ramón Jiménez2020-01-051-12/+6
| |
* | Draft basic styling for `TextInput`Libravatar Héctor Ramón Jiménez2020-01-013-13/+35
| |
* | Allow configuration of default fontLibravatar Héctor Ramón Jiménez2020-01-014-9/+21
| |
* | Move styling to a brand new `iced_style` crateLibravatar Héctor Ramón Jiménez2020-01-013-111/+10
| |
* | Add `border_width` and `border_color` to `Quad`Libravatar Héctor Ramón Jiménez2019-12-3114-127/+169
| |
* | Merge branch 'master' into feature/custom-stylingLibravatar Héctor Ramón Jiménez2019-12-313-0/+15
|\|
| * 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.
| * Implement `Default` for `iced_wgpu::Primitive`Libravatar Héctor Ramón Jiménez2019-12-301-0/+6
| |
* | Draft basic styling for `Container`Libravatar Héctor Ramón Jiménez2019-12-314-0/+85
| |
* | Add `Renderer::Defaults` and style inheritanceLibravatar Héctor Ramón Jiménez2019-12-309-37/+83
| |
* | Add `background_color` to `Settings`Libravatar Héctor Ramón Jiménez2019-12-291-6/+12
| |
* | Draft `Style` and `StyleSheet` for `Button`Libravatar Héctor Ramón Jiménez2019-12-296-21/+124
|/
* Avoid rasterizing SVG when a dimension is 0Libravatar Héctor Ramón Jiménez2019-12-211-0/+4
|
* Fix cursor positioning in `TextInput` on overflowLibravatar Héctor Ramón Jiménez2019-12-211-10/+47
|
* Resize text measure cache to avoid panicLibravatar Héctor Ramón Jiménez2019-12-181-5/+17
| | | | | | | This should not be really necessary, as we are not really drawing anything with the measure brush... But we are using `glyph_brush` in an unconventional way, so that may be the cause. We need to redesign `wgpu_glyph` or come up with an alternative.
* Cache `Svg` load result properlyLibravatar Héctor Ramón Jiménez2019-12-152-20/+22
| | | | This avoids trying to reload the file constantly on every frame.
* Put `svg` rendering behind a feature gateLibravatar Héctor Ramón Jiménez2019-12-153-14/+31
| | | | This reduces binary size when SVG supoprt is not needed.
* Add `svg` exampleLibravatar Héctor Ramón Jiménez2019-12-151-1/+1
|
* Rerasterize SVGs when resized and refactor a bitLibravatar Héctor Ramón Jiménez2019-12-157-262/+455
|
* Merged svg pipeline into imageLibravatar Malte Veerman2019-12-127-634/+87
|
* Improved dpi handlingLibravatar Malte Veerman2019-12-122-54/+8
|
* Ran cargo_fmt over changed files.Libravatar Malte Veerman2019-12-114-41/+42
|
* Added an `Icon` widget to native.Libravatar Malte Veerman2019-12-114-5/+26
|
* Implemented SVG support in iced_wgpu.Libravatar Malte Veerman2019-12-115-1/+640
|
* Place `TextInput` cursor position on clickLibravatar Héctor Ramón Jiménez2019-12-051-16/+21
|