summaryrefslogtreecommitdiffstats
path: root/graphics/src/text/paragraph.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace `MaybeUninit` with `Option` in `paragraph`Libravatar Héctor Ramón Jiménez2023-09-011-44/+28
|
* Use `Arc::try_unwrap` in `Paragraph`Libravatar Héctor Ramón Jiménez2023-09-011-59/+95
| | | | | | We use `MaybeUninit` here instead of `Option` to save some cycles, but I will most likely change it for an `Option` since unsafe code is quite scary.
* Remove `Clone` implementation for `Paragraph`Libravatar Héctor Ramón Jiménez2023-09-011-1/+1
|
* Implement explicit text caching in the widget state treeLibravatar Héctor Ramón Jiménez2023-08-301-0/+246