You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: imgui.h
+9-7
Original file line number
Diff line number
Diff line change
@@ -3412,6 +3412,7 @@ struct ImFontAtlas
3412
3412
// Members
3413
3413
//-------------------------------------------
3414
3414
3415
+
// Input
3415
3416
ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_)
3416
3417
ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure.
3417
3418
int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height.
@@ -3443,8 +3444,8 @@ struct ImFontAtlas
3443
3444
int PackIdLines; // Custom texture rectangle ID for baked anti-aliased lines
3444
3445
3445
3446
// [Obsolete]
3446
-
//typedef ImFontAtlasCustomRect CustomRect; // OBSOLETED in 1.72+
3447
-
//typedef ImFontGlyphRangesBuilder GlyphRangesBuilder; // OBSOLETED in 1.67+
3447
+
//typedef ImFontAtlasCustomRect CustomRect; // OBSOLETED in 1.72+
3448
+
//typedef ImFontGlyphRangesBuilder GlyphRangesBuilder; // OBSOLETED in 1.67+
3448
3449
};
3449
3450
3450
3451
// Font runtime data and rendering
@@ -3459,7 +3460,7 @@ struct ImFont
3459
3460
// [Internal] Members: Hot ~28/40 bytes (for RenderText loop)
3460
3461
ImVector<ImU16> IndexLookup; // 12-16 // out // Sparse. Index glyphs by Unicode code-point.
3461
3462
ImVector<ImFontGlyph> Glyphs; // 12-16 // out // All glyphs.
3462
-
constImFontGlyph* FallbackGlyph; // 4-8 // out // = FindGlyph(FontFallbackChar)
3463
+
ImFontGlyph* FallbackGlyph; // 4-8 // out // = FindGlyph(FontFallbackChar)
3463
3464
3464
3465
// [Internal] Members: Cold ~32/40 bytes
3465
3466
// Conceptually ConfigData[] is the list of font sources merged to create this font.
0 commit comments