| 470 | } |
| 471 | |
| 472 | static void drawStringRawSprite(RenderTarget& rt, std::string_view text, TextDrawInfo& info) |
| 473 | { |
| 474 | CodepointView codepoints(text); |
| 475 | for (auto codepoint : codepoints) |
| 476 | { |
| 477 | drawCharacterSprite(rt, codepoint, info); |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | #ifndef DISABLE_TTF |
| 482 |
no test coverage detected