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

Method FindGlyph

tutorials/common/imgui/imgui_draw.cpp:3315–3323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3313}
3314
3315const ImFontGlyph* ImFont::FindGlyph(ImWchar c) const
3316{
3317 if (c >= (size_t)IndexLookup.Size)
3318 return FallbackGlyph;
3319 const ImWchar i = IndexLookup.Data[c];
3320 if (i == (ImWchar)-1)
3321 return FallbackGlyph;
3322 return &Glyphs.Data[i];
3323}
3324
3325const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c) const
3326{

Callers 2

RenderTextEllipsisMethod · 0.80
InputTextExMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected