* add support for svg icons
* remove SVG helper struct
* forgot to remove default features
* rework api for custom glyphs
* remove unused file
* expose custom glyph structs
* remove `InlineBox`
* use slice for TextArea::custom_glyphs
* offset custom glyphs by text area position
* remove svg feature
* remove unused file
* add scale field to CustomGlyphInput
* update custom-glyphs example to winit 0.30
* fix the mess merge conflicts made
* add final newline
* make custom-glyphs a default feature
* remove custom-glyphs feature
* remove unnecessary pub(crate)
* rename CustomGlyphDesc to CustomGlyph
* rename CustomGlyphID to CustomGlyphId
* improve custom glyph API and refactor text renderer
* rename CustomGlyphInput and CustomGlyphOutput, add some docs
* Support sharing `Pipeline` state between `TextAtlas`
* Keep using `Vec` for pipeline cache
* Use `OnceCell` to keep `Pipeline` private
* Revert "Use `OnceCell` to keep `Pipeline` private"
This reverts commit 4112732b1734a3bb6b915d2103e699ef549b77c1.
* Rename `Pipeline` type to `Cache`
Before this commit, all reexported symbols were displayed as if they
were part of `glyphon` directly. Users not being able to see at a glance
what's part of which crate has a few disadvantages. It makes
understanding the whole stack more difficult, since it's unclear what's
part of the wgpu-integration and what's part of the general text
handling. Personally, I also think this can deter people from using
glyphon as this makes the crate (which is "just" the wgpu integration)
seem huge. Finally, some symbols in the docs were not linked (as if it
was private), which is also really bad for browsing docs.
The latest `cosmic-text` release performs bucketing calculations after
layouting. This allows us to provide proper subpixel offsets, as well as
scale any buffer thanks to its linear layout properties.
See https://github.com/pop-os/cosmic-text/pull/143.