summaryrefslogtreecommitdiffstats
path: root/tiny_skia/src/backend.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename `viewport` to `clip_bounds`Libravatar Héctor Ramón Jiménez2023-12-021-6/+9
|
* Clip text to `viewport` bounds instead of layout boundsLibravatar Héctor Ramón Jiménez2023-12-011-10/+7
|
* Refactor texture image filteringLibravatar Héctor Ramón Jiménez2023-11-111-3/+13
| | | | | | - Support only `Linear` or `Nearest` - Simplify `Layer` groups - Move `FilterMethod` to `Image` and `image::Viewer`
* Merge branch 'master' into text-editorLibravatar Héctor Ramón Jiménez2023-10-271-4/+2
|\
| * Chore: Inline format args for ease of readingLibravatar Yuri Astrakhan2023-09-191-4/+2
| | | | | | | | A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
* | Draft `Editor` API and `TextEditor` widgetLibravatar Héctor Ramón Jiménez2023-09-121-0/+25
| |
* | Make `FontSystem` global and simplify `Paragraph` APILibravatar Héctor Ramón Jiménez2023-09-111-5/+0
|/
* Implement `draw_paragraph` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-09-031-1/+1
|
* Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-301-63/+42
|
* Upgrade resvg to 0.34 and tiny_skia to 0.10Libravatar Alec Deason2023-07-121-1/+9
|
* Decouple `Mesh` primitives from main `Primitive` typeLibravatar Héctor Ramón Jiménez2023-06-291-8/+0
|
* Introduce custom backend-specific primitivesLibravatar Héctor Ramón Jiménez2023-06-291-12/+24
|
* Reuse entries in `text::Cache` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-06-281-1/+1
|
* Merge pull request #1843 from wash2/fix-tiny-skia-quadLibravatar Héctor Ramón2023-06-271-18/+126
|\ | | | | fix: quad rendering including border only inside of the bounds
| * Fix import consistency in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-06-271-5/+3
| |
| * Draw border path for `quad` only if it has a border in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-06-271-105/+109
| |
| * fix: tiny-skia quad handle case where border_radius < border_width / 2.0Libravatar Ashley Wulber2023-05-111-7/+83
| |
| * fix: don't offset fill of quadLibravatar Ashley Wulber2023-05-111-12/+4
| |
| * fix: quad rendering including border only inside of the boundsLibravatar Ashley Wulber2023-05-101-4/+42
| |
* | Use subpixel glyph positioning and layout linearityLibravatar Héctor Ramón Jiménez2023-06-201-6/+0
| | | | | | | | ... for offsetting and scaling text
* | Merge pull request #1846 from bungoboingo/feat/background-gradientsLibravatar Héctor Ramón2023-05-191-0/+43
|\ \ | | | | | | [Feature] Gradients for Backgrounds
| * | Fix needless borrow in `tiny_skia::backend`Libravatar Héctor Ramón Jiménez2023-05-191-1/+1
| | |
| * | Inline `into_gradient` in `tiny_skia::backend`Libravatar Héctor Ramón Jiménez2023-05-191-43/+41
| | | | | | | | | | | | ... since it's not really reused anywhere else.
| * | Remove `Builder` abstractions for gradientsLibravatar Héctor Ramón Jiménez2023-05-191-1/+1
| | |
| * | Added support for gradients as background variants + other optimizations.Libravatar Bingus2023-05-111-0/+45
| |/
* / fix: when clearing damaged surface with background color blend mode should ↵Libravatar Ashley Wulber2023-05-151-0/+1
|/ | | | be Source only
* fix: border radius typoLibravatar Ashley Wulber2023-05-091-1/+1
|
* Warn about unsupported primitives in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-05-081-1/+9
|
* Support configurable `LineHeight` in text widgetsLibravatar Héctor Ramón Jiménez2023-05-041-4/+16
|
* Introduce `text::Shaping` enum and replace magic booleanLibravatar Héctor Ramón Jiménez2023-05-021-6/+6
|
* Make basic text shaping the default shaping strategyLibravatar Héctor Ramón Jiménez2023-05-021-1/+7
|
* Move damage tracking logic to `compositor` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-04-271-77/+3
|
* Update `tiny-skia` and `resvg`Libravatar Héctor Ramón Jiménez2023-04-261-19/+14
|
* Remove `debug` overlay from `iced_tiny_skia` for nowLibravatar Héctor Ramón Jiménez2023-04-261-38/+0
|
* Switch debug mode to fade old primitives and display damage in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-04-051-37/+60
|
* Present new frame only when damaged in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-04-051-2/+4
|
* Fix `Svg` and `Image` primitives in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-04-051-15/+22
|
* Group damage regions by area increaseLibravatar Héctor Ramón Jiménez2023-04-051-104/+171
|
* Keep playing with incremental rendering (still very slow)Libravatar Héctor Ramón Jiménez2023-04-041-82/+150
|
* Draft (very) basic incremental rendering for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-04-041-1/+67
|
* Introduce support for `Font` attributesLibravatar Héctor Ramón Jiménez2023-03-301-2/+2
|
* Fix panic rendering an out of bounds clip in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-171-0/+8
|
* Implement color filter support for `Primitive::Svg` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-091-1/+2
|
* Trim `raster` cache in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-071-0/+3
|
* Implement `vector` pipeline in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-071-6/+24
|
* Implement `raster` pipeline in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-071-5/+23
|
* Create `iced_widget` subcrate and re-organize the whole codebaseLibravatar Héctor Ramón Jiménez2023-03-041-9/+9
|
* Move `Canvas` and `QRCode` to `iced` crateLibravatar Héctor Ramón Jiménez2023-03-031-2/+0
| | | | Rename `canvas` modules to `geometry` in graphics subcrates
* Rename `canvas::frame` to `canvas` in `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-03-031-0/+3
|
* Reuse `ClipMask` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-021-14/+27
|