Temporary data for one destination ImFont* (multiple source fonts can be merged into one destination ImFont)
| 2369 | |
| 2370 | // Temporary data for one destination ImFont* (multiple source fonts can be merged into one destination ImFont) |
| 2371 | struct 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 | |
| 2379 | static void UnpackBitVectorToFlatIndexList(const ImBitVector* in, ImVector<int>* out) |
| 2380 | { |
nothing calls this directly
no outgoing calls
no test coverage detected