| 2117 | } |
| 2118 | |
| 2119 | void ImFont::ClearOutputData() |
| 2120 | { |
| 2121 | FontSize = 0.0f; |
| 2122 | Glyphs.clear(); |
| 2123 | IndexAdvanceX.clear(); |
| 2124 | IndexLookup.clear(); |
| 2125 | FallbackGlyph = NULL; |
| 2126 | FallbackAdvanceX = 0.0f; |
| 2127 | ConfigDataCount = 0; |
| 2128 | ConfigData = NULL; |
| 2129 | ContainerAtlas = NULL; |
| 2130 | Ascent = Descent = 0.0f; |
| 2131 | MetricsTotalSurface = 0; |
| 2132 | } |
| 2133 | |
| 2134 | void ImFont::BuildLookupTable() |
| 2135 | { |
no test coverage detected