mirror of
https://github.com/cimgui/cimgui.git
synced 2025-12-01 06:01:38 +00:00
Compare commits
3 Commits
1.94.2_con
...
1.92.5wip_
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c9f0e06eb2 | ||
|
|
899049782b | ||
|
|
305d1040fb |
@@ -19,7 +19,7 @@ Notes:
|
|||||||
|
|
||||||
# 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
|
# compilation
|
||||||
|
|
||||||
@@ -91,6 +91,7 @@ Notes:
|
|||||||
* size : the number of array elements (when it is an array)
|
* size : the number of array elements (when it is an array)
|
||||||
* bitfield : the bitfield width (in case it is a bitfield)
|
* 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 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
|
# 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`
|
* 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
|
//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 WIP" 19247 from Dear ImGui https://github.com/ocornut/imgui
|
||||||
//with imgui_internal.h api
|
//with imgui_internal.h api
|
||||||
//with imgui_freetype.h api
|
//with imgui_freetype.h api
|
||||||
//docking branch
|
//docking branch
|
||||||
@@ -1911,9 +1911,9 @@ CIMGUI_API void igDestroyPlatformWindows()
|
|||||||
{
|
{
|
||||||
return ImGui::DestroyPlatformWindows();
|
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)
|
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);
|
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)
|
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);
|
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)
|
CIMGUI_API ImGuiIDStackTool* ImGuiIDStackTool_ImGuiIDStackTool(void)
|
||||||
{
|
{
|
||||||
return IM_NEW(ImGuiIDStackTool)();
|
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);
|
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)
|
CIMGUI_API bool igIsWindowWithinBeginStackOf(ImGuiWindow* window,ImGuiWindow* potential_parent)
|
||||||
{
|
{
|
||||||
return ImGui::IsWindowWithinBeginStackOf(window,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);
|
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)
|
CIMGUI_API void igImFontAtlasBuildUpdatePointers(ImFontAtlas* atlas)
|
||||||
{
|
{
|
||||||
return ImFontAtlasBuildUpdatePointers(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
|
//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 WIP" 19247 from Dear ImGui https://github.com/ocornut/imgui
|
||||||
//with imgui_internal.h api
|
//with imgui_internal.h api
|
||||||
//with imgui_freetype.h api
|
//with imgui_freetype.h api
|
||||||
//docking branch
|
//docking branch
|
||||||
@@ -495,6 +495,7 @@ typedef enum {
|
|||||||
ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10,
|
ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10,
|
||||||
ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11,
|
ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11,
|
||||||
ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12,
|
ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12,
|
||||||
|
ImGuiDragDropFlags_AcceptDrawAsHovered = 1 << 13,
|
||||||
ImGuiDragDropFlags_AcceptPeekOnly = ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect,
|
ImGuiDragDropFlags_AcceptPeekOnly = ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect,
|
||||||
}ImGuiDragDropFlags_;
|
}ImGuiDragDropFlags_;
|
||||||
typedef enum {
|
typedef enum {
|
||||||
@@ -786,6 +787,7 @@ typedef enum {
|
|||||||
ImGuiCol_TextSelectedBg,
|
ImGuiCol_TextSelectedBg,
|
||||||
ImGuiCol_TreeLines,
|
ImGuiCol_TreeLines,
|
||||||
ImGuiCol_DragDropTarget,
|
ImGuiCol_DragDropTarget,
|
||||||
|
ImGuiCol_DragDropTargetBg,
|
||||||
ImGuiCol_UnsavedMarker,
|
ImGuiCol_UnsavedMarker,
|
||||||
ImGuiCol_NavCursor,
|
ImGuiCol_NavCursor,
|
||||||
ImGuiCol_NavWindowingHighlight,
|
ImGuiCol_NavWindowingHighlight,
|
||||||
@@ -1062,6 +1064,9 @@ struct ImGuiStyle
|
|||||||
ImGuiTreeNodeFlags TreeLinesFlags;
|
ImGuiTreeNodeFlags TreeLinesFlags;
|
||||||
float TreeLinesSize;
|
float TreeLinesSize;
|
||||||
float TreeLinesRounding;
|
float TreeLinesRounding;
|
||||||
|
float DragDropTargetRounding;
|
||||||
|
float DragDropTargetBorderSize;
|
||||||
|
float DragDropTargetPadding;
|
||||||
ImGuiDir ColorButtonPosition;
|
ImGuiDir ColorButtonPosition;
|
||||||
ImVec2_c ButtonTextAlign;
|
ImVec2_c ButtonTextAlign;
|
||||||
ImVec2_c SelectableTextAlign;
|
ImVec2_c SelectableTextAlign;
|
||||||
@@ -1118,6 +1123,7 @@ struct ImGuiIO
|
|||||||
bool ConfigNavCursorVisibleAuto;
|
bool ConfigNavCursorVisibleAuto;
|
||||||
bool ConfigNavCursorVisibleAlways;
|
bool ConfigNavCursorVisibleAlways;
|
||||||
bool ConfigDockingNoSplit;
|
bool ConfigDockingNoSplit;
|
||||||
|
bool ConfigDockingNoDockingOver;
|
||||||
bool ConfigDockingWithShift;
|
bool ConfigDockingWithShift;
|
||||||
bool ConfigDockingAlwaysTabBar;
|
bool ConfigDockingAlwaysTabBar;
|
||||||
bool ConfigDockingTransparentPayload;
|
bool ConfigDockingTransparentPayload;
|
||||||
@@ -1331,6 +1337,7 @@ typedef enum {
|
|||||||
ImGuiMultiSelectFlags_SelectOnClick = 1 << 13,
|
ImGuiMultiSelectFlags_SelectOnClick = 1 << 13,
|
||||||
ImGuiMultiSelectFlags_SelectOnClickRelease = 1 << 14,
|
ImGuiMultiSelectFlags_SelectOnClickRelease = 1 << 14,
|
||||||
ImGuiMultiSelectFlags_NavWrapX = 1 << 16,
|
ImGuiMultiSelectFlags_NavWrapX = 1 << 16,
|
||||||
|
ImGuiMultiSelectFlags_NoSelectOnRightClick = 1 << 17,
|
||||||
}ImGuiMultiSelectFlags_;
|
}ImGuiMultiSelectFlags_;
|
||||||
typedef struct ImVector_ImGuiSelectionRequest {int Size;int Capacity;ImGuiSelectionRequest* Data;} ImVector_ImGuiSelectionRequest;
|
typedef struct ImVector_ImGuiSelectionRequest {int Size;int Capacity;ImGuiSelectionRequest* Data;} ImVector_ImGuiSelectionRequest;
|
||||||
|
|
||||||
@@ -1639,7 +1646,7 @@ struct ImFontBaked
|
|||||||
unsigned int LoadNoRenderOnLayout:1;
|
unsigned int LoadNoRenderOnLayout:1;
|
||||||
int LastUsedFrame;
|
int LastUsedFrame;
|
||||||
ImGuiID BakedId;
|
ImGuiID BakedId;
|
||||||
ImFont* ContainerFont;
|
ImFont* OwnerFont;
|
||||||
void* FontLoaderDatas;
|
void* FontLoaderDatas;
|
||||||
};
|
};
|
||||||
typedef enum {
|
typedef enum {
|
||||||
@@ -1653,7 +1660,7 @@ typedef struct ImVector_ImFontConfigPtr {int Size;int Capacity;ImFontConfig** Da
|
|||||||
struct ImFont
|
struct ImFont
|
||||||
{
|
{
|
||||||
ImFontBaked* LastBaked;
|
ImFontBaked* LastBaked;
|
||||||
ImFontAtlas* ContainerAtlas;
|
ImFontAtlas* OwnerAtlas;
|
||||||
ImFontFlags Flags;
|
ImFontFlags Flags;
|
||||||
float CurrentRasterizerDensity;
|
float CurrentRasterizerDensity;
|
||||||
ImGuiID FontId;
|
ImGuiID FontId;
|
||||||
@@ -1836,6 +1843,7 @@ typedef int ImGuiSeparatorFlags;
|
|||||||
typedef int ImGuiTextFlags;
|
typedef int ImGuiTextFlags;
|
||||||
typedef int ImGuiTooltipFlags;
|
typedef int ImGuiTooltipFlags;
|
||||||
typedef int ImGuiTypingSelectFlags;
|
typedef int ImGuiTypingSelectFlags;
|
||||||
|
typedef int ImGuiWindowBgClickFlags;
|
||||||
typedef int ImGuiWindowRefreshFlags;
|
typedef int ImGuiWindowRefreshFlags;
|
||||||
typedef ImS16 ImGuiTableColumnIdx;
|
typedef ImS16 ImGuiTableColumnIdx;
|
||||||
typedef ImU16 ImGuiTableDrawChannelIdx;
|
typedef ImU16 ImGuiTableDrawChannelIdx;
|
||||||
@@ -2086,6 +2094,7 @@ struct ImGuiGroupData
|
|||||||
ImVec2_c BackupCurrLineSize;
|
ImVec2_c BackupCurrLineSize;
|
||||||
float BackupCurrLineTextBaseOffset;
|
float BackupCurrLineTextBaseOffset;
|
||||||
ImGuiID BackupActiveIdIsAlive;
|
ImGuiID BackupActiveIdIsAlive;
|
||||||
|
bool BackupActiveIdHasBeenEditedThisFrame;
|
||||||
bool BackupDeactivatedIdIsAlive;
|
bool BackupDeactivatedIdIsAlive;
|
||||||
bool BackupHoveredIdIsAlive;
|
bool BackupHoveredIdIsAlive;
|
||||||
bool BackupIsSameLine;
|
bool BackupIsSameLine;
|
||||||
@@ -2140,6 +2149,10 @@ typedef enum {
|
|||||||
ImGuiWindowRefreshFlags_RefreshOnHover = 1 << 1,
|
ImGuiWindowRefreshFlags_RefreshOnHover = 1 << 1,
|
||||||
ImGuiWindowRefreshFlags_RefreshOnFocus = 1 << 2,
|
ImGuiWindowRefreshFlags_RefreshOnFocus = 1 << 2,
|
||||||
}ImGuiWindowRefreshFlags_;
|
}ImGuiWindowRefreshFlags_;
|
||||||
|
typedef enum {
|
||||||
|
ImGuiWindowBgClickFlags_None = 0,
|
||||||
|
ImGuiWindowBgClickFlags_Move = 1 << 0,
|
||||||
|
}ImGuiWindowBgClickFlags_;
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ImGuiNextWindowDataFlags_None = 0,
|
ImGuiNextWindowDataFlags_None = 0,
|
||||||
ImGuiNextWindowDataFlags_HasPos = 1 << 0,
|
ImGuiNextWindowDataFlags_HasPos = 1 << 0,
|
||||||
@@ -2689,6 +2702,7 @@ typedef enum {
|
|||||||
ImGuiWindowDockStyleCol_TabDimmed,
|
ImGuiWindowDockStyleCol_TabDimmed,
|
||||||
ImGuiWindowDockStyleCol_TabDimmedSelected,
|
ImGuiWindowDockStyleCol_TabDimmedSelected,
|
||||||
ImGuiWindowDockStyleCol_TabDimmedSelectedOverline,
|
ImGuiWindowDockStyleCol_TabDimmedSelectedOverline,
|
||||||
|
ImGuiWindowDockStyleCol_UnsavedMarker,
|
||||||
ImGuiWindowDockStyleCol_COUNT
|
ImGuiWindowDockStyleCol_COUNT
|
||||||
}ImGuiWindowDockStyleCol;
|
}ImGuiWindowDockStyleCol;
|
||||||
struct ImGuiWindowDockStyle
|
struct ImGuiWindowDockStyle
|
||||||
@@ -2842,21 +2856,26 @@ struct ImGuiStackLevelInfo
|
|||||||
ImS8 DataType;
|
ImS8 DataType;
|
||||||
int DescOffset;
|
int DescOffset;
|
||||||
};
|
};
|
||||||
typedef struct ImGuiIDStackTool ImGuiIDStackTool;
|
typedef struct ImGuiDebugItemPathQuery ImGuiDebugItemPathQuery;
|
||||||
typedef struct ImVector_ImGuiStackLevelInfo {int Size;int Capacity;ImGuiStackLevelInfo* Data;} ImVector_ImGuiStackLevelInfo;
|
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
|
struct ImGuiIDStackTool
|
||||||
{
|
{
|
||||||
int LastActiveFrame;
|
|
||||||
int StackLevel;
|
|
||||||
ImGuiID QueryMainId;
|
|
||||||
ImVector_ImGuiStackLevelInfo Results;
|
|
||||||
bool QueryHookActive;
|
|
||||||
bool OptHexEncodeNonAsciiChars;
|
bool OptHexEncodeNonAsciiChars;
|
||||||
bool OptCopyToClipboardOnCtrlC;
|
bool OptCopyToClipboardOnCtrlC;
|
||||||
|
int LastActiveFrame;
|
||||||
float CopyToClipboardLastTime;
|
float CopyToClipboardLastTime;
|
||||||
ImGuiTextBuffer ResultPathsBuf;
|
|
||||||
ImGuiTextBuffer ResultTempBuf;
|
|
||||||
};
|
};
|
||||||
typedef void (*ImGuiContextHookCallback)(ImGuiContext* ctx, ImGuiContextHook* hook);
|
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;
|
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
|
struct ImGuiContext
|
||||||
{
|
{
|
||||||
bool Initialized;
|
bool Initialized;
|
||||||
|
bool WithinFrameScope;
|
||||||
|
bool WithinFrameScopeWithImplicitWindow;
|
||||||
|
bool TestEngineHookItems;
|
||||||
|
int FrameCount;
|
||||||
|
int FrameCountEnded;
|
||||||
|
int FrameCountPlatformEnded;
|
||||||
|
int FrameCountRendered;
|
||||||
|
double Time;
|
||||||
|
char ContextName[16];
|
||||||
ImGuiIO IO;
|
ImGuiIO IO;
|
||||||
ImGuiPlatformIO PlatformIO;
|
ImGuiPlatformIO PlatformIO;
|
||||||
ImGuiStyle Style;
|
ImGuiStyle Style;
|
||||||
@@ -2943,18 +2971,8 @@ struct ImGuiContext
|
|||||||
float FontRasterizerDensity;
|
float FontRasterizerDensity;
|
||||||
float CurrentDpiScale;
|
float CurrentDpiScale;
|
||||||
ImDrawListSharedData DrawListSharedData;
|
ImDrawListSharedData DrawListSharedData;
|
||||||
double Time;
|
|
||||||
int FrameCount;
|
|
||||||
int FrameCountEnded;
|
|
||||||
int FrameCountPlatformEnded;
|
|
||||||
int FrameCountRendered;
|
|
||||||
ImGuiID WithinEndChildID;
|
ImGuiID WithinEndChildID;
|
||||||
bool WithinFrameScope;
|
|
||||||
bool WithinFrameScopeWithImplicitWindow;
|
|
||||||
bool GcCompactAll;
|
|
||||||
bool TestEngineHookItems;
|
|
||||||
void* TestEngine;
|
void* TestEngine;
|
||||||
char ContextName[16];
|
|
||||||
ImVector_ImGuiInputEvent InputEventsQueue;
|
ImVector_ImGuiInputEvent InputEventsQueue;
|
||||||
ImVector_ImGuiInputEvent InputEventsTrail;
|
ImVector_ImGuiInputEvent InputEventsTrail;
|
||||||
ImGuiMouseSource InputEventsNextMouseSource;
|
ImGuiMouseSource InputEventsNextMouseSource;
|
||||||
@@ -2999,11 +3017,11 @@ struct ImGuiContext
|
|||||||
bool ActiveIdHasBeenEditedBefore;
|
bool ActiveIdHasBeenEditedBefore;
|
||||||
bool ActiveIdHasBeenEditedThisFrame;
|
bool ActiveIdHasBeenEditedThisFrame;
|
||||||
bool ActiveIdFromShortcut;
|
bool ActiveIdFromShortcut;
|
||||||
|
ImS8 ActiveIdMouseButton;
|
||||||
ImGuiID ActiveIdDisabledId;
|
ImGuiID ActiveIdDisabledId;
|
||||||
int ActiveIdMouseButton : 8;
|
|
||||||
ImVec2_c ActiveIdClickOffset;
|
ImVec2_c ActiveIdClickOffset;
|
||||||
ImGuiWindow* ActiveIdWindow;
|
|
||||||
ImGuiInputSource ActiveIdSource;
|
ImGuiInputSource ActiveIdSource;
|
||||||
|
ImGuiWindow* ActiveIdWindow;
|
||||||
ImGuiID ActiveIdPreviousFrame;
|
ImGuiID ActiveIdPreviousFrame;
|
||||||
ImGuiDeactivatedItemData DeactivatedItemData;
|
ImGuiDeactivatedItemData DeactivatedItemData;
|
||||||
ImGuiDataTypeStorage ActiveIdValueOnActivation;
|
ImGuiDataTypeStorage ActiveIdValueOnActivation;
|
||||||
@@ -3025,6 +3043,7 @@ struct ImGuiContext
|
|||||||
ImGuiLastItemData LastItemData;
|
ImGuiLastItemData LastItemData;
|
||||||
ImGuiNextWindowData NextWindowData;
|
ImGuiNextWindowData NextWindowData;
|
||||||
bool DebugShowGroupRects;
|
bool DebugShowGroupRects;
|
||||||
|
bool GcCompactAll;
|
||||||
ImGuiCol DebugFlashStyleColorIdx;
|
ImGuiCol DebugFlashStyleColorIdx;
|
||||||
ImVector_ImGuiColorMod ColorStack;
|
ImVector_ImGuiColorMod ColorStack;
|
||||||
ImVector_ImGuiStyleMod StyleVarStack;
|
ImVector_ImGuiStyleMod StyleVarStack;
|
||||||
@@ -3118,7 +3137,8 @@ struct ImGuiContext
|
|||||||
ImRect_c DragDropTargetClipRect;
|
ImRect_c DragDropTargetClipRect;
|
||||||
ImGuiID DragDropTargetId;
|
ImGuiID DragDropTargetId;
|
||||||
ImGuiID DragDropTargetFullViewport;
|
ImGuiID DragDropTargetFullViewport;
|
||||||
ImGuiDragDropFlags DragDropAcceptFlags;
|
ImGuiDragDropFlags DragDropAcceptFlagsCurr;
|
||||||
|
ImGuiDragDropFlags DragDropAcceptFlagsPrev;
|
||||||
float DragDropAcceptIdCurrRectSurface;
|
float DragDropAcceptIdCurrRectSurface;
|
||||||
ImGuiID DragDropAcceptIdCurr;
|
ImGuiID DragDropAcceptIdCurr;
|
||||||
ImGuiID DragDropAcceptIdPrev;
|
ImGuiID DragDropAcceptIdPrev;
|
||||||
@@ -3202,6 +3222,7 @@ struct ImGuiContext
|
|||||||
ImGuiID HookIdNext;
|
ImGuiID HookIdNext;
|
||||||
const char* LocalizationTable[ImGuiLocKey_COUNT];
|
const char* LocalizationTable[ImGuiLocKey_COUNT];
|
||||||
bool LogEnabled;
|
bool LogEnabled;
|
||||||
|
bool LogLineFirstItem;
|
||||||
ImGuiLogFlags LogFlags;
|
ImGuiLogFlags LogFlags;
|
||||||
ImGuiWindow* LogWindow;
|
ImGuiWindow* LogWindow;
|
||||||
ImFileHandle LogFile;
|
ImFileHandle LogFile;
|
||||||
@@ -3209,7 +3230,6 @@ struct ImGuiContext
|
|||||||
const char* LogNextPrefix;
|
const char* LogNextPrefix;
|
||||||
const char* LogNextSuffix;
|
const char* LogNextSuffix;
|
||||||
float LogLinePosY;
|
float LogLinePosY;
|
||||||
bool LogLineFirstItem;
|
|
||||||
int LogDepthRef;
|
int LogDepthRef;
|
||||||
int LogDepthToExpand;
|
int LogDepthToExpand;
|
||||||
int LogDepthToExpandDefault;
|
int LogDepthToExpandDefault;
|
||||||
@@ -3237,6 +3257,7 @@ struct ImGuiContext
|
|||||||
float DebugFlashStyleColorTime;
|
float DebugFlashStyleColorTime;
|
||||||
ImVec4_c DebugFlashStyleColorBackup;
|
ImVec4_c DebugFlashStyleColorBackup;
|
||||||
ImGuiMetricsConfig DebugMetricsConfig;
|
ImGuiMetricsConfig DebugMetricsConfig;
|
||||||
|
ImGuiDebugItemPathQuery DebugItemPathQuery;
|
||||||
ImGuiIDStackTool DebugIDStackTool;
|
ImGuiIDStackTool DebugIDStackTool;
|
||||||
ImGuiDebugAllocInfo DebugAllocInfo;
|
ImGuiDebugAllocInfo DebugAllocInfo;
|
||||||
ImGuiDockNode* DebugHoveredDockNode;
|
ImGuiDockNode* DebugHoveredDockNode;
|
||||||
@@ -3356,13 +3377,14 @@ struct ImGuiWindow
|
|||||||
short BeginOrderWithinParent;
|
short BeginOrderWithinParent;
|
||||||
short BeginOrderWithinContext;
|
short BeginOrderWithinContext;
|
||||||
short FocusOrder;
|
short FocusOrder;
|
||||||
|
ImGuiDir AutoPosLastDirection;
|
||||||
ImS8 AutoFitFramesX, AutoFitFramesY;
|
ImS8 AutoFitFramesX, AutoFitFramesY;
|
||||||
bool AutoFitOnlyGrows;
|
bool AutoFitOnlyGrows;
|
||||||
ImGuiDir AutoPosLastDirection;
|
|
||||||
ImS8 HiddenFramesCanSkipItems;
|
ImS8 HiddenFramesCanSkipItems;
|
||||||
ImS8 HiddenFramesCannotSkipItems;
|
ImS8 HiddenFramesCannotSkipItems;
|
||||||
ImS8 HiddenFramesForRenderOnly;
|
ImS8 HiddenFramesForRenderOnly;
|
||||||
ImS8 DisableInputsFrames;
|
ImS8 DisableInputsFrames;
|
||||||
|
ImGuiWindowBgClickFlags BgClickFlags : 8;
|
||||||
ImGuiCond SetWindowPosAllowFlags : 8;
|
ImGuiCond SetWindowPosAllowFlags : 8;
|
||||||
ImGuiCond SetWindowSizeAllowFlags : 8;
|
ImGuiCond SetWindowSizeAllowFlags : 8;
|
||||||
ImGuiCond SetWindowCollapsedAllowFlags : 8;
|
ImGuiCond SetWindowCollapsedAllowFlags : 8;
|
||||||
@@ -3684,6 +3706,7 @@ typedef struct ImVector_ImGuiTableHeaderData {int Size;int Capacity;ImGuiTableHe
|
|||||||
|
|
||||||
struct ImGuiTableTempData
|
struct ImGuiTableTempData
|
||||||
{
|
{
|
||||||
|
ImGuiID WindowID;
|
||||||
int TableIndex;
|
int TableIndex;
|
||||||
float LastTimeActive;
|
float LastTimeActive;
|
||||||
float AngledHeadersExtraWidth;
|
float AngledHeadersExtraWidth;
|
||||||
@@ -4398,7 +4421,7 @@ CIMGUI_API void igMemFree(void* ptr);
|
|||||||
CIMGUI_API void igUpdatePlatformWindows(void);
|
CIMGUI_API void igUpdatePlatformWindows(void);
|
||||||
CIMGUI_API void igRenderPlatformWindowsDefault(void* platform_render_arg,void* renderer_render_arg);
|
CIMGUI_API void igRenderPlatformWindowsDefault(void* platform_render_arg,void* renderer_render_arg);
|
||||||
CIMGUI_API void igDestroyPlatformWindows(void);
|
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 ImGuiViewport* igFindViewportByPlatformHandle(void* platform_handle);
|
||||||
CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void);
|
CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void);
|
||||||
CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self);
|
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 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 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 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 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 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);
|
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 void ImGuiDebugAllocInfo_destroy(ImGuiDebugAllocInfo* self);
|
||||||
CIMGUI_API ImGuiStackLevelInfo* ImGuiStackLevelInfo_ImGuiStackLevelInfo(void);
|
CIMGUI_API ImGuiStackLevelInfo* ImGuiStackLevelInfo_ImGuiStackLevelInfo(void);
|
||||||
CIMGUI_API void ImGuiStackLevelInfo_destroy(ImGuiStackLevelInfo* self);
|
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 ImGuiIDStackTool* ImGuiIDStackTool_ImGuiIDStackTool(void);
|
||||||
CIMGUI_API void ImGuiIDStackTool_destroy(ImGuiIDStackTool* self);
|
CIMGUI_API void ImGuiIDStackTool_destroy(ImGuiIDStackTool* self);
|
||||||
CIMGUI_API ImGuiContextHook* ImGuiContextHook_ImGuiContextHook(void);
|
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 void igUpdateWindowSkipRefresh(ImGuiWindow* window);
|
||||||
CIMGUI_API ImVec2_c igCalcWindowNextAutoFitSize(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 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 igIsWindowWithinBeginStackOf(ImGuiWindow* window,ImGuiWindow* potential_parent);
|
||||||
CIMGUI_API bool igIsWindowAbove(ImGuiWindow* potential_above,ImGuiWindow* potential_below);
|
CIMGUI_API bool igIsWindowAbove(ImGuiWindow* potential_above,ImGuiWindow* potential_below);
|
||||||
CIMGUI_API bool igIsWindowNavFocusable(ImGuiWindow* window);
|
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 igImFontAtlasBuildDestroy(ImFontAtlas* atlas);
|
||||||
CIMGUI_API void igImFontAtlasBuildMain(ImFontAtlas* atlas);
|
CIMGUI_API void igImFontAtlasBuildMain(ImFontAtlas* atlas);
|
||||||
CIMGUI_API void igImFontAtlasBuildSetupFontLoader(ImFontAtlas* atlas,const ImFontLoader* font_loader);
|
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 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 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);
|
CIMGUI_API void igImFontAtlasBuildClear(ImFontAtlas* atlas);
|
||||||
|
|||||||
@@ -1256,14 +1256,15 @@ local function get_nonPODused(FP)
|
|||||||
local all_type_nP = {}
|
local all_type_nP = {}
|
||||||
for k,v in pairs(typeargs) do
|
for k,v in pairs(typeargs) do
|
||||||
local k2 = k:gsub("const ","")
|
local k2 = k:gsub("const ","")
|
||||||
all_type_nP[k2] = true
|
all_type_nP[k2] = nonPOD[k2]--true
|
||||||
end
|
end
|
||||||
for k,v in pairs(typeargs_ret) do
|
for k,v in pairs(typeargs_ret) do
|
||||||
local k2 = k:gsub("const ","")
|
local k2 = k:gsub("const ","")
|
||||||
all_type_nP[k2] = true
|
all_type_nP[k2] = nonPOD[k2]--true
|
||||||
end
|
end
|
||||||
FP.nP_used = all_type_nP
|
FP.nP_used = all_type_nP
|
||||||
--M.prtable("FP.nP_used",FP.nP_used)
|
--M.prtable("FP.nP_used",FP.nP_used)
|
||||||
|
FP.structs_and_enums_table.nonPOD_used = FP.nP_used
|
||||||
FP.nP_args = typeargs
|
FP.nP_args = typeargs
|
||||||
FP.nP_ret = typeargs_ret
|
FP.nP_ret = typeargs_ret
|
||||||
--genConversions(FP)
|
--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.templated_structs = parser1.templated_structs
|
||||||
structs_and_enums_table.typenames = parser1.typenames
|
structs_and_enums_table.typenames = parser1.typenames
|
||||||
structs_and_enums_table.templates_done = parser1.templates_done
|
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/structs_and_enums.lua",serializeTableF(structs_and_enums_table))
|
||||||
save_data("./output/typedefs_dict.lua",serializeTableF(parser1.typedefs_dict))
|
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",
|
"cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
"funcname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
"location": "imgui_impl_vulkan:193",
|
"location": "imgui_impl_vulkan:202",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
"ov_cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
"signature": "(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
||||||
@@ -1353,7 +1353,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
"cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_DestroyWindow",
|
"funcname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||||
"location": "imgui_impl_vulkan:194",
|
"location": "imgui_impl_vulkan:203",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
"ov_cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
"signature": "(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||||
@@ -1375,7 +1375,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
"cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
"funcname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
"location": "imgui_impl_vulkan:199",
|
"location": "imgui_impl_vulkan:208",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
"ov_cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
"ret": "int",
|
"ret": "int",
|
||||||
"signature": "(VkPresentModeKHR)",
|
"signature": "(VkPresentModeKHR)",
|
||||||
@@ -1397,7 +1397,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
"cimguiname": "ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
"funcname": "ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||||
"location": "imgui_impl_vulkan:200",
|
"location": "imgui_impl_vulkan:209",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
"ov_cimguiname": "ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||||
"ret": "ImGui_ImplVulkanH_Window*",
|
"ret": "ImGui_ImplVulkanH_Window*",
|
||||||
"signature": "(ImGuiViewport*)",
|
"signature": "(ImGuiViewport*)",
|
||||||
@@ -1419,7 +1419,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
"cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
"funcname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
"location": "imgui_impl_vulkan:197",
|
"location": "imgui_impl_vulkan:206",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
"ret": "VkPhysicalDevice",
|
"ret": "VkPhysicalDevice",
|
||||||
"signature": "(VkInstance)",
|
"signature": "(VkInstance)",
|
||||||
@@ -1453,7 +1453,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
"cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_SelectPresentMode",
|
"funcname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
"location": "imgui_impl_vulkan:196",
|
"location": "imgui_impl_vulkan:205",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
"ret": "VkPresentModeKHR",
|
"ret": "VkPresentModeKHR",
|
||||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||||
@@ -1475,7 +1475,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
"cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
"funcname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
"location": "imgui_impl_vulkan:198",
|
"location": "imgui_impl_vulkan:207",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
"ov_cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
"ret": "uint32_t",
|
"ret": "uint32_t",
|
||||||
"signature": "(VkPhysicalDevice)",
|
"signature": "(VkPhysicalDevice)",
|
||||||
@@ -1513,7 +1513,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
"cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
"funcname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
"location": "imgui_impl_vulkan:195",
|
"location": "imgui_impl_vulkan:204",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
"ov_cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
"ret": "VkSurfaceFormatKHR",
|
"ret": "VkSurfaceFormatKHR",
|
||||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||||
@@ -1531,7 +1531,7 @@
|
|||||||
"constructor": true,
|
"constructor": true,
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkanH_Window",
|
"funcname": "ImGui_ImplVulkanH_Window",
|
||||||
"location": "imgui_impl_vulkan:242",
|
"location": "imgui_impl_vulkan:251",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
"ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
"stname": "ImGui_ImplVulkanH_Window"
|
"stname": "ImGui_ImplVulkanH_Window"
|
||||||
@@ -1550,7 +1550,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
"cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"destructor": true,
|
"destructor": true,
|
||||||
"location": "imgui_impl_vulkan:242",
|
"location": "imgui_impl_vulkan:251",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
"ov_cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(ImGui_ImplVulkanH_Window*)",
|
"signature": "(ImGui_ImplVulkanH_Window*)",
|
||||||
@@ -1580,7 +1580,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_AddTexture",
|
"cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_AddTexture",
|
"funcname": "ImGui_ImplVulkan_AddTexture",
|
||||||
"location": "imgui_impl_vulkan:150",
|
"location": "imgui_impl_vulkan:159",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_AddTexture",
|
"ov_cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||||
"ret": "VkDescriptorSet",
|
"ret": "VkDescriptorSet",
|
||||||
"signature": "(VkSampler,VkImageView,VkImageLayout)",
|
"signature": "(VkSampler,VkImageView,VkImageLayout)",
|
||||||
@@ -1602,7 +1602,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
"cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_CreateMainPipeline",
|
"funcname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
"location": "imgui_impl_vulkan:142",
|
"location": "imgui_impl_vulkan:151",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
"ov_cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(const ImGui_ImplVulkan_PipelineInfo*)",
|
"signature": "(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||||
@@ -1624,7 +1624,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_Init",
|
"cimguiname": "ImGui_ImplVulkan_Init",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_Init",
|
"funcname": "ImGui_ImplVulkan_Init",
|
||||||
"location": "imgui_impl_vulkan:133",
|
"location": "imgui_impl_vulkan:142",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_Init",
|
"ov_cimguiname": "ImGui_ImplVulkan_Init",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(ImGui_ImplVulkan_InitInfo*)",
|
"signature": "(ImGui_ImplVulkan_InitInfo*)",
|
||||||
@@ -1656,7 +1656,7 @@
|
|||||||
"user_data": "nullptr"
|
"user_data": "nullptr"
|
||||||
},
|
},
|
||||||
"funcname": "ImGui_ImplVulkan_LoadFunctions",
|
"funcname": "ImGui_ImplVulkan_LoadFunctions",
|
||||||
"location": "imgui_impl_vulkan:155",
|
"location": "imgui_impl_vulkan:164",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_LoadFunctions",
|
"ov_cimguiname": "ImGui_ImplVulkan_LoadFunctions",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
"signature": "(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||||
@@ -1673,7 +1673,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_NewFrame",
|
"cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_NewFrame",
|
"funcname": "ImGui_ImplVulkan_NewFrame",
|
||||||
"location": "imgui_impl_vulkan:135",
|
"location": "imgui_impl_vulkan:144",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_NewFrame",
|
"ov_cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -1695,7 +1695,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
"cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_RemoveTexture",
|
"funcname": "ImGui_ImplVulkan_RemoveTexture",
|
||||||
"location": "imgui_impl_vulkan:151",
|
"location": "imgui_impl_vulkan:160",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
"ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(VkDescriptorSet)",
|
"signature": "(VkDescriptorSet)",
|
||||||
@@ -1727,7 +1727,7 @@
|
|||||||
"pipeline": "0ULL"
|
"pipeline": "0ULL"
|
||||||
},
|
},
|
||||||
"funcname": "ImGui_ImplVulkan_RenderDrawData",
|
"funcname": "ImGui_ImplVulkan_RenderDrawData",
|
||||||
"location": "imgui_impl_vulkan:136",
|
"location": "imgui_impl_vulkan:145",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_RenderDrawData",
|
"ov_cimguiname": "ImGui_ImplVulkan_RenderDrawData",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
"signature": "(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||||
@@ -1749,7 +1749,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
"cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_SetMinImageCount",
|
"funcname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||||
"location": "imgui_impl_vulkan:137",
|
"location": "imgui_impl_vulkan:146",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
"ov_cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(uint32_t)",
|
"signature": "(uint32_t)",
|
||||||
@@ -1766,7 +1766,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_Shutdown",
|
"cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_Shutdown",
|
"funcname": "ImGui_ImplVulkan_Shutdown",
|
||||||
"location": "imgui_impl_vulkan:134",
|
"location": "imgui_impl_vulkan:143",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_Shutdown",
|
"ov_cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -1788,7 +1788,7 @@
|
|||||||
"cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
"cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplVulkan_UpdateTexture",
|
"funcname": "ImGui_ImplVulkan_UpdateTexture",
|
||||||
"location": "imgui_impl_vulkan:145",
|
"location": "imgui_impl_vulkan:154",
|
||||||
"ov_cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
"ov_cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(ImTextureData*)",
|
"signature": "(ImTextureData*)",
|
||||||
|
|||||||
@@ -1141,7 +1141,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
funcname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
location="imgui_impl_vulkan:193",
|
location="imgui_impl_vulkan:202",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
ov_cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t,VkImageUsageFlags)",
|
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",
|
cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_DestroyWindow",
|
funcname="ImGui_ImplVulkanH_DestroyWindow",
|
||||||
location="imgui_impl_vulkan:194",
|
location="imgui_impl_vulkan:203",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
ov_cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
signature="(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||||
@@ -1188,7 +1188,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
funcname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
location="imgui_impl_vulkan:199",
|
location="imgui_impl_vulkan:208",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
ov_cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||||
ret="int",
|
ret="int",
|
||||||
signature="(VkPresentModeKHR)",
|
signature="(VkPresentModeKHR)",
|
||||||
@@ -1207,7 +1207,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
cimguiname="ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
funcname="ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||||
location="imgui_impl_vulkan:200",
|
location="imgui_impl_vulkan:209",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
ov_cimguiname="ImGui_ImplVulkanH_GetWindowDataFromViewport",
|
||||||
ret="ImGui_ImplVulkanH_Window*",
|
ret="ImGui_ImplVulkanH_Window*",
|
||||||
signature="(ImGuiViewport*)",
|
signature="(ImGuiViewport*)",
|
||||||
@@ -1226,7 +1226,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
funcname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
location="imgui_impl_vulkan:197",
|
location="imgui_impl_vulkan:206",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
ov_cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||||
ret="VkPhysicalDevice",
|
ret="VkPhysicalDevice",
|
||||||
signature="(VkInstance)",
|
signature="(VkInstance)",
|
||||||
@@ -1254,7 +1254,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_SelectPresentMode",
|
funcname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
location="imgui_impl_vulkan:196",
|
location="imgui_impl_vulkan:205",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
ov_cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||||
ret="VkPresentModeKHR",
|
ret="VkPresentModeKHR",
|
||||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||||
@@ -1273,7 +1273,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
funcname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
location="imgui_impl_vulkan:198",
|
location="imgui_impl_vulkan:207",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
ov_cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||||
ret="uint32_t",
|
ret="uint32_t",
|
||||||
signature="(VkPhysicalDevice)",
|
signature="(VkPhysicalDevice)",
|
||||||
@@ -1304,7 +1304,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
funcname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
location="imgui_impl_vulkan:195",
|
location="imgui_impl_vulkan:204",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
ov_cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||||
ret="VkSurfaceFormatKHR",
|
ret="VkSurfaceFormatKHR",
|
||||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||||
@@ -1321,7 +1321,7 @@ local t={
|
|||||||
constructor=true,
|
constructor=true,
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkanH_Window",
|
funcname="ImGui_ImplVulkanH_Window",
|
||||||
location="imgui_impl_vulkan:242",
|
location="imgui_impl_vulkan:251",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||||
signature="()",
|
signature="()",
|
||||||
stname="ImGui_ImplVulkanH_Window"},
|
stname="ImGui_ImplVulkanH_Window"},
|
||||||
@@ -1337,7 +1337,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||||
defaults={},
|
defaults={},
|
||||||
destructor=true,
|
destructor=true,
|
||||||
location="imgui_impl_vulkan:242",
|
location="imgui_impl_vulkan:251",
|
||||||
ov_cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
ov_cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(ImGui_ImplVulkanH_Window*)",
|
signature="(ImGui_ImplVulkanH_Window*)",
|
||||||
@@ -1362,7 +1362,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_AddTexture",
|
cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_AddTexture",
|
funcname="ImGui_ImplVulkan_AddTexture",
|
||||||
location="imgui_impl_vulkan:150",
|
location="imgui_impl_vulkan:159",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_AddTexture",
|
ov_cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||||
ret="VkDescriptorSet",
|
ret="VkDescriptorSet",
|
||||||
signature="(VkSampler,VkImageView,VkImageLayout)",
|
signature="(VkSampler,VkImageView,VkImageLayout)",
|
||||||
@@ -1381,7 +1381,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_CreateMainPipeline",
|
funcname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
location="imgui_impl_vulkan:142",
|
location="imgui_impl_vulkan:151",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
ov_cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(const ImGui_ImplVulkan_PipelineInfo*)",
|
signature="(const ImGui_ImplVulkan_PipelineInfo*)",
|
||||||
@@ -1400,7 +1400,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_Init",
|
cimguiname="ImGui_ImplVulkan_Init",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_Init",
|
funcname="ImGui_ImplVulkan_Init",
|
||||||
location="imgui_impl_vulkan:133",
|
location="imgui_impl_vulkan:142",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_Init",
|
ov_cimguiname="ImGui_ImplVulkan_Init",
|
||||||
ret="bool",
|
ret="bool",
|
||||||
signature="(ImGui_ImplVulkan_InitInfo*)",
|
signature="(ImGui_ImplVulkan_InitInfo*)",
|
||||||
@@ -1426,7 +1426,7 @@ local t={
|
|||||||
defaults={
|
defaults={
|
||||||
user_data="nullptr"},
|
user_data="nullptr"},
|
||||||
funcname="ImGui_ImplVulkan_LoadFunctions",
|
funcname="ImGui_ImplVulkan_LoadFunctions",
|
||||||
location="imgui_impl_vulkan:155",
|
location="imgui_impl_vulkan:164",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_LoadFunctions",
|
ov_cimguiname="ImGui_ImplVulkan_LoadFunctions",
|
||||||
ret="bool",
|
ret="bool",
|
||||||
signature="(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
signature="(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||||
@@ -1442,7 +1442,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_NewFrame",
|
cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_NewFrame",
|
funcname="ImGui_ImplVulkan_NewFrame",
|
||||||
location="imgui_impl_vulkan:135",
|
location="imgui_impl_vulkan:144",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_NewFrame",
|
ov_cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="()",
|
signature="()",
|
||||||
@@ -1461,7 +1461,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_RemoveTexture",
|
funcname="ImGui_ImplVulkan_RemoveTexture",
|
||||||
location="imgui_impl_vulkan:151",
|
location="imgui_impl_vulkan:160",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
ov_cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(VkDescriptorSet)",
|
signature="(VkDescriptorSet)",
|
||||||
@@ -1487,7 +1487,7 @@ local t={
|
|||||||
defaults={
|
defaults={
|
||||||
pipeline="0ULL"},
|
pipeline="0ULL"},
|
||||||
funcname="ImGui_ImplVulkan_RenderDrawData",
|
funcname="ImGui_ImplVulkan_RenderDrawData",
|
||||||
location="imgui_impl_vulkan:136",
|
location="imgui_impl_vulkan:145",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_RenderDrawData",
|
ov_cimguiname="ImGui_ImplVulkan_RenderDrawData",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
signature="(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||||
@@ -1506,7 +1506,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_SetMinImageCount",
|
funcname="ImGui_ImplVulkan_SetMinImageCount",
|
||||||
location="imgui_impl_vulkan:137",
|
location="imgui_impl_vulkan:146",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
ov_cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(uint32_t)",
|
signature="(uint32_t)",
|
||||||
@@ -1522,7 +1522,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_Shutdown",
|
cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_Shutdown",
|
funcname="ImGui_ImplVulkan_Shutdown",
|
||||||
location="imgui_impl_vulkan:134",
|
location="imgui_impl_vulkan:143",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_Shutdown",
|
ov_cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="()",
|
signature="()",
|
||||||
@@ -1541,7 +1541,7 @@ local t={
|
|||||||
cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||||
defaults={},
|
defaults={},
|
||||||
funcname="ImGui_ImplVulkan_UpdateTexture",
|
funcname="ImGui_ImplVulkan_UpdateTexture",
|
||||||
location="imgui_impl_vulkan:145",
|
location="imgui_impl_vulkan:154",
|
||||||
ov_cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
ov_cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||||
ret="void",
|
ret="void",
|
||||||
signature="(ImTextureData*)",
|
signature="(ImTextureData*)",
|
||||||
|
|||||||
@@ -730,33 +730,38 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 56,
|
"calc_value": 56,
|
||||||
"name": "ImGuiCol_UnsavedMarker",
|
"name": "ImGuiCol_DragDropTargetBg",
|
||||||
"value": "56"
|
"value": "56"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 57,
|
"calc_value": 57,
|
||||||
"name": "ImGuiCol_NavCursor",
|
"name": "ImGuiCol_UnsavedMarker",
|
||||||
"value": "57"
|
"value": "57"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 58,
|
"calc_value": 58,
|
||||||
"name": "ImGuiCol_NavWindowingHighlight",
|
"name": "ImGuiCol_NavCursor",
|
||||||
"value": "58"
|
"value": "58"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 59,
|
"calc_value": 59,
|
||||||
"name": "ImGuiCol_NavWindowingDimBg",
|
"name": "ImGuiCol_NavWindowingHighlight",
|
||||||
"value": "59"
|
"value": "59"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 60,
|
"calc_value": 60,
|
||||||
"name": "ImGuiCol_ModalWindowDimBg",
|
"name": "ImGuiCol_NavWindowingDimBg",
|
||||||
"value": "60"
|
"value": "60"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 61,
|
"calc_value": 61,
|
||||||
"name": "ImGuiCol_COUNT",
|
"name": "ImGuiCol_ModalWindowDimBg",
|
||||||
"value": "61"
|
"value": "61"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"calc_value": 62,
|
||||||
|
"name": "ImGuiCol_COUNT",
|
||||||
|
"value": "62"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiColorEditFlags_": [
|
"ImGuiColorEditFlags_": [
|
||||||
@@ -1523,6 +1528,11 @@
|
|||||||
"name": "ImGuiDragDropFlags_AcceptNoPreviewTooltip",
|
"name": "ImGuiDragDropFlags_AcceptNoPreviewTooltip",
|
||||||
"value": "1 << 12"
|
"value": "1 << 12"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"calc_value": 8192,
|
||||||
|
"name": "ImGuiDragDropFlags_AcceptDrawAsHovered",
|
||||||
|
"value": "1 << 13"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 3072,
|
"calc_value": 3072,
|
||||||
"name": "ImGuiDragDropFlags_AcceptPeekOnly",
|
"name": "ImGuiDragDropFlags_AcceptPeekOnly",
|
||||||
@@ -3473,6 +3483,11 @@
|
|||||||
"calc_value": 65536,
|
"calc_value": 65536,
|
||||||
"name": "ImGuiMultiSelectFlags_NavWrapX",
|
"name": "ImGuiMultiSelectFlags_NavWrapX",
|
||||||
"value": "1 << 16"
|
"value": "1 << 16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"calc_value": 131072,
|
||||||
|
"name": "ImGuiMultiSelectFlags_NoSelectOnRightClick",
|
||||||
|
"value": "1 << 17"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiNavLayer": [
|
"ImGuiNavLayer": [
|
||||||
@@ -5079,6 +5094,18 @@
|
|||||||
"value": "1 << 13"
|
"value": "1 << 13"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"ImGuiWindowBgClickFlags_": [
|
||||||
|
{
|
||||||
|
"calc_value": 0,
|
||||||
|
"name": "ImGuiWindowBgClickFlags_None",
|
||||||
|
"value": "0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"calc_value": 1,
|
||||||
|
"name": "ImGuiWindowBgClickFlags_Move",
|
||||||
|
"value": "1 << 0"
|
||||||
|
}
|
||||||
|
],
|
||||||
"ImGuiWindowDockStyleCol": [
|
"ImGuiWindowDockStyleCol": [
|
||||||
{
|
{
|
||||||
"calc_value": 0,
|
"calc_value": 0,
|
||||||
@@ -5122,8 +5149,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 8,
|
"calc_value": 8,
|
||||||
"name": "ImGuiWindowDockStyleCol_COUNT",
|
"name": "ImGuiWindowDockStyleCol_UnsavedMarker",
|
||||||
"value": "8"
|
"value": "8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"calc_value": 9,
|
||||||
|
"name": "ImGuiWindowDockStyleCol_COUNT",
|
||||||
|
"value": "9"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiWindowFlags_": [
|
"ImGuiWindowFlags_": [
|
||||||
@@ -5350,218 +5382,220 @@
|
|||||||
},
|
},
|
||||||
"locations": {
|
"locations": {
|
||||||
"ImBitVector": "imgui_internal:663",
|
"ImBitVector": "imgui_internal:663",
|
||||||
"ImColor": "imgui:3057",
|
"ImColor": "imgui:3065",
|
||||||
"ImDrawChannel": "imgui:3305",
|
"ImDrawChannel": "imgui:3314",
|
||||||
"ImDrawCmd": "imgui:3261",
|
"ImDrawCmd": "imgui:3270",
|
||||||
"ImDrawCmdHeader": "imgui:3297",
|
"ImDrawCmdHeader": "imgui:3306",
|
||||||
"ImDrawData": "imgui:3526",
|
"ImDrawData": "imgui:3535",
|
||||||
"ImDrawDataBuilder": "imgui_internal:891",
|
"ImDrawDataBuilder": "imgui_internal:891",
|
||||||
"ImDrawFlags_": "imgui:3330",
|
"ImDrawFlags_": "imgui:3339",
|
||||||
"ImDrawList": "imgui:3368",
|
"ImDrawList": "imgui:3377",
|
||||||
"ImDrawListFlags_": "imgui:3350",
|
"ImDrawListFlags_": "imgui:3359",
|
||||||
"ImDrawListSharedData": "imgui_internal:864",
|
"ImDrawListSharedData": "imgui_internal:864",
|
||||||
"ImDrawListSplitter": "imgui:3313",
|
"ImDrawListSplitter": "imgui:3322",
|
||||||
"ImDrawTextFlags_": "imgui_internal:445",
|
"ImDrawTextFlags_": "imgui_internal:445",
|
||||||
"ImDrawVert": "imgui:3282",
|
"ImDrawVert": "imgui:3291",
|
||||||
"ImFont": "imgui:3947",
|
"ImFont": "imgui:3956",
|
||||||
"ImFontAtlas": "imgui:3750",
|
"ImFontAtlas": "imgui:3759",
|
||||||
"ImFontAtlasBuilder": "imgui_internal:4111",
|
"ImFontAtlasBuilder": "imgui_internal:4132",
|
||||||
"ImFontAtlasFlags_": "imgui:3723",
|
"ImFontAtlasFlags_": "imgui:3732",
|
||||||
"ImFontAtlasPostProcessData": "imgui_internal:4084",
|
"ImFontAtlasPostProcessData": "imgui_internal:4105",
|
||||||
"ImFontAtlasRect": "imgui:3713",
|
"ImFontAtlasRect": "imgui:3722",
|
||||||
"ImFontAtlasRectEntry": "imgui_internal:4076",
|
"ImFontAtlasRectEntry": "imgui_internal:4097",
|
||||||
"ImFontBaked": "imgui:3899",
|
"ImFontBaked": "imgui:3908",
|
||||||
"ImFontConfig": "imgui:3635",
|
"ImFontConfig": "imgui:3644",
|
||||||
"ImFontFlags_": "imgui:3934",
|
"ImFontFlags_": "imgui:3943",
|
||||||
"ImFontGlyph": "imgui:3675",
|
"ImFontGlyph": "imgui:3684",
|
||||||
"ImFontGlyphRangesBuilder": "imgui:3691",
|
"ImFontGlyphRangesBuilder": "imgui:3700",
|
||||||
"ImFontLoader": "imgui_internal:4025",
|
"ImFontLoader": "imgui_internal:4046",
|
||||||
"ImFontStackData": "imgui_internal:899",
|
"ImFontStackData": "imgui_internal:899",
|
||||||
"ImGuiActivateFlags_": "imgui_internal:1689",
|
"ImGuiActivateFlags_": "imgui_internal:1696",
|
||||||
"ImGuiAxis": "imgui_internal:1149",
|
"ImGuiAxis": "imgui_internal:1149",
|
||||||
"ImGuiBackendFlags_": "imgui:1785",
|
"ImGuiBackendFlags_": "imgui:1789",
|
||||||
"ImGuiBoxSelectState": "imgui_internal:1880",
|
"ImGuiBoxSelectState": "imgui_internal:1887",
|
||||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:1036",
|
"ImGuiButtonFlagsPrivate_": "imgui_internal:1036",
|
||||||
"ImGuiButtonFlags_": "imgui:1930",
|
"ImGuiButtonFlags_": "imgui:1935",
|
||||||
"ImGuiChildFlags_": "imgui:1242",
|
"ImGuiChildFlags_": "imgui:1245",
|
||||||
"ImGuiCol_": "imgui:1802",
|
"ImGuiCol_": "imgui:1806",
|
||||||
"ImGuiColorEditFlags_": "imgui:1941",
|
"ImGuiColorEditFlags_": "imgui:1946",
|
||||||
"ImGuiColorMod": "imgui_internal:919",
|
"ImGuiColorMod": "imgui_internal:919",
|
||||||
"ImGuiComboFlagsPrivate_": "imgui_internal:1063",
|
"ImGuiComboFlagsPrivate_": "imgui_internal:1063",
|
||||||
"ImGuiComboFlags_": "imgui:1407",
|
"ImGuiComboFlags_": "imgui:1410",
|
||||||
"ImGuiComboPreviewData": "imgui_internal:1163",
|
"ImGuiComboPreviewData": "imgui_internal:1163",
|
||||||
"ImGuiCond_": "imgui:2055",
|
"ImGuiCond_": "imgui:2060",
|
||||||
"ImGuiConfigFlags_": "imgui:1756",
|
"ImGuiConfigFlags_": "imgui:1760",
|
||||||
"ImGuiContext": "imgui_internal:2356",
|
"ImGuiContext": "imgui_internal:2371",
|
||||||
"ImGuiContextHook": "imgui_internal:2341",
|
"ImGuiContextHook": "imgui_internal:2356",
|
||||||
"ImGuiContextHookType": "imgui_internal:2339",
|
"ImGuiContextHookType": "imgui_internal:2354",
|
||||||
"ImGuiDataAuthority_": "imgui_internal:1993",
|
"ImGuiDataAuthority_": "imgui_internal:2000",
|
||||||
"ImGuiDataTypeInfo": "imgui_internal:945",
|
"ImGuiDataTypeInfo": "imgui_internal:945",
|
||||||
"ImGuiDataTypePrivate_": "imgui_internal:954",
|
"ImGuiDataTypePrivate_": "imgui_internal:954",
|
||||||
"ImGuiDataTypeStorage": "imgui_internal:939",
|
"ImGuiDataTypeStorage": "imgui_internal:939",
|
||||||
"ImGuiDataType_": "imgui:1562",
|
"ImGuiDataType_": "imgui:1566",
|
||||||
"ImGuiDeactivatedItemData": "imgui_internal:1454",
|
"ImGuiDeactivatedItemData": "imgui_internal:1461",
|
||||||
"ImGuiDebugAllocEntry": "imgui_internal:2270",
|
"ImGuiDebugAllocEntry": "imgui_internal:2278",
|
||||||
"ImGuiDebugAllocInfo": "imgui_internal:2277",
|
"ImGuiDebugAllocInfo": "imgui_internal:2285",
|
||||||
"ImGuiDebugLogFlags_": "imgui_internal:2248",
|
"ImGuiDebugItemPathQuery": "imgui_internal:2325",
|
||||||
"ImGuiDir": "imgui:1580",
|
"ImGuiDebugLogFlags_": "imgui_internal:2256",
|
||||||
"ImGuiDockContext": "imgui_internal:2095",
|
"ImGuiDir": "imgui:1584",
|
||||||
"ImGuiDockNode": "imgui_internal:2009",
|
"ImGuiDockContext": "imgui_internal:2103",
|
||||||
"ImGuiDockNodeFlagsPrivate_": "imgui_internal:1961",
|
"ImGuiDockNode": "imgui_internal:2016",
|
||||||
"ImGuiDockNodeFlags_": "imgui:1515",
|
"ImGuiDockNodeFlagsPrivate_": "imgui_internal:1968",
|
||||||
"ImGuiDockNodeState": "imgui_internal:2000",
|
"ImGuiDockNodeFlags_": "imgui:1518",
|
||||||
"ImGuiDragDropFlags_": "imgui:1534",
|
"ImGuiDockNodeState": "imgui_internal:2007",
|
||||||
"ImGuiErrorRecoveryState": "imgui_internal:1410",
|
"ImGuiDragDropFlags_": "imgui:1537",
|
||||||
|
"ImGuiErrorRecoveryState": "imgui_internal:1417",
|
||||||
"ImGuiFocusRequestFlags_": "imgui_internal:1109",
|
"ImGuiFocusRequestFlags_": "imgui_internal:1109",
|
||||||
"ImGuiFocusScopeData": "imgui_internal:1777",
|
"ImGuiFocusScopeData": "imgui_internal:1784",
|
||||||
"ImGuiFocusedFlags_": "imgui:1461",
|
"ImGuiFocusedFlags_": "imgui:1464",
|
||||||
"ImGuiFreeTypeLoaderFlags_": "imgui_freetype:29",
|
"ImGuiFreeTypeLoaderFlags_": "imgui_freetype:29",
|
||||||
"ImGuiGroupData": "imgui_internal:1176",
|
"ImGuiGroupData": "imgui_internal:1176",
|
||||||
"ImGuiHoveredFlagsPrivate_": "imgui_internal:1019",
|
"ImGuiHoveredFlagsPrivate_": "imgui_internal:1019",
|
||||||
"ImGuiHoveredFlags_": "imgui:1475",
|
"ImGuiHoveredFlags_": "imgui:1478",
|
||||||
"ImGuiIDStackTool": "imgui_internal:2318",
|
"ImGuiIDStackTool": "imgui_internal:2339",
|
||||||
"ImGuiIO": "imgui:2456",
|
"ImGuiIO": "imgui:2464",
|
||||||
"ImGuiInputEvent": "imgui_internal:1549",
|
"ImGuiInputEvent": "imgui_internal:1556",
|
||||||
"ImGuiInputEventAppFocused": "imgui_internal:1547",
|
"ImGuiInputEventAppFocused": "imgui_internal:1554",
|
||||||
"ImGuiInputEventKey": "imgui_internal:1545",
|
"ImGuiInputEventKey": "imgui_internal:1552",
|
||||||
"ImGuiInputEventMouseButton": "imgui_internal:1543",
|
"ImGuiInputEventMouseButton": "imgui_internal:1550",
|
||||||
"ImGuiInputEventMousePos": "imgui_internal:1541",
|
"ImGuiInputEventMousePos": "imgui_internal:1548",
|
||||||
"ImGuiInputEventMouseViewport": "imgui_internal:1544",
|
"ImGuiInputEventMouseViewport": "imgui_internal:1551",
|
||||||
"ImGuiInputEventMouseWheel": "imgui_internal:1542",
|
"ImGuiInputEventMouseWheel": "imgui_internal:1549",
|
||||||
"ImGuiInputEventText": "imgui_internal:1546",
|
"ImGuiInputEventText": "imgui_internal:1553",
|
||||||
"ImGuiInputEventType": "imgui_internal:1517",
|
"ImGuiInputEventType": "imgui_internal:1524",
|
||||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1616",
|
"ImGuiInputFlagsPrivate_": "imgui_internal:1623",
|
||||||
"ImGuiInputFlags_": "imgui:1733",
|
"ImGuiInputFlags_": "imgui:1737",
|
||||||
"ImGuiInputSource": "imgui_internal:1530",
|
"ImGuiInputSource": "imgui_internal:1537",
|
||||||
"ImGuiInputTextCallbackData": "imgui:2719",
|
"ImGuiInputTextCallbackData": "imgui:2727",
|
||||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1212",
|
"ImGuiInputTextDeactivatedState": "imgui_internal:1213",
|
||||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:1027",
|
"ImGuiInputTextFlagsPrivate_": "imgui_internal:1027",
|
||||||
"ImGuiInputTextFlags_": "imgui:1276",
|
"ImGuiInputTextFlags_": "imgui:1279",
|
||||||
"ImGuiInputTextState": "imgui_internal:1234",
|
"ImGuiInputTextState": "imgui_internal:1235",
|
||||||
"ImGuiItemFlagsPrivate_": "imgui_internal:967",
|
"ImGuiItemFlagsPrivate_": "imgui_internal:967",
|
||||||
"ImGuiItemFlags_": "imgui:1263",
|
"ImGuiItemFlags_": "imgui:1266",
|
||||||
"ImGuiItemStatusFlags_": "imgui_internal:992",
|
"ImGuiItemStatusFlags_": "imgui_internal:992",
|
||||||
"ImGuiKey": "imgui:1604",
|
"ImGuiKey": "imgui:1608",
|
||||||
"ImGuiKeyData": "imgui:2448",
|
"ImGuiKeyData": "imgui:2456",
|
||||||
"ImGuiKeyOwnerData": "imgui_internal:1603",
|
"ImGuiKeyOwnerData": "imgui_internal:1610",
|
||||||
"ImGuiKeyRoutingData": "imgui_internal:1577",
|
"ImGuiKeyRoutingData": "imgui_internal:1584",
|
||||||
"ImGuiKeyRoutingTable": "imgui_internal:1591",
|
"ImGuiKeyRoutingTable": "imgui_internal:1598",
|
||||||
"ImGuiLastItemData": "imgui_internal:1379",
|
"ImGuiLastItemData": "imgui_internal:1386",
|
||||||
"ImGuiLayoutType_": "imgui_internal:1130",
|
"ImGuiLayoutType_": "imgui_internal:1130",
|
||||||
"ImGuiListClipper": "imgui:2956",
|
"ImGuiListClipper": "imgui:2964",
|
||||||
"ImGuiListClipperData": "imgui_internal:1673",
|
"ImGuiListClipperData": "imgui_internal:1680",
|
||||||
"ImGuiListClipperFlags_": "imgui:2930",
|
"ImGuiListClipperFlags_": "imgui:2938",
|
||||||
"ImGuiListClipperRange": "imgui_internal:1660",
|
"ImGuiListClipperRange": "imgui_internal:1667",
|
||||||
"ImGuiLocEntry": "imgui_internal:2221",
|
"ImGuiLocEntry": "imgui_internal:2229",
|
||||||
"ImGuiLocKey": "imgui_internal:2203",
|
"ImGuiLocKey": "imgui_internal:2211",
|
||||||
"ImGuiLogFlags_": "imgui_internal:1137",
|
"ImGuiLogFlags_": "imgui_internal:1137",
|
||||||
"ImGuiMenuColumns": "imgui_internal:1194",
|
"ImGuiMenuColumns": "imgui_internal:1195",
|
||||||
"ImGuiMetricsConfig": "imgui_internal:2287",
|
"ImGuiMetricsConfig": "imgui_internal:2295",
|
||||||
"ImGuiMouseButton_": "imgui:2013",
|
"ImGuiMouseButton_": "imgui:2018",
|
||||||
"ImGuiMouseCursor_": "imgui:2023",
|
"ImGuiMouseCursor_": "imgui:2028",
|
||||||
"ImGuiMouseSource": "imgui:2044",
|
"ImGuiMouseSource": "imgui:2049",
|
||||||
"ImGuiMultiSelectFlags_": "imgui:3115",
|
"ImGuiMultiSelectFlags_": "imgui:3123",
|
||||||
"ImGuiMultiSelectIO": "imgui:3142",
|
"ImGuiMultiSelectIO": "imgui:3151",
|
||||||
"ImGuiMultiSelectState": "imgui_internal:1937",
|
"ImGuiMultiSelectState": "imgui_internal:1944",
|
||||||
"ImGuiMultiSelectTempData": "imgui_internal:1912",
|
"ImGuiMultiSelectTempData": "imgui_internal:1919",
|
||||||
"ImGuiNavItemData": "imgui_internal:1760",
|
"ImGuiNavItemData": "imgui_internal:1767",
|
||||||
"ImGuiNavLayer": "imgui_internal:1752",
|
"ImGuiNavLayer": "imgui_internal:1759",
|
||||||
"ImGuiNavMoveFlags_": "imgui_internal:1730",
|
"ImGuiNavMoveFlags_": "imgui_internal:1737",
|
||||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1715",
|
"ImGuiNavRenderCursorFlags_": "imgui_internal:1722",
|
||||||
"ImGuiNextItemData": "imgui_internal:1358",
|
"ImGuiNextItemData": "imgui_internal:1365",
|
||||||
"ImGuiNextItemDataFlags_": "imgui_internal:1348",
|
"ImGuiNextItemDataFlags_": "imgui_internal:1355",
|
||||||
"ImGuiNextWindowData": "imgui_internal:1316",
|
"ImGuiNextWindowData": "imgui_internal:1323",
|
||||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1296",
|
"ImGuiNextWindowDataFlags_": "imgui_internal:1303",
|
||||||
"ImGuiOldColumnData": "imgui_internal:1845",
|
"ImGuiOldColumnData": "imgui_internal:1852",
|
||||||
"ImGuiOldColumnFlags_": "imgui_internal:1825",
|
"ImGuiOldColumnFlags_": "imgui_internal:1832",
|
||||||
"ImGuiOldColumns": "imgui_internal:1855",
|
"ImGuiOldColumns": "imgui_internal:1862",
|
||||||
"ImGuiOnceUponAFrame": "imgui:2819",
|
"ImGuiOnceUponAFrame": "imgui:2827",
|
||||||
"ImGuiPayload": "imgui:2784",
|
"ImGuiPayload": "imgui:2792",
|
||||||
"ImGuiPlatformIO": "imgui:4132",
|
"ImGuiPlatformIO": "imgui:4141",
|
||||||
"ImGuiPlatformImeData": "imgui:4254",
|
"ImGuiPlatformImeData": "imgui:4263",
|
||||||
"ImGuiPlatformMonitor": "imgui:4244",
|
"ImGuiPlatformMonitor": "imgui:4253",
|
||||||
"ImGuiPlotType": "imgui_internal:1156",
|
"ImGuiPlotType": "imgui_internal:1156",
|
||||||
"ImGuiPopupData": "imgui_internal:1474",
|
"ImGuiPopupData": "imgui_internal:1481",
|
||||||
"ImGuiPopupFlags_": "imgui:1371",
|
"ImGuiPopupFlags_": "imgui:1374",
|
||||||
"ImGuiPopupPositionPolicy": "imgui_internal:1466",
|
"ImGuiPopupPositionPolicy": "imgui_internal:1473",
|
||||||
"ImGuiPtrOrIndex": "imgui_internal:1444",
|
"ImGuiPtrOrIndex": "imgui_internal:1451",
|
||||||
"ImGuiScrollFlags_": "imgui_internal:1701",
|
"ImGuiScrollFlags_": "imgui_internal:1708",
|
||||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:1076",
|
"ImGuiSelectableFlagsPrivate_": "imgui_internal:1076",
|
||||||
"ImGuiSelectableFlags_": "imgui:1389",
|
"ImGuiSelectableFlags_": "imgui:1392",
|
||||||
"ImGuiSelectionBasicStorage": "imgui:3188",
|
"ImGuiSelectionBasicStorage": "imgui:3197",
|
||||||
"ImGuiSelectionExternalStorage": "imgui:3211",
|
"ImGuiSelectionExternalStorage": "imgui:3220",
|
||||||
"ImGuiSelectionRequest": "imgui:3162",
|
"ImGuiSelectionRequest": "imgui:3171",
|
||||||
"ImGuiSelectionRequestType": "imgui:3154",
|
"ImGuiSelectionRequestType": "imgui:3163",
|
||||||
"ImGuiSeparatorFlags_": "imgui_internal:1098",
|
"ImGuiSeparatorFlags_": "imgui_internal:1098",
|
||||||
"ImGuiSettingsHandler": "imgui_internal:2183",
|
"ImGuiSettingsHandler": "imgui_internal:2191",
|
||||||
"ImGuiShrinkWidthItem": "imgui_internal:1437",
|
"ImGuiShrinkWidthItem": "imgui_internal:1444",
|
||||||
"ImGuiSizeCallbackData": "imgui:2753",
|
"ImGuiSizeCallbackData": "imgui:2761",
|
||||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:1069",
|
"ImGuiSliderFlagsPrivate_": "imgui_internal:1069",
|
||||||
"ImGuiSliderFlags_": "imgui:1997",
|
"ImGuiSliderFlags_": "imgui:2002",
|
||||||
"ImGuiSortDirection": "imgui:1591",
|
"ImGuiSortDirection": "imgui:1595",
|
||||||
"ImGuiStackLevelInfo": "imgui_internal:2306",
|
"ImGuiStackLevelInfo": "imgui_internal:2314",
|
||||||
"ImGuiStorage": "imgui:2892",
|
"ImGuiStorage": "imgui:2900",
|
||||||
"ImGuiStoragePair": "imgui:2875",
|
"ImGuiStoragePair": "imgui:2883",
|
||||||
"ImGuiStyle": "imgui:2342",
|
"ImGuiStyle": "imgui:2347",
|
||||||
"ImGuiStyleMod": "imgui_internal:926",
|
"ImGuiStyleMod": "imgui_internal:926",
|
||||||
"ImGuiStyleVarInfo": "imgui_internal:910",
|
"ImGuiStyleVarInfo": "imgui_internal:910",
|
||||||
"ImGuiStyleVar_": "imgui:1883",
|
"ImGuiStyleVar_": "imgui:1888",
|
||||||
"ImGuiTabBar": "imgui_internal:3009",
|
"ImGuiTabBar": "imgui_internal:3028",
|
||||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2971",
|
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2990",
|
||||||
"ImGuiTabBarFlags_": "imgui:1422",
|
"ImGuiTabBarFlags_": "imgui:1425",
|
||||||
"ImGuiTabItem": "imgui_internal:2989",
|
"ImGuiTabItem": "imgui_internal:3008",
|
||||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2979",
|
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2998",
|
||||||
"ImGuiTabItemFlags_": "imgui:1446",
|
"ImGuiTabItemFlags_": "imgui:1449",
|
||||||
"ImGuiTable": "imgui_internal:3154",
|
"ImGuiTable": "imgui_internal:3173",
|
||||||
"ImGuiTableBgTarget_": "imgui:2196",
|
"ImGuiTableBgTarget_": "imgui:2201",
|
||||||
"ImGuiTableCellData": "imgui_internal:3122",
|
"ImGuiTableCellData": "imgui_internal:3141",
|
||||||
"ImGuiTableColumn": "imgui_internal:3062",
|
"ImGuiTableColumn": "imgui_internal:3081",
|
||||||
"ImGuiTableColumnFlags_": "imgui:2143",
|
"ImGuiTableColumnFlags_": "imgui:2148",
|
||||||
"ImGuiTableColumnSettings": "imgui_internal:3302",
|
"ImGuiTableColumnSettings": "imgui_internal:3322",
|
||||||
"ImGuiTableColumnSortSpecs": "imgui:2218",
|
"ImGuiTableColumnSortSpecs": "imgui:2223",
|
||||||
"ImGuiTableFlags_": "imgui:2090",
|
"ImGuiTableFlags_": "imgui:2095",
|
||||||
"ImGuiTableHeaderData": "imgui_internal:3131",
|
"ImGuiTableHeaderData": "imgui_internal:3150",
|
||||||
"ImGuiTableInstanceData": "imgui_internal:3141",
|
"ImGuiTableInstanceData": "imgui_internal:3160",
|
||||||
"ImGuiTableRowFlags_": "imgui:2181",
|
"ImGuiTableRowFlags_": "imgui:2186",
|
||||||
"ImGuiTableSettings": "imgui_internal:3326",
|
"ImGuiTableSettings": "imgui_internal:3346",
|
||||||
"ImGuiTableSortSpecs": "imgui:2208",
|
"ImGuiTableSortSpecs": "imgui:2213",
|
||||||
"ImGuiTableTempData": "imgui_internal:3279",
|
"ImGuiTableTempData": "imgui_internal:3298",
|
||||||
"ImGuiTextBuffer": "imgui:2854",
|
"ImGuiTextBuffer": "imgui:2862",
|
||||||
"ImGuiTextFilter": "imgui:2827",
|
"ImGuiTextFilter": "imgui:2835",
|
||||||
"ImGuiTextFlags_": "imgui_internal:1116",
|
"ImGuiTextFlags_": "imgui_internal:1116",
|
||||||
"ImGuiTextIndex": "imgui_internal:816",
|
"ImGuiTextIndex": "imgui_internal:816",
|
||||||
"ImGuiTextRange": "imgui:2837",
|
"ImGuiTextRange": "imgui:2845",
|
||||||
"ImGuiTooltipFlags_": "imgui_internal:1122",
|
"ImGuiTooltipFlags_": "imgui_internal:1122",
|
||||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1089",
|
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1089",
|
||||||
"ImGuiTreeNodeFlags_": "imgui:1327",
|
"ImGuiTreeNodeFlags_": "imgui:1330",
|
||||||
"ImGuiTreeNodeStackData": "imgui_internal:1398",
|
"ImGuiTreeNodeStackData": "imgui_internal:1405",
|
||||||
"ImGuiTypingSelectFlags_": "imgui_internal:1788",
|
"ImGuiTypingSelectFlags_": "imgui_internal:1795",
|
||||||
"ImGuiTypingSelectRequest": "imgui_internal:1796",
|
"ImGuiTypingSelectRequest": "imgui_internal:1803",
|
||||||
"ImGuiTypingSelectState": "imgui_internal:1807",
|
"ImGuiTypingSelectState": "imgui_internal:1814",
|
||||||
"ImGuiViewport": "imgui:4045",
|
"ImGuiViewport": "imgui:4054",
|
||||||
"ImGuiViewportFlags_": "imgui:4017",
|
"ImGuiViewportFlags_": "imgui:4026",
|
||||||
"ImGuiViewportP": "imgui_internal:2112",
|
"ImGuiViewportP": "imgui_internal:2120",
|
||||||
"ImGuiWindow": "imgui_internal:2816",
|
"ImGuiWindow": "imgui_internal:2834",
|
||||||
"ImGuiWindowClass": "imgui:2768",
|
"ImGuiWindowBgClickFlags_": "imgui_internal:1297",
|
||||||
"ImGuiWindowDockStyle": "imgui_internal:2090",
|
"ImGuiWindowClass": "imgui:2776",
|
||||||
"ImGuiWindowDockStyleCol": "imgui_internal:2076",
|
"ImGuiWindowDockStyle": "imgui_internal:2098",
|
||||||
"ImGuiWindowFlags_": "imgui:1191",
|
"ImGuiWindowDockStyleCol": "imgui_internal:2083",
|
||||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1287",
|
"ImGuiWindowFlags_": "imgui:1194",
|
||||||
"ImGuiWindowSettings": "imgui_internal:2164",
|
"ImGuiWindowRefreshFlags_": "imgui_internal:1288",
|
||||||
"ImGuiWindowStackData": "imgui_internal:1428",
|
"ImGuiWindowSettings": "imgui_internal:2172",
|
||||||
"ImGuiWindowTempData": "imgui_internal:2759",
|
"ImGuiWindowStackData": "imgui_internal:1435",
|
||||||
|
"ImGuiWindowTempData": "imgui_internal:2777",
|
||||||
"ImRect": "imgui_internal:584",
|
"ImRect": "imgui_internal:584",
|
||||||
"ImTextureData": "imgui:3591",
|
"ImTextureData": "imgui:3600",
|
||||||
"ImTextureFormat": "imgui:3559",
|
"ImTextureFormat": "imgui:3568",
|
||||||
"ImTextureRect": "imgui:3578",
|
"ImTextureRect": "imgui:3587",
|
||||||
"ImTextureRef": "imgui:366",
|
"ImTextureRef": "imgui:369",
|
||||||
"ImTextureStatus": "imgui:3566",
|
"ImTextureStatus": "imgui:3575",
|
||||||
"ImVec1": "imgui_internal:558",
|
"ImVec1": "imgui_internal:558",
|
||||||
"ImVec2": "imgui:296",
|
"ImVec2": "imgui:299",
|
||||||
"ImVec2i": "imgui_internal:566",
|
"ImVec2i": "imgui_internal:566",
|
||||||
"ImVec2ih": "imgui_internal:574",
|
"ImVec2ih": "imgui_internal:574",
|
||||||
"ImVec4": "imgui:309",
|
"ImVec4": "imgui:312",
|
||||||
"stbrp_context_opaque": "imgui_internal:4108"
|
"stbrp_context_opaque": "imgui_internal:4129"
|
||||||
},
|
},
|
||||||
"nonPOD": {
|
"nonPOD": {
|
||||||
"ImBitArray": true,
|
"ImBitArray": true,
|
||||||
@@ -5586,6 +5620,7 @@
|
|||||||
"ImGuiContext": true,
|
"ImGuiContext": true,
|
||||||
"ImGuiContextHook": true,
|
"ImGuiContextHook": true,
|
||||||
"ImGuiDebugAllocInfo": true,
|
"ImGuiDebugAllocInfo": true,
|
||||||
|
"ImGuiDebugItemPathQuery": true,
|
||||||
"ImGuiDockContext": true,
|
"ImGuiDockContext": true,
|
||||||
"ImGuiDockNode": true,
|
"ImGuiDockNode": true,
|
||||||
"ImGuiErrorRecoveryState": true,
|
"ImGuiErrorRecoveryState": true,
|
||||||
@@ -5656,6 +5691,14 @@
|
|||||||
"ImVec4": true,
|
"ImVec4": true,
|
||||||
"ImVector": true
|
"ImVector": true
|
||||||
},
|
},
|
||||||
|
"nonPOD_used": {
|
||||||
|
"ImColor": true,
|
||||||
|
"ImRect": true,
|
||||||
|
"ImTextureRef": true,
|
||||||
|
"ImVec2": true,
|
||||||
|
"ImVec2i": true,
|
||||||
|
"ImVec4": true
|
||||||
|
},
|
||||||
"structs": {
|
"structs": {
|
||||||
"ImBitVector": [
|
"ImBitVector": [
|
||||||
{
|
{
|
||||||
@@ -5973,7 +6016,7 @@
|
|||||||
"type": "ImFontBaked*"
|
"type": "ImFontBaked*"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ContainerAtlas",
|
"name": "OwnerAtlas",
|
||||||
"type": "ImFontAtlas*"
|
"type": "ImFontAtlas*"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -6387,7 +6430,7 @@
|
|||||||
"type": "ImGuiID"
|
"type": "ImGuiID"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ContainerFont",
|
"name": "OwnerFont",
|
||||||
"type": "ImFont*"
|
"type": "ImFont*"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -6727,6 +6770,43 @@
|
|||||||
"name": "Initialized",
|
"name": "Initialized",
|
||||||
"type": "bool"
|
"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",
|
"name": "IO",
|
||||||
"type": "ImGuiIO"
|
"type": "ImGuiIO"
|
||||||
@@ -6784,55 +6864,14 @@
|
|||||||
"name": "DrawListSharedData",
|
"name": "DrawListSharedData",
|
||||||
"type": "ImDrawListSharedData"
|
"type": "ImDrawListSharedData"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Time",
|
|
||||||
"type": "double"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FrameCount",
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FrameCountEnded",
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FrameCountPlatformEnded",
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FrameCountRendered",
|
|
||||||
"type": "int"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "WithinEndChildID",
|
"name": "WithinEndChildID",
|
||||||
"type": "ImGuiID"
|
"type": "ImGuiID"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "WithinFrameScope",
|
|
||||||
"type": "bool"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "WithinFrameScopeWithImplicitWindow",
|
|
||||||
"type": "bool"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "GcCompactAll",
|
|
||||||
"type": "bool"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "TestEngineHookItems",
|
|
||||||
"type": "bool"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "TestEngine",
|
"name": "TestEngine",
|
||||||
"type": "void*"
|
"type": "void*"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "ContextName[16]",
|
|
||||||
"size": 16,
|
|
||||||
"type": "char"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "InputEventsQueue",
|
"name": "InputEventsQueue",
|
||||||
"template_type": "ImGuiInputEvent",
|
"template_type": "ImGuiInputEvent",
|
||||||
@@ -7016,26 +7055,25 @@
|
|||||||
"type": "bool"
|
"type": "bool"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ActiveIdDisabledId",
|
"name": "ActiveIdMouseButton",
|
||||||
"type": "ImGuiID"
|
"type": "ImS8"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"bitfield": "8",
|
"name": "ActiveIdDisabledId",
|
||||||
"name": "ActiveIdMouseButton",
|
"type": "ImGuiID"
|
||||||
"type": "int"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ActiveIdClickOffset",
|
"name": "ActiveIdClickOffset",
|
||||||
"type": "ImVec2"
|
"type": "ImVec2"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "ActiveIdWindow",
|
|
||||||
"type": "ImGuiWindow*"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "ActiveIdSource",
|
"name": "ActiveIdSource",
|
||||||
"type": "ImGuiInputSource"
|
"type": "ImGuiInputSource"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "ActiveIdWindow",
|
||||||
|
"type": "ImGuiWindow*"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "ActiveIdPreviousFrame",
|
"name": "ActiveIdPreviousFrame",
|
||||||
"type": "ImGuiID"
|
"type": "ImGuiID"
|
||||||
@@ -7121,6 +7159,10 @@
|
|||||||
"name": "DebugShowGroupRects",
|
"name": "DebugShowGroupRects",
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "GcCompactAll",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "DebugFlashStyleColorIdx",
|
"name": "DebugFlashStyleColorIdx",
|
||||||
"type": "ImGuiCol"
|
"type": "ImGuiCol"
|
||||||
@@ -7505,7 +7547,11 @@
|
|||||||
"type": "ImGuiID"
|
"type": "ImGuiID"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "DragDropAcceptFlags",
|
"name": "DragDropAcceptFlagsCurr",
|
||||||
|
"type": "ImGuiDragDropFlags"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "DragDropAcceptFlagsPrev",
|
||||||
"type": "ImGuiDragDropFlags"
|
"type": "ImGuiDragDropFlags"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -7860,6 +7906,10 @@
|
|||||||
"name": "LogEnabled",
|
"name": "LogEnabled",
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "LogLineFirstItem",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "LogFlags",
|
"name": "LogFlags",
|
||||||
"type": "ImGuiLogFlags"
|
"type": "ImGuiLogFlags"
|
||||||
@@ -7888,10 +7938,6 @@
|
|||||||
"name": "LogLinePosY",
|
"name": "LogLinePosY",
|
||||||
"type": "float"
|
"type": "float"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "LogLineFirstItem",
|
|
||||||
"type": "bool"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "LogDepthRef",
|
"name": "LogDepthRef",
|
||||||
"type": "int"
|
"type": "int"
|
||||||
@@ -8000,6 +8046,10 @@
|
|||||||
"name": "DebugMetricsConfig",
|
"name": "DebugMetricsConfig",
|
||||||
"type": "ImGuiMetricsConfig"
|
"type": "ImGuiMetricsConfig"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "DebugItemPathQuery",
|
||||||
|
"type": "ImGuiDebugItemPathQuery"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "DebugIDStackTool",
|
"name": "DebugIDStackTool",
|
||||||
"type": "ImGuiIDStackTool"
|
"type": "ImGuiIDStackTool"
|
||||||
@@ -8150,6 +8200,37 @@
|
|||||||
"type": "ImGuiDebugAllocEntry"
|
"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": [
|
"ImGuiDockContext": [
|
||||||
{
|
{
|
||||||
"name": "Nodes",
|
"name": "Nodes",
|
||||||
@@ -8449,6 +8530,10 @@
|
|||||||
"name": "BackupActiveIdIsAlive",
|
"name": "BackupActiveIdIsAlive",
|
||||||
"type": "ImGuiID"
|
"type": "ImGuiID"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "BackupActiveIdHasBeenEditedThisFrame",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "BackupDeactivatedIdIsAlive",
|
"name": "BackupDeactivatedIdIsAlive",
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
@@ -8467,27 +8552,6 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiIDStackTool": [
|
"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",
|
"name": "OptHexEncodeNonAsciiChars",
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
@@ -8496,17 +8560,13 @@
|
|||||||
"name": "OptCopyToClipboardOnCtrlC",
|
"name": "OptCopyToClipboardOnCtrlC",
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "LastActiveFrame",
|
||||||
|
"type": "int"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "CopyToClipboardLastTime",
|
"name": "CopyToClipboardLastTime",
|
||||||
"type": "float"
|
"type": "float"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ResultPathsBuf",
|
|
||||||
"type": "ImGuiTextBuffer"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ResultTempBuf",
|
|
||||||
"type": "ImGuiTextBuffer"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiIO": [
|
"ImGuiIO": [
|
||||||
@@ -8590,6 +8650,10 @@
|
|||||||
"name": "ConfigDockingNoSplit",
|
"name": "ConfigDockingNoSplit",
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "ConfigDockingNoDockingOver",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "ConfigDockingWithShift",
|
"name": "ConfigDockingWithShift",
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
@@ -10565,6 +10629,18 @@
|
|||||||
"name": "TreeLinesRounding",
|
"name": "TreeLinesRounding",
|
||||||
"type": "float"
|
"type": "float"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "DragDropTargetRounding",
|
||||||
|
"type": "float"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "DragDropTargetBorderSize",
|
||||||
|
"type": "float"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "DragDropTargetPadding",
|
||||||
|
"type": "float"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "ColorButtonPosition",
|
"name": "ColorButtonPosition",
|
||||||
"type": "ImGuiDir"
|
"type": "ImGuiDir"
|
||||||
@@ -10631,7 +10707,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Colors[ImGuiCol_COUNT]",
|
"name": "Colors[ImGuiCol_COUNT]",
|
||||||
"size": 61,
|
"size": 62,
|
||||||
"type": "ImVec4"
|
"type": "ImVec4"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -11676,6 +11752,10 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiTableTempData": [
|
"ImGuiTableTempData": [
|
||||||
|
{
|
||||||
|
"name": "WindowID",
|
||||||
|
"type": "ImGuiID"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "TableIndex",
|
"name": "TableIndex",
|
||||||
"type": "int"
|
"type": "int"
|
||||||
@@ -12288,6 +12368,10 @@
|
|||||||
"name": "FocusOrder",
|
"name": "FocusOrder",
|
||||||
"type": "short"
|
"type": "short"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "AutoPosLastDirection",
|
||||||
|
"type": "ImGuiDir"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "AutoFitFramesX",
|
"name": "AutoFitFramesX",
|
||||||
"type": "ImS8"
|
"type": "ImS8"
|
||||||
@@ -12300,10 +12384,6 @@
|
|||||||
"name": "AutoFitOnlyGrows",
|
"name": "AutoFitOnlyGrows",
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "AutoPosLastDirection",
|
|
||||||
"type": "ImGuiDir"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "HiddenFramesCanSkipItems",
|
"name": "HiddenFramesCanSkipItems",
|
||||||
"type": "ImS8"
|
"type": "ImS8"
|
||||||
@@ -12320,6 +12400,11 @@
|
|||||||
"name": "DisableInputsFrames",
|
"name": "DisableInputsFrames",
|
||||||
"type": "ImS8"
|
"type": "ImS8"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"bitfield": "8",
|
||||||
|
"name": "BgClickFlags",
|
||||||
|
"type": "ImGuiWindowBgClickFlags"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"bitfield": "8",
|
"bitfield": "8",
|
||||||
"name": "SetWindowPosAllowFlags",
|
"name": "SetWindowPosAllowFlags",
|
||||||
@@ -12591,7 +12676,7 @@
|
|||||||
"ImGuiWindowDockStyle": [
|
"ImGuiWindowDockStyle": [
|
||||||
{
|
{
|
||||||
"name": "Colors[ImGuiWindowDockStyleCol_COUNT]",
|
"name": "Colors[ImGuiWindowDockStyleCol_COUNT]",
|
||||||
"size": 8,
|
"size": 9,
|
||||||
"type": "ImU32"
|
"type": "ImU32"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -55,6 +55,7 @@
|
|||||||
"ImGuiDeactivatedItemData": "struct ImGuiDeactivatedItemData",
|
"ImGuiDeactivatedItemData": "struct ImGuiDeactivatedItemData",
|
||||||
"ImGuiDebugAllocEntry": "struct ImGuiDebugAllocEntry",
|
"ImGuiDebugAllocEntry": "struct ImGuiDebugAllocEntry",
|
||||||
"ImGuiDebugAllocInfo": "struct ImGuiDebugAllocInfo",
|
"ImGuiDebugAllocInfo": "struct ImGuiDebugAllocInfo",
|
||||||
|
"ImGuiDebugItemPathQuery": "struct ImGuiDebugItemPathQuery",
|
||||||
"ImGuiDebugLogFlags": "int",
|
"ImGuiDebugLogFlags": "int",
|
||||||
"ImGuiDockContext": "struct ImGuiDockContext",
|
"ImGuiDockContext": "struct ImGuiDockContext",
|
||||||
"ImGuiDockNode": "struct ImGuiDockNode",
|
"ImGuiDockNode": "struct ImGuiDockNode",
|
||||||
@@ -187,6 +188,7 @@
|
|||||||
"ImGuiViewportFlags": "int",
|
"ImGuiViewportFlags": "int",
|
||||||
"ImGuiViewportP": "struct ImGuiViewportP",
|
"ImGuiViewportP": "struct ImGuiViewportP",
|
||||||
"ImGuiWindow": "struct ImGuiWindow",
|
"ImGuiWindow": "struct ImGuiWindow",
|
||||||
|
"ImGuiWindowBgClickFlags": "int",
|
||||||
"ImGuiWindowClass": "struct ImGuiWindowClass",
|
"ImGuiWindowClass": "struct ImGuiWindowClass",
|
||||||
"ImGuiWindowDockStyle": "struct ImGuiWindowDockStyle",
|
"ImGuiWindowDockStyle": "struct ImGuiWindowDockStyle",
|
||||||
"ImGuiWindowFlags": "int",
|
"ImGuiWindowFlags": "int",
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ local t={
|
|||||||
ImGuiDeactivatedItemData="struct ImGuiDeactivatedItemData",
|
ImGuiDeactivatedItemData="struct ImGuiDeactivatedItemData",
|
||||||
ImGuiDebugAllocEntry="struct ImGuiDebugAllocEntry",
|
ImGuiDebugAllocEntry="struct ImGuiDebugAllocEntry",
|
||||||
ImGuiDebugAllocInfo="struct ImGuiDebugAllocInfo",
|
ImGuiDebugAllocInfo="struct ImGuiDebugAllocInfo",
|
||||||
|
ImGuiDebugItemPathQuery="struct ImGuiDebugItemPathQuery",
|
||||||
ImGuiDebugLogFlags="int",
|
ImGuiDebugLogFlags="int",
|
||||||
ImGuiDockContext="struct ImGuiDockContext",
|
ImGuiDockContext="struct ImGuiDockContext",
|
||||||
ImGuiDockNode="struct ImGuiDockNode",
|
ImGuiDockNode="struct ImGuiDockNode",
|
||||||
@@ -187,6 +188,7 @@ local t={
|
|||||||
ImGuiViewportFlags="int",
|
ImGuiViewportFlags="int",
|
||||||
ImGuiViewportP="struct ImGuiViewportP",
|
ImGuiViewportP="struct ImGuiViewportP",
|
||||||
ImGuiWindow="struct ImGuiWindow",
|
ImGuiWindow="struct ImGuiWindow",
|
||||||
|
ImGuiWindowBgClickFlags="int",
|
||||||
ImGuiWindowClass="struct ImGuiWindowClass",
|
ImGuiWindowClass="struct ImGuiWindowClass",
|
||||||
ImGuiWindowDockStyle="struct ImGuiWindowDockStyle",
|
ImGuiWindowDockStyle="struct ImGuiWindowDockStyle",
|
||||||
ImGuiWindowFlags="int",
|
ImGuiWindowFlags="int",
|
||||||
|
|||||||
2
imgui
2
imgui
Submodule imgui updated: e7d2d636af...eae6e96287
Reference in New Issue
Block a user