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

Method FindGlyph

lib/imgui/imgui_draw.cpp:2726–2734  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2724}
2725
2726const ImFontGlyph* ImFont::FindGlyph(ImWchar c) const
2727{
2728 if (c >= IndexLookup.Size)
2729 return FallbackGlyph;
2730 const ImWchar i = IndexLookup.Data[c];
2731 if (i == (ImWchar)-1)
2732 return FallbackGlyph;
2733 return &Glyphs.Data[i];
2734}
2735
2736const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c) const
2737{

Callers 2

RenderTextEllipsisMethod · 0.80
InputTextExMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected