MCPcopy Create free account
hub / github.com/VictorGordan/opengl-tutorials / FindGlyph

Method FindGlyph

ImGUI GLFW Tutorial/imgui/imgui_draw.cpp:3281–3289  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3279}
3280
3281const ImFontGlyph* ImFont::FindGlyph(ImWchar c) const
3282{
3283 if (c >= (size_t)IndexLookup.Size)
3284 return FallbackGlyph;
3285 const ImWchar i = IndexLookup.Data[c];
3286 if (i == (ImWchar)-1)
3287 return FallbackGlyph;
3288 return &Glyphs.Data[i];
3289}
3290
3291const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c) const
3292{

Callers 2

RenderTextEllipsisMethod · 0.45
InputTextExMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected