mirror of
https://github.com/cimgui/cimgui.git
synced 2025-12-01 06:01:38 +00:00
Compare commits
5 Commits
1.94.2_con
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bfd30140a9 | ||
|
|
d94ad1b162 | ||
|
|
c9f0e06eb2 | ||
|
|
899049782b | ||
|
|
305d1040fb |
@@ -19,7 +19,7 @@ Notes:
|
||||
|
||||
# changes
|
||||
|
||||
* 10/11/2025: Functions returning and taking as argument no POD structs is now doing a conversion internally to allow ARM64 compilation.
|
||||
* 10/11/2025: Functions returning and taking as argument no POD structs is now doing a conversion internally to allow ARM64 compilation. In structs_and_enums.json under key nonPOD_used we get a collection where keys are types non usable from C that appear as returns or args to funtions. value can be true or "inherited" when type comes from cimgui and appears in a cimgui extension (cimplot ...). The C names have suffix _c.
|
||||
|
||||
# compilation
|
||||
|
||||
@@ -91,6 +91,7 @@ Notes:
|
||||
* size : the number of array elements (when it is an array)
|
||||
* bitfield : the bitfield width (in case it is a bitfield)
|
||||
* under key locations we get the locations collection in which each key is the enum tagname or the struct name and the value is the name of the header file and line number this comes from.
|
||||
* under key nonPOD_used we get a collection where keys are types non usable from C that appear as returns or args to funtions. value can be true or "inherited" when type comes from cimgui and appears in a cimgui extension (cimplot ...). The C names have suffix _c.
|
||||
# usage
|
||||
|
||||
* use whatever method is in ImGui c++ namespace in the original [imgui.h](https://github.com/ocornut/imgui/blob/master/imgui.h) by prepending `ig`
|
||||
|
||||
26
cimgui.cpp
26
cimgui.cpp
@@ -1,5 +1,5 @@
|
||||
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui
|
||||
//based on imgui.h file version "1.92.4" 19240 from Dear ImGui https://github.com/ocornut/imgui
|
||||
//based on imgui.h file version "1.92.5" 19250 from Dear ImGui https://github.com/ocornut/imgui
|
||||
//with imgui_internal.h api
|
||||
//with imgui_freetype.h api
|
||||
|
||||
@@ -3145,9 +3145,13 @@ CIMGUI_API int igImTextCountUtf8BytesFromStr(const ImWchar* in_text,const ImWcha
|
||||
{
|
||||
return ImTextCountUtf8BytesFromStr(in_text,in_text_end);
|
||||
}
|
||||
CIMGUI_API const char* igImTextFindPreviousUtf8Codepoint(const char* in_text_start,const char* in_text_curr)
|
||||
CIMGUI_API const char* igImTextFindPreviousUtf8Codepoint(const char* in_text_start,const char* in_p)
|
||||
{
|
||||
return ImTextFindPreviousUtf8Codepoint(in_text_start,in_text_curr);
|
||||
return ImTextFindPreviousUtf8Codepoint(in_text_start,in_p);
|
||||
}
|
||||
CIMGUI_API const char* igImTextFindValidUtf8CodepointEnd(const char* in_text_start,const char* in_text_end,const char* in_p)
|
||||
{
|
||||
return ImTextFindValidUtf8CodepointEnd(in_text_start,in_text_end,in_p);
|
||||
}
|
||||
CIMGUI_API int igImTextCountLines(const char* in_text,const char* in_text_end)
|
||||
{
|
||||
@@ -4009,6 +4013,14 @@ CIMGUI_API void ImGuiStackLevelInfo_destroy(ImGuiStackLevelInfo* self)
|
||||
{
|
||||
IM_DELETE(self);
|
||||
}
|
||||
CIMGUI_API ImGuiDebugItemPathQuery* ImGuiDebugItemPathQuery_ImGuiDebugItemPathQuery(void)
|
||||
{
|
||||
return IM_NEW(ImGuiDebugItemPathQuery)();
|
||||
}
|
||||
CIMGUI_API void ImGuiDebugItemPathQuery_destroy(ImGuiDebugItemPathQuery* self)
|
||||
{
|
||||
IM_DELETE(self);
|
||||
}
|
||||
CIMGUI_API ImGuiIDStackTool* ImGuiIDStackTool_ImGuiIDStackTool(void)
|
||||
{
|
||||
return IM_NEW(ImGuiIDStackTool)();
|
||||
@@ -4181,6 +4193,10 @@ CIMGUI_API bool igIsWindowChildOf(ImGuiWindow* window,ImGuiWindow* potential_par
|
||||
{
|
||||
return ImGui::IsWindowChildOf(window,potential_parent,popup_hierarchy);
|
||||
}
|
||||
CIMGUI_API bool igIsWindowInBeginStack(ImGuiWindow* window)
|
||||
{
|
||||
return ImGui::IsWindowInBeginStack(window);
|
||||
}
|
||||
CIMGUI_API bool igIsWindowWithinBeginStackOf(ImGuiWindow* window,ImGuiWindow* potential_parent)
|
||||
{
|
||||
return ImGui::IsWindowWithinBeginStackOf(window,potential_parent);
|
||||
@@ -5858,6 +5874,10 @@ CIMGUI_API void igImFontAtlasBuildSetupFontLoader(ImFontAtlas* atlas,const ImFon
|
||||
{
|
||||
return ImFontAtlasBuildSetupFontLoader(atlas,font_loader);
|
||||
}
|
||||
CIMGUI_API void igImFontAtlasBuildNotifySetFont(ImFontAtlas* atlas,ImFont* old_font,ImFont* new_font)
|
||||
{
|
||||
return ImFontAtlasBuildNotifySetFont(atlas,old_font,new_font);
|
||||
}
|
||||
CIMGUI_API void igImFontAtlasBuildUpdatePointers(ImFontAtlas* atlas)
|
||||
{
|
||||
return ImFontAtlasBuildUpdatePointers(atlas);
|
||||
|
||||
78
cimgui.h
78
cimgui.h
@@ -1,5 +1,5 @@
|
||||
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui
|
||||
//based on imgui.h file version "1.92.4" 19240 from Dear ImGui https://github.com/ocornut/imgui
|
||||
//based on imgui.h file version "1.92.5" 19250 from Dear ImGui https://github.com/ocornut/imgui
|
||||
//with imgui_internal.h api
|
||||
//with imgui_freetype.h api
|
||||
#ifndef CIMGUI_INCLUDED
|
||||
@@ -468,6 +468,7 @@ typedef enum {
|
||||
ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10,
|
||||
ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11,
|
||||
ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12,
|
||||
ImGuiDragDropFlags_AcceptDrawAsHovered = 1 << 13,
|
||||
ImGuiDragDropFlags_AcceptPeekOnly = ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect,
|
||||
}ImGuiDragDropFlags_;
|
||||
typedef enum {
|
||||
@@ -751,6 +752,7 @@ typedef enum {
|
||||
ImGuiCol_TextSelectedBg,
|
||||
ImGuiCol_TreeLines,
|
||||
ImGuiCol_DragDropTarget,
|
||||
ImGuiCol_DragDropTargetBg,
|
||||
ImGuiCol_UnsavedMarker,
|
||||
ImGuiCol_NavCursor,
|
||||
ImGuiCol_NavWindowingHighlight,
|
||||
@@ -1026,6 +1028,9 @@ struct ImGuiStyle
|
||||
ImGuiTreeNodeFlags TreeLinesFlags;
|
||||
float TreeLinesSize;
|
||||
float TreeLinesRounding;
|
||||
float DragDropTargetRounding;
|
||||
float DragDropTargetBorderSize;
|
||||
float DragDropTargetPadding;
|
||||
ImGuiDir ColorButtonPosition;
|
||||
ImVec2_c ButtonTextAlign;
|
||||
ImVec2_c SelectableTextAlign;
|
||||
@@ -1268,6 +1273,7 @@ typedef enum {
|
||||
ImGuiMultiSelectFlags_SelectOnClick = 1 << 13,
|
||||
ImGuiMultiSelectFlags_SelectOnClickRelease = 1 << 14,
|
||||
ImGuiMultiSelectFlags_NavWrapX = 1 << 16,
|
||||
ImGuiMultiSelectFlags_NoSelectOnRightClick = 1 << 17,
|
||||
}ImGuiMultiSelectFlags_;
|
||||
typedef struct ImVector_ImGuiSelectionRequest {int Size;int Capacity;ImGuiSelectionRequest* Data;} ImVector_ImGuiSelectionRequest;
|
||||
|
||||
@@ -1576,7 +1582,7 @@ struct ImFontBaked
|
||||
unsigned int LoadNoRenderOnLayout:1;
|
||||
int LastUsedFrame;
|
||||
ImGuiID BakedId;
|
||||
ImFont* ContainerFont;
|
||||
ImFont* OwnerFont;
|
||||
void* FontLoaderDatas;
|
||||
};
|
||||
typedef enum {
|
||||
@@ -1590,7 +1596,7 @@ typedef struct ImVector_ImFontConfigPtr {int Size;int Capacity;ImFontConfig** Da
|
||||
struct ImFont
|
||||
{
|
||||
ImFontBaked* LastBaked;
|
||||
ImFontAtlas* ContainerAtlas;
|
||||
ImFontAtlas* OwnerAtlas;
|
||||
ImFontFlags Flags;
|
||||
float CurrentRasterizerDensity;
|
||||
ImGuiID FontId;
|
||||
@@ -1708,6 +1714,7 @@ typedef int ImGuiSeparatorFlags;
|
||||
typedef int ImGuiTextFlags;
|
||||
typedef int ImGuiTooltipFlags;
|
||||
typedef int ImGuiTypingSelectFlags;
|
||||
typedef int ImGuiWindowBgClickFlags;
|
||||
typedef int ImGuiWindowRefreshFlags;
|
||||
typedef ImS16 ImGuiTableColumnIdx;
|
||||
typedef ImU16 ImGuiTableDrawChannelIdx;
|
||||
@@ -1958,6 +1965,7 @@ struct ImGuiGroupData
|
||||
ImVec2_c BackupCurrLineSize;
|
||||
float BackupCurrLineTextBaseOffset;
|
||||
ImGuiID BackupActiveIdIsAlive;
|
||||
bool BackupActiveIdHasBeenEditedThisFrame;
|
||||
bool BackupDeactivatedIdIsAlive;
|
||||
bool BackupHoveredIdIsAlive;
|
||||
bool BackupIsSameLine;
|
||||
@@ -2012,6 +2020,10 @@ typedef enum {
|
||||
ImGuiWindowRefreshFlags_RefreshOnHover = 1 << 1,
|
||||
ImGuiWindowRefreshFlags_RefreshOnFocus = 1 << 2,
|
||||
}ImGuiWindowRefreshFlags_;
|
||||
typedef enum {
|
||||
ImGuiWindowBgClickFlags_None = 0,
|
||||
ImGuiWindowBgClickFlags_Move = 1 << 0,
|
||||
}ImGuiWindowBgClickFlags_;
|
||||
typedef enum {
|
||||
ImGuiNextWindowDataFlags_None = 0,
|
||||
ImGuiNextWindowDataFlags_HasPos = 1 << 0,
|
||||
@@ -2573,21 +2585,26 @@ struct ImGuiStackLevelInfo
|
||||
ImS8 DataType;
|
||||
int DescOffset;
|
||||
};
|
||||
typedef struct ImGuiIDStackTool ImGuiIDStackTool;
|
||||
typedef struct ImGuiDebugItemPathQuery ImGuiDebugItemPathQuery;
|
||||
typedef struct ImVector_ImGuiStackLevelInfo {int Size;int Capacity;ImGuiStackLevelInfo* Data;} ImVector_ImGuiStackLevelInfo;
|
||||
|
||||
struct ImGuiDebugItemPathQuery
|
||||
{
|
||||
ImGuiID MainID;
|
||||
bool Active;
|
||||
bool Complete;
|
||||
ImS8 Step;
|
||||
ImVector_ImGuiStackLevelInfo Results;
|
||||
ImGuiTextBuffer ResultsDescBuf;
|
||||
ImGuiTextBuffer ResultPathBuf;
|
||||
};
|
||||
typedef struct ImGuiIDStackTool ImGuiIDStackTool;
|
||||
struct ImGuiIDStackTool
|
||||
{
|
||||
int LastActiveFrame;
|
||||
int StackLevel;
|
||||
ImGuiID QueryMainId;
|
||||
ImVector_ImGuiStackLevelInfo Results;
|
||||
bool QueryHookActive;
|
||||
bool OptHexEncodeNonAsciiChars;
|
||||
bool OptCopyToClipboardOnCtrlC;
|
||||
int LastActiveFrame;
|
||||
float CopyToClipboardLastTime;
|
||||
ImGuiTextBuffer ResultPathsBuf;
|
||||
ImGuiTextBuffer ResultTempBuf;
|
||||
};
|
||||
typedef void (*ImGuiContextHookCallback)(ImGuiContext* ctx, ImGuiContextHook* hook);
|
||||
typedef enum { ImGuiContextHookType_NewFramePre, ImGuiContextHookType_NewFramePost, ImGuiContextHookType_EndFramePre, ImGuiContextHookType_EndFramePost, ImGuiContextHookType_RenderPre, ImGuiContextHookType_RenderPost, ImGuiContextHookType_Shutdown, ImGuiContextHookType_PendingRemoval_ }ImGuiContextHookType;
|
||||
@@ -2662,6 +2679,14 @@ typedef struct ImVector_ImGuiContextHook {int Size;int Capacity;ImGuiContextHook
|
||||
struct ImGuiContext
|
||||
{
|
||||
bool Initialized;
|
||||
bool WithinFrameScope;
|
||||
bool WithinFrameScopeWithImplicitWindow;
|
||||
bool TestEngineHookItems;
|
||||
int FrameCount;
|
||||
int FrameCountEnded;
|
||||
int FrameCountRendered;
|
||||
double Time;
|
||||
char ContextName[16];
|
||||
ImGuiIO IO;
|
||||
ImGuiPlatformIO PlatformIO;
|
||||
ImGuiStyle Style;
|
||||
@@ -2674,17 +2699,8 @@ struct ImGuiContext
|
||||
float FontRasterizerDensity;
|
||||
float CurrentDpiScale;
|
||||
ImDrawListSharedData DrawListSharedData;
|
||||
double Time;
|
||||
int FrameCount;
|
||||
int FrameCountEnded;
|
||||
int FrameCountRendered;
|
||||
ImGuiID WithinEndChildID;
|
||||
bool WithinFrameScope;
|
||||
bool WithinFrameScopeWithImplicitWindow;
|
||||
bool GcCompactAll;
|
||||
bool TestEngineHookItems;
|
||||
void* TestEngine;
|
||||
char ContextName[16];
|
||||
ImVector_ImGuiInputEvent InputEventsQueue;
|
||||
ImVector_ImGuiInputEvent InputEventsTrail;
|
||||
ImGuiMouseSource InputEventsNextMouseSource;
|
||||
@@ -2729,11 +2745,11 @@ struct ImGuiContext
|
||||
bool ActiveIdHasBeenEditedBefore;
|
||||
bool ActiveIdHasBeenEditedThisFrame;
|
||||
bool ActiveIdFromShortcut;
|
||||
ImS8 ActiveIdMouseButton;
|
||||
ImGuiID ActiveIdDisabledId;
|
||||
int ActiveIdMouseButton : 8;
|
||||
ImVec2_c ActiveIdClickOffset;
|
||||
ImGuiWindow* ActiveIdWindow;
|
||||
ImGuiInputSource ActiveIdSource;
|
||||
ImGuiWindow* ActiveIdWindow;
|
||||
ImGuiID ActiveIdPreviousFrame;
|
||||
ImGuiDeactivatedItemData DeactivatedItemData;
|
||||
ImGuiDataTypeStorage ActiveIdValueOnActivation;
|
||||
@@ -2755,6 +2771,7 @@ struct ImGuiContext
|
||||
ImGuiLastItemData LastItemData;
|
||||
ImGuiNextWindowData NextWindowData;
|
||||
bool DebugShowGroupRects;
|
||||
bool GcCompactAll;
|
||||
ImGuiCol DebugFlashStyleColorIdx;
|
||||
ImVector_ImGuiColorMod ColorStack;
|
||||
ImVector_ImGuiStyleMod StyleVarStack;
|
||||
@@ -2839,7 +2856,8 @@ struct ImGuiContext
|
||||
ImRect_c DragDropTargetClipRect;
|
||||
ImGuiID DragDropTargetId;
|
||||
ImGuiID DragDropTargetFullViewport;
|
||||
ImGuiDragDropFlags DragDropAcceptFlags;
|
||||
ImGuiDragDropFlags DragDropAcceptFlagsCurr;
|
||||
ImGuiDragDropFlags DragDropAcceptFlagsPrev;
|
||||
float DragDropAcceptIdCurrRectSurface;
|
||||
ImGuiID DragDropAcceptIdCurr;
|
||||
ImGuiID DragDropAcceptIdPrev;
|
||||
@@ -2921,6 +2939,7 @@ struct ImGuiContext
|
||||
ImGuiID HookIdNext;
|
||||
const char* LocalizationTable[ImGuiLocKey_COUNT];
|
||||
bool LogEnabled;
|
||||
bool LogLineFirstItem;
|
||||
ImGuiLogFlags LogFlags;
|
||||
ImGuiWindow* LogWindow;
|
||||
ImFileHandle LogFile;
|
||||
@@ -2928,7 +2947,6 @@ struct ImGuiContext
|
||||
const char* LogNextPrefix;
|
||||
const char* LogNextSuffix;
|
||||
float LogLinePosY;
|
||||
bool LogLineFirstItem;
|
||||
int LogDepthRef;
|
||||
int LogDepthToExpand;
|
||||
int LogDepthToExpandDefault;
|
||||
@@ -2956,6 +2974,7 @@ struct ImGuiContext
|
||||
float DebugFlashStyleColorTime;
|
||||
ImVec4_c DebugFlashStyleColorBackup;
|
||||
ImGuiMetricsConfig DebugMetricsConfig;
|
||||
ImGuiDebugItemPathQuery DebugItemPathQuery;
|
||||
ImGuiIDStackTool DebugIDStackTool;
|
||||
ImGuiDebugAllocInfo DebugAllocInfo;
|
||||
float FramerateSecPerFrame[60];
|
||||
@@ -3066,13 +3085,14 @@ struct ImGuiWindow
|
||||
short BeginOrderWithinParent;
|
||||
short BeginOrderWithinContext;
|
||||
short FocusOrder;
|
||||
ImGuiDir AutoPosLastDirection;
|
||||
ImS8 AutoFitFramesX, AutoFitFramesY;
|
||||
bool AutoFitOnlyGrows;
|
||||
ImGuiDir AutoPosLastDirection;
|
||||
ImS8 HiddenFramesCanSkipItems;
|
||||
ImS8 HiddenFramesCannotSkipItems;
|
||||
ImS8 HiddenFramesForRenderOnly;
|
||||
ImS8 DisableInputsFrames;
|
||||
ImGuiWindowBgClickFlags BgClickFlags : 8;
|
||||
ImGuiCond SetWindowPosAllowFlags : 8;
|
||||
ImGuiCond SetWindowSizeAllowFlags : 8;
|
||||
ImGuiCond SetWindowCollapsedAllowFlags : 8;
|
||||
@@ -3380,6 +3400,7 @@ typedef struct ImVector_ImGuiTableHeaderData {int Size;int Capacity;ImGuiTableHe
|
||||
|
||||
struct ImGuiTableTempData
|
||||
{
|
||||
ImGuiID WindowID;
|
||||
int TableIndex;
|
||||
float LastTimeActive;
|
||||
float AngledHeadersExtraWidth;
|
||||
@@ -4397,7 +4418,8 @@ CIMGUI_API int igImTextStrFromUtf8(ImWchar* out_buf,int out_buf_size,const char*
|
||||
CIMGUI_API int igImTextCountCharsFromUtf8(const char* in_text,const char* in_text_end);
|
||||
CIMGUI_API int igImTextCountUtf8BytesFromChar(const char* in_text,const char* in_text_end);
|
||||
CIMGUI_API int igImTextCountUtf8BytesFromStr(const ImWchar* in_text,const ImWchar* in_text_end);
|
||||
CIMGUI_API const char* igImTextFindPreviousUtf8Codepoint(const char* in_text_start,const char* in_text_curr);
|
||||
CIMGUI_API const char* igImTextFindPreviousUtf8Codepoint(const char* in_text_start,const char* in_p);
|
||||
CIMGUI_API const char* igImTextFindValidUtf8CodepointEnd(const char* in_text_start,const char* in_text_end,const char* in_p);
|
||||
CIMGUI_API int igImTextCountLines(const char* in_text,const char* in_text_end);
|
||||
CIMGUI_API ImVec2_c igImFontCalcTextSizeEx(ImFont* font,float size,float max_width,float wrap_width,const char* text_begin,const char* text_end_display,const char* text_end,const char** out_remaining,ImVec2_c* out_offset,ImDrawTextFlags flags);
|
||||
CIMGUI_API const char* igImFontCalcWordWrapPositionEx(ImFont* font,float size,const char* text,const char* text_end,float wrap_width,ImDrawTextFlags flags);
|
||||
@@ -4613,6 +4635,8 @@ CIMGUI_API ImGuiDebugAllocInfo* ImGuiDebugAllocInfo_ImGuiDebugAllocInfo(void);
|
||||
CIMGUI_API void ImGuiDebugAllocInfo_destroy(ImGuiDebugAllocInfo* self);
|
||||
CIMGUI_API ImGuiStackLevelInfo* ImGuiStackLevelInfo_ImGuiStackLevelInfo(void);
|
||||
CIMGUI_API void ImGuiStackLevelInfo_destroy(ImGuiStackLevelInfo* self);
|
||||
CIMGUI_API ImGuiDebugItemPathQuery* ImGuiDebugItemPathQuery_ImGuiDebugItemPathQuery(void);
|
||||
CIMGUI_API void ImGuiDebugItemPathQuery_destroy(ImGuiDebugItemPathQuery* self);
|
||||
CIMGUI_API ImGuiIDStackTool* ImGuiIDStackTool_ImGuiIDStackTool(void);
|
||||
CIMGUI_API void ImGuiIDStackTool_destroy(ImGuiIDStackTool* self);
|
||||
CIMGUI_API ImGuiContextHook* ImGuiContextHook_ImGuiContextHook(void);
|
||||
@@ -4656,6 +4680,7 @@ CIMGUI_API void igUpdateWindowParentAndRootLinks(ImGuiWindow* window,ImGuiWindow
|
||||
CIMGUI_API void igUpdateWindowSkipRefresh(ImGuiWindow* window);
|
||||
CIMGUI_API ImVec2_c igCalcWindowNextAutoFitSize(ImGuiWindow* window);
|
||||
CIMGUI_API bool igIsWindowChildOf(ImGuiWindow* window,ImGuiWindow* potential_parent,bool popup_hierarchy);
|
||||
CIMGUI_API bool igIsWindowInBeginStack(ImGuiWindow* window);
|
||||
CIMGUI_API bool igIsWindowWithinBeginStackOf(ImGuiWindow* window,ImGuiWindow* potential_parent);
|
||||
CIMGUI_API bool igIsWindowAbove(ImGuiWindow* potential_above,ImGuiWindow* potential_below);
|
||||
CIMGUI_API bool igIsWindowNavFocusable(ImGuiWindow* window);
|
||||
@@ -5076,6 +5101,7 @@ CIMGUI_API void igImFontAtlasBuildInit(ImFontAtlas* atlas);
|
||||
CIMGUI_API void igImFontAtlasBuildDestroy(ImFontAtlas* atlas);
|
||||
CIMGUI_API void igImFontAtlasBuildMain(ImFontAtlas* atlas);
|
||||
CIMGUI_API void igImFontAtlasBuildSetupFontLoader(ImFontAtlas* atlas,const ImFontLoader* font_loader);
|
||||
CIMGUI_API void igImFontAtlasBuildNotifySetFont(ImFontAtlas* atlas,ImFont* old_font,ImFont* new_font);
|
||||
CIMGUI_API void igImFontAtlasBuildUpdatePointers(ImFontAtlas* atlas);
|
||||
CIMGUI_API void igImFontAtlasBuildRenderBitmapFromString(ImFontAtlas* atlas,int x,int y,int w,int h,const char* in_str,char in_marker_char);
|
||||
CIMGUI_API void igImFontAtlasBuildClear(ImFontAtlas* atlas);
|
||||
|
||||
@@ -1256,14 +1256,15 @@ local function get_nonPODused(FP)
|
||||
local all_type_nP = {}
|
||||
for k,v in pairs(typeargs) do
|
||||
local k2 = k:gsub("const ","")
|
||||
all_type_nP[k2] = true
|
||||
all_type_nP[k2] = nonPOD[k2]--true
|
||||
end
|
||||
for k,v in pairs(typeargs_ret) do
|
||||
local k2 = k:gsub("const ","")
|
||||
all_type_nP[k2] = true
|
||||
all_type_nP[k2] = nonPOD[k2]--true
|
||||
end
|
||||
FP.nP_used = all_type_nP
|
||||
--M.prtable("FP.nP_used",FP.nP_used)
|
||||
FP.structs_and_enums_table.nonPOD_used = FP.nP_used
|
||||
FP.nP_args = typeargs
|
||||
FP.nP_ret = typeargs_ret
|
||||
--genConversions(FP)
|
||||
|
||||
@@ -437,6 +437,7 @@ local structs_and_enums_table = parser1.structs_and_enums_table
|
||||
structs_and_enums_table.templated_structs = parser1.templated_structs
|
||||
structs_and_enums_table.typenames = parser1.typenames
|
||||
structs_and_enums_table.templates_done = parser1.templates_done
|
||||
--structs_and_enums_table.nonPOD_used = parser1.nP_used
|
||||
|
||||
save_data("./output/structs_and_enums.lua",serializeTableF(structs_and_enums_table))
|
||||
save_data("./output/typedefs_dict.lua",serializeTableF(parser1.typedefs_dict))
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1319,7 +1319,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"location": "imgui_impl_vulkan:186",
|
||||
"location": "imgui_impl_vulkan:195",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"ret": "void",
|
||||
"signature": "(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
||||
@@ -1353,7 +1353,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"location": "imgui_impl_vulkan:187",
|
||||
"location": "imgui_impl_vulkan:196",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"ret": "void",
|
||||
"signature": "(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||
@@ -1375,7 +1375,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"location": "imgui_impl_vulkan:192",
|
||||
"location": "imgui_impl_vulkan:201",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"ret": "int",
|
||||
"signature": "(VkPresentModeKHR)",
|
||||
@@ -1397,7 +1397,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"location": "imgui_impl_vulkan:190",
|
||||
"location": "imgui_impl_vulkan:199",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"ret": "VkPhysicalDevice",
|
||||
"signature": "(VkInstance)",
|
||||
@@ -1431,7 +1431,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"location": "imgui_impl_vulkan:189",
|
||||
"location": "imgui_impl_vulkan:198",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"ret": "VkPresentModeKHR",
|
||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||
@@ -1453,7 +1453,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"location": "imgui_impl_vulkan:191",
|
||||
"location": "imgui_impl_vulkan:200",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"ret": "uint32_t",
|
||||
"signature": "(VkPhysicalDevice)",
|
||||
@@ -1491,7 +1491,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"location": "imgui_impl_vulkan:188",
|
||||
"location": "imgui_impl_vulkan:197",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"ret": "VkSurfaceFormatKHR",
|
||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||
@@ -1509,7 +1509,7 @@
|
||||
"constructor": true,
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_Window",
|
||||
"location": "imgui_impl_vulkan:235",
|
||||
"location": "imgui_impl_vulkan:244",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||
"signature": "()",
|
||||
"stname": "ImGui_ImplVulkanH_Window"
|
||||
@@ -1528,7 +1528,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||
"defaults": {},
|
||||
"destructor": true,
|
||||
"location": "imgui_impl_vulkan:235",
|
||||
"location": "imgui_impl_vulkan:244",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||
"ret": "void",
|
||||
"signature": "(ImGui_ImplVulkanH_Window*)",
|
||||
@@ -1558,7 +1558,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_AddTexture",
|
||||
"location": "imgui_impl_vulkan:143",
|
||||
"location": "imgui_impl_vulkan:152",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||
"ret": "VkDescriptorSet",
|
||||
"signature": "(VkSampler,VkImageView,VkImageLayout)",
|
||||
@@ -1580,7 +1580,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"location": "imgui_impl_vulkan:135",
|
||||
"location": "imgui_impl_vulkan:144",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"ret": "void",
|
||||
"signature": "(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||
@@ -1602,7 +1602,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_Init",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_Init",
|
||||
"location": "imgui_impl_vulkan:126",
|
||||
"location": "imgui_impl_vulkan:135",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_Init",
|
||||
"ret": "bool",
|
||||
"signature": "(ImGui_ImplVulkan_InitInfo*)",
|
||||
@@ -1634,7 +1634,7 @@
|
||||
"user_data": "nullptr"
|
||||
},
|
||||
"funcname": "ImGui_ImplVulkan_LoadFunctions",
|
||||
"location": "imgui_impl_vulkan:148",
|
||||
"location": "imgui_impl_vulkan:157",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_LoadFunctions",
|
||||
"ret": "bool",
|
||||
"signature": "(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||
@@ -1651,7 +1651,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_NewFrame",
|
||||
"location": "imgui_impl_vulkan:128",
|
||||
"location": "imgui_impl_vulkan:137",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -1673,7 +1673,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"location": "imgui_impl_vulkan:144",
|
||||
"location": "imgui_impl_vulkan:153",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"ret": "void",
|
||||
"signature": "(VkDescriptorSet)",
|
||||
@@ -1705,7 +1705,7 @@
|
||||
"pipeline": "0ULL"
|
||||
},
|
||||
"funcname": "ImGui_ImplVulkan_RenderDrawData",
|
||||
"location": "imgui_impl_vulkan:129",
|
||||
"location": "imgui_impl_vulkan:138",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_RenderDrawData",
|
||||
"ret": "void",
|
||||
"signature": "(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||
@@ -1727,7 +1727,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"location": "imgui_impl_vulkan:130",
|
||||
"location": "imgui_impl_vulkan:139",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"ret": "void",
|
||||
"signature": "(uint32_t)",
|
||||
@@ -1744,7 +1744,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_Shutdown",
|
||||
"location": "imgui_impl_vulkan:127",
|
||||
"location": "imgui_impl_vulkan:136",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -1766,7 +1766,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"location": "imgui_impl_vulkan:138",
|
||||
"location": "imgui_impl_vulkan:147",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"ret": "void",
|
||||
"signature": "(ImTextureData*)",
|
||||
|
||||
@@ -1141,7 +1141,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
location="imgui_impl_vulkan:186",
|
||||
location="imgui_impl_vulkan:195",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
ret="void",
|
||||
signature="(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
||||
@@ -1169,7 +1169,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
location="imgui_impl_vulkan:187",
|
||||
location="imgui_impl_vulkan:196",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
ret="void",
|
||||
signature="(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||
@@ -1188,7 +1188,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
location="imgui_impl_vulkan:192",
|
||||
location="imgui_impl_vulkan:201",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
ret="int",
|
||||
signature="(VkPresentModeKHR)",
|
||||
@@ -1207,7 +1207,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
location="imgui_impl_vulkan:190",
|
||||
location="imgui_impl_vulkan:199",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
ret="VkPhysicalDevice",
|
||||
signature="(VkInstance)",
|
||||
@@ -1235,7 +1235,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
location="imgui_impl_vulkan:189",
|
||||
location="imgui_impl_vulkan:198",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
ret="VkPresentModeKHR",
|
||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||
@@ -1254,7 +1254,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
location="imgui_impl_vulkan:191",
|
||||
location="imgui_impl_vulkan:200",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
ret="uint32_t",
|
||||
signature="(VkPhysicalDevice)",
|
||||
@@ -1285,7 +1285,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
location="imgui_impl_vulkan:188",
|
||||
location="imgui_impl_vulkan:197",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
ret="VkSurfaceFormatKHR",
|
||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||
@@ -1302,7 +1302,7 @@ local t={
|
||||
constructor=true,
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_Window",
|
||||
location="imgui_impl_vulkan:235",
|
||||
location="imgui_impl_vulkan:244",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||
signature="()",
|
||||
stname="ImGui_ImplVulkanH_Window"},
|
||||
@@ -1318,7 +1318,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||
defaults={},
|
||||
destructor=true,
|
||||
location="imgui_impl_vulkan:235",
|
||||
location="imgui_impl_vulkan:244",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||
ret="void",
|
||||
signature="(ImGui_ImplVulkanH_Window*)",
|
||||
@@ -1343,7 +1343,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_AddTexture",
|
||||
location="imgui_impl_vulkan:143",
|
||||
location="imgui_impl_vulkan:152",
|
||||
ov_cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||
ret="VkDescriptorSet",
|
||||
signature="(VkSampler,VkImageView,VkImageLayout)",
|
||||
@@ -1362,7 +1362,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
location="imgui_impl_vulkan:135",
|
||||
location="imgui_impl_vulkan:144",
|
||||
ov_cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
ret="void",
|
||||
signature="(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||
@@ -1381,7 +1381,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_Init",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_Init",
|
||||
location="imgui_impl_vulkan:126",
|
||||
location="imgui_impl_vulkan:135",
|
||||
ov_cimguiname="ImGui_ImplVulkan_Init",
|
||||
ret="bool",
|
||||
signature="(ImGui_ImplVulkan_InitInfo*)",
|
||||
@@ -1407,7 +1407,7 @@ local t={
|
||||
defaults={
|
||||
user_data="nullptr"},
|
||||
funcname="ImGui_ImplVulkan_LoadFunctions",
|
||||
location="imgui_impl_vulkan:148",
|
||||
location="imgui_impl_vulkan:157",
|
||||
ov_cimguiname="ImGui_ImplVulkan_LoadFunctions",
|
||||
ret="bool",
|
||||
signature="(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||
@@ -1423,7 +1423,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_NewFrame",
|
||||
location="imgui_impl_vulkan:128",
|
||||
location="imgui_impl_vulkan:137",
|
||||
ov_cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -1442,7 +1442,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_RemoveTexture",
|
||||
location="imgui_impl_vulkan:144",
|
||||
location="imgui_impl_vulkan:153",
|
||||
ov_cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||
ret="void",
|
||||
signature="(VkDescriptorSet)",
|
||||
@@ -1468,7 +1468,7 @@ local t={
|
||||
defaults={
|
||||
pipeline="0ULL"},
|
||||
funcname="ImGui_ImplVulkan_RenderDrawData",
|
||||
location="imgui_impl_vulkan:129",
|
||||
location="imgui_impl_vulkan:138",
|
||||
ov_cimguiname="ImGui_ImplVulkan_RenderDrawData",
|
||||
ret="void",
|
||||
signature="(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||
@@ -1487,7 +1487,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
location="imgui_impl_vulkan:130",
|
||||
location="imgui_impl_vulkan:139",
|
||||
ov_cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
ret="void",
|
||||
signature="(uint32_t)",
|
||||
@@ -1503,7 +1503,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_Shutdown",
|
||||
location="imgui_impl_vulkan:127",
|
||||
location="imgui_impl_vulkan:136",
|
||||
ov_cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -1522,7 +1522,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_UpdateTexture",
|
||||
location="imgui_impl_vulkan:138",
|
||||
location="imgui_impl_vulkan:147",
|
||||
ov_cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||
ret="void",
|
||||
signature="(ImTextureData*)",
|
||||
|
||||
@@ -700,33 +700,38 @@
|
||||
},
|
||||
{
|
||||
"calc_value": 54,
|
||||
"name": "ImGuiCol_UnsavedMarker",
|
||||
"name": "ImGuiCol_DragDropTargetBg",
|
||||
"value": "54"
|
||||
},
|
||||
{
|
||||
"calc_value": 55,
|
||||
"name": "ImGuiCol_NavCursor",
|
||||
"name": "ImGuiCol_UnsavedMarker",
|
||||
"value": "55"
|
||||
},
|
||||
{
|
||||
"calc_value": 56,
|
||||
"name": "ImGuiCol_NavWindowingHighlight",
|
||||
"name": "ImGuiCol_NavCursor",
|
||||
"value": "56"
|
||||
},
|
||||
{
|
||||
"calc_value": 57,
|
||||
"name": "ImGuiCol_NavWindowingDimBg",
|
||||
"name": "ImGuiCol_NavWindowingHighlight",
|
||||
"value": "57"
|
||||
},
|
||||
{
|
||||
"calc_value": 58,
|
||||
"name": "ImGuiCol_ModalWindowDimBg",
|
||||
"name": "ImGuiCol_NavWindowingDimBg",
|
||||
"value": "58"
|
||||
},
|
||||
{
|
||||
"calc_value": 59,
|
||||
"name": "ImGuiCol_COUNT",
|
||||
"name": "ImGuiCol_ModalWindowDimBg",
|
||||
"value": "59"
|
||||
},
|
||||
{
|
||||
"calc_value": 60,
|
||||
"name": "ImGuiCol_COUNT",
|
||||
"value": "60"
|
||||
}
|
||||
],
|
||||
"ImGuiColorEditFlags_": [
|
||||
@@ -1310,6 +1315,11 @@
|
||||
"name": "ImGuiDragDropFlags_AcceptNoPreviewTooltip",
|
||||
"value": "1 << 12"
|
||||
},
|
||||
{
|
||||
"calc_value": 8192,
|
||||
"name": "ImGuiDragDropFlags_AcceptDrawAsHovered",
|
||||
"value": "1 << 13"
|
||||
},
|
||||
{
|
||||
"calc_value": 3072,
|
||||
"name": "ImGuiDragDropFlags_AcceptPeekOnly",
|
||||
@@ -3230,6 +3240,11 @@
|
||||
"calc_value": 65536,
|
||||
"name": "ImGuiMultiSelectFlags_NavWrapX",
|
||||
"value": "1 << 16"
|
||||
},
|
||||
{
|
||||
"calc_value": 131072,
|
||||
"name": "ImGuiMultiSelectFlags_NoSelectOnRightClick",
|
||||
"value": "1 << 17"
|
||||
}
|
||||
],
|
||||
"ImGuiNavLayer": [
|
||||
@@ -4756,6 +4771,18 @@
|
||||
"value": "1 << 2"
|
||||
}
|
||||
],
|
||||
"ImGuiWindowBgClickFlags_": [
|
||||
{
|
||||
"calc_value": 0,
|
||||
"name": "ImGuiWindowBgClickFlags_None",
|
||||
"value": "0"
|
||||
},
|
||||
{
|
||||
"calc_value": 1,
|
||||
"name": "ImGuiWindowBgClickFlags_Move",
|
||||
"value": "1 << 0"
|
||||
}
|
||||
],
|
||||
"ImGuiWindowFlags_": [
|
||||
{
|
||||
"calc_value": 0,
|
||||
@@ -4970,207 +4997,209 @@
|
||||
},
|
||||
"locations": {
|
||||
"ImBitVector": "imgui_internal:652",
|
||||
"ImColor": "imgui:2928",
|
||||
"ImDrawChannel": "imgui:3176",
|
||||
"ImDrawCmd": "imgui:3132",
|
||||
"ImDrawCmdHeader": "imgui:3168",
|
||||
"ImDrawData": "imgui:3397",
|
||||
"ImColor": "imgui:2936",
|
||||
"ImDrawChannel": "imgui:3185",
|
||||
"ImDrawCmd": "imgui:3141",
|
||||
"ImDrawCmdHeader": "imgui:3177",
|
||||
"ImDrawData": "imgui:3406",
|
||||
"ImDrawDataBuilder": "imgui_internal:880",
|
||||
"ImDrawFlags_": "imgui:3201",
|
||||
"ImDrawList": "imgui:3239",
|
||||
"ImDrawListFlags_": "imgui:3221",
|
||||
"ImDrawFlags_": "imgui:3210",
|
||||
"ImDrawList": "imgui:3248",
|
||||
"ImDrawListFlags_": "imgui:3230",
|
||||
"ImDrawListSharedData": "imgui_internal:853",
|
||||
"ImDrawListSplitter": "imgui:3184",
|
||||
"ImDrawListSplitter": "imgui:3193",
|
||||
"ImDrawTextFlags_": "imgui_internal:434",
|
||||
"ImDrawVert": "imgui:3153",
|
||||
"ImFont": "imgui:3818",
|
||||
"ImFontAtlas": "imgui:3621",
|
||||
"ImFontAtlasBuilder": "imgui_internal:3813",
|
||||
"ImFontAtlasFlags_": "imgui:3594",
|
||||
"ImFontAtlasPostProcessData": "imgui_internal:3786",
|
||||
"ImFontAtlasRect": "imgui:3584",
|
||||
"ImFontAtlasRectEntry": "imgui_internal:3778",
|
||||
"ImFontBaked": "imgui:3770",
|
||||
"ImFontConfig": "imgui:3506",
|
||||
"ImFontFlags_": "imgui:3805",
|
||||
"ImFontGlyph": "imgui:3546",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3562",
|
||||
"ImFontLoader": "imgui_internal:3727",
|
||||
"ImDrawVert": "imgui:3162",
|
||||
"ImFont": "imgui:3827",
|
||||
"ImFontAtlas": "imgui:3630",
|
||||
"ImFontAtlasBuilder": "imgui_internal:3833",
|
||||
"ImFontAtlasFlags_": "imgui:3603",
|
||||
"ImFontAtlasPostProcessData": "imgui_internal:3806",
|
||||
"ImFontAtlasRect": "imgui:3593",
|
||||
"ImFontAtlasRectEntry": "imgui_internal:3798",
|
||||
"ImFontBaked": "imgui:3779",
|
||||
"ImFontConfig": "imgui:3515",
|
||||
"ImFontFlags_": "imgui:3814",
|
||||
"ImFontGlyph": "imgui:3555",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3571",
|
||||
"ImFontLoader": "imgui_internal:3747",
|
||||
"ImFontStackData": "imgui_internal:888",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1667",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1674",
|
||||
"ImGuiAxis": "imgui_internal:1138",
|
||||
"ImGuiBackendFlags_": "imgui:1710",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1858",
|
||||
"ImGuiBackendFlags_": "imgui:1715",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1865",
|
||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:1025",
|
||||
"ImGuiButtonFlags_": "imgui:1846",
|
||||
"ImGuiChildFlags_": "imgui:1197",
|
||||
"ImGuiCol_": "imgui:1721",
|
||||
"ImGuiColorEditFlags_": "imgui:1857",
|
||||
"ImGuiButtonFlags_": "imgui:1852",
|
||||
"ImGuiChildFlags_": "imgui:1201",
|
||||
"ImGuiCol_": "imgui:1726",
|
||||
"ImGuiColorEditFlags_": "imgui:1863",
|
||||
"ImGuiColorMod": "imgui_internal:908",
|
||||
"ImGuiComboFlagsPrivate_": "imgui_internal:1052",
|
||||
"ImGuiComboFlags_": "imgui:1362",
|
||||
"ImGuiComboFlags_": "imgui:1366",
|
||||
"ImGuiComboPreviewData": "imgui_internal:1152",
|
||||
"ImGuiCond_": "imgui:1971",
|
||||
"ImGuiConfigFlags_": "imgui:1690",
|
||||
"ImGuiContext": "imgui_internal:2163",
|
||||
"ImGuiContextHook": "imgui_internal:2148",
|
||||
"ImGuiContextHookType": "imgui_internal:2146",
|
||||
"ImGuiCond_": "imgui:1977",
|
||||
"ImGuiConfigFlags_": "imgui:1695",
|
||||
"ImGuiContext": "imgui_internal:2177",
|
||||
"ImGuiContextHook": "imgui_internal:2162",
|
||||
"ImGuiContextHookType": "imgui_internal:2160",
|
||||
"ImGuiDataTypeInfo": "imgui_internal:934",
|
||||
"ImGuiDataTypePrivate_": "imgui_internal:943",
|
||||
"ImGuiDataTypeStorage": "imgui_internal:928",
|
||||
"ImGuiDataType_": "imgui:1496",
|
||||
"ImGuiDeactivatedItemData": "imgui_internal:1435",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2078",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2085",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2056",
|
||||
"ImGuiDir": "imgui:1514",
|
||||
"ImGuiDragDropFlags_": "imgui:1468",
|
||||
"ImGuiErrorRecoveryState": "imgui_internal:1391",
|
||||
"ImGuiDataType_": "imgui:1501",
|
||||
"ImGuiDeactivatedItemData": "imgui_internal:1442",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2085",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2092",
|
||||
"ImGuiDebugItemPathQuery": "imgui_internal:2131",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2063",
|
||||
"ImGuiDir": "imgui:1519",
|
||||
"ImGuiDragDropFlags_": "imgui:1472",
|
||||
"ImGuiErrorRecoveryState": "imgui_internal:1398",
|
||||
"ImGuiFocusRequestFlags_": "imgui_internal:1098",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1755",
|
||||
"ImGuiFocusedFlags_": "imgui:1416",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1762",
|
||||
"ImGuiFocusedFlags_": "imgui:1420",
|
||||
"ImGuiFreeTypeLoaderFlags_": "imgui_freetype:29",
|
||||
"ImGuiGroupData": "imgui_internal:1165",
|
||||
"ImGuiHoveredFlagsPrivate_": "imgui_internal:1008",
|
||||
"ImGuiHoveredFlags_": "imgui:1430",
|
||||
"ImGuiIDStackTool": "imgui_internal:2125",
|
||||
"ImGuiIO": "imgui:2370",
|
||||
"ImGuiInputEvent": "imgui_internal:1528",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1526",
|
||||
"ImGuiInputEventKey": "imgui_internal:1524",
|
||||
"ImGuiInputEventMouseButton": "imgui_internal:1523",
|
||||
"ImGuiInputEventMousePos": "imgui_internal:1521",
|
||||
"ImGuiInputEventMouseWheel": "imgui_internal:1522",
|
||||
"ImGuiInputEventText": "imgui_internal:1525",
|
||||
"ImGuiInputEventType": "imgui_internal:1498",
|
||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1594",
|
||||
"ImGuiInputFlags_": "imgui:1667",
|
||||
"ImGuiInputSource": "imgui_internal:1510",
|
||||
"ImGuiInputTextCallbackData": "imgui:2612",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1201",
|
||||
"ImGuiHoveredFlags_": "imgui:1434",
|
||||
"ImGuiIDStackTool": "imgui_internal:2145",
|
||||
"ImGuiIO": "imgui:2379",
|
||||
"ImGuiInputEvent": "imgui_internal:1535",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1533",
|
||||
"ImGuiInputEventKey": "imgui_internal:1531",
|
||||
"ImGuiInputEventMouseButton": "imgui_internal:1530",
|
||||
"ImGuiInputEventMousePos": "imgui_internal:1528",
|
||||
"ImGuiInputEventMouseWheel": "imgui_internal:1529",
|
||||
"ImGuiInputEventText": "imgui_internal:1532",
|
||||
"ImGuiInputEventType": "imgui_internal:1505",
|
||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1601",
|
||||
"ImGuiInputFlags_": "imgui:1672",
|
||||
"ImGuiInputSource": "imgui_internal:1517",
|
||||
"ImGuiInputTextCallbackData": "imgui:2620",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1202",
|
||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:1016",
|
||||
"ImGuiInputTextFlags_": "imgui:1231",
|
||||
"ImGuiInputTextState": "imgui_internal:1223",
|
||||
"ImGuiInputTextFlags_": "imgui:1235",
|
||||
"ImGuiInputTextState": "imgui_internal:1224",
|
||||
"ImGuiItemFlagsPrivate_": "imgui_internal:956",
|
||||
"ImGuiItemFlags_": "imgui:1218",
|
||||
"ImGuiItemFlags_": "imgui:1222",
|
||||
"ImGuiItemStatusFlags_": "imgui_internal:981",
|
||||
"ImGuiKey": "imgui:1538",
|
||||
"ImGuiKeyData": "imgui:2362",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1581",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1555",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1569",
|
||||
"ImGuiLastItemData": "imgui_internal:1360",
|
||||
"ImGuiKey": "imgui:1543",
|
||||
"ImGuiKeyData": "imgui:2371",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1588",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1562",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1576",
|
||||
"ImGuiLastItemData": "imgui_internal:1367",
|
||||
"ImGuiLayoutType_": "imgui_internal:1119",
|
||||
"ImGuiListClipper": "imgui:2827",
|
||||
"ImGuiListClipperData": "imgui_internal:1651",
|
||||
"ImGuiListClipperFlags_": "imgui:2801",
|
||||
"ImGuiListClipperRange": "imgui_internal:1638",
|
||||
"ImGuiLocEntry": "imgui_internal:2029",
|
||||
"ImGuiLocKey": "imgui_internal:2014",
|
||||
"ImGuiListClipper": "imgui:2835",
|
||||
"ImGuiListClipperData": "imgui_internal:1658",
|
||||
"ImGuiListClipperFlags_": "imgui:2809",
|
||||
"ImGuiListClipperRange": "imgui_internal:1645",
|
||||
"ImGuiLocEntry": "imgui_internal:2036",
|
||||
"ImGuiLocKey": "imgui_internal:2021",
|
||||
"ImGuiLogFlags_": "imgui_internal:1126",
|
||||
"ImGuiMenuColumns": "imgui_internal:1183",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2095",
|
||||
"ImGuiMouseButton_": "imgui:1929",
|
||||
"ImGuiMouseCursor_": "imgui:1939",
|
||||
"ImGuiMouseSource": "imgui:1960",
|
||||
"ImGuiMultiSelectFlags_": "imgui:2986",
|
||||
"ImGuiMultiSelectIO": "imgui:3013",
|
||||
"ImGuiMultiSelectState": "imgui_internal:1915",
|
||||
"ImGuiMultiSelectTempData": "imgui_internal:1890",
|
||||
"ImGuiNavItemData": "imgui_internal:1738",
|
||||
"ImGuiNavLayer": "imgui_internal:1730",
|
||||
"ImGuiNavMoveFlags_": "imgui_internal:1708",
|
||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1693",
|
||||
"ImGuiNextItemData": "imgui_internal:1339",
|
||||
"ImGuiNextItemDataFlags_": "imgui_internal:1329",
|
||||
"ImGuiNextWindowData": "imgui_internal:1302",
|
||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1285",
|
||||
"ImGuiOldColumnData": "imgui_internal:1823",
|
||||
"ImGuiOldColumnFlags_": "imgui_internal:1803",
|
||||
"ImGuiOldColumns": "imgui_internal:1833",
|
||||
"ImGuiOnceUponAFrame": "imgui:2690",
|
||||
"ImGuiPayload": "imgui:2655",
|
||||
"ImGuiPlatformIO": "imgui:3929",
|
||||
"ImGuiPlatformImeData": "imgui:3986",
|
||||
"ImGuiMenuColumns": "imgui_internal:1184",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2102",
|
||||
"ImGuiMouseButton_": "imgui:1935",
|
||||
"ImGuiMouseCursor_": "imgui:1945",
|
||||
"ImGuiMouseSource": "imgui:1966",
|
||||
"ImGuiMultiSelectFlags_": "imgui:2994",
|
||||
"ImGuiMultiSelectIO": "imgui:3022",
|
||||
"ImGuiMultiSelectState": "imgui_internal:1922",
|
||||
"ImGuiMultiSelectTempData": "imgui_internal:1897",
|
||||
"ImGuiNavItemData": "imgui_internal:1745",
|
||||
"ImGuiNavLayer": "imgui_internal:1737",
|
||||
"ImGuiNavMoveFlags_": "imgui_internal:1715",
|
||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1700",
|
||||
"ImGuiNextItemData": "imgui_internal:1346",
|
||||
"ImGuiNextItemDataFlags_": "imgui_internal:1336",
|
||||
"ImGuiNextWindowData": "imgui_internal:1309",
|
||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1292",
|
||||
"ImGuiOldColumnData": "imgui_internal:1830",
|
||||
"ImGuiOldColumnFlags_": "imgui_internal:1810",
|
||||
"ImGuiOldColumns": "imgui_internal:1840",
|
||||
"ImGuiOnceUponAFrame": "imgui:2698",
|
||||
"ImGuiPayload": "imgui:2663",
|
||||
"ImGuiPlatformIO": "imgui:3938",
|
||||
"ImGuiPlatformImeData": "imgui:3995",
|
||||
"ImGuiPlotType": "imgui_internal:1145",
|
||||
"ImGuiPopupData": "imgui_internal:1455",
|
||||
"ImGuiPopupFlags_": "imgui:1326",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1447",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1425",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1679",
|
||||
"ImGuiPopupData": "imgui_internal:1462",
|
||||
"ImGuiPopupFlags_": "imgui:1330",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1454",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1432",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1686",
|
||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:1065",
|
||||
"ImGuiSelectableFlags_": "imgui:1344",
|
||||
"ImGuiSelectionBasicStorage": "imgui:3059",
|
||||
"ImGuiSelectionExternalStorage": "imgui:3082",
|
||||
"ImGuiSelectionRequest": "imgui:3033",
|
||||
"ImGuiSelectionRequestType": "imgui:3025",
|
||||
"ImGuiSelectableFlags_": "imgui:1348",
|
||||
"ImGuiSelectionBasicStorage": "imgui:3068",
|
||||
"ImGuiSelectionExternalStorage": "imgui:3091",
|
||||
"ImGuiSelectionRequest": "imgui:3042",
|
||||
"ImGuiSelectionRequestType": "imgui:3034",
|
||||
"ImGuiSeparatorFlags_": "imgui_internal:1087",
|
||||
"ImGuiSettingsHandler": "imgui_internal:1994",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1418",
|
||||
"ImGuiSizeCallbackData": "imgui:2646",
|
||||
"ImGuiSettingsHandler": "imgui_internal:2001",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1425",
|
||||
"ImGuiSizeCallbackData": "imgui:2654",
|
||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:1058",
|
||||
"ImGuiSliderFlags_": "imgui:1913",
|
||||
"ImGuiSortDirection": "imgui:1525",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2113",
|
||||
"ImGuiStorage": "imgui:2763",
|
||||
"ImGuiStoragePair": "imgui:2746",
|
||||
"ImGuiStyle": "imgui:2258",
|
||||
"ImGuiSliderFlags_": "imgui:1919",
|
||||
"ImGuiSortDirection": "imgui:1530",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2120",
|
||||
"ImGuiStorage": "imgui:2771",
|
||||
"ImGuiStoragePair": "imgui:2754",
|
||||
"ImGuiStyle": "imgui:2264",
|
||||
"ImGuiStyleMod": "imgui_internal:915",
|
||||
"ImGuiStyleVarInfo": "imgui_internal:899",
|
||||
"ImGuiStyleVar_": "imgui:1800",
|
||||
"ImGuiTabBar": "imgui_internal:2776",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2739",
|
||||
"ImGuiTabBarFlags_": "imgui:1377",
|
||||
"ImGuiTabItem": "imgui_internal:2757",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2747",
|
||||
"ImGuiTabItemFlags_": "imgui:1401",
|
||||
"ImGuiTable": "imgui_internal:2921",
|
||||
"ImGuiTableBgTarget_": "imgui:2112",
|
||||
"ImGuiTableCellData": "imgui_internal:2889",
|
||||
"ImGuiTableColumn": "imgui_internal:2829",
|
||||
"ImGuiTableColumnFlags_": "imgui:2059",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3069",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:2134",
|
||||
"ImGuiTableFlags_": "imgui:2006",
|
||||
"ImGuiTableHeaderData": "imgui_internal:2898",
|
||||
"ImGuiTableInstanceData": "imgui_internal:2908",
|
||||
"ImGuiTableRowFlags_": "imgui:2097",
|
||||
"ImGuiTableSettings": "imgui_internal:3093",
|
||||
"ImGuiTableSortSpecs": "imgui:2124",
|
||||
"ImGuiTableTempData": "imgui_internal:3046",
|
||||
"ImGuiTextBuffer": "imgui:2725",
|
||||
"ImGuiTextFilter": "imgui:2698",
|
||||
"ImGuiStyleVar_": "imgui:1806",
|
||||
"ImGuiTabBar": "imgui_internal:2794",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2757",
|
||||
"ImGuiTabBarFlags_": "imgui:1381",
|
||||
"ImGuiTabItem": "imgui_internal:2775",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2765",
|
||||
"ImGuiTabItemFlags_": "imgui:1405",
|
||||
"ImGuiTable": "imgui_internal:2939",
|
||||
"ImGuiTableBgTarget_": "imgui:2118",
|
||||
"ImGuiTableCellData": "imgui_internal:2907",
|
||||
"ImGuiTableColumn": "imgui_internal:2847",
|
||||
"ImGuiTableColumnFlags_": "imgui:2065",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3088",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:2140",
|
||||
"ImGuiTableFlags_": "imgui:2012",
|
||||
"ImGuiTableHeaderData": "imgui_internal:2916",
|
||||
"ImGuiTableInstanceData": "imgui_internal:2926",
|
||||
"ImGuiTableRowFlags_": "imgui:2103",
|
||||
"ImGuiTableSettings": "imgui_internal:3112",
|
||||
"ImGuiTableSortSpecs": "imgui:2130",
|
||||
"ImGuiTableTempData": "imgui_internal:3064",
|
||||
"ImGuiTextBuffer": "imgui:2733",
|
||||
"ImGuiTextFilter": "imgui:2706",
|
||||
"ImGuiTextFlags_": "imgui_internal:1105",
|
||||
"ImGuiTextIndex": "imgui_internal:805",
|
||||
"ImGuiTextRange": "imgui:2708",
|
||||
"ImGuiTextRange": "imgui:2716",
|
||||
"ImGuiTooltipFlags_": "imgui_internal:1111",
|
||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1078",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1282",
|
||||
"ImGuiTreeNodeStackData": "imgui_internal:1379",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1766",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1774",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1785",
|
||||
"ImGuiViewport": "imgui:3903",
|
||||
"ImGuiViewportFlags_": "imgui:3888",
|
||||
"ImGuiViewportP": "imgui_internal:1943",
|
||||
"ImGuiWindow": "imgui_internal:2604",
|
||||
"ImGuiWindowFlags_": "imgui:1148",
|
||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1276",
|
||||
"ImGuiWindowSettings": "imgui_internal:1980",
|
||||
"ImGuiWindowStackData": "imgui_internal:1409",
|
||||
"ImGuiWindowTempData": "imgui_internal:2551",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1286",
|
||||
"ImGuiTreeNodeStackData": "imgui_internal:1386",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1773",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1781",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1792",
|
||||
"ImGuiViewport": "imgui:3912",
|
||||
"ImGuiViewportFlags_": "imgui:3897",
|
||||
"ImGuiViewportP": "imgui_internal:1950",
|
||||
"ImGuiWindow": "imgui_internal:2621",
|
||||
"ImGuiWindowBgClickFlags_": "imgui_internal:1286",
|
||||
"ImGuiWindowFlags_": "imgui:1152",
|
||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1277",
|
||||
"ImGuiWindowSettings": "imgui_internal:1987",
|
||||
"ImGuiWindowStackData": "imgui_internal:1416",
|
||||
"ImGuiWindowTempData": "imgui_internal:2568",
|
||||
"ImRect": "imgui_internal:573",
|
||||
"ImTextureData": "imgui:3462",
|
||||
"ImTextureFormat": "imgui:3430",
|
||||
"ImTextureRect": "imgui:3449",
|
||||
"ImTextureRef": "imgui:361",
|
||||
"ImTextureStatus": "imgui:3437",
|
||||
"ImTextureData": "imgui:3471",
|
||||
"ImTextureFormat": "imgui:3439",
|
||||
"ImTextureRect": "imgui:3458",
|
||||
"ImTextureRef": "imgui:365",
|
||||
"ImTextureStatus": "imgui:3446",
|
||||
"ImVec1": "imgui_internal:547",
|
||||
"ImVec2": "imgui:291",
|
||||
"ImVec2": "imgui:295",
|
||||
"ImVec2i": "imgui_internal:555",
|
||||
"ImVec2ih": "imgui_internal:563",
|
||||
"ImVec4": "imgui:304",
|
||||
"stbrp_context_opaque": "imgui_internal:3810"
|
||||
"ImVec4": "imgui:308",
|
||||
"stbrp_context_opaque": "imgui_internal:3830"
|
||||
},
|
||||
"nonPOD": {
|
||||
"ImBitArray": true,
|
||||
@@ -5195,6 +5224,7 @@
|
||||
"ImGuiContext": true,
|
||||
"ImGuiContextHook": true,
|
||||
"ImGuiDebugAllocInfo": true,
|
||||
"ImGuiDebugItemPathQuery": true,
|
||||
"ImGuiErrorRecoveryState": true,
|
||||
"ImGuiIDStackTool": true,
|
||||
"ImGuiIO": true,
|
||||
@@ -5261,6 +5291,14 @@
|
||||
"ImVec4": true,
|
||||
"ImVector": true
|
||||
},
|
||||
"nonPOD_used": {
|
||||
"ImColor": true,
|
||||
"ImRect": true,
|
||||
"ImTextureRef": true,
|
||||
"ImVec2": true,
|
||||
"ImVec2i": true,
|
||||
"ImVec4": true
|
||||
},
|
||||
"structs": {
|
||||
"ImBitVector": [
|
||||
{
|
||||
@@ -5578,7 +5616,7 @@
|
||||
"type": "ImFontBaked*"
|
||||
},
|
||||
{
|
||||
"name": "ContainerAtlas",
|
||||
"name": "OwnerAtlas",
|
||||
"type": "ImFontAtlas*"
|
||||
},
|
||||
{
|
||||
@@ -5992,7 +6030,7 @@
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "ContainerFont",
|
||||
"name": "OwnerFont",
|
||||
"type": "ImFont*"
|
||||
},
|
||||
{
|
||||
@@ -6332,6 +6370,39 @@
|
||||
"name": "Initialized",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "WithinFrameScope",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "WithinFrameScopeWithImplicitWindow",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "TestEngineHookItems",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "FrameCount",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "FrameCountEnded",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "FrameCountRendered",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "Time",
|
||||
"type": "double"
|
||||
},
|
||||
{
|
||||
"name": "ContextName[16]",
|
||||
"size": 16,
|
||||
"type": "char"
|
||||
},
|
||||
{
|
||||
"name": "IO",
|
||||
"type": "ImGuiIO"
|
||||
@@ -6381,51 +6452,14 @@
|
||||
"name": "DrawListSharedData",
|
||||
"type": "ImDrawListSharedData"
|
||||
},
|
||||
{
|
||||
"name": "Time",
|
||||
"type": "double"
|
||||
},
|
||||
{
|
||||
"name": "FrameCount",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "FrameCountEnded",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "FrameCountRendered",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "WithinEndChildID",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "WithinFrameScope",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "WithinFrameScopeWithImplicitWindow",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "GcCompactAll",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "TestEngineHookItems",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "TestEngine",
|
||||
"type": "void*"
|
||||
},
|
||||
{
|
||||
"name": "ContextName[16]",
|
||||
"size": 16,
|
||||
"type": "char"
|
||||
},
|
||||
{
|
||||
"name": "InputEventsQueue",
|
||||
"template_type": "ImGuiInputEvent",
|
||||
@@ -6609,26 +6643,25 @@
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "ActiveIdDisabledId",
|
||||
"type": "ImGuiID"
|
||||
"name": "ActiveIdMouseButton",
|
||||
"type": "ImS8"
|
||||
},
|
||||
{
|
||||
"bitfield": "8",
|
||||
"name": "ActiveIdMouseButton",
|
||||
"type": "int"
|
||||
"name": "ActiveIdDisabledId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "ActiveIdClickOffset",
|
||||
"type": "ImVec2"
|
||||
},
|
||||
{
|
||||
"name": "ActiveIdWindow",
|
||||
"type": "ImGuiWindow*"
|
||||
},
|
||||
{
|
||||
"name": "ActiveIdSource",
|
||||
"type": "ImGuiInputSource"
|
||||
},
|
||||
{
|
||||
"name": "ActiveIdWindow",
|
||||
"type": "ImGuiWindow*"
|
||||
},
|
||||
{
|
||||
"name": "ActiveIdPreviousFrame",
|
||||
"type": "ImGuiID"
|
||||
@@ -6714,6 +6747,10 @@
|
||||
"name": "DebugShowGroupRects",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "GcCompactAll",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "DebugFlashStyleColorIdx",
|
||||
"type": "ImGuiCol"
|
||||
@@ -7062,7 +7099,11 @@
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "DragDropAcceptFlags",
|
||||
"name": "DragDropAcceptFlagsCurr",
|
||||
"type": "ImGuiDragDropFlags"
|
||||
},
|
||||
{
|
||||
"name": "DragDropAcceptFlagsPrev",
|
||||
"type": "ImGuiDragDropFlags"
|
||||
},
|
||||
{
|
||||
@@ -7409,6 +7450,10 @@
|
||||
"name": "LogEnabled",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "LogLineFirstItem",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "LogFlags",
|
||||
"type": "ImGuiLogFlags"
|
||||
@@ -7437,10 +7482,6 @@
|
||||
"name": "LogLinePosY",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "LogLineFirstItem",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "LogDepthRef",
|
||||
"type": "int"
|
||||
@@ -7549,6 +7590,10 @@
|
||||
"name": "DebugMetricsConfig",
|
||||
"type": "ImGuiMetricsConfig"
|
||||
},
|
||||
{
|
||||
"name": "DebugItemPathQuery",
|
||||
"type": "ImGuiDebugItemPathQuery"
|
||||
},
|
||||
{
|
||||
"name": "DebugIDStackTool",
|
||||
"type": "ImGuiIDStackTool"
|
||||
@@ -7695,6 +7740,37 @@
|
||||
"type": "ImGuiDebugAllocEntry"
|
||||
}
|
||||
],
|
||||
"ImGuiDebugItemPathQuery": [
|
||||
{
|
||||
"name": "MainID",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "Active",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "Complete",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "Step",
|
||||
"type": "ImS8"
|
||||
},
|
||||
{
|
||||
"name": "Results",
|
||||
"template_type": "ImGuiStackLevelInfo",
|
||||
"type": "ImVector_ImGuiStackLevelInfo"
|
||||
},
|
||||
{
|
||||
"name": "ResultsDescBuf",
|
||||
"type": "ImGuiTextBuffer"
|
||||
},
|
||||
{
|
||||
"name": "ResultPathBuf",
|
||||
"type": "ImGuiTextBuffer"
|
||||
}
|
||||
],
|
||||
"ImGuiErrorRecoveryState": [
|
||||
{
|
||||
"name": "SizeOfWindowStack",
|
||||
@@ -7788,6 +7864,10 @@
|
||||
"name": "BackupActiveIdIsAlive",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "BackupActiveIdHasBeenEditedThisFrame",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "BackupDeactivatedIdIsAlive",
|
||||
"type": "bool"
|
||||
@@ -7806,27 +7886,6 @@
|
||||
}
|
||||
],
|
||||
"ImGuiIDStackTool": [
|
||||
{
|
||||
"name": "LastActiveFrame",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "StackLevel",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "QueryMainId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "Results",
|
||||
"template_type": "ImGuiStackLevelInfo",
|
||||
"type": "ImVector_ImGuiStackLevelInfo"
|
||||
},
|
||||
{
|
||||
"name": "QueryHookActive",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "OptHexEncodeNonAsciiChars",
|
||||
"type": "bool"
|
||||
@@ -7835,17 +7894,13 @@
|
||||
"name": "OptCopyToClipboardOnCtrlC",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "LastActiveFrame",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "CopyToClipboardLastTime",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ResultPathsBuf",
|
||||
"type": "ImGuiTextBuffer"
|
||||
},
|
||||
{
|
||||
"name": "ResultTempBuf",
|
||||
"type": "ImGuiTextBuffer"
|
||||
}
|
||||
],
|
||||
"ImGuiIO": [
|
||||
@@ -9685,6 +9740,18 @@
|
||||
"name": "TreeLinesRounding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "DragDropTargetRounding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "DragDropTargetBorderSize",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "DragDropTargetPadding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ColorButtonPosition",
|
||||
"type": "ImGuiDir"
|
||||
@@ -9743,7 +9810,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Colors[ImGuiCol_COUNT]",
|
||||
"size": 59,
|
||||
"size": 60,
|
||||
"type": "ImVec4"
|
||||
},
|
||||
{
|
||||
@@ -10784,6 +10851,10 @@
|
||||
}
|
||||
],
|
||||
"ImGuiTableTempData": [
|
||||
{
|
||||
"name": "WindowID",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "TableIndex",
|
||||
"type": "int"
|
||||
@@ -11272,6 +11343,10 @@
|
||||
"name": "FocusOrder",
|
||||
"type": "short"
|
||||
},
|
||||
{
|
||||
"name": "AutoPosLastDirection",
|
||||
"type": "ImGuiDir"
|
||||
},
|
||||
{
|
||||
"name": "AutoFitFramesX",
|
||||
"type": "ImS8"
|
||||
@@ -11284,10 +11359,6 @@
|
||||
"name": "AutoFitOnlyGrows",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "AutoPosLastDirection",
|
||||
"type": "ImGuiDir"
|
||||
},
|
||||
{
|
||||
"name": "HiddenFramesCanSkipItems",
|
||||
"type": "ImS8"
|
||||
@@ -11304,6 +11375,11 @@
|
||||
"name": "DisableInputsFrames",
|
||||
"type": "ImS8"
|
||||
},
|
||||
{
|
||||
"bitfield": "8",
|
||||
"name": "BgClickFlags",
|
||||
"type": "ImGuiWindowBgClickFlags"
|
||||
},
|
||||
{
|
||||
"bitfield": "8",
|
||||
"name": "SetWindowPosAllowFlags",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -54,6 +54,7 @@
|
||||
"ImGuiDeactivatedItemData": "struct ImGuiDeactivatedItemData",
|
||||
"ImGuiDebugAllocEntry": "struct ImGuiDebugAllocEntry",
|
||||
"ImGuiDebugAllocInfo": "struct ImGuiDebugAllocInfo",
|
||||
"ImGuiDebugItemPathQuery": "struct ImGuiDebugItemPathQuery",
|
||||
"ImGuiDebugLogFlags": "int",
|
||||
"ImGuiDragDropFlags": "int",
|
||||
"ImGuiErrorCallback": "void (*)(ImGuiContext* ctx, void* user_data, const char* msg);",
|
||||
@@ -179,6 +180,7 @@
|
||||
"ImGuiViewportFlags": "int",
|
||||
"ImGuiViewportP": "struct ImGuiViewportP",
|
||||
"ImGuiWindow": "struct ImGuiWindow",
|
||||
"ImGuiWindowBgClickFlags": "int",
|
||||
"ImGuiWindowFlags": "int",
|
||||
"ImGuiWindowRefreshFlags": "int",
|
||||
"ImGuiWindowSettings": "struct ImGuiWindowSettings",
|
||||
|
||||
@@ -54,6 +54,7 @@ local t={
|
||||
ImGuiDeactivatedItemData="struct ImGuiDeactivatedItemData",
|
||||
ImGuiDebugAllocEntry="struct ImGuiDebugAllocEntry",
|
||||
ImGuiDebugAllocInfo="struct ImGuiDebugAllocInfo",
|
||||
ImGuiDebugItemPathQuery="struct ImGuiDebugItemPathQuery",
|
||||
ImGuiDebugLogFlags="int",
|
||||
ImGuiDragDropFlags="int",
|
||||
ImGuiErrorCallback="void (*)(ImGuiContext* ctx, void* user_data, const char* msg);",
|
||||
@@ -179,6 +180,7 @@ local t={
|
||||
ImGuiViewportFlags="int",
|
||||
ImGuiViewportP="struct ImGuiViewportP",
|
||||
ImGuiWindow="struct ImGuiWindow",
|
||||
ImGuiWindowBgClickFlags="int",
|
||||
ImGuiWindowFlags="int",
|
||||
ImGuiWindowRefreshFlags="int",
|
||||
ImGuiWindowSettings="struct ImGuiWindowSettings",
|
||||
|
||||
2
imgui
2
imgui
Submodule imgui updated: 9a5d5c45f5...6d910d5487
Reference in New Issue
Block a user