1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Fonts: shallow rework of ImFontAtlasBakedAddFontGlyph() to facilitate upcoming change.

This commit is contained in:
ocornut 2025-04-22 17:56:00 +02:00
parent 890fff92fd
commit e7efe94fd2
2 changed files with 20 additions and 20 deletions

View file

@ -3479,7 +3479,7 @@ struct ImFontConfig
};
// Hold rendering data for one glyph.
// (Note: some language parsers may fail to convert the 31+1 bitfield members, in this case maybe drop store a single u32 or we can rework this)
// (Note: some language parsers may fail to convert the bitfield members, in this case maybe drop store a single u32 or we can rework this)
struct ImFontGlyph
{
unsigned int Colored : 1; // Flag to indicate glyph is colored and should generally ignore tinting (make it usable with no shift on little-endian as this is used in loops)