| 353 | /// <param name="layout">The layout properties.</param> |
| 354 | /// <returns>The output lines list.</returns> |
| 355 | API_FUNCTION() Array<FontLineCache, InlinedAllocation<8>> ProcessText(const StringView& text, API_PARAM(Ref) const TextLayoutOptions& layout) |
| 356 | { |
| 357 | Array<FontLineCache, InlinedAllocation<8>> lines; |
| 358 | ProcessText(text, lines, layout); |
| 359 | return lines; |
| 360 | } |
| 361 | |
| 362 | /// <summary> |
| 363 | /// Processes text to get cached lines for rendering. |
no test coverage detected