Skip to content

Commit 9eafb7b

Browse files
committed
ImFont: IndexLookup[] table hold 16-bit values even in ImWchar32 mode.
1 parent 53244aa commit 9eafb7b

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

docs/CHANGELOG.txt

+3
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ Other changes:
7878
- ImDrawList: texture baked storage for thick line reduced from ~64x64 to ~32x32. (#3245)
7979
- ImFontAtlas: made calling ClearFonts() call ClearInputData(), as calling
8080
one without the other is never correct. (#8174, #6556, #6336, #4723)
81+
- ImFont: IndexLookup[] table hold 16-bit values even in ImWchar32 mode,
82+
as it accounts for number of glyphs in same font. This is favorable to
83+
CalcTextSize() calls touching less memory.
8184
- Examples: DirectX12: Reduced number of frame in flight from 3 to 2 in
8285
provided example, to reduce latency.
8386
- Examples: Vulkan: better handle VK_SUBOPTIMAL_KHR being returned by

imgui.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3456,7 +3456,7 @@ struct ImFont
34563456
float FontSize; // 4 // in // // Height of characters/line, set during loading (don't change after loading)
34573457

34583458
// [Internal] Members: Hot ~28/40 bytes (for RenderText loop)
3459-
ImVector<ImWchar> IndexLookup; // 12-16 // out // // Sparse. Index glyphs by Unicode code-point.
3459+
ImVector<ImU16> IndexLookup; // 12-16 // out // // Sparse. Index glyphs by Unicode code-point.
34603460
ImVector<ImFontGlyph> Glyphs; // 12-16 // out // // All glyphs.
34613461
const ImFontGlyph* FallbackGlyph; // 4-8 // out // = FindGlyph(FontFallbackChar)
34623462

imgui_draw.cpp

+10-9
Original file line numberDiff line numberDiff line change
@@ -3738,7 +3738,7 @@ void ImFont::BuildLookupTable()
37383738
{
37393739
int codepoint = (int)Glyphs[i].Codepoint;
37403740
IndexAdvanceX[codepoint] = Glyphs[i].AdvanceX;
3741-
IndexLookup[codepoint] = (ImWchar)i;
3741+
IndexLookup[codepoint] = (ImU16)i;
37423742

37433743
// Mark 4K page as used
37443744
const int page_n = codepoint / 8192;
@@ -3756,7 +3756,7 @@ void ImFont::BuildLookupTable()
37563756
tab_glyph.Codepoint = '\t';
37573757
tab_glyph.AdvanceX *= IM_TABSIZE;
37583758
IndexAdvanceX[(int)tab_glyph.Codepoint] = (float)tab_glyph.AdvanceX;
3759-
IndexLookup[(int)tab_glyph.Codepoint] = (ImWchar)(Glyphs.Size - 1);
3759+
IndexLookup[(int)tab_glyph.Codepoint] = (ImU16)(Glyphs.Size - 1);
37603760
}
37613761

37623762
// Mark special glyphs as not visible (note that AddGlyph already mark as non-visible glyphs with zero-size polygons)
@@ -3829,7 +3829,7 @@ void ImFont::GrowIndex(int new_size)
38293829
if (new_size <= IndexLookup.Size)
38303830
return;
38313831
IndexAdvanceX.resize(new_size, -1.0f);
3832-
IndexLookup.resize(new_size, (ImWchar)-1);
3832+
IndexLookup.resize(new_size, (ImU16)-1);
38333833
}
38343834

38353835
// x0/y0/x1/y1 are offset from the character upper-left layout position, in pixels. Therefore x0/y0 are often fairly close to zero.
@@ -3872,6 +3872,7 @@ void ImFont::AddGlyph(const ImFontConfig* cfg, ImWchar codepoint, float x0, floa
38723872
glyph.U1 = u1;
38733873
glyph.V1 = v1;
38743874
glyph.AdvanceX = advance_x;
3875+
IM_ASSERT(Glyphs.Size < 0xFFFF); // IndexLookup[] hold 16-bit values and -1 is reserved.
38753876

38763877
// Compute rough surface usage metrics (+1 to account for average padding, +0.99 to round)
38773878
// We use (U1-U0)*TexWidth instead of X1-X0 to account for oversampling.
@@ -3885,13 +3886,13 @@ void ImFont::AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst)
38853886
IM_ASSERT(IndexLookup.Size > 0); // Currently this can only be called AFTER the font has been built, aka after calling ImFontAtlas::GetTexDataAs*() function.
38863887
unsigned int index_size = (unsigned int)IndexLookup.Size;
38873888

3888-
if (dst < index_size && IndexLookup.Data[dst] == (ImWchar)-1 && !overwrite_dst) // 'dst' already exists
3889+
if (dst < index_size && IndexLookup.Data[dst] == (ImU16)-1 && !overwrite_dst) // 'dst' already exists
38893890
return;
38903891
if (src >= index_size && dst >= index_size) // both 'dst' and 'src' don't exist -> no-op
38913892
return;
38923893

38933894
GrowIndex(dst + 1);
3894-
IndexLookup[dst] = (src < index_size) ? IndexLookup.Data[src] : (ImWchar)-1;
3895+
IndexLookup[dst] = (src < index_size) ? IndexLookup.Data[src] : (ImU16)-1;
38953896
IndexAdvanceX[dst] = (src < index_size) ? IndexAdvanceX.Data[src] : 1.0f;
38963897
}
38973898

@@ -3900,8 +3901,8 @@ const ImFontGlyph* ImFont::FindGlyph(ImWchar c)
39003901
{
39013902
if (c >= (size_t)IndexLookup.Size)
39023903
return FallbackGlyph;
3903-
const ImWchar i = IndexLookup.Data[c];
3904-
if (i == (ImWchar)-1)
3904+
const ImU16 i = IndexLookup.Data[c];
3905+
if (i == (ImU16)-1)
39053906
return FallbackGlyph;
39063907
return &Glyphs.Data[i];
39073908
}
@@ -3910,8 +3911,8 @@ const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c)
39103911
{
39113912
if (c >= (size_t)IndexLookup.Size)
39123913
return NULL;
3913-
const ImWchar i = IndexLookup.Data[c];
3914-
if (i == (ImWchar)-1)
3914+
const ImU16 i = IndexLookup.Data[c];
3915+
if (i == (ImU16)-1)
39153916
return NULL;
39163917
return &Glyphs.Data[i];
39173918
}

0 commit comments

Comments
 (0)