| 2799 | IMGUI_API int AddCustomRectRegular(int width, int height); |
| 2800 | IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0, 0)); |
| 2801 | ImFontAtlasCustomRect* GetCustomRectByIndex(int index) { IM_ASSERT(index >= 0); return &CustomRects[index]; } |
| 2802 | |
| 2803 | // [Internal] |
| 2804 | IMGUI_API void CalcCustomRectUV(const ImFontAtlasCustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max) const; |
no outgoing calls
no test coverage detected