summaryrefslogtreecommitdiffstats
path: root/wgpu (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change `Tooltip` to support `Text` only for nowLibravatar Héctor Ramón Jiménez2021-02-231-1/+1
|
* feat(native): add Tooltip widgetLibravatar Yusuf Bera Ertan2021-02-152-0/+9
|
* Add image format options to reduce code bloat, fixes #376Libravatar Greg V2021-02-136-23/+37
|
* Touch support for `PaneGrid` and `PickList` (#650)Libravatar anunge2021-02-121-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * touch events properly parsed and converted to logical size, button working * scrolling with a nice touch * fixed application state level touch cursor. panel_grid is touchable now. * format glicthes fixes * format glitches * tight format * fixed pane grid * fixing with upstream * Remove unused `touch` module from `iced_core` * Remove unused `crate::text` import in `iced_native` * Remove redundant match branch in `iced_winit` * Keep removed line break in `UserInterface::update` * Compute `text_size` only when bounds contains cursor in `overlay::menu` Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com>
* Enable filtering in `wgpu::image`Libravatar Héctor Ramón Jiménez2021-02-061-2/+2
|
* List `color_blend` first in `wgpu::quad`Libravatar Héctor Ramón Jiménez2021-02-061-4/+4
|
* Remove unnecessary line break in `triangle::msaa`Libravatar Héctor Ramón Jiménez2021-02-061-1/+0
|
* Use lowercase in `wgpu` labels for consistencyLibravatar Héctor Ramón Jiménez2021-02-064-5/+5
|
* Use the latest release of `wgpu_glyph`Libravatar Héctor Ramón Jiménez2021-02-061-2/+2
|
* Change `PowerPreference` from `default()` to `LowPower`Libravatar Poly2021-02-031-1/+1
| | | There is no reason to hide the fact that this is always in `LowPower` mode
* Fix TextureViewDimension for imageLibravatar Poly2021-02-031-1/+1
| | | wgpu validation helped to find this long standing type error
* Fix ScissorRectLibravatar Poly2021-02-031-1/+2
| | | - Breaks `TODO: Address anti-aliasing adjustments properly`
* [wgpu 0.7] triangle/msaa disable filteringLibravatar Poly2021-02-031-2/+2
|
* [wgpu 0.7] Update image.rsLibravatar Poly2021-02-031-55/+66
|
* [wgpu 0.7] Update triangle.rsLibravatar Poly2021-02-031-52/+60
|
* [wgpu 0.7] Update triangle/msaa.rsLibravatar Poly2021-02-031-34/+40
| | | | | | | Notes: - not sure if `filtering sampler` should be used, so for now it is not used .
* [wgpu 0.7] Update window/compositor.rsLibravatar Poly2021-02-031-3/+6
| | | | Notes: - wgpu::PowerPreference::Default no longer exists, maybe there is another way to replicate its behavior.
* [wgpu 0.7] Update quad.rsLibravatar Poly2021-02-031-54/+62
|
* The beginning of wgpu 0.7 updateLibravatar Poly2021-02-031-2/+2
| | | hecrj/iced#723
* Implement split highlight on hover for `PaneGrid`Libravatar Héctor Ramón Jiménez2021-01-011-3/+3
|
* Update resvg to `0.12`Libravatar Greg V2020-12-192-19/+35
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2020-11-262-3/+3
|
* Update `README`s of subcratesLibravatar Héctor Ramón Jiménez2020-11-261-1/+3
|
* Update graphs in crate docsLibravatar Héctor Ramón Jiménez2020-11-261-1/+1
|
* Use recently stabilized intra-doc linksLibravatar Héctor Ramón Jiménez2020-11-269-34/+7
| | | | See RFC: https://github.com/rust-lang/rfcs/blob/master/text/1946-intra-rustdoc-links.md
* Merge pull request #629 from hecrj/wgpu-present-mode-settingLibravatar Héctor Ramón2020-11-242-1/+7
|\ | | | | Add `present_mode` field to `iced_wgpu::Settings`
| * Add `present_mode` field to `iced_wgpu::Settings`Libravatar Héctor Ramón Jiménez2020-11-232-1/+7
| |
* | Limit border radius to max dimension in `quad` pipelineLibravatar Héctor Ramón Jiménez2020-11-232-0/+5
|/
* Implement `QRCode` widgetLibravatar Héctor Ramón Jiménez2020-11-203-0/+11
|
* Fix deprecation warnings from `image`Libravatar Héctor Ramón Jiménez2020-11-201-2/+2
|
* Remove `Focus` in `pane_grid`Libravatar Héctor Ramón Jiménez2020-11-171-2/+2
| | | | Since #608, the `PaneGrid` widget does not handle pane focus.
* Merge pull request #610 from hecrj/improvement/update-dependenciesLibravatar Héctor Ramón2020-11-115-28/+28
|\ | | | | Update dependencies
| * Update `bytemuck` and remove `zerocopy` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-11-105-28/+28
| |
* | Restore hotkeys in `pane_grid` exampleLibravatar Héctor Ramón Jiménez2020-11-101-2/+2
|/ | | | | | - Implement `subscription::events_with` - Remove `pane_grid::KeyPressEvent` - Return closest sibling in `pane_grid::State::close`
* update guillotiere to 0.6Libravatar aentity2020-11-061-1/+1
|
* Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-082-6/+7
|
* Add labels to `iced_wgpu` internalsLibravatar Héctor Ramón Jiménez2020-08-316-38/+46
|
* Turn consecutive if-lets into pattern matchLibravatar Héctor Ramón Jiménez2020-08-271-6/+6
|
* Set offsets in buffer slices in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-08-271-9/+12
|
* Use `wgpu::Color::TRANSPARENT`Libravatar Héctor Ramón Jiménez2020-08-271-6/+1
|
* Remove unnecessary `create_buffer_init` for uniformsLibravatar Héctor Ramón Jiménez2020-08-272-16/+12
|
* Remove redundant depth bias fields in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-08-274-12/+0
|
* Fix `offset` calculation in `image::Atlas`Libravatar Héctor Ramón Jiménez2020-08-271-1/+1
|
* Fix `layers` initialization in `image::Atlas`Libravatar Héctor Ramón Jiménez2020-08-271-1/+1
|
* Update `image` pipeline in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-08-273-88/+147
|
* Update `wgpu` to `0.6` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-08-278-213/+277
|
* Merge branch 'feature/rule-widget' into masterLibravatar Héctor Ramón Jiménez2020-08-222-0/+13
|\
| * added FillMode enum style for the Rule widgetLibravatar Billy Messenger2020-08-221-1/+1
| |
| * widget Rule addedLibravatar Billy Messenger2020-08-222-0/+13
| |
* | Upgrade glam to 0.9 & use glam's Mat4 ortho rh gl.Libravatar Cameron Hart2020-08-171-1/+0
|/