You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: imgui.h
+1-1
Original file line number
Diff line number
Diff line change
@@ -3730,7 +3730,7 @@ struct ImFontAtlas
3730
3730
// - AddCustomRectRegular() --> Renamed to AddCustomRect()
3731
3731
// - AddCustomRectFontGlyph() --> Prefer using custom ImFontLoader inside ImFontConfig
3732
3732
// - ImFontAtlasCustomRect --> Renamed to ImFontAtlasRect
3733
-
IMGUI_API ImFontAtlasRectId AddCustomRect(int width, int height); // Register a rectangle. Return -1 (ImFontAtlasRectId_Invalid) on error.
3733
+
IMGUI_API ImFontAtlasRectId AddCustomRect(int width, int height, ImFontAtlasRect* out_r = NULL);// Register a rectangle. Return -1 (ImFontAtlasRectId_Invalid) on error.
3734
3734
IMGUI_API voidRemoveCustomRect(ImFontAtlasRectId id); // Unregister a rectangle. Existing pixels will stay in texture until resized / garbage collected.
3735
3735
IMGUI_API boolGetCustomRect(ImFontAtlasRectId id, ImFontAtlasRect* out_r) const; // Get rectangle coordinates for current texture. Valid immediately, never store this (read above)!
ImFontAtlasRectId ImFontAtlas::AddCustomRect(int width, int height)
3231
+
// At it is common to do an AddCustomRect() followed by a GetCustomRect(), we provide an optional 'ImFontAtlasRect* out_r = NULL' argument to retrieve the info straight away.
3232
+
ImFontAtlasRectId ImFontAtlas::AddCustomRect(int width, int height, ImFontAtlasRect* out_r)
3232
3233
{
3233
3234
IM_ASSERT(width > 0 && width <= 0xFFFF);
3234
3235
IM_ASSERT(height > 0 && height <= 0xFFFF);
@@ -3239,9 +3240,14 @@ ImFontAtlasRectId ImFontAtlas::AddCustomRect(int width, int height)
// Important: don'return pointer valid until next call to AddRect(), e.g. FindGlyph(), CalcTextSize() can all potentially invalidate previous pointers.
4333
+
// Important: return pointer is valid until next call to AddRect(), e.g. FindGlyph(), CalcTextSize() can all potentially invalidate previous pointers.
0 commit comments