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
@@ -3575,9 +3575,9 @@ struct ImFontGlyph
3575
3575
unsignedint 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)
3576
3576
unsignedint Visible : 1; // Flag to indicate glyph has no visible pixels (e.g. space). Allow early out when rendering.
3577
3577
unsignedint Codepoint : 30; // 0x0000..0x10FFFF
3578
-
float AdvanceX; // Horizontal distance to advance layout with
3579
-
float X0, Y0, X1, Y1; // Glyph corners
3580
-
float U0, V0, U1, V1; // Texture coordinates
3578
+
float AdvanceX; // Horizontal distance to advance cursor/layout position.
3579
+
float X0, Y0, X1, Y1; // Glyph corners. Offsets from current cursor/layout position.
3580
+
float U0, V0, U1, V1; // Texture coordinates. Cached equivalent of calling GetCustomRectUV() with PackId.
3581
3581
int PackId; // [Internal] ImFontAtlasRectId value (FIXME: Cold data, could be moved elsewhere?)
// - Since 1.92.X, packing is done immediately in the function call.
3697
3697
// - You can render your pixels into the texture right after calling the AddCustomRectXXX() functions.
3698
3698
// - Texture may be resized, so you cannot cache UV coordinates: always use GetCustomRectUV()!
3699
+
// 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!!!
3699
3700
// - If you render colored output into your AddCustomRectRegular() rectangle: set 'atlas->TexPixelsUseColors = true' as this may help some backends decide of preferred texture format.
3700
3701
// - Read docs/FONTS.md for more details about using colorful icons.
3701
3702
// - Note: this API may be reworked further in order to facilitate supporting e.g. multi-monitor, varying DPI settings.
3702
-
// - Pre-1.92 names:
3703
-
// - AddCustomRectFontGlyph() --> Use custom ImFontLoader inside ImFontConfig
3703
+
// - (Pre-1.92 names) ------------> (1.92 names)
3704
3704
// - GetCustomRectByIndex() --> Use GetCustomRect()
3705
3705
// - CalcCustomRectUV() --> Use GetCustomRectUV()
3706
+
// - AddCustomRectFontGlyph() --> Prefer using custom ImFontLoader inside ImFontConfig
3707
+
// - ImFontAtlasCustomRect --> ImTextureRect
3706
3708
IMGUI_API intAddCustomRectRegular(int width, int height); // Register a rectangle. Return -1 on error.
3707
-
IMGUI_API const ImTextureRect* GetCustomRect(int id); // Get rectangle coordinate in current texture.
3708
-
IMGUI_API voidGetCustomRectUV(const ImTextureRect* r, ImVec2* out_uv_min, ImVec2* out_uv_max) const; // Get UV coordinates for a given rectangle
3709
+
IMGUI_API const ImTextureRect* GetCustomRect(int id); // Get rectangle coordinate in current texture. Valid immediately, never store this (read above)!
3710
+
IMGUI_API voidGetCustomRectUV(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)!
0 commit comments