summaryrefslogtreecommitdiffstats
path: root/wgpu (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Bump version of `iced_wgpu` :tada:Libravatar Héctor Ramón Jiménez2023-08-021-1/+1
|
* Avoid empty overlay layer in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-08-021-1/+4
|
* Fix `iced_wgpu` freezing on empty layersLibravatar Héctor Ramón Jiménez2023-08-021-1/+1
| | | | The `render` method would return when an empty layer is encountered without explicitly dropping the `RenderPass` (necessary because we use `ManuallyDrop`), which would then leak memory and freeze `wgpu` until the surface was recreated.
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2023-07-282-8/+5
|
* Update `glyphon` to `0.3` :tada:Libravatar Héctor Ramón Jiménez2023-07-271-6/+2
|
* Use official `glyphon` repository instead of forkLibravatar Héctor Ramón Jiménez2023-07-201-2/+2
|
* Update `cosmic-text` and `glyphon`Libravatar Héctor Ramón Jiménez2023-07-203-57/+20
|
* Update `resvg` dependency to `0.35`Libravatar Héctor Ramón Jiménez2023-07-121-1/+1
|
* Improve code style in `vector` modulesLibravatar Héctor Ramón Jiménez2023-07-121-11/+12
|
* Upgrade resvg to 0.34 and tiny_skia to 0.10Libravatar Alec Deason2023-07-122-11/+22
|
* Trim text measurements only before `layout`Libravatar Héctor Ramón Jiménez2023-06-292-28/+21
|
* Introduce `Mode` for `text::Cache` and trim only when switching modesLibravatar Héctor Ramón Jiménez2023-06-291-18/+64
|
* Write missing docs in `iced_graphics` and `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-06-292-2/+6
|
* Decouple `Mesh` primitives from main `Primitive` typeLibravatar Héctor Ramón Jiménez2023-06-296-107/+142
|
* Introduce custom backend-specific primitivesLibravatar Héctor Ramón Jiménez2023-06-296-16/+21
|
* Retain text measurements as long as original entriesLibravatar Héctor Ramón Jiménez2023-06-281-17/+18
|
* Retain measurements for text entries even if not directly usedLibravatar Héctor Ramón Jiménez2023-06-281-2/+4
|
* Fix needless borrow in `iced_wgpu` and `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-06-281-1/+1
|
* Reuse entries in `text::Cache` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-06-281-7/+10
|
* Reuse entries in `text::Cache` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-06-282-29/+54
|
* Merge pull request #1885 from bungoboingo/gradient-packing-optimizationLibravatar Héctor Ramón2023-06-274-156/+128
|\ | | | | Small gradient optimization
| * Switched to packing using f16s to maintain acceptable precision.Libravatar Bingus2023-06-074-90/+110
| |
| * Updated color packing into u32 to consider incorrect web-colors.Libravatar Bingus2023-06-062-36/+22
| |
| * Optimized gradient data packing.Libravatar Bingus2023-06-064-126/+92
| |
* | Merge pull request #1845 from bungoboingo/feat/offscreen-renderingLibravatar Héctor Ramón2023-06-274-10/+319
|\ \ | | | | | | Feat: Offscreen Rendering & Screenshots
| * | Simplify `offscreen` API as `color` module in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-06-275-236/+180
| | |
| * | Fixed documentationLibravatar Bingus2023-06-141-1/+1
| | |
| * | Replaced offscreen_blit.wgsl with existing blit.wgsl.Libravatar Bingus2023-06-142-130/+60
| | |
| * | Added in check for web-colors.Libravatar Bingus2023-06-081-7/+16
| | |
| * | Adjusted offscreen pass to be a render pass vs compute for compat with ↵Libravatar Bingus2023-06-083-57/+165
| | | | | | | | | | | | web-colors flag.
| * | Added offscreen rendering support for wgpu & tiny-skia exposed with the ↵Libravatar Bingus2023-06-066-11/+329
| |/ | | | | | | window::screenshot command.
* | Clear text caches after a font is loadedLibravatar Héctor Ramón Jiménez2023-06-211-0/+2
| |
* | Use subpixel glyph positioning and layout linearityLibravatar Héctor Ramón Jiménez2023-06-203-32/+19
| | | | | | | | ... for offsetting and scaling text
* | Update `glyphon` and `cosmic-text`Libravatar Héctor Ramón Jiménez2023-06-162-19/+14
|/
* Merge pull request #1888 from iced-rs/web-colorsLibravatar Héctor Ramón2023-06-039-22/+52
|\ | | | | Introduce `web-colors` feature flag to enable "sRGB linear" blending
| * Use consistent color strategy in `glyphon`Libravatar Héctor Ramón Jiménez2023-06-012-2/+11
| |
| * Use proper gamma correction mode in `image::Atlas::grow`Libravatar Héctor Ramón Jiménez2023-05-311-1/+5
| |
| * Avoid gamma correction when `web-colors` is enabled for imagesLibravatar Héctor Ramón Jiménez2023-05-311-1/+6
| |
| * Introduce `web-colors` feature flag to enable sRGB linear blendingLibravatar Héctor Ramón Jiménez2023-05-318-18/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is how browsers perform color management. They treat gamma-corrected sRGB colors as if they were linear RGB. Correctness aside, this mode is introduced for legacy reasons. Most UI/UX tooling uses this color management as well, and many have created an intuition about how color should behave from interacting with a browser. This feature flag should facilitate application development with `iced` in those cases. More details: https://webcolorisstillbroken.com/
* | Fix empty scissor rectangle in `iced_wgpu::triangle` pipelineLibravatar Héctor Ramón Jiménez2023-06-011-0/+4
|/
* Merge pull request #1883 from iced-rs/update/glyphonLibravatar Héctor Ramón2023-05-301-1/+1
|\ | | | | Skip missing glyphs instead of panicking in `glyphon`
| * Skip missing glyphs instead of panicking in `glyphon`Libravatar Héctor Ramón Jiménez2023-05-291-1/+1
| |
* | Move `Pipeline` struct definition after `Layer` in `quad` submodulesLibravatar Héctor Ramón Jiménez2023-05-302-10/+10
| |
* | Improve boundaries between `quad` submodules in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-05-303-55/+75
| |
* | Rename `quad_order` variable to `kind` in `quad::Pipeline::render`Libravatar Héctor Ramón Jiménez2023-05-301-2/+2
| |
* | Improve consistency of match branches in `quad::Batch::add`Libravatar Héctor Ramón Jiménez2023-05-301-4/+2
| |
* | Simplify `order` match statement in `quad::Batch::add`Libravatar Héctor Ramón Jiménez2023-05-301-26/+9
| |
* | Rename `quad::Order` to `quad::Kind`Libravatar Héctor Ramón Jiménez2023-05-301-15/+15
| |
* | Move `layer::quad` types to `quad` moduleLibravatar Héctor Ramón Jiménez2023-05-305-435/+408
| | | | | | | | Not sure why I split these to begin with!
* | Adjusted `Quads` struct to be opaque `quad::Layer`.Libravatar Bingus2023-05-294-106/+109
| |