Commit graph

10423 commits

Author SHA1 Message Date
ocornut
a856035678 WIP - Removed LockSingleSrcConfigIdx which isn't needed anymore since we don't load glyphs in ImFontAtlasBuildAddFont(). 2025-03-31 17:37:42 +02:00
ocornut
2c060d4a07 WIP - Fallback glyph is now lazily loaded on demand (yay!). Moving ImFontBaked:: functions outside of class. 2025-03-31 17:37:41 +02:00
ocornut
1beaabb4d0 WIP - imgui_freetype: no need to store metrics locally. 2025-03-31 17:37:41 +02:00
ocornut
5b0ff5e36a WIP - Rework ImFontLoader signatures.
InitBaked may return false to signify this size is not supported.
2025-03-31 17:37:41 +02:00
ocornut
9b5a3a05d1 WIP - A font source can specify its own loader/backend. 2025-03-31 17:37:41 +02:00
ocornut
8d3f361b02 WIP - Core allocates per-baked-per-src backend buffers, to allow having custom backend per font source. Backend BakedInit/Destroy/AddGlyph process a single source. 2025-03-31 17:37:41 +02:00
ocornut
a85f7b434b WIP - Reinstated ImFontAtlasBuildSetupFontCreateEllipsisFromDot() compatible with baked system, lazily baked. 2025-03-31 17:37:41 +02:00
ocornut
8c7fbbc6ad WIP - Added ImFontAtlasBakedSetFontGlyphBitmap(). 2025-03-31 17:37:41 +02:00
ocornut
4f8f7ff999 WIP - Baked system, fix subsequent sources overriding shared font metrics. 2025-03-31 17:37:41 +02:00
ocornut
de9cd4116d WIP - ImFontFlags: ImFontFlags_NoLoadGlyphs + add ImFontFlags_LockBakedSizes 2025-03-31 17:37:41 +02:00
ocornut
811672e6fc WIP - Exposed CompactCache(). Hide ClearCache(). 2025-03-31 17:37:41 +02:00
ocornut
61d975c8f7 WIP - Restore a functional AddCustomRectFontGlyph(). 2025-03-31 17:37:41 +02:00
ocornut
9b583b9da2 WIP - ImFontConfig: added GlyphExcludeRanges 2025-03-31 17:37:41 +02:00
ocornut
86fb2ce55b WIP - Create a fallback glyph if none is available (fix crash on fonts with no fallback) 2025-03-31 17:37:41 +02:00
ocornut
4f236b0361 WIP - Fixed _OnChangedTextureID() asserting when calling on e.g. finalized drawlists. 2025-03-31 17:37:41 +02:00
ocornut
810f905469 WIP - PushFontSize() with -1 uses sources[0]'s size for now (backward compat design) 2025-03-31 17:37:41 +02:00
ocornut
ea3b921611 WIP - Allow PushFont/NewFrame/PopFont idioms to function. 2025-03-31 17:37:41 +02:00
ocornut
c59cfc6302 WIP - Reordered ImFont fields. 2025-03-31 17:37:41 +02:00
ocornut
ad9bff0b4c WIP - Baked system, v12: support GlyphOffset / GlyphMinAdvanceX / GlyphMaxAdvanceX by scaling from ref value.
Overwriting cfg->PixelSnapH = true; in imgui_freetype is weird.
2025-03-31 17:37:41 +02:00
ocornut
e4348fd58e WIP - Baked system, v11. 2025-03-31 17:37:40 +02:00
ocornut
4b79ddf461 WIP - Comments around ImTextureUserID/ImTextureID types. 2025-03-31 17:37:40 +02:00
ocornut
a08f35fee6 WIP - Debug dump to disk, debug log 2025-03-31 17:37:40 +02:00
ocornut
8fab706f31 WIP - Texture resizing favor growing height, halve pack nodes. 2025-03-31 17:37:40 +02:00
ocornut
e901924f01 WIP - Added PushFontSize(), PopFontSize() api. Added font_size param to PushFont() as well. 2025-03-31 17:37:40 +02:00
ocornut
f42477fff6 WIP - Clarify ClearTexData() as not supported with dynamic atlases. 2025-03-31 17:37:40 +02:00
ocornut
523e4ae0e2 WIP - Baked system, with auto-bind, v10. 2025-03-31 17:37:40 +02:00
ocornut
f88176a8ea (Breaking) CalcWordWrapPositionA() -> CalcWordWrapPosition(), takes size instead of scale as this will be needed. 2025-03-31 17:37:40 +02:00
ocornut
a9146dbbe5 Internals: added ImStableVector<> helper. 2025-03-31 17:37:40 +02:00
ocornut
e62ef00f65 WIP - Fixed leak due to indirectly recursing ImFontAtlasPackInit(). 2025-03-31 17:37:40 +02:00
ocornut
9b96eb3b43 WIP - Stb loader: Reworked scale handling to suggest this is not required caching. 2025-03-31 17:37:40 +02:00
ocornut
9da6073021 WIP - Reduced reliance on ImFontConfig::DstFont. 2025-03-31 17:37:40 +02:00
ocornut
d95c96e20e WIP - Added a bit of user facing tooling. 2025-03-31 17:37:40 +02:00
ocornut
c264fa7410 WIP - Removed BuildClearGlyphs(), conflated with ClearOutputData() 2025-03-31 17:37:40 +02:00
ocornut
6ff2b0f0fc WIP - Fixed/improved support for legacy backend. SetTexID() writes into our ImTextureData to keep the indirection, clear TexIsBuilt.
The idea is that a legacy backend can somehow add a if (!atlas->IsBuilt()) ImGui_ImplXXXXX_CreateFontsTexture() call _after_ Render() and some features are supported.
2025-03-31 17:37:40 +02:00
ocornut
ebddffcc56 WIP - (Breaking) remove ImFontAtlasCustomRect which is now the same as ImTextureRect 2025-03-31 17:37:40 +02:00
ocornut
56c64eb0af WIP - Added back support for AddCustomRectFontGlyph()
Legacy path naturally works.
2025-03-31 17:37:40 +02:00
ocornut
a754c61926 WIP - ImFontAtlasBuildInit() uses the occasion to sync HasTexUpdates from imgui context, narrowing the scope where it isn't set. 2025-03-31 17:37:40 +02:00
ocornut
70b4e9150f WIP - Comments, remove ImFontAtlas facing BuildGrowTexture(), BuildCompactTexture(). Make IsBuilt() obsolete. 2025-03-31 17:37:39 +02:00
ocornut
e3625d0fcd WIP - Basic heuristic to repack instead of growing. Moved rects count/surface to internals. 2025-03-31 17:37:39 +02:00
ocornut
00e4d681f1 WIP - Added atlas's TexMinWidth/TexMinHeight/TexMaxWidth/TexMaxHeight.
Fixed ImFontAtlasBuildGetTextureSizeEstimate().
Basic error handling on OOM.
2025-03-31 17:37:39 +02:00
ocornut
0e75986e7f WIP - Ensure UpdateBox is set on texture _WantCreate state too. 2025-03-31 17:37:39 +02:00
ocornut
4c0c7c1f39 WIP - Turn public facing BuildRegisterGlyph() into ImFontAtlasBuildAddFontGlyph() thats sets up UV. 2025-03-31 17:37:39 +02:00
ocornut
95bcfc98b5 WIP - Rasterizing ellipsis character from dot as one glyph + avoid preloading if it not needed. 2025-03-31 17:37:39 +02:00
ocornut
ef28c35145 WIP - Fixed support for multiple contexts. 2025-03-31 17:37:39 +02:00
ocornut
71088794ad WIP - Added ImFontAtlas::RemoveFont(), fixed various leaks. 2025-03-31 17:37:39 +02:00
ocornut
a9ae6b764f WIP - Marked ImFontAtlas::Build() as obsolete 2025-03-31 17:37:39 +02:00
ocornut
7b3f2c4857 WIP - ClearCache(), ImFontAtlasBuildGetTextureSizeEstimate(), tweak clearing functions. 2025-03-31 17:37:39 +02:00
ocornut
78e674d16c WIP - Fix for password fields 2025-03-31 17:37:39 +02:00
ocornut
50b2a81ee6 WIP - Use a structure for post-processing - easier to pass things around and iterate on. 2025-03-31 17:37:39 +02:00
ocornut
b1bb673de4 WIP - Repack without full reload, discard rectangle, fixed CustomRect api with stable id, remove public BuildInit(). 2025-03-31 17:37:39 +02:00