MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / ImFontBuildDstData

Class ImFontBuildDstData

KBotExt/imgui/imgui_draw.cpp:2371–2377  ·  view source on GitHub ↗

Temporary data for one destination ImFont* (multiple source fonts can be merged into one destination ImFont)

Source from the content-addressed store, hash-verified

2369
2370// Temporary data for one destination ImFont* (multiple source fonts can be merged into one destination ImFont)
2371struct ImFontBuildDstData
2372{
2373 int SrcCount; // Number of source fonts targeting this destination font.
2374 int GlyphsHighest;
2375 int GlyphsCount;
2376 ImBitVector GlyphsSet; // This is used to resolve collision when multiple sources are merged into a same destination font.
2377};
2378
2379static void UnpackBitVectorToFlatIndexList(const ImBitVector* in, ImVector<int>* out)
2380{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected