summaryrefslogtreecommitdiffstats
path: root/tiny_skia/src/backend.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Port `iced_tiny_skia` to new layering architectureLibravatar Héctor Ramón Jiménez2024-04-091-1033/+0
|
* Use built-in `[lints]` table in `Cargo.toml`Libravatar Héctor Ramón Jiménez2024-04-071-0/+1
|
* Make tiny-skia equivalentLibravatar Daniel Yoon2024-03-261-1/+2
|
* Rename `compositor::Renderer` to `Default`Libravatar Héctor Ramón Jiménez2024-03-221-2/+2
|
* Fix standalone compilation of `iced_widget` crateLibravatar Héctor Ramón Jiménez2024-03-221-1/+0
|
* Make `iced_tiny_skia` optional with a `tiny-skia` featureLibravatar Héctor Ramón Jiménez2024-03-221-0/+3
|
* Implement composable, type-safe renderer fallbackLibravatar Héctor Ramón Jiménez2024-03-211-0/+9
|
* Fix `iced_tiny_skia` clipping line strokesLibravatar Héctor Ramón Jiménez2024-02-221-2/+2
|
* Fix clipping of text in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-02-111-38/+50
|
* Introduce `with_transformation` to `Renderer` traitLibravatar Héctor Ramón Jiménez2024-02-021-10/+18
|
* Allow only uniform scaling in `Transformation`Libravatar Héctor Ramón Jiménez2024-02-021-4/+4
|
* Replace `Primitive::Translate` with `Transform`Libravatar Héctor Ramón Jiménez2024-02-021-46/+45
|
* Assert dimensions of quads are normal in `iced_tiny_skia`Libravatar Josh Megnauth2024-01-311-0/+9
|
* Introduce `Border` struct analogous to `Shadow`Libravatar Héctor Ramón Jiménez2024-01-201-91/+76
|
* Skip transparent shadows in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-01-201-94/+101
|
* Use `Default` implementation of `renderer::Quad`Libravatar Héctor Ramón Jiménez2024-01-201-12/+13
|
* Make `shadow` optional in `renderer::Quad`Libravatar Héctor Ramón Jiménez2024-01-201-13/+11
|
* feat: quad shadowsLibravatar Nick Senger2024-01-201-0/+106
|
* Fix paths with negative coordinates in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-01-171-8/+10
|
* Introduce `RawText` to `Primitive` in `iced_graphics`Libravatar Héctor Ramón Jiménez2023-12-051-0/+30
| | | | | This should allow users to directly render a `cosmic_text::Buffer`.
* 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
|