MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / FindGlyphNoFallback

Method FindGlyphNoFallback

KBotExt/imgui/imgui_draw.cpp:3397–3405  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3395}
3396
3397const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c) const
3398{
3399 if (c >= (size_t)IndexLookup.Size)
3400 return NULL;
3401 const ImWchar i = IndexLookup.Data[c];
3402 if (i == (ImWchar)-1)
3403 return NULL;
3404 return &Glyphs.Data[i];
3405}
3406
3407// Wrapping skips upcoming blanks
3408static inline const char* CalcWordWrapNextLineStartA(const char* text, const char* text_end)

Callers 3

DebugTextEncodingMethod · 0.80
DebugNodeFontMethod · 0.80
FindFirstExistingGlyphFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected