summaryrefslogtreecommitdiffstats
path: root/wgpu (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Avoid allocating `text_areas` in `text::Pipeline`Libravatar Héctor Ramón Jiménez2023-02-242-8/+5
|
* Stop reusing `SwashCache` in `text::Pipeline`Libravatar Héctor Ramón Jiménez2023-02-241-7/+1
| | | | | `SwashCache` can't be easily trimmed and it's not really getting us anything since `glyphon` already caches using a glyph atlas anyways.
* Update `glyphon` fork (sRGB support)Libravatar Héctor Ramón Jiménez2023-02-241-1/+1
|
* Disable `std` feature for `twox-hash` to fix Wasm buildLibravatar Héctor Ramón Jiménez2023-02-242-4/+16
|
* Fix `clippy` lints :tada:Libravatar Héctor Ramón Jiménez2023-02-241-6/+7
|
* Load `Iced-Icons.ttf` font in `text::Pipeline::new`Libravatar Héctor Ramón Jiménez2023-02-243-4/+10
|
* Use floating coordinates directly in `text::Pipeline`Libravatar Héctor Ramón Jiménez2023-02-242-8/+8
|
* Implement `font::load` command in `iced_native`Libravatar Héctor Ramón Jiménez2023-02-243-204/+273
|
* Overhaul `Font` type to allow font family selectionLibravatar Héctor Ramón Jiménez2023-02-245-46/+26
|
* Count `layout_runs` instead of using `visible_lines` in ↵Libravatar Héctor Ramón Jiménez2023-02-241-6/+7
| | | | `text::Pipeline::prepare`
* Implement `hit_test` for `text::Pipeline` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-02-241-6/+18
|
* Use `bounds` directly for `measure` in text pipelineLibravatar Héctor Ramón Jiménez2023-02-241-4/+1
|
* Avoid unnecessary `Vec` allocation in text pipelineLibravatar Héctor Ramón Jiménez2023-02-241-7/+5
|
* Trim text `render_cache` after rendering in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-02-241-0/+2
|
* Implement basic text caching in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-02-242-60/+143
|
* Convert sRGB to linear RGB for text in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-02-241-2/+8
|
* Implement proper text alignment support in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-02-241-5/+32
|
* Implement support for multiple text layers in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-02-242-13/+35
|
* Draft `glyphon` implementation of text pipeline for `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-02-244-16/+171
|
* Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependenciesLibravatar Héctor Ramón Jiménez2023-02-243-329/+25
|
* Remove logging large bytes arraysLibravatar Cory Forsstrom2023-02-231-1/+17
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-02-183-5/+5
|
* Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2023-02-172-6/+6
|
* Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck2023-01-271-1/+1
|
* Bump versions in `README`sLibravatar Héctor Ramón Jiménez2023-01-141-1/+1
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-01-142-4/+4
|
* Restructured everything to make profiling a feature of iced_winit.Libravatar bungoboingo2023-01-095-29/+27
|
* Initial profiling support for Iced.Libravatar Bingus2023-01-095-11/+45
|
* Fix `clippy` lints for Rust 1.66Libravatar Héctor Ramón Jiménez2022-12-202-6/+2
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-12-072-4/+4
|
* Remove `appearance` from `Handle`Libravatar Héctor Ramón Jiménez2022-12-061-1/+6
| | | | ... and pass it directly to `Renderer::draw` instead.
* Merge branch 'master' into non-uniform-border-radius-for-quadsLibravatar Héctor Ramón Jiménez2022-12-0217-1179/+781
|\
| * Group all solid triangles independently of colorLibravatar Héctor Ramón Jiménez2022-11-168-605/+582
| |
| * 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.
* | non uniform border radius for quadsLibravatar Robert Krahn2022-11-032-15/+34
|/
* 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