Skip to content

Commit 2597352

Browse files
committed
WIP - Fonts: Comments.
1 parent 6430bc3 commit 2597352

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

imgui.h

+5-4
Original file line numberDiff line numberDiff line change
@@ -3575,9 +3575,9 @@ struct ImFontGlyph
35753575
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)
35763576
unsigned int Visible : 1; // Flag to indicate glyph has no visible pixels (e.g. space). Allow early out when rendering.
35773577
unsigned int 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.
35813581
int PackId; // [Internal] ImFontAtlasRectId value (FIXME: Cold data, could be moved elsewhere?)
35823582

35833583
ImFontGlyph() { memset(this, 0, sizeof(*this)); PackId = -1; }
@@ -3703,9 +3703,10 @@ struct ImFontAtlas
37033703
// - AddCustomRectFontGlyph() --> Use custom ImFontLoader inside ImFontConfig
37043704
// - GetCustomRectByIndex() --> Use GetCustomRect()
37053705
// - CalcCustomRectUV() --> Use GetCustomRectUV()
3706+
// - VERY IMPORTANT: UV COORDINATES MAY BE INVALIDATED BY *ANY* CALL TO IMGUI FUNCTION e.g. ImGui::Text() - OR BY atlas->AddCustomRectRegular(). NEVER CACHE THOSE UV COORDINATES.
37063707
IMGUI_API int AddCustomRectRegular(int width, int height); // Register a rectangle. Return -1 on error.
37073708
IMGUI_API const ImTextureRect* GetCustomRect(int id); // Get rectangle coordinate in current texture.
3708-
IMGUI_API void GetCustomRectUV(const ImTextureRect* r, ImVec2* out_uv_min, ImVec2* out_uv_max) const; // Get UV coordinates for a given rectangle
3709+
IMGUI_API void GetCustomRectUV(const ImTextureRect* r, ImVec2* out_uv_min, ImVec2* out_uv_max) const; // Get UV coordinates for a given rectangle. NEVER CACHE THOSE UV COORDINATES (READ ABOVE).
37093710

37103711
//-------------------------------------------
37113712
// Members

0 commit comments

Comments
 (0)