mirror of
https://github.com/cimgui/cimgui.git
synced 2025-10-08 19:11:38 +01:00
Compare commits
4 Commits
6d0a376516
...
3b6ca737bd
Author | SHA1 | Date | |
---|---|---|---|
![]() |
3b6ca737bd | ||
![]() |
207fca2d36 | ||
![]() |
d61baefa0c | ||
![]() |
7dc88bd031 |
@@ -11,7 +11,7 @@ History:
|
||||
Initially cimgui was developed by Stephan Dilly as hand-written code but lately turned into an auto-generated version by sonoro1234 in order to keep up with imgui more easily (letting the user select the desired branch and commit)
|
||||
|
||||
Notes:
|
||||
* currently this wrapper is based on version [1.92.0 of Dear ImGui with internal api]
|
||||
* currently this wrapper is based on version [1.92.3 of Dear ImGui with internal api]
|
||||
* only functions, structs and enums from imgui.h (an optionally imgui_internal.h) are wrapped.
|
||||
* if you are interested in imgui backends you should look [LuaJIT-ImGui](https://github.com/sonoro1234/LuaJIT-ImGui) project.
|
||||
* All naming is algorithmic except for those names that were coded in cimgui_overloads table (https://github.com/cimgui/cimgui/blob/master/generator/generator.lua#L60). In the official version this table is empty.
|
||||
|
58
cimgui.cpp
58
cimgui.cpp
@@ -1,5 +1,5 @@
|
||||
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui
|
||||
//based on imgui.h file version "1.92.1" 19210 from Dear ImGui https://github.com/ocornut/imgui
|
||||
//based on imgui.h file version "1.92.3" 19230 from Dear ImGui https://github.com/ocornut/imgui
|
||||
//with imgui_internal.h api
|
||||
//with imgui_freetype.h api
|
||||
|
||||
@@ -2791,9 +2791,9 @@ CIMGUI_API ImFontBaked* ImFont_GetFontBaked(ImFont* self,float font_size,float d
|
||||
{
|
||||
return self->GetFontBaked(font_size,density);
|
||||
}
|
||||
CIMGUI_API void ImFont_CalcTextSizeA(ImVec2 *pOut,ImFont* self,float size,float max_width,float wrap_width,const char* text_begin,const char* text_end,const char** remaining)
|
||||
CIMGUI_API void ImFont_CalcTextSizeA(ImVec2 *pOut,ImFont* self,float size,float max_width,float wrap_width,const char* text_begin,const char* text_end,const char** out_remaining)
|
||||
{
|
||||
*pOut = self->CalcTextSizeA(size,max_width,wrap_width,text_begin,text_end,remaining);
|
||||
*pOut = self->CalcTextSizeA(size,max_width,wrap_width,text_begin,text_end,out_remaining);
|
||||
}
|
||||
CIMGUI_API const char* ImFont_CalcWordWrapPosition(ImFont* self,float size,const char* text,const char* text_end,float wrap_width)
|
||||
{
|
||||
@@ -2803,9 +2803,9 @@ CIMGUI_API void ImFont_RenderChar(ImFont* self,ImDrawList* draw_list,float size,
|
||||
{
|
||||
return self->RenderChar(draw_list,size,pos,col,c,cpu_fine_clip);
|
||||
}
|
||||
CIMGUI_API void ImFont_RenderText(ImFont* self,ImDrawList* draw_list,float size,const ImVec2 pos,ImU32 col,const ImVec4 clip_rect,const char* text_begin,const char* text_end,float wrap_width,bool cpu_fine_clip)
|
||||
CIMGUI_API void ImFont_RenderText(ImFont* self,ImDrawList* draw_list,float size,const ImVec2 pos,ImU32 col,const ImVec4 clip_rect,const char* text_begin,const char* text_end,float wrap_width,ImDrawTextFlags flags)
|
||||
{
|
||||
return self->RenderText(draw_list,size,pos,col,clip_rect,text_begin,text_end,wrap_width,cpu_fine_clip);
|
||||
return self->RenderText(draw_list,size,pos,col,clip_rect,text_begin,text_end,wrap_width,flags);
|
||||
}
|
||||
CIMGUI_API void ImFont_ClearOutputData(ImFont* self)
|
||||
{
|
||||
@@ -2859,6 +2859,10 @@ CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImGuiID seed)
|
||||
{
|
||||
return ImHashStr(data,data_size,seed);
|
||||
}
|
||||
CIMGUI_API const char* igImHashSkipUncontributingPrefix(const char* label)
|
||||
{
|
||||
return ImHashSkipUncontributingPrefix(label);
|
||||
}
|
||||
CIMGUI_API void igImQsort(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*))
|
||||
{
|
||||
return ImQsort(base,count,size_of_element,compare_func);
|
||||
@@ -3010,7 +3014,7 @@ CIMGUI_API int igImParseFormatPrecision(const char* format,int default_value)
|
||||
{
|
||||
return ImParseFormatPrecision(format,default_value);
|
||||
}
|
||||
CIMGUI_API const char* igImTextCharToUtf8(char out_buf[5],unsigned int c)
|
||||
CIMGUI_API int igImTextCharToUtf8(char out_buf[5],unsigned int c)
|
||||
{
|
||||
return ImTextCharToUtf8(out_buf,c);
|
||||
}
|
||||
@@ -3046,6 +3050,18 @@ CIMGUI_API int igImTextCountLines(const char* in_text,const char* in_text_end)
|
||||
{
|
||||
return ImTextCountLines(in_text,in_text_end);
|
||||
}
|
||||
CIMGUI_API void igImFontCalcTextSizeEx(ImVec2 *pOut,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* out_offset,ImDrawTextFlags flags)
|
||||
{
|
||||
*pOut = ImFontCalcTextSizeEx(font,size,max_width,wrap_width,text_begin,text_end_display,text_end,out_remaining,out_offset,flags);
|
||||
}
|
||||
CIMGUI_API const char* igImFontCalcWordWrapPositionEx(ImFont* font,float size,const char* text,const char* text_end,float wrap_width,ImDrawTextFlags flags)
|
||||
{
|
||||
return ImFontCalcWordWrapPositionEx(font,size,text,text_end,wrap_width,flags);
|
||||
}
|
||||
CIMGUI_API const char* igImTextCalcWordWrapNextLineStart(const char* text,const char* text_end,ImDrawTextFlags flags)
|
||||
{
|
||||
return ImTextCalcWordWrapNextLineStart(text,text_end,flags);
|
||||
}
|
||||
CIMGUI_API ImFileHandle igImFileOpen(const char* filename,const char* mode)
|
||||
{
|
||||
return ImFileOpen(filename,mode);
|
||||
@@ -3410,6 +3426,10 @@ CIMGUI_API void ImRect_ToVec4(ImVec4 *pOut,ImRect* self)
|
||||
{
|
||||
*pOut = self->ToVec4();
|
||||
}
|
||||
CIMGUI_API const ImVec4* ImRect_AsVec4(ImRect* self)
|
||||
{
|
||||
return &self->AsVec4();
|
||||
}
|
||||
CIMGUI_API size_t igImBitArrayGetStorageSizeInBytes(int bitcount)
|
||||
{
|
||||
return ImBitArrayGetStorageSizeInBytes(bitcount);
|
||||
@@ -3582,6 +3602,10 @@ CIMGUI_API void ImGuiInputTextState_OnCharPressed(ImGuiInputTextState* self,unsi
|
||||
{
|
||||
return self->OnCharPressed(c);
|
||||
}
|
||||
CIMGUI_API float ImGuiInputTextState_GetPreferredOffsetX(ImGuiInputTextState* self)
|
||||
{
|
||||
return self->GetPreferredOffsetX();
|
||||
}
|
||||
CIMGUI_API void ImGuiInputTextState_CursorAnimReset(ImGuiInputTextState* self)
|
||||
{
|
||||
return self->CursorAnimReset();
|
||||
@@ -4230,6 +4254,10 @@ CIMGUI_API void igStartMouseMovingWindow(ImGuiWindow* window)
|
||||
{
|
||||
return ImGui::StartMouseMovingWindow(window);
|
||||
}
|
||||
CIMGUI_API void igStopMouseMovingWindow()
|
||||
{
|
||||
return ImGui::StopMouseMovingWindow();
|
||||
}
|
||||
CIMGUI_API void igUpdateMouseMovingWindowNewFrame()
|
||||
{
|
||||
return ImGui::UpdateMouseMovingWindowNewFrame();
|
||||
@@ -4434,9 +4462,13 @@ CIMGUI_API void igPushMultiItemsWidths(int components,float width_full)
|
||||
{
|
||||
return ImGui::PushMultiItemsWidths(components,width_full);
|
||||
}
|
||||
CIMGUI_API void igShrinkWidths(ImGuiShrinkWidthItem* items,int count,float width_excess)
|
||||
CIMGUI_API void igShrinkWidths(ImGuiShrinkWidthItem* items,int count,float width_excess,float width_min)
|
||||
{
|
||||
return ImGui::ShrinkWidths(items,count,width_excess);
|
||||
return ImGui::ShrinkWidths(items,count,width_excess,width_min);
|
||||
}
|
||||
CIMGUI_API void igCalcClipRectVisibleItemsY(const ImRect clip_rect,const ImVec2 pos,float items_height,int* out_visible_start,int* out_visible_end)
|
||||
{
|
||||
return ImGui::CalcClipRectVisibleItemsY(clip_rect,pos,items_height,out_visible_start,out_visible_end);
|
||||
}
|
||||
CIMGUI_API const ImGuiStyleVarInfo* igGetStyleVarInfo(ImGuiStyleVar idx)
|
||||
{
|
||||
@@ -5122,6 +5154,14 @@ CIMGUI_API ImGuiTabBar* igGetCurrentTabBar()
|
||||
{
|
||||
return ImGui::GetCurrentTabBar();
|
||||
}
|
||||
CIMGUI_API ImGuiTabBar* igTabBarFindByID(ImGuiID id)
|
||||
{
|
||||
return ImGui::TabBarFindByID(id);
|
||||
}
|
||||
CIMGUI_API void igTabBarRemove(ImGuiTabBar* tab_bar)
|
||||
{
|
||||
return ImGui::TabBarRemove(tab_bar);
|
||||
}
|
||||
CIMGUI_API bool igBeginTabBarEx(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags)
|
||||
{
|
||||
return ImGui::BeginTabBarEx(tab_bar,bb,flags);
|
||||
@@ -5675,7 +5715,7 @@ CIMGUI_API int igImFontAtlasRectId_GetIndex(ImFontAtlasRectId id)
|
||||
{
|
||||
return ImFontAtlasRectId_GetIndex(id);
|
||||
}
|
||||
CIMGUI_API int igImFontAtlasRectId_GetGeneration(ImFontAtlasRectId id)
|
||||
CIMGUI_API unsigned int igImFontAtlasRectId_GetGeneration(ImFontAtlasRectId id)
|
||||
{
|
||||
return ImFontAtlasRectId_GetGeneration(id);
|
||||
}
|
||||
|
95
cimgui.h
95
cimgui.h
@@ -1,5 +1,5 @@
|
||||
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui
|
||||
//based on imgui.h file version "1.92.1" 19210 from Dear ImGui https://github.com/ocornut/imgui
|
||||
//based on imgui.h file version "1.92.3" 19230 from Dear ImGui https://github.com/ocornut/imgui
|
||||
//with imgui_internal.h api
|
||||
//with imgui_freetype.h api
|
||||
#ifndef CIMGUI_INCLUDED
|
||||
@@ -194,6 +194,7 @@ typedef int ImGuiStyleVar;
|
||||
typedef int ImGuiTableBgTarget;
|
||||
typedef int ImDrawFlags;
|
||||
typedef int ImDrawListFlags;
|
||||
typedef int ImDrawTextFlags;
|
||||
typedef int ImFontFlags;
|
||||
typedef int ImFontAtlasFlags;
|
||||
typedef int ImGuiBackendFlags;
|
||||
@@ -209,6 +210,7 @@ typedef int ImGuiInputFlags;
|
||||
typedef int ImGuiInputTextFlags;
|
||||
typedef int ImGuiItemFlags;
|
||||
typedef int ImGuiKeyChord;
|
||||
typedef int ImGuiListClipperFlags;
|
||||
typedef int ImGuiPopupFlags;
|
||||
typedef int ImGuiMultiSelectFlags;
|
||||
typedef int ImGuiSelectableFlags;
|
||||
@@ -334,6 +336,7 @@ typedef enum {
|
||||
ImGuiInputTextFlags_CallbackCharFilter = 1 << 21,
|
||||
ImGuiInputTextFlags_CallbackResize = 1 << 22,
|
||||
ImGuiInputTextFlags_CallbackEdit = 1 << 23,
|
||||
ImGuiInputTextFlags_WordWrap = 1 << 24,
|
||||
}ImGuiInputTextFlags_;
|
||||
typedef enum {
|
||||
ImGuiTreeNodeFlags_None = 0,
|
||||
@@ -381,6 +384,7 @@ typedef enum {
|
||||
ImGuiSelectableFlags_Disabled = 1 << 3,
|
||||
ImGuiSelectableFlags_AllowOverlap = 1 << 4,
|
||||
ImGuiSelectableFlags_Highlight = 1 << 5,
|
||||
ImGuiSelectableFlags_SelectOnNav = 1 << 6,
|
||||
}ImGuiSelectableFlags_;
|
||||
typedef enum {
|
||||
ImGuiComboFlags_None = 0,
|
||||
@@ -403,10 +407,11 @@ typedef enum {
|
||||
ImGuiTabBarFlags_NoTabListScrollingButtons = 1 << 4,
|
||||
ImGuiTabBarFlags_NoTooltip = 1 << 5,
|
||||
ImGuiTabBarFlags_DrawSelectedOverline = 1 << 6,
|
||||
ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 7,
|
||||
ImGuiTabBarFlags_FittingPolicyScroll = 1 << 8,
|
||||
ImGuiTabBarFlags_FittingPolicyMask_ = ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll,
|
||||
ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyResizeDown,
|
||||
ImGuiTabBarFlags_FittingPolicyMixed = 1 << 7,
|
||||
ImGuiTabBarFlags_FittingPolicyShrink = 1 << 8,
|
||||
ImGuiTabBarFlags_FittingPolicyScroll = 1 << 9,
|
||||
ImGuiTabBarFlags_FittingPolicyMask_ = ImGuiTabBarFlags_FittingPolicyMixed | ImGuiTabBarFlags_FittingPolicyShrink | ImGuiTabBarFlags_FittingPolicyScroll,
|
||||
ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyMixed,
|
||||
}ImGuiTabBarFlags_;
|
||||
typedef enum {
|
||||
ImGuiTabItemFlags_None = 0,
|
||||
@@ -773,11 +778,14 @@ typedef enum {
|
||||
ImGuiStyleVar_CellPadding,
|
||||
ImGuiStyleVar_ScrollbarSize,
|
||||
ImGuiStyleVar_ScrollbarRounding,
|
||||
ImGuiStyleVar_ScrollbarPadding,
|
||||
ImGuiStyleVar_GrabMinSize,
|
||||
ImGuiStyleVar_GrabRounding,
|
||||
ImGuiStyleVar_ImageBorderSize,
|
||||
ImGuiStyleVar_TabRounding,
|
||||
ImGuiStyleVar_TabBorderSize,
|
||||
ImGuiStyleVar_TabMinWidthBase,
|
||||
ImGuiStyleVar_TabMinWidthShrink,
|
||||
ImGuiStyleVar_TabBarBorderSize,
|
||||
ImGuiStyleVar_TabBarOverlineSize,
|
||||
ImGuiStyleVar_TableAngledHeadersAngle,
|
||||
@@ -999,12 +1007,15 @@ struct ImGuiStyle
|
||||
float ColumnsMinSpacing;
|
||||
float ScrollbarSize;
|
||||
float ScrollbarRounding;
|
||||
float ScrollbarPadding;
|
||||
float GrabMinSize;
|
||||
float GrabRounding;
|
||||
float LogSliderDeadzone;
|
||||
float ImageBorderSize;
|
||||
float TabRounding;
|
||||
float TabBorderSize;
|
||||
float TabMinWidthBase;
|
||||
float TabMinWidthShrink;
|
||||
float TabCloseButtonMinWidthSelected;
|
||||
float TabCloseButtonMinWidthUnselected;
|
||||
float TabBarBorderSize;
|
||||
@@ -1218,6 +1229,10 @@ struct ImGuiStorage
|
||||
{
|
||||
ImVector_ImGuiStoragePair Data;
|
||||
};
|
||||
typedef enum {
|
||||
ImGuiListClipperFlags_None = 0,
|
||||
ImGuiListClipperFlags_NoSetTableRowCounters = 1 << 0,
|
||||
}ImGuiListClipperFlags_;
|
||||
struct ImGuiListClipper
|
||||
{
|
||||
ImGuiContext* Ctx;
|
||||
@@ -1228,6 +1243,7 @@ struct ImGuiListClipper
|
||||
double StartPosY;
|
||||
double StartSeekOffsetY;
|
||||
void* TempData;
|
||||
ImGuiListClipperFlags Flags;
|
||||
};
|
||||
struct ImColor
|
||||
{
|
||||
@@ -1555,7 +1571,8 @@ struct ImFontBaked
|
||||
float Ascent, Descent;
|
||||
unsigned int MetricsTotalSurface:26;
|
||||
unsigned int WantDestroy:1;
|
||||
unsigned int LockLoadingFallback:1;
|
||||
unsigned int LoadNoFallback:1;
|
||||
unsigned int LoadNoRenderOnLayout:1;
|
||||
int LastUsedFrame;
|
||||
ImGuiID BakedId;
|
||||
ImFont* ContainerFont;
|
||||
@@ -1674,6 +1691,7 @@ struct ImGuiWindow;
|
||||
struct ImGuiWindowTempData;
|
||||
struct ImGuiWindowSettings;
|
||||
typedef int ImGuiLayoutType;
|
||||
typedef int ImDrawTextFlags;
|
||||
typedef int ImGuiActivateFlags;
|
||||
typedef int ImGuiDebugLogFlags;
|
||||
typedef int ImGuiFocusRequestFlags;
|
||||
@@ -1693,6 +1711,12 @@ typedef int ImGuiWindowRefreshFlags;
|
||||
typedef ImS16 ImGuiTableColumnIdx;
|
||||
typedef ImU16 ImGuiTableDrawChannelIdx;
|
||||
extern ImGuiContext* GImGui;
|
||||
typedef enum {
|
||||
ImDrawTextFlags_None = 0,
|
||||
ImDrawTextFlags_CpuFineClip = 1 << 0,
|
||||
ImDrawTextFlags_WrapKeepBlanks = 1 << 1,
|
||||
ImDrawTextFlags_StopOnNewLine = 1 << 2,
|
||||
}ImDrawTextFlags_;
|
||||
typedef FILE* ImFileHandle;
|
||||
typedef struct ImVec1 ImVec1;
|
||||
struct ImVec1
|
||||
@@ -1724,7 +1748,7 @@ typedef struct ImVector_int {int Size;int Capacity;int* Data;} ImVector_int;
|
||||
|
||||
struct ImGuiTextIndex
|
||||
{
|
||||
ImVector_int LineOffsets;
|
||||
ImVector_int Offsets;
|
||||
int EndOffset;
|
||||
};
|
||||
struct ImDrawListSharedData
|
||||
@@ -1858,7 +1882,6 @@ typedef enum {
|
||||
}ImGuiSliderFlagsPrivate_;
|
||||
typedef enum {
|
||||
ImGuiSelectableFlags_NoHoldingActiveID = 1 << 20,
|
||||
ImGuiSelectableFlags_SelectOnNav = 1 << 21,
|
||||
ImGuiSelectableFlags_SelectOnClick = 1 << 22,
|
||||
ImGuiSelectableFlags_SelectOnRelease = 1 << 23,
|
||||
ImGuiSelectableFlags_SpanAvailWidth = 1 << 24,
|
||||
@@ -1970,11 +1993,15 @@ struct ImGuiInputTextState
|
||||
ImVector_char CallbackTextBackup;
|
||||
int BufCapacity;
|
||||
ImVec2 Scroll;
|
||||
int LineCount;
|
||||
float WrapWidth;
|
||||
float CursorAnim;
|
||||
bool CursorFollow;
|
||||
bool CursorCenterY;
|
||||
bool SelectedAllMouseLock;
|
||||
bool Edited;
|
||||
bool WantReloadUserBuf;
|
||||
ImS8 LastMoveDirectionLR;
|
||||
int ReloadSelectionStart;
|
||||
int ReloadSelectionEnd;
|
||||
};
|
||||
@@ -2135,11 +2162,11 @@ typedef enum {
|
||||
ImGuiInputEventType_COUNT
|
||||
}ImGuiInputEventType;
|
||||
typedef enum {
|
||||
ImGuiInputSource_None = 0,
|
||||
ImGuiInputSource_Mouse,
|
||||
ImGuiInputSource_Keyboard,
|
||||
ImGuiInputSource_Gamepad,
|
||||
ImGuiInputSource_COUNT
|
||||
ImGuiInputSource_None=0,
|
||||
ImGuiInputSource_Mouse=1,
|
||||
ImGuiInputSource_Keyboard=2,
|
||||
ImGuiInputSource_Gamepad=3,
|
||||
ImGuiInputSource_COUNT=4,
|
||||
}ImGuiInputSource;
|
||||
typedef struct ImGuiInputEventMousePos ImGuiInputEventMousePos;
|
||||
struct ImGuiInputEventMousePos
|
||||
@@ -2263,6 +2290,7 @@ typedef enum {
|
||||
ImGuiActivateFlags_TryToPreserveState = 1 << 2,
|
||||
ImGuiActivateFlags_FromTabbing = 1 << 3,
|
||||
ImGuiActivateFlags_FromShortcut = 1 << 4,
|
||||
ImGuiActivateFlags_FromFocusApi = 1 << 5,
|
||||
}ImGuiActivateFlags_;
|
||||
typedef enum {
|
||||
ImGuiScrollFlags_None = 0,
|
||||
@@ -2541,8 +2569,8 @@ struct ImGuiStackLevelInfo
|
||||
ImGuiID ID;
|
||||
ImS8 QueryFrameCount;
|
||||
bool QuerySuccess;
|
||||
ImGuiDataType DataType : 8;
|
||||
char Desc[57];
|
||||
ImS8 DataType;
|
||||
int DescOffset;
|
||||
};
|
||||
typedef struct ImGuiIDStackTool ImGuiIDStackTool;
|
||||
typedef struct ImVector_ImGuiStackLevelInfo {int Size;int Capacity;ImGuiStackLevelInfo* Data;} ImVector_ImGuiStackLevelInfo;
|
||||
@@ -2551,11 +2579,14 @@ struct ImGuiIDStackTool
|
||||
{
|
||||
int LastActiveFrame;
|
||||
int StackLevel;
|
||||
ImGuiID QueryId;
|
||||
ImGuiID QueryMainId;
|
||||
ImVector_ImGuiStackLevelInfo Results;
|
||||
bool CopyToClipboardOnCtrlC;
|
||||
bool QueryHookActive;
|
||||
bool OptHexEncodeNonAsciiChars;
|
||||
bool OptCopyToClipboardOnCtrlC;
|
||||
float CopyToClipboardLastTime;
|
||||
ImGuiTextBuffer ResultPathBuf;
|
||||
ImGuiTextBuffer ResultPathsBuf;
|
||||
ImGuiTextBuffer ResultTempBuf;
|
||||
};
|
||||
typedef void (*ImGuiContextHookCallback)(ImGuiContext* ctx, ImGuiContextHook* hook);
|
||||
typedef enum { ImGuiContextHookType_NewFramePre, ImGuiContextHookType_NewFramePost, ImGuiContextHookType_EndFramePre, ImGuiContextHookType_EndFramePost, ImGuiContextHookType_RenderPre, ImGuiContextHookType_RenderPost, ImGuiContextHookType_Shutdown, ImGuiContextHookType_PendingRemoval_ }ImGuiContextHookType;
|
||||
@@ -2678,7 +2709,7 @@ struct ImGuiContext
|
||||
ImVec2 WheelingWindowWheelRemainder;
|
||||
ImVec2 WheelingAxisAvg;
|
||||
ImGuiID DebugDrawIdConflictsId;
|
||||
ImGuiID DebugHookIdInfo;
|
||||
ImGuiID DebugHookIdInfoId;
|
||||
ImGuiID HoveredId;
|
||||
ImGuiID HoveredIdPreviousFrame;
|
||||
int HoveredIdPreviousFrameItemCount;
|
||||
@@ -2697,6 +2728,7 @@ struct ImGuiContext
|
||||
bool ActiveIdHasBeenEditedBefore;
|
||||
bool ActiveIdHasBeenEditedThisFrame;
|
||||
bool ActiveIdFromShortcut;
|
||||
ImGuiID ActiveIdDisabledId;
|
||||
int ActiveIdMouseButton : 8;
|
||||
ImVec2 ActiveIdClickOffset;
|
||||
ImGuiWindow* ActiveIdWindow;
|
||||
@@ -2841,6 +2873,7 @@ struct ImGuiContext
|
||||
float MouseStationaryTimer;
|
||||
ImVec2 MouseLastValidPos;
|
||||
ImGuiInputTextState InputTextState;
|
||||
ImGuiTextIndex InputTextLineIndex;
|
||||
ImGuiInputTextDeactivatedState InputTextDeactivatedState;
|
||||
ImFontBaked InputTextPasswordFontBackupBaked;
|
||||
ImFontFlags InputTextPasswordFontBackupFlags;
|
||||
@@ -3121,6 +3154,7 @@ struct ImGuiTabBar
|
||||
int CurrFrameVisible;
|
||||
int PrevFrameVisible;
|
||||
ImRect BarRect;
|
||||
float BarRectPrevWidth;
|
||||
float CurrTabsContentsHeight;
|
||||
float PrevTabsContentsHeight;
|
||||
float WidthAllTabs;
|
||||
@@ -3139,6 +3173,7 @@ struct ImGuiTabBar
|
||||
bool WantLayout;
|
||||
bool VisibleTabWasSubmitted;
|
||||
bool TabsAddedNew;
|
||||
bool ScrollButtonEnabled;
|
||||
ImS16 TabsActiveCount;
|
||||
ImS16 LastTabItemIdx;
|
||||
float ItemSpacingY;
|
||||
@@ -3395,7 +3430,7 @@ struct ImFontLoader
|
||||
struct ImFontAtlasRectEntry
|
||||
{
|
||||
int TargetIndex : 20;
|
||||
int Generation : 10;
|
||||
unsigned int Generation : 10;
|
||||
unsigned int IsUsed : 1;
|
||||
};
|
||||
struct ImFontAtlasPostProcessData
|
||||
@@ -4249,10 +4284,10 @@ CIMGUI_API bool ImFont_IsGlyphInFont(ImFont* self,ImWchar c);
|
||||
CIMGUI_API bool ImFont_IsLoaded(ImFont* self);
|
||||
CIMGUI_API const char* ImFont_GetDebugName(ImFont* self);
|
||||
CIMGUI_API ImFontBaked* ImFont_GetFontBaked(ImFont* self,float font_size,float density);
|
||||
CIMGUI_API void ImFont_CalcTextSizeA(ImVec2 *pOut,ImFont* self,float size,float max_width,float wrap_width,const char* text_begin,const char* text_end,const char** remaining);
|
||||
CIMGUI_API void ImFont_CalcTextSizeA(ImVec2 *pOut,ImFont* self,float size,float max_width,float wrap_width,const char* text_begin,const char* text_end,const char** out_remaining);
|
||||
CIMGUI_API const char* ImFont_CalcWordWrapPosition(ImFont* self,float size,const char* text,const char* text_end,float wrap_width);
|
||||
CIMGUI_API void ImFont_RenderChar(ImFont* self,ImDrawList* draw_list,float size,const ImVec2 pos,ImU32 col,ImWchar c,const ImVec4* cpu_fine_clip);
|
||||
CIMGUI_API void ImFont_RenderText(ImFont* self,ImDrawList* draw_list,float size,const ImVec2 pos,ImU32 col,const ImVec4 clip_rect,const char* text_begin,const char* text_end,float wrap_width,bool cpu_fine_clip);
|
||||
CIMGUI_API void ImFont_RenderText(ImFont* self,ImDrawList* draw_list,float size,const ImVec2 pos,ImU32 col,const ImVec4 clip_rect,const char* text_begin,const char* text_end,float wrap_width,ImDrawTextFlags flags);
|
||||
CIMGUI_API void ImFont_ClearOutputData(ImFont* self);
|
||||
CIMGUI_API void ImFont_AddRemapChar(ImFont* self,ImWchar from_codepoint,ImWchar to_codepoint);
|
||||
CIMGUI_API bool ImFont_IsGlyphRangeUnused(ImFont* self,unsigned int c_begin,unsigned int c_last);
|
||||
@@ -4266,6 +4301,7 @@ CIMGUI_API ImGuiPlatformImeData* ImGuiPlatformImeData_ImGuiPlatformImeData(void)
|
||||
CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self);
|
||||
CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImGuiID seed);
|
||||
CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImGuiID seed);
|
||||
CIMGUI_API const char* igImHashSkipUncontributingPrefix(const char* label);
|
||||
CIMGUI_API void igImQsort(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*));
|
||||
CIMGUI_API ImU32 igImAlphaBlendColors(ImU32 col_a,ImU32 col_b);
|
||||
CIMGUI_API bool igImIsPowerOfTwo_Int(int v);
|
||||
@@ -4305,7 +4341,7 @@ CIMGUI_API const char* igImParseFormatTrimDecorations(const char* format,char* b
|
||||
CIMGUI_API void igImParseFormatSanitizeForPrinting(const char* fmt_in,char* fmt_out,size_t fmt_out_size);
|
||||
CIMGUI_API const char* igImParseFormatSanitizeForScanning(const char* fmt_in,char* fmt_out,size_t fmt_out_size);
|
||||
CIMGUI_API int igImParseFormatPrecision(const char* format,int default_value);
|
||||
CIMGUI_API const char* igImTextCharToUtf8(char out_buf[5],unsigned int c);
|
||||
CIMGUI_API int igImTextCharToUtf8(char out_buf[5],unsigned int c);
|
||||
CIMGUI_API int igImTextStrToUtf8(char* out_buf,int out_buf_size,const ImWchar* in_text,const ImWchar* in_text_end);
|
||||
CIMGUI_API int igImTextCharFromUtf8(unsigned int* out_char,const char* in_text,const char* in_text_end);
|
||||
CIMGUI_API int igImTextStrFromUtf8(ImWchar* out_buf,int out_buf_size,const char* in_text,const char* in_text_end,const char** in_remaining);
|
||||
@@ -4314,6 +4350,9 @@ CIMGUI_API int igImTextCountUtf8BytesFromChar(const char* in_text,const char* in
|
||||
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 int igImTextCountLines(const char* in_text,const char* in_text_end);
|
||||
CIMGUI_API void igImFontCalcTextSizeEx(ImVec2 *pOut,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* 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* igImTextCalcWordWrapNextLineStart(const char* text,const char* text_end,ImDrawTextFlags flags);
|
||||
CIMGUI_API ImFileHandle igImFileOpen(const char* filename,const char* mode);
|
||||
CIMGUI_API bool igImFileClose(ImFileHandle file);
|
||||
CIMGUI_API ImU64 igImFileGetSize(ImFileHandle file);
|
||||
@@ -4405,6 +4444,7 @@ CIMGUI_API void ImRect_ClipWithFull(ImRect* self,const ImRect r);
|
||||
CIMGUI_API void ImRect_Floor(ImRect* self);
|
||||
CIMGUI_API bool ImRect_IsInverted(ImRect* self);
|
||||
CIMGUI_API void ImRect_ToVec4(ImVec4 *pOut,ImRect* self);
|
||||
CIMGUI_API const ImVec4* ImRect_AsVec4(ImRect* self);
|
||||
CIMGUI_API size_t igImBitArrayGetStorageSizeInBytes(int bitcount);
|
||||
CIMGUI_API void igImBitArrayClearAllBits(ImU32* arr,int bitcount);
|
||||
CIMGUI_API bool igImBitArrayTestBit(const ImU32* arr,int n);
|
||||
@@ -4448,6 +4488,7 @@ CIMGUI_API void ImGuiInputTextState_ClearText(ImGuiInputTextState* self);
|
||||
CIMGUI_API void ImGuiInputTextState_ClearFreeMemory(ImGuiInputTextState* self);
|
||||
CIMGUI_API void ImGuiInputTextState_OnKeyPressed(ImGuiInputTextState* self,int key);
|
||||
CIMGUI_API void ImGuiInputTextState_OnCharPressed(ImGuiInputTextState* self,unsigned int c);
|
||||
CIMGUI_API float ImGuiInputTextState_GetPreferredOffsetX(ImGuiInputTextState* self);
|
||||
CIMGUI_API void ImGuiInputTextState_CursorAnimReset(ImGuiInputTextState* self);
|
||||
CIMGUI_API void ImGuiInputTextState_CursorClamp(ImGuiInputTextState* self);
|
||||
CIMGUI_API bool ImGuiInputTextState_HasSelection(ImGuiInputTextState* self);
|
||||
@@ -4610,6 +4651,7 @@ CIMGUI_API void igUpdateInputEvents(bool trickle_fast_inputs);
|
||||
CIMGUI_API void igUpdateHoveredWindowAndCaptureFlags(const ImVec2 mouse_pos);
|
||||
CIMGUI_API void igFindHoveredWindowEx(const ImVec2 pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window);
|
||||
CIMGUI_API void igStartMouseMovingWindow(ImGuiWindow* window);
|
||||
CIMGUI_API void igStopMouseMovingWindow(void);
|
||||
CIMGUI_API void igUpdateMouseMovingWindowNewFrame(void);
|
||||
CIMGUI_API void igUpdateMouseMovingWindowEndFrame(void);
|
||||
CIMGUI_API ImGuiID igAddContextHook(ImGuiContext* context,const ImGuiContextHook* hook);
|
||||
@@ -4661,7 +4703,8 @@ CIMGUI_API void igSetLastItemData(ImGuiID item_id,ImGuiItemFlags item_flags,ImGu
|
||||
CIMGUI_API void igCalcItemSize(ImVec2 *pOut,ImVec2 size,float default_w,float default_h);
|
||||
CIMGUI_API float igCalcWrapWidthForPos(const ImVec2 pos,float wrap_pos_x);
|
||||
CIMGUI_API void igPushMultiItemsWidths(int components,float width_full);
|
||||
CIMGUI_API void igShrinkWidths(ImGuiShrinkWidthItem* items,int count,float width_excess);
|
||||
CIMGUI_API void igShrinkWidths(ImGuiShrinkWidthItem* items,int count,float width_excess,float width_min);
|
||||
CIMGUI_API void igCalcClipRectVisibleItemsY(const ImRect clip_rect,const ImVec2 pos,float items_height,int* out_visible_start,int* out_visible_end);
|
||||
CIMGUI_API const ImGuiStyleVarInfo* igGetStyleVarInfo(ImGuiStyleVar idx);
|
||||
CIMGUI_API void igBeginDisabledOverrideReenable(void);
|
||||
CIMGUI_API void igEndDisabledOverrideReenable(void);
|
||||
@@ -4833,6 +4876,8 @@ CIMGUI_API void igTableSettingsAddSettingsHandler(void);
|
||||
CIMGUI_API ImGuiTableSettings* igTableSettingsCreate(ImGuiID id,int columns_count);
|
||||
CIMGUI_API ImGuiTableSettings* igTableSettingsFindByID(ImGuiID id);
|
||||
CIMGUI_API ImGuiTabBar* igGetCurrentTabBar(void);
|
||||
CIMGUI_API ImGuiTabBar* igTabBarFindByID(ImGuiID id);
|
||||
CIMGUI_API void igTabBarRemove(ImGuiTabBar* tab_bar);
|
||||
CIMGUI_API bool igBeginTabBarEx(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags);
|
||||
CIMGUI_API ImGuiTabItem* igTabBarFindTabByID(ImGuiTabBar* tab_bar,ImGuiID tab_id);
|
||||
CIMGUI_API ImGuiTabItem* igTabBarFindTabByOrder(ImGuiTabBar* tab_bar,int order);
|
||||
@@ -4972,7 +5017,7 @@ CIMGUI_API ImFontLoader* ImFontLoader_ImFontLoader(void);
|
||||
CIMGUI_API void ImFontLoader_destroy(ImFontLoader* self);
|
||||
CIMGUI_API const ImFontLoader* igImFontAtlasGetFontLoaderForStbTruetype(void);
|
||||
CIMGUI_API int igImFontAtlasRectId_GetIndex(ImFontAtlasRectId id);
|
||||
CIMGUI_API int igImFontAtlasRectId_GetGeneration(ImFontAtlasRectId id);
|
||||
CIMGUI_API unsigned int igImFontAtlasRectId_GetGeneration(ImFontAtlasRectId id);
|
||||
CIMGUI_API ImFontAtlasRectId igImFontAtlasRectId_Make(int index_idx,int gen_idx);
|
||||
CIMGUI_API ImFontAtlasBuilder* ImFontAtlasBuilder_ImFontAtlasBuilder(void);
|
||||
CIMGUI_API void ImFontAtlasBuilder_destroy(ImFontAtlasBuilder* self);
|
||||
|
@@ -115,19 +115,27 @@ struct ImGui_ImplVulkan_InitInfo
|
||||
uint32_t QueueFamily;
|
||||
VkQueue Queue;
|
||||
VkDescriptorPool DescriptorPool;
|
||||
VkRenderPass RenderPass;
|
||||
uint32_t DescriptorPoolSize;
|
||||
uint32_t MinImageCount;
|
||||
uint32_t ImageCount;
|
||||
VkSampleCountFlagBits MSAASamples;
|
||||
VkPipelineCache PipelineCache;
|
||||
VkRenderPass RenderPass;
|
||||
uint32_t Subpass;
|
||||
uint32_t DescriptorPoolSize;
|
||||
VkSampleCountFlagBits MSAASamples;
|
||||
bool UseDynamicRendering;
|
||||
VkPipelineRenderingCreateInfoKHR PipelineRenderingCreateInfo;
|
||||
const VkAllocationCallbacks* Allocator;
|
||||
void (*CheckVkResultFn)(VkResult err);
|
||||
VkDeviceSize MinAllocationSize;
|
||||
};
|
||||
typedef struct ImGui_ImplVulkan_MainPipelineCreateInfo ImGui_ImplVulkan_MainPipelineCreateInfo;
|
||||
struct ImGui_ImplVulkan_MainPipelineCreateInfo
|
||||
{
|
||||
VkRenderPass RenderPass;
|
||||
uint32_t Subpass;
|
||||
VkSampleCountFlagBits MSAASamples;
|
||||
VkPipelineRenderingCreateInfoKHR PipelineRenderingCreateInfo;
|
||||
};
|
||||
typedef struct ImGui_ImplVulkan_RenderState ImGui_ImplVulkan_RenderState;
|
||||
struct ImGui_ImplVulkan_RenderState
|
||||
{
|
||||
@@ -186,6 +194,7 @@ CIMGUI_API void ImGui_ImplVulkan_Shutdown(void);
|
||||
CIMGUI_API void ImGui_ImplVulkan_NewFrame(void);
|
||||
CIMGUI_API void ImGui_ImplVulkan_RenderDrawData(ImDrawData* draw_data,VkCommandBuffer command_buffer,VkPipeline pipeline);
|
||||
CIMGUI_API void ImGui_ImplVulkan_SetMinImageCount(uint32_t min_image_count);
|
||||
CIMGUI_API void ImGui_ImplVulkan_CreateMainPipeline(const ImGui_ImplVulkan_MainPipelineCreateInfo info);
|
||||
CIMGUI_API void ImGui_ImplVulkan_UpdateTexture(ImTextureData* tex);
|
||||
CIMGUI_API VkDescriptorSet ImGui_ImplVulkan_AddTexture(VkSampler sampler,VkImageView image_view,VkImageLayout image_layout);
|
||||
CIMGUI_API void ImGui_ImplVulkan_RemoveTexture(VkDescriptorSet descriptor_set);
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1258,7 +1258,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"location": "imgui_impl_vulkan:166",
|
||||
"location": "imgui_impl_vulkan:178",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
"ret": "void",
|
||||
"signature": "(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t)",
|
||||
@@ -1291,7 +1291,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"location": "imgui_impl_vulkan:167",
|
||||
"location": "imgui_impl_vulkan:179",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_DestroyWindow",
|
||||
"ret": "void",
|
||||
"signature": "(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||
@@ -1312,7 +1312,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"location": "imgui_impl_vulkan:172",
|
||||
"location": "imgui_impl_vulkan:184",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
"ret": "int",
|
||||
"signature": "(VkPresentModeKHR)",
|
||||
@@ -1333,7 +1333,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"location": "imgui_impl_vulkan:170",
|
||||
"location": "imgui_impl_vulkan:182",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
"ret": "VkPhysicalDevice",
|
||||
"signature": "(VkInstance)",
|
||||
@@ -1366,7 +1366,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"location": "imgui_impl_vulkan:169",
|
||||
"location": "imgui_impl_vulkan:181",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectPresentMode",
|
||||
"ret": "VkPresentModeKHR",
|
||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||
@@ -1387,7 +1387,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"location": "imgui_impl_vulkan:171",
|
||||
"location": "imgui_impl_vulkan:183",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
"ret": "uint32_t",
|
||||
"signature": "(VkPhysicalDevice)",
|
||||
@@ -1424,7 +1424,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"location": "imgui_impl_vulkan:168",
|
||||
"location": "imgui_impl_vulkan:180",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
"ret": "VkSurfaceFormatKHR",
|
||||
"signature": "(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||
@@ -1441,7 +1441,7 @@
|
||||
"constructor": true,
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkanH_Window",
|
||||
"location": "imgui_impl_vulkan:215",
|
||||
"location": "imgui_impl_vulkan:227",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||
"signature": "()",
|
||||
"stname": "ImGui_ImplVulkanH_Window"
|
||||
@@ -1460,7 +1460,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||
"defaults": {},
|
||||
"destructor": true,
|
||||
"location": "imgui_impl_vulkan:215",
|
||||
"location": "imgui_impl_vulkan:227",
|
||||
"ov_cimguiname": "ImGui_ImplVulkanH_Window_destroy",
|
||||
"ret": "void",
|
||||
"signature": "(ImGui_ImplVulkanH_Window*)",
|
||||
@@ -1489,13 +1489,34 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_AddTexture",
|
||||
"location": "imgui_impl_vulkan:123",
|
||||
"location": "imgui_impl_vulkan:135",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_AddTexture",
|
||||
"ret": "VkDescriptorSet",
|
||||
"signature": "(VkSampler,VkImageView,VkImageLayout)",
|
||||
"stname": ""
|
||||
}
|
||||
],
|
||||
"ImGui_ImplVulkan_CreateMainPipeline": [
|
||||
{
|
||||
"args": "(const ImGui_ImplVulkan_MainPipelineCreateInfo info)",
|
||||
"argsT": [
|
||||
{
|
||||
"name": "info",
|
||||
"type": "const ImGui_ImplVulkan_MainPipelineCreateInfo"
|
||||
}
|
||||
],
|
||||
"argsoriginal": "(const ImGui_ImplVulkan_MainPipelineCreateInfo& info)",
|
||||
"call_args": "(info)",
|
||||
"cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"location": "imgui_impl_vulkan:127",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_CreateMainPipeline",
|
||||
"ret": "void",
|
||||
"signature": "(const ImGui_ImplVulkan_MainPipelineCreateInfo)",
|
||||
"stname": ""
|
||||
}
|
||||
],
|
||||
"ImGui_ImplVulkan_Init": [
|
||||
{
|
||||
"args": "(ImGui_ImplVulkan_InitInfo* info)",
|
||||
@@ -1510,7 +1531,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_Init",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_Init",
|
||||
"location": "imgui_impl_vulkan:111",
|
||||
"location": "imgui_impl_vulkan:109",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_Init",
|
||||
"ret": "bool",
|
||||
"signature": "(ImGui_ImplVulkan_InitInfo*)",
|
||||
@@ -1541,7 +1562,7 @@
|
||||
"user_data": "nullptr"
|
||||
},
|
||||
"funcname": "ImGui_ImplVulkan_LoadFunctions",
|
||||
"location": "imgui_impl_vulkan:128",
|
||||
"location": "imgui_impl_vulkan:140",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_LoadFunctions",
|
||||
"ret": "bool",
|
||||
"signature": "(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||
@@ -1557,7 +1578,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_NewFrame",
|
||||
"location": "imgui_impl_vulkan:113",
|
||||
"location": "imgui_impl_vulkan:111",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_NewFrame",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -1578,7 +1599,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"location": "imgui_impl_vulkan:124",
|
||||
"location": "imgui_impl_vulkan:136",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"ret": "void",
|
||||
"signature": "(VkDescriptorSet)",
|
||||
@@ -1609,7 +1630,7 @@
|
||||
"pipeline": "0ULL"
|
||||
},
|
||||
"funcname": "ImGui_ImplVulkan_RenderDrawData",
|
||||
"location": "imgui_impl_vulkan:114",
|
||||
"location": "imgui_impl_vulkan:112",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_RenderDrawData",
|
||||
"ret": "void",
|
||||
"signature": "(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||
@@ -1630,7 +1651,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"location": "imgui_impl_vulkan:115",
|
||||
"location": "imgui_impl_vulkan:113",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_SetMinImageCount",
|
||||
"ret": "void",
|
||||
"signature": "(uint32_t)",
|
||||
@@ -1646,7 +1667,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_Shutdown",
|
||||
"location": "imgui_impl_vulkan:112",
|
||||
"location": "imgui_impl_vulkan:110",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_Shutdown",
|
||||
"ret": "void",
|
||||
"signature": "()",
|
||||
@@ -1667,7 +1688,7 @@
|
||||
"cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"defaults": {},
|
||||
"funcname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"location": "imgui_impl_vulkan:118",
|
||||
"location": "imgui_impl_vulkan:130",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_UpdateTexture",
|
||||
"ret": "void",
|
||||
"signature": "(ImTextureData*)",
|
||||
|
@@ -1081,7 +1081,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
location="imgui_impl_vulkan:166",
|
||||
location="imgui_impl_vulkan:178",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_CreateOrResizeWindow",
|
||||
ret="void",
|
||||
signature="(VkInstance,VkPhysicalDevice,VkDevice,ImGui_ImplVulkanH_Window*,uint32_t,const VkAllocationCallbacks*,int,int,uint32_t)",
|
||||
@@ -1108,7 +1108,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
location="imgui_impl_vulkan:167",
|
||||
location="imgui_impl_vulkan:179",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_DestroyWindow",
|
||||
ret="void",
|
||||
signature="(VkInstance,VkDevice,ImGui_ImplVulkanH_Window*,const VkAllocationCallbacks*)",
|
||||
@@ -1126,7 +1126,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
location="imgui_impl_vulkan:172",
|
||||
location="imgui_impl_vulkan:184",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_GetMinImageCountFromPresentMode",
|
||||
ret="int",
|
||||
signature="(VkPresentModeKHR)",
|
||||
@@ -1144,7 +1144,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
location="imgui_impl_vulkan:170",
|
||||
location="imgui_impl_vulkan:182",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPhysicalDevice",
|
||||
ret="VkPhysicalDevice",
|
||||
signature="(VkInstance)",
|
||||
@@ -1171,7 +1171,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
location="imgui_impl_vulkan:169",
|
||||
location="imgui_impl_vulkan:181",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectPresentMode",
|
||||
ret="VkPresentModeKHR",
|
||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkPresentModeKHR*,int)",
|
||||
@@ -1189,7 +1189,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
location="imgui_impl_vulkan:171",
|
||||
location="imgui_impl_vulkan:183",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectQueueFamilyIndex",
|
||||
ret="uint32_t",
|
||||
signature="(VkPhysicalDevice)",
|
||||
@@ -1219,7 +1219,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
location="imgui_impl_vulkan:168",
|
||||
location="imgui_impl_vulkan:180",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_SelectSurfaceFormat",
|
||||
ret="VkSurfaceFormatKHR",
|
||||
signature="(VkPhysicalDevice,VkSurfaceKHR,const VkFormat*,int,VkColorSpaceKHR)",
|
||||
@@ -1235,7 +1235,7 @@ local t={
|
||||
constructor=true,
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkanH_Window",
|
||||
location="imgui_impl_vulkan:215",
|
||||
location="imgui_impl_vulkan:227",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window",
|
||||
signature="()",
|
||||
stname="ImGui_ImplVulkanH_Window"},
|
||||
@@ -1251,7 +1251,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||
defaults={},
|
||||
destructor=true,
|
||||
location="imgui_impl_vulkan:215",
|
||||
location="imgui_impl_vulkan:227",
|
||||
ov_cimguiname="ImGui_ImplVulkanH_Window_destroy",
|
||||
ret="void",
|
||||
signature="(ImGui_ImplVulkanH_Window*)",
|
||||
@@ -1275,12 +1275,30 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_AddTexture",
|
||||
location="imgui_impl_vulkan:123",
|
||||
location="imgui_impl_vulkan:135",
|
||||
ov_cimguiname="ImGui_ImplVulkan_AddTexture",
|
||||
ret="VkDescriptorSet",
|
||||
signature="(VkSampler,VkImageView,VkImageLayout)",
|
||||
stname=""},
|
||||
["(VkSampler,VkImageView,VkImageLayout)"]=nil},
|
||||
ImGui_ImplVulkan_CreateMainPipeline={
|
||||
[1]={
|
||||
args="(const ImGui_ImplVulkan_MainPipelineCreateInfo info)",
|
||||
argsT={
|
||||
[1]={
|
||||
name="info",
|
||||
type="const ImGui_ImplVulkan_MainPipelineCreateInfo"}},
|
||||
argsoriginal="(const ImGui_ImplVulkan_MainPipelineCreateInfo& info)",
|
||||
call_args="(info)",
|
||||
cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
location="imgui_impl_vulkan:127",
|
||||
ov_cimguiname="ImGui_ImplVulkan_CreateMainPipeline",
|
||||
ret="void",
|
||||
signature="(const ImGui_ImplVulkan_MainPipelineCreateInfo)",
|
||||
stname=""},
|
||||
["(const ImGui_ImplVulkan_MainPipelineCreateInfo)"]=nil},
|
||||
ImGui_ImplVulkan_Init={
|
||||
[1]={
|
||||
args="(ImGui_ImplVulkan_InitInfo* info)",
|
||||
@@ -1293,7 +1311,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_Init",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_Init",
|
||||
location="imgui_impl_vulkan:111",
|
||||
location="imgui_impl_vulkan:109",
|
||||
ov_cimguiname="ImGui_ImplVulkan_Init",
|
||||
ret="bool",
|
||||
signature="(ImGui_ImplVulkan_InitInfo*)",
|
||||
@@ -1318,7 +1336,7 @@ local t={
|
||||
defaults={
|
||||
user_data="nullptr"},
|
||||
funcname="ImGui_ImplVulkan_LoadFunctions",
|
||||
location="imgui_impl_vulkan:128",
|
||||
location="imgui_impl_vulkan:140",
|
||||
ov_cimguiname="ImGui_ImplVulkan_LoadFunctions",
|
||||
ret="bool",
|
||||
signature="(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)",
|
||||
@@ -1333,7 +1351,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_NewFrame",
|
||||
location="imgui_impl_vulkan:113",
|
||||
location="imgui_impl_vulkan:111",
|
||||
ov_cimguiname="ImGui_ImplVulkan_NewFrame",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -1351,7 +1369,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_RemoveTexture",
|
||||
location="imgui_impl_vulkan:124",
|
||||
location="imgui_impl_vulkan:136",
|
||||
ov_cimguiname="ImGui_ImplVulkan_RemoveTexture",
|
||||
ret="void",
|
||||
signature="(VkDescriptorSet)",
|
||||
@@ -1376,7 +1394,7 @@ local t={
|
||||
defaults={
|
||||
pipeline="0ULL"},
|
||||
funcname="ImGui_ImplVulkan_RenderDrawData",
|
||||
location="imgui_impl_vulkan:114",
|
||||
location="imgui_impl_vulkan:112",
|
||||
ov_cimguiname="ImGui_ImplVulkan_RenderDrawData",
|
||||
ret="void",
|
||||
signature="(ImDrawData*,VkCommandBuffer,VkPipeline)",
|
||||
@@ -1394,7 +1412,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
location="imgui_impl_vulkan:115",
|
||||
location="imgui_impl_vulkan:113",
|
||||
ov_cimguiname="ImGui_ImplVulkan_SetMinImageCount",
|
||||
ret="void",
|
||||
signature="(uint32_t)",
|
||||
@@ -1409,7 +1427,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_Shutdown",
|
||||
location="imgui_impl_vulkan:112",
|
||||
location="imgui_impl_vulkan:110",
|
||||
ov_cimguiname="ImGui_ImplVulkan_Shutdown",
|
||||
ret="void",
|
||||
signature="()",
|
||||
@@ -1427,7 +1445,7 @@ local t={
|
||||
cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||
defaults={},
|
||||
funcname="ImGui_ImplVulkan_UpdateTexture",
|
||||
location="imgui_impl_vulkan:118",
|
||||
location="imgui_impl_vulkan:130",
|
||||
ov_cimguiname="ImGui_ImplVulkan_UpdateTexture",
|
||||
ret="void",
|
||||
signature="(ImTextureData*)",
|
||||
@@ -1499,6 +1517,7 @@ t.ImGui_ImplVulkanH_SelectSurfaceFormat["(VkPhysicalDevice,VkSurfaceKHR,const Vk
|
||||
t.ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window["()"]=t.ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window[1]
|
||||
t.ImGui_ImplVulkanH_Window_destroy["(ImGui_ImplVulkanH_Window*)"]=t.ImGui_ImplVulkanH_Window_destroy[1]
|
||||
t.ImGui_ImplVulkan_AddTexture["(VkSampler,VkImageView,VkImageLayout)"]=t.ImGui_ImplVulkan_AddTexture[1]
|
||||
t.ImGui_ImplVulkan_CreateMainPipeline["(const ImGui_ImplVulkan_MainPipelineCreateInfo)"]=t.ImGui_ImplVulkan_CreateMainPipeline[1]
|
||||
t.ImGui_ImplVulkan_Init["(ImGui_ImplVulkan_InitInfo*)"]=t.ImGui_ImplVulkan_Init[1]
|
||||
t.ImGui_ImplVulkan_LoadFunctions["(uint32_t,PFN_vkVoidFunction(*loader_func)(const char* function_name,void*,void*)"]=t.ImGui_ImplVulkan_LoadFunctions[1]
|
||||
t.ImGui_ImplVulkan_NewFrame["()"]=t.ImGui_ImplVulkan_NewFrame[1]
|
||||
|
@@ -99,6 +99,28 @@
|
||||
"value": "1 << 3"
|
||||
}
|
||||
],
|
||||
"ImDrawTextFlags_": [
|
||||
{
|
||||
"calc_value": 0,
|
||||
"name": "ImDrawTextFlags_None",
|
||||
"value": "0"
|
||||
},
|
||||
{
|
||||
"calc_value": 1,
|
||||
"name": "ImDrawTextFlags_CpuFineClip",
|
||||
"value": "1 << 0"
|
||||
},
|
||||
{
|
||||
"calc_value": 2,
|
||||
"name": "ImDrawTextFlags_WrapKeepBlanks",
|
||||
"value": "1 << 1"
|
||||
},
|
||||
{
|
||||
"calc_value": 4,
|
||||
"name": "ImDrawTextFlags_StopOnNewLine",
|
||||
"value": "1 << 2"
|
||||
}
|
||||
],
|
||||
"ImFontAtlasFlags_": [
|
||||
{
|
||||
"calc_value": 0,
|
||||
@@ -173,6 +195,11 @@
|
||||
"calc_value": 16,
|
||||
"name": "ImGuiActivateFlags_FromShortcut",
|
||||
"value": "1 << 4"
|
||||
},
|
||||
{
|
||||
"calc_value": 32,
|
||||
"name": "ImGuiActivateFlags_FromFocusApi",
|
||||
"value": "1 << 5"
|
||||
}
|
||||
],
|
||||
"ImGuiAxis": [
|
||||
@@ -1894,6 +1921,11 @@
|
||||
"calc_value": 8388608,
|
||||
"name": "ImGuiInputTextFlags_CallbackEdit",
|
||||
"value": "1 << 23"
|
||||
},
|
||||
{
|
||||
"calc_value": 16777216,
|
||||
"name": "ImGuiInputTextFlags_WordWrap",
|
||||
"value": "1 << 24"
|
||||
}
|
||||
],
|
||||
"ImGuiItemFlagsPrivate_": [
|
||||
@@ -2896,6 +2928,18 @@
|
||||
"value": "1"
|
||||
}
|
||||
],
|
||||
"ImGuiListClipperFlags_": [
|
||||
{
|
||||
"calc_value": 0,
|
||||
"name": "ImGuiListClipperFlags_None",
|
||||
"value": "0"
|
||||
},
|
||||
{
|
||||
"calc_value": 1,
|
||||
"name": "ImGuiListClipperFlags_NoSetTableRowCounters",
|
||||
"value": "1 << 0"
|
||||
}
|
||||
],
|
||||
"ImGuiLocKey": [
|
||||
{
|
||||
"calc_value": 0,
|
||||
@@ -3589,11 +3633,6 @@
|
||||
"name": "ImGuiSelectableFlags_NoHoldingActiveID",
|
||||
"value": "1 << 20"
|
||||
},
|
||||
{
|
||||
"calc_value": 2097152,
|
||||
"name": "ImGuiSelectableFlags_SelectOnNav",
|
||||
"value": "1 << 21"
|
||||
},
|
||||
{
|
||||
"calc_value": 4194304,
|
||||
"name": "ImGuiSelectableFlags_SelectOnClick",
|
||||
@@ -3660,6 +3699,11 @@
|
||||
"calc_value": 32,
|
||||
"name": "ImGuiSelectableFlags_Highlight",
|
||||
"value": "1 << 5"
|
||||
},
|
||||
{
|
||||
"calc_value": 64,
|
||||
"name": "ImGuiSelectableFlags_SelectOnNav",
|
||||
"value": "1 << 6"
|
||||
}
|
||||
],
|
||||
"ImGuiSelectionRequestType": [
|
||||
@@ -3885,88 +3929,103 @@
|
||||
},
|
||||
{
|
||||
"calc_value": 20,
|
||||
"name": "ImGuiStyleVar_GrabMinSize",
|
||||
"name": "ImGuiStyleVar_ScrollbarPadding",
|
||||
"value": "20"
|
||||
},
|
||||
{
|
||||
"calc_value": 21,
|
||||
"name": "ImGuiStyleVar_GrabRounding",
|
||||
"name": "ImGuiStyleVar_GrabMinSize",
|
||||
"value": "21"
|
||||
},
|
||||
{
|
||||
"calc_value": 22,
|
||||
"name": "ImGuiStyleVar_ImageBorderSize",
|
||||
"name": "ImGuiStyleVar_GrabRounding",
|
||||
"value": "22"
|
||||
},
|
||||
{
|
||||
"calc_value": 23,
|
||||
"name": "ImGuiStyleVar_TabRounding",
|
||||
"name": "ImGuiStyleVar_ImageBorderSize",
|
||||
"value": "23"
|
||||
},
|
||||
{
|
||||
"calc_value": 24,
|
||||
"name": "ImGuiStyleVar_TabBorderSize",
|
||||
"name": "ImGuiStyleVar_TabRounding",
|
||||
"value": "24"
|
||||
},
|
||||
{
|
||||
"calc_value": 25,
|
||||
"name": "ImGuiStyleVar_TabBarBorderSize",
|
||||
"name": "ImGuiStyleVar_TabBorderSize",
|
||||
"value": "25"
|
||||
},
|
||||
{
|
||||
"calc_value": 26,
|
||||
"name": "ImGuiStyleVar_TabBarOverlineSize",
|
||||
"name": "ImGuiStyleVar_TabMinWidthBase",
|
||||
"value": "26"
|
||||
},
|
||||
{
|
||||
"calc_value": 27,
|
||||
"name": "ImGuiStyleVar_TableAngledHeadersAngle",
|
||||
"name": "ImGuiStyleVar_TabMinWidthShrink",
|
||||
"value": "27"
|
||||
},
|
||||
{
|
||||
"calc_value": 28,
|
||||
"name": "ImGuiStyleVar_TableAngledHeadersTextAlign",
|
||||
"name": "ImGuiStyleVar_TabBarBorderSize",
|
||||
"value": "28"
|
||||
},
|
||||
{
|
||||
"calc_value": 29,
|
||||
"name": "ImGuiStyleVar_TreeLinesSize",
|
||||
"name": "ImGuiStyleVar_TabBarOverlineSize",
|
||||
"value": "29"
|
||||
},
|
||||
{
|
||||
"calc_value": 30,
|
||||
"name": "ImGuiStyleVar_TreeLinesRounding",
|
||||
"name": "ImGuiStyleVar_TableAngledHeadersAngle",
|
||||
"value": "30"
|
||||
},
|
||||
{
|
||||
"calc_value": 31,
|
||||
"name": "ImGuiStyleVar_ButtonTextAlign",
|
||||
"name": "ImGuiStyleVar_TableAngledHeadersTextAlign",
|
||||
"value": "31"
|
||||
},
|
||||
{
|
||||
"calc_value": 32,
|
||||
"name": "ImGuiStyleVar_SelectableTextAlign",
|
||||
"name": "ImGuiStyleVar_TreeLinesSize",
|
||||
"value": "32"
|
||||
},
|
||||
{
|
||||
"calc_value": 33,
|
||||
"name": "ImGuiStyleVar_SeparatorTextBorderSize",
|
||||
"name": "ImGuiStyleVar_TreeLinesRounding",
|
||||
"value": "33"
|
||||
},
|
||||
{
|
||||
"calc_value": 34,
|
||||
"name": "ImGuiStyleVar_SeparatorTextAlign",
|
||||
"name": "ImGuiStyleVar_ButtonTextAlign",
|
||||
"value": "34"
|
||||
},
|
||||
{
|
||||
"calc_value": 35,
|
||||
"name": "ImGuiStyleVar_SeparatorTextPadding",
|
||||
"name": "ImGuiStyleVar_SelectableTextAlign",
|
||||
"value": "35"
|
||||
},
|
||||
{
|
||||
"calc_value": 36,
|
||||
"name": "ImGuiStyleVar_COUNT",
|
||||
"name": "ImGuiStyleVar_SeparatorTextBorderSize",
|
||||
"value": "36"
|
||||
},
|
||||
{
|
||||
"calc_value": 37,
|
||||
"name": "ImGuiStyleVar_SeparatorTextAlign",
|
||||
"value": "37"
|
||||
},
|
||||
{
|
||||
"calc_value": 38,
|
||||
"name": "ImGuiStyleVar_SeparatorTextPadding",
|
||||
"value": "38"
|
||||
},
|
||||
{
|
||||
"calc_value": 39,
|
||||
"name": "ImGuiStyleVar_COUNT",
|
||||
"value": "39"
|
||||
}
|
||||
],
|
||||
"ImGuiTabBarFlagsPrivate_": [
|
||||
@@ -4029,23 +4088,28 @@
|
||||
},
|
||||
{
|
||||
"calc_value": 128,
|
||||
"name": "ImGuiTabBarFlags_FittingPolicyResizeDown",
|
||||
"name": "ImGuiTabBarFlags_FittingPolicyMixed",
|
||||
"value": "1 << 7"
|
||||
},
|
||||
{
|
||||
"calc_value": 256,
|
||||
"name": "ImGuiTabBarFlags_FittingPolicyScroll",
|
||||
"name": "ImGuiTabBarFlags_FittingPolicyShrink",
|
||||
"value": "1 << 8"
|
||||
},
|
||||
{
|
||||
"calc_value": 384,
|
||||
"calc_value": 512,
|
||||
"name": "ImGuiTabBarFlags_FittingPolicyScroll",
|
||||
"value": "1 << 9"
|
||||
},
|
||||
{
|
||||
"calc_value": 896,
|
||||
"name": "ImGuiTabBarFlags_FittingPolicyMask_",
|
||||
"value": "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll"
|
||||
"value": "ImGuiTabBarFlags_FittingPolicyMixed | ImGuiTabBarFlags_FittingPolicyShrink | ImGuiTabBarFlags_FittingPolicyScroll"
|
||||
},
|
||||
{
|
||||
"calc_value": 128,
|
||||
"name": "ImGuiTabBarFlags_FittingPolicyDefault_",
|
||||
"value": "ImGuiTabBarFlags_FittingPolicyResizeDown"
|
||||
"value": "ImGuiTabBarFlags_FittingPolicyMixed"
|
||||
}
|
||||
],
|
||||
"ImGuiTabItemFlagsPrivate_": [
|
||||
@@ -4893,212 +4957,215 @@
|
||||
},
|
||||
"enumtypes": {
|
||||
"ImGuiDir": "int",
|
||||
"ImGuiInputSource": "int",
|
||||
"ImGuiKey": "int",
|
||||
"ImGuiLocKey": "int",
|
||||
"ImGuiMouseSource": "int",
|
||||
"ImGuiSortDirection": "ImU8"
|
||||
},
|
||||
"locations": {
|
||||
"ImBitVector": "imgui_internal:636",
|
||||
"ImColor": "imgui:2890",
|
||||
"ImDrawChannel": "imgui:3138",
|
||||
"ImDrawCmd": "imgui:3094",
|
||||
"ImDrawCmdHeader": "imgui:3130",
|
||||
"ImDrawData": "imgui:3359",
|
||||
"ImDrawDataBuilder": "imgui_internal:864",
|
||||
"ImDrawFlags_": "imgui:3163",
|
||||
"ImDrawList": "imgui:3201",
|
||||
"ImDrawListFlags_": "imgui:3183",
|
||||
"ImDrawListSharedData": "imgui_internal:837",
|
||||
"ImDrawListSplitter": "imgui:3146",
|
||||
"ImDrawVert": "imgui:3115",
|
||||
"ImFont": "imgui:3777",
|
||||
"ImFontAtlas": "imgui:3581",
|
||||
"ImFontAtlasBuilder": "imgui_internal:3779",
|
||||
"ImFontAtlasFlags_": "imgui:3554",
|
||||
"ImFontAtlasPostProcessData": "imgui_internal:3752",
|
||||
"ImFontAtlasRect": "imgui:3544",
|
||||
"ImFontAtlasRectEntry": "imgui_internal:3744",
|
||||
"ImFontBaked": "imgui:3730",
|
||||
"ImFontConfig": "imgui:3466",
|
||||
"ImFontFlags_": "imgui:3764",
|
||||
"ImFontGlyph": "imgui:3506",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3522",
|
||||
"ImFontLoader": "imgui_internal:3693",
|
||||
"ImFontStackData": "imgui_internal:872",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1647",
|
||||
"ImGuiAxis": "imgui_internal:1123",
|
||||
"ImGuiBackendFlags_": "imgui:1687",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1837",
|
||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:1009",
|
||||
"ImGuiButtonFlags_": "imgui:1819",
|
||||
"ImGuiChildFlags_": "imgui:1191",
|
||||
"ImGuiCol_": "imgui:1698",
|
||||
"ImGuiColorEditFlags_": "imgui:1830",
|
||||
"ImGuiColorMod": "imgui_internal:892",
|
||||
"ImGuiComboFlagsPrivate_": "imgui_internal:1036",
|
||||
"ImGuiComboFlags_": "imgui:1346",
|
||||
"ImGuiComboPreviewData": "imgui_internal:1137",
|
||||
"ImGuiCond_": "imgui:1944",
|
||||
"ImGuiConfigFlags_": "imgui:1667",
|
||||
"ImGuiContext": "imgui_internal:2139",
|
||||
"ImGuiContextHook": "imgui_internal:2124",
|
||||
"ImGuiContextHookType": "imgui_internal:2122",
|
||||
"ImGuiDataTypeInfo": "imgui_internal:918",
|
||||
"ImGuiDataTypePrivate_": "imgui_internal:927",
|
||||
"ImGuiDataTypeStorage": "imgui_internal:912",
|
||||
"ImGuiDataType_": "imgui:1473",
|
||||
"ImGuiDeactivatedItemData": "imgui_internal:1415",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2057",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2064",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2035",
|
||||
"ImGuiDir": "imgui:1491",
|
||||
"ImGuiDragDropFlags_": "imgui:1445",
|
||||
"ImGuiErrorRecoveryState": "imgui_internal:1371",
|
||||
"ImGuiFocusRequestFlags_": "imgui_internal:1083",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1734",
|
||||
"ImGuiFocusedFlags_": "imgui:1393",
|
||||
"ImBitVector": "imgui_internal:652",
|
||||
"ImColor": "imgui:2927",
|
||||
"ImDrawChannel": "imgui:3175",
|
||||
"ImDrawCmd": "imgui:3131",
|
||||
"ImDrawCmdHeader": "imgui:3167",
|
||||
"ImDrawData": "imgui:3396",
|
||||
"ImDrawDataBuilder": "imgui_internal:880",
|
||||
"ImDrawFlags_": "imgui:3200",
|
||||
"ImDrawList": "imgui:3238",
|
||||
"ImDrawListFlags_": "imgui:3220",
|
||||
"ImDrawListSharedData": "imgui_internal:853",
|
||||
"ImDrawListSplitter": "imgui:3183",
|
||||
"ImDrawTextFlags_": "imgui_internal:434",
|
||||
"ImDrawVert": "imgui:3152",
|
||||
"ImFont": "imgui:3815",
|
||||
"ImFontAtlas": "imgui:3618",
|
||||
"ImFontAtlasBuilder": "imgui_internal:3810",
|
||||
"ImFontAtlasFlags_": "imgui:3591",
|
||||
"ImFontAtlasPostProcessData": "imgui_internal:3783",
|
||||
"ImFontAtlasRect": "imgui:3581",
|
||||
"ImFontAtlasRectEntry": "imgui_internal:3775",
|
||||
"ImFontBaked": "imgui:3767",
|
||||
"ImFontConfig": "imgui:3503",
|
||||
"ImFontFlags_": "imgui:3802",
|
||||
"ImFontGlyph": "imgui:3543",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3559",
|
||||
"ImFontLoader": "imgui_internal:3724",
|
||||
"ImFontStackData": "imgui_internal:888",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1667",
|
||||
"ImGuiAxis": "imgui_internal:1138",
|
||||
"ImGuiBackendFlags_": "imgui:1710",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1858",
|
||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:1025",
|
||||
"ImGuiButtonFlags_": "imgui:1845",
|
||||
"ImGuiChildFlags_": "imgui:1197",
|
||||
"ImGuiCol_": "imgui:1721",
|
||||
"ImGuiColorEditFlags_": "imgui:1856",
|
||||
"ImGuiColorMod": "imgui_internal:908",
|
||||
"ImGuiComboFlagsPrivate_": "imgui_internal:1052",
|
||||
"ImGuiComboFlags_": "imgui:1362",
|
||||
"ImGuiComboPreviewData": "imgui_internal:1152",
|
||||
"ImGuiCond_": "imgui:1970",
|
||||
"ImGuiConfigFlags_": "imgui:1690",
|
||||
"ImGuiContext": "imgui_internal:2163",
|
||||
"ImGuiContextHook": "imgui_internal:2148",
|
||||
"ImGuiContextHookType": "imgui_internal:2146",
|
||||
"ImGuiDataTypeInfo": "imgui_internal:934",
|
||||
"ImGuiDataTypePrivate_": "imgui_internal:943",
|
||||
"ImGuiDataTypeStorage": "imgui_internal:928",
|
||||
"ImGuiDataType_": "imgui:1496",
|
||||
"ImGuiDeactivatedItemData": "imgui_internal:1435",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2078",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2085",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2056",
|
||||
"ImGuiDir": "imgui:1514",
|
||||
"ImGuiDragDropFlags_": "imgui:1468",
|
||||
"ImGuiErrorRecoveryState": "imgui_internal:1391",
|
||||
"ImGuiFocusRequestFlags_": "imgui_internal:1098",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1755",
|
||||
"ImGuiFocusedFlags_": "imgui:1416",
|
||||
"ImGuiFreeTypeLoaderFlags_": "imgui_freetype:29",
|
||||
"ImGuiGroupData": "imgui_internal:1150",
|
||||
"ImGuiHoveredFlagsPrivate_": "imgui_internal:992",
|
||||
"ImGuiHoveredFlags_": "imgui:1407",
|
||||
"ImGuiIDStackTool": "imgui_internal:2104",
|
||||
"ImGuiIO": "imgui:2340",
|
||||
"ImGuiInputEvent": "imgui_internal:1508",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1506",
|
||||
"ImGuiInputEventKey": "imgui_internal:1504",
|
||||
"ImGuiInputEventMouseButton": "imgui_internal:1503",
|
||||
"ImGuiInputEventMousePos": "imgui_internal:1501",
|
||||
"ImGuiInputEventMouseWheel": "imgui_internal:1502",
|
||||
"ImGuiInputEventText": "imgui_internal:1505",
|
||||
"ImGuiInputEventType": "imgui_internal:1478",
|
||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1574",
|
||||
"ImGuiInputFlags_": "imgui:1644",
|
||||
"ImGuiInputSource": "imgui_internal:1490",
|
||||
"ImGuiInputTextCallbackData": "imgui:2582",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1186",
|
||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:1000",
|
||||
"ImGuiInputTextFlags_": "imgui:1225",
|
||||
"ImGuiInputTextState": "imgui_internal:1208",
|
||||
"ImGuiItemFlagsPrivate_": "imgui_internal:940",
|
||||
"ImGuiItemFlags_": "imgui:1212",
|
||||
"ImGuiItemStatusFlags_": "imgui_internal:965",
|
||||
"ImGuiKey": "imgui:1515",
|
||||
"ImGuiKeyData": "imgui:2332",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1561",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1535",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1549",
|
||||
"ImGuiLastItemData": "imgui_internal:1340",
|
||||
"ImGuiLayoutType_": "imgui_internal:1104",
|
||||
"ImGuiListClipper": "imgui:2790",
|
||||
"ImGuiListClipperData": "imgui_internal:1631",
|
||||
"ImGuiListClipperRange": "imgui_internal:1618",
|
||||
"ImGuiLocEntry": "imgui_internal:2008",
|
||||
"ImGuiLocKey": "imgui_internal:1993",
|
||||
"ImGuiLogFlags_": "imgui_internal:1111",
|
||||
"ImGuiMenuColumns": "imgui_internal:1168",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2074",
|
||||
"ImGuiMouseButton_": "imgui:1902",
|
||||
"ImGuiMouseCursor_": "imgui:1912",
|
||||
"ImGuiMouseSource": "imgui:1933",
|
||||
"ImGuiMultiSelectFlags_": "imgui:2948",
|
||||
"ImGuiMultiSelectIO": "imgui:2975",
|
||||
"ImGuiMultiSelectState": "imgui_internal:1894",
|
||||
"ImGuiMultiSelectTempData": "imgui_internal:1869",
|
||||
"ImGuiNavItemData": "imgui_internal:1717",
|
||||
"ImGuiNavLayer": "imgui_internal:1709",
|
||||
"ImGuiNavMoveFlags_": "imgui_internal:1687",
|
||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1672",
|
||||
"ImGuiNextItemData": "imgui_internal:1319",
|
||||
"ImGuiNextItemDataFlags_": "imgui_internal:1309",
|
||||
"ImGuiNextWindowData": "imgui_internal:1282",
|
||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1265",
|
||||
"ImGuiOldColumnData": "imgui_internal:1802",
|
||||
"ImGuiOldColumnFlags_": "imgui_internal:1782",
|
||||
"ImGuiOldColumns": "imgui_internal:1812",
|
||||
"ImGuiOnceUponAFrame": "imgui:2660",
|
||||
"ImGuiPayload": "imgui:2625",
|
||||
"ImGuiPlatformIO": "imgui:3888",
|
||||
"ImGuiPlatformImeData": "imgui:3938",
|
||||
"ImGuiPlotType": "imgui_internal:1130",
|
||||
"ImGuiPopupData": "imgui_internal:1435",
|
||||
"ImGuiPopupFlags_": "imgui:1311",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1427",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1405",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1658",
|
||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:1049",
|
||||
"ImGuiSelectableFlags_": "imgui:1329",
|
||||
"ImGuiSelectionBasicStorage": "imgui:3021",
|
||||
"ImGuiSelectionExternalStorage": "imgui:3044",
|
||||
"ImGuiSelectionRequest": "imgui:2995",
|
||||
"ImGuiSelectionRequestType": "imgui:2987",
|
||||
"ImGuiSeparatorFlags_": "imgui_internal:1072",
|
||||
"ImGuiSettingsHandler": "imgui_internal:1973",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1398",
|
||||
"ImGuiSizeCallbackData": "imgui:2616",
|
||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:1042",
|
||||
"ImGuiSliderFlags_": "imgui:1886",
|
||||
"ImGuiSortDirection": "imgui:1502",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2092",
|
||||
"ImGuiStorage": "imgui:2733",
|
||||
"ImGuiStoragePair": "imgui:2716",
|
||||
"ImGuiStyle": "imgui:2231",
|
||||
"ImGuiStyleMod": "imgui_internal:899",
|
||||
"ImGuiStyleVarInfo": "imgui_internal:883",
|
||||
"ImGuiStyleVar_": "imgui:1776",
|
||||
"ImGuiTabBar": "imgui_internal:2749",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2712",
|
||||
"ImGuiTabBarFlags_": "imgui:1361",
|
||||
"ImGuiTabItem": "imgui_internal:2730",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2720",
|
||||
"ImGuiTabItemFlags_": "imgui:1378",
|
||||
"ImGuiTable": "imgui_internal:2892",
|
||||
"ImGuiTableBgTarget_": "imgui:2085",
|
||||
"ImGuiTableCellData": "imgui_internal:2860",
|
||||
"ImGuiTableColumn": "imgui_internal:2800",
|
||||
"ImGuiTableColumnFlags_": "imgui:2032",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3040",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:2107",
|
||||
"ImGuiTableFlags_": "imgui:1979",
|
||||
"ImGuiTableHeaderData": "imgui_internal:2869",
|
||||
"ImGuiTableInstanceData": "imgui_internal:2879",
|
||||
"ImGuiTableRowFlags_": "imgui:2070",
|
||||
"ImGuiTableSettings": "imgui_internal:3064",
|
||||
"ImGuiTableSortSpecs": "imgui:2097",
|
||||
"ImGuiTableTempData": "imgui_internal:3017",
|
||||
"ImGuiTextBuffer": "imgui:2695",
|
||||
"ImGuiTextFilter": "imgui:2668",
|
||||
"ImGuiTextFlags_": "imgui_internal:1090",
|
||||
"ImGuiTextIndex": "imgui_internal:789",
|
||||
"ImGuiTextRange": "imgui:2678",
|
||||
"ImGuiTooltipFlags_": "imgui_internal:1096",
|
||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1063",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1267",
|
||||
"ImGuiTreeNodeStackData": "imgui_internal:1359",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1745",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1753",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1764",
|
||||
"ImGuiViewport": "imgui:3862",
|
||||
"ImGuiViewportFlags_": "imgui:3847",
|
||||
"ImGuiViewportP": "imgui_internal:1922",
|
||||
"ImGuiWindow": "imgui_internal:2577",
|
||||
"ImGuiWindowFlags_": "imgui:1142",
|
||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1256",
|
||||
"ImGuiWindowSettings": "imgui_internal:1959",
|
||||
"ImGuiWindowStackData": "imgui_internal:1389",
|
||||
"ImGuiWindowTempData": "imgui_internal:2524",
|
||||
"ImRect": "imgui_internal:558",
|
||||
"ImTextureData": "imgui:3424",
|
||||
"ImTextureFormat": "imgui:3392",
|
||||
"ImTextureRect": "imgui:3411",
|
||||
"ImTextureRef": "imgui:355",
|
||||
"ImTextureStatus": "imgui:3399",
|
||||
"ImVec1": "imgui_internal:532",
|
||||
"ImVec2": "imgui:287",
|
||||
"ImVec2i": "imgui_internal:540",
|
||||
"ImVec2ih": "imgui_internal:548",
|
||||
"ImVec4": "imgui:300",
|
||||
"stbrp_context_opaque": "imgui_internal:3776"
|
||||
"ImGuiGroupData": "imgui_internal:1165",
|
||||
"ImGuiHoveredFlagsPrivate_": "imgui_internal:1008",
|
||||
"ImGuiHoveredFlags_": "imgui:1430",
|
||||
"ImGuiIDStackTool": "imgui_internal:2125",
|
||||
"ImGuiIO": "imgui:2369",
|
||||
"ImGuiInputEvent": "imgui_internal:1528",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1526",
|
||||
"ImGuiInputEventKey": "imgui_internal:1524",
|
||||
"ImGuiInputEventMouseButton": "imgui_internal:1523",
|
||||
"ImGuiInputEventMousePos": "imgui_internal:1521",
|
||||
"ImGuiInputEventMouseWheel": "imgui_internal:1522",
|
||||
"ImGuiInputEventText": "imgui_internal:1525",
|
||||
"ImGuiInputEventType": "imgui_internal:1498",
|
||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1594",
|
||||
"ImGuiInputFlags_": "imgui:1667",
|
||||
"ImGuiInputSource": "imgui_internal:1510",
|
||||
"ImGuiInputTextCallbackData": "imgui:2611",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1201",
|
||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:1016",
|
||||
"ImGuiInputTextFlags_": "imgui:1231",
|
||||
"ImGuiInputTextState": "imgui_internal:1223",
|
||||
"ImGuiItemFlagsPrivate_": "imgui_internal:956",
|
||||
"ImGuiItemFlags_": "imgui:1218",
|
||||
"ImGuiItemStatusFlags_": "imgui_internal:981",
|
||||
"ImGuiKey": "imgui:1538",
|
||||
"ImGuiKeyData": "imgui:2361",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1581",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1555",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1569",
|
||||
"ImGuiLastItemData": "imgui_internal:1360",
|
||||
"ImGuiLayoutType_": "imgui_internal:1119",
|
||||
"ImGuiListClipper": "imgui:2826",
|
||||
"ImGuiListClipperData": "imgui_internal:1651",
|
||||
"ImGuiListClipperFlags_": "imgui:2800",
|
||||
"ImGuiListClipperRange": "imgui_internal:1638",
|
||||
"ImGuiLocEntry": "imgui_internal:2029",
|
||||
"ImGuiLocKey": "imgui_internal:2014",
|
||||
"ImGuiLogFlags_": "imgui_internal:1126",
|
||||
"ImGuiMenuColumns": "imgui_internal:1183",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2095",
|
||||
"ImGuiMouseButton_": "imgui:1928",
|
||||
"ImGuiMouseCursor_": "imgui:1938",
|
||||
"ImGuiMouseSource": "imgui:1959",
|
||||
"ImGuiMultiSelectFlags_": "imgui:2985",
|
||||
"ImGuiMultiSelectIO": "imgui:3012",
|
||||
"ImGuiMultiSelectState": "imgui_internal:1915",
|
||||
"ImGuiMultiSelectTempData": "imgui_internal:1890",
|
||||
"ImGuiNavItemData": "imgui_internal:1738",
|
||||
"ImGuiNavLayer": "imgui_internal:1730",
|
||||
"ImGuiNavMoveFlags_": "imgui_internal:1708",
|
||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1693",
|
||||
"ImGuiNextItemData": "imgui_internal:1339",
|
||||
"ImGuiNextItemDataFlags_": "imgui_internal:1329",
|
||||
"ImGuiNextWindowData": "imgui_internal:1302",
|
||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1285",
|
||||
"ImGuiOldColumnData": "imgui_internal:1823",
|
||||
"ImGuiOldColumnFlags_": "imgui_internal:1803",
|
||||
"ImGuiOldColumns": "imgui_internal:1833",
|
||||
"ImGuiOnceUponAFrame": "imgui:2689",
|
||||
"ImGuiPayload": "imgui:2654",
|
||||
"ImGuiPlatformIO": "imgui:3926",
|
||||
"ImGuiPlatformImeData": "imgui:3976",
|
||||
"ImGuiPlotType": "imgui_internal:1145",
|
||||
"ImGuiPopupData": "imgui_internal:1455",
|
||||
"ImGuiPopupFlags_": "imgui:1326",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1447",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1425",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1679",
|
||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:1065",
|
||||
"ImGuiSelectableFlags_": "imgui:1344",
|
||||
"ImGuiSelectionBasicStorage": "imgui:3058",
|
||||
"ImGuiSelectionExternalStorage": "imgui:3081",
|
||||
"ImGuiSelectionRequest": "imgui:3032",
|
||||
"ImGuiSelectionRequestType": "imgui:3024",
|
||||
"ImGuiSeparatorFlags_": "imgui_internal:1087",
|
||||
"ImGuiSettingsHandler": "imgui_internal:1994",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1418",
|
||||
"ImGuiSizeCallbackData": "imgui:2645",
|
||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:1058",
|
||||
"ImGuiSliderFlags_": "imgui:1912",
|
||||
"ImGuiSortDirection": "imgui:1525",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2113",
|
||||
"ImGuiStorage": "imgui:2762",
|
||||
"ImGuiStoragePair": "imgui:2745",
|
||||
"ImGuiStyle": "imgui:2257",
|
||||
"ImGuiStyleMod": "imgui_internal:915",
|
||||
"ImGuiStyleVarInfo": "imgui_internal:899",
|
||||
"ImGuiStyleVar_": "imgui:1799",
|
||||
"ImGuiTabBar": "imgui_internal:2775",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2738",
|
||||
"ImGuiTabBarFlags_": "imgui:1377",
|
||||
"ImGuiTabItem": "imgui_internal:2756",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2746",
|
||||
"ImGuiTabItemFlags_": "imgui:1401",
|
||||
"ImGuiTable": "imgui_internal:2920",
|
||||
"ImGuiTableBgTarget_": "imgui:2111",
|
||||
"ImGuiTableCellData": "imgui_internal:2888",
|
||||
"ImGuiTableColumn": "imgui_internal:2828",
|
||||
"ImGuiTableColumnFlags_": "imgui:2058",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3068",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:2133",
|
||||
"ImGuiTableFlags_": "imgui:2005",
|
||||
"ImGuiTableHeaderData": "imgui_internal:2897",
|
||||
"ImGuiTableInstanceData": "imgui_internal:2907",
|
||||
"ImGuiTableRowFlags_": "imgui:2096",
|
||||
"ImGuiTableSettings": "imgui_internal:3092",
|
||||
"ImGuiTableSortSpecs": "imgui:2123",
|
||||
"ImGuiTableTempData": "imgui_internal:3045",
|
||||
"ImGuiTextBuffer": "imgui:2724",
|
||||
"ImGuiTextFilter": "imgui:2697",
|
||||
"ImGuiTextFlags_": "imgui_internal:1105",
|
||||
"ImGuiTextIndex": "imgui_internal:805",
|
||||
"ImGuiTextRange": "imgui:2707",
|
||||
"ImGuiTooltipFlags_": "imgui_internal:1111",
|
||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1078",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1282",
|
||||
"ImGuiTreeNodeStackData": "imgui_internal:1379",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1766",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1774",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1785",
|
||||
"ImGuiViewport": "imgui:3900",
|
||||
"ImGuiViewportFlags_": "imgui:3885",
|
||||
"ImGuiViewportP": "imgui_internal:1943",
|
||||
"ImGuiWindow": "imgui_internal:2603",
|
||||
"ImGuiWindowFlags_": "imgui:1148",
|
||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1276",
|
||||
"ImGuiWindowSettings": "imgui_internal:1980",
|
||||
"ImGuiWindowStackData": "imgui_internal:1409",
|
||||
"ImGuiWindowTempData": "imgui_internal:2550",
|
||||
"ImRect": "imgui_internal:573",
|
||||
"ImTextureData": "imgui:3461",
|
||||
"ImTextureFormat": "imgui:3429",
|
||||
"ImTextureRect": "imgui:3448",
|
||||
"ImTextureRef": "imgui:361",
|
||||
"ImTextureStatus": "imgui:3436",
|
||||
"ImVec1": "imgui_internal:547",
|
||||
"ImVec2": "imgui:291",
|
||||
"ImVec2i": "imgui_internal:555",
|
||||
"ImVec2ih": "imgui_internal:563",
|
||||
"ImVec4": "imgui:304",
|
||||
"stbrp_context_opaque": "imgui_internal:3807"
|
||||
},
|
||||
"nonPOD": {
|
||||
"ImBitArray": true,
|
||||
@@ -5843,7 +5910,7 @@
|
||||
{
|
||||
"bitfield": "10",
|
||||
"name": "Generation",
|
||||
"type": "int"
|
||||
"type": "unsigned int"
|
||||
},
|
||||
{
|
||||
"bitfield": "1",
|
||||
@@ -5903,7 +5970,12 @@
|
||||
},
|
||||
{
|
||||
"bitfield": "1",
|
||||
"name": "LockLoadingFallback",
|
||||
"name": "LoadNoFallback",
|
||||
"type": "unsigned int"
|
||||
},
|
||||
{
|
||||
"bitfield": "1",
|
||||
"name": "LoadNoRenderOnLayout",
|
||||
"type": "unsigned int"
|
||||
},
|
||||
{
|
||||
@@ -6456,7 +6528,7 @@
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "DebugHookIdInfo",
|
||||
"name": "DebugHookIdInfoId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
@@ -6531,6 +6603,10 @@
|
||||
"name": "ActiveIdFromShortcut",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "ActiveIdDisabledId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"bitfield": "8",
|
||||
"name": "ActiveIdMouseButton",
|
||||
@@ -7132,6 +7208,10 @@
|
||||
"name": "InputTextState",
|
||||
"type": "ImGuiInputTextState"
|
||||
},
|
||||
{
|
||||
"name": "InputTextLineIndex",
|
||||
"type": "ImGuiTextIndex"
|
||||
},
|
||||
{
|
||||
"name": "InputTextDeactivatedState",
|
||||
"type": "ImGuiInputTextDeactivatedState"
|
||||
@@ -7726,7 +7806,7 @@
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "QueryId",
|
||||
"name": "QueryMainId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
@@ -7735,7 +7815,15 @@
|
||||
"type": "ImVector_ImGuiStackLevelInfo"
|
||||
},
|
||||
{
|
||||
"name": "CopyToClipboardOnCtrlC",
|
||||
"name": "QueryHookActive",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "OptHexEncodeNonAsciiChars",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "OptCopyToClipboardOnCtrlC",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
@@ -7743,7 +7831,11 @@
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ResultPathBuf",
|
||||
"name": "ResultPathsBuf",
|
||||
"type": "ImGuiTextBuffer"
|
||||
},
|
||||
{
|
||||
"name": "ResultTempBuf",
|
||||
"type": "ImGuiTextBuffer"
|
||||
}
|
||||
],
|
||||
@@ -8360,6 +8452,14 @@
|
||||
"name": "Scroll",
|
||||
"type": "ImVec2"
|
||||
},
|
||||
{
|
||||
"name": "LineCount",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "WrapWidth",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "CursorAnim",
|
||||
"type": "float"
|
||||
@@ -8368,6 +8468,10 @@
|
||||
"name": "CursorFollow",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "CursorCenterY",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "SelectedAllMouseLock",
|
||||
"type": "bool"
|
||||
@@ -8380,6 +8484,10 @@
|
||||
"name": "WantReloadUserBuf",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "LastMoveDirectionLR",
|
||||
"type": "ImS8"
|
||||
},
|
||||
{
|
||||
"name": "ReloadSelectionStart",
|
||||
"type": "int"
|
||||
@@ -8534,6 +8642,10 @@
|
||||
{
|
||||
"name": "TempData",
|
||||
"type": "void*"
|
||||
},
|
||||
{
|
||||
"name": "Flags",
|
||||
"type": "ImGuiListClipperFlags"
|
||||
}
|
||||
],
|
||||
"ImGuiListClipperData": [
|
||||
@@ -9358,14 +9470,12 @@
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"bitfield": "8",
|
||||
"name": "DataType",
|
||||
"type": "ImGuiDataType"
|
||||
"type": "ImS8"
|
||||
},
|
||||
{
|
||||
"name": "Desc[57]",
|
||||
"size": 57,
|
||||
"type": "char"
|
||||
"name": "DescOffset",
|
||||
"type": "int"
|
||||
}
|
||||
],
|
||||
"ImGuiStorage": [
|
||||
@@ -9494,6 +9604,10 @@
|
||||
"name": "ScrollbarRounding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ScrollbarPadding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "GrabMinSize",
|
||||
"type": "float"
|
||||
@@ -9518,6 +9632,14 @@
|
||||
"name": "TabBorderSize",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "TabMinWidthBase",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "TabMinWidthShrink",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "TabCloseButtonMinWidthSelected",
|
||||
"type": "float"
|
||||
@@ -9713,6 +9835,10 @@
|
||||
"name": "BarRect",
|
||||
"type": "ImRect"
|
||||
},
|
||||
{
|
||||
"name": "BarRectPrevWidth",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "CurrTabsContentsHeight",
|
||||
"type": "float"
|
||||
@@ -9785,6 +9911,10 @@
|
||||
"name": "TabsAddedNew",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "ScrollButtonEnabled",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "TabsActiveCount",
|
||||
"type": "ImS16"
|
||||
@@ -10728,7 +10858,7 @@
|
||||
],
|
||||
"ImGuiTextIndex": [
|
||||
{
|
||||
"name": "LineOffsets",
|
||||
"name": "Offsets",
|
||||
"template_type": "int",
|
||||
"type": "ImVector_int"
|
||||
},
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -15,6 +15,7 @@
|
||||
"ImDrawListFlags": "int",
|
||||
"ImDrawListSharedData": "struct ImDrawListSharedData",
|
||||
"ImDrawListSplitter": "struct ImDrawListSplitter",
|
||||
"ImDrawTextFlags": "int",
|
||||
"ImDrawVert": "struct ImDrawVert",
|
||||
"ImFileHandle": "FILE*",
|
||||
"ImFont": "struct ImFont",
|
||||
@@ -92,6 +93,7 @@
|
||||
"ImGuiLayoutType": "int",
|
||||
"ImGuiListClipper": "struct ImGuiListClipper",
|
||||
"ImGuiListClipperData": "struct ImGuiListClipperData",
|
||||
"ImGuiListClipperFlags": "int",
|
||||
"ImGuiListClipperRange": "struct ImGuiListClipperRange",
|
||||
"ImGuiLocEntry": "struct ImGuiLocEntry",
|
||||
"ImGuiLogFlags": "int",
|
||||
|
@@ -15,6 +15,7 @@ local t={
|
||||
ImDrawListFlags="int",
|
||||
ImDrawListSharedData="struct ImDrawListSharedData",
|
||||
ImDrawListSplitter="struct ImDrawListSplitter",
|
||||
ImDrawTextFlags="int",
|
||||
ImDrawVert="struct ImDrawVert",
|
||||
ImFileHandle="FILE*",
|
||||
ImFont="struct ImFont",
|
||||
@@ -92,6 +93,7 @@ local t={
|
||||
ImGuiLayoutType="int",
|
||||
ImGuiListClipper="struct ImGuiListClipper",
|
||||
ImGuiListClipperData="struct ImGuiListClipperData",
|
||||
ImGuiListClipperFlags="int",
|
||||
ImGuiListClipperRange="struct ImGuiListClipperRange",
|
||||
ImGuiLocEntry="struct ImGuiLocEntry",
|
||||
ImGuiLogFlags="int",
|
||||
|
2
imgui
2
imgui
Submodule imgui updated: 5d4126876b...bf75bfec48
Reference in New Issue
Block a user