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