slint icon indicating copy to clipboard operation
slint copied to clipboard

Path in the software renderer

Open ogoffart opened this issue 6 months ago • 1 comments

The Path element is not supported with the software renderer.

We have different choice to implement it:

  1. use some third party crate such as tiny_skia or something to draw the path in an cached image. The drawback is that this will require std, but should be fairly easy to implement.
  2. Make it in a way that could work with no_std and with minimal allocation on MCUs

ogoffart avatar Dec 18 '23 12:12 ogoffart