summaryrefslogtreecommitdiffstats
path: root/wgpu/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into fear/linear-gradientsLibravatar Héctor Ramón Jiménez2022-11-031-4/+5
|\
| * Remove inconsistent `wgpu` importsLibravatar Héctor Ramón Jiménez2022-11-011-2/+1
| |
| * Update `wgpu` to `0.14` and `wgpu_glyph` to `0.18`Libravatar Wyatt Herkamp2022-11-011-4/+6
| |
* | Reuse last set pipeline for `triangle` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2022-11-033-2/+33
| |
* | Rename `buffers` module to `buffer`Libravatar Héctor Ramón Jiménez2022-11-037-66/+66
| | | | | | | | ... and move `StaticBuffer` to nested `static` module
* | Fix lints by `clippy`Libravatar Héctor Ramón Jiménez2022-11-034-7/+6
| |
* | Convert colors to linear RGB in `gradient` pipelinesLibravatar Héctor Ramón Jiménez2022-11-031-8/+7
| |
* | Convert colors to linear RGB before uploading in `solid` pipelinesLibravatar Héctor Ramón Jiménez2022-11-031-1/+3
| |
* | Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-11-035-18/+8
| |
* | Reuse last buffer in `Frame` if `mesh_style` matchesLibravatar Héctor Ramón Jiménez2022-11-031-5/+2
| |
* | Cleaned up namespaces re: PR comments.Libravatar bungoboingo2022-10-188-123/+115
| |
* | More import adjusting.Libravatar shan2022-10-071-3/+2
| |
* | Fixed some more imports/documentation.Libravatar shan2022-10-067-12/+13
| |
* | Fixed some imports/documentation.Libravatar shan2022-10-061-5/+1
| |
* | Fixed lint issues & cleaned up some documentation.Libravatar shan2022-10-066-12/+9
| |
* | Reduced memory transfer of OpenGL gradient uniform upload. Rearranged ↵Libravatar shan2022-10-051-2/+2
| | | | | | | | gradient uniforms on OpenGL side to be more performant.
* | Adjusted gradient uniforms to be more tightly packed.Libravatar shan2022-10-052-31/+37
| |
* | Fixed issue with offsets not being reset properly leading to borked draws.Libravatar shan2022-10-052-2/+10
| |
* | Readjusted namespaces, removed Geometry example as it's no longer relevant.Libravatar shan2022-10-056-138/+136
| |
* | Reworked wgpu buffers, updated glow side to have proper transform location ↵Libravatar shan2022-10-046-228/+242
| | | | | | | | storage, attempting to fix visibility modifiers, implemented some of the feedback received in initial PR.
* | Removed some leftover debugging.Libravatar shan2022-09-291-4/+0
| |
* | Adds linear gradient support to 2D meshes in the canvas widget.Libravatar shan2022-09-2910-370/+1078
|/
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-091-1/+1
| | | | ... and check those in CI as well!
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-092-5/+12
| | | | ... and explicitly annotate crates as well.
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-07-091-7/+1
|
* Address Clippy lintsLibravatar Poly2022-07-0910-57/+49
|
* Merge branch 'master' into themingLibravatar Héctor Ramón Jiménez2022-07-0810-175/+162
|\
| * 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
| |
| * better `wgsl` code styleLibravatar Cupnfish2022-07-024-11/+11
| |
| * fix `wgsl` syntaxLibravatar Cupnfish2022-07-021-1/+1
| |
| * update `wgpu` to `0.13`Libravatar Cupnfish2022-07-0210-119/+123
| |
| * Fix alpha blending for wgpu msaaLibravatar Cory Forsstrom2022-06-162-24/+4
| |
| * 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-041-1/+1
|\
| * 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-091-2/+0
|
* 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-281-3/+7
| | | | | | | | - 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