Remove TODO

This commit is contained in:
halx99 2020-09-08 16:31:11 +08:00
parent b50bea8702
commit 44940933a0
1 changed files with 1 additions and 2 deletions

View File

@ -573,8 +573,7 @@ void ImGuiEXT::mergeFontGlyphs(ImFont* dst, ImFont* src, ImWchar start, ImWchar
const auto g = src->FindGlyphNoFallback(i);
if (g)
{
// TODO
// dst->AddGlyph(g->Codepoint, g->X0, g->Y0, g->X1, g->Y1, g->U0, g->V0, g->U1, g->V1, g->AdvanceX);
dst->AddGlyph(nullptr, g->Codepoint, g->X0, g->Y0, g->X1, g->Y1, g->U0, g->V0, g->U1, g->V1, g->AdvanceX);
}
}
dst->BuildLookupTable();