summaryrefslogtreecommitdiffstats
path: root/wgpu/src (unfollow)
Commit message (Expand)AuthorFilesLines
2023-02-24Set `Attrs::monospaced` if `Font::Monospace` is selectedLibravatar Héctor Ramón Jiménez1-10/+13
2023-02-24Set a minimum `height` for `Buffer` of `size * 1.2`Libravatar Héctor Ramón Jiménez1-1/+4
2023-02-24Stop truncating the `renderers` in `text::Pipeline`Libravatar Héctor Ramón Jiménez1-1/+0
2023-02-24Avoid allocating `text_areas` in `text::Pipeline`Libravatar Héctor Ramón Jiménez1-7/+4
2023-02-24Stop reusing `SwashCache` in `text::Pipeline`Libravatar Héctor Ramón Jiménez1-7/+1
2023-02-24Disable `std` feature for `twox-hash` to fix Wasm buildLibravatar Héctor Ramón Jiménez1-3/+8
2023-02-24Fix `clippy` lints :tada:Libravatar Héctor Ramón Jiménez1-6/+7
2023-02-24Load `Iced-Icons.ttf` font in `text::Pipeline::new`Libravatar Héctor Ramón Jiménez2-3/+9
2023-02-24Use floating coordinates directly in `text::Pipeline`Libravatar Héctor Ramón Jiménez1-7/+6
2023-02-24Implement `font::load` command in `iced_native`Libravatar Héctor Ramón Jiménez2-204/+272
2023-02-24Overhaul `Font` type to allow font family selectionLibravatar Héctor Ramón Jiménez4-46/+26
2023-02-24Count `layout_runs` instead of using `visible_lines` in `text::Pipeline::prep...Libravatar Héctor Ramón Jiménez1-6/+7
2023-02-24Implement `hit_test` for `text::Pipeline` in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-6/+18
2023-02-24Use `bounds` directly for `measure` in text pipelineLibravatar Héctor Ramón Jiménez1-4/+1
2023-02-24Avoid unnecessary `Vec` allocation in text pipelineLibravatar Héctor Ramón Jiménez1-7/+5
2023-02-24Trim text `render_cache` after rendering in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-0/+2
2023-02-24Implement basic text caching in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-60/+141
2023-02-24Convert sRGB to linear RGB for text in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-2/+8
2023-02-24Implement proper text alignment support in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-5/+32
2023-02-24Implement support for multiple text layers in `iced_wgpu`Libravatar Héctor Ramón Jiménez2-13/+35
2023-02-24Draft `glyphon` implementation of text pipeline for `iced_wgpu`Libravatar Héctor Ramón Jiménez3-16/+166
2023-02-24Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependenciesLibravatar Héctor Ramón Jiménez2-325/+25
2023-02-23Remove logging large bytes arraysLibravatar Cory Forsstrom1-1/+17
2023-02-18Bump versions :tada:Libravatar Héctor Ramón Jiménez1-1/+1
2023-02-17Use `Pixels` for `Text::size`Libravatar Héctor Ramón Jiménez2-6/+6
2023-01-27Fix: Clippy lint 'uninlined_format_args'Libravatar 13r0ck1-1/+1
2023-01-14Bump versions :tada:Libravatar Héctor Ramón Jiménez1-1/+1
2023-01-09Restructured everything to make profiling a feature of iced_winit.Libravatar bungoboingo4-14/+14
2023-01-09Initial profiling support for Iced.Libravatar Bingus4-0/+28
2022-12-20Fix `clippy` lints for Rust 1.66Libravatar Héctor Ramón Jiménez2-6/+2
2022-12-07Bump versions :tada:Libravatar Héctor Ramón Jiménez1-1/+1
2022-12-06Remove `appearance` from `Handle`Libravatar Héctor Ramón Jiménez1-1/+6
2022-11-16Group all solid triangles independently of colorLibravatar Héctor Ramón Jiménez8-605/+582
2022-11-10Added conditional configurations for WASM target for gradients & storage buff...Libravatar bungoboingo2-2/+20
2022-11-10Fix outdated links in documentationLibravatar Héctor Ramón Jiménez1-1/+1
2022-11-05Remove redundant features in `iced_wgpu` and `iced_glow`Libravatar Héctor Ramón Jiménez3-17/+17
2022-11-05Use RGBA texture for `image` and `svg` pipelinesLibravatar Héctor Ramón Jiménez1-2/+2
2022-11-05Refactor some `image` traits a bitLibravatar Héctor Ramón Jiménez6-23/+33
2022-11-05Move image/svg handling into `iced_graphics`Libravatar Ian Douglas Scott6-505/+121
2022-11-03non uniform border radius for quadsLibravatar Robert Krahn2-15/+34
2022-11-03Refactor imports of `triangle` modules in `iced_glow` and `iced_wgpu`Libravatar Héctor Ramón Jiménez1-10/+10
2022-11-03Move `mesh::Style` to `triangle` and reuse it in `fill` and `stroke`Libravatar Héctor Ramón Jiménez1-5/+6
2022-11-03Reuse last set pipeline for `triangle` in `iced_wgpu`Libravatar Héctor Ramón Jiménez3-2/+33
2022-11-03Rename `buffers` module to `buffer`Libravatar Héctor Ramón Jiménez7-66/+66
2022-11-03Fix lints by `clippy`Libravatar Héctor Ramón Jiménez4-7/+6
2022-11-03Convert colors to linear RGB in `gradient` pipelinesLibravatar Héctor Ramón Jiménez1-8/+7
2022-11-03Convert colors to linear RGB before uploading in `solid` pipelinesLibravatar Héctor Ramón Jiménez1-1/+3
2022-11-03Run `cargo fmt`Libravatar Héctor Ramón Jiménez5-18/+8
2022-11-03Reuse last buffer in `Frame` if `mesh_style` matchesLibravatar Héctor Ramón Jiménez1-5/+2
2022-11-01Remove inconsistent `wgpu` importsLibravatar Héctor Ramón Jiménez1-2/+1