MCPcopy Create free account
hub / github.com/RenderKit/embree / FindGlyphNoFallback

Method FindGlyphNoFallback

tutorials/common/imgui/imgui_draw.cpp:3325–3333  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3323}
3324
3325const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c) const
3326{
3327 if (c >= (size_t)IndexLookup.Size)
3328 return NULL;
3329 const ImWchar i = IndexLookup.Data[c];
3330 if (i == (ImWchar)-1)
3331 return NULL;
3332 return &Glyphs.Data[i];
3333}
3334
3335// Wrapping skips upcoming blanks
3336static 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