Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUse a rope for text storage inside of TextRun #119
Comments
|
On second thought, this is not so easy. We need to be able to do the equivalent of We also need some equivalent functionality for |
|
This seems infeasible, as ropes are not sendable, and long term we want to put TextRuns into ARCs or cache them per-task. Also, ropes need some more user-friendly APIs (as noted above) |
|
Closing since there isn't much win to be had. Once text is shaped, its properties are queried from the |
Partially fix blur filters.
Right now, we simply copy all transformed text into a really long string, then put it into the
TextRun. It should be possible to make a rope by transferring ownership of nonzero transformed strings, and do no copying.