mirror of
https://github.com/cimgui/cimgui.git
synced 2025-09-24 20:28:29 +00:00
Compare commits
3 Commits
1.92.0dock
...
docking_in
Author | SHA1 | Date | |
---|---|---|---|
![]() |
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.
|
||||
|
66
cimgui.cpp
66
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.0" 19200 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
|
||||
//docking branch
|
||||
@@ -2776,6 +2776,10 @@ CIMGUI_API void ImFontAtlas_CompactCache(ImFontAtlas* self)
|
||||
{
|
||||
return self->CompactCache();
|
||||
}
|
||||
CIMGUI_API void ImFontAtlas_SetFontLoader(ImFontAtlas* self,const ImFontLoader* font_loader)
|
||||
{
|
||||
return self->SetFontLoader(font_loader);
|
||||
}
|
||||
CIMGUI_API void ImFontAtlas_ClearInputData(ImFontAtlas* self)
|
||||
{
|
||||
return self->ClearInputData();
|
||||
@@ -2856,9 +2860,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)
|
||||
{
|
||||
@@ -2868,9 +2872,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)
|
||||
{
|
||||
@@ -2932,6 +2936,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);
|
||||
@@ -3083,7 +3091,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);
|
||||
}
|
||||
@@ -3119,6 +3127,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);
|
||||
@@ -3483,6 +3503,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);
|
||||
@@ -3655,6 +3679,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();
|
||||
@@ -4367,6 +4395,10 @@ CIMGUI_API void igStartMouseMovingWindowOrNode(ImGuiWindow* window,ImGuiDockNode
|
||||
{
|
||||
return ImGui::StartMouseMovingWindowOrNode(window,node,undock);
|
||||
}
|
||||
CIMGUI_API void igStopMouseMovingWindow()
|
||||
{
|
||||
return ImGui::StopMouseMovingWindow();
|
||||
}
|
||||
CIMGUI_API void igUpdateMouseMovingWindowNewFrame()
|
||||
{
|
||||
return ImGui::UpdateMouseMovingWindowNewFrame();
|
||||
@@ -4591,9 +4623,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)
|
||||
{
|
||||
@@ -5447,6 +5483,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);
|
||||
@@ -6024,7 +6068,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);
|
||||
}
|
||||
@@ -6156,6 +6200,10 @@ CIMGUI_API ImFontGlyph* igImFontAtlasBakedAddFontGlyph(ImFontAtlas* atlas,ImFont
|
||||
{
|
||||
return ImFontAtlasBakedAddFontGlyph(atlas,baked,src,in_glyph);
|
||||
}
|
||||
CIMGUI_API void igImFontAtlasBakedAddFontGlyphAdvancedX(ImFontAtlas* atlas,ImFontBaked* baked,ImFontConfig* src,ImWchar codepoint,float advance_x)
|
||||
{
|
||||
return ImFontAtlasBakedAddFontGlyphAdvancedX(atlas,baked,src,codepoint,advance_x);
|
||||
}
|
||||
CIMGUI_API void igImFontAtlasBakedDiscardFontGlyph(ImFontAtlas* atlas,ImFont* font,ImFontBaked* baked,ImFontGlyph* glyph)
|
||||
{
|
||||
return ImFontAtlasBakedDiscardFontGlyph(atlas,font,baked,glyph);
|
||||
|
107
cimgui.h
107
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.0" 19200 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
|
||||
//docking branch
|
||||
@@ -206,6 +206,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;
|
||||
@@ -222,6 +223,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;
|
||||
@@ -349,6 +351,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,
|
||||
@@ -396,6 +399,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,
|
||||
@@ -418,10 +422,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,
|
||||
@@ -807,11 +812,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,
|
||||
@@ -1034,12 +1042,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;
|
||||
@@ -1057,6 +1068,7 @@ struct ImGuiStyle
|
||||
ImVec2 SeparatorTextPadding;
|
||||
ImVec2 DisplayWindowPadding;
|
||||
ImVec2 DisplaySafeAreaPadding;
|
||||
bool DockingNodeHasCloseButton;
|
||||
float DockingSeparatorSize;
|
||||
float MouseCursorScale;
|
||||
bool AntiAliasedLines;
|
||||
@@ -1111,6 +1123,7 @@ struct ImGuiIO
|
||||
bool ConfigViewportsNoTaskBarIcon;
|
||||
bool ConfigViewportsNoDecoration;
|
||||
bool ConfigViewportsNoDefaultParent;
|
||||
bool ConfigViewportPlatformFocusSetsImGuiFocus;
|
||||
bool ConfigDpiScaleFonts;
|
||||
bool ConfigDpiScaleViewports;
|
||||
bool MouseDrawCursor;
|
||||
@@ -1278,6 +1291,10 @@ struct ImGuiStorage
|
||||
{
|
||||
ImVector_ImGuiStoragePair Data;
|
||||
};
|
||||
typedef enum {
|
||||
ImGuiListClipperFlags_None = 0,
|
||||
ImGuiListClipperFlags_NoSetTableRowCounters = 1 << 0,
|
||||
}ImGuiListClipperFlags_;
|
||||
struct ImGuiListClipper
|
||||
{
|
||||
ImGuiContext* Ctx;
|
||||
@@ -1288,6 +1305,7 @@ struct ImGuiListClipper
|
||||
double StartPosY;
|
||||
double StartSeekOffsetY;
|
||||
void* TempData;
|
||||
ImGuiListClipperFlags Flags;
|
||||
};
|
||||
struct ImColor
|
||||
{
|
||||
@@ -1509,9 +1527,9 @@ struct ImFontConfig
|
||||
bool MergeMode;
|
||||
bool PixelSnapH;
|
||||
bool PixelSnapV;
|
||||
ImS8 FontNo;
|
||||
ImS8 OversampleH;
|
||||
ImS8 OversampleV;
|
||||
ImWchar EllipsisChar;
|
||||
float SizePixels;
|
||||
const ImWchar* GlyphRanges;
|
||||
const ImWchar* GlyphExcludeRanges;
|
||||
@@ -1519,10 +1537,10 @@ struct ImFontConfig
|
||||
float GlyphMinAdvanceX;
|
||||
float GlyphMaxAdvanceX;
|
||||
float GlyphExtraAdvanceX;
|
||||
ImU32 FontNo;
|
||||
unsigned int FontLoaderFlags;
|
||||
float RasterizerMultiply;
|
||||
float RasterizerDensity;
|
||||
ImWchar EllipsisChar;
|
||||
ImFontFlags Flags;
|
||||
ImFont* DstFont;
|
||||
const ImFontLoader* FontLoader;
|
||||
@@ -1615,7 +1633,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;
|
||||
@@ -1798,6 +1817,7 @@ struct ImGuiWindowTempData;
|
||||
struct ImGuiWindowSettings;
|
||||
typedef int ImGuiDataAuthority;
|
||||
typedef int ImGuiLayoutType;
|
||||
typedef int ImDrawTextFlags;
|
||||
typedef int ImGuiActivateFlags;
|
||||
typedef int ImGuiDebugLogFlags;
|
||||
typedef int ImGuiFocusRequestFlags;
|
||||
@@ -1817,6 +1837,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
|
||||
@@ -1848,7 +1874,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
|
||||
@@ -1982,7 +2008,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,
|
||||
@@ -2094,11 +2119,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;
|
||||
};
|
||||
@@ -2268,11 +2297,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
|
||||
@@ -2401,6 +2430,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,
|
||||
@@ -2806,8 +2836,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;
|
||||
@@ -2816,11 +2846,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;
|
||||
@@ -2943,8 +2976,8 @@ struct ImGuiContext
|
||||
float WheelingWindowReleaseTimer;
|
||||
ImVec2 WheelingWindowWheelRemainder;
|
||||
ImVec2 WheelingAxisAvg;
|
||||
ImGuiID DebugDrawIdConflicts;
|
||||
ImGuiID DebugHookIdInfo;
|
||||
ImGuiID DebugDrawIdConflictsId;
|
||||
ImGuiID DebugHookIdInfoId;
|
||||
ImGuiID HoveredId;
|
||||
ImGuiID HoveredIdPreviousFrame;
|
||||
int HoveredIdPreviousFrameItemCount;
|
||||
@@ -2963,6 +2996,7 @@ struct ImGuiContext
|
||||
bool ActiveIdHasBeenEditedBefore;
|
||||
bool ActiveIdHasBeenEditedThisFrame;
|
||||
bool ActiveIdFromShortcut;
|
||||
ImGuiID ActiveIdDisabledId;
|
||||
int ActiveIdMouseButton : 8;
|
||||
ImVec2 ActiveIdClickOffset;
|
||||
ImGuiWindow* ActiveIdWindow;
|
||||
@@ -3116,6 +3150,7 @@ struct ImGuiContext
|
||||
float MouseStationaryTimer;
|
||||
ImVec2 MouseLastValidPos;
|
||||
ImGuiInputTextState InputTextState;
|
||||
ImGuiTextIndex InputTextLineIndex;
|
||||
ImGuiInputTextDeactivatedState InputTextDeactivatedState;
|
||||
ImFontBaked InputTextPasswordFontBackupBaked;
|
||||
ImFontFlags InputTextPasswordFontBackupFlags;
|
||||
@@ -3421,6 +3456,7 @@ struct ImGuiTabBar
|
||||
int CurrFrameVisible;
|
||||
int PrevFrameVisible;
|
||||
ImRect BarRect;
|
||||
float BarRectPrevWidth;
|
||||
float CurrTabsContentsHeight;
|
||||
float PrevTabsContentsHeight;
|
||||
float WidthAllTabs;
|
||||
@@ -3439,6 +3475,7 @@ struct ImGuiTabBar
|
||||
bool WantLayout;
|
||||
bool VisibleTabWasSubmitted;
|
||||
bool TabsAddedNew;
|
||||
bool ScrollButtonEnabled;
|
||||
ImS16 TabsActiveCount;
|
||||
ImS16 LastTabItemIdx;
|
||||
float ItemSpacingY;
|
||||
@@ -3689,13 +3726,13 @@ struct ImFontLoader
|
||||
bool (*FontSrcContainsGlyph)(ImFontAtlas* atlas, ImFontConfig* src, ImWchar codepoint);
|
||||
bool (*FontBakedInit)(ImFontAtlas* atlas, ImFontConfig* src, ImFontBaked* baked, void* loader_data_for_baked_src);
|
||||
void (*FontBakedDestroy)(ImFontAtlas* atlas, ImFontConfig* src, ImFontBaked* baked, void* loader_data_for_baked_src);
|
||||
bool (*FontBakedLoadGlyph)(ImFontAtlas* atlas, ImFontConfig* src, ImFontBaked* baked, void* loader_data_for_baked_src, ImWchar codepoint, ImFontGlyph* out_glyph);
|
||||
bool (*FontBakedLoadGlyph)(ImFontAtlas* atlas, ImFontConfig* src, ImFontBaked* baked, void* loader_data_for_baked_src, ImWchar codepoint, ImFontGlyph* out_glyph, float* out_advance_x);
|
||||
size_t FontBakedSrcLoaderDataSize;
|
||||
};
|
||||
struct ImFontAtlasRectEntry
|
||||
{
|
||||
int TargetIndex : 20;
|
||||
int Generation : 10;
|
||||
unsigned int Generation : 10;
|
||||
unsigned int IsUsed : 1;
|
||||
};
|
||||
struct ImFontAtlasPostProcessData
|
||||
@@ -4552,6 +4589,7 @@ CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(ImFontAtlas*
|
||||
CIMGUI_API void ImFontAtlas_RemoveFont(ImFontAtlas* self,ImFont* font);
|
||||
CIMGUI_API void ImFontAtlas_Clear(ImFontAtlas* self);
|
||||
CIMGUI_API void ImFontAtlas_CompactCache(ImFontAtlas* self);
|
||||
CIMGUI_API void ImFontAtlas_SetFontLoader(ImFontAtlas* self,const ImFontLoader* font_loader);
|
||||
CIMGUI_API void ImFontAtlas_ClearInputData(ImFontAtlas* self);
|
||||
CIMGUI_API void ImFontAtlas_ClearFonts(ImFontAtlas* self);
|
||||
CIMGUI_API void ImFontAtlas_ClearTexData(ImFontAtlas* self);
|
||||
@@ -4572,10 +4610,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);
|
||||
@@ -4591,6 +4629,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);
|
||||
@@ -4630,7 +4669,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);
|
||||
@@ -4639,6 +4678,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);
|
||||
@@ -4730,6 +4772,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);
|
||||
@@ -4773,6 +4816,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);
|
||||
@@ -4951,6 +4995,7 @@ 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 igStartMouseMovingWindowOrNode(ImGuiWindow* window,ImGuiDockNode* node,bool undock);
|
||||
CIMGUI_API void igStopMouseMovingWindow(void);
|
||||
CIMGUI_API void igUpdateMouseMovingWindowNewFrame(void);
|
||||
CIMGUI_API void igUpdateMouseMovingWindowEndFrame(void);
|
||||
CIMGUI_API ImGuiID igAddContextHook(ImGuiContext* context,const ImGuiContextHook* hook);
|
||||
@@ -5007,7 +5052,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);
|
||||
@@ -5221,6 +5267,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);
|
||||
@@ -5366,7 +5414,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);
|
||||
@@ -5399,6 +5447,7 @@ CIMGUI_API ImFontBaked* igImFontAtlasBakedGetClosestMatch(ImFontAtlas* atlas,ImF
|
||||
CIMGUI_API ImFontBaked* igImFontAtlasBakedAdd(ImFontAtlas* atlas,ImFont* font,float font_size,float font_rasterizer_density,ImGuiID baked_id);
|
||||
CIMGUI_API void igImFontAtlasBakedDiscard(ImFontAtlas* atlas,ImFont* font,ImFontBaked* baked);
|
||||
CIMGUI_API ImFontGlyph* igImFontAtlasBakedAddFontGlyph(ImFontAtlas* atlas,ImFontBaked* baked,ImFontConfig* src,const ImFontGlyph* in_glyph);
|
||||
CIMGUI_API void igImFontAtlasBakedAddFontGlyphAdvancedX(ImFontAtlas* atlas,ImFontBaked* baked,ImFontConfig* src,ImWchar codepoint,float advance_x);
|
||||
CIMGUI_API void igImFontAtlasBakedDiscardFontGlyph(ImFontAtlas* atlas,ImFont* font,ImFontBaked* baked,ImFontGlyph* glyph);
|
||||
CIMGUI_API void igImFontAtlasBakedSetFontGlyphBitmap(ImFontAtlas* atlas,ImFontBaked* baked,ImFontConfig* src,ImFontGlyph* glyph,ImTextureRect* r,const unsigned char* src_pixels,ImTextureFormat src_fmt,int src_pitch);
|
||||
CIMGUI_API void igImFontAtlasPackInit(ImFontAtlas* atlas);
|
||||
|
@@ -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
|
||||
{
|
||||
@@ -185,6 +193,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:167",
|
||||
"location": "imgui_impl_vulkan:179",
|
||||
"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:168",
|
||||
"location": "imgui_impl_vulkan:180",
|
||||
"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:173",
|
||||
"location": "imgui_impl_vulkan:185",
|
||||
"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:171",
|
||||
"location": "imgui_impl_vulkan:183",
|
||||
"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:170",
|
||||
"location": "imgui_impl_vulkan:182",
|
||||
"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:172",
|
||||
"location": "imgui_impl_vulkan:184",
|
||||
"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:169",
|
||||
"location": "imgui_impl_vulkan:181",
|
||||
"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:124",
|
||||
"location": "imgui_impl_vulkan:136",
|
||||
"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:128",
|
||||
"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:112",
|
||||
"location": "imgui_impl_vulkan:110",
|
||||
"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:129",
|
||||
"location": "imgui_impl_vulkan:141",
|
||||
"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:114",
|
||||
"location": "imgui_impl_vulkan:112",
|
||||
"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:125",
|
||||
"location": "imgui_impl_vulkan:137",
|
||||
"ov_cimguiname": "ImGui_ImplVulkan_RemoveTexture",
|
||||
"ret": "void",
|
||||
"signature": "(VkDescriptorSet)",
|
||||
@@ -1609,7 +1630,7 @@
|
||||
"pipeline": "0ULL"
|
||||
},
|
||||
"funcname": "ImGui_ImplVulkan_RenderDrawData",
|
||||
"location": "imgui_impl_vulkan:115",
|
||||
"location": "imgui_impl_vulkan:113",
|
||||
"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:116",
|
||||
"location": "imgui_impl_vulkan:114",
|
||||
"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:113",
|
||||
"location": "imgui_impl_vulkan:111",
|
||||
"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:119",
|
||||
"location": "imgui_impl_vulkan:131",
|
||||
"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:167",
|
||||
location="imgui_impl_vulkan:179",
|
||||
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:168",
|
||||
location="imgui_impl_vulkan:180",
|
||||
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:173",
|
||||
location="imgui_impl_vulkan:185",
|
||||
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:171",
|
||||
location="imgui_impl_vulkan:183",
|
||||
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:170",
|
||||
location="imgui_impl_vulkan:182",
|
||||
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:172",
|
||||
location="imgui_impl_vulkan:184",
|
||||
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:169",
|
||||
location="imgui_impl_vulkan:181",
|
||||
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:124",
|
||||
location="imgui_impl_vulkan:136",
|
||||
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:128",
|
||||
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:112",
|
||||
location="imgui_impl_vulkan:110",
|
||||
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:129",
|
||||
location="imgui_impl_vulkan:141",
|
||||
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:114",
|
||||
location="imgui_impl_vulkan:112",
|
||||
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:125",
|
||||
location="imgui_impl_vulkan:137",
|
||||
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:115",
|
||||
location="imgui_impl_vulkan:113",
|
||||
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:116",
|
||||
location="imgui_impl_vulkan:114",
|
||||
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:113",
|
||||
location="imgui_impl_vulkan:111",
|
||||
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:119",
|
||||
location="imgui_impl_vulkan:131",
|
||||
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": [
|
||||
@@ -2117,6 +2144,11 @@
|
||||
"calc_value": 8388608,
|
||||
"name": "ImGuiInputTextFlags_CallbackEdit",
|
||||
"value": "1 << 23"
|
||||
},
|
||||
{
|
||||
"calc_value": 16777216,
|
||||
"name": "ImGuiInputTextFlags_WordWrap",
|
||||
"value": "1 << 24"
|
||||
}
|
||||
],
|
||||
"ImGuiItemFlagsPrivate_": [
|
||||
@@ -3119,6 +3151,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,
|
||||
@@ -3842,11 +3886,6 @@
|
||||
"name": "ImGuiSelectableFlags_NoHoldingActiveID",
|
||||
"value": "1 << 20"
|
||||
},
|
||||
{
|
||||
"calc_value": 2097152,
|
||||
"name": "ImGuiSelectableFlags_SelectOnNav",
|
||||
"value": "1 << 21"
|
||||
},
|
||||
{
|
||||
"calc_value": 4194304,
|
||||
"name": "ImGuiSelectableFlags_SelectOnClick",
|
||||
@@ -3913,6 +3952,11 @@
|
||||
"calc_value": 32,
|
||||
"name": "ImGuiSelectableFlags_Highlight",
|
||||
"value": "1 << 5"
|
||||
},
|
||||
{
|
||||
"calc_value": 64,
|
||||
"name": "ImGuiSelectableFlags_SelectOnNav",
|
||||
"value": "1 << 6"
|
||||
}
|
||||
],
|
||||
"ImGuiSelectionRequestType": [
|
||||
@@ -4138,93 +4182,108 @@
|
||||
},
|
||||
{
|
||||
"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_DockingSeparatorSize",
|
||||
"name": "ImGuiStyleVar_SeparatorTextBorderSize",
|
||||
"value": "36"
|
||||
},
|
||||
{
|
||||
"calc_value": 37,
|
||||
"name": "ImGuiStyleVar_COUNT",
|
||||
"name": "ImGuiStyleVar_SeparatorTextAlign",
|
||||
"value": "37"
|
||||
},
|
||||
{
|
||||
"calc_value": 38,
|
||||
"name": "ImGuiStyleVar_SeparatorTextPadding",
|
||||
"value": "38"
|
||||
},
|
||||
{
|
||||
"calc_value": 39,
|
||||
"name": "ImGuiStyleVar_DockingSeparatorSize",
|
||||
"value": "39"
|
||||
},
|
||||
{
|
||||
"calc_value": 40,
|
||||
"name": "ImGuiStyleVar_COUNT",
|
||||
"value": "40"
|
||||
}
|
||||
],
|
||||
"ImGuiTabBarFlagsPrivate_": [
|
||||
@@ -4287,23 +4346,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_": [
|
||||
@@ -5268,223 +5332,226 @@
|
||||
},
|
||||
"enumtypes": {
|
||||
"ImGuiDir": "int",
|
||||
"ImGuiInputSource": "int",
|
||||
"ImGuiKey": "int",
|
||||
"ImGuiLocKey": "int",
|
||||
"ImGuiMouseSource": "int",
|
||||
"ImGuiSortDirection": "ImU8"
|
||||
},
|
||||
"locations": {
|
||||
"ImBitVector": "imgui_internal:647",
|
||||
"ImColor": "imgui:3010",
|
||||
"ImDrawChannel": "imgui:3258",
|
||||
"ImDrawCmd": "imgui:3214",
|
||||
"ImDrawCmdHeader": "imgui:3250",
|
||||
"ImDrawData": "imgui:3479",
|
||||
"ImDrawDataBuilder": "imgui_internal:875",
|
||||
"ImDrawFlags_": "imgui:3283",
|
||||
"ImDrawList": "imgui:3321",
|
||||
"ImDrawListFlags_": "imgui:3303",
|
||||
"ImDrawListSharedData": "imgui_internal:848",
|
||||
"ImDrawListSplitter": "imgui:3266",
|
||||
"ImDrawVert": "imgui:3235",
|
||||
"ImFont": "imgui:3894",
|
||||
"ImFontAtlas": "imgui:3699",
|
||||
"ImFontAtlasBuilder": "imgui_internal:4065",
|
||||
"ImFontAtlasFlags_": "imgui:3672",
|
||||
"ImFontAtlasPostProcessData": "imgui_internal:4038",
|
||||
"ImFontAtlasRect": "imgui:3662",
|
||||
"ImFontAtlasRectEntry": "imgui_internal:4030",
|
||||
"ImFontBaked": "imgui:3847",
|
||||
"ImFontConfig": "imgui:3584",
|
||||
"ImFontFlags_": "imgui:3881",
|
||||
"ImFontGlyph": "imgui:3624",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3640",
|
||||
"ImFontLoader": "imgui_internal:3982",
|
||||
"ImFontStackData": "imgui_internal:883",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1667",
|
||||
"ImGuiAxis": "imgui_internal:1132",
|
||||
"ImGuiBackendFlags_": "imgui:1756",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1856",
|
||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:1019",
|
||||
"ImGuiButtonFlags_": "imgui:1896",
|
||||
"ImGuiChildFlags_": "imgui:1230",
|
||||
"ImGuiCol_": "imgui:1772",
|
||||
"ImGuiColorEditFlags_": "imgui:1907",
|
||||
"ImGuiColorMod": "imgui_internal:903",
|
||||
"ImGuiComboFlagsPrivate_": "imgui_internal:1045",
|
||||
"ImGuiComboFlags_": "imgui:1385",
|
||||
"ImGuiComboPreviewData": "imgui_internal:1146",
|
||||
"ImGuiCond_": "imgui:2021",
|
||||
"ImGuiConfigFlags_": "imgui:1727",
|
||||
"ImGuiContext": "imgui_internal:2329",
|
||||
"ImGuiContextHook": "imgui_internal:2314",
|
||||
"ImGuiContextHookType": "imgui_internal:2312",
|
||||
"ImGuiDataAuthority_": "imgui_internal:1969",
|
||||
"ImGuiDataTypeInfo": "imgui_internal:929",
|
||||
"ImGuiDataTypePrivate_": "imgui_internal:938",
|
||||
"ImGuiDataTypeStorage": "imgui_internal:923",
|
||||
"ImGuiDataType_": "imgui:1533",
|
||||
"ImGuiDeactivatedItemData": "imgui_internal:1432",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2246",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2253",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2224",
|
||||
"ImGuiDir": "imgui:1551",
|
||||
"ImGuiDockContext": "imgui_internal:2071",
|
||||
"ImGuiDockNode": "imgui_internal:1985",
|
||||
"ImGuiDockNodeFlagsPrivate_": "imgui_internal:1937",
|
||||
"ImGuiDockNodeFlags_": "imgui:1486",
|
||||
"ImGuiDockNodeState": "imgui_internal:1976",
|
||||
"ImGuiDragDropFlags_": "imgui:1505",
|
||||
"ImGuiErrorRecoveryState": "imgui_internal:1388",
|
||||
"ImGuiFocusRequestFlags_": "imgui_internal:1092",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1753",
|
||||
"ImGuiFocusedFlags_": "imgui:1432",
|
||||
"ImBitVector": "imgui_internal:663",
|
||||
"ImColor": "imgui:3049",
|
||||
"ImDrawChannel": "imgui:3297",
|
||||
"ImDrawCmd": "imgui:3253",
|
||||
"ImDrawCmdHeader": "imgui:3289",
|
||||
"ImDrawData": "imgui:3518",
|
||||
"ImDrawDataBuilder": "imgui_internal:891",
|
||||
"ImDrawFlags_": "imgui:3322",
|
||||
"ImDrawList": "imgui:3360",
|
||||
"ImDrawListFlags_": "imgui:3342",
|
||||
"ImDrawListSharedData": "imgui_internal:864",
|
||||
"ImDrawListSplitter": "imgui:3305",
|
||||
"ImDrawTextFlags_": "imgui_internal:445",
|
||||
"ImDrawVert": "imgui:3274",
|
||||
"ImFont": "imgui:3937",
|
||||
"ImFontAtlas": "imgui:3740",
|
||||
"ImFontAtlasBuilder": "imgui_internal:4108",
|
||||
"ImFontAtlasFlags_": "imgui:3713",
|
||||
"ImFontAtlasPostProcessData": "imgui_internal:4081",
|
||||
"ImFontAtlasRect": "imgui:3703",
|
||||
"ImFontAtlasRectEntry": "imgui_internal:4073",
|
||||
"ImFontBaked": "imgui:3889",
|
||||
"ImFontConfig": "imgui:3625",
|
||||
"ImFontFlags_": "imgui:3924",
|
||||
"ImFontGlyph": "imgui:3665",
|
||||
"ImFontGlyphRangesBuilder": "imgui:3681",
|
||||
"ImFontLoader": "imgui_internal:4022",
|
||||
"ImFontStackData": "imgui_internal:899",
|
||||
"ImGuiActivateFlags_": "imgui_internal:1689",
|
||||
"ImGuiAxis": "imgui_internal:1149",
|
||||
"ImGuiBackendFlags_": "imgui:1779",
|
||||
"ImGuiBoxSelectState": "imgui_internal:1880",
|
||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:1036",
|
||||
"ImGuiButtonFlags_": "imgui:1922",
|
||||
"ImGuiChildFlags_": "imgui:1236",
|
||||
"ImGuiCol_": "imgui:1795",
|
||||
"ImGuiColorEditFlags_": "imgui:1933",
|
||||
"ImGuiColorMod": "imgui_internal:919",
|
||||
"ImGuiComboFlagsPrivate_": "imgui_internal:1063",
|
||||
"ImGuiComboFlags_": "imgui:1401",
|
||||
"ImGuiComboPreviewData": "imgui_internal:1163",
|
||||
"ImGuiCond_": "imgui:2047",
|
||||
"ImGuiConfigFlags_": "imgui:1750",
|
||||
"ImGuiContext": "imgui_internal:2356",
|
||||
"ImGuiContextHook": "imgui_internal:2341",
|
||||
"ImGuiContextHookType": "imgui_internal:2339",
|
||||
"ImGuiDataAuthority_": "imgui_internal:1993",
|
||||
"ImGuiDataTypeInfo": "imgui_internal:945",
|
||||
"ImGuiDataTypePrivate_": "imgui_internal:954",
|
||||
"ImGuiDataTypeStorage": "imgui_internal:939",
|
||||
"ImGuiDataType_": "imgui:1556",
|
||||
"ImGuiDeactivatedItemData": "imgui_internal:1454",
|
||||
"ImGuiDebugAllocEntry": "imgui_internal:2270",
|
||||
"ImGuiDebugAllocInfo": "imgui_internal:2277",
|
||||
"ImGuiDebugLogFlags_": "imgui_internal:2248",
|
||||
"ImGuiDir": "imgui:1574",
|
||||
"ImGuiDockContext": "imgui_internal:2095",
|
||||
"ImGuiDockNode": "imgui_internal:2009",
|
||||
"ImGuiDockNodeFlagsPrivate_": "imgui_internal:1961",
|
||||
"ImGuiDockNodeFlags_": "imgui:1509",
|
||||
"ImGuiDockNodeState": "imgui_internal:2000",
|
||||
"ImGuiDragDropFlags_": "imgui:1528",
|
||||
"ImGuiErrorRecoveryState": "imgui_internal:1410",
|
||||
"ImGuiFocusRequestFlags_": "imgui_internal:1109",
|
||||
"ImGuiFocusScopeData": "imgui_internal:1777",
|
||||
"ImGuiFocusedFlags_": "imgui:1455",
|
||||
"ImGuiFreeTypeLoaderFlags_": "imgui_freetype:29",
|
||||
"ImGuiGroupData": "imgui_internal:1159",
|
||||
"ImGuiHoveredFlagsPrivate_": "imgui_internal:1002",
|
||||
"ImGuiHoveredFlags_": "imgui:1446",
|
||||
"ImGuiIDStackTool": "imgui_internal:2294",
|
||||
"ImGuiIO": "imgui:2418",
|
||||
"ImGuiInputEvent": "imgui_internal:1527",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1525",
|
||||
"ImGuiInputEventKey": "imgui_internal:1523",
|
||||
"ImGuiInputEventMouseButton": "imgui_internal:1521",
|
||||
"ImGuiInputEventMousePos": "imgui_internal:1519",
|
||||
"ImGuiInputEventMouseViewport": "imgui_internal:1522",
|
||||
"ImGuiInputEventMouseWheel": "imgui_internal:1520",
|
||||
"ImGuiInputEventText": "imgui_internal:1524",
|
||||
"ImGuiInputEventType": "imgui_internal:1495",
|
||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1594",
|
||||
"ImGuiInputFlags_": "imgui:1704",
|
||||
"ImGuiInputSource": "imgui_internal:1508",
|
||||
"ImGuiInputTextCallbackData": "imgui:2680",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1195",
|
||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:1010",
|
||||
"ImGuiInputTextFlags_": "imgui:1264",
|
||||
"ImGuiInputTextState": "imgui_internal:1217",
|
||||
"ImGuiItemFlagsPrivate_": "imgui_internal:951",
|
||||
"ImGuiItemFlags_": "imgui:1251",
|
||||
"ImGuiItemStatusFlags_": "imgui_internal:976",
|
||||
"ImGuiKey": "imgui:1575",
|
||||
"ImGuiKeyData": "imgui:2410",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1581",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1555",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1569",
|
||||
"ImGuiLastItemData": "imgui_internal:1357",
|
||||
"ImGuiLayoutType_": "imgui_internal:1113",
|
||||
"ImGuiListClipper": "imgui:2910",
|
||||
"ImGuiListClipperData": "imgui_internal:1651",
|
||||
"ImGuiListClipperRange": "imgui_internal:1638",
|
||||
"ImGuiLocEntry": "imgui_internal:2197",
|
||||
"ImGuiLocKey": "imgui_internal:2179",
|
||||
"ImGuiLogFlags_": "imgui_internal:1120",
|
||||
"ImGuiMenuColumns": "imgui_internal:1177",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2263",
|
||||
"ImGuiMouseButton_": "imgui:1979",
|
||||
"ImGuiMouseCursor_": "imgui:1989",
|
||||
"ImGuiMouseSource": "imgui:2010",
|
||||
"ImGuiMultiSelectFlags_": "imgui:3068",
|
||||
"ImGuiMultiSelectIO": "imgui:3095",
|
||||
"ImGuiMultiSelectState": "imgui_internal:1913",
|
||||
"ImGuiMultiSelectTempData": "imgui_internal:1888",
|
||||
"ImGuiNavItemData": "imgui_internal:1736",
|
||||
"ImGuiNavLayer": "imgui_internal:1728",
|
||||
"ImGuiNavMoveFlags_": "imgui_internal:1706",
|
||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1692",
|
||||
"ImGuiNextItemData": "imgui_internal:1336",
|
||||
"ImGuiNextItemDataFlags_": "imgui_internal:1326",
|
||||
"ImGuiNextWindowData": "imgui_internal:1294",
|
||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1274",
|
||||
"ImGuiOldColumnData": "imgui_internal:1821",
|
||||
"ImGuiOldColumnFlags_": "imgui_internal:1801",
|
||||
"ImGuiOldColumns": "imgui_internal:1831",
|
||||
"ImGuiOnceUponAFrame": "imgui:2780",
|
||||
"ImGuiPayload": "imgui:2745",
|
||||
"ImGuiPlatformIO": "imgui:4078",
|
||||
"ImGuiPlatformImeData": "imgui:4193",
|
||||
"ImGuiPlatformMonitor": "imgui:4183",
|
||||
"ImGuiPlotType": "imgui_internal:1139",
|
||||
"ImGuiPopupData": "imgui_internal:1452",
|
||||
"ImGuiPopupFlags_": "imgui:1350",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1444",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1422",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1678",
|
||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:1058",
|
||||
"ImGuiSelectableFlags_": "imgui:1368",
|
||||
"ImGuiSelectionBasicStorage": "imgui:3141",
|
||||
"ImGuiSelectionExternalStorage": "imgui:3164",
|
||||
"ImGuiSelectionRequest": "imgui:3115",
|
||||
"ImGuiSelectionRequestType": "imgui:3107",
|
||||
"ImGuiSeparatorFlags_": "imgui_internal:1081",
|
||||
"ImGuiSettingsHandler": "imgui_internal:2159",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1415",
|
||||
"ImGuiSizeCallbackData": "imgui:2714",
|
||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:1051",
|
||||
"ImGuiSliderFlags_": "imgui:1963",
|
||||
"ImGuiSortDirection": "imgui:1562",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2282",
|
||||
"ImGuiStorage": "imgui:2853",
|
||||
"ImGuiStoragePair": "imgui:2836",
|
||||
"ImGuiStyle": "imgui:2308",
|
||||
"ImGuiStyleMod": "imgui_internal:910",
|
||||
"ImGuiStyleVarInfo": "imgui_internal:894",
|
||||
"ImGuiStyleVar_": "imgui:1852",
|
||||
"ImGuiTabBar": "imgui_internal:2974",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2936",
|
||||
"ImGuiTabBarFlags_": "imgui:1400",
|
||||
"ImGuiTabItem": "imgui_internal:2954",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2944",
|
||||
"ImGuiTabItemFlags_": "imgui:1417",
|
||||
"ImGuiTable": "imgui_internal:3117",
|
||||
"ImGuiTableBgTarget_": "imgui:2162",
|
||||
"ImGuiTableCellData": "imgui_internal:3085",
|
||||
"ImGuiTableColumn": "imgui_internal:3025",
|
||||
"ImGuiTableColumnFlags_": "imgui:2109",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3265",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:2184",
|
||||
"ImGuiTableFlags_": "imgui:2056",
|
||||
"ImGuiTableHeaderData": "imgui_internal:3094",
|
||||
"ImGuiTableInstanceData": "imgui_internal:3104",
|
||||
"ImGuiTableRowFlags_": "imgui:2147",
|
||||
"ImGuiTableSettings": "imgui_internal:3289",
|
||||
"ImGuiTableSortSpecs": "imgui:2174",
|
||||
"ImGuiTableTempData": "imgui_internal:3242",
|
||||
"ImGuiTextBuffer": "imgui:2815",
|
||||
"ImGuiTextFilter": "imgui:2788",
|
||||
"ImGuiTextFlags_": "imgui_internal:1099",
|
||||
"ImGuiTextIndex": "imgui_internal:800",
|
||||
"ImGuiTextRange": "imgui:2798",
|
||||
"ImGuiTooltipFlags_": "imgui_internal:1105",
|
||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1072",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1306",
|
||||
"ImGuiTreeNodeStackData": "imgui_internal:1376",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1764",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1772",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1783",
|
||||
"ImGuiViewport": "imgui:3992",
|
||||
"ImGuiViewportFlags_": "imgui:3964",
|
||||
"ImGuiViewportP": "imgui_internal:2088",
|
||||
"ImGuiWindow": "imgui_internal:2781",
|
||||
"ImGuiWindowClass": "imgui:2729",
|
||||
"ImGuiWindowDockStyle": "imgui_internal:2066",
|
||||
"ImGuiWindowDockStyleCol": "imgui_internal:2052",
|
||||
"ImGuiWindowFlags_": "imgui:1179",
|
||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1265",
|
||||
"ImGuiWindowSettings": "imgui_internal:2140",
|
||||
"ImGuiWindowStackData": "imgui_internal:1406",
|
||||
"ImGuiWindowTempData": "imgui_internal:2724",
|
||||
"ImRect": "imgui_internal:569",
|
||||
"ImTextureData": "imgui:3542",
|
||||
"ImTextureFormat": "imgui:3510",
|
||||
"ImTextureRect": "imgui:3529",
|
||||
"ImTextureRef": "imgui:360",
|
||||
"ImTextureStatus": "imgui:3517",
|
||||
"ImVec1": "imgui_internal:543",
|
||||
"ImVec2": "imgui:292",
|
||||
"ImVec2i": "imgui_internal:551",
|
||||
"ImVec2ih": "imgui_internal:559",
|
||||
"ImVec4": "imgui:305",
|
||||
"stbrp_context_opaque": "imgui_internal:4062"
|
||||
"ImGuiGroupData": "imgui_internal:1176",
|
||||
"ImGuiHoveredFlagsPrivate_": "imgui_internal:1019",
|
||||
"ImGuiHoveredFlags_": "imgui:1469",
|
||||
"ImGuiIDStackTool": "imgui_internal:2318",
|
||||
"ImGuiIO": "imgui:2448",
|
||||
"ImGuiInputEvent": "imgui_internal:1549",
|
||||
"ImGuiInputEventAppFocused": "imgui_internal:1547",
|
||||
"ImGuiInputEventKey": "imgui_internal:1545",
|
||||
"ImGuiInputEventMouseButton": "imgui_internal:1543",
|
||||
"ImGuiInputEventMousePos": "imgui_internal:1541",
|
||||
"ImGuiInputEventMouseViewport": "imgui_internal:1544",
|
||||
"ImGuiInputEventMouseWheel": "imgui_internal:1542",
|
||||
"ImGuiInputEventText": "imgui_internal:1546",
|
||||
"ImGuiInputEventType": "imgui_internal:1517",
|
||||
"ImGuiInputFlagsPrivate_": "imgui_internal:1616",
|
||||
"ImGuiInputFlags_": "imgui:1727",
|
||||
"ImGuiInputSource": "imgui_internal:1530",
|
||||
"ImGuiInputTextCallbackData": "imgui:2711",
|
||||
"ImGuiInputTextDeactivatedState": "imgui_internal:1212",
|
||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:1027",
|
||||
"ImGuiInputTextFlags_": "imgui:1270",
|
||||
"ImGuiInputTextState": "imgui_internal:1234",
|
||||
"ImGuiItemFlagsPrivate_": "imgui_internal:967",
|
||||
"ImGuiItemFlags_": "imgui:1257",
|
||||
"ImGuiItemStatusFlags_": "imgui_internal:992",
|
||||
"ImGuiKey": "imgui:1598",
|
||||
"ImGuiKeyData": "imgui:2440",
|
||||
"ImGuiKeyOwnerData": "imgui_internal:1603",
|
||||
"ImGuiKeyRoutingData": "imgui_internal:1577",
|
||||
"ImGuiKeyRoutingTable": "imgui_internal:1591",
|
||||
"ImGuiLastItemData": "imgui_internal:1379",
|
||||
"ImGuiLayoutType_": "imgui_internal:1130",
|
||||
"ImGuiListClipper": "imgui:2948",
|
||||
"ImGuiListClipperData": "imgui_internal:1673",
|
||||
"ImGuiListClipperFlags_": "imgui:2922",
|
||||
"ImGuiListClipperRange": "imgui_internal:1660",
|
||||
"ImGuiLocEntry": "imgui_internal:2221",
|
||||
"ImGuiLocKey": "imgui_internal:2203",
|
||||
"ImGuiLogFlags_": "imgui_internal:1137",
|
||||
"ImGuiMenuColumns": "imgui_internal:1194",
|
||||
"ImGuiMetricsConfig": "imgui_internal:2287",
|
||||
"ImGuiMouseButton_": "imgui:2005",
|
||||
"ImGuiMouseCursor_": "imgui:2015",
|
||||
"ImGuiMouseSource": "imgui:2036",
|
||||
"ImGuiMultiSelectFlags_": "imgui:3107",
|
||||
"ImGuiMultiSelectIO": "imgui:3134",
|
||||
"ImGuiMultiSelectState": "imgui_internal:1937",
|
||||
"ImGuiMultiSelectTempData": "imgui_internal:1912",
|
||||
"ImGuiNavItemData": "imgui_internal:1760",
|
||||
"ImGuiNavLayer": "imgui_internal:1752",
|
||||
"ImGuiNavMoveFlags_": "imgui_internal:1730",
|
||||
"ImGuiNavRenderCursorFlags_": "imgui_internal:1715",
|
||||
"ImGuiNextItemData": "imgui_internal:1358",
|
||||
"ImGuiNextItemDataFlags_": "imgui_internal:1348",
|
||||
"ImGuiNextWindowData": "imgui_internal:1316",
|
||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1296",
|
||||
"ImGuiOldColumnData": "imgui_internal:1845",
|
||||
"ImGuiOldColumnFlags_": "imgui_internal:1825",
|
||||
"ImGuiOldColumns": "imgui_internal:1855",
|
||||
"ImGuiOnceUponAFrame": "imgui:2811",
|
||||
"ImGuiPayload": "imgui:2776",
|
||||
"ImGuiPlatformIO": "imgui:4121",
|
||||
"ImGuiPlatformImeData": "imgui:4236",
|
||||
"ImGuiPlatformMonitor": "imgui:4226",
|
||||
"ImGuiPlotType": "imgui_internal:1156",
|
||||
"ImGuiPopupData": "imgui_internal:1474",
|
||||
"ImGuiPopupFlags_": "imgui:1365",
|
||||
"ImGuiPopupPositionPolicy": "imgui_internal:1466",
|
||||
"ImGuiPtrOrIndex": "imgui_internal:1444",
|
||||
"ImGuiScrollFlags_": "imgui_internal:1701",
|
||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:1076",
|
||||
"ImGuiSelectableFlags_": "imgui:1383",
|
||||
"ImGuiSelectionBasicStorage": "imgui:3180",
|
||||
"ImGuiSelectionExternalStorage": "imgui:3203",
|
||||
"ImGuiSelectionRequest": "imgui:3154",
|
||||
"ImGuiSelectionRequestType": "imgui:3146",
|
||||
"ImGuiSeparatorFlags_": "imgui_internal:1098",
|
||||
"ImGuiSettingsHandler": "imgui_internal:2183",
|
||||
"ImGuiShrinkWidthItem": "imgui_internal:1437",
|
||||
"ImGuiSizeCallbackData": "imgui:2745",
|
||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:1069",
|
||||
"ImGuiSliderFlags_": "imgui:1989",
|
||||
"ImGuiSortDirection": "imgui:1585",
|
||||
"ImGuiStackLevelInfo": "imgui_internal:2306",
|
||||
"ImGuiStorage": "imgui:2884",
|
||||
"ImGuiStoragePair": "imgui:2867",
|
||||
"ImGuiStyle": "imgui:2334",
|
||||
"ImGuiStyleMod": "imgui_internal:926",
|
||||
"ImGuiStyleVarInfo": "imgui_internal:910",
|
||||
"ImGuiStyleVar_": "imgui:1875",
|
||||
"ImGuiTabBar": "imgui_internal:3008",
|
||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2970",
|
||||
"ImGuiTabBarFlags_": "imgui:1416",
|
||||
"ImGuiTabItem": "imgui_internal:2988",
|
||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2978",
|
||||
"ImGuiTabItemFlags_": "imgui:1440",
|
||||
"ImGuiTable": "imgui_internal:3153",
|
||||
"ImGuiTableBgTarget_": "imgui:2188",
|
||||
"ImGuiTableCellData": "imgui_internal:3121",
|
||||
"ImGuiTableColumn": "imgui_internal:3061",
|
||||
"ImGuiTableColumnFlags_": "imgui:2135",
|
||||
"ImGuiTableColumnSettings": "imgui_internal:3301",
|
||||
"ImGuiTableColumnSortSpecs": "imgui:2210",
|
||||
"ImGuiTableFlags_": "imgui:2082",
|
||||
"ImGuiTableHeaderData": "imgui_internal:3130",
|
||||
"ImGuiTableInstanceData": "imgui_internal:3140",
|
||||
"ImGuiTableRowFlags_": "imgui:2173",
|
||||
"ImGuiTableSettings": "imgui_internal:3325",
|
||||
"ImGuiTableSortSpecs": "imgui:2200",
|
||||
"ImGuiTableTempData": "imgui_internal:3278",
|
||||
"ImGuiTextBuffer": "imgui:2846",
|
||||
"ImGuiTextFilter": "imgui:2819",
|
||||
"ImGuiTextFlags_": "imgui_internal:1116",
|
||||
"ImGuiTextIndex": "imgui_internal:816",
|
||||
"ImGuiTextRange": "imgui:2829",
|
||||
"ImGuiTooltipFlags_": "imgui_internal:1122",
|
||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:1089",
|
||||
"ImGuiTreeNodeFlags_": "imgui:1321",
|
||||
"ImGuiTreeNodeStackData": "imgui_internal:1398",
|
||||
"ImGuiTypingSelectFlags_": "imgui_internal:1788",
|
||||
"ImGuiTypingSelectRequest": "imgui_internal:1796",
|
||||
"ImGuiTypingSelectState": "imgui_internal:1807",
|
||||
"ImGuiViewport": "imgui:4035",
|
||||
"ImGuiViewportFlags_": "imgui:4007",
|
||||
"ImGuiViewportP": "imgui_internal:2112",
|
||||
"ImGuiWindow": "imgui_internal:2815",
|
||||
"ImGuiWindowClass": "imgui:2760",
|
||||
"ImGuiWindowDockStyle": "imgui_internal:2090",
|
||||
"ImGuiWindowDockStyleCol": "imgui_internal:2076",
|
||||
"ImGuiWindowFlags_": "imgui:1185",
|
||||
"ImGuiWindowRefreshFlags_": "imgui_internal:1287",
|
||||
"ImGuiWindowSettings": "imgui_internal:2164",
|
||||
"ImGuiWindowStackData": "imgui_internal:1428",
|
||||
"ImGuiWindowTempData": "imgui_internal:2758",
|
||||
"ImRect": "imgui_internal:584",
|
||||
"ImTextureData": "imgui:3583",
|
||||
"ImTextureFormat": "imgui:3551",
|
||||
"ImTextureRect": "imgui:3570",
|
||||
"ImTextureRef": "imgui:366",
|
||||
"ImTextureStatus": "imgui:3558",
|
||||
"ImVec1": "imgui_internal:558",
|
||||
"ImVec2": "imgui:296",
|
||||
"ImVec2i": "imgui_internal:566",
|
||||
"ImVec2ih": "imgui_internal:574",
|
||||
"ImVec4": "imgui:309",
|
||||
"stbrp_context_opaque": "imgui_internal:4105"
|
||||
},
|
||||
"nonPOD": {
|
||||
"ImBitArray": true,
|
||||
@@ -6233,7 +6300,7 @@
|
||||
{
|
||||
"bitfield": "10",
|
||||
"name": "Generation",
|
||||
"type": "int"
|
||||
"type": "unsigned int"
|
||||
},
|
||||
{
|
||||
"bitfield": "1",
|
||||
@@ -6293,7 +6360,12 @@
|
||||
},
|
||||
{
|
||||
"bitfield": "1",
|
||||
"name": "LockLoadingFallback",
|
||||
"name": "LoadNoFallback",
|
||||
"type": "unsigned int"
|
||||
},
|
||||
{
|
||||
"bitfield": "1",
|
||||
"name": "LoadNoRenderOnLayout",
|
||||
"type": "unsigned int"
|
||||
},
|
||||
{
|
||||
@@ -6343,10 +6415,6 @@
|
||||
"name": "PixelSnapV",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "FontNo",
|
||||
"type": "ImS8"
|
||||
},
|
||||
{
|
||||
"name": "OversampleH",
|
||||
"type": "ImS8"
|
||||
@@ -6355,6 +6423,10 @@
|
||||
"name": "OversampleV",
|
||||
"type": "ImS8"
|
||||
},
|
||||
{
|
||||
"name": "EllipsisChar",
|
||||
"type": "ImWchar"
|
||||
},
|
||||
{
|
||||
"name": "SizePixels",
|
||||
"type": "float"
|
||||
@@ -6383,6 +6455,10 @@
|
||||
"name": "GlyphExtraAdvanceX",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "FontNo",
|
||||
"type": "ImU32"
|
||||
},
|
||||
{
|
||||
"name": "FontLoaderFlags",
|
||||
"type": "unsigned int"
|
||||
@@ -6395,10 +6471,6 @@
|
||||
"name": "RasterizerDensity",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "EllipsisChar",
|
||||
"type": "ImWchar"
|
||||
},
|
||||
{
|
||||
"name": "Flags",
|
||||
"type": "ImFontFlags"
|
||||
@@ -6520,7 +6592,7 @@
|
||||
},
|
||||
{
|
||||
"name": "FontBakedLoadGlyph",
|
||||
"type": "bool(*)(ImFontAtlas* atlas,ImFontConfig* src,ImFontBaked* baked,void* loader_data_for_baked_src,ImWchar codepoint,ImFontGlyph* out_glyph)"
|
||||
"type": "bool(*)(ImFontAtlas* atlas,ImFontConfig* src,ImFontBaked* baked,void* loader_data_for_baked_src,ImWchar codepoint,ImFontGlyph* out_glyph,float* out_advance_x)"
|
||||
},
|
||||
{
|
||||
"name": "FontBakedSrcLoaderDataSize",
|
||||
@@ -6854,11 +6926,11 @@
|
||||
"type": "ImVec2"
|
||||
},
|
||||
{
|
||||
"name": "DebugDrawIdConflicts",
|
||||
"name": "DebugDrawIdConflictsId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"name": "DebugHookIdInfo",
|
||||
"name": "DebugHookIdInfoId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
@@ -6933,6 +7005,10 @@
|
||||
"name": "ActiveIdFromShortcut",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "ActiveIdDisabledId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
"bitfield": "8",
|
||||
"name": "ActiveIdMouseButton",
|
||||
@@ -7570,6 +7646,10 @@
|
||||
"name": "InputTextState",
|
||||
"type": "ImGuiInputTextState"
|
||||
},
|
||||
{
|
||||
"name": "InputTextLineIndex",
|
||||
"type": "ImGuiTextIndex"
|
||||
},
|
||||
{
|
||||
"name": "InputTextDeactivatedState",
|
||||
"type": "ImGuiInputTextDeactivatedState"
|
||||
@@ -8382,7 +8462,7 @@
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "QueryId",
|
||||
"name": "QueryMainId",
|
||||
"type": "ImGuiID"
|
||||
},
|
||||
{
|
||||
@@ -8391,7 +8471,15 @@
|
||||
"type": "ImVector_ImGuiStackLevelInfo"
|
||||
},
|
||||
{
|
||||
"name": "CopyToClipboardOnCtrlC",
|
||||
"name": "QueryHookActive",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "OptHexEncodeNonAsciiChars",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "OptCopyToClipboardOnCtrlC",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
@@ -8399,7 +8487,11 @@
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ResultPathBuf",
|
||||
"name": "ResultPathsBuf",
|
||||
"type": "ImGuiTextBuffer"
|
||||
},
|
||||
{
|
||||
"name": "ResultTempBuf",
|
||||
"type": "ImGuiTextBuffer"
|
||||
}
|
||||
],
|
||||
@@ -8512,6 +8604,10 @@
|
||||
"name": "ConfigViewportsNoDefaultParent",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "ConfigViewportPlatformFocusSetsImGuiFocus",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "ConfigDpiScaleFonts",
|
||||
"type": "bool"
|
||||
@@ -9071,6 +9167,14 @@
|
||||
"name": "Scroll",
|
||||
"type": "ImVec2"
|
||||
},
|
||||
{
|
||||
"name": "LineCount",
|
||||
"type": "int"
|
||||
},
|
||||
{
|
||||
"name": "WrapWidth",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "CursorAnim",
|
||||
"type": "float"
|
||||
@@ -9079,6 +9183,10 @@
|
||||
"name": "CursorFollow",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "CursorCenterY",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "SelectedAllMouseLock",
|
||||
"type": "bool"
|
||||
@@ -9091,6 +9199,10 @@
|
||||
"name": "WantReloadUserBuf",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "LastMoveDirectionLR",
|
||||
"type": "ImS8"
|
||||
},
|
||||
{
|
||||
"name": "ReloadSelectionStart",
|
||||
"type": "int"
|
||||
@@ -9245,6 +9357,10 @@
|
||||
{
|
||||
"name": "TempData",
|
||||
"type": "void*"
|
||||
},
|
||||
{
|
||||
"name": "Flags",
|
||||
"type": "ImGuiListClipperFlags"
|
||||
}
|
||||
],
|
||||
"ImGuiListClipperData": [
|
||||
@@ -10229,14 +10345,12 @@
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"bitfield": "8",
|
||||
"name": "DataType",
|
||||
"type": "ImGuiDataType"
|
||||
"type": "ImS8"
|
||||
},
|
||||
{
|
||||
"name": "Desc[57]",
|
||||
"size": 57,
|
||||
"type": "char"
|
||||
"name": "DescOffset",
|
||||
"type": "int"
|
||||
}
|
||||
],
|
||||
"ImGuiStorage": [
|
||||
@@ -10365,6 +10479,10 @@
|
||||
"name": "ScrollbarRounding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "ScrollbarPadding",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "GrabMinSize",
|
||||
"type": "float"
|
||||
@@ -10389,6 +10507,14 @@
|
||||
"name": "TabBorderSize",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "TabMinWidthBase",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "TabMinWidthShrink",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "TabCloseButtonMinWidthSelected",
|
||||
"type": "float"
|
||||
@@ -10457,6 +10583,10 @@
|
||||
"name": "DisplaySafeAreaPadding",
|
||||
"type": "ImVec2"
|
||||
},
|
||||
{
|
||||
"name": "DockingNodeHasCloseButton",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "DockingSeparatorSize",
|
||||
"type": "float"
|
||||
@@ -10588,6 +10718,10 @@
|
||||
"name": "BarRect",
|
||||
"type": "ImRect"
|
||||
},
|
||||
{
|
||||
"name": "BarRectPrevWidth",
|
||||
"type": "float"
|
||||
},
|
||||
{
|
||||
"name": "CurrTabsContentsHeight",
|
||||
"type": "float"
|
||||
@@ -10660,6 +10794,10 @@
|
||||
"name": "TabsAddedNew",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "ScrollButtonEnabled",
|
||||
"type": "bool"
|
||||
},
|
||||
{
|
||||
"name": "TabsActiveCount",
|
||||
"type": "ImS16"
|
||||
@@ -11607,7 +11745,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",
|
||||
@@ -99,6 +100,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",
|
||||
@@ -99,6 +100,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: adfa5364cd...62275e877a
Reference in New Issue
Block a user