Skip to content

Commit 5b08110

Browse files
committed
WIP - Fonts: Comments.
1 parent c91df71 commit 5b08110

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

imgui.h

+9-7
Original file line numberDiff line numberDiff line change
@@ -3581,9 +3581,9 @@ struct ImFontGlyph
35813581
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)
35823582
unsigned int Visible : 1; // Flag to indicate glyph has no visible pixels (e.g. space). Allow early out when rendering.
35833583
unsigned int Codepoint : 30; // 0x0000..0x10FFFF
3584-
float AdvanceX; // Horizontal distance to advance layout with
3585-
float X0, Y0, X1, Y1; // Glyph corners
3586-
float U0, V0, U1, V1; // Texture coordinates
3584+
float AdvanceX; // Horizontal distance to advance cursor/layout position.
3585+
float X0, Y0, X1, Y1; // Glyph corners. Offsets from current cursor/layout position.
3586+
float U0, V0, U1, V1; // Texture coordinates. Cached equivalent of calling GetCustomRectUV() with PackId.
35873587
int PackId; // [Internal] ImFontAtlasRectId value (FIXME: Cold data, could be moved elsewhere?)
35883588

35893589
ImFontGlyph() { memset(this, 0, sizeof(*this)); PackId = -1; }
@@ -3702,16 +3702,18 @@ struct ImFontAtlas
37023702
// - Since 1.92.X, packing is done immediately in the function call.
37033703
// - You can render your pixels into the texture right after calling the AddCustomRectXXX() functions.
37043704
// - Texture may be resized, so you cannot cache UV coordinates: always use GetCustomRectUV()!
3705+
// VERY IMPORTANT: RECTANGLE DATA AND UV COORDINATES MAY BE INVALIDATED BY *ANY* CALL TO IMGUI FUNCTIONS - e.g. ImGui::Text() - OR BY atlas->AddCustomRectRegular(). NEVER CACHE THOSE!!!
37053706
// - If you render colored output into your AddCustomRectRegular() rectangle: set 'atlas->TexPixelsUseColors = true' as this may help some backends decide of preferred texture format.
37063707
// - Read docs/FONTS.md for more details about using colorful icons.
37073708
// - Note: this API may be reworked further in order to facilitate supporting e.g. multi-monitor, varying DPI settings.
3708-
// - Pre-1.92 names:
3709-
// - AddCustomRectFontGlyph() --> Use custom ImFontLoader inside ImFontConfig
3709+
// - (Pre-1.92 names) ------------> (1.92 names)
37103710
// - GetCustomRectByIndex() --> Use GetCustomRect()
37113711
// - CalcCustomRectUV() --> Use GetCustomRectUV()
3712+
// - AddCustomRectFontGlyph() --> Prefer using custom ImFontLoader inside ImFontConfig
3713+
// - ImFontAtlasCustomRect --> ImTextureRect
37123714
IMGUI_API int AddCustomRectRegular(int width, int height); // Register a rectangle. Return -1 on error.
3713-
IMGUI_API const ImTextureRect* GetCustomRect(int id); // Get rectangle coordinate in current texture.
3714-
IMGUI_API void GetCustomRectUV(const ImTextureRect* r, ImVec2* out_uv_min, ImVec2* out_uv_max) const; // Get UV coordinates for a given rectangle
3715+
IMGUI_API const ImTextureRect* GetCustomRect(int id); // Get rectangle coordinate in current texture. Valid immediately, never store this (read above)!
3716+
IMGUI_API void GetCustomRectUV(const ImTextureRect* r, ImVec2* out_uv_min, ImVec2* out_uv_max) const; // Get UV coordinates for a given rectangle. Valid immediately, never store this (read above)!
37153717

37163718
//-------------------------------------------
37173719
// Members

0 commit comments

Comments
 (0)