123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751 |
- // dear imgui: FreeType font builder (used as a replacement for the stb_truetype builder)
- // (code)
- // Get the latest version at https://github.com/ocornut/imgui/tree/master/misc/freetype
- // Original code by @vuhdo (Aleksei Skriabin) in 2017, with improvements by @mikesart.
- // Maintained since 2019 by @ocornut.
- // CHANGELOG
- // (minor and older changes stripped away, please see git history for details)
- // 2025/06/11: refactored for the new ImFontLoader architecture, and ImGuiBackendFlags_RendererHasTextures support.
- // 2024/10/17: added plutosvg support for SVG Fonts (seems faster/better than lunasvg). Enable by using '#define IMGUI_ENABLE_FREETYPE_PLUTOSVG'. (#7927)
- // 2023/11/13: added support for ImFontConfig::RasterizationDensity field for scaling render density without scaling metrics.
- // 2023/08/01: added support for SVG fonts, enable by using '#define IMGUI_ENABLE_FREETYPE_LUNASVG'. (#6591)
- // 2023/01/04: fixed a packing issue which in some occurrences would prevent large amount of glyphs from being packed correctly.
- // 2021/08/23: fixed crash when FT_Render_Glyph() fails to render a glyph and returns nullptr.
- // 2021/03/05: added ImGuiFreeTypeBuilderFlags_Bitmap to load bitmap glyphs.
- // 2021/03/02: set 'atlas->TexPixelsUseColors = true' to help some backends with deciding of a preferred texture format.
- // 2021/01/28: added support for color-layered glyphs via ImGuiFreeTypeBuilderFlags_LoadColor (require Freetype 2.10+).
- // 2021/01/26: simplified integration by using '#define IMGUI_ENABLE_FREETYPE'. renamed ImGuiFreeType::XXX flags to ImGuiFreeTypeBuilderFlags_XXX for consistency with other API. removed ImGuiFreeType::BuildFontAtlas().
- // 2020/06/04: fix for rare case where FT_Get_Char_Index() succeed but FT_Load_Glyph() fails.
- // 2019/02/09: added RasterizerFlags::Monochrome flag to disable font anti-aliasing (combine with ::MonoHinting for best results!)
- // 2019/01/15: added support for imgui allocators + added FreeType only override function SetAllocatorFunctions().
- // 2019/01/10: re-factored to match big update in STB builder. fixed texture height waste. fixed redundant glyphs when merging. support for glyph padding.
- // 2018/06/08: added support for ImFontConfig::GlyphMinAdvanceX, GlyphMaxAdvanceX.
- // 2018/02/04: moved to main imgui repository (away from http://www.github.com/ocornut/imgui_club)
- // 2018/01/22: fix for addition of ImFontAtlas::TexUvscale member.
- // 2017/10/22: minor inconsequential change to match change in master (removed an unnecessary statement).
- // 2017/09/26: fixes for imgui internal changes.
- // 2017/08/26: cleanup, optimizations, support for ImFontConfig::RasterizerFlags, ImFontConfig::RasterizerMultiply.
- // 2017/08/16: imported from https://github.com/Vuhdo/imgui_freetype into http://www.github.com/ocornut/imgui_club, updated for latest changes in ImFontAtlas, minor tweaks.
- // About Gamma Correct Blending:
- // - FreeType assumes blending in linear space rather than gamma space.
- // - See https://www.freetype.org/freetype2/docs/reference/ft2-base_interface.html#FT_Render_Glyph
- // - For correct results you need to be using sRGB and convert to linear space in the pixel shader output.
- // - The default dear imgui styles will be impacted by this change (alpha values will need tweaking).
- // FIXME: cfg.OversampleH, OversampleV are not supported, but generally not necessary with this rasterizer because Hinting makes everything look better.
- #include "imgui.h"
- #ifndef IMGUI_DISABLE
- #include "imgui_freetype.h"
- #include "imgui_internal.h" // ImMin,ImMax,ImFontAtlasBuild*,
- #include <stdint.h>
- #include <ft2build.h>
- #include FT_FREETYPE_H // <freetype/freetype.h>
- #include FT_MODULE_H // <freetype/ftmodapi.h>
- #include FT_GLYPH_H // <freetype/ftglyph.h>
- #include FT_SIZES_H // <freetype/ftsizes.h>
- #include FT_SYNTHESIS_H // <freetype/ftsynth.h>
- // Handle LunaSVG and PlutoSVG
- #if defined(IMGUI_ENABLE_FREETYPE_LUNASVG) && defined(IMGUI_ENABLE_FREETYPE_PLUTOSVG)
- #error "Cannot enable both IMGUI_ENABLE_FREETYPE_LUNASVG and IMGUI_ENABLE_FREETYPE_PLUTOSVG"
- #endif
- #ifdef IMGUI_ENABLE_FREETYPE_LUNASVG
- #include FT_OTSVG_H // <freetype/otsvg.h>
- #include FT_BBOX_H // <freetype/ftbbox.h>
- #include <lunasvg.h>
- #endif
- #ifdef IMGUI_ENABLE_FREETYPE_PLUTOSVG
- #include <plutosvg.h>
- #endif
- #if defined(IMGUI_ENABLE_FREETYPE_LUNASVG) || defined (IMGUI_ENABLE_FREETYPE_PLUTOSVG)
- #if !((FREETYPE_MAJOR >= 2) && (FREETYPE_MINOR >= 12))
- #error IMGUI_ENABLE_FREETYPE_PLUTOSVG or IMGUI_ENABLE_FREETYPE_LUNASVG requires FreeType version >= 2.12
- #endif
- #endif
- #ifdef _MSC_VER
- #pragma warning (push)
- #pragma warning (disable: 4505) // unreferenced local function has been removed (stb stuff)
- #pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3).
- #endif
- #ifdef __GNUC__
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind
- #pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used
- #ifndef __clang__
- #pragma GCC diagnostic ignored "-Wsubobject-linkage" // warning: 'xxxx' has a field 'xxxx' whose type uses the anonymous namespace
- #endif
- #endif
- //-------------------------------------------------------------------------
- // Data
- //-------------------------------------------------------------------------
- // Default memory allocators
- static void* ImGuiFreeTypeDefaultAllocFunc(size_t size, void* user_data) { IM_UNUSED(user_data); return IM_ALLOC(size); }
- static void ImGuiFreeTypeDefaultFreeFunc(void* ptr, void* user_data) { IM_UNUSED(user_data); IM_FREE(ptr); }
- // Current memory allocators
- static void* (*GImGuiFreeTypeAllocFunc)(size_t size, void* user_data) = ImGuiFreeTypeDefaultAllocFunc;
- static void (*GImGuiFreeTypeFreeFunc)(void* ptr, void* user_data) = ImGuiFreeTypeDefaultFreeFunc;
- static void* GImGuiFreeTypeAllocatorUserData = nullptr;
- // Lunasvg support
- #ifdef IMGUI_ENABLE_FREETYPE_LUNASVG
- static FT_Error ImGuiLunasvgPortInit(FT_Pointer* state);
- static void ImGuiLunasvgPortFree(FT_Pointer* state);
- static FT_Error ImGuiLunasvgPortRender(FT_GlyphSlot slot, FT_Pointer* _state);
- static FT_Error ImGuiLunasvgPortPresetSlot(FT_GlyphSlot slot, FT_Bool cache, FT_Pointer* _state);
- #endif
- //-------------------------------------------------------------------------
- // Code
- //-------------------------------------------------------------------------
- #define FT_CEIL(X) (((X + 63) & -64) / 64) // From SDL_ttf: Handy routines for converting from fixed point
- #define FT_SCALEFACTOR 64.0f
- // Glyph metrics:
- // --------------
- //
- // xmin xmax
- // | |
- // |<-------- width -------->|
- // | |
- // | +-------------------------+----------------- ymax
- // | | ggggggggg ggggg | ^ ^
- // | | g:::::::::ggg::::g | | |
- // | | g:::::::::::::::::g | | |
- // | | g::::::ggggg::::::gg | | |
- // | | g:::::g g:::::g | | |
- // offsetX -|-------->| g:::::g g:::::g | offsetY |
- // | | g:::::g g:::::g | | |
- // | | g::::::g g:::::g | | |
- // | | g:::::::ggggg:::::g | | |
- // | | g::::::::::::::::g | | height
- // | | gg::::::::::::::g | | |
- // baseline ---*---------|---- gggggggg::::::g-----*-------- |
- // / | | g:::::g | |
- // origin | | gggggg g:::::g | |
- // | | g:::::gg gg:::::g | |
- // | | g::::::ggg:::::::g | |
- // | | gg:::::::::::::g | |
- // | | ggg::::::ggg | |
- // | | gggggg | v
- // | +-------------------------+----------------- ymin
- // | |
- // |------------- advanceX ----------->|
- // Stored in ImFontAtlas::FontLoaderData. ALLOCATED BY US.
- struct ImGui_ImplFreeType_Data
- {
- FT_Library Library;
- FT_MemoryRec_ MemoryManager;
- ImGui_ImplFreeType_Data() { memset((void*)this, 0, sizeof(*this)); }
- };
- // Stored in ImFontConfig::FontLoaderData. ALLOCATED BY US.
- struct ImGui_ImplFreeType_FontSrcData
- {
- // Initialize from an external data buffer. Doesn't copy data, and you must ensure it stays valid up to this object lifetime.
- bool InitFont(FT_Library ft_library, ImFontConfig* src, ImGuiFreeTypeLoaderFlags extra_user_flags);
- void CloseFont();
- ImGui_ImplFreeType_FontSrcData() { memset((void*)this, 0, sizeof(*this)); }
- ~ImGui_ImplFreeType_FontSrcData() { CloseFont(); }
- // Members
- FT_Face FtFace;
- ImGuiFreeTypeLoaderFlags UserFlags; // = ImFontConfig::FontLoaderFlags
- FT_Int32 LoadFlags;
- ImFontBaked* BakedLastActivated;
- };
- // Stored in ImFontBaked::FontLoaderDatas: pointer to SourcesCount instances of this. ALLOCATED BY CORE.
- struct ImGui_ImplFreeType_FontSrcBakedData
- {
- FT_Size FtSize; // This represent a FT_Face with a given size.
- ImGui_ImplFreeType_FontSrcBakedData() { memset((void*)this, 0, sizeof(*this)); }
- };
- bool ImGui_ImplFreeType_FontSrcData::InitFont(FT_Library ft_library, ImFontConfig* src, ImGuiFreeTypeLoaderFlags extra_font_loader_flags)
- {
- FT_Error error = FT_New_Memory_Face(ft_library, (uint8_t*)src->FontData, (FT_Long)src->FontDataSize, (FT_Long)src->FontNo, &FtFace);
- if (error != 0)
- return false;
- error = FT_Select_Charmap(FtFace, FT_ENCODING_UNICODE);
- if (error != 0)
- return false;
- // Convert to FreeType flags (NB: Bold and Oblique are processed separately)
- UserFlags = (ImGuiFreeTypeLoaderFlags)(src->FontLoaderFlags | extra_font_loader_flags);
- LoadFlags = 0;
- if ((UserFlags & ImGuiFreeTypeLoaderFlags_Bitmap) == 0)
- LoadFlags |= FT_LOAD_NO_BITMAP;
- if (UserFlags & ImGuiFreeTypeLoaderFlags_NoHinting)
- LoadFlags |= FT_LOAD_NO_HINTING;
- else
- src->PixelSnapH = true; // FIXME: A bit weird to do this this way.
- if (UserFlags & ImGuiFreeTypeLoaderFlags_NoAutoHint)
- LoadFlags |= FT_LOAD_NO_AUTOHINT;
- if (UserFlags & ImGuiFreeTypeLoaderFlags_ForceAutoHint)
- LoadFlags |= FT_LOAD_FORCE_AUTOHINT;
- if (UserFlags & ImGuiFreeTypeLoaderFlags_LightHinting)
- LoadFlags |= FT_LOAD_TARGET_LIGHT;
- else if (UserFlags & ImGuiFreeTypeLoaderFlags_MonoHinting)
- LoadFlags |= FT_LOAD_TARGET_MONO;
- else
- LoadFlags |= FT_LOAD_TARGET_NORMAL;
- if (UserFlags & ImGuiFreeTypeLoaderFlags_LoadColor)
- LoadFlags |= FT_LOAD_COLOR;
- return true;
- }
- void ImGui_ImplFreeType_FontSrcData::CloseFont()
- {
- if (FtFace)
- {
- FT_Done_Face(FtFace);
- FtFace = nullptr;
- }
- }
- static const FT_Glyph_Metrics* ImGui_ImplFreeType_LoadGlyph(ImGui_ImplFreeType_FontSrcData* src_data, uint32_t codepoint)
- {
- uint32_t glyph_index = FT_Get_Char_Index(src_data->FtFace, codepoint);
- if (glyph_index == 0)
- return nullptr;
- // If this crash for you: FreeType 2.11.0 has a crash bug on some bitmap/colored fonts.
- // - https://gitlab.freedesktop.org/freetype/freetype/-/issues/1076
- // - https://github.com/ocornut/imgui/issues/4567
- // - https://github.com/ocornut/imgui/issues/4566
- // You can use FreeType 2.10, or the patched version of 2.11.0 in VcPkg, or probably any upcoming FreeType version.
- FT_Error error = FT_Load_Glyph(src_data->FtFace, glyph_index, src_data->LoadFlags);
- if (error)
- return nullptr;
- // Need an outline for this to work
- FT_GlyphSlot slot = src_data->FtFace->glyph;
- #if defined(IMGUI_ENABLE_FREETYPE_LUNASVG) || defined(IMGUI_ENABLE_FREETYPE_PLUTOSVG)
- IM_ASSERT(slot->format == FT_GLYPH_FORMAT_OUTLINE || slot->format == FT_GLYPH_FORMAT_BITMAP || slot->format == FT_GLYPH_FORMAT_SVG);
- #else
- #if ((FREETYPE_MAJOR >= 2) && (FREETYPE_MINOR >= 12))
- IM_ASSERT(slot->format != FT_GLYPH_FORMAT_SVG && "The font contains SVG glyphs, you'll need to enable IMGUI_ENABLE_FREETYPE_PLUTOSVG or IMGUI_ENABLE_FREETYPE_LUNASVG in imconfig.h and install required libraries in order to use this font");
- #endif
- IM_ASSERT(slot->format == FT_GLYPH_FORMAT_OUTLINE || slot->format == FT_GLYPH_FORMAT_BITMAP);
- #endif // IMGUI_ENABLE_FREETYPE_LUNASVG
- // Apply convenience transform (this is not picking from real "Bold"/"Italic" fonts! Merely applying FreeType helper transform. Oblique == Slanting)
- if (src_data->UserFlags & ImGuiFreeTypeLoaderFlags_Bold)
- FT_GlyphSlot_Embolden(slot);
- if (src_data->UserFlags & ImGuiFreeTypeLoaderFlags_Oblique)
- {
- FT_GlyphSlot_Oblique(slot);
- //FT_BBox bbox;
- //FT_Outline_Get_BBox(&slot->outline, &bbox);
- //slot->metrics.width = bbox.xMax - bbox.xMin;
- //slot->metrics.height = bbox.yMax - bbox.yMin;
- }
- return &slot->metrics;
- }
- static void ImGui_ImplFreeType_BlitGlyph(const FT_Bitmap* ft_bitmap, uint32_t* dst, uint32_t dst_pitch)
- {
- IM_ASSERT(ft_bitmap != nullptr);
- const uint32_t w = ft_bitmap->width;
- const uint32_t h = ft_bitmap->rows;
- const uint8_t* src = ft_bitmap->buffer;
- const uint32_t src_pitch = ft_bitmap->pitch;
- switch (ft_bitmap->pixel_mode)
- {
- case FT_PIXEL_MODE_GRAY: // Grayscale image, 1 byte per pixel.
- {
- for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch)
- for (uint32_t x = 0; x < w; x++)
- dst[x] = IM_COL32(255, 255, 255, src[x]);
- break;
- }
- case FT_PIXEL_MODE_MONO: // Monochrome image, 1 bit per pixel. The bits in each byte are ordered from MSB to LSB.
- {
- for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch)
- {
- uint8_t bits = 0;
- const uint8_t* bits_ptr = src;
- for (uint32_t x = 0; x < w; x++, bits <<= 1)
- {
- if ((x & 7) == 0)
- bits = *bits_ptr++;
- dst[x] = IM_COL32(255, 255, 255, (bits & 0x80) ? 255 : 0);
- }
- }
- break;
- }
- case FT_PIXEL_MODE_BGRA:
- {
- // FIXME: Converting pre-multiplied alpha to straight. Doesn't smell good.
- #define DE_MULTIPLY(color, alpha) ImMin((ImU32)(255.0f * (float)color / (float)(alpha + FLT_MIN) + 0.5f), 255u)
- for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch)
- for (uint32_t x = 0; x < w; x++)
- {
- uint8_t r = src[x * 4 + 2], g = src[x * 4 + 1], b = src[x * 4], a = src[x * 4 + 3];
- dst[x] = IM_COL32(DE_MULTIPLY(r, a), DE_MULTIPLY(g, a), DE_MULTIPLY(b, a), a);
- }
- #undef DE_MULTIPLY
- break;
- }
- default:
- IM_ASSERT(0 && "FreeTypeFont::BlitGlyph(): Unknown bitmap pixel mode!");
- }
- }
- // FreeType memory allocation callbacks
- static void* FreeType_Alloc(FT_Memory /*memory*/, long size)
- {
- return GImGuiFreeTypeAllocFunc((size_t)size, GImGuiFreeTypeAllocatorUserData);
- }
- static void FreeType_Free(FT_Memory /*memory*/, void* block)
- {
- GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData);
- }
- static void* FreeType_Realloc(FT_Memory /*memory*/, long cur_size, long new_size, void* block)
- {
- // Implement realloc() as we don't ask user to provide it.
- if (block == nullptr)
- return GImGuiFreeTypeAllocFunc((size_t)new_size, GImGuiFreeTypeAllocatorUserData);
- if (new_size == 0)
- {
- GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData);
- return nullptr;
- }
- if (new_size > cur_size)
- {
- void* new_block = GImGuiFreeTypeAllocFunc((size_t)new_size, GImGuiFreeTypeAllocatorUserData);
- memcpy(new_block, block, (size_t)cur_size);
- GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData);
- return new_block;
- }
- return block;
- }
- bool ImGui_ImplFreeType_LoaderInit(ImFontAtlas* atlas)
- {
- IM_ASSERT(atlas->FontLoaderData == nullptr);
- ImGui_ImplFreeType_Data* bd = IM_NEW(ImGui_ImplFreeType_Data)();
- // FreeType memory management: https://www.freetype.org/freetype2/docs/design/design-4.html
- bd->MemoryManager.user = nullptr;
- bd->MemoryManager.alloc = &FreeType_Alloc;
- bd->MemoryManager.free = &FreeType_Free;
- bd->MemoryManager.realloc = &FreeType_Realloc;
- // https://www.freetype.org/freetype2/docs/reference/ft2-module_management.html#FT_New_Library
- FT_Error error = FT_New_Library(&bd->MemoryManager, &bd->Library);
- if (error != 0)
- {
- IM_DELETE(bd);
- return false;
- }
- // If you don't call FT_Add_Default_Modules() the rest of code may work, but FreeType won't use our custom allocator.
- FT_Add_Default_Modules(bd->Library);
- #ifdef IMGUI_ENABLE_FREETYPE_LUNASVG
- // Install svg hooks for FreeType
- // https://freetype.org/freetype2/docs/reference/ft2-properties.html#svg-hooks
- // https://freetype.org/freetype2/docs/reference/ft2-svg_fonts.html#svg_fonts
- SVG_RendererHooks hooks = { ImGuiLunasvgPortInit, ImGuiLunasvgPortFree, ImGuiLunasvgPortRender, ImGuiLunasvgPortPresetSlot };
- FT_Property_Set(bd->Library, "ot-svg", "svg-hooks", &hooks);
- #endif // IMGUI_ENABLE_FREETYPE_LUNASVG
- #ifdef IMGUI_ENABLE_FREETYPE_PLUTOSVG
- // With plutosvg, use provided hooks
- FT_Property_Set(bd->Library, "ot-svg", "svg-hooks", plutosvg_ft_svg_hooks());
- #endif // IMGUI_ENABLE_FREETYPE_PLUTOSVG
- // Store our data
- atlas->FontLoaderData = (void*)bd;
- return true;
- }
- void ImGui_ImplFreeType_LoaderShutdown(ImFontAtlas* atlas)
- {
- ImGui_ImplFreeType_Data* bd = (ImGui_ImplFreeType_Data*)atlas->FontLoaderData;
- IM_ASSERT(bd != nullptr);
- FT_Done_Library(bd->Library);
- IM_DELETE(bd);
- atlas->FontLoaderData = nullptr;
- }
- bool ImGui_ImplFreeType_FontSrcInit(ImFontAtlas* atlas, ImFontConfig* src)
- {
- ImGui_ImplFreeType_Data* bd = (ImGui_ImplFreeType_Data*)atlas->FontLoaderData;
- ImGui_ImplFreeType_FontSrcData* bd_font_data = IM_NEW(ImGui_ImplFreeType_FontSrcData);
- IM_ASSERT(src->FontLoaderData == nullptr);
- src->FontLoaderData = bd_font_data;
- if (!bd_font_data->InitFont(bd->Library, src, (ImGuiFreeTypeLoaderFlags)atlas->FontLoaderFlags))
- {
- IM_DELETE(bd_font_data);
- src->FontLoaderData = nullptr;
- return false;
- }
- return true;
- }
- void ImGui_ImplFreeType_FontSrcDestroy(ImFontAtlas* atlas, ImFontConfig* src)
- {
- IM_UNUSED(atlas);
- ImGui_ImplFreeType_FontSrcData* bd_font_data = (ImGui_ImplFreeType_FontSrcData*)src->FontLoaderData;
- IM_DELETE(bd_font_data);
- src->FontLoaderData = nullptr;
- }
- bool ImGui_ImplFreeType_FontBakedInit(ImFontAtlas* atlas, ImFontConfig* src, ImFontBaked* baked, void* loader_data_for_baked_src)
- {
- IM_UNUSED(atlas);
- float size = baked->Size;
- if (src->MergeMode && src->SizePixels != 0.0f)
- size *= (src->SizePixels / baked->ContainerFont->Sources[0]->SizePixels);
- ImGui_ImplFreeType_FontSrcData* bd_font_data = (ImGui_ImplFreeType_FontSrcData*)src->FontLoaderData;
- bd_font_data->BakedLastActivated = baked;
- // We use one FT_Size per (source + baked) combination.
- ImGui_ImplFreeType_FontSrcBakedData* bd_baked_data = (ImGui_ImplFreeType_FontSrcBakedData*)loader_data_for_baked_src;
- IM_ASSERT(bd_baked_data != nullptr);
- IM_PLACEMENT_NEW(bd_baked_data) ImGui_ImplFreeType_FontSrcBakedData();
- FT_New_Size(bd_font_data->FtFace, &bd_baked_data->FtSize);
- FT_Activate_Size(bd_baked_data->FtSize);
- // Vuhdo 2017: "I'm not sure how to deal with font sizes properly. As far as I understand, currently ImGui assumes that the 'pixel_height'
- // is a maximum height of an any given glyph, i.e. it's the sum of font's ascender and descender. Seems strange to me.
- // FT_Set_Pixel_Sizes() doesn't seem to get us the same result."
- // (FT_Set_Pixel_Sizes() essentially calls FT_Request_Size() with FT_SIZE_REQUEST_TYPE_NOMINAL)
- const float rasterizer_density = src->RasterizerDensity * baked->RasterizerDensity;
- FT_Size_RequestRec req;
- req.type = (bd_font_data->UserFlags & ImGuiFreeTypeLoaderFlags_Bitmap) ? FT_SIZE_REQUEST_TYPE_NOMINAL : FT_SIZE_REQUEST_TYPE_REAL_DIM;
- req.width = 0;
- req.height = (uint32_t)(size * 64 * rasterizer_density);
- req.horiResolution = 0;
- req.vertResolution = 0;
- FT_Request_Size(bd_font_data->FtFace, &req);
- // Output
- if (src->MergeMode == false)
- {
- // Read metrics
- FT_Size_Metrics metrics = bd_baked_data->FtSize->metrics;
- const float scale = 1.0f / rasterizer_density;
- baked->Ascent = (float)FT_CEIL(metrics.ascender) * scale; // The pixel extents above the baseline in pixels (typically positive).
- baked->Descent = (float)FT_CEIL(metrics.descender) * scale; // The extents below the baseline in pixels (typically negative).
- //LineSpacing = (float)FT_CEIL(metrics.height) * scale; // The baseline-to-baseline distance. Note that it usually is larger than the sum of the ascender and descender taken as absolute values. There is also no guarantee that no glyphs extend above or below subsequent baselines when using this distance. Think of it as a value the designer of the font finds appropriate.
- //LineGap = (float)FT_CEIL(metrics.height - metrics.ascender + metrics.descender) * scale; // The spacing in pixels between one row's descent and the next row's ascent.
- //MaxAdvanceWidth = (float)FT_CEIL(metrics.max_advance) * scale; // This field gives the maximum horizontal cursor advance for all glyphs in the font.
- }
- return true;
- }
- void ImGui_ImplFreeType_FontBakedDestroy(ImFontAtlas* atlas, ImFontConfig* src, ImFontBaked* baked, void* loader_data_for_baked_src)
- {
- IM_UNUSED(atlas);
- IM_UNUSED(baked);
- IM_UNUSED(src);
- ImGui_ImplFreeType_FontSrcBakedData* bd_baked_data = (ImGui_ImplFreeType_FontSrcBakedData*)loader_data_for_baked_src;
- IM_ASSERT(bd_baked_data != nullptr);
- FT_Done_Size(bd_baked_data->FtSize);
- bd_baked_data->~ImGui_ImplFreeType_FontSrcBakedData(); // ~IM_PLACEMENT_DELETE()
- }
- bool ImGui_ImplFreeType_FontBakedLoadGlyph(ImFontAtlas* atlas, ImFontConfig* src, ImFontBaked* baked, void* loader_data_for_baked_src, ImWchar codepoint, ImFontGlyph* out_glyph, float* out_advance_x)
- {
- ImGui_ImplFreeType_FontSrcData* bd_font_data = (ImGui_ImplFreeType_FontSrcData*)src->FontLoaderData;
- uint32_t glyph_index = FT_Get_Char_Index(bd_font_data->FtFace, codepoint);
- if (glyph_index == 0)
- return false;
- if (bd_font_data->BakedLastActivated != baked) // <-- could use id
- {
- // Activate current size
- ImGui_ImplFreeType_FontSrcBakedData* bd_baked_data = (ImGui_ImplFreeType_FontSrcBakedData*)loader_data_for_baked_src;
- FT_Activate_Size(bd_baked_data->FtSize);
- bd_font_data->BakedLastActivated = baked;
- }
- const FT_Glyph_Metrics* metrics = ImGui_ImplFreeType_LoadGlyph(bd_font_data, codepoint);
- if (metrics == nullptr)
- return false;
- FT_Face face = bd_font_data->FtFace;
- FT_GlyphSlot slot = face->glyph;
- const float rasterizer_density = src->RasterizerDensity * baked->RasterizerDensity;
- // Load metrics only mode
- const float advance_x = (slot->advance.x / FT_SCALEFACTOR) / rasterizer_density;
- if (out_advance_x != NULL)
- {
- IM_ASSERT(out_glyph == NULL);
- *out_advance_x = advance_x;
- return true;
- }
- // Render glyph into a bitmap (currently held by FreeType)
- FT_Render_Mode render_mode = (bd_font_data->UserFlags & ImGuiFreeTypeLoaderFlags_Monochrome) ? FT_RENDER_MODE_MONO : FT_RENDER_MODE_NORMAL;
- FT_Error error = FT_Render_Glyph(slot, render_mode);
- const FT_Bitmap* ft_bitmap = &slot->bitmap;
- if (error != 0 || ft_bitmap == nullptr)
- return false;
- const int w = (int)ft_bitmap->width;
- const int h = (int)ft_bitmap->rows;
- const bool is_visible = (w != 0 && h != 0);
- // Prepare glyph
- out_glyph->Codepoint = codepoint;
- out_glyph->AdvanceX = advance_x;
- // Pack and retrieve position inside texture atlas
- if (is_visible)
- {
- ImFontAtlasRectId pack_id = ImFontAtlasPackAddRect(atlas, w, h);
- if (pack_id == ImFontAtlasRectId_Invalid)
- {
- // Pathological out of memory case (TexMaxWidth/TexMaxHeight set too small?)
- IM_ASSERT(pack_id != ImFontAtlasRectId_Invalid && "Out of texture memory.");
- return false;
- }
- ImTextureRect* r = ImFontAtlasPackGetRect(atlas, pack_id);
- // Render pixels to our temporary buffer
- atlas->Builder->TempBuffer.resize(w * h * 4);
- uint32_t* temp_buffer = (uint32_t*)atlas->Builder->TempBuffer.Data;
- ImGui_ImplFreeType_BlitGlyph(ft_bitmap, temp_buffer, w);
- const float ref_size = baked->ContainerFont->Sources[0]->SizePixels;
- const float offsets_scale = (ref_size != 0.0f) ? (baked->Size / ref_size) : 1.0f;
- float font_off_x = (src->GlyphOffset.x * offsets_scale);
- float font_off_y = (src->GlyphOffset.y * offsets_scale) + baked->Ascent;
- if (src->PixelSnapH) // Snap scaled offset. This is to mitigate backward compatibility issues for GlyphOffset, but a better design would be welcome.
- font_off_x = IM_ROUND(font_off_x);
- if (src->PixelSnapV)
- font_off_y = IM_ROUND(font_off_y);
- float recip_h = 1.0f / rasterizer_density;
- float recip_v = 1.0f / rasterizer_density;
- // Register glyph
- float glyph_off_x = (float)face->glyph->bitmap_left;
- float glyph_off_y = (float)-face->glyph->bitmap_top;
- out_glyph->X0 = glyph_off_x * recip_h + font_off_x;
- out_glyph->Y0 = glyph_off_y * recip_v + font_off_y;
- out_glyph->X1 = (glyph_off_x + w) * recip_h + font_off_x;
- out_glyph->Y1 = (glyph_off_y + h) * recip_v + font_off_y;
- out_glyph->Visible = true;
- out_glyph->Colored = (ft_bitmap->pixel_mode == FT_PIXEL_MODE_BGRA);
- out_glyph->PackId = pack_id;
- ImFontAtlasBakedSetFontGlyphBitmap(atlas, baked, src, out_glyph, r, (const unsigned char*)temp_buffer, ImTextureFormat_RGBA32, w * 4);
- }
- return true;
- }
- bool ImGui_ImplFreetype_FontSrcContainsGlyph(ImFontAtlas* atlas, ImFontConfig* src, ImWchar codepoint)
- {
- IM_UNUSED(atlas);
- ImGui_ImplFreeType_FontSrcData* bd_font_data = (ImGui_ImplFreeType_FontSrcData*)src->FontLoaderData;
- int glyph_index = FT_Get_Char_Index(bd_font_data->FtFace, codepoint);
- return glyph_index != 0;
- }
- const ImFontLoader* ImGuiFreeType::GetFontLoader()
- {
- static ImFontLoader loader;
- loader.Name = "FreeType";
- loader.LoaderInit = ImGui_ImplFreeType_LoaderInit;
- loader.LoaderShutdown = ImGui_ImplFreeType_LoaderShutdown;
- loader.FontSrcInit = ImGui_ImplFreeType_FontSrcInit;
- loader.FontSrcDestroy = ImGui_ImplFreeType_FontSrcDestroy;
- loader.FontSrcContainsGlyph = ImGui_ImplFreetype_FontSrcContainsGlyph;
- loader.FontBakedInit = ImGui_ImplFreeType_FontBakedInit;
- loader.FontBakedDestroy = ImGui_ImplFreeType_FontBakedDestroy;
- loader.FontBakedLoadGlyph = ImGui_ImplFreeType_FontBakedLoadGlyph;
- loader.FontBakedSrcLoaderDataSize = sizeof(ImGui_ImplFreeType_FontSrcBakedData);
- return &loader;
- }
- void ImGuiFreeType::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data)
- {
- GImGuiFreeTypeAllocFunc = alloc_func;
- GImGuiFreeTypeFreeFunc = free_func;
- GImGuiFreeTypeAllocatorUserData = user_data;
- }
- bool ImGuiFreeType::DebugEditFontLoaderFlags(unsigned int* p_font_loader_flags)
- {
- bool edited = false;
- edited |= ImGui::CheckboxFlags("NoHinting", p_font_loader_flags, ImGuiFreeTypeLoaderFlags_NoHinting);
- edited |= ImGui::CheckboxFlags("NoAutoHint", p_font_loader_flags, ImGuiFreeTypeLoaderFlags_NoAutoHint);
- edited |= ImGui::CheckboxFlags("ForceAutoHint",p_font_loader_flags, ImGuiFreeTypeLoaderFlags_ForceAutoHint);
- edited |= ImGui::CheckboxFlags("LightHinting", p_font_loader_flags, ImGuiFreeTypeLoaderFlags_LightHinting);
- edited |= ImGui::CheckboxFlags("MonoHinting", p_font_loader_flags, ImGuiFreeTypeLoaderFlags_MonoHinting);
- edited |= ImGui::CheckboxFlags("Bold", p_font_loader_flags, ImGuiFreeTypeLoaderFlags_Bold);
- edited |= ImGui::CheckboxFlags("Oblique", p_font_loader_flags, ImGuiFreeTypeLoaderFlags_Oblique);
- edited |= ImGui::CheckboxFlags("Monochrome", p_font_loader_flags, ImGuiFreeTypeLoaderFlags_Monochrome);
- edited |= ImGui::CheckboxFlags("LoadColor", p_font_loader_flags, ImGuiFreeTypeLoaderFlags_LoadColor);
- edited |= ImGui::CheckboxFlags("Bitmap", p_font_loader_flags, ImGuiFreeTypeLoaderFlags_Bitmap);
- return edited;
- }
- #ifdef IMGUI_ENABLE_FREETYPE_LUNASVG
- // For more details, see https://gitlab.freedesktop.org/freetype/freetype-demos/-/blob/master/src/rsvg-port.c
- // The original code from the demo is licensed under CeCILL-C Free Software License Agreement (https://gitlab.freedesktop.org/freetype/freetype/-/blob/master/LICENSE.TXT)
- struct LunasvgPortState
- {
- FT_Error err = FT_Err_Ok;
- lunasvg::Matrix matrix;
- std::unique_ptr<lunasvg::Document> svg = nullptr;
- };
- static FT_Error ImGuiLunasvgPortInit(FT_Pointer* _state)
- {
- *_state = IM_NEW(LunasvgPortState)();
- return FT_Err_Ok;
- }
- static void ImGuiLunasvgPortFree(FT_Pointer* _state)
- {
- IM_DELETE(*(LunasvgPortState**)_state);
- }
- static FT_Error ImGuiLunasvgPortRender(FT_GlyphSlot slot, FT_Pointer* _state)
- {
- LunasvgPortState* state = *(LunasvgPortState**)_state;
- // If there was an error while loading the svg in ImGuiLunasvgPortPresetSlot(), the renderer hook still get called, so just returns the error.
- if (state->err != FT_Err_Ok)
- return state->err;
- // rows is height, pitch (or stride) equals to width * sizeof(int32)
- lunasvg::Bitmap bitmap((uint8_t*)slot->bitmap.buffer, slot->bitmap.width, slot->bitmap.rows, slot->bitmap.pitch);
- #if LUNASVG_VERSION_MAJOR >= 3
- state->svg->render(bitmap, state->matrix); // state->matrix is already scaled and translated
- #else
- state->svg->setMatrix(state->svg->matrix().identity()); // Reset the svg matrix to the default value
- state->svg->render(bitmap, state->matrix); // state->matrix is already scaled and translated
- #endif
- state->err = FT_Err_Ok;
- return state->err;
- }
- static FT_Error ImGuiLunasvgPortPresetSlot(FT_GlyphSlot slot, FT_Bool cache, FT_Pointer* _state)
- {
- FT_SVG_Document document = (FT_SVG_Document)slot->other;
- LunasvgPortState* state = *(LunasvgPortState**)_state;
- FT_Size_Metrics& metrics = document->metrics;
- // This function is called twice, once in the FT_Load_Glyph() and another right before ImGuiLunasvgPortRender().
- // If it's the latter, don't do anything because it's // already done in the former.
- if (cache)
- return state->err;
- state->svg = lunasvg::Document::loadFromData((const char*)document->svg_document, document->svg_document_length);
- if (state->svg == nullptr)
- {
- state->err = FT_Err_Invalid_SVG_Document;
- return state->err;
- }
- #if LUNASVG_VERSION_MAJOR >= 3
- lunasvg::Box box = state->svg->boundingBox();
- #else
- lunasvg::Box box = state->svg->box();
- #endif
- double scale = std::min(metrics.x_ppem / box.w, metrics.y_ppem / box.h);
- double xx = (double)document->transform.xx / (1 << 16);
- double xy = -(double)document->transform.xy / (1 << 16);
- double yx = -(double)document->transform.yx / (1 << 16);
- double yy = (double)document->transform.yy / (1 << 16);
- double x0 = (double)document->delta.x / 64 * box.w / metrics.x_ppem;
- double y0 = -(double)document->delta.y / 64 * box.h / metrics.y_ppem;
- #if LUNASVG_VERSION_MAJOR >= 3
- // Scale, transform and pre-translate the matrix for the rendering step
- state->matrix = lunasvg::Matrix::translated(-box.x, -box.y);
- state->matrix.multiply(lunasvg::Matrix(xx, xy, yx, yy, x0, y0));
- state->matrix.scale(scale, scale);
- // Apply updated transformation to the bounding box
- box.transform(state->matrix);
- #else
- // Scale and transform, we don't translate the svg yet
- state->matrix.identity();
- state->matrix.scale(scale, scale);
- state->matrix.transform(xx, xy, yx, yy, x0, y0);
- state->svg->setMatrix(state->matrix);
- // Pre-translate the matrix for the rendering step
- state->matrix.translate(-box.x, -box.y);
- // Get the box again after the transformation
- box = state->svg->box();
- #endif
- // Calculate the bitmap size
- slot->bitmap_left = FT_Int(box.x);
- slot->bitmap_top = FT_Int(-box.y);
- slot->bitmap.rows = (unsigned int)(ImCeil((float)box.h));
- slot->bitmap.width = (unsigned int)(ImCeil((float)box.w));
- slot->bitmap.pitch = slot->bitmap.width * 4;
- slot->bitmap.pixel_mode = FT_PIXEL_MODE_BGRA;
- // Compute all the bearings and set them correctly. The outline is scaled already, we just need to use the bounding box.
- double metrics_width = box.w;
- double metrics_height = box.h;
- double horiBearingX = box.x;
- double horiBearingY = -box.y;
- double vertBearingX = slot->metrics.horiBearingX / 64.0 - slot->metrics.horiAdvance / 64.0 / 2.0;
- double vertBearingY = (slot->metrics.vertAdvance / 64.0 - slot->metrics.height / 64.0) / 2.0;
- slot->metrics.width = FT_Pos(IM_ROUND(metrics_width * 64.0)); // Using IM_ROUND() assume width and height are positive
- slot->metrics.height = FT_Pos(IM_ROUND(metrics_height * 64.0));
- slot->metrics.horiBearingX = FT_Pos(horiBearingX * 64);
- slot->metrics.horiBearingY = FT_Pos(horiBearingY * 64);
- slot->metrics.vertBearingX = FT_Pos(vertBearingX * 64);
- slot->metrics.vertBearingY = FT_Pos(vertBearingY * 64);
- if (slot->metrics.vertAdvance == 0)
- slot->metrics.vertAdvance = FT_Pos(metrics_height * 1.2 * 64.0);
- state->err = FT_Err_Ok;
- return state->err;
- }
- #endif // #ifdef IMGUI_ENABLE_FREETYPE_LUNASVG
- //-----------------------------------------------------------------------------
- #ifdef __GNUC__
- #pragma GCC diagnostic pop
- #endif
- #ifdef _MSC_VER
- #pragma warning (pop)
- #endif
- #endif // #ifndef IMGUI_DISABLE
|