MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / FindGlyphNoFallback

Method FindGlyphNoFallback

Dependencies/ImGui/src/imgui_draw.cpp:3914–3922  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3912}
3913
3914ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c)
3915{
3916 if (c >= (size_t)IndexLookup.Size)
3917 return NULL;
3918 const ImU16 i = IndexLookup.Data[c];
3919 if (i == (ImU16)-1)
3920 return NULL;
3921 return &Glyphs.Data[i];
3922}
3923
3924// Trim trailing space and find beginning of next line
3925static 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