Skip to content

Commit 698c961

Browse files
authored
Merge pull request #1349 from MadLadSquad/auto
Update
2 parents bed1131 + ec26a26 commit 698c961

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Framework/ThirdParty/source-libraries/cimgui/cimgui.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// **DO NOT EDIT DIRECTLY**
33
// https://github.com/dearimgui/dear_bindings
44

5-
// dear imgui, v1.91.6 WIP
5+
// dear imgui, v1.91.6
66
// (headers)
77

88
// Help:
@@ -32,8 +32,8 @@
3232

3333
// Library Version
3434
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
35-
#define IMGUI_VERSION "1.91.6 WIP"
36-
#define IMGUI_VERSION_NUM 19154
35+
#define IMGUI_VERSION "1.91.6"
36+
#define IMGUI_VERSION_NUM 19160
3737
#define IMGUI_HAS_TABLE
3838
#define IMGUI_HAS_VIEWPORT // Viewport WIP branch
3939
#define IMGUI_HAS_DOCK // Docking WIP branch
@@ -3562,24 +3562,24 @@ CIMGUI_API bool ImFontAtlas_GetMouseCursorTexData(ImFontAtlas*
35623562
// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32().
35633563
struct ImFont_t
35643564
{
3565-
// Members: Hot ~20/24 bytes (for CalcTextSize)
3565+
// [Internal] Members: Hot ~20/24 bytes (for CalcTextSize)
35663566
ImVector_float IndexAdvanceX; // 12-16 // out // // Sparse. Glyphs->AdvanceX in a directly indexable way (cache-friendly for CalcTextSize functions which only this info, and are often bottleneck in large UI).
35673567
float FallbackAdvanceX; // 4 // out // = FallbackGlyph->AdvanceX
35683568
float FontSize; // 4 // in // // Height of characters/line, set during loading (don't change after loading)
35693569

3570-
// Members: Hot ~28/40 bytes (for CalcTextSize + render loop)
3570+
// [Internal] Members: Hot ~28/40 bytes (for RenderText loop)
35713571
ImVector_ImWchar IndexLookup; // 12-16 // out // // Sparse. Index glyphs by Unicode code-point.
35723572
ImVector_ImFontGlyph Glyphs; // 12-16 // out // // All glyphs.
35733573
const ImFontGlyph* FallbackGlyph; // 4-8 // out // = FindGlyph(FontFallbackChar)
35743574

3575-
// Members: Cold ~32/40 bytes
3575+
// [Internal] Members: Cold ~32/40 bytes
35763576
// Conceptually ConfigData[] is the list of font sources merged to create this font.
35773577
ImFontAtlas* ContainerAtlas; // 4-8 // out // // What we has been loaded into
35783578
const ImFontConfig* ConfigData; // 4-8 // in // // Pointer within ContainerAtlas->ConfigData to ConfigDataCount instances
35793579
short ConfigDataCount; // 2 // in // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont.
3580-
ImWchar FallbackChar; // 2 // out // = FFFD/'?' // Character used if a glyph isn't found.
3581-
ImWchar EllipsisChar; // 2 // out // = '...'/'.'// Character used for ellipsis rendering.
35823580
short EllipsisCharCount; // 1 // out // 1 or 3
3581+
ImWchar EllipsisChar; // 2-4 // out // = '...'/'.'// Character used for ellipsis rendering.
3582+
ImWchar FallbackChar; // 2-4 // out // = FFFD/'?' // Character used if a glyph isn't found.
35833583
float EllipsisWidth; // 4 // out // Width
35843584
float EllipsisCharStep; // 4 // out // Step between characters when EllipsisCount > 0
35853585
bool DirtyLookupTables; // 1 // out //

0 commit comments

Comments
 (0)