Skip to content

Commit 3939697

Browse files
committed
WIP - Fonts: add optional out parameter to AddCustomRect()
1 parent 4ca7745 commit 3939697

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

imgui.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3730,7 +3730,7 @@ struct ImFontAtlas
37303730
// - AddCustomRectRegular() --> Renamed to AddCustomRect()
37313731
// - AddCustomRectFontGlyph() --> Prefer using custom ImFontLoader inside ImFontConfig
37323732
// - 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.
37343734
IMGUI_API void RemoveCustomRect(ImFontAtlasRectId id); // Unregister a rectangle. Existing pixels will stay in texture until resized / garbage collected.
37353735
IMGUI_API bool GetCustomRect(ImFontAtlasRectId id, ImFontAtlasRect* out_r) const; // Get rectangle coordinates for current texture. Valid immediately, never store this (read above)!
37363736

imgui_draw.cpp

+9-3
Original file line numberDiff line numberDiff line change
@@ -3228,7 +3228,8 @@ void ImFontAtlas::RemoveFont(ImFont* font)
32283228
ImFontAtlasBuildNotifySetFont(this, font, new_current_font);
32293229
}
32303230

3231-
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)
32323233
{
32333234
IM_ASSERT(width > 0 && width <= 0xFFFF);
32343235
IM_ASSERT(height > 0 && height <= 0xFFFF);
@@ -3239,9 +3240,14 @@ ImFontAtlasRectId ImFontAtlas::AddCustomRect(int width, int height)
32393240
ImFontAtlasRectId r_id = ImFontAtlasPackAddRect(this, width, height);
32403241
if (r_id == ImFontAtlasRectId_Invalid)
32413242
return ImFontAtlasRectId_Invalid;
3242-
ImTextureRect* r = ImFontAtlasPackGetRect(this, r_id);
3243+
if (out_r != NULL)
3244+
GetCustomRect(r_id, out_r);
3245+
32433246
if (RendererHasTextures)
3247+
{
3248+
ImTextureRect* r = ImFontAtlasPackGetRect(this, r_id);
32443249
ImFontAtlasTextureBlockQueueUpload(this, TexData, r->x, r->y, r->w, r->h);
3250+
}
32453251
return r_id;
32463252
}
32473253

@@ -4324,7 +4330,7 @@ ImFontAtlasRectId ImFontAtlasPackAddRect(ImFontAtlas* atlas, int w, int h, ImFon
43244330
return ImFontAtlasPackAllocRectEntry(atlas, builder->Rects.Size - 1);
43254331
}
43264332

4327-
// 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.
43284334
ImTextureRect* ImFontAtlasPackGetRect(ImFontAtlas* atlas, ImFontAtlasRectId id)
43294335
{
43304336
IM_ASSERT(id != ImFontAtlasRectId_Invalid);

0 commit comments

Comments
 (0)