summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Group damage regions by area increaseLibravatar Héctor Ramón Jiménez2023-04-054-109/+200
|
* Keep playing with incremental rendering (still very slow)Libravatar Héctor Ramón Jiménez2023-04-042-84/+160
|
* Draft (very) basic incremental rendering for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-04-0410-92/+286
|
* Implement `Frame::clip` for `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-04-041-1/+6
|
* Warn about invalid paths in `iced_tiny_skia` instead of panickingLibravatar Héctor Ramón Jiménez2023-04-042-7/+14
|
* Introduce `font::Stretch`Libravatar Héctor Ramón Jiménez2023-03-303-0/+49
|
* Introduce support for `Font` attributesLibravatar Héctor Ramón Jiménez2023-03-3015-44/+129
|
* Export `Hasher` in `advanced` moduleLibravatar Héctor Ramón Jiménez2023-03-291-1/+1
|
* Export `Pixels` in root crateLibravatar Héctor Ramón Jiménez2023-03-291-2/+2
|
* Export `iced_graphics` in `advanced` module (for now)Libravatar Héctor Ramón Jiménez2023-03-291-0/+1
|
* Export `iced_core::mouse` in `advanced` moduleLibravatar Héctor Ramón Jiménez2023-03-291-0/+1
|
* Update `cosmic-text` to latest :tada:Libravatar Héctor Ramón Jiménez2023-03-194-371/+289
|
* Merge branch 'master' into advanced-textLibravatar Héctor Ramón Jiménez2023-03-177-38/+21
|\
| * Merge pull request #1730 from casperstorm/feat/platform-specific-window-optionsLibravatar Héctor Ramón2023-03-142-2/+8
| |\ | | | | | | Platform specific `window` options.
| | * Re-export `settings::PlatformSpecific` from `iced_winit` directlyLibravatar Héctor Ramón Jiménez2023-03-143-42/+3
| | |
| | * Added macOS platform specific optionsLibravatar Casper Storm2023-03-144-2/+47
| |/
| * Merge pull request #1755 from iced-rs/fix/clippy-lints-1.68Libravatar Héctor Ramón2023-03-147-54/+18
| |\ | | | | | | Fix `clippy` lints for Rust 1.68
| | * Fix `clippy` lints for Rust 1.68Libravatar Héctor Ramón Jiménez2023-03-147-54/+18
| |/
| * Merge pull request #1750 from lupd/checkbox_docsLibravatar Héctor Ramón2023-03-081-1/+1
| |\ | | | | | | Use correct package name in checkbox example docs
| | * Use correct package name in checkbox example docsLibravatar lupd2023-03-081-1/+1
| |/
* | Trim text `Buffer` cache every frame in `iced_wgpu` and `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-172-27/+9
| |
* | Fix panic rendering an out of bounds clip in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-171-0/+8
| |
* | Merge pull request #1748 from iced-rs/feature/software-rendererLibravatar Héctor Ramón2023-03-09261-3959/+5931
|\ \ | | | | | | Software renderer, runtime renderer fallback, and core consolidation
| * | Implement color filter support for `Primitive::Svg` in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-092-19/+50
| | |
| * | Merge branch 'master' into feature/software-rendererLibravatar Héctor Ramón Jiménez2023-03-0712-82/+45
| |\|
| | * Update `sysinfo` to `0.28`Libravatar Héctor Ramón Jiménez2023-03-072-3/+3
| | |
| | * Merge pull request #1742 from bungoboingo/fix/fullscreenLibravatar Héctor Ramón2023-03-033-3/+21
| | |\ | | | | | | | | [Fix] Fullscreen only works on primary monitor
| | | * Expose `window` commands for Wasm buildsLibravatar Héctor Ramón Jiménez2023-03-032-12/+4
| | | |
| | | * Added example of toggling fullscreen to TODOs.Libravatar Bingus2023-03-021-2/+28
| | | |
| | | * Fixed fullscreen only being possible on primary monitor.Libravatar Bingus2023-03-021-1/+1
| | |/
| | * Merge pull request #1735 from iced-rs/remove-alignment-fillLibravatar Héctor Ramón2023-02-286-72/+14
| | |\ | | | | | | | | Remove `Fill` variant for `Alignment`
| | | * Remove `Fill` variant for `Alignment`Libravatar Héctor Ramón Jiménez2023-02-276-72/+14
| | |/ | | | | | | | | | | | | Implementing this generically in our `flex` logic has an exponential cost. Let's explore other options!
| | * Bump version of `iced_core` :tada:Libravatar Héctor Ramón Jiménez2023-02-251-1/+1
| | |
| | * Merge pull request #1734 from iced-rs/fix/padding-fitLibravatar Héctor Ramón2023-02-251-4/+6
| | |\ | | | | | | | | Fix `Padding::fit` on irregular values for an axis
| | | * Fix `Padding::fit` on irregular values for an axisLibravatar Héctor Ramón Jiménez2023-02-251-4/+6
| | | |
| | * | Merge pull request #1733 from iced-rs/update/svg-depsLibravatar Héctor Ramón2023-02-252-20/+9
| | |\ \ | | | |/ | | |/| Update `resvg` in `iced_graphics`
| * | | Enable renderer backends in `integration` exampleLibravatar Héctor Ramón Jiménez2023-03-072-1/+2
| | | |
| * | | Tell `clippy` to go learn the borrow rulesLibravatar Héctor Ramón Jiménez2023-03-071-0/+1
| | | |
| * | | Use `ceil` to avoid cut text in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-071-1/+6
| | | | | | | | | | | | | | | | | | | | This won't be necessary once we reuse the buffers from layouting by leveraging layout linearity.
| * | | Use default features in `svg` exampleLibravatar Héctor Ramón Jiménez2023-03-071-1/+1
| | | |
| * | | Trim `raster` cache in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-072-0/+12
| | | |
| * | | Implement `vector` pipeline in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-077-10/+184
| | | |
| * | | Implement `raster` pipeline in `iced_tiny_skia`Libravatar Héctor Ramón Jiménez2023-03-074-6/+134
| | | |
| * | | Remove `image` abstractions in `iced_graphics`Libravatar Héctor Ramón Jiménez2023-03-0711-436/+352
| | | |
| * | | Introduce backend feature flags in `iced_renderer`Libravatar Héctor Ramón Jiménez2023-03-066-95/+149
| | | |
| * | | Move `webgl` feature selection for `wgpu` into `iced_wgpu`Libravatar Héctor Ramón Jiménez2023-03-053-8/+8
| | | |
| * | | Fix `README` of `iced_runtime`Libravatar Héctor Ramón Jiménez2023-03-051-16/+4
| | | |
| * | | Rename `iced_native` to `iced_runtime`Libravatar Héctor Ramón Jiménez2023-03-0539-97/+87
| | | |
| * | | Converge `Command` types from `iced_futures` and `iced_native`Libravatar Héctor Ramón Jiménez2023-03-059-266/+161
| | | |
| * | | Fix `wasm-bindgen` backend in `iced_futures`Libravatar Héctor Ramón Jiménez2023-03-051-8/+6
| | | |