| 3126 | } |
| 3127 | |
| 3128 | void ImFont::ClearOutputData() |
| 3129 | { |
| 3130 | FontSize = 0.0f; |
| 3131 | FallbackAdvanceX = 0.0f; |
| 3132 | Glyphs.clear(); |
| 3133 | IndexAdvanceX.clear(); |
| 3134 | IndexLookup.clear(); |
| 3135 | FallbackGlyph = NULL; |
| 3136 | ContainerAtlas = NULL; |
| 3137 | DirtyLookupTables = true; |
| 3138 | Ascent = Descent = 0.0f; |
| 3139 | MetricsTotalSurface = 0; |
| 3140 | } |
| 3141 | |
| 3142 | static ImWchar FindFirstExistingGlyph(ImFont* font, const ImWchar* candidate_chars, int candidate_chars_count) |
| 3143 | { |
no test coverage detected