| 2734 | } |
| 2735 | |
| 2736 | const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c) const |
| 2737 | { |
| 2738 | if (c >= IndexLookup.Size) |
| 2739 | return NULL; |
| 2740 | const ImWchar i = IndexLookup.Data[c]; |
| 2741 | if (i == (ImWchar)-1) |
| 2742 | return NULL; |
| 2743 | return &Glyphs.Data[i]; |
| 2744 | } |
| 2745 | |
| 2746 | const char* ImFont::CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const |
| 2747 | { |
no outgoing calls
no test coverage detected