| 679 | } |
| 680 | |
| 681 | static void processStringCodepoint(RenderTarget& rt, codepoint_t codepoint, TextDrawInfo& info) |
| 682 | { |
| 683 | char buffer[8]{}; |
| 684 | UTF8WriteCodepoint(buffer, codepoint); |
| 685 | processStringLiteral(rt, buffer, info); |
| 686 | } |
| 687 | |
| 688 | static void processString(RenderTarget& rt, std::string_view text, TextDrawInfo& info) |
| 689 | { |
no test coverage detected