summaryrefslogtreecommitdiffstats
path: root/wgpu (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Added conditional configurations for WASM target for gradients & storage ↵Libravatar bungoboingo2022-11-102-2/+20
| | | | buffers, since storage buffers are not supported on wgpu WASM target at the moment.
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-11-101-1/+1
|
* Fix outdated links in documentationLibravatar Héctor Ramón Jiménez2022-11-101-1/+1
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-11-101-3/+3
|
* Remove redundant features in `iced_wgpu` and `iced_glow`Libravatar Héctor Ramón Jiménez2022-11-054-19/+18
|
* Use RGBA texture for `image` and `svg` pipelinesLibravatar Héctor Ramón Jiménez2022-11-051-2/+2
|
* Refactor some `image` traits a bitLibravatar Héctor Ramón Jiménez2022-11-056-23/+33
| | | | | | | - Use `Size<u32>` were applicable. - Rename `TextureStore` to `image::Storage`. - Rename `TextureStoreEntry` to `image::storage::Entry`. - Wire up `viewport_dimensions` to `iced_glow` for `Svg`.
* Move image/svg handling into `iced_graphics`Libravatar Ian Douglas Scott2022-11-057-537/+135
| | | | | | | | | The `TextureStore` trait is implemented by the atlas, and can also be implemented in the glow renderer or in a software renderer. The API here may be improved in the future, but API stability is presumably not a huge issue since these types will only be used by renderer backends.
* Refactor imports of `triangle` modules in `iced_glow` and `iced_wgpu`Libravatar Héctor Ramón Jiménez2022-11-031-10/+10
|
* Move `mesh::Style` to `triangle` and reuse it in `fill` and `stroke`Libravatar Héctor Ramón Jiménez2022-11-031-5/+6
|
* Merge branch 'master' into fear/linear-gradientsLibravatar Héctor Ramón Jiménez2022-11-032-7/+8
|\
| * Fix inconsistent version format for `raw-window-handle` dependencyLibravatar Héctor Ramón Jiménez2022-11-011-1/+1
| |
| * 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-012-7/+9
| |
* | 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
| |
* | Merge branch 'master' into fear/linear-gradientsLibravatar Bingus2022-10-071-3/+4
|\|
| * add a link to wgpu supported platforms listLibravatar Alistair Keiller2022-10-061-2/+3
| |
| * remove DX11 support from wgpuLibravatar Alistair Keiller2022-10-061-1/+1
| |
* | 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-2911-370/+1085
|/
* 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-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
| |