| 205 | } |
| 206 | |
| 207 | void TextLayoutSkribidiFree(TextLayout* layout) |
| 208 | { |
| 209 | layout->m_Glyphs.SetCapacity(0); |
| 210 | layout->m_Lines.SetCapacity(0); |
| 211 | delete layout; |
| 212 | } |
| 213 | |
| 214 | TextResult TextLayoutSkribidiCreate(HFontCollection collection, |
| 215 | uint32_t* codepoints, uint32_t num_codepoints, |
no test coverage detected