MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / FindGlyphNoFallback

Method FindGlyphNoFallback

lib/imgui/imgui_draw.cpp:2736–2744  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2734}
2735
2736const 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
2746const char* ImFont::CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const
2747{

Callers 2

ImFontAtlasBuildFinishFunction · 0.80
ShowStyleEditorMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected