summaryrefslogtreecommitdiffstats
path: root/wgpu (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into themingLibravatar Héctor Ramón Jiménez2022-07-0811-179/+166
|\
| * Replace name abbreviation in `iced_wgpu`Libravatar Héctor Ramón Jiménez2022-07-031-1/+1
| |
| * Simplify format selection in `iced_wgpu`Libravatar Héctor Ramón Jiménez2022-07-031-6/+1
| |
| * Use latest `wgpu_glyph` release on crates.ioLibravatar Héctor Ramón Jiménez2022-07-031-1/+1
| |
| * better `wgsl` code styleLibravatar Cupnfish2022-07-024-11/+11
| |
| * fix `wgsl` syntaxLibravatar Cupnfish2022-07-021-1/+1
| |
| * remove unnecessary `Cargo.toml` formattingLibravatar Cupnfish2022-07-021-22/+22
| |
| * replace `path` to `git`Libravatar Cupnfish2022-07-021-23/+23
| |
| * update `wgpu` to `0.13`Libravatar Cupnfish2022-07-0211-122/+126
| |
| * Fix alpha blending for wgpu msaaLibravatar Cory Forsstrom2022-06-162-24/+4
| |
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-05-311-1/+1
| |
| * Try `Limits::default` in `iced_wgpu` before `downlevel_defaults`Libravatar Héctor Ramón Jiménez2022-05-311-19/+27
| |
* | Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-142-6/+12
|/ | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Merge branch 'master' into dev/system-informationLibravatar Héctor Ramón Jiménez2022-05-042-4/+4
|\
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-05-021-3/+3
| |
| * Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-1/+1
| |
* | Rename `get_information` to `fetch_information`Libravatar Richard2022-04-271-1/+1
| |
* | Move `compositor` module access from `window` to `crate`Libravatar Richard2022-04-271-9/+8
| |
* | Rename `GraphicsInformation` to `Information`Libravatar Richard2022-04-261-2/+2
| |
* | Enumerate adapters based on log levelLibravatar Richard2022-04-261-1/+1
| |
* | Implement `GraphicsInformation` for `iced_wgpu`Libravatar Richard2022-04-261-0/+11
| |
* | Add logging to window and context creationLibravatar Richard2022-04-261-0/+15
| |
* | Introduce `Error::ContextCreationFailed`Libravatar Richard2022-04-201-1/+1
|/
* Merge pull request #1284 from iced-rs/virtual-widgetsLibravatar Héctor Ramón2022-03-2317-231/+0
|\ | | | | Stateless widgets
| * Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez2022-03-0917-231/+0
| | | | | | | | Instead, we can define the type aliases just once in the root crate!
* | Use `Limits::downlevel_defaults` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2022-03-071-1/+1
|/
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-092-3/+1
|
* Fix linksLibravatar Theo Robinson2022-02-071-1/+1
| | | | | | Change dead links to updated ones. Change/Convert all file links to relative links so they are branch agnostic.
* Replace Zulip links with DiscordLibravatar Héctor Ramón Jiménez2022-01-311-1/+1
|
* Use WebGL2 limits for `Compositor` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2022-01-281-1/+8
|
* Experimental wgpu WebGL backend supportLibravatar Vladyslav Nikonov2022-01-282-3/+8
| | | | | | | | - Added missing `draw_cache_align_4x4` call for `brush_glyph` on wasm32 target - Added WebGL support to `integratio_wgpu` example - Fixed test.yml CI workflow - Removed spir-v shader in `integration_wgpu`; Fixed formatting - Removed redundant `BoxStream` typedef
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-01-042-4/+8
|
* Bump raw-window-handleLibravatar Poly2022-01-041-1/+1
|
* Update wgpu_glyphLibravatar Poly2022-01-041-1/+1
|
* Update wgpu 0.12Libravatar Poly2022-01-048-14/+9
|
* Change GitHub namespace to new org for all filesLibravatar LordRatte2022-01-035-9/+9
|
* Use commit hash in `html_logo_url`Libravatar Héctor Ramón Jiménez2021-12-091-1/+1
|
* Added icon in docsLibravatar daladim2021-12-091-0/+3
|
* Remove unused field in `wgpu::Backend`Libravatar Héctor Ramón Jiménez2021-12-071-2/+0
|
* Rename `Renderer::present` to `with_primitives`Libravatar Héctor Ramón Jiménez2021-11-051-2/+2
|
* Merge branch 'master' into remove-renderer-traitsLibravatar Héctor Ramón Jiménez2021-10-313-6/+7
|\
| * Fix blit shader constants visivility #1083Libravatar Paul Delafosse2021-10-151-2/+2
| |
| * Update wgpu to 0.11Libravatar Poly2021-10-132-4/+5
| |
* | Introduce state lifetime for `style_sheet` in `Toggler`Libravatar Héctor Ramón Jiménez2021-10-311-1/+2
| |
* | Introduce first-class `svg` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-313-3/+3
| |
* | Introduce first-class `image` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-313-6/+3
| |
* | Introduce first-class `text` module in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-311-1/+1
| |
* | Remove `widget` module re-exports in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-3117-29/+38
| |
* | Implement `Widget::draw` for `Rule`Libravatar Héctor Ramón Jiménez2021-10-281-8/+1
| |
* | Implement `Widget::draw` for `ProgressBar`Libravatar Héctor Ramón Jiménez2021-10-281-9/+1
| |