Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge DefaultFont with Awesome Fonte causes a fail in IM_ASSERT(Glyphs.Size < 0xFFFF) #1030

Closed
hugoalexrsantos opened this issue Feb 19, 2017 · 2 comments

Comments

@hugoalexrsantos
Copy link

Hi ocornut,

I'm trying to merge the default font with the awesome font following the example in the Extra_Fonts folder, by it always fails the " IM_ASSERT(Glyphs.Size < 0xFFFF);" in the ImFont::BuildLookupTable() function

The code that i'm using is:
#include "IconsFontAwesome.h"
...

ImGuiIO& io = ImGui::GetIO();
io.Fonts->AddFontDefault();
ImFontConfig config;
config.MergeMode = false;
const ImWchar icon_ranges[] = { ICON_MIN_FA, ICON_MAX_FA, 0 };
io.Fonts->AddFontFromFileTTF("resources/fonts/fontawesome-webfont.ttf", 12.0f, &config, icon_ranges);

I Noticed that when running the ImFontAtlas::Build():
for (int input_i = 0; input_i < ConfigData.Size; input_i++) #L1271 iterates 2 times which seems correct as I'm loading 2 fonts... ConfigData.Size=2

the innerloop that loops throwgh the ranges: #L1285
for (const ImWchar* in_range = cfg.GlyphRanges; in_range[0] && in_range[1]; in_range += 2)
{
total_glyph_count += (in_range[1] - in_range[0]) + 1;
total_glyph_range_count++;
}
for the default font, it iterates only once with range 32 to 255 [224 Glyphs]
for the icons font, it strangely iterates 3 times with ranges:
27541 to 63392 [35852 Glyphs]
126 to 2623 [2498 Glyphs]
27520 to 62992 [35473 Glyphs]
total_glyph_count = 74047 Glyphs
total_glyph_range_count = 4
I specified only 1 range
ICON_MIN_FA = 0xf000 (61440)
ICON_MAX_FA = 0xf2e0 (62176) [737 Glyphs].

Is this a bug, or I'm I doing something wrong?
by the way, I downloaded the latest version of the ImGui code just yesterday.
Thank you in advance.

@ocornut
Copy link
Owner

ocornut commented Feb 20, 2017 via email

@hugoalexrsantos
Copy link
Author

Hi,

Changed the line to
STATIC const ImWchar icon_ranges[] = { ICON_MIN_FA, ICON_MAX_FA, 0 };

it worked perfectly.

thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants