| 3190 | } |
| 3191 | |
| 3192 | void ImFont::ClearOutputData() |
| 3193 | { |
| 3194 | FontSize = 0.0f; |
| 3195 | FallbackAdvanceX = 0.0f; |
| 3196 | Glyphs.clear(); |
| 3197 | IndexAdvanceX.clear(); |
| 3198 | IndexLookup.clear(); |
| 3199 | FallbackGlyph = NULL; |
| 3200 | ContainerAtlas = NULL; |
| 3201 | DirtyLookupTables = true; |
| 3202 | Ascent = Descent = 0.0f; |
| 3203 | MetricsTotalSurface = 0; |
| 3204 | } |
| 3205 | |
| 3206 | static ImWchar FindFirstExistingGlyph(ImFont* font, const ImWchar* candidate_chars, int candidate_chars_count) |
| 3207 | { |
no test coverage detected