| 2105 | } |
| 2106 | |
| 2107 | std::pair<uint16_t, uint16_t> TextRenderer::wrapString(char* buffer, uint16_t stringWidth) const |
| 2108 | { |
| 2109 | return Impl::wrapString(_currentFontSpriteBase, buffer, stringWidth); |
| 2110 | } |
| 2111 | |
| 2112 | std::pair<uint16_t, uint16_t> TextRenderer::wrapString(Font font, char* buffer, uint16_t stringWidth) |
| 2113 | { |
nothing calls this directly
no test coverage detected