Skip to content

Commit 5ae3dd5

Browse files
Demoneseocornut
authored andcommitted
Fonts: added IMGUI_DISABLE_DEFAULT_FONT macro. (#8161)
1 parent eb0ad66 commit 5ae3dd5

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

docs/CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ Other changes:
5353

5454
- Error Handling: fixed cases where recoverable error handling would crash when
5555
processing errors outside of the NewFrame()..EndFrame() scope. (#1651)
56+
- Misc: added IMGUI_DISABLE_DEFAULT_FONT to strip embedded font from binary. (#8161)
57+
[@demonese]
5658
- Demo: example tree used by Property Editor & Selection demos properly freed
5759
on application closure. (#8158) [@Legulysse]
5860
- Examples: Win32+DX12: Using a basic free-list allocator to manage multiple

imconfig.h

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
//#define IMGUI_DISABLE_FILE_FUNCTIONS // Don't implement ImFileOpen/ImFileClose/ImFileRead/ImFileWrite and ImFileHandle at all (replace them with dummies)
4949
//#define IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS // Don't implement ImFileOpen/ImFileClose/ImFileRead/ImFileWrite and ImFileHandle so you can implement them yourself if you don't want to link with fopen/fclose/fread/fwrite. This will also disable the LogToTTY() function.
5050
//#define IMGUI_DISABLE_DEFAULT_ALLOCATORS // Don't implement default allocators calling malloc()/free() to avoid linking with them. You will need to call ImGui::SetAllocatorFunctions().
51+
//#define IMGUI_DISABLE_DEFAULT_FONT // Disable default embedded font (ProggyClean.ttf), remove ~14 KB from output binary. AddFontDefault() will assert.
5152
//#define IMGUI_DISABLE_SSE // Disable use of SSE intrinsics even if available
5253

5354
//---- Enable Test Engine / Automation features.

imgui_draw.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -2560,7 +2560,9 @@ ImFont* ImFontAtlas::AddFont(const ImFontConfig* font_cfg)
25602560
// Default font TTF is compressed with stb_compress then base85 encoded (see misc/fonts/binary_to_compressed_c.cpp for encoder)
25612561
static unsigned int stb_decompress_length(const unsigned char* input);
25622562
static unsigned int stb_decompress(unsigned char* output, const unsigned char* input, unsigned int length);
2563+
#ifndef IMGUI_DISABLE_DEFAULT_FONT
25632564
static const char* GetDefaultCompressedFontDataTTFBase85();
2565+
#endif
25642566
static unsigned int Decode85Byte(char c) { return c >= '\\' ? c-36 : c-35; }
25652567
static void Decode85(const unsigned char* src, unsigned char* dst)
25662568
{
@@ -2576,6 +2578,7 @@ static void Decode85(const unsigned char* src, unsigned char* dst)
25762578
// Load embedded ProggyClean.ttf at size 13, disable oversampling
25772579
ImFont* ImFontAtlas::AddFontDefault(const ImFontConfig* font_cfg_template)
25782580
{
2581+
#ifndef IMGUI_DISABLE_DEFAULT_FONT
25792582
ImFontConfig font_cfg = font_cfg_template ? *font_cfg_template : ImFontConfig();
25802583
if (!font_cfg_template)
25812584
{
@@ -2593,6 +2596,11 @@ ImFont* ImFontAtlas::AddFontDefault(const ImFontConfig* font_cfg_template)
25932596
const ImWchar* glyph_ranges = font_cfg.GlyphRanges != NULL ? font_cfg.GlyphRanges : GetGlyphRangesDefault();
25942597
ImFont* font = AddFontFromMemoryCompressedBase85TTF(ttf_compressed_base85, font_cfg.SizePixels, &font_cfg, glyph_ranges);
25952598
return font;
2599+
#else
2600+
IM_ASSERT(0 && "AddFontDefault() disabled in this build.");
2601+
IM_UNUSED(font_cfg_template);
2602+
return NULL;
2603+
#endif // #ifndef IMGUI_DISABLE_DEFAULT_FONT
25962604
}
25972605

25982606
ImFont* ImFontAtlas::AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg_template, const ImWchar* glyph_ranges)
@@ -4578,6 +4586,8 @@ static unsigned int stb_decompress(unsigned char *output, const unsigned char *i
45784586
// Exported using misc/fonts/binary_to_compressed_c.cpp (with compression + base85 string encoding).
45794587
// The purpose of encoding as base85 instead of "0x00,0x01,..." style is only save on _source code_ size.
45804588
//-----------------------------------------------------------------------------
4589+
4590+
#ifndef IMGUI_DISABLE_DEFAULT_FONT
45814591
static const char proggy_clean_ttf_compressed_data_base85[11980 + 1] =
45824592
"7])#######hV0qs'/###[),##/l:$#Q6>##5[n42>c-TH`->>#/e>11NNV=Bv(*:.F?uu#(gRU.o0XGH`$vhLG1hxt9?W`#,5LsCp#-i>.r$<$6pD>Lb';9Crc6tgXmKVeU2cD4Eo3R/"
45834593
"2*>]b(MC;$jPfY.;h^`IWM9<Lh2TlS+f-s$o6Q<BWH`YiU.xfLq$N;$0iR/GX:U(jcW2p/W*q?-qmnUCI;jHSAiFWM.R*kU@C=GH?a9wp8f$e.-4^Qg1)Q-GL(lf(r/7GrRgwV%MS=C#"
@@ -4670,5 +4680,6 @@ static const char* GetDefaultCompressedFontDataTTFBase85()
46704680
{
46714681
return proggy_clean_ttf_compressed_data_base85;
46724682
}
4683+
#endif // #ifndef IMGUI_DISABLE_DEFAULT_FONT
46734684

46744685
#endif // #ifndef IMGUI_DISABLE

0 commit comments

Comments
 (0)