summaryrefslogtreecommitdiffstats
path: root/wgpu/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Introduce `iced_renderer` subcrate featuring runtime renderer fallbackLibravatar Héctor Ramón Jiménez2023-02-242-54/+88
|
* Trim `Cache` every 300 frames in `text::Pipeline`Libravatar Héctor Ramón Jiménez2023-02-241-3/+13
|
* Collapse conditional and please `clippy`Libravatar Héctor Ramón Jiménez2023-02-242-5/+6
|
* Provide some margin to static buffers when growingLibravatar Héctor Ramón Jiménez2023-02-242-6/+9
|
* Grow atlas in `text::Pipeline` when necessaryLibravatar Héctor Ramón Jiménez2023-02-242-32/+77
|
* Set scissoring properly in `text::Pipeline`Libravatar Héctor Ramón Jiménez2023-02-242-1/+10
|
* Reuse a `RenderPass` as much as possible in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-02-246-168/+192
|
* Refactor `triangle::Pipeline` into `prepare` and `render` architectureLibravatar Héctor Ramón Jiménez2023-02-246-282/+358
| | | | And get rid of the staging belt! :tada:
* Fix needless borrows in `image::Pipeline`Libravatar Héctor Ramón Jiménez2023-02-241-2/+2
|
* Refactor `image::Pipeline` into `prepare` and `render` architectureLibravatar Héctor Ramón Jiménez2023-02-244-147/+190
|
* Remove unnecessary borrow in `quad::Pipeline`Libravatar Héctor Ramón Jiménez2023-02-241-1/+1
|
* Fix rendering order for `quad::Pipeline`Libravatar Héctor Ramón Jiménez2023-02-242-14/+15
|
* Apply `ceil` to text bounds when drawingLibravatar Héctor Ramón Jiménez2023-02-241-2/+4
|
* Refactor `quad::Pipeline` to `prepare` and `render` architectureLibravatar Héctor Ramón Jiménez2023-02-243-112/+230
|
* Set `Attrs::monospaced` if `Font::Monospace` is selectedLibravatar Héctor Ramón Jiménez2023-02-241-10/+13
|
* Set a minimum `height` for `Buffer` of `size * 1.2`Libravatar Héctor Ramón Jiménez2023-02-241-1/+4
| | | | | This avoids text from misteriously disappearing, even if the user uses a `height` that isn't enough to fit the text.
* Stop truncating the `renderers` in `text::Pipeline`Libravatar Héctor Ramón Jiménez2023-02-241-1/+0
| | | | | We avoid recreating buffers this way, and the amount of layers should stay relatively low anyways.
* Avoid allocating `text_areas` in `text::Pipeline`Libravatar Héctor Ramón Jiménez2023-02-241-7/+4
|
* 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.
* Disable `std` feature for `twox-hash` to fix Wasm buildLibravatar Héctor Ramón Jiménez2023-02-241-3/+8
|
* 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-242-3/+9
|
* Use floating coordinates directly in `text::Pipeline`Libravatar Héctor Ramón Jiménez2023-02-241-7/+6
|
* Implement `font::load` command in `iced_native`Libravatar Héctor Ramón Jiménez2023-02-242-204/+272
|
* Overhaul `Font` type to allow font family selectionLibravatar Héctor Ramón Jiménez2023-02-244-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-241-60/+141
|
* 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-243-16/+166
|
* Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependenciesLibravatar Héctor Ramón Jiménez2023-02-242-325/+25
|
* Remove logging large bytes arraysLibravatar Cory Forsstrom2023-02-231-1/+17
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-02-181-1/+1
|
* 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 :tada:Libravatar Héctor Ramón Jiménez2023-01-141-1/+1
|
* Restructured everything to make profiling a feature of iced_winit.Libravatar bungoboingo2023-01-094-14/+14
|
* Initial profiling support for Iced.Libravatar Bingus2023-01-094-0/+28
|
* 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-071-1/+1
|
* 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-0216-1144/+765
|\
| * 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.
| * Fix outdated links in documentationLibravatar Héctor Ramón Jiménez2022-11-101-1/+1
| |