summaryrefslogtreecommitdiffstats
path: root/tiny_skia (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2025-02-214-4/+4
|
* Support custom renderers in `iced_test` through `renderer::Headless` traitLibravatar Héctor Ramón Jiménez2024-12-141-1/+24
|
* Remove `surface` argument of `Compositor::screenshot`Libravatar Ian Douglas Scott2024-11-211-4/+5
| | | | | | | | This argument was completely ignored by the wgpu renderer, and used only for the `clip_mask` by the `tiny_skia` renderer. I believe creating a new clip mask is correct. This way it's possible to render offscreen without needing a surface.
* Include images and saved meshes when pasting `Frame`Libravatar Gabriel Vogel2024-09-241-0/+1
| | | | | | | | `tiny_skia::Frame` was ignoring images in `Frame::paste`, making images not show up when created in a `with_clip` context. `wgpu::Frame` similarly did not pass through meshes in its paste method, that may have been saved from a nested `with_clip` call.
* Make rendering of svg that has text work out of the box (#2560)Libravatar Jovansonlee Cesar2024-09-131-10/+21
| | | | | | | | | | | | | | | * fix: load system fonts to usvg font_db, this will make rendering of text in svg that has it * feat: add an example that renders svg that has text on it * Initialize `fontdb` only once for `vector` images * Remove `svg_text` example * Set `fontdb` for `usvg::Options` in `tiny_skia::vector` --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev>
* Leverage `stroke` for `stroke_rectangle` in `tiny-skia` backendLibravatar Héctor Ramón Jiménez2024-09-101-17/+1
|
* Add stroke_rectangleLibravatar Vlad-Stefan Harbuz2024-09-101-0/+25
| | | | | This method should be able to leverage performance improvements in lyon's `tessellate_rectangle` over `tessellate_path`.
* Introduce `Svg` struct in `core::svg`Libravatar Héctor Ramón Jiménez2024-08-044-76/+23
|
* Simplify types in `tiny_skia::layer`Libravatar Héctor Ramón Jiménez2024-08-041-16/+12
|
* Introduce `Image` struct in `core::image`Libravatar Héctor Ramón Jiménez2024-08-044-93/+38
|
* Implement image support for `canvas` widgetLibravatar Héctor Ramón Jiménez2024-08-045-5/+138
|
* Render text on top of images by defaultLibravatar Héctor Ramón Jiménez2024-08-031-10/+10
|
* Update `cosmic-text` and `resvg` (#2416)Libravatar Héctor Ramón2024-07-173-26/+26
| | | | | | | | | | | | | | | | | * Update `cosmic-text`, `glyphon`, and `resvg` * Fix slow font fallback with `Shaping::Basic` in `cosmic-text` * Update `cosmic-text` and `resvg` * Update `cosmic-text` * Fix `SelectAll` action in `editor` * Fix some panics in `graphics::text::editor` * Remove empty `if` statement in `tiny_skia::vector` * Update `cosmic-text`, `glyphon`, and `rustc-hash`
* Introduce dynamic `opacity` support for `Image` and `Svg`Libravatar Héctor Ramón Jiménez2024-05-035-2/+26
|
* Introduce `center` widget helperLibravatar Héctor Ramón Jiménez2024-05-032-19/+19
| | | | | | | | ... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result.
* Remove commented code in `tiny_skia::layer`Libravatar Héctor Ramón Jiménez2024-05-021-16/+0
|
* Simplify image rotation API and its internalsLibravatar Héctor Ramón Jiménez2024-05-023-26/+21
|
* Add `Image` rotation supportLibravatar Héctor Ramón Jiménez2024-05-024-23/+79
| | | | Co-authored-by: DKolter <68352124+DKolter@users.noreply.github.com>
* Use an opaque `Id` type for `image::Handle`Libravatar Héctor Ramón Jiménez2024-05-011-2/+2
| | | | Hashing pointers is a terrible idea.
* Use `Bytes` as the `Container` of `ImageBuffer`Libravatar Héctor Ramón Jiménez2024-05-011-1/+1
| | | | | Since we don't need to mutate images once loaded, we avoid unnecessary extra allocations.
* Introduce `canvas::Cache` groupingLibravatar Héctor Ramón Jiménez2024-04-301-2/+3
| | | | | Caches with the same `Group` will share their text atlas!
* Clip quad damage with layer bounds in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-04-101-1/+11
|
* Sort damage by distance from origin in `iced_graphics::damage`Libravatar Héctor Ramón Jiménez2024-04-101-10/+8
|
* Track image damage in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-04-101-0/+8
|
* Account for `transformation` in `Text::visible_bounds`Libravatar Héctor Ramón Jiménez2024-04-101-3/+1
|
* Reintroduce damage tracking for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-04-106-92/+191
|
* Port `iced_tiny_skia` to new layering architectureLibravatar Héctor Ramón Jiménez2024-04-099-1187/+1584
|
* Merge branch 'master' into wgpu/better-architectureLibravatar Héctor Ramón Jiménez2024-04-078-4/+23
|\
| * Use built-in `[lints]` table in `Cargo.toml`Libravatar Héctor Ramón Jiménez2024-04-078-4/+23
| |
* | Decouple caching from layering and simplify everythingLibravatar Héctor Ramón Jiménez2024-04-051-2/+2
|/
* Merge pull request #2357 from iced-rs/wgpu/use-staging-beltLibravatar Héctor Ramón2024-03-301-1/+0
|\ | | | | Use a `StagingBelt` in `iced_wgpu` for regular buffer uploads
| * Replace `xxhash-rust` with `rustc-hash`Libravatar Héctor Ramón Jiménez2024-03-301-1/+0
| |
* | Make tiny-skia equivalentLibravatar Daniel Yoon2024-03-261-1/+2
|/
* Reintroduce backend selection through `ICED_BACKEND` env varLibravatar Héctor Ramón Jiménez2024-03-241-5/+16
|
* Rename `compositor::Renderer` to `Default`Libravatar Héctor Ramón Jiménez2024-03-221-2/+2
|
* Allow custom renderers in `Program` and `Application`Libravatar Héctor Ramón Jiménez2024-03-222-4/+13
|
* 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
|
* Restore `canvas::Frame` APILibravatar Héctor Ramón Jiménez2024-03-221-5/+3
|
* Implement composable, type-safe renderer fallbackLibravatar Héctor Ramón Jiménez2024-03-213-24/+55
|
* Show name of current `Theme` in `clock` exampleLibravatar Héctor Ramón Jiménez2024-03-161-5/+7
|
* Fix `block_on` in `iced_wgpu` hanging Wasm buildsLibravatar Héctor Ramón Jiménez2024-03-071-2/+3
|
* Fix `iced_tiny_skia` clipping line strokesLibravatar Héctor Ramón Jiménez2024-02-221-2/+2
|
* Fix text transparency in `iced_tiny_skia`Libravatar Daniel Yoon2024-02-151-1/+10
|
* Fix clipping of text in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2024-02-111-38/+50
|
* tiny_skia: Add a capacity limit to `GlyphCache`Libravatar Mohammad AlSaleh2024-02-071-1/+7
| | | | | | | | * Trim the cache if `recently_used` size reaches the limit, even if a trim interval hasn't passed. * Shrink `entries` and `recently_used` to the limit when trimming. Signed-off-by: Mohammad AlSaleh <CE.Mohammad.AlSaleh@gmail.com>
* Introduce `with_transformation` to `Renderer` traitLibravatar Héctor Ramón Jiménez2024-02-023-16/+39
|
* 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-022-49/+48
|
* Assert dimensions of quads are normal in `iced_tiny_skia`Libravatar Josh Megnauth2024-01-311-0/+9
|