| 5637 | } |
| 5638 | |
| 5639 | const char* ImFont::CalcWordWrapPosition(float size, const char* text, const char* text_end, float wrap_width) |
| 5640 | { |
| 5641 | return ImFontCalcWordWrapPositionEx(this, size, text, text_end, wrap_width, ImDrawTextFlags_None); |
| 5642 | } |
| 5643 | |
| 5644 | ImVec2 ImFontCalcTextSizeEx(ImFont* font, float size, float max_width, float wrap_width, const char* text_begin, const char* text_end_display, const char* text_end, const char** out_remaining, ImVec2* out_offset, ImDrawTextFlags flags) |
| 5645 | { |
nothing calls this directly
no test coverage detected