| 52 | }; |
| 53 | |
| 54 | struct TextLayoutEntrySegment { |
| 55 | Rect bounds; |
| 56 | Ref<Font> font; |
| 57 | std::string characters; |
| 58 | |
| 59 | TextLayoutEntrySegment(); |
| 60 | TextLayoutEntrySegment(const Rect& bounds, const Ref<Font>& font, const std::string& characters); |
| 61 | }; |
| 62 | |
| 63 | struct TextLayoutEntry { |
| 64 | sk_sp<SkTextBlob> textBlob; |
no outgoing calls