| 2985 | IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const; |
| 2986 | float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; } |
| 2987 | bool IsLoaded() const { return ContainerAtlas != NULL; } |
| 2988 | const char* GetDebugName() const { return ConfigData ? ConfigData->Name : "<unknown>"; } |
| 2989 | |
| 2990 | // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable. |
no outgoing calls
no test coverage detected