@@ -3738,7 +3738,7 @@ void ImFont::BuildLookupTable()
3738
3738
{
3739
3739
int codepoint = (int )Glyphs[i].Codepoint ;
3740
3740
IndexAdvanceX[codepoint] = Glyphs[i].AdvanceX ;
3741
- IndexLookup[codepoint] = (ImWchar )i;
3741
+ IndexLookup[codepoint] = (ImU16 )i;
3742
3742
3743
3743
// Mark 4K page as used
3744
3744
const int page_n = codepoint / 8192 ;
@@ -3756,7 +3756,7 @@ void ImFont::BuildLookupTable()
3756
3756
tab_glyph.Codepoint = ' \t ' ;
3757
3757
tab_glyph.AdvanceX *= IM_TABSIZE;
3758
3758
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 );
3760
3760
}
3761
3761
3762
3762
// 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)
3829
3829
if (new_size <= IndexLookup.Size )
3830
3830
return ;
3831
3831
IndexAdvanceX.resize (new_size, -1 .0f );
3832
- IndexLookup.resize (new_size, (ImWchar )-1 );
3832
+ IndexLookup.resize (new_size, (ImU16 )-1 );
3833
3833
}
3834
3834
3835
3835
// 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
3872
3872
glyph.U1 = u1;
3873
3873
glyph.V1 = v1;
3874
3874
glyph.AdvanceX = advance_x;
3875
+ IM_ASSERT (Glyphs.Size < 0xFFFF ); // IndexLookup[] hold 16-bit values and -1 is reserved.
3875
3876
3876
3877
// Compute rough surface usage metrics (+1 to account for average padding, +0.99 to round)
3877
3878
// 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)
3885
3886
IM_ASSERT (IndexLookup.Size > 0 ); // Currently this can only be called AFTER the font has been built, aka after calling ImFontAtlas::GetTexDataAs*() function.
3886
3887
unsigned int index_size = (unsigned int )IndexLookup.Size ;
3887
3888
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
3889
3890
return ;
3890
3891
if (src >= index_size && dst >= index_size) // both 'dst' and 'src' don't exist -> no-op
3891
3892
return ;
3892
3893
3893
3894
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 ;
3895
3896
IndexAdvanceX[dst] = (src < index_size) ? IndexAdvanceX.Data [src] : 1 .0f ;
3896
3897
}
3897
3898
@@ -3900,8 +3901,8 @@ const ImFontGlyph* ImFont::FindGlyph(ImWchar c)
3900
3901
{
3901
3902
if (c >= (size_t )IndexLookup.Size )
3902
3903
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 )
3905
3906
return FallbackGlyph;
3906
3907
return &Glyphs.Data [i];
3907
3908
}
@@ -3910,8 +3911,8 @@ const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c)
3910
3911
{
3911
3912
if (c >= (size_t )IndexLookup.Size )
3912
3913
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 )
3915
3916
return NULL ;
3916
3917
return &Glyphs.Data [i];
3917
3918
}
0 commit comments