mirror of
https://github.com/cimgui/cimgui.git
synced 2026-03-21 21:41:17 +00:00
Compare commits
7 Commits
1.94.2dock
...
a890b9f594
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a890b9f594 | ||
|
|
c56d1668b1 | ||
|
|
9dd992c22b | ||
|
|
d94ad1b162 | ||
|
|
c9f0e06eb2 | ||
|
|
899049782b | ||
|
|
305d1040fb |
@@ -17,9 +17,9 @@ Notes:
|
||||
* All naming is algorithmic except for those names that were coded in cimgui_overloads table (https://github.com/cimgui/cimgui/blob/master/generator/generator.lua#L60). In the official version this table is empty.
|
||||
* Current overloaded function names can be found in (https://github.com/cimgui/cimgui/blob/master/generator/output/overloads.txt)
|
||||
|
||||
#changes
|
||||
# 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
|
||||
|
||||
@@ -41,7 +41,7 @@ Notes:
|
||||
* you will need LuaJIT (https://github.com/LuaJIT/LuaJIT.git better 2.1 branch) or precompiled for linux/macOS/windows in https://luapower.com/luajit/download
|
||||
* you need to use also a C++ compiler for doing preprocessing: gcc (In windows MinGW-W64-builds for example), clang or cl (MSVC). (this repo was done with gcc)
|
||||
* update `imgui` folder to the version you desire.
|
||||
* edit `generator/generator.bat` on windows, or `generator/generator.sh` on linux, to choose between gcc, clang, or cl and to choose desired backends and whether imgui_internal is generated or not, comments are generated or not and if constructors are generated also with versions performing just initialization of structs provided by yourself (_Construct is added to the constructor names)
|
||||
* edit `generator/generator.bat` on windows, or `generator/generator.sh` on linux, to choose between gcc, clang, or cl and to choose desired backends and whether imgui_internal is generated or not, comments are generated or not and if constructors are generated also with versions performing just initialization of structs provided by yourself (uses IM_PLACEMENT_NEW and _Construct is added to the constructor names)
|
||||
* the defaults of generator are gcc as compiler, imgui_internal included and sdl, glfw, vulkan, opengl2 and opengl3 as backends.
|
||||
* edit config_generator.lua for adding includes needed by your chosen backends (vulkan needs that).
|
||||
* Run generator.bat or generator.sh with gcc, clang or cl and LuaJIT on your PATH.
|
||||
@@ -70,7 +70,7 @@ Notes:
|
||||
* manual : will be true if this function is hand-written (not generated)
|
||||
* skipped : will be true if this function is not generated (and not hand-written)
|
||||
* isvararg : is set if some argument is a vararg
|
||||
* constructor : is set if the function is a constructor for a class.
|
||||
* constructor : is set if the function is a constructor for a class. (another destructor function with _destroy postfix will be created)
|
||||
* destructor : is set if the function is a destructor for a class but not just a default destructor.
|
||||
* realdestructor : is set if the function is a destructor for a class
|
||||
* templated : is set if the function belongs to a templated class (ImVector)
|
||||
@@ -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`
|
||||
|
||||
30
cimgui.cpp
30
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
|
||||
//docking branch
|
||||
@@ -1911,9 +1911,9 @@ CIMGUI_API void igDestroyPlatformWindows()
|
||||
{
|
||||
return ImGui::DestroyPlatformWindows();
|
||||
}
|
||||
CIMGUI_API ImGuiViewport* igFindViewportByID(ImGuiID id)
|
||||
CIMGUI_API ImGuiViewport* igFindViewportByID(ImGuiID viewport_id)
|
||||
{
|
||||
return ImGui::FindViewportByID(id);
|
||||
return ImGui::FindViewportByID(viewport_id);
|
||||
}
|
||||
CIMGUI_API ImGuiViewport* igFindViewportByPlatformHandle(void* platform_handle)
|
||||
{
|
||||
@@ -3222,9 +3222,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)
|
||||
{
|
||||
@@ -4154,6 +4158,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)();
|
||||
@@ -4326,6 +4338,10 @@ CIMGUI_API bool igIsWindowChildOf(ImGuiWindow* window,ImGuiWindow* potential_par
|
||||
{
|
||||
return ImGui::IsWindowChildOf(window,potential_parent,popup_hierarchy,dock_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);
|
||||
@@ -6211,6 +6227,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);
|
||||
|
||||
84
cimgui.h
84
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
|
||||
//docking branch
|
||||
@@ -495,6 +495,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 {
|
||||
@@ -786,6 +787,7 @@ typedef enum {
|
||||
ImGuiCol_TextSelectedBg,
|
||||
ImGuiCol_TreeLines,
|
||||
ImGuiCol_DragDropTarget,
|
||||
ImGuiCol_DragDropTargetBg,
|
||||
ImGuiCol_UnsavedMarker,
|
||||
ImGuiCol_NavCursor,
|
||||
ImGuiCol_NavWindowingHighlight,
|
||||
@@ -1062,6 +1064,9 @@ struct ImGuiStyle
|
||||
ImGuiTreeNodeFlags TreeLinesFlags;
|
||||
float TreeLinesSize;
|
||||
float TreeLinesRounding;
|
||||
float DragDropTargetRounding;
|
||||
float DragDropTargetBorderSize;
|
||||
float DragDropTargetPadding;
|
||||
ImGuiDir ColorButtonPosition;
|
||||
ImVec2_c ButtonTextAlign;
|
||||
ImVec2_c SelectableTextAlign;
|
||||
@@ -1118,6 +1123,7 @@ struct ImGuiIO
|
||||
bool ConfigNavCursorVisibleAuto;
|
||||
bool ConfigNavCursorVisibleAlways;
|
||||
bool ConfigDockingNoSplit;
|
||||
bool ConfigDockingNoDockingOver;
|
||||
bool ConfigDockingWithShift;
|
||||
bool ConfigDockingAlwaysTabBar;
|
||||
bool ConfigDockingTransparentPayload;
|
||||
@@ -1331,6 +1337,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;
|
||||
|
||||
@@ -1639,7 +1646,7 @@ struct ImFontBaked
|
||||
unsigned int LoadNoRenderOnLayout:1;
|
||||
int LastUsedFrame;
|
||||
ImGuiID BakedId;
|
||||
ImFont* ContainerFont;
|
||||
ImFont* OwnerFont;
|
||||
void* FontLoaderDatas;
|
||||
};
|
||||
typedef enum {
|
||||
@@ -1653,7 +1660,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;
|
||||
@@ -1836,6 +1843,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;
|
||||
@@ -2086,6 +2094,7 @@ struct ImGuiGroupData
|
||||
ImVec2_c BackupCurrLineSize;
|
||||
float BackupCurrLineTextBaseOffset;
|
||||
ImGuiID BackupActiveIdIsAlive;
|
||||
bool BackupActiveIdHasBeenEditedThisFrame;
|
||||
bool BackupDeactivatedIdIsAlive;
|
||||
bool BackupHoveredIdIsAlive;
|
||||
bool BackupIsSameLine;
|
||||
@@ -2140,6 +2149,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,
|
||||
@@ -2689,6 +2702,7 @@ typedef enum {
|
||||
ImGuiWindowDockStyleCol_TabDimmed,
|
||||
ImGuiWindowDockStyleCol_TabDimmedSelected,
|
||||
ImGuiWindowDockStyleCol_TabDimmedSelectedOverline,
|
||||
ImGuiWindowDockStyleCol_UnsavedMarker,
|
||||
ImGuiWindowDockStyleCol_COUNT
|
||||
}ImGuiWindowDockStyleCol;
|
||||
struct ImGuiWindowDockStyle
|
||||
@@ -2842,21 +2856,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;
|
||||
@@ -2929,6 +2948,15 @@ typedef struct ImVector_ImGuiContextHook {int Size;int Capacity;ImGuiContextHook
|
||||
struct ImGuiContext
|
||||
{
|
||||
bool Initialized;
|
||||
bool WithinFrameScope;
|
||||
bool WithinFrameScopeWithImplicitWindow;
|
||||
bool TestEngineHookItems;
|
||||
int FrameCount;
|
||||
int FrameCountEnded;
|
||||
int FrameCountPlatformEnded;
|
||||
int FrameCountRendered;
|
||||
double Time;
|
||||
char ContextName[16];
|
||||
ImGuiIO IO;
|
||||
ImGuiPlatformIO PlatformIO;
|
||||
ImGuiStyle Style;
|
||||
@@ -2943,18 +2971,8 @@ struct ImGuiContext
|
||||
float FontRasterizerDensity;
|
||||
float CurrentDpiScale;
|
||||
ImDrawListSharedData DrawListSharedData;
|
||||
double Time;
|
||||
int FrameCount;
|
||||
int FrameCountEnded;
|
||||
int FrameCountPlatformEnded;
|
||||
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;
|
||||
@@ -2999,11 +3017,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;
|
||||
@@ -3025,6 +3043,7 @@ struct ImGuiContext
|
||||
ImGuiLastItemData LastItemData;
|
||||
ImGuiNextWindowData NextWindowData;
|
||||
bool DebugShowGroupRects;
|
||||
bool GcCompactAll;
|
||||
ImGuiCol DebugFlashStyleColorIdx;
|
||||
ImVector_ImGuiColorMod ColorStack;
|
||||
ImVector_ImGuiStyleMod StyleVarStack;
|
||||
@@ -3118,7 +3137,8 @@ struct ImGuiContext
|
||||
ImRect_c DragDropTargetClipRect;
|
||||
ImGuiID DragDropTargetId;
|
||||
ImGuiID DragDropTargetFullViewport;
|
||||
ImGuiDragDropFlags DragDropAcceptFlags;
|
||||
ImGuiDragDropFlags DragDropAcceptFlagsCurr;
|
||||
ImGuiDragDropFlags DragDropAcceptFlagsPrev;
|
||||
float DragDropAcceptIdCurrRectSurface;
|
||||
ImGuiID DragDropAcceptIdCurr;
|
||||
ImGuiID DragDropAcceptIdPrev;
|
||||
@@ -3202,6 +3222,7 @@ struct ImGuiContext
|
||||
ImGuiID HookIdNext;
|
||||
const char* LocalizationTable[ImGuiLocKey_COUNT];
|
||||
bool LogEnabled;
|
||||
bool LogLineFirstItem;
|
||||
ImGuiLogFlags LogFlags;
|
||||
ImGuiWindow* LogWindow;
|
||||
ImFileHandle LogFile;
|
||||
@@ -3209,7 +3230,6 @@ struct ImGuiContext
|
||||
const char* LogNextPrefix;
|
||||
const char* LogNextSuffix;
|
||||
float LogLinePosY;
|
||||
bool LogLineFirstItem;
|
||||
int LogDepthRef;
|
||||
int LogDepthToExpand;
|
||||
int LogDepthToExpandDefault;
|
||||
@@ -3237,6 +3257,7 @@ struct ImGuiContext
|
||||
float DebugFlashStyleColorTime;
|
||||
ImVec4_c DebugFlashStyleColorBackup;
|
||||
ImGuiMetricsConfig DebugMetricsConfig;
|
||||
ImGuiDebugItemPathQuery DebugItemPathQuery;
|
||||
ImGuiIDStackTool DebugIDStackTool;
|
||||
ImGuiDebugAllocInfo DebugAllocInfo;
|
||||
ImGuiDockNode* DebugHoveredDockNode;
|
||||
@@ -3356,13 +3377,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;
|
||||
@@ -3684,6 +3706,7 @@ typedef struct ImVector_ImGuiTableHeaderData {int Size;int Capacity;ImGuiTableHe
|
||||
|
||||
struct ImGuiTableTempData
|
||||
{
|
||||
ImGuiID WindowID;
|
||||
int TableIndex;
|
||||
float LastTimeActive;
|
||||
float AngledHeadersExtraWidth;
|
||||
@@ -4398,7 +4421,7 @@ CIMGUI_API void igMemFree(void* ptr);
|
||||
CIMGUI_API void igUpdatePlatformWindows(void);
|
||||
CIMGUI_API void igRenderPlatformWindowsDefault(void* platform_render_arg,void* renderer_render_arg);
|
||||
CIMGUI_API void igDestroyPlatformWindows(void);
|
||||
CIMGUI_API ImGuiViewport* igFindViewportByID(ImGuiID id);
|
||||
CIMGUI_API ImGuiViewport* igFindViewportByID(ImGuiID viewport_id);
|
||||
CIMGUI_API ImGuiViewport* igFindViewportByPlatformHandle(void* platform_handle);
|
||||
CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void);
|
||||
CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self);
|
||||
@@ -4727,7 +4750,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);
|
||||
@@ -4960,6 +4984,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);
|
||||
@@ -5003,6 +5029,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,bool dock_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);
|
||||
@@ -5475,6 +5502,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);
|
||||
|
||||
@@ -529,7 +529,7 @@ local function name_overloadsAlgo(v)
|
||||
for i=1,#v do
|
||||
if not done[i] then
|
||||
bb[i] = bb[i]..(aa[i][l]=="nil" and "" or aa[i][l])
|
||||
cc[i][l] = aa[i][l]
|
||||
table.insert(cc[i], (aa[i][l]=="nil" and "" or aa[i][l]))
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -544,7 +544,7 @@ local function name_overloadsAlgo(v)
|
||||
end
|
||||
end
|
||||
--avoid empty postfix which will be reserved to generic
|
||||
for i,v in ipairs(bb) do if v=="" then bb[i]="Nil" end end
|
||||
for i,v in ipairs(bb) do if v=="" then bb[i]="Nil"; table.insert(cc[i],"Nil") end end
|
||||
return aa,bb,cc
|
||||
end
|
||||
M.name_overloadsAlgo = name_overloadsAlgo
|
||||
@@ -560,15 +560,26 @@ local function typetoStr(typ)
|
||||
typ = typ:gsub("const%s","")--"c")
|
||||
typ = typ:gsub("%s+","_")
|
||||
typ = typ:gsub("charPtr","Str")
|
||||
typ = typ:gsub("int","Int")
|
||||
typ = typ:gsub("^int","Int")
|
||||
typ = typ:gsub("^nil","Nil")
|
||||
typ = typ:gsub("bool","Bool")
|
||||
typ = typ:gsub("float","Float")
|
||||
typ = typ:gsub("uInt","Uint")
|
||||
typ = typ:gsub("u[Ii]nt","Uint")
|
||||
typ = typ:gsub("ImGui","")
|
||||
--typ = typ:gsub("ImStr","STR")
|
||||
typ = typ:gsub("Im","")
|
||||
typ = typ:gsub("[<>]","")
|
||||
return "_"..typ
|
||||
return typ
|
||||
-- return "_"..typ
|
||||
end
|
||||
local function typetoStrpat(pat,post,typsc)
|
||||
local str = ""
|
||||
for i,v in ipairs(pat) do
|
||||
str = str..typetoStr(v)
|
||||
end
|
||||
--local str2 = typetoStr(post)
|
||||
--if str~=str2 then print(1,str,2,str2);M.prtable(typesc,post,pat);error"DEBUG" end
|
||||
return str
|
||||
end
|
||||
--used to clean signature in function ptr argument
|
||||
local function clean_names_from_signature(self,signat)
|
||||
@@ -1256,14 +1267,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)
|
||||
@@ -2034,6 +2046,10 @@ function M.Parser()
|
||||
print("--skip enum forward declaration:",it2)
|
||||
it2 = ""
|
||||
end
|
||||
if it2:match"=%s*ImVec" then
|
||||
print("--skip = vardef declaration:",it2)
|
||||
it2 = ""
|
||||
end
|
||||
end
|
||||
--table.insert(outtabpre,it2)
|
||||
--table.insert(outtab,it2)
|
||||
@@ -2444,7 +2460,7 @@ function M.Parser()
|
||||
--print(k,#v)
|
||||
table.insert(strt,string.format("%s\t%d",k,#v))
|
||||
local typesc,post,pat = name_overloadsAlgo(v)
|
||||
-- if k=="igImLerp" then
|
||||
-- if k=="ImPlot_PlotLine" then
|
||||
-- print"----------------------"
|
||||
-- M.prtable(v)
|
||||
-- M.prtable(typesc)
|
||||
@@ -2454,7 +2470,7 @@ function M.Parser()
|
||||
-- end
|
||||
for i,t in ipairs(v) do
|
||||
--take overloaded name from manual table or algorythm
|
||||
t.ov_cimguiname = self.getCname_overload(t.stname,t.funcname,t.signature,t.namespace) or k..typetoStr(post[i])
|
||||
t.ov_cimguiname = self.getCname_overload(t.stname,t.funcname,t.signature,t.namespace) or k.."_"..typetoStrpat(pat[i],post[i],typesc)
|
||||
--check ...
|
||||
if( t.ov_cimguiname:match"%.%.%.") then
|
||||
print("... in ov",t.ov_cimguiname)
|
||||
|
||||
@@ -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:193",
|
||||
"location": "imgui_impl_vulkan:202",
|
||||
"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:194",
|
||||
"location": "imgui_impl_vulkan:203",
|
||||
"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:199",
|
||||
"location": "imgui_impl_vulkan:208",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"ret": "int",
|
||||
"signature": "(VkPresentModeKHR)",
|
||||
@@ -1397,7 +1397,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||
"location": "imgui_impl_vulkan:200",
|
||||
"location": "imgui_impl_vulkan:209",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||
"ret": "ImGui_ImplVulkanH_Window*",
|
||||
"signature": "(ImGuiViewport*)",
|
||||
@@ -1419,7 +1419,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"location": "imgui_impl_vulkan:197",
|
||||
"location": "imgui_impl_vulkan:206",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"ret": "VkPhysicalDevice",
|
||||
"signature": "(VkInstance)",
|
||||
@@ -1453,7 +1453,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"location": "imgui_impl_vulkan:196",
|
||||
"location": "imgui_impl_vulkan:205",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"ret": "VkPresentModeKHR",
|
||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||
@@ -1475,7 +1475,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"location": "imgui_impl_vulkan:198",
|
||||
"location": "imgui_impl_vulkan:207",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"ret": "uint32_t",
|
||||
"signature": "(VkPhysicalDevice)",
|
||||
@@ -1513,7 +1513,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"location": "imgui_impl_vulkan:195",
|
||||
"location": "imgui_impl_vulkan:204",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"ret": "VkSurfaceFormatKHR",
|
||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||
@@ -1531,7 +1531,7 @@
|
||||
"constructor": true,
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_Window",
|
||||
"location": "imgui_impl_vulkan:242",
|
||||
"location": "imgui_impl_vulkan:251",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||
"signature": "()",
|
||||
"stname": "ImGui_ImplVulkanH_Window"
|
||||
@@ -1550,7 +1550,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||
"defaults": {},
|
||||
"destructor": true,
|
||||
"location": "imgui_impl_vulkan:242",
|
||||
"location": "imgui_impl_vulkan:251",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||
"ret": "void",
|
||||
"signature": "(ImGui_ImplVulkanH_Window*)",
|
||||
@@ -1580,7 +1580,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_AddTexture",
|
||||
"location": "imgui_impl_vulkan:150",
|
||||
"location": "imgui_impl_vulkan:159",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||
"ret": "VkDescriptorSet",
|
||||
"signature": "(VkSampler,VkImageView,VkImageLayout)",
|
||||
@@ -1602,7 +1602,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"location": "imgui_impl_vulkan:142",
|
||||
"location": "imgui_impl_vulkan:151",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"ret": "void",
|
||||
"signature": "(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||
@@ -1624,7 +1624,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_Init",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_Init",
|
||||
"location": "imgui_impl_vulkan:133",
|
||||
"location": "imgui_impl_vulkan:142",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_Init",
|
||||
"ret": "bool",
|
||||
"signature": "(ImGui_ImplVulkan_InitInfo*)",
|
||||
@@ -1656,7 +1656,7 @@
|
||||
"user_data": "nullptr"
|
||||
},
|
||||
"funcname": "ImGui_ImplVulkan_LoadFunctions",
|
||||
"location": "imgui_impl_vulkan:155",
|
||||
"location": "imgui_impl_vulkan:164",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_LoadFunctions",
|
||||
"ret": "bool",
|
||||
"signature": "(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||
@@ -1673,7 +1673,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_NewFrame",
|
||||
"location": "imgui_impl_vulkan:135",
|
||||
"location": "imgui_impl_vulkan:144",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -1695,7 +1695,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"location": "imgui_impl_vulkan:151",
|
||||
"location": "imgui_impl_vulkan:160",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"ret": "void",
|
||||
"signature": "(VkDescriptorSet)",
|
||||
@@ -1727,7 +1727,7 @@
|
||||
"pipeline": "0ULL"
|
||||
},
|
||||
"funcname": "ImGui_ImplVulkan_RenderDrawData",
|
||||
"location": "imgui_impl_vulkan:136",
|
||||
"location": "imgui_impl_vulkan:145",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_RenderDrawData",
|
||||
"ret": "void",
|
||||
"signature": "(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||
@@ -1749,7 +1749,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"location": "imgui_impl_vulkan:137",
|
||||
"location": "imgui_impl_vulkan:146",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"ret": "void",
|
||||
"signature": "(uint32_t)",
|
||||
@@ -1766,7 +1766,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_Shutdown",
|
||||
"location": "imgui_impl_vulkan:134",
|
||||
"location": "imgui_impl_vulkan:143",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -1788,7 +1788,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"location": "imgui_impl_vulkan:145",
|
||||
"location": "imgui_impl_vulkan:154",
|
||||
"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:193",
|
||||
location="imgui_impl_vulkan:202",
|
||||
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:194",
|
||||
location="imgui_impl_vulkan:203",
|
||||
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:199",
|
||||
location="imgui_impl_vulkan:208",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
ret="int",
|
||||
signature="(VkPresentModeKHR)",
|
||||
@@ -1207,7 +1207,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||
location="imgui_impl_vulkan:200",
|
||||
location="imgui_impl_vulkan:209",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||
ret="ImGui_ImplVulkanH_Window*",
|
||||
signature="(ImGuiViewport*)",
|
||||
@@ -1226,7 +1226,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
location="imgui_impl_vulkan:197",
|
||||
location="imgui_impl_vulkan:206",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
ret="VkPhysicalDevice",
|
||||
signature="(VkInstance)",
|
||||
@@ -1254,7 +1254,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
location="imgui_impl_vulkan:196",
|
||||
location="imgui_impl_vulkan:205",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
ret="VkPresentModeKHR",
|
||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||
@@ -1273,7 +1273,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
location="imgui_impl_vulkan:198",
|
||||
location="imgui_impl_vulkan:207",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
ret="uint32_t",
|
||||
signature="(VkPhysicalDevice)",
|
||||
@@ -1304,7 +1304,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
location="imgui_impl_vulkan:195",
|
||||
location="imgui_impl_vulkan:204",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
ret="VkSurfaceFormatKHR",
|
||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||
@@ -1321,7 +1321,7 @@ local t={
|
||||
constructor=true,
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_Window",
|
||||
location="imgui_impl_vulkan:242",
|
||||
location="imgui_impl_vulkan:251",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||
signature="()",
|
||||
stname="ImGui_ImplVulkanH_Window"},
|
||||
@@ -1337,7 +1337,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||
defaults={},
|
||||
destructor=true,
|
||||
location="imgui_impl_vulkan:242",
|
||||
location="imgui_impl_vulkan:251",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||
ret="void",
|
||||
signature="(ImGui_ImplVulkanH_Window*)",
|
||||
@@ -1362,7 +1362,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_AddTexture",
|
||||
location="imgui_impl_vulkan:150",
|
||||
location="imgui_impl_vulkan:159",
|
||||
ov_cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||
ret="VkDescriptorSet",
|
||||
signature="(VkSampler,VkImageView,VkImageLayout)",
|
||||
@@ -1381,7 +1381,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
location="imgui_impl_vulkan:142",
|
||||
location="imgui_impl_vulkan:151",
|
||||
ov_cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
ret="void",
|
||||
signature="(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||
@@ -1400,7 +1400,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_Init",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_Init",
|
||||
location="imgui_impl_vulkan:133",
|
||||
location="imgui_impl_vulkan:142",
|
||||
ov_cimguiname="ImGui_ImplVulkan_Init",
|
||||
ret="bool",
|
||||
signature="(ImGui_ImplVulkan_InitInfo*)",
|
||||
@@ -1426,7 +1426,7 @@ local t={
|
||||
defaults={
|
||||
user_data="nullptr"},
|
||||
funcname="ImGui_ImplVulkan_LoadFunctions",
|
||||
location="imgui_impl_vulkan:155",
|
||||
location="imgui_impl_vulkan:164",
|
||||
ov_cimguiname="ImGui_ImplVulkan_LoadFunctions",
|
||||
ret="bool",
|
||||
signature="(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||
@@ -1442,7 +1442,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_NewFrame",
|
||||
location="imgui_impl_vulkan:135",
|
||||
location="imgui_impl_vulkan:144",
|
||||
ov_cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -1461,7 +1461,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_RemoveTexture",
|
||||
location="imgui_impl_vulkan:151",
|
||||
location="imgui_impl_vulkan:160",
|
||||
ov_cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||
ret="void",
|
||||
signature="(VkDescriptorSet)",
|
||||
@@ -1487,7 +1487,7 @@ local t={
|
||||
defaults={
|
||||
pipeline="0ULL"},
|
||||
funcname="ImGui_ImplVulkan_RenderDrawData",
|
||||
location="imgui_impl_vulkan:136",
|
||||
location="imgui_impl_vulkan:145",
|
||||
ov_cimguiname="ImGui_ImplVulkan_RenderDrawData",
|
||||
ret="void",
|
||||
signature="(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||
@@ -1506,7 +1506,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
location="imgui_impl_vulkan:137",
|
||||
location="imgui_impl_vulkan:146",
|
||||
ov_cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
ret="void",
|
||||
signature="(uint32_t)",
|
||||
@@ -1522,7 +1522,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_Shutdown",
|
||||
location="imgui_impl_vulkan:134",
|
||||
location="imgui_impl_vulkan:143",
|
||||
ov_cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -1541,7 +1541,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_UpdateTexture",
|
||||
location="imgui_impl_vulkan:145",
|
||||
location="imgui_impl_vulkan:154",
|
||||
ov_cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||
ret="void",
|
||||
signature="(ImTextureData*)",
|
||||
|
||||
@@ -730,33 +730,38 @@
|
||||
},
|
||||
{
|
||||
"calc_value": 56,
|
||||
"name": "ImGuiCol_UnsavedMarker",
|
||||
"name": "ImGuiCol_DragDropTargetBg",
|
||||
"value": "56"
|
||||
},
|
||||
{
|
||||
"calc_value": 57,
|
||||
"name": "ImGuiCol_NavCursor",
|
||||
"name": "ImGuiCol_UnsavedMarker",
|
||||
"value": "57"
|
||||
},
|
||||
{
|
||||
"calc_value": 58,
|
||||
"name": "ImGuiCol_NavWindowingHighlight",
|
||||
"name": "ImGuiCol_NavCursor",
|
||||
"value": "58"
|
||||
},
|
||||
{
|
||||
"calc_value": 59,
|
||||
"name": "ImGuiCol_NavWindowingDimBg",
|
||||
"name": "ImGuiCol_NavWindowingHighlight",
|
||||
"value": "59"
|
||||
},
|
||||
{
|
||||
"calc_value": 60,
|
||||
"name": "ImGuiCol_ModalWindowDimBg",
|
||||
"name": "ImGuiCol_NavWindowingDimBg",
|
||||
"value": "60"
|
||||
},
|
||||
{
|
||||
"calc_value": 61,
|
||||
"name": "ImGuiCol_COUNT",
|
||||
"name": "ImGuiCol_ModalWindowDimBg",
|
||||
"value": "61"
|
||||
},
|
||||
{
|
||||
"calc_value": 62,
|
||||
"name": "ImGuiCol_COUNT",
|
||||
"value": "62"
|
||||
}
|
||||
],
|
||||
"ImGuiColorEditFlags_": [
|
||||
@@ -1523,6 +1528,11 @@
|
||||
"name": "ImGuiDragDropFlags_AcceptNoPreviewTooltip",
|
||||
"value": "1 << 12"
|
||||
},
|
||||
{
|
||||
"calc_value": 8192,
|
||||
"name": "ImGuiDragDropFlags_AcceptDrawAsHovered",
|
||||
"value": "1 << 13"
|
||||
},
|
||||
{
|
||||
"calc_value": 3072,
|
||||
"name": "ImGuiDragDropFlags_AcceptPeekOnly",
|
||||
@@ -3473,6 +3483,11 @@
|
||||
"calc_value": 65536,
|
||||
"name": "ImGuiMultiSelectFlags_NavWrapX",
|
||||
"value": "1 << 16"
|
||||
},
|
||||
{
|
||||
"calc_value": 131072,
|
||||
"name": "ImGuiMultiSelectFlags_NoSelectOnRightClick",
|
||||
"value": "1 << 17"
|
||||
}
|
||||
],
|
||||
"ImGuiNavLayer": [
|
||||
@@ -5079,6 +5094,18 @@
|
||||
"value": "1 << 13"
|
||||
}
|
||||
],
|
||||
"ImGuiWindowBgClickFlags_": [
|
||||
{
|
||||
"calc_value": 0,
|
||||
"name": "ImGuiWindowBgClickFlags_None",
|
||||
"value": "0"
|
||||
},
|
||||
{
|
||||
"calc_value": 1,
|
||||
"name": "ImGuiWindowBgClickFlags_Move",
|
||||
"value": "1 << 0"
|
||||
}
|
||||
],
|
||||
"ImGuiWindowDockStyleCol": [
|
||||
{
|
||||
"calc_value": 0,
|
||||
@@ -5122,8 +5149,13 @@
|
||||
},
|
||||
{
|
||||
"calc_value": 8,
|
||||
"name": "ImGuiWindowDockStyleCol_COUNT",
|
||||
"name": "ImGuiWindowDockStyleCol_UnsavedMarker",
|
||||
"value": "8"
|
||||
},
|
||||
{
|
||||
"calc_value": 9,
|
||||
"name": "ImGuiWindowDockStyleCol_COUNT",
|
||||
"value": "9"
|
||||
}
|
||||
],
|
||||
"ImGuiWindowFlags_": [
|
||||
@@ -5350,218 +5382,220 @@
|
||||
},
|
||||
"locations": {
|
||||
"ImBitVector": "imgui_internal:663",
|
||||
"ImColor": "imgui:3057",
|
||||
"ImDrawChannel": "imgui:3305",
|
||||
"ImDrawCmd": "imgui:3261",
|
||||
"ImDrawCmdHeader": "imgui:3297",
|
||||
"ImDrawData": "imgui:3526",
|
||||
"ImColor": "imgui:3066",
|
||||
"ImDrawChannel": "imgui:3315",
|
||||
"ImDrawCmd": "imgui:3271",
|
||||
"ImDrawCmdHeader": "imgui:3307",
|
||||
"ImDrawData": "imgui:3536",
|
||||
"ImDrawDataBuilder": "imgui_internal:891",
|
||||
"ImDrawFlags_": "imgui:3330",
|
||||
"ImDrawList": "imgui:3368",
|
||||
"ImDrawListFlags_": "imgui:3350",
|
||||
"ImDrawFlags_": "imgui:3340",
|
||||
"ImDrawList": "imgui:3378",
|
||||
"ImDrawListFlags_": "imgui:3360",
|
||||
"ImDrawListSharedData": "imgui_internal:864",
|
||||
"ImDrawListSplitter": "imgui:3313",
|
||||
"ImDrawListSplitter": "imgui:3323",
|
||||
"ImDrawTextFlags_": "imgui_internal:445",
|
||||
"ImDrawVert": "imgui:3282",
|
||||
"ImFont": "imgui:3947",
|
||||
"ImFontAtlas": "imgui:3750",
|
||||
"ImFontAtlasBuilder": "imgui_internal:4111",
|
||||
"ImFontAtlasFlags_": "imgui:3723",
|
||||
"ImFontAtlasPostProcessData": "imgui_internal:4084",
|
||||
"ImFontAtlasRect": "imgui:3713",
|
||||
"ImFontAtlasRectEntry": "imgui_internal:4076",
|
||||
"ImFontBaked": "imgui:3899",
|
||||
"ImFontConfig": "imgui:3635",
|
||||
"ImFontFlags_": "imgui:3934",
|
||||
"ImFontGlyph": "imgui:3675",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3691",
|
||||
"ImFontLoader": "imgui_internal:4025",
|
||||
"ImDrawVert": "imgui:3292",
|
||||
"ImFont": "imgui:3957",
|
||||
"ImFontAtlas": "imgui:3760",
|
||||
"ImFontAtlasBuilder": "imgui_internal:4132",
|
||||
"ImFontAtlasFlags_": "imgui:3733",
|
||||
"ImFontAtlasPostProcessData": "imgui_internal:4105",
|
||||
"ImFontAtlasRect": "imgui:3723",
|
||||
"ImFontAtlasRectEntry": "imgui_internal:4097",
|
||||
"ImFontBaked": "imgui:3909",
|
||||
"ImFontConfig": "imgui:3645",
|
||||
"ImFontFlags_": "imgui:3944",
|
||||
"ImFontGlyph": "imgui:3685",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3701",
|
||||
"ImFontLoader": "imgui_internal:4046",
|
||||
"ImFontStackData": "imgui_internal:899",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1689",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1696",
|
||||
"ImGuiAxis": "imgui_internal:1149",
|
||||
"ImGuiBackendFlags_": "imgui:1785",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1880",
|
||||
"ImGuiBackendFlags_": "imgui:1790",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1887",
|
||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:1036",
|
||||
"ImGuiButtonFlags_": "imgui:1930",
|
||||
"ImGuiChildFlags_": "imgui:1242",
|
||||
"ImGuiCol_": "imgui:1802",
|
||||
"ImGuiColorEditFlags_": "imgui:1941",
|
||||
"ImGuiButtonFlags_": "imgui:1936",
|
||||
"ImGuiChildFlags_": "imgui:1246",
|
||||
"ImGuiCol_": "imgui:1807",
|
||||
"ImGuiColorEditFlags_": "imgui:1947",
|
||||
"ImGuiColorMod": "imgui_internal:919",
|
||||
"ImGuiComboFlagsPrivate_": "imgui_internal:1063",
|
||||
"ImGuiComboFlags_": "imgui:1407",
|
||||
"ImGuiComboFlags_": "imgui:1411",
|
||||
"ImGuiComboPreviewData": "imgui_internal:1163",
|
||||
"ImGuiCond_": "imgui:2055",
|
||||
"ImGuiConfigFlags_": "imgui:1756",
|
||||
"ImGuiContext": "imgui_internal:2356",
|
||||
"ImGuiContextHook": "imgui_internal:2341",
|
||||
"ImGuiContextHookType": "imgui_internal:2339",
|
||||
"ImGuiDataAuthority_": "imgui_internal:1993",
|
||||
"ImGuiCond_": "imgui:2061",
|
||||
"ImGuiConfigFlags_": "imgui:1761",
|
||||
"ImGuiContext": "imgui_internal:2371",
|
||||
"ImGuiContextHook": "imgui_internal:2356",
|
||||
"ImGuiContextHookType": "imgui_internal:2354",
|
||||
"ImGuiDataAuthority_": "imgui_internal:2000",
|
||||
"ImGuiDataTypeInfo": "imgui_internal:945",
|
||||
"ImGuiDataTypePrivate_": "imgui_internal:954",
|
||||
"ImGuiDataTypeStorage": "imgui_internal:939",
|
||||
"ImGuiDataType_": "imgui:1562",
|
||||
"ImGuiDeactivatedItemData": "imgui_internal:1454",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2270",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2277",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2248",
|
||||
"ImGuiDir": "imgui:1580",
|
||||
"ImGuiDockContext": "imgui_internal:2095",
|
||||
"ImGuiDockNode": "imgui_internal:2009",
|
||||
"ImGuiDockNodeFlagsPrivate_": "imgui_internal:1961",
|
||||
"ImGuiDockNodeFlags_": "imgui:1515",
|
||||
"ImGuiDockNodeState": "imgui_internal:2000",
|
||||
"ImGuiDragDropFlags_": "imgui:1534",
|
||||
"ImGuiErrorRecoveryState": "imgui_internal:1410",
|
||||
"ImGuiDataType_": "imgui:1567",
|
||||
"ImGuiDeactivatedItemData": "imgui_internal:1461",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2278",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2285",
|
||||
"ImGuiDebugItemPathQuery": "imgui_internal:2325",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2256",
|
||||
"ImGuiDir": "imgui:1585",
|
||||
"ImGuiDockContext": "imgui_internal:2103",
|
||||
"ImGuiDockNode": "imgui_internal:2016",
|
||||
"ImGuiDockNodeFlagsPrivate_": "imgui_internal:1968",
|
||||
"ImGuiDockNodeFlags_": "imgui:1519",
|
||||
"ImGuiDockNodeState": "imgui_internal:2007",
|
||||
"ImGuiDragDropFlags_": "imgui:1538",
|
||||
"ImGuiErrorRecoveryState": "imgui_internal:1417",
|
||||
"ImGuiFocusRequestFlags_": "imgui_internal:1109",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1777",
|
||||
"ImGuiFocusedFlags_": "imgui:1461",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1784",
|
||||
"ImGuiFocusedFlags_": "imgui:1465",
|
||||
"ImGuiFreeTypeLoaderFlags_": "imgui_freetype:29",
|
||||
"ImGuiGroupData": "imgui_internal:1176",
|
||||
"ImGuiHoveredFlagsPrivate_": "imgui_internal:1019",
|
||||
"ImGuiHoveredFlags_": "imgui:1475",
|
||||
"ImGuiIDStackTool": "imgui_internal:2318",
|
||||
"ImGuiIO": "imgui:2456",
|
||||
"ImGuiInputEvent": "imgui_internal:1549",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1547",
|
||||
"ImGuiInputEventKey": "imgui_internal:1545",
|
||||
"ImGuiInputEventMouseButton": "imgui_internal:1543",
|
||||
"ImGuiInputEventMousePos": "imgui_internal:1541",
|
||||
"ImGuiInputEventMouseViewport": "imgui_internal:1544",
|
||||
"ImGuiInputEventMouseWheel": "imgui_internal:1542",
|
||||
"ImGuiInputEventText": "imgui_internal:1546",
|
||||
"ImGuiInputEventType": "imgui_internal:1517",
|
||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1616",
|
||||
"ImGuiInputFlags_": "imgui:1733",
|
||||
"ImGuiInputSource": "imgui_internal:1530",
|
||||
"ImGuiInputTextCallbackData": "imgui:2719",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1212",
|
||||
"ImGuiHoveredFlags_": "imgui:1479",
|
||||
"ImGuiIDStackTool": "imgui_internal:2339",
|
||||
"ImGuiIO": "imgui:2465",
|
||||
"ImGuiInputEvent": "imgui_internal:1556",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1554",
|
||||
"ImGuiInputEventKey": "imgui_internal:1552",
|
||||
"ImGuiInputEventMouseButton": "imgui_internal:1550",
|
||||
"ImGuiInputEventMousePos": "imgui_internal:1548",
|
||||
"ImGuiInputEventMouseViewport": "imgui_internal:1551",
|
||||
"ImGuiInputEventMouseWheel": "imgui_internal:1549",
|
||||
"ImGuiInputEventText": "imgui_internal:1553",
|
||||
"ImGuiInputEventType": "imgui_internal:1524",
|
||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1623",
|
||||
"ImGuiInputFlags_": "imgui:1738",
|
||||
"ImGuiInputSource": "imgui_internal:1537",
|
||||
"ImGuiInputTextCallbackData": "imgui:2728",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1213",
|
||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:1027",
|
||||
"ImGuiInputTextFlags_": "imgui:1276",
|
||||
"ImGuiInputTextState": "imgui_internal:1234",
|
||||
"ImGuiInputTextFlags_": "imgui:1280",
|
||||
"ImGuiInputTextState": "imgui_internal:1235",
|
||||
"ImGuiItemFlagsPrivate_": "imgui_internal:967",
|
||||
"ImGuiItemFlags_": "imgui:1263",
|
||||
"ImGuiItemFlags_": "imgui:1267",
|
||||
"ImGuiItemStatusFlags_": "imgui_internal:992",
|
||||
"ImGuiKey": "imgui:1604",
|
||||
"ImGuiKeyData": "imgui:2448",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1603",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1577",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1591",
|
||||
"ImGuiLastItemData": "imgui_internal:1379",
|
||||
"ImGuiKey": "imgui:1609",
|
||||
"ImGuiKeyData": "imgui:2457",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1610",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1584",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1598",
|
||||
"ImGuiLastItemData": "imgui_internal:1386",
|
||||
"ImGuiLayoutType_": "imgui_internal:1130",
|
||||
"ImGuiListClipper": "imgui:2956",
|
||||
"ImGuiListClipperData": "imgui_internal:1673",
|
||||
"ImGuiListClipperFlags_": "imgui:2930",
|
||||
"ImGuiListClipperRange": "imgui_internal:1660",
|
||||
"ImGuiLocEntry": "imgui_internal:2221",
|
||||
"ImGuiLocKey": "imgui_internal:2203",
|
||||
"ImGuiListClipper": "imgui:2965",
|
||||
"ImGuiListClipperData": "imgui_internal:1680",
|
||||
"ImGuiListClipperFlags_": "imgui:2939",
|
||||
"ImGuiListClipperRange": "imgui_internal:1667",
|
||||
"ImGuiLocEntry": "imgui_internal:2229",
|
||||
"ImGuiLocKey": "imgui_internal:2211",
|
||||
"ImGuiLogFlags_": "imgui_internal:1137",
|
||||
"ImGuiMenuColumns": "imgui_internal:1194",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2287",
|
||||
"ImGuiMouseButton_": "imgui:2013",
|
||||
"ImGuiMouseCursor_": "imgui:2023",
|
||||
"ImGuiMouseSource": "imgui:2044",
|
||||
"ImGuiMultiSelectFlags_": "imgui:3115",
|
||||
"ImGuiMultiSelectIO": "imgui:3142",
|
||||
"ImGuiMultiSelectState": "imgui_internal:1937",
|
||||
"ImGuiMultiSelectTempData": "imgui_internal:1912",
|
||||
"ImGuiNavItemData": "imgui_internal:1760",
|
||||
"ImGuiNavLayer": "imgui_internal:1752",
|
||||
"ImGuiNavMoveFlags_": "imgui_internal:1730",
|
||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1715",
|
||||
"ImGuiNextItemData": "imgui_internal:1358",
|
||||
"ImGuiNextItemDataFlags_": "imgui_internal:1348",
|
||||
"ImGuiNextWindowData": "imgui_internal:1316",
|
||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1296",
|
||||
"ImGuiOldColumnData": "imgui_internal:1845",
|
||||
"ImGuiOldColumnFlags_": "imgui_internal:1825",
|
||||
"ImGuiOldColumns": "imgui_internal:1855",
|
||||
"ImGuiOnceUponAFrame": "imgui:2819",
|
||||
"ImGuiPayload": "imgui:2784",
|
||||
"ImGuiPlatformIO": "imgui:4132",
|
||||
"ImGuiPlatformImeData": "imgui:4254",
|
||||
"ImGuiPlatformMonitor": "imgui:4244",
|
||||
"ImGuiMenuColumns": "imgui_internal:1195",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2295",
|
||||
"ImGuiMouseButton_": "imgui:2019",
|
||||
"ImGuiMouseCursor_": "imgui:2029",
|
||||
"ImGuiMouseSource": "imgui:2050",
|
||||
"ImGuiMultiSelectFlags_": "imgui:3124",
|
||||
"ImGuiMultiSelectIO": "imgui:3152",
|
||||
"ImGuiMultiSelectState": "imgui_internal:1944",
|
||||
"ImGuiMultiSelectTempData": "imgui_internal:1919",
|
||||
"ImGuiNavItemData": "imgui_internal:1767",
|
||||
"ImGuiNavLayer": "imgui_internal:1759",
|
||||
"ImGuiNavMoveFlags_": "imgui_internal:1737",
|
||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1722",
|
||||
"ImGuiNextItemData": "imgui_internal:1365",
|
||||
"ImGuiNextItemDataFlags_": "imgui_internal:1355",
|
||||
"ImGuiNextWindowData": "imgui_internal:1323",
|
||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1303",
|
||||
"ImGuiOldColumnData": "imgui_internal:1852",
|
||||
"ImGuiOldColumnFlags_": "imgui_internal:1832",
|
||||
"ImGuiOldColumns": "imgui_internal:1862",
|
||||
"ImGuiOnceUponAFrame": "imgui:2828",
|
||||
"ImGuiPayload": "imgui:2793",
|
||||
"ImGuiPlatformIO": "imgui:4142",
|
||||
"ImGuiPlatformImeData": "imgui:4264",
|
||||
"ImGuiPlatformMonitor": "imgui:4254",
|
||||
"ImGuiPlotType": "imgui_internal:1156",
|
||||
"ImGuiPopupData": "imgui_internal:1474",
|
||||
"ImGuiPopupFlags_": "imgui:1371",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1466",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1444",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1701",
|
||||
"ImGuiPopupData": "imgui_internal:1481",
|
||||
"ImGuiPopupFlags_": "imgui:1375",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1473",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1451",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1708",
|
||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:1076",
|
||||
"ImGuiSelectableFlags_": "imgui:1389",
|
||||
"ImGuiSelectionBasicStorage": "imgui:3188",
|
||||
"ImGuiSelectionExternalStorage": "imgui:3211",
|
||||
"ImGuiSelectionRequest": "imgui:3162",
|
||||
"ImGuiSelectionRequestType": "imgui:3154",
|
||||
"ImGuiSelectableFlags_": "imgui:1393",
|
||||
"ImGuiSelectionBasicStorage": "imgui:3198",
|
||||
"ImGuiSelectionExternalStorage": "imgui:3221",
|
||||
"ImGuiSelectionRequest": "imgui:3172",
|
||||
"ImGuiSelectionRequestType": "imgui:3164",
|
||||
"ImGuiSeparatorFlags_": "imgui_internal:1098",
|
||||
"ImGuiSettingsHandler": "imgui_internal:2183",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1437",
|
||||
"ImGuiSizeCallbackData": "imgui:2753",
|
||||
"ImGuiSettingsHandler": "imgui_internal:2191",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1444",
|
||||
"ImGuiSizeCallbackData": "imgui:2762",
|
||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:1069",
|
||||
"ImGuiSliderFlags_": "imgui:1997",
|
||||
"ImGuiSortDirection": "imgui:1591",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2306",
|
||||
"ImGuiStorage": "imgui:2892",
|
||||
"ImGuiStoragePair": "imgui:2875",
|
||||
"ImGuiStyle": "imgui:2342",
|
||||
"ImGuiSliderFlags_": "imgui:2003",
|
||||
"ImGuiSortDirection": "imgui:1596",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2314",
|
||||
"ImGuiStorage": "imgui:2901",
|
||||
"ImGuiStoragePair": "imgui:2884",
|
||||
"ImGuiStyle": "imgui:2348",
|
||||
"ImGuiStyleMod": "imgui_internal:926",
|
||||
"ImGuiStyleVarInfo": "imgui_internal:910",
|
||||
"ImGuiStyleVar_": "imgui:1883",
|
||||
"ImGuiTabBar": "imgui_internal:3009",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2971",
|
||||
"ImGuiTabBarFlags_": "imgui:1422",
|
||||
"ImGuiTabItem": "imgui_internal:2989",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2979",
|
||||
"ImGuiTabItemFlags_": "imgui:1446",
|
||||
"ImGuiTable": "imgui_internal:3154",
|
||||
"ImGuiTableBgTarget_": "imgui:2196",
|
||||
"ImGuiTableCellData": "imgui_internal:3122",
|
||||
"ImGuiTableColumn": "imgui_internal:3062",
|
||||
"ImGuiTableColumnFlags_": "imgui:2143",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3302",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:2218",
|
||||
"ImGuiTableFlags_": "imgui:2090",
|
||||
"ImGuiTableHeaderData": "imgui_internal:3131",
|
||||
"ImGuiTableInstanceData": "imgui_internal:3141",
|
||||
"ImGuiTableRowFlags_": "imgui:2181",
|
||||
"ImGuiTableSettings": "imgui_internal:3326",
|
||||
"ImGuiTableSortSpecs": "imgui:2208",
|
||||
"ImGuiTableTempData": "imgui_internal:3279",
|
||||
"ImGuiTextBuffer": "imgui:2854",
|
||||
"ImGuiTextFilter": "imgui:2827",
|
||||
"ImGuiStyleVar_": "imgui:1889",
|
||||
"ImGuiTabBar": "imgui_internal:3028",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2990",
|
||||
"ImGuiTabBarFlags_": "imgui:1426",
|
||||
"ImGuiTabItem": "imgui_internal:3008",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2998",
|
||||
"ImGuiTabItemFlags_": "imgui:1450",
|
||||
"ImGuiTable": "imgui_internal:3173",
|
||||
"ImGuiTableBgTarget_": "imgui:2202",
|
||||
"ImGuiTableCellData": "imgui_internal:3141",
|
||||
"ImGuiTableColumn": "imgui_internal:3081",
|
||||
"ImGuiTableColumnFlags_": "imgui:2149",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3322",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:2224",
|
||||
"ImGuiTableFlags_": "imgui:2096",
|
||||
"ImGuiTableHeaderData": "imgui_internal:3150",
|
||||
"ImGuiTableInstanceData": "imgui_internal:3160",
|
||||
"ImGuiTableRowFlags_": "imgui:2187",
|
||||
"ImGuiTableSettings": "imgui_internal:3346",
|
||||
"ImGuiTableSortSpecs": "imgui:2214",
|
||||
"ImGuiTableTempData": "imgui_internal:3298",
|
||||
"ImGuiTextBuffer": "imgui:2863",
|
||||
"ImGuiTextFilter": "imgui:2836",
|
||||
"ImGuiTextFlags_": "imgui_internal:1116",
|
||||
"ImGuiTextIndex": "imgui_internal:816",
|
||||
"ImGuiTextRange": "imgui:2837",
|
||||
"ImGuiTextRange": "imgui:2846",
|
||||
"ImGuiTooltipFlags_": "imgui_internal:1122",
|
||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1089",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1327",
|
||||
"ImGuiTreeNodeStackData": "imgui_internal:1398",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1788",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1796",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1807",
|
||||
"ImGuiViewport": "imgui:4045",
|
||||
"ImGuiViewportFlags_": "imgui:4017",
|
||||
"ImGuiViewportP": "imgui_internal:2112",
|
||||
"ImGuiWindow": "imgui_internal:2816",
|
||||
"ImGuiWindowClass": "imgui:2768",
|
||||
"ImGuiWindowDockStyle": "imgui_internal:2090",
|
||||
"ImGuiWindowDockStyleCol": "imgui_internal:2076",
|
||||
"ImGuiWindowFlags_": "imgui:1191",
|
||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1287",
|
||||
"ImGuiWindowSettings": "imgui_internal:2164",
|
||||
"ImGuiWindowStackData": "imgui_internal:1428",
|
||||
"ImGuiWindowTempData": "imgui_internal:2759",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1331",
|
||||
"ImGuiTreeNodeStackData": "imgui_internal:1405",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1795",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1803",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1814",
|
||||
"ImGuiViewport": "imgui:4055",
|
||||
"ImGuiViewportFlags_": "imgui:4027",
|
||||
"ImGuiViewportP": "imgui_internal:2120",
|
||||
"ImGuiWindow": "imgui_internal:2834",
|
||||
"ImGuiWindowBgClickFlags_": "imgui_internal:1297",
|
||||
"ImGuiWindowClass": "imgui:2777",
|
||||
"ImGuiWindowDockStyle": "imgui_internal:2098",
|
||||
"ImGuiWindowDockStyleCol": "imgui_internal:2083",
|
||||
"ImGuiWindowFlags_": "imgui:1195",
|
||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1288",
|
||||
"ImGuiWindowSettings": "imgui_internal:2172",
|
||||
"ImGuiWindowStackData": "imgui_internal:1435",
|
||||
"ImGuiWindowTempData": "imgui_internal:2777",
|
||||
"ImRect": "imgui_internal:584",
|
||||
"ImTextureData": "imgui:3591",
|
||||
"ImTextureFormat": "imgui:3559",
|
||||
"ImTextureRect": "imgui:3578",
|
||||
"ImTextureRef": "imgui:366",
|
||||
"ImTextureStatus": "imgui:3566",
|
||||
"ImTextureData": "imgui:3601",
|
||||
"ImTextureFormat": "imgui:3569",
|
||||
"ImTextureRect": "imgui:3588",
|
||||
"ImTextureRef": "imgui:370",
|
||||
"ImTextureStatus": "imgui:3576",
|
||||
"ImVec1": "imgui_internal:558",
|
||||
"ImVec2": "imgui:296",
|
||||
"ImVec2": "imgui:300",
|
||||
"ImVec2i": "imgui_internal:566",
|
||||
"ImVec2ih": "imgui_internal:574",
|
||||
"ImVec4": "imgui:309",
|
||||
"stbrp_context_opaque": "imgui_internal:4108"
|
||||
"ImVec4": "imgui:313",
|
||||
"stbrp_context_opaque": "imgui_internal:4129"
|
||||
},
|
||||
"nonPOD": {
|
||||
"ImBitArray": true,
|
||||
@@ -5586,6 +5620,7 @@
|
||||
"ImGuiContext": true,
|
||||
"ImGuiContextHook": true,
|
||||
"ImGuiDebugAllocInfo": true,
|
||||
"ImGuiDebugItemPathQuery": true,
|
||||
"ImGuiDockContext": true,
|
||||
"ImGuiDockNode": true,
|
||||
"ImGuiErrorRecoveryState": true,
|
||||
@@ -5656,6 +5691,14 @@
|
||||
"ImVec4": true,
|
||||
"ImVector": true
|
||||
},
|
||||
"nonPOD_used": {
|
||||
"ImColor": true,
|
||||
"ImRect": true,
|
||||
"ImTextureRef": true,
|
||||
"ImVec2": true,
|
||||
"ImVec2i": true,
|
||||
"ImVec4": true
|
||||
},
|
||||
"structs": {
|
||||
"ImBitVector": [
|
||||
{
|
||||
@@ -5973,7 +6016,7 @@
|
||||
"type": "ImFontBaked*"
|
||||
},
|
||||
{
|
||||
"name": "ContainerAtlas",
|
||||
"name": "OwnerAtlas",
|
||||
"type": "ImFontAtlas*"
|
||||
},
|
||||
{
|
||||
@@ -6387,7 +6430,7 @@
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "ContainerFont",
|
||||
"name": "OwnerFont",
|
||||
"type": "ImFont*"
|
||||
},
|
||||
{
|
||||
@@ -6727,6 +6770,43 @@
|
||||
"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": "FrameCountPlatformEnded",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "FrameCountRendered",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "Time",
|
||||
"type": "double"
|
||||
},
|
||||
{
|
||||
"name": "ContextName[16]",
|
||||
"size": 16,
|
||||
"type": "char"
|
||||
},
|
||||
{
|
||||
"name": "IO",
|
||||
"type": "ImGuiIO"
|
||||
@@ -6784,55 +6864,14 @@
|
||||
"name": "DrawListSharedData",
|
||||
"type": "ImDrawListSharedData"
|
||||
},
|
||||
{
|
||||
"name": "Time",
|
||||
"type": "double"
|
||||
},
|
||||
{
|
||||
"name": "FrameCount",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "FrameCountEnded",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "FrameCountPlatformEnded",
|
||||
"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",
|
||||
@@ -7016,26 +7055,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"
|
||||
@@ -7121,6 +7159,10 @@
|
||||
"name": "DebugShowGroupRects",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "GcCompactAll",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "DebugFlashStyleColorIdx",
|
||||
"type": "ImGuiCol"
|
||||
@@ -7505,7 +7547,11 @@
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "DragDropAcceptFlags",
|
||||
"name": "DragDropAcceptFlagsCurr",
|
||||
"type": "ImGuiDragDropFlags"
|
||||
},
|
||||
{
|
||||
"name": "DragDropAcceptFlagsPrev",
|
||||
"type": "ImGuiDragDropFlags"
|
||||
},
|
||||
{
|
||||
@@ -7860,6 +7906,10 @@
|
||||
"name": "LogEnabled",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "LogLineFirstItem",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "LogFlags",
|
||||
"type": "ImGuiLogFlags"
|
||||
@@ -7888,10 +7938,6 @@
|
||||
"name": "LogLinePosY",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "LogLineFirstItem",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "LogDepthRef",
|
||||
"type": "int"
|
||||
@@ -8000,6 +8046,10 @@
|
||||
"name": "DebugMetricsConfig",
|
||||
"type": "ImGuiMetricsConfig"
|
||||
},
|
||||
{
|
||||
"name": "DebugItemPathQuery",
|
||||
"type": "ImGuiDebugItemPathQuery"
|
||||
},
|
||||
{
|
||||
"name": "DebugIDStackTool",
|
||||
"type": "ImGuiIDStackTool"
|
||||
@@ -8150,6 +8200,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"
|
||||
}
|
||||
],
|
||||
"ImGuiDockContext": [
|
||||
{
|
||||
"name": "Nodes",
|
||||
@@ -8449,6 +8530,10 @@
|
||||
"name": "BackupActiveIdIsAlive",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "BackupActiveIdHasBeenEditedThisFrame",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "BackupDeactivatedIdIsAlive",
|
||||
"type": "bool"
|
||||
@@ -8467,27 +8552,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"
|
||||
@@ -8496,17 +8560,13 @@
|
||||
"name": "OptCopyToClipboardOnCtrlC",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "LastActiveFrame",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "CopyToClipboardLastTime",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ResultPathsBuf",
|
||||
"type": "ImGuiTextBuffer"
|
||||
},
|
||||
{
|
||||
"name": "ResultTempBuf",
|
||||
"type": "ImGuiTextBuffer"
|
||||
}
|
||||
],
|
||||
"ImGuiIO": [
|
||||
@@ -8590,6 +8650,10 @@
|
||||
"name": "ConfigDockingNoSplit",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "ConfigDockingNoDockingOver",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "ConfigDockingWithShift",
|
||||
"type": "bool"
|
||||
@@ -10565,6 +10629,18 @@
|
||||
"name": "TreeLinesRounding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "DragDropTargetRounding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "DragDropTargetBorderSize",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "DragDropTargetPadding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ColorButtonPosition",
|
||||
"type": "ImGuiDir"
|
||||
@@ -10631,7 +10707,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Colors[ImGuiCol_COUNT]",
|
||||
"size": 61,
|
||||
"size": 62,
|
||||
"type": "ImVec4"
|
||||
},
|
||||
{
|
||||
@@ -11676,6 +11752,10 @@
|
||||
}
|
||||
],
|
||||
"ImGuiTableTempData": [
|
||||
{
|
||||
"name": "WindowID",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "TableIndex",
|
||||
"type": "int"
|
||||
@@ -12288,6 +12368,10 @@
|
||||
"name": "FocusOrder",
|
||||
"type": "short"
|
||||
},
|
||||
{
|
||||
"name": "AutoPosLastDirection",
|
||||
"type": "ImGuiDir"
|
||||
},
|
||||
{
|
||||
"name": "AutoFitFramesX",
|
||||
"type": "ImS8"
|
||||
@@ -12300,10 +12384,6 @@
|
||||
"name": "AutoFitOnlyGrows",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "AutoPosLastDirection",
|
||||
"type": "ImGuiDir"
|
||||
},
|
||||
{
|
||||
"name": "HiddenFramesCanSkipItems",
|
||||
"type": "ImS8"
|
||||
@@ -12320,6 +12400,11 @@
|
||||
"name": "DisableInputsFrames",
|
||||
"type": "ImS8"
|
||||
},
|
||||
{
|
||||
"bitfield": "8",
|
||||
"name": "BgClickFlags",
|
||||
"type": "ImGuiWindowBgClickFlags"
|
||||
},
|
||||
{
|
||||
"bitfield": "8",
|
||||
"name": "SetWindowPosAllowFlags",
|
||||
@@ -12591,7 +12676,7 @@
|
||||
"ImGuiWindowDockStyle": [
|
||||
{
|
||||
"name": "Colors[ImGuiWindowDockStyleCol_COUNT]",
|
||||
"size": 8,
|
||||
"size": 9,
|
||||
"type": "ImU32"
|
||||
}
|
||||
],
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -55,6 +55,7 @@
|
||||
"ImGuiDeactivatedItemData": "struct ImGuiDeactivatedItemData",
|
||||
"ImGuiDebugAllocEntry": "struct ImGuiDebugAllocEntry",
|
||||
"ImGuiDebugAllocInfo": "struct ImGuiDebugAllocInfo",
|
||||
"ImGuiDebugItemPathQuery": "struct ImGuiDebugItemPathQuery",
|
||||
"ImGuiDebugLogFlags": "int",
|
||||
"ImGuiDockContext": "struct ImGuiDockContext",
|
||||
"ImGuiDockNode": "struct ImGuiDockNode",
|
||||
@@ -187,6 +188,7 @@
|
||||
"ImGuiViewportFlags": "int",
|
||||
"ImGuiViewportP": "struct ImGuiViewportP",
|
||||
"ImGuiWindow": "struct ImGuiWindow",
|
||||
"ImGuiWindowBgClickFlags": "int",
|
||||
"ImGuiWindowClass": "struct ImGuiWindowClass",
|
||||
"ImGuiWindowDockStyle": "struct ImGuiWindowDockStyle",
|
||||
"ImGuiWindowFlags": "int",
|
||||
|
||||
@@ -55,6 +55,7 @@ local t={
|
||||
ImGuiDeactivatedItemData="struct ImGuiDeactivatedItemData",
|
||||
ImGuiDebugAllocEntry="struct ImGuiDebugAllocEntry",
|
||||
ImGuiDebugAllocInfo="struct ImGuiDebugAllocInfo",
|
||||
ImGuiDebugItemPathQuery="struct ImGuiDebugItemPathQuery",
|
||||
ImGuiDebugLogFlags="int",
|
||||
ImGuiDockContext="struct ImGuiDockContext",
|
||||
ImGuiDockNode="struct ImGuiDockNode",
|
||||
@@ -187,6 +188,7 @@ local t={
|
||||
ImGuiViewportFlags="int",
|
||||
ImGuiViewportP="struct ImGuiViewportP",
|
||||
ImGuiWindow="struct ImGuiWindow",
|
||||
ImGuiWindowBgClickFlags="int",
|
||||
ImGuiWindowClass="struct ImGuiWindowClass",
|
||||
ImGuiWindowDockStyle="struct ImGuiWindowDockStyle",
|
||||
ImGuiWindowFlags="int",
|
||||
|
||||
2
imgui
2
imgui
Submodule imgui updated: e7d2d636af...3912b3d9a9
Reference in New Issue
Block a user