From ed017a07049fcc73b567b338dab14509e9fb4014 Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Fri, 6 Sep 2024 16:56:46 +0200 Subject: [PATCH] pull imgui 1.91.1 docking and generate --- cimgui.cpp | 58 +- cimgui.h | 60 +- generator/output/cimgui_impl.h | 1 + generator/output/definitions.json | 2586 ++++++++++++----------- generator/output/definitions.lua | 2556 +++++++++++----------- generator/output/impl_definitions.json | 21 + generator/output/impl_definitions.lua | 18 + generator/output/structs_and_enums.json | 423 ++-- generator/output/structs_and_enums.lua | 805 +++---- imgui | 2 +- 10 files changed, 3406 insertions(+), 3124 deletions(-) diff --git a/cimgui.cpp b/cimgui.cpp index 69773fb..c847e9f 100644 --- a/cimgui.cpp +++ b/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.91.0" 19100 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.1" 19110 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //docking branch #ifdef IMGUI_ENABLE_FREETYPE @@ -64,6 +64,10 @@ CIMGUI_API ImGuiIO* igGetIO() { return &ImGui::GetIO(); } +CIMGUI_API ImGuiPlatformIO* igGetPlatformIO() +{ + return &ImGui::GetPlatformIO(); +} CIMGUI_API ImGuiStyle* igGetStyle() { return &ImGui::GetStyle(); @@ -340,6 +344,14 @@ CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val) { return ImGui::PushStyleVar(idx,val); } +CIMGUI_API void igPushStyleVarX(ImGuiStyleVar idx,float val_x) +{ + return ImGui::PushStyleVarX(idx,val_x); +} +CIMGUI_API void igPushStyleVarY(ImGuiStyleVar idx,float val_y) +{ + return ImGui::PushStyleVarY(idx,val_y); +} CIMGUI_API void igPopStyleVar(int count) { return ImGui::PopStyleVar(count); @@ -1220,9 +1232,9 @@ CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int colu { return ImGui::TableSetBgColor(target,color,column_n); } -CIMGUI_API void igColumns(int count,const char* id,bool border) +CIMGUI_API void igColumns(int count,const char* id,bool borders) { - return ImGui::Columns(count,id,border); + return ImGui::Columns(count,id,borders); } CIMGUI_API void igNextColumn() { @@ -1683,10 +1695,6 @@ CIMGUI_API void igMemFree(void* ptr) { return ImGui::MemFree(ptr); } -CIMGUI_API ImGuiPlatformIO* igGetPlatformIO() -{ - return &ImGui::GetPlatformIO(); -} CIMGUI_API void igUpdatePlatformWindows() { return ImGui::UpdatePlatformWindows(); @@ -2459,6 +2467,10 @@ CIMGUI_API void ImDrawList__OnChangedVtxOffset(ImDrawList* self) { return self->_OnChangedVtxOffset(); } +CIMGUI_API void ImDrawList__SetTextureID(ImDrawList* self,ImTextureID texture_id) +{ + return self->_SetTextureID(texture_id); +} CIMGUI_API int ImDrawList__CalcCircleAutoSegmentCount(ImDrawList* self,float radius) { return self->_CalcCircleAutoSegmentCount(radius); @@ -3798,13 +3810,13 @@ CIMGUI_API void ImGuiViewportP_ClearRequestFlags(ImGuiViewportP* self) { return self->ClearRequestFlags(); } -CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min) +CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min) { - *pOut = self->CalcWorkRectPos(off_min); + *pOut = self->CalcWorkRectPos(inset_min); } -CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max) +CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max) { - *pOut = self->CalcWorkRectSize(off_min,off_max); + *pOut = self->CalcWorkRectSize(inset_min,inset_max); } CIMGUI_API void ImGuiViewportP_UpdateWorkRect(ImGuiViewportP* self) { @@ -3902,6 +3914,10 @@ CIMGUI_API ImGuiID ImGuiWindow_GetID_Int(ImGuiWindow* self,int n) { return self->GetID(n); } +CIMGUI_API ImGuiID ImGuiWindow_GetIDFromPos(ImGuiWindow* self,const ImVec2 p_abs) +{ + return self->GetIDFromPos(p_abs); +} CIMGUI_API ImGuiID ImGuiWindow_GetIDFromRectangle(ImGuiWindow* self,const ImRect r_abs) { return self->GetIDFromRectangle(r_abs); @@ -4066,14 +4082,14 @@ CIMGUI_API void igWindowRectRelToAbs(ImRect *pOut,ImGuiWindow* window,const ImRe { *pOut = ImGui::WindowRectRelToAbs(window,r); } -CIMGUI_API void igWindowPosRelToAbs(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p) -{ - *pOut = ImGui::WindowPosRelToAbs(window,p); -} CIMGUI_API void igWindowPosAbsToRel(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p) { *pOut = ImGui::WindowPosAbsToRel(window,p); } +CIMGUI_API void igWindowPosRelToAbs(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p) +{ + *pOut = ImGui::WindowPosRelToAbs(window,p); +} CIMGUI_API void igFocusWindow(ImGuiWindow* window,ImGuiFocusRequestFlags flags) { return ImGui::FocusWindow(window,flags); @@ -4598,9 +4614,9 @@ CIMGUI_API bool igIsAliasKey(ImGuiKey key) { return ImGui::IsAliasKey(key); } -CIMGUI_API bool igIsModKey(ImGuiKey key) +CIMGUI_API bool igIsLRModKey(ImGuiKey key) { - return ImGui::IsModKey(key); + return ImGui::IsLRModKey(key); } CIMGUI_API ImGuiKeyChord igFixupKeyChord(ImGuiKeyChord key_chord) { @@ -5162,9 +5178,9 @@ CIMGUI_API ImGuiID igTableGetColumnResizeID(ImGuiTable* table,int column_n,int i { return ImGui::TableGetColumnResizeID(table,column_n,instance_no); } -CIMGUI_API float igTableGetMaxColumnWidth(const ImGuiTable* table,int column_n) +CIMGUI_API float igTableCalcMaxColumnWidth(const ImGuiTable* table,int column_n) { - return ImGui::TableGetMaxColumnWidth(table,column_n); + return ImGui::TableCalcMaxColumnWidth(table,column_n); } CIMGUI_API void igTableSetColumnWidthAutoSingle(ImGuiTable* table,int column_n) { @@ -5318,9 +5334,9 @@ CIMGUI_API void igRenderTextEllipsis(ImDrawList* draw_list,const ImVec2 pos_min, { return ImGui::RenderTextEllipsis(draw_list,pos_min,pos_max,clip_max_x,ellipsis_max_x,text,text_end,text_size_if_known); } -CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding) +CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding) { - return ImGui::RenderFrame(p_min,p_max,fill_col,border,rounding); + return ImGui::RenderFrame(p_min,p_max,fill_col,borders,rounding); } CIMGUI_API void igRenderFrameBorder(ImVec2 p_min,ImVec2 p_max,float rounding) { diff --git a/cimgui.h b/cimgui.h index e46205a..208f838 100644 --- a/cimgui.h +++ b/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.91.0" 19100 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.1" 19110 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //docking branch #ifndef CIMGUI_INCLUDED @@ -64,8 +64,8 @@ typedef struct ImGuiMultiSelectIO ImGuiMultiSelectIO; typedef struct ImGuiOnceUponAFrame ImGuiOnceUponAFrame; typedef struct ImGuiPayload ImGuiPayload; typedef struct ImGuiPlatformIO ImGuiPlatformIO; -typedef struct ImGuiPlatformMonitor ImGuiPlatformMonitor; typedef struct ImGuiPlatformImeData ImGuiPlatformImeData; +typedef struct ImGuiPlatformMonitor ImGuiPlatformMonitor; typedef struct ImGuiSelectionBasicStorage ImGuiSelectionBasicStorage; typedef struct ImGuiSelectionExternalStorage ImGuiSelectionExternalStorage; typedef struct ImGuiSelectionRequest ImGuiSelectionRequest; @@ -159,8 +159,8 @@ struct ImGuiMultiSelectIO; struct ImGuiOnceUponAFrame; struct ImGuiPayload; struct ImGuiPlatformIO; -struct ImGuiPlatformMonitor; struct ImGuiPlatformImeData; +struct ImGuiPlatformMonitor; struct ImGuiSelectionBasicStorage; struct ImGuiSelectionExternalStorage; struct ImGuiSelectionRequest; @@ -264,7 +264,7 @@ typedef enum { }ImGuiWindowFlags_; typedef enum { ImGuiChildFlags_None = 0, - ImGuiChildFlags_Border = 1 << 0, + ImGuiChildFlags_Borders = 1 << 0, ImGuiChildFlags_AlwaysUseWindowPadding = 1 << 1, ImGuiChildFlags_ResizeX = 1 << 2, ImGuiChildFlags_ResizeY = 1 << 3, @@ -1064,13 +1064,6 @@ struct ImGuiIO void* BackendPlatformUserData; void* BackendRendererUserData; void* BackendLanguageUserData; - const char* (*GetClipboardTextFn)(void* user_data); - void (*SetClipboardTextFn)(void* user_data, const char* text); - void* ClipboardUserData; - bool (*PlatformOpenInShellFn)(ImGuiContext* ctx, const char* path); - void* PlatformOpenInShellUserData; - void (*PlatformSetImeDataFn)(ImGuiContext* ctx, ImGuiViewport* viewport, ImGuiPlatformImeData* data); - ImWchar PlatformLocaleDecimalPoint; bool WantCaptureMouse; bool WantCaptureKeyboard; bool WantTextInput; @@ -1535,6 +1528,14 @@ typedef struct ImVector_ImGuiViewportPtr {int Size;int Capacity;ImGuiViewport** struct ImGuiPlatformIO { + const char* (*Platform_GetClipboardTextFn)(ImGuiContext* ctx); + void (*Platform_SetClipboardTextFn)(ImGuiContext* ctx, const char* text); + void* Platform_ClipboardUserData; + bool (*Platform_OpenInShellFn)(ImGuiContext* ctx, const char* path); + void* Platform_OpenInShellUserData; + void (*Platform_SetImeDataFn)(ImGuiContext* ctx, ImGuiViewport* viewport, ImGuiPlatformImeData* data); + void* Platform_ImeUserData; + ImWchar Platform_LocaleDecimalPoint; void (*Platform_CreateWindow)(ImGuiViewport* vp); void (*Platform_DestroyWindow)(ImGuiViewport* vp); void (*Platform_ShowWindow)(ImGuiViewport* vp); @@ -1552,6 +1553,7 @@ struct ImGuiPlatformIO void (*Platform_SwapBuffers)(ImGuiViewport* vp, void* render_arg); float (*Platform_GetWindowDpiScale)(ImGuiViewport* vp); void (*Platform_OnChangedViewport)(ImGuiViewport* vp); + ImVec4 (*Platform_GetWindowWorkAreaInsets)(ImGuiViewport* vp); int (*Platform_CreateVkSurface)(ImGuiViewport* vp, ImU64 vk_inst, const void* vk_allocators, ImU64* out_vk_surface); void (*Renderer_CreateWindow)(ImGuiViewport* vp); void (*Renderer_DestroyWindow)(ImGuiViewport* vp); @@ -1832,6 +1834,7 @@ typedef enum { typedef enum { ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 28, ImGuiTreeNodeFlags_UpsideDownArrow = 1 << 29, + ImGuiTreeNodeFlags_OpenOnMask_ = ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_OpenOnArrow, }ImGuiTreeNodeFlagsPrivate_; typedef enum { ImGuiSeparatorFlags_None = 0, @@ -1935,7 +1938,7 @@ struct ImGuiInputTextState ImVector_char InitialTextA; bool TextAIsValid; int BufCapacityA; - float ScrollX; + ImVec2 Scroll; STB_TexteditState Stb; float CursorAnim; bool CursorFollow; @@ -2414,8 +2417,8 @@ typedef enum { ImGuiDockNodeFlags_NoDockingOverEmpty = 1 << 22, ImGuiDockNodeFlags_NoDocking = ImGuiDockNodeFlags_NoDockingOverMe | ImGuiDockNodeFlags_NoDockingOverOther | ImGuiDockNodeFlags_NoDockingOverEmpty | ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoDockingSplitOther, ImGuiDockNodeFlags_SharedFlagsInheritMask_ = ~0, - ImGuiDockNodeFlags_NoResizeFlagsMask_ = ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY, - ImGuiDockNodeFlags_LocalFlagsTransferMask_ = ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton, + ImGuiDockNodeFlags_NoResizeFlagsMask_ = (int)ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY, + ImGuiDockNodeFlags_LocalFlagsTransferMask_ = (int)ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | (int)ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton, ImGuiDockNodeFlags_SavedFlagsMask_ = ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton, }ImGuiDockNodeFlagsPrivate_; typedef enum { @@ -2523,10 +2526,10 @@ struct ImGuiViewportP ImVec2 LastPlatformPos; ImVec2 LastPlatformSize; ImVec2 LastRendererSize; - ImVec2 WorkOffsetMin; - ImVec2 WorkOffsetMax; - ImVec2 BuildWorkOffsetMin; - ImVec2 BuildWorkOffsetMax; + ImVec2 WorkInsetMin; + ImVec2 WorkInsetMax; + ImVec2 BuildWorkInsetMin; + ImVec2 BuildWorkInsetMax; }; struct ImGuiWindowSettings { @@ -3249,6 +3252,7 @@ struct ImGuiTableColumn float MaxX; float WidthRequest; float WidthAuto; + float WidthMax; float StretchWeight; float InitStretchWeightOrWidth; ImRect ClipRect; @@ -3566,6 +3570,7 @@ CIMGUI_API void igDestroyContext(ImGuiContext* ctx); CIMGUI_API ImGuiContext* igGetCurrentContext(void); CIMGUI_API void igSetCurrentContext(ImGuiContext* ctx); CIMGUI_API ImGuiIO* igGetIO(void); +CIMGUI_API ImGuiPlatformIO* igGetPlatformIO(void); CIMGUI_API ImGuiStyle* igGetStyle(void); CIMGUI_API void igNewFrame(void); CIMGUI_API void igEndFrame(void); @@ -3635,6 +3640,8 @@ CIMGUI_API void igPushStyleColor_Vec4(ImGuiCol idx,const ImVec4 col); CIMGUI_API void igPopStyleColor(int count); CIMGUI_API void igPushStyleVar_Float(ImGuiStyleVar idx,float val); CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val); +CIMGUI_API void igPushStyleVarX(ImGuiStyleVar idx,float val_x); +CIMGUI_API void igPushStyleVarY(ImGuiStyleVar idx,float val_y); CIMGUI_API void igPopStyleVar(int count); CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled); CIMGUI_API void igPopItemFlag(void); @@ -3845,7 +3852,7 @@ CIMGUI_API ImGuiTableColumnFlags igTableGetColumnFlags(int column_n); CIMGUI_API void igTableSetColumnEnabled(int column_n,bool v); CIMGUI_API int igTableGetHoveredColumn(void); CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int column_n); -CIMGUI_API void igColumns(int count,const char* id,bool border); +CIMGUI_API void igColumns(int count,const char* id,bool borders); CIMGUI_API void igNextColumn(void); CIMGUI_API int igGetColumnIndex(void); CIMGUI_API float igGetColumnWidth(int column_index); @@ -3960,7 +3967,6 @@ CIMGUI_API void igSetAllocatorFunctions(ImGuiMemAllocFunc alloc_func,ImGuiMemFre CIMGUI_API void igGetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func,ImGuiMemFreeFunc* p_free_func,void** p_user_data); CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); -CIMGUI_API ImGuiPlatformIO* igGetPlatformIO(void); CIMGUI_API void igUpdatePlatformWindows(void); CIMGUI_API void igRenderPlatformWindowsDefault(void* platform_render_arg,void* renderer_render_arg); CIMGUI_API void igDestroyPlatformWindows(void); @@ -4154,6 +4160,7 @@ CIMGUI_API void ImDrawList__TryMergeDrawCmds(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedClipRect(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedTextureID(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedVtxOffset(ImDrawList* self); +CIMGUI_API void ImDrawList__SetTextureID(ImDrawList* self,ImTextureID texture_id); CIMGUI_API int ImDrawList__CalcCircleAutoSegmentCount(ImDrawList* self,float radius); CIMGUI_API void ImDrawList__PathArcToFastEx(ImDrawList* self,const ImVec2 center,float radius,int a_min_sample,int a_max_sample,int a_step); CIMGUI_API void ImDrawList__PathArcToN(ImDrawList* self,const ImVec2 center,float radius,float a_min,float a_max,int num_segments); @@ -4487,8 +4494,8 @@ CIMGUI_API void ImGuiDockContext_destroy(ImGuiDockContext* self); CIMGUI_API ImGuiViewportP* ImGuiViewportP_ImGuiViewportP(void); CIMGUI_API void ImGuiViewportP_destroy(ImGuiViewportP* self); CIMGUI_API void ImGuiViewportP_ClearRequestFlags(ImGuiViewportP* self); -CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min); -CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max); +CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min); +CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max); CIMGUI_API void ImGuiViewportP_UpdateWorkRect(ImGuiViewportP* self); CIMGUI_API void ImGuiViewportP_GetMainRect(ImRect *pOut,ImGuiViewportP* self); CIMGUI_API void ImGuiViewportP_GetWorkRect(ImRect *pOut,ImGuiViewportP* self); @@ -4513,6 +4520,7 @@ CIMGUI_API void ImGuiWindow_destroy(ImGuiWindow* self); CIMGUI_API ImGuiID ImGuiWindow_GetID_Str(ImGuiWindow* self,const char* str,const char* str_end); CIMGUI_API ImGuiID ImGuiWindow_GetID_Ptr(ImGuiWindow* self,const void* ptr); CIMGUI_API ImGuiID ImGuiWindow_GetID_Int(ImGuiWindow* self,int n); +CIMGUI_API ImGuiID ImGuiWindow_GetIDFromPos(ImGuiWindow* self,const ImVec2 p_abs); CIMGUI_API ImGuiID ImGuiWindow_GetIDFromRectangle(ImGuiWindow* self,const ImRect r_abs); CIMGUI_API void ImGuiWindow_Rect(ImRect *pOut,ImGuiWindow* self); CIMGUI_API float ImGuiWindow_CalcFontSize(ImGuiWindow* self); @@ -4554,8 +4562,8 @@ CIMGUI_API void igSetWindowHiddenAndSkipItemsForCurrentFrame(ImGuiWindow* window CIMGUI_API void igSetWindowParentWindowForFocusRoute(ImGuiWindow* window,ImGuiWindow* parent_window); CIMGUI_API void igWindowRectAbsToRel(ImRect *pOut,ImGuiWindow* window,const ImRect r); CIMGUI_API void igWindowRectRelToAbs(ImRect *pOut,ImGuiWindow* window,const ImRect r); -CIMGUI_API void igWindowPosRelToAbs(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p); CIMGUI_API void igWindowPosAbsToRel(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p); +CIMGUI_API void igWindowPosRelToAbs(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p); CIMGUI_API void igFocusWindow(ImGuiWindow* window,ImGuiFocusRequestFlags flags); CIMGUI_API void igFocusTopMostWindowUnderOne(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags); CIMGUI_API void igBringWindowToFocusFront(ImGuiWindow* window); @@ -4687,7 +4695,7 @@ CIMGUI_API bool igIsKeyboardKey(ImGuiKey key); CIMGUI_API bool igIsGamepadKey(ImGuiKey key); CIMGUI_API bool igIsMouseKey(ImGuiKey key); CIMGUI_API bool igIsAliasKey(ImGuiKey key); -CIMGUI_API bool igIsModKey(ImGuiKey key); +CIMGUI_API bool igIsLRModKey(ImGuiKey key); CIMGUI_API ImGuiKeyChord igFixupKeyChord(ImGuiKeyChord key_chord); CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiKey key); CIMGUI_API ImGuiKeyData* igGetKeyData_ContextPtr(ImGuiContext* ctx,ImGuiKey key); @@ -4828,7 +4836,7 @@ CIMGUI_API void igTableEndCell(ImGuiTable* table); CIMGUI_API void igTableGetCellBgRect(ImRect *pOut,const ImGuiTable* table,int column_n); CIMGUI_API const char* igTableGetColumnName_TablePtr(const ImGuiTable* table,int column_n); CIMGUI_API ImGuiID igTableGetColumnResizeID(ImGuiTable* table,int column_n,int instance_no); -CIMGUI_API float igTableGetMaxColumnWidth(const ImGuiTable* table,int column_n); +CIMGUI_API float igTableCalcMaxColumnWidth(const ImGuiTable* table,int column_n); CIMGUI_API void igTableSetColumnWidthAutoSingle(ImGuiTable* table,int column_n); CIMGUI_API void igTableSetColumnWidthAutoAll(ImGuiTable* table); CIMGUI_API void igTableRemove(ImGuiTable* table); @@ -4867,7 +4875,7 @@ CIMGUI_API void igRenderTextWrapped(ImVec2 pos,const char* text,const char* text CIMGUI_API void igRenderTextClipped(const ImVec2 pos_min,const ImVec2 pos_max,const char* text,const char* text_end,const ImVec2* text_size_if_known,const ImVec2 align,const ImRect* clip_rect); CIMGUI_API void igRenderTextClippedEx(ImDrawList* draw_list,const ImVec2 pos_min,const ImVec2 pos_max,const char* text,const char* text_end,const ImVec2* text_size_if_known,const ImVec2 align,const ImRect* clip_rect); CIMGUI_API void igRenderTextEllipsis(ImDrawList* draw_list,const ImVec2 pos_min,const ImVec2 pos_max,float clip_max_x,float ellipsis_max_x,const char* text,const char* text_end,const ImVec2* text_size_if_known); -CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding); +CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding); CIMGUI_API void igRenderFrameBorder(ImVec2 p_min,ImVec2 p_max,float rounding); CIMGUI_API void igRenderColorRectWithAlphaCheckerboard(ImDrawList* draw_list,ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,float grid_step,ImVec2 grid_off,float rounding,ImDrawFlags flags); CIMGUI_API void igRenderNavHighlight(const ImRect bb,ImGuiID id,ImGuiNavHighlightFlags flags); diff --git a/generator/output/cimgui_impl.h b/generator/output/cimgui_impl.h index bdef2c0..223f7bc 100644 --- a/generator/output/cimgui_impl.h +++ b/generator/output/cimgui_impl.h @@ -19,6 +19,7 @@ CIMGUI_API void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window,double xoffset, CIMGUI_API void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window,int key,int scancode,int action,int mods); CIMGUI_API void ImGui_ImplGlfw_CharCallback(GLFWwindow* window,unsigned int c); CIMGUI_API void ImGui_ImplGlfw_MonitorCallback(GLFWmonitor* monitor,int event); +CIMGUI_API void ImGui_ImplGlfw_Sleep(int milliseconds); #endif #ifdef CIMGUI_USE_OPENGL3 diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 0691ac6..eca9e20 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -609,7 +609,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:2851", + "location": "imgui:2850", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -627,7 +627,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2841", + "location": "imgui:2840", "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -660,7 +660,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:2842", + "location": "imgui:2841", "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -679,7 +679,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2843", + "location": "imgui:2842", "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -712,7 +712,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:2844", + "location": "imgui:2843", "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -731,7 +731,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2845", + "location": "imgui:2844", "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -769,7 +769,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:2850", + "location": "imgui:2849", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -809,7 +809,7 @@ "cimguiname": "ImDrawCmd_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:3047", + "location": "imgui:3046", "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -826,7 +826,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:3044", + "location": "imgui:3043", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -1087,7 +1087,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3092", + "location": "imgui:3091", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -1108,7 +1108,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:3093", + "location": "imgui:3092", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -1125,7 +1125,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:3090", + "location": "imgui:3089", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -1149,7 +1149,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:3095", + "location": "imgui:3094", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -1178,7 +1178,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:3096", + "location": "imgui:3095", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1207,7 +1207,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:3094", + "location": "imgui:3093", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1227,7 +1227,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3091", + "location": "imgui:3090", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -1279,7 +1279,7 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", - "location": "imgui:3195", + "location": "imgui:3194", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1326,7 +1326,7 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", - "location": "imgui:3196", + "location": "imgui:3195", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1355,7 +1355,7 @@ "cimguiname": "ImDrawList_AddCallback", "defaults": {}, "funcname": "AddCallback", - "location": "imgui:3230", + "location": "imgui:3229", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -1399,7 +1399,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:3187", + "location": "imgui:3186", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1438,7 +1438,7 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:3188", + "location": "imgui:3187", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1471,7 +1471,7 @@ "cimguiname": "ImDrawList_AddConcavePolyFilled", "defaults": {}, "funcname": "AddConcavePolyFilled", - "location": "imgui:3203", + "location": "imgui:3202", "ov_cimguiname": "ImDrawList_AddConcavePolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1504,7 +1504,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:3202", + "location": "imgui:3201", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1525,7 +1525,7 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui:3231", + "location": "imgui:3230", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -1574,7 +1574,7 @@ "thickness": "1.0f" }, "funcname": "AddEllipse", - "location": "imgui:3191", + "location": "imgui:3190", "ov_cimguiname": "ImDrawList_AddEllipse", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", @@ -1618,7 +1618,7 @@ "rot": "0.0f" }, "funcname": "AddEllipseFilled", - "location": "imgui:3192", + "location": "imgui:3191", "ov_cimguiname": "ImDrawList_AddEllipseFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", @@ -1667,7 +1667,7 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:3209", + "location": "imgui:3208", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1734,7 +1734,7 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:3210", + "location": "imgui:3209", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1789,7 +1789,7 @@ "flags": "0" }, "funcname": "AddImageRounded", - "location": "imgui:3211", + "location": "imgui:3210", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1828,7 +1828,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:3179", + "location": "imgui:3178", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1871,7 +1871,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:3189", + "location": "imgui:3188", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1908,7 +1908,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:3190", + "location": "imgui:3189", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1949,7 +1949,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", - "location": "imgui:3201", + "location": "imgui:3200", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -1996,7 +1996,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:3183", + "location": "imgui:3182", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2037,7 +2037,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:3184", + "location": "imgui:3183", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2086,7 +2086,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:3180", + "location": "imgui:3179", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -2130,7 +2130,7 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", - "location": "imgui:3181", + "location": "imgui:3180", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -2175,7 +2175,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:3182", + "location": "imgui:3181", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -2214,7 +2214,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:3193", + "location": "imgui:3192", "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -2269,7 +2269,7 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:3194", + "location": "imgui:3193", "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -2312,7 +2312,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:3185", + "location": "imgui:3184", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2349,7 +2349,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:3186", + "location": "imgui:3185", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2370,7 +2370,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui:3241", + "location": "imgui:3240", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -2395,7 +2395,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui:3242", + "location": "imgui:3241", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2420,7 +2420,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui:3240", + "location": "imgui:3239", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2441,7 +2441,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", - "location": "imgui:3232", + "location": "imgui:3231", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2466,7 +2466,7 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:3170", + "location": "imgui:3169", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -2492,7 +2492,7 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:3169", + "location": "imgui:3168", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -2515,7 +2515,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:3161", + "location": "imgui:3160", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2557,7 +2557,7 @@ "num_segments": "0" }, "funcname": "PathArcTo", - "location": "imgui:3222", + "location": "imgui:3221", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2594,7 +2594,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:3223", + "location": "imgui:3222", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2633,7 +2633,7 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", - "location": "imgui:3225", + "location": "imgui:3224", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2668,7 +2668,7 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", - "location": "imgui:3226", + "location": "imgui:3225", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -2689,7 +2689,7 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:3216", + "location": "imgui:3215", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -2736,7 +2736,7 @@ "num_segments": "0" }, "funcname": "PathEllipticalArcTo", - "location": "imgui:3224", + "location": "imgui:3223", "ov_cimguiname": "ImDrawList_PathEllipticalArcTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,float,float,int)", @@ -2761,7 +2761,7 @@ "cimguiname": "ImDrawList_PathFillConcave", "defaults": {}, "funcname": "PathFillConcave", - "location": "imgui:3220", + "location": "imgui:3219", "ov_cimguiname": "ImDrawList_PathFillConcave", "ret": "void", "signature": "(ImU32)", @@ -2786,7 +2786,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:3219", + "location": "imgui:3218", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2811,7 +2811,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:3217", + "location": "imgui:3216", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2836,7 +2836,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:3218", + "location": "imgui:3217", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2876,7 +2876,7 @@ "rounding": "0.0f" }, "funcname": "PathRect", - "location": "imgui:3227", + "location": "imgui:3226", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2912,7 +2912,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:3221", + "location": "imgui:3220", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -2933,7 +2933,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:3166", + "location": "imgui:3165", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2954,7 +2954,7 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": {}, "funcname": "PopTextureID", - "location": "imgui:3168", + "location": "imgui:3167", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -3011,7 +3011,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui:3251", + "location": "imgui:3250", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3044,7 +3044,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", - "location": "imgui:3249", + "location": "imgui:3248", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3085,7 +3085,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui:3250", + "location": "imgui:3249", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3114,7 +3114,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", - "location": "imgui:3247", + "location": "imgui:3246", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -3143,7 +3143,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui:3248", + "location": "imgui:3247", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -3176,7 +3176,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", - "location": "imgui:3254", + "location": "imgui:3253", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3201,7 +3201,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui:3253", + "location": "imgui:3252", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -3234,7 +3234,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui:3252", + "location": "imgui:3251", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3269,7 +3269,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:3164", + "location": "imgui:3163", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", @@ -3290,7 +3290,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:3165", + "location": "imgui:3164", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -3315,7 +3315,7 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": {}, "funcname": "PushTextureID", - "location": "imgui:3167", + "location": "imgui:3166", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -3361,7 +3361,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:3265", + "location": "imgui:3264", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -3382,7 +3382,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:3268", + "location": "imgui:3267", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -3403,7 +3403,7 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": {}, "funcname": "_OnChangedTextureID", - "location": "imgui:3269", + "location": "imgui:3268", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -3424,7 +3424,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:3270", + "location": "imgui:3269", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -3527,7 +3527,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:3266", + "location": "imgui:3265", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -3548,13 +3548,38 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:3264", + "location": "imgui:3263", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList__SetTextureID": [ + { + "args": "(ImDrawList* self,ImTextureID texture_id)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "texture_id", + "type": "ImTextureID" + } + ], + "argsoriginal": "(ImTextureID texture_id)", + "call_args": "(texture_id)", + "cimguiname": "ImDrawList__SetTextureID", + "defaults": {}, + "funcname": "_SetTextureID", + "location": "imgui:3270", + "ov_cimguiname": "ImDrawList__SetTextureID", + "ret": "void", + "signature": "(ImTextureID)", + "stname": "ImDrawList" + } + ], "ImDrawList__TryMergeDrawCmds": [ { "args": "(ImDrawList* self)", @@ -3569,7 +3594,7 @@ "cimguiname": "ImDrawList__TryMergeDrawCmds", "defaults": {}, "funcname": "_TryMergeDrawCmds", - "location": "imgui:3267", + "location": "imgui:3266", "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -3589,7 +3614,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3163", + "location": "imgui:3162", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -5330,7 +5355,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiBoxSelectState", - "location": "imgui_internal:1761", + "location": "imgui_internal:1762", "ov_cimguiname": "ImGuiBoxSelectState_ImGuiBoxSelectState", "signature": "()", "stname": "ImGuiBoxSelectState" @@ -5365,7 +5390,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiComboPreviewData", - "location": "imgui_internal:1075", + "location": "imgui_internal:1076", "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", "signature": "()", "stname": "ImGuiComboPreviewData" @@ -5400,7 +5425,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContextHook", - "location": "imgui_internal:2176", + "location": "imgui_internal:2183", "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5440,7 +5465,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", - "location": "imgui_internal:2547", + "location": "imgui_internal:2554", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5500,7 +5525,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDebugAllocInfo", - "location": "imgui_internal:2116", + "location": "imgui_internal:2123", "ov_cimguiname": "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", "signature": "()", "stname": "ImGuiDebugAllocInfo" @@ -5535,7 +5560,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockContext", - "location": "imgui_internal:1958", + "location": "imgui_internal:1960", "ov_cimguiname": "ImGuiDockContext_ImGuiDockContext", "signature": "()", "stname": "ImGuiDockContext" @@ -5575,7 +5600,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockNode", - "location": "imgui_internal:1912", + "location": "imgui_internal:1914", "ov_cimguiname": "ImGuiDockNode_ImGuiDockNode", "signature": "(ImGuiID)", "stname": "ImGuiDockNode" @@ -5595,7 +5620,7 @@ "cimguiname": "ImGuiDockNode_IsCentralNode", "defaults": {}, "funcname": "IsCentralNode", - "location": "imgui_internal:1917", + "location": "imgui_internal:1919", "ov_cimguiname": "ImGuiDockNode_IsCentralNode", "ret": "bool", "signature": "()const", @@ -5616,7 +5641,7 @@ "cimguiname": "ImGuiDockNode_IsDockSpace", "defaults": {}, "funcname": "IsDockSpace", - "location": "imgui_internal:1915", + "location": "imgui_internal:1917", "ov_cimguiname": "ImGuiDockNode_IsDockSpace", "ret": "bool", "signature": "()const", @@ -5637,7 +5662,7 @@ "cimguiname": "ImGuiDockNode_IsEmpty", "defaults": {}, "funcname": "IsEmpty", - "location": "imgui_internal:1922", + "location": "imgui_internal:1924", "ov_cimguiname": "ImGuiDockNode_IsEmpty", "ret": "bool", "signature": "()const", @@ -5658,7 +5683,7 @@ "cimguiname": "ImGuiDockNode_IsFloatingNode", "defaults": {}, "funcname": "IsFloatingNode", - "location": "imgui_internal:1916", + "location": "imgui_internal:1918", "ov_cimguiname": "ImGuiDockNode_IsFloatingNode", "ret": "bool", "signature": "()const", @@ -5679,7 +5704,7 @@ "cimguiname": "ImGuiDockNode_IsHiddenTabBar", "defaults": {}, "funcname": "IsHiddenTabBar", - "location": "imgui_internal:1918", + "location": "imgui_internal:1920", "ov_cimguiname": "ImGuiDockNode_IsHiddenTabBar", "ret": "bool", "signature": "()const", @@ -5700,7 +5725,7 @@ "cimguiname": "ImGuiDockNode_IsLeafNode", "defaults": {}, "funcname": "IsLeafNode", - "location": "imgui_internal:1921", + "location": "imgui_internal:1923", "ov_cimguiname": "ImGuiDockNode_IsLeafNode", "ret": "bool", "signature": "()const", @@ -5721,7 +5746,7 @@ "cimguiname": "ImGuiDockNode_IsNoTabBar", "defaults": {}, "funcname": "IsNoTabBar", - "location": "imgui_internal:1919", + "location": "imgui_internal:1921", "ov_cimguiname": "ImGuiDockNode_IsNoTabBar", "ret": "bool", "signature": "()const", @@ -5742,7 +5767,7 @@ "cimguiname": "ImGuiDockNode_IsRootNode", "defaults": {}, "funcname": "IsRootNode", - "location": "imgui_internal:1914", + "location": "imgui_internal:1916", "ov_cimguiname": "ImGuiDockNode_IsRootNode", "ret": "bool", "signature": "()const", @@ -5763,7 +5788,7 @@ "cimguiname": "ImGuiDockNode_IsSplitNode", "defaults": {}, "funcname": "IsSplitNode", - "location": "imgui_internal:1920", + "location": "imgui_internal:1922", "ov_cimguiname": "ImGuiDockNode_IsSplitNode", "ret": "bool", "signature": "()const", @@ -5788,7 +5813,7 @@ "cimguiname": "ImGuiDockNode_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:1923", + "location": "imgui_internal:1925", "nonUDT": 1, "ov_cimguiname": "ImGuiDockNode_Rect", "ret": "void", @@ -5814,7 +5839,7 @@ "cimguiname": "ImGuiDockNode_SetLocalFlags", "defaults": {}, "funcname": "SetLocalFlags", - "location": "imgui_internal:1925", + "location": "imgui_internal:1927", "ov_cimguiname": "ImGuiDockNode_SetLocalFlags", "ret": "void", "signature": "(ImGuiDockNodeFlags)", @@ -5835,7 +5860,7 @@ "cimguiname": "ImGuiDockNode_UpdateMergedFlags", "defaults": {}, "funcname": "UpdateMergedFlags", - "location": "imgui_internal:1926", + "location": "imgui_internal:1928", "ov_cimguiname": "ImGuiDockNode_UpdateMergedFlags", "ret": "void", "signature": "()", @@ -5855,7 +5880,7 @@ "cimguiname": "ImGuiDockNode_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1913", + "location": "imgui_internal:1915", "ov_cimguiname": "ImGuiDockNode_destroy", "realdestructor": true, "ret": "void", @@ -5873,7 +5898,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIDStackTool", - "location": "imgui_internal:2158", + "location": "imgui_internal:2165", "ov_cimguiname": "ImGuiIDStackTool_ImGuiIDStackTool", "signature": "()", "stname": "ImGuiIDStackTool" @@ -5916,7 +5941,7 @@ "cimguiname": "ImGuiIO_AddFocusEvent", "defaults": {}, "funcname": "AddFocusEvent", - "location": "imgui:2408", + "location": "imgui:2399", "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -5941,7 +5966,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:2409", + "location": "imgui:2400", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -5966,7 +5991,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:2410", + "location": "imgui:2401", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -5991,7 +6016,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:2411", + "location": "imgui:2402", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -6024,7 +6049,7 @@ "cimguiname": "ImGuiIO_AddKeyAnalogEvent", "defaults": {}, "funcname": "AddKeyAnalogEvent", - "location": "imgui:2402", + "location": "imgui:2393", "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -6053,7 +6078,7 @@ "cimguiname": "ImGuiIO_AddKeyEvent", "defaults": {}, "funcname": "AddKeyEvent", - "location": "imgui:2401", + "location": "imgui:2392", "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -6082,7 +6107,7 @@ "cimguiname": "ImGuiIO_AddMouseButtonEvent", "defaults": {}, "funcname": "AddMouseButtonEvent", - "location": "imgui:2404", + "location": "imgui:2395", "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -6111,7 +6136,7 @@ "cimguiname": "ImGuiIO_AddMousePosEvent", "defaults": {}, "funcname": "AddMousePosEvent", - "location": "imgui:2403", + "location": "imgui:2394", "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", @@ -6136,7 +6161,7 @@ "cimguiname": "ImGuiIO_AddMouseSourceEvent", "defaults": {}, "funcname": "AddMouseSourceEvent", - "location": "imgui:2406", + "location": "imgui:2397", "ov_cimguiname": "ImGuiIO_AddMouseSourceEvent", "ret": "void", "signature": "(ImGuiMouseSource)", @@ -6161,7 +6186,7 @@ "cimguiname": "ImGuiIO_AddMouseViewportEvent", "defaults": {}, "funcname": "AddMouseViewportEvent", - "location": "imgui:2407", + "location": "imgui:2398", "ov_cimguiname": "ImGuiIO_AddMouseViewportEvent", "ret": "void", "signature": "(ImGuiID)", @@ -6190,7 +6215,7 @@ "cimguiname": "ImGuiIO_AddMouseWheelEvent", "defaults": {}, "funcname": "AddMouseWheelEvent", - "location": "imgui:2405", + "location": "imgui:2396", "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", @@ -6211,7 +6236,7 @@ "cimguiname": "ImGuiIO_ClearEventsQueue", "defaults": {}, "funcname": "ClearEventsQueue", - "location": "imgui:2415", + "location": "imgui:2406", "ov_cimguiname": "ImGuiIO_ClearEventsQueue", "ret": "void", "signature": "()", @@ -6232,7 +6257,7 @@ "cimguiname": "ImGuiIO_ClearInputKeys", "defaults": {}, "funcname": "ClearInputKeys", - "location": "imgui:2416", + "location": "imgui:2407", "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", @@ -6253,7 +6278,7 @@ "cimguiname": "ImGuiIO_ClearInputMouse", "defaults": {}, "funcname": "ClearInputMouse", - "location": "imgui:2417", + "location": "imgui:2408", "ov_cimguiname": "ImGuiIO_ClearInputMouse", "ret": "void", "signature": "()", @@ -6270,7 +6295,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:2500", + "location": "imgui:2499", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -6294,7 +6319,7 @@ "cimguiname": "ImGuiIO_SetAppAcceptingEvents", "defaults": {}, "funcname": "SetAppAcceptingEvents", - "location": "imgui:2414", + "location": "imgui:2405", "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -6333,7 +6358,7 @@ "native_legacy_index": "-1" }, "funcname": "SetKeyEventNativeData", - "location": "imgui:2413", + "location": "imgui:2404", "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -6369,7 +6394,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputEvent", - "location": "imgui_internal:1434", + "location": "imgui_internal:1435", "ov_cimguiname": "ImGuiInputEvent_ImGuiInputEvent", "signature": "()", "stname": "ImGuiInputEvent" @@ -6408,7 +6433,7 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui:2544", + "location": "imgui:2543", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -6437,7 +6462,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:2541", + "location": "imgui:2540", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -6458,7 +6483,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:2545", + "location": "imgui:2544", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -6475,7 +6500,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:2540", + "location": "imgui:2539", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -6509,7 +6534,7 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:2542", + "location": "imgui:2541", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -6530,7 +6555,7 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui:2543", + "location": "imgui:2542", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -6570,7 +6595,7 @@ "cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1121", + "location": "imgui_internal:1122", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6587,7 +6612,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextDeactivatedState", - "location": "imgui_internal:1120", + "location": "imgui_internal:1121", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", "signature": "()", "stname": "ImGuiInputTextDeactivatedState" @@ -6626,7 +6651,7 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1148", + "location": "imgui_internal:1149", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6647,7 +6672,7 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui_internal:1157", + "location": "imgui_internal:1158", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -6668,7 +6693,7 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": {}, "funcname": "ClearText", - "location": "imgui_internal:1147", + "location": "imgui_internal:1148", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -6689,7 +6714,7 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", - "location": "imgui_internal:1154", + "location": "imgui_internal:1155", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -6710,7 +6735,7 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", - "location": "imgui_internal:1155", + "location": "imgui_internal:1156", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -6731,7 +6756,7 @@ "cimguiname": "ImGuiInputTextState_GetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui_internal:1158", + "location": "imgui_internal:1159", "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", "ret": "int", "signature": "()const", @@ -6752,7 +6777,7 @@ "cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "defaults": {}, "funcname": "GetRedoAvailCount", - "location": "imgui_internal:1150", + "location": "imgui_internal:1151", "ov_cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "ret": "int", "signature": "()const", @@ -6773,7 +6798,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionEnd", "defaults": {}, "funcname": "GetSelectionEnd", - "location": "imgui_internal:1160", + "location": "imgui_internal:1161", "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", @@ -6794,7 +6819,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionStart", "defaults": {}, "funcname": "GetSelectionStart", - "location": "imgui_internal:1159", + "location": "imgui_internal:1160", "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", "ret": "int", "signature": "()const", @@ -6815,7 +6840,7 @@ "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "defaults": {}, "funcname": "GetUndoAvailCount", - "location": "imgui_internal:1149", + "location": "imgui_internal:1150", "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "ret": "int", "signature": "()const", @@ -6836,7 +6861,7 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui_internal:1156", + "location": "imgui_internal:1157", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -6853,7 +6878,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextState", - "location": "imgui_internal:1146", + "location": "imgui_internal:1147", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "signature": "()", "stname": "ImGuiInputTextState" @@ -6877,7 +6902,7 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": {}, "funcname": "OnKeyPressed", - "location": "imgui_internal:1151", + "location": "imgui_internal:1152", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", @@ -6898,7 +6923,7 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", "defaults": {}, "funcname": "ReloadUserBufAndKeepSelection", - "location": "imgui_internal:1169", + "location": "imgui_internal:1170", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", "ret": "void", "signature": "()", @@ -6919,7 +6944,7 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", "defaults": {}, "funcname": "ReloadUserBufAndMoveToEnd", - "location": "imgui_internal:1170", + "location": "imgui_internal:1171", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", "ret": "void", "signature": "()", @@ -6940,7 +6965,7 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", "defaults": {}, "funcname": "ReloadUserBufAndSelectAll", - "location": "imgui_internal:1168", + "location": "imgui_internal:1169", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", "ret": "void", "signature": "()", @@ -6961,7 +6986,7 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui_internal:1161", + "location": "imgui_internal:1162", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -6997,7 +7022,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyOwnerData", - "location": "imgui_internal:1478", + "location": "imgui_internal:1479", "ov_cimguiname": "ImGuiKeyOwnerData_ImGuiKeyOwnerData", "signature": "()", "stname": "ImGuiKeyOwnerData" @@ -7032,7 +7057,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingData", - "location": "imgui_internal:1454", + "location": "imgui_internal:1455", "ov_cimguiname": "ImGuiKeyRoutingData_ImGuiKeyRoutingData", "signature": "()", "stname": "ImGuiKeyRoutingData" @@ -7071,7 +7096,7 @@ "cimguiname": "ImGuiKeyRoutingTable_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1466", + "location": "imgui_internal:1467", "ov_cimguiname": "ImGuiKeyRoutingTable_Clear", "ret": "void", "signature": "()", @@ -7088,7 +7113,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingTable", - "location": "imgui_internal:1465", + "location": "imgui_internal:1466", "ov_cimguiname": "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", "signature": "()", "stname": "ImGuiKeyRoutingTable" @@ -7123,7 +7148,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiLastItemData", - "location": "imgui_internal:1273", + "location": "imgui_internal:1274", "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", "stname": "ImGuiLastItemData" @@ -7158,7 +7183,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipperData", - "location": "imgui_internal:1549", + "location": "imgui_internal:1550", "ov_cimguiname": "ImGuiListClipperData_ImGuiListClipperData", "signature": "()", "stname": "ImGuiListClipperData" @@ -7182,7 +7207,7 @@ "cimguiname": "ImGuiListClipperData_Reset", "defaults": {}, "funcname": "Reset", - "location": "imgui_internal:1550", + "location": "imgui_internal:1551", "ov_cimguiname": "ImGuiListClipperData_Reset", "ret": "void", "signature": "(ImGuiListClipper*)", @@ -7227,7 +7252,7 @@ "defaults": {}, "funcname": "FromIndices", "is_static_function": true, - "location": "imgui_internal:1536", + "location": "imgui_internal:1537", "ov_cimguiname": "ImGuiListClipperRange_FromIndices", "ret": "ImGuiListClipperRange", "signature": "(int,int)", @@ -7261,7 +7286,7 @@ "defaults": {}, "funcname": "FromPositions", "is_static_function": true, - "location": "imgui_internal:1537", + "location": "imgui_internal:1538", "ov_cimguiname": "ImGuiListClipperRange_FromPositions", "ret": "ImGuiListClipperRange", "signature": "(float,float,int,int)", @@ -7292,7 +7317,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui:2760", + "location": "imgui:2759", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -7313,7 +7338,7 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", - "location": "imgui:2761", + "location": "imgui:2760", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", @@ -7330,7 +7355,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:2758", + "location": "imgui:2757", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" @@ -7354,7 +7379,7 @@ "cimguiname": "ImGuiListClipper_IncludeItemByIndex", "defaults": {}, "funcname": "IncludeItemByIndex", - "location": "imgui:2766", + "location": "imgui:2765", "ov_cimguiname": "ImGuiListClipper_IncludeItemByIndex", "ret": "void", "signature": "(int)", @@ -7383,7 +7408,7 @@ "cimguiname": "ImGuiListClipper_IncludeItemsByIndex", "defaults": {}, "funcname": "IncludeItemsByIndex", - "location": "imgui:2767", + "location": "imgui:2766", "ov_cimguiname": "ImGuiListClipper_IncludeItemsByIndex", "ret": "void", "signature": "(int,int)", @@ -7408,7 +7433,7 @@ "cimguiname": "ImGuiListClipper_SeekCursorForItem", "defaults": {}, "funcname": "SeekCursorForItem", - "location": "imgui:2772", + "location": "imgui:2771", "ov_cimguiname": "ImGuiListClipper_SeekCursorForItem", "ret": "void", "signature": "(int)", @@ -7429,7 +7454,7 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", - "location": "imgui:2762", + "location": "imgui:2761", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -7449,7 +7474,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2759", + "location": "imgui:2758", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -7475,7 +7500,7 @@ "cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "defaults": {}, "funcname": "CalcNextTotalWidth", - "location": "imgui_internal:1111", + "location": "imgui_internal:1112", "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "ret": "void", "signature": "(bool)", @@ -7512,7 +7537,7 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", - "location": "imgui_internal:1110", + "location": "imgui_internal:1111", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float,float)", @@ -7529,7 +7554,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", - "location": "imgui_internal:1108", + "location": "imgui_internal:1109", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -7557,7 +7582,7 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", - "location": "imgui_internal:1109", + "location": "imgui_internal:1110", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(float,bool)", @@ -7593,7 +7618,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMultiSelectState", - "location": "imgui_internal:1808", + "location": "imgui_internal:1809", "ov_cimguiname": "ImGuiMultiSelectState_ImGuiMultiSelectState", "signature": "()", "stname": "ImGuiMultiSelectState" @@ -7632,7 +7657,7 @@ "cimguiname": "ImGuiMultiSelectTempData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1792", + "location": "imgui_internal:1793", "ov_cimguiname": "ImGuiMultiSelectTempData_Clear", "ret": "void", "signature": "()", @@ -7653,7 +7678,7 @@ "cimguiname": "ImGuiMultiSelectTempData_ClearIO", "defaults": {}, "funcname": "ClearIO", - "location": "imgui_internal:1793", + "location": "imgui_internal:1794", "ov_cimguiname": "ImGuiMultiSelectTempData_ClearIO", "ret": "void", "signature": "()", @@ -7670,7 +7695,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMultiSelectTempData", - "location": "imgui_internal:1791", + "location": "imgui_internal:1792", "ov_cimguiname": "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", "signature": "()", "stname": "ImGuiMultiSelectTempData" @@ -7709,7 +7734,7 @@ "cimguiname": "ImGuiNavItemData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1633", + "location": "imgui_internal:1634", "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", @@ -7726,7 +7751,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNavItemData", - "location": "imgui_internal:1632", + "location": "imgui_internal:1633", "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", "stname": "ImGuiNavItemData" @@ -7765,7 +7790,7 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1257", + "location": "imgui_internal:1258", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -7782,7 +7807,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", - "location": "imgui_internal:1256", + "location": "imgui_internal:1257", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -7821,7 +7846,7 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1228", + "location": "imgui_internal:1229", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -7838,7 +7863,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", - "location": "imgui_internal:1227", + "location": "imgui_internal:1228", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -7873,7 +7898,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumnData", - "location": "imgui_internal:1712", + "location": "imgui_internal:1713", "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -7908,7 +7933,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumns", - "location": "imgui_internal:1733", + "location": "imgui_internal:1734", "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -7943,7 +7968,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:2618", + "location": "imgui:2617", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -7982,7 +8007,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2596", + "location": "imgui:2595", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -7999,7 +8024,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:2595", + "location": "imgui:2594", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -8023,7 +8048,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:2597", + "location": "imgui:2596", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -8044,7 +8069,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:2599", + "location": "imgui:2598", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -8065,7 +8090,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:2598", + "location": "imgui:2597", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -8101,7 +8126,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformIO", - "location": "imgui:3730", + "location": "imgui:3675", "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", "signature": "()", "stname": "ImGuiPlatformIO" @@ -8136,7 +8161,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformImeData", - "location": "imgui:3751", + "location": "imgui:3778", "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -8171,7 +8196,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformMonitor", - "location": "imgui:3741", + "location": "imgui:3768", "ov_cimguiname": "ImGuiPlatformMonitor_ImGuiPlatformMonitor", "signature": "()", "stname": "ImGuiPlatformMonitor" @@ -8206,7 +8231,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", - "location": "imgui_internal:1353", + "location": "imgui_internal:1354", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -8246,7 +8271,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1326", + "location": "imgui_internal:1327", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -8265,7 +8290,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1327", + "location": "imgui_internal:1328", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -8308,7 +8333,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", "defaults": {}, "funcname": "ApplyRequests", - "location": "imgui:2980", + "location": "imgui:2979", "ov_cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", "ret": "void", "signature": "(ImGuiMultiSelectIO*)", @@ -8329,7 +8354,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2982", + "location": "imgui:2981", "ov_cimguiname": "ImGuiSelectionBasicStorage_Clear", "ret": "void", "signature": "()", @@ -8354,7 +8379,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui:2981", + "location": "imgui:2980", "ov_cimguiname": "ImGuiSelectionBasicStorage_Contains", "ret": "bool", "signature": "(ImGuiID)const", @@ -8383,7 +8408,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", "defaults": {}, "funcname": "GetNextSelectedItem", - "location": "imgui:2985", + "location": "imgui:2984", "ov_cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", "ret": "bool", "signature": "(void**,ImGuiID*)", @@ -8408,7 +8433,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", "defaults": {}, "funcname": "GetStorageIdFromIndex", - "location": "imgui:2986", + "location": "imgui:2985", "ov_cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", "ret": "ImGuiID", "signature": "(int)", @@ -8425,7 +8450,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSelectionBasicStorage", - "location": "imgui:2979", + "location": "imgui:2978", "ov_cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", "signature": "()", "stname": "ImGuiSelectionBasicStorage" @@ -8453,7 +8478,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", "defaults": {}, "funcname": "SetItemSelected", - "location": "imgui:2984", + "location": "imgui:2983", "ov_cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", "ret": "void", "signature": "(ImGuiID,bool)", @@ -8479,7 +8504,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_Swap", "defaults": {}, "funcname": "Swap", - "location": "imgui:2983", + "location": "imgui:2982", "ov_cimguiname": "ImGuiSelectionBasicStorage_Swap", "ret": "void", "signature": "(ImGuiSelectionBasicStorage*)", @@ -8523,7 +8548,7 @@ "cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", "defaults": {}, "funcname": "ApplyRequests", - "location": "imgui:2999", + "location": "imgui:2998", "ov_cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", "ret": "void", "signature": "(ImGuiMultiSelectIO*)", @@ -8540,7 +8565,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSelectionExternalStorage", - "location": "imgui:2998", + "location": "imgui:2997", "ov_cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", "signature": "()", "stname": "ImGuiSelectionExternalStorage" @@ -8575,7 +8600,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", - "location": "imgui_internal:2046", + "location": "imgui_internal:2053", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -8610,7 +8635,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackLevelInfo", - "location": "imgui_internal:2145", + "location": "imgui_internal:2152", "ov_cimguiname": "ImGuiStackLevelInfo_ImGuiStackLevelInfo", "signature": "()", "stname": "ImGuiStackLevelInfo" @@ -8653,7 +8678,7 @@ "cimguiname": "ImGuiStackSizes_CompareWithContextState", "defaults": {}, "funcname": "CompareWithContextState", - "location": "imgui_internal:1302", + "location": "imgui_internal:1303", "ov_cimguiname": "ImGuiStackSizes_CompareWithContextState", "ret": "void", "signature": "(ImGuiContext*)", @@ -8670,7 +8695,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackSizes", - "location": "imgui_internal:1300", + "location": "imgui_internal:1301", "ov_cimguiname": "ImGuiStackSizes_ImGuiStackSizes", "signature": "()", "stname": "ImGuiStackSizes" @@ -8694,7 +8719,7 @@ "cimguiname": "ImGuiStackSizes_SetToContextState", "defaults": {}, "funcname": "SetToContextState", - "location": "imgui_internal:1301", + "location": "imgui_internal:1302", "ov_cimguiname": "ImGuiStackSizes_SetToContextState", "ret": "void", "signature": "(ImGuiContext*)", @@ -8739,7 +8764,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2675", + "location": "imgui:2674", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" @@ -8762,7 +8787,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2676", + "location": "imgui:2675", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" @@ -8785,7 +8810,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2677", + "location": "imgui:2676", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -8824,7 +8849,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:2716", + "location": "imgui:2715", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -8845,7 +8870,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2696", + "location": "imgui:2695", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -8876,7 +8901,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:2699", + "location": "imgui:2698", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -8907,7 +8932,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:2711", + "location": "imgui:2710", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -8938,7 +8963,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:2701", + "location": "imgui:2700", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -8969,7 +8994,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:2712", + "location": "imgui:2711", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -9000,7 +9025,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:2697", + "location": "imgui:2696", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -9031,7 +9056,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:2710", + "location": "imgui:2709", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -9056,7 +9081,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:2703", + "location": "imgui:2702", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -9087,7 +9112,7 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:2713", + "location": "imgui:2712", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -9112,7 +9137,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:2718", + "location": "imgui:2717", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -9141,7 +9166,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:2700", + "location": "imgui:2699", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -9170,7 +9195,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:2702", + "location": "imgui:2701", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -9199,7 +9224,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:2698", + "location": "imgui:2697", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -9228,7 +9253,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:2704", + "location": "imgui:2703", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -9254,7 +9279,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1060", + "location": "imgui_internal:1061", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Int", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -9277,7 +9302,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1061", + "location": "imgui_internal:1062", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Float", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -9300,7 +9325,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1062", + "location": "imgui_internal:1063", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Vec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -9335,7 +9360,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:2263", + "location": "imgui:2271", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -9359,7 +9384,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:2264", + "location": "imgui:2272", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -9395,7 +9420,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", - "location": "imgui_internal:3043", + "location": "imgui_internal:3051", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -9430,7 +9455,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", - "location": "imgui_internal:3003", + "location": "imgui_internal:3011", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -9465,7 +9490,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSettings", - "location": "imgui_internal:3310", + "location": "imgui_internal:3319", "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -9500,7 +9525,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:2086", + "location": "imgui:2094", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -9535,7 +9560,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumn", - "location": "imgui_internal:3105", + "location": "imgui_internal:3114", "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -9570,7 +9595,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableInstanceData", - "location": "imgui_internal:3148", + "location": "imgui_internal:3157", "ov_cimguiname": "ImGuiTableInstanceData_ImGuiTableInstanceData", "signature": "()", "stname": "ImGuiTableInstanceData" @@ -9609,7 +9634,7 @@ "cimguiname": "ImGuiTableSettings_GetColumnSettings", "defaults": {}, "funcname": "GetColumnSettings", - "location": "imgui_internal:3333", + "location": "imgui_internal:3342", "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -9626,7 +9651,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSettings", - "location": "imgui_internal:3332", + "location": "imgui_internal:3341", "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -9661,7 +9686,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:2075", + "location": "imgui:2083", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -9696,7 +9721,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableTempData", - "location": "imgui_internal:3295", + "location": "imgui_internal:3304", "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", "signature": "()", "stname": "ImGuiTableTempData" @@ -9731,7 +9756,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTable", - "location": "imgui_internal:3267", + "location": "imgui_internal:3276", "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -9750,7 +9775,7 @@ "cimguiname": "ImGuiTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:3268", + "location": "imgui_internal:3277", "ov_cimguiname": "ImGuiTable_destroy", "realdestructor": true, "ret": "void", @@ -9768,7 +9793,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:2656", + "location": "imgui:2655", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -9798,7 +9823,7 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:2665", + "location": "imgui:2664", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -9828,7 +9853,7 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:2666", + "location": "imgui:2665", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -9858,7 +9883,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:2667", + "location": "imgui:2666", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -9879,7 +9904,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2658", + "location": "imgui:2657", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -9900,7 +9925,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:2664", + "location": "imgui:2663", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -9921,7 +9946,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2662", + "location": "imgui:2661", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -9961,7 +9986,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2661", + "location": "imgui:2660", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -9982,7 +10007,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:2659", + "location": "imgui:2658", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -10007,7 +10032,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2663", + "location": "imgui:2662", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -10028,7 +10053,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:2660", + "location": "imgui:2659", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -10049,7 +10074,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2629", + "location": "imgui:2628", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -10070,7 +10095,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2630", + "location": "imgui:2629", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -10102,7 +10127,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:2627", + "location": "imgui:2626", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -10126,7 +10151,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:2626", + "location": "imgui:2625", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -10146,7 +10171,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:2631", + "location": "imgui:2630", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -10177,7 +10202,7 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:2628", + "location": "imgui:2627", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -10346,7 +10371,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2639", + "location": "imgui:2638", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -10369,7 +10394,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2640", + "location": "imgui:2639", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -10408,7 +10433,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2641", + "location": "imgui:2640", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -10437,7 +10462,7 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:2642", + "location": "imgui:2641", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -10458,7 +10483,7 @@ "cimguiname": "ImGuiTypingSelectState_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1677", + "location": "imgui_internal:1678", "ov_cimguiname": "ImGuiTypingSelectState_Clear", "ret": "void", "signature": "()", @@ -10475,7 +10500,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTypingSelectState", - "location": "imgui_internal:1676", + "location": "imgui_internal:1677", "ov_cimguiname": "ImGuiTypingSelectState_ImGuiTypingSelectState", "signature": "()", "stname": "ImGuiTypingSelectState" @@ -10502,7 +10527,7 @@ ], "ImGuiViewportP_CalcWorkRectPos": [ { - "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min)", + "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min)", "argsT": [ { "name": "pOut", @@ -10513,16 +10538,16 @@ "type": "ImGuiViewportP*" }, { - "name": "off_min", + "name": "inset_min", "type": "const ImVec2" } ], - "argsoriginal": "(const ImVec2& off_min)", - "call_args": "(off_min)", + "argsoriginal": "(const ImVec2& inset_min)", + "call_args": "(inset_min)", "cimguiname": "ImGuiViewportP_CalcWorkRectPos", "defaults": {}, "funcname": "CalcWorkRectPos", - "location": "imgui_internal:1998", + "location": "imgui_internal:2005", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", "ret": "void", @@ -10532,7 +10557,7 @@ ], "ImGuiViewportP_CalcWorkRectSize": [ { - "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max)", + "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max)", "argsT": [ { "name": "pOut", @@ -10543,20 +10568,20 @@ "type": "ImGuiViewportP*" }, { - "name": "off_min", + "name": "inset_min", "type": "const ImVec2" }, { - "name": "off_max", + "name": "inset_max", "type": "const ImVec2" } ], - "argsoriginal": "(const ImVec2& off_min,const ImVec2& off_max)", - "call_args": "(off_min,off_max)", + "argsoriginal": "(const ImVec2& inset_min,const ImVec2& inset_max)", + "call_args": "(inset_min,inset_max)", "cimguiname": "ImGuiViewportP_CalcWorkRectSize", "defaults": {}, "funcname": "CalcWorkRectSize", - "location": "imgui_internal:1999", + "location": "imgui_internal:2006", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", "ret": "void", @@ -10578,7 +10603,7 @@ "cimguiname": "ImGuiViewportP_ClearRequestFlags", "defaults": {}, "funcname": "ClearRequestFlags", - "location": "imgui_internal:1995", + "location": "imgui_internal:2002", "ov_cimguiname": "ImGuiViewportP_ClearRequestFlags", "ret": "void", "signature": "()", @@ -10603,7 +10628,7 @@ "cimguiname": "ImGuiViewportP_GetBuildWorkRect", "defaults": {}, "funcname": "GetBuildWorkRect", - "location": "imgui_internal:2005", + "location": "imgui_internal:2012", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", "ret": "void", @@ -10629,7 +10654,7 @@ "cimguiname": "ImGuiViewportP_GetMainRect", "defaults": {}, "funcname": "GetMainRect", - "location": "imgui_internal:2003", + "location": "imgui_internal:2010", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "void", @@ -10655,7 +10680,7 @@ "cimguiname": "ImGuiViewportP_GetWorkRect", "defaults": {}, "funcname": "GetWorkRect", - "location": "imgui_internal:2004", + "location": "imgui_internal:2011", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "void", @@ -10673,7 +10698,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewportP", - "location": "imgui_internal:1993", + "location": "imgui_internal:2000", "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -10693,7 +10718,7 @@ "cimguiname": "ImGuiViewportP_UpdateWorkRect", "defaults": {}, "funcname": "UpdateWorkRect", - "location": "imgui_internal:2000", + "location": "imgui_internal:2007", "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -10713,7 +10738,7 @@ "cimguiname": "ImGuiViewportP_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1994", + "location": "imgui_internal:2001", "ov_cimguiname": "ImGuiViewportP_destroy", "realdestructor": true, "ret": "void", @@ -10820,7 +10845,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowClass", - "location": "imgui:2577", + "location": "imgui:2576", "ov_cimguiname": "ImGuiWindowClass_ImGuiWindowClass", "signature": "()", "stname": "ImGuiWindowClass" @@ -10859,7 +10884,7 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", - "location": "imgui_internal:2031", + "location": "imgui_internal:2038", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -10876,7 +10901,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", - "location": "imgui_internal:2030", + "location": "imgui_internal:2037", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -10915,7 +10940,7 @@ "cimguiname": "ImGuiWindow_CalcFontSize", "defaults": {}, "funcname": "CalcFontSize", - "location": "imgui_internal:2960", + "location": "imgui_internal:2968", "ov_cimguiname": "ImGuiWindow_CalcFontSize", "ret": "float", "signature": "()const", @@ -10946,7 +10971,7 @@ "str_end": "NULL" }, "funcname": "GetID", - "location": "imgui_internal:2953", + "location": "imgui_internal:2960", "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -10969,7 +10994,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2954", + "location": "imgui_internal:2961", "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -10992,13 +11017,38 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2955", + "location": "imgui_internal:2962", "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", "stname": "ImGuiWindow" } ], + "ImGuiWindow_GetIDFromPos": [ + { + "args": "(ImGuiWindow* self,const ImVec2 p_abs)", + "argsT": [ + { + "name": "self", + "type": "ImGuiWindow*" + }, + { + "name": "p_abs", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& p_abs)", + "call_args": "(p_abs)", + "cimguiname": "ImGuiWindow_GetIDFromPos", + "defaults": {}, + "funcname": "GetIDFromPos", + "location": "imgui_internal:2963", + "ov_cimguiname": "ImGuiWindow_GetIDFromPos", + "ret": "ImGuiID", + "signature": "(const ImVec2)", + "stname": "ImGuiWindow" + } + ], "ImGuiWindow_GetIDFromRectangle": [ { "args": "(ImGuiWindow* self,const ImRect r_abs)", @@ -11017,7 +11067,7 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", - "location": "imgui_internal:2956", + "location": "imgui_internal:2964", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -11043,7 +11093,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", - "location": "imgui_internal:2949", + "location": "imgui_internal:2956", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -11067,7 +11117,7 @@ "cimguiname": "ImGuiWindow_MenuBarRect", "defaults": {}, "funcname": "MenuBarRect", - "location": "imgui_internal:2962", + "location": "imgui_internal:2970", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "void", @@ -11093,7 +11143,7 @@ "cimguiname": "ImGuiWindow_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:2959", + "location": "imgui_internal:2967", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "void", @@ -11119,7 +11169,7 @@ "cimguiname": "ImGuiWindow_TitleBarRect", "defaults": {}, "funcname": "TitleBarRect", - "location": "imgui_internal:2961", + "location": "imgui_internal:2969", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "void", @@ -11140,7 +11190,7 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2951", + "location": "imgui_internal:2958", "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -12789,7 +12839,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:295", + "location": "imgui:296", "ov_cimguiname": "ImVec2_ImVec2_Nil", "signature": "()", "stname": "ImVec2" @@ -12812,7 +12862,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:296", + "location": "imgui:297", "ov_cimguiname": "ImVec2_ImVec2_Float", "signature": "(float,float)", "stname": "ImVec2" @@ -12924,7 +12974,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:308", + "location": "imgui:309", "ov_cimguiname": "ImVec4_ImVec4_Nil", "signature": "()", "stname": "ImVec4" @@ -12955,7 +13005,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:309", + "location": "imgui:310", "ov_cimguiname": "ImVec4_ImVec4_Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -12990,7 +13040,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:2143", + "location": "imgui:2151", "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -13010,7 +13060,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:2144", + "location": "imgui:2152", "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -13035,7 +13085,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:2170", + "location": "imgui:2178", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -13057,7 +13107,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:2166", + "location": "imgui:2174", "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -13078,7 +13128,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:2167", + "location": "imgui:2175", "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -13101,7 +13151,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2160", + "location": "imgui:2168", "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -13121,7 +13171,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2161", + "location": "imgui:2169", "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -13143,7 +13193,7 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:2156", + "location": "imgui:2164", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -13165,7 +13215,7 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2148", + "location": "imgui:2156", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -13187,7 +13237,7 @@ "cimguiname": "ImVector_clear_delete", "defaults": {}, "funcname": "clear_delete", - "location": "imgui:2149", + "location": "imgui:2157", "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -13209,7 +13259,7 @@ "cimguiname": "ImVector_clear_destruct", "defaults": {}, "funcname": "clear_destruct", - "location": "imgui:2150", + "location": "imgui:2158", "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -13235,7 +13285,7 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:2185", + "location": "imgui:2193", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -13256,7 +13306,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2146", + "location": "imgui:2154", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -13279,7 +13329,7 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2152", + "location": "imgui:2160", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -13301,7 +13351,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:2162", + "location": "imgui:2170", "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -13321,7 +13371,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:2163", + "location": "imgui:2171", "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -13347,7 +13397,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:2181", + "location": "imgui:2189", "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -13375,7 +13425,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:2182", + "location": "imgui:2190", "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -13401,7 +13451,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:2183", + "location": "imgui:2191", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -13427,7 +13477,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:2186", + "location": "imgui:2194", "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -13451,7 +13501,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:2187", + "location": "imgui:2195", "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -13477,7 +13527,7 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:2189", + "location": "imgui:2197", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -13503,7 +13553,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:2190", + "location": "imgui:2198", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -13529,7 +13579,7 @@ "cimguiname": "ImVector_find_index", "defaults": {}, "funcname": "find_index", - "location": "imgui:2188", + "location": "imgui:2196", "ov_cimguiname": "ImVector_find_index", "ret": "int", "signature": "(const T)const", @@ -13551,7 +13601,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:2164", + "location": "imgui:2172", "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -13572,7 +13622,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:2165", + "location": "imgui:2173", "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -13599,7 +13649,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:2191", + "location": "imgui:2199", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -13629,7 +13679,7 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:2184", + "location": "imgui:2192", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -13651,7 +13701,7 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", - "location": "imgui:2155", + "location": "imgui:2163", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -13673,7 +13723,7 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:2179", + "location": "imgui:2187", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -13699,7 +13749,7 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:2178", + "location": "imgui:2186", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -13725,7 +13775,7 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:2180", + "location": "imgui:2188", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -13751,7 +13801,7 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2174", + "location": "imgui:2182", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -13777,7 +13827,7 @@ "cimguiname": "ImVector_reserve_discard", "defaults": {}, "funcname": "reserve_discard", - "location": "imgui:2175", + "location": "imgui:2183", "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -13803,7 +13853,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:2171", + "location": "imgui:2179", "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -13831,7 +13881,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:2172", + "location": "imgui:2180", "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -13857,7 +13907,7 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:2173", + "location": "imgui:2181", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -13879,7 +13929,7 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:2153", + "location": "imgui:2161", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -13901,7 +13951,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:2154", + "location": "imgui:2162", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -13928,7 +13978,7 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:2168", + "location": "imgui:2176", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", @@ -13956,7 +14006,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui:907", + "location": "imgui:911", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -13978,7 +14028,7 @@ "cimguiname": "igActivateItemByID", "defaults": {}, "funcname": "ActivateItemByID", - "location": "imgui_internal:3542", + "location": "imgui_internal:3551", "namespace": "ImGui", "ov_cimguiname": "igActivateItemByID", "ret": "void", @@ -14004,7 +14054,7 @@ "cimguiname": "igAddContextHook", "defaults": {}, "funcname": "AddContextHook", - "location": "imgui_internal:3403", + "location": "imgui_internal:3412", "namespace": "ImGui", "ov_cimguiname": "igAddContextHook", "ret": "ImGuiID", @@ -14034,7 +14084,7 @@ "cimguiname": "igAddDrawListToDrawDataEx", "defaults": {}, "funcname": "AddDrawListToDrawDataEx", - "location": "imgui_internal:3387", + "location": "imgui_internal:3396", "namespace": "ImGui", "ov_cimguiname": "igAddDrawListToDrawDataEx", "ret": "void", @@ -14056,7 +14106,7 @@ "cimguiname": "igAddSettingsHandler", "defaults": {}, "funcname": "AddSettingsHandler", - "location": "imgui_internal:3420", + "location": "imgui_internal:3429", "namespace": "ImGui", "ov_cimguiname": "igAddSettingsHandler", "ret": "void", @@ -14073,7 +14123,7 @@ "cimguiname": "igAlignTextToFramePadding", "defaults": {}, "funcname": "AlignTextToFramePadding", - "location": "imgui:504", + "location": "imgui:508", "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -14099,7 +14149,7 @@ "cimguiname": "igArrowButton", "defaults": {}, "funcname": "ArrowButton", - "location": "imgui:553", + "location": "imgui:557", "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -14135,7 +14185,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "imgui_internal:3839", + "location": "imgui_internal:3848", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -14168,7 +14218,7 @@ "p_open": "NULL" }, "funcname": "Begin", - "location": "imgui:369", + "location": "imgui:371", "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -14202,7 +14252,7 @@ "cimguiname": "igBeginBoxSelect", "defaults": {}, "funcname": "BeginBoxSelect", - "location": "imgui_internal:3710", + "location": "imgui_internal:3719", "namespace": "ImGui", "ov_cimguiname": "igBeginBoxSelect", "ret": "bool", @@ -14240,7 +14290,7 @@ "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:390", + "location": "imgui:392", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_Str", "ret": "bool", @@ -14276,7 +14326,7 @@ "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:391", + "location": "imgui:393", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_ID", "ret": "bool", @@ -14314,7 +14364,7 @@ "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", - "location": "imgui_internal:3489", + "location": "imgui_internal:3498", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", @@ -14346,7 +14396,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "imgui_internal:3723", + "location": "imgui_internal:3732", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -14378,7 +14428,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui:574", + "location": "imgui:578", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -14408,7 +14458,7 @@ "cimguiname": "igBeginComboPopup", "defaults": {}, "funcname": "BeginComboPopup", - "location": "imgui_internal:3515", + "location": "imgui_internal:3524", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPopup", "ret": "bool", @@ -14425,7 +14475,7 @@ "cimguiname": "igBeginComboPreview", "defaults": {}, "funcname": "BeginComboPreview", - "location": "imgui_internal:3516", + "location": "imgui_internal:3525", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPreview", "ret": "bool", @@ -14449,7 +14499,7 @@ "disabled": "true" }, "funcname": "BeginDisabled", - "location": "imgui:916", + "location": "imgui:920", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabled", "ret": "void", @@ -14466,7 +14516,7 @@ "cimguiname": "igBeginDisabledOverrideReenable", "defaults": {}, "funcname": "BeginDisabledOverrideReenable", - "location": "imgui_internal:3479", + "location": "imgui_internal:3488", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabledOverrideReenable", "ret": "void", @@ -14488,7 +14538,7 @@ "cimguiname": "igBeginDockableDragDropSource", "defaults": {}, "funcname": "BeginDockableDragDropSource", - "location": "imgui_internal:3656", + "location": "imgui_internal:3665", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropSource", "ret": "void", @@ -14510,7 +14560,7 @@ "cimguiname": "igBeginDockableDragDropTarget", "defaults": {}, "funcname": "BeginDockableDragDropTarget", - "location": "imgui_internal:3657", + "location": "imgui_internal:3666", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropTarget", "ret": "void", @@ -14536,7 +14586,7 @@ "cimguiname": "igBeginDocked", "defaults": {}, "funcname": "BeginDocked", - "location": "imgui_internal:3655", + "location": "imgui_internal:3664", "namespace": "ImGui", "ov_cimguiname": "igBeginDocked", "ret": "void", @@ -14560,7 +14610,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui:903", + "location": "imgui:907", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -14577,7 +14627,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui:906", + "location": "imgui:910", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -14603,7 +14653,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", - "location": "imgui_internal:3698", + "location": "imgui_internal:3707", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -14620,7 +14670,7 @@ "cimguiname": "igBeginGroup", "defaults": {}, "funcname": "BeginGroup", - "location": "imgui:502", + "location": "imgui:506", "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -14637,7 +14687,7 @@ "cimguiname": "igBeginItemTooltip", "defaults": {}, "funcname": "BeginItemTooltip", - "location": "imgui:745", + "location": "imgui:749", "namespace": "ImGui", "ov_cimguiname": "igBeginItemTooltip", "ret": "bool", @@ -14665,7 +14715,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginListBox", - "location": "imgui:699", + "location": "imgui:703", "namespace": "ImGui", "ov_cimguiname": "igBeginListBox", "ret": "bool", @@ -14682,7 +14732,7 @@ "cimguiname": "igBeginMainMenuBar", "defaults": {}, "funcname": "BeginMainMenuBar", - "location": "imgui:725", + "location": "imgui:729", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -14710,7 +14760,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui:727", + "location": "imgui:731", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -14727,7 +14777,7 @@ "cimguiname": "igBeginMenuBar", "defaults": {}, "funcname": "BeginMenuBar", - "location": "imgui:723", + "location": "imgui:727", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -14759,7 +14809,7 @@ "enabled": "true" }, "funcname": "BeginMenuEx", - "location": "imgui_internal:3511", + "location": "imgui_internal:3520", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuEx", "ret": "bool", @@ -14792,7 +14842,7 @@ "selection_size": "-1" }, "funcname": "BeginMultiSelect", - "location": "imgui:688", + "location": "imgui:692", "namespace": "ImGui", "ov_cimguiname": "igBeginMultiSelect", "ret": "ImGuiMultiSelectIO*", @@ -14820,7 +14870,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui:759", + "location": "imgui:763", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -14849,7 +14899,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui:781", + "location": "imgui:785", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -14878,7 +14928,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui:783", + "location": "imgui:787", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -14907,7 +14957,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui:782", + "location": "imgui:786", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -14933,7 +14983,7 @@ "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", - "location": "imgui_internal:3492", + "location": "imgui_internal:3501", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -14966,7 +15016,7 @@ "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui:760", + "location": "imgui:764", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -14994,7 +15044,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui:861", + "location": "imgui:865", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -15024,7 +15074,7 @@ "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", - "location": "imgui_internal:3791", + "location": "imgui_internal:3800", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", @@ -15057,7 +15107,7 @@ "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui:863", + "location": "imgui:867", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -15099,7 +15149,7 @@ "outer_size": "ImVec2(0.0f,0.0f)" }, "funcname": "BeginTable", - "location": "imgui:812", + "location": "imgui:816", "namespace": "ImGui", "ov_cimguiname": "igBeginTable", "ret": "bool", @@ -15145,7 +15195,7 @@ "outer_size": "ImVec2(0,0)" }, "funcname": "BeginTableEx", - "location": "imgui_internal:3747", + "location": "imgui_internal:3756", "namespace": "ImGui", "ov_cimguiname": "igBeginTableEx", "ret": "bool", @@ -15162,7 +15212,7 @@ "cimguiname": "igBeginTooltip", "defaults": {}, "funcname": "BeginTooltip", - "location": "imgui:736", + "location": "imgui:740", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", "ret": "bool", @@ -15188,7 +15238,7 @@ "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", - "location": "imgui_internal:3506", + "location": "imgui_internal:3515", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", "ret": "bool", @@ -15205,7 +15255,7 @@ "cimguiname": "igBeginTooltipHidden", "defaults": {}, "funcname": "BeginTooltipHidden", - "location": "imgui_internal:3507", + "location": "imgui_internal:3516", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipHidden", "ret": "bool", @@ -15243,7 +15293,7 @@ "cimguiname": "igBeginViewportSideBar", "defaults": {}, "funcname": "BeginViewportSideBar", - "location": "imgui_internal:3510", + "location": "imgui_internal:3519", "namespace": "ImGui", "ov_cimguiname": "igBeginViewportSideBar", "ret": "bool", @@ -15265,7 +15315,7 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", - "location": "imgui_internal:3375", + "location": "imgui_internal:3384", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -15291,7 +15341,7 @@ "cimguiname": "igBringWindowToDisplayBehind", "defaults": {}, "funcname": "BringWindowToDisplayBehind", - "location": "imgui_internal:3376", + "location": "imgui_internal:3385", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBehind", "ret": "void", @@ -15313,7 +15363,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", - "location": "imgui_internal:3374", + "location": "imgui_internal:3383", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -15335,7 +15385,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", - "location": "imgui_internal:3373", + "location": "imgui_internal:3382", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -15352,7 +15402,7 @@ "cimguiname": "igBullet", "defaults": {}, "funcname": "Bullet", - "location": "imgui:560", + "location": "imgui:564", "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -15379,7 +15429,7 @@ "defaults": {}, "funcname": "BulletText", "isvararg": "...)", - "location": "imgui:543", + "location": "imgui:547", "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -15405,7 +15455,7 @@ "cimguiname": "igBulletTextV", "defaults": {}, "funcname": "BulletTextV", - "location": "imgui:544", + "location": "imgui:548", "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -15433,7 +15483,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", - "location": "imgui:550", + "location": "imgui:554", "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -15473,7 +15523,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "imgui_internal:3857", + "location": "imgui_internal:3866", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -15506,7 +15556,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "imgui_internal:3838", + "location": "imgui_internal:3847", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -15540,7 +15590,7 @@ "cimguiname": "igCalcItemSize", "defaults": {}, "funcname": "CalcItemSize", - "location": "imgui_internal:3472", + "location": "imgui_internal:3481", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -15558,7 +15608,7 @@ "cimguiname": "igCalcItemWidth", "defaults": {}, "funcname": "CalcItemWidth", - "location": "imgui:459", + "location": "imgui:463", "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -15588,7 +15638,7 @@ "cimguiname": "igCalcRoundingFlagsForRectInRect", "defaults": {}, "funcname": "CalcRoundingFlagsForRectInRect", - "location": "imgui_internal:3834", + "location": "imgui_internal:3843", "namespace": "ImGui", "ov_cimguiname": "igCalcRoundingFlagsForRectInRect", "ret": "ImDrawFlags", @@ -15630,7 +15680,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:974", + "location": "imgui:978", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -15665,7 +15715,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", - "location": "imgui_internal:3571", + "location": "imgui_internal:3580", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -15691,7 +15741,7 @@ "cimguiname": "igCalcWindowNextAutoFitSize", "defaults": {}, "funcname": "CalcWindowNextAutoFitSize", - "location": "imgui_internal:3354", + "location": "imgui_internal:3363", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowNextAutoFitSize", @@ -15718,7 +15768,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", - "location": "imgui_internal:3473", + "location": "imgui_internal:3482", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -15744,7 +15794,7 @@ "cimguiname": "igCallContextHooks", "defaults": {}, "funcname": "CallContextHooks", - "location": "imgui_internal:3405", + "location": "imgui_internal:3414", "namespace": "ImGui", "ov_cimguiname": "igCallContextHooks", "ret": "void", @@ -15770,7 +15820,7 @@ "cimguiname": "igCheckbox", "defaults": {}, "funcname": "Checkbox", - "location": "imgui:554", + "location": "imgui:558", "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -15800,7 +15850,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:555", + "location": "imgui:559", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_IntPtr", "ret": "bool", @@ -15828,7 +15878,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:556", + "location": "imgui:560", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_UintPtr", "ret": "bool", @@ -15856,7 +15906,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3843", + "location": "imgui_internal:3852", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_S64Ptr", "ret": "bool", @@ -15884,7 +15934,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3844", + "location": "imgui_internal:3853", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_U64Ptr", "ret": "bool", @@ -15901,7 +15951,7 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", - "location": "imgui_internal:3455", + "location": "imgui_internal:3464", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -15918,7 +15968,7 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", - "location": "imgui_internal:3699", + "location": "imgui_internal:3708", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -15935,7 +15985,7 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", - "location": "imgui_internal:3419", + "location": "imgui_internal:3428", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -15957,7 +16007,7 @@ "cimguiname": "igClearWindowSettings", "defaults": {}, "funcname": "ClearWindowSettings", - "location": "imgui_internal:3428", + "location": "imgui_internal:3437", "namespace": "ImGui", "ov_cimguiname": "igClearWindowSettings", "ret": "void", @@ -15983,7 +16033,7 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", - "location": "imgui_internal:3847", + "location": "imgui_internal:3856", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -16000,7 +16050,7 @@ "cimguiname": "igCloseCurrentPopup", "defaults": {}, "funcname": "CloseCurrentPopup", - "location": "imgui:774", + "location": "imgui:778", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -16026,7 +16076,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", - "location": "imgui_internal:3494", + "location": "imgui_internal:3503", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -16043,7 +16093,7 @@ "cimguiname": "igClosePopupsExceptModals", "defaults": {}, "funcname": "ClosePopupsExceptModals", - "location": "imgui_internal:3496", + "location": "imgui_internal:3505", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsExceptModals", "ret": "void", @@ -16069,7 +16119,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", - "location": "imgui_internal:3495", + "location": "imgui_internal:3504", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -16099,7 +16149,7 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", - "location": "imgui_internal:3848", + "location": "imgui_internal:3857", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -16127,7 +16177,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:670", + "location": "imgui:674", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_TreeNodeFlags", "ret": "bool", @@ -16157,7 +16207,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:671", + "location": "imgui:675", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_BoolPtr", "ret": "bool", @@ -16194,7 +16244,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui:651", + "location": "imgui:655", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -16216,7 +16266,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:978", + "location": "imgui:982", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -16261,7 +16311,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:980", + "location": "imgui:984", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -16306,7 +16356,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:979", + "location": "imgui:983", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -16332,7 +16382,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:977", + "location": "imgui:981", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -16365,7 +16415,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui:647", + "location": "imgui:651", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -16397,7 +16447,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui:648", + "location": "imgui:652", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -16423,7 +16473,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", - "location": "imgui_internal:3898", + "location": "imgui_internal:3907", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -16455,7 +16505,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui:649", + "location": "imgui:653", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -16492,7 +16542,7 @@ "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui:650", + "location": "imgui:654", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -16518,7 +16568,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", - "location": "imgui_internal:3899", + "location": "imgui_internal:3908", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -16548,7 +16598,7 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", - "location": "imgui_internal:3897", + "location": "imgui_internal:3906", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -16558,7 +16608,7 @@ ], "igColumns": [ { - "args": "(int count,const char* id,bool border)", + "args": "(int count,const char* id,bool borders)", "argsT": [ { "name": "count", @@ -16569,20 +16619,20 @@ "type": "const char*" }, { - "name": "border", + "name": "borders", "type": "bool" } ], - "argsoriginal": "(int count=1,const char* id=((void*)0),bool border=true)", - "call_args": "(count,id,border)", + "argsoriginal": "(int count=1,const char* id=((void*)0),bool borders=true)", + "call_args": "(count,id,borders)", "cimguiname": "igColumns", "defaults": { - "border": "true", + "borders": "true", "count": "1", "id": "NULL" }, "funcname": "Columns", - "location": "imgui:850", + "location": "imgui:854", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -16622,7 +16672,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:576", + "location": "imgui:580", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str_arr", "ret": "bool", @@ -16656,7 +16706,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:577", + "location": "imgui:581", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str", "ret": "bool", @@ -16700,7 +16750,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:578", + "location": "imgui:582", "namespace": "ImGui", "ov_cimguiname": "igCombo_FnStrPtr", "ret": "bool", @@ -16722,7 +16772,7 @@ "cimguiname": "igConvertSingleModFlagToKey", "defaults": {}, "funcname": "ConvertSingleModFlagToKey", - "location": "imgui_internal:3555", + "location": "imgui_internal:3564", "namespace": "ImGui", "ov_cimguiname": "igConvertSingleModFlagToKey", "ret": "ImGuiKey", @@ -16746,7 +16796,7 @@ "shared_font_atlas": "NULL" }, "funcname": "CreateContext", - "location": "imgui:327", + "location": "imgui:328", "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -16768,7 +16818,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", - "location": "imgui_internal:3425", + "location": "imgui_internal:3434", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -16808,7 +16858,7 @@ "p_data_when_empty": "NULL" }, "funcname": "DataTypeApplyFromText", - "location": "imgui_internal:3883", + "location": "imgui_internal:3892", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyFromText", "ret": "bool", @@ -16846,7 +16896,7 @@ "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", - "location": "imgui_internal:3882", + "location": "imgui_internal:3891", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -16880,7 +16930,7 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", - "location": "imgui_internal:3885", + "location": "imgui_internal:3894", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -16910,7 +16960,7 @@ "cimguiname": "igDataTypeCompare", "defaults": {}, "funcname": "DataTypeCompare", - "location": "imgui_internal:3884", + "location": "imgui_internal:3893", "namespace": "ImGui", "ov_cimguiname": "igDataTypeCompare", "ret": "int", @@ -16948,7 +16998,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", - "location": "imgui_internal:3881", + "location": "imgui_internal:3890", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -16970,7 +17020,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", - "location": "imgui_internal:3880", + "location": "imgui_internal:3889", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -17004,7 +17054,7 @@ "cimguiname": "igDebugAllocHook", "defaults": {}, "funcname": "DebugAllocHook", - "location": "imgui_internal:3915", + "location": "imgui_internal:3924", "namespace": "ImGui", "ov_cimguiname": "igDebugAllocHook", "ret": "void", @@ -17030,7 +17080,7 @@ "cimguiname": "igDebugBreakButton", "defaults": {}, "funcname": "DebugBreakButton", - "location": "imgui_internal:3927", + "location": "imgui_internal:3936", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButton", "ret": "bool", @@ -17056,7 +17106,7 @@ "cimguiname": "igDebugBreakButtonTooltip", "defaults": {}, "funcname": "DebugBreakButtonTooltip", - "location": "imgui_internal:3928", + "location": "imgui_internal:3937", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButtonTooltip", "ret": "void", @@ -17073,7 +17123,7 @@ "cimguiname": "igDebugBreakClearData", "defaults": {}, "funcname": "DebugBreakClearData", - "location": "imgui_internal:3926", + "location": "imgui_internal:3935", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakClearData", "ret": "void", @@ -17119,7 +17169,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:1061", + "location": "imgui:1065", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -17143,7 +17193,7 @@ "col": "4278190335" }, "funcname": "DebugDrawCursorPos", - "location": "imgui_internal:3919", + "location": "imgui_internal:3928", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawCursorPos", "ret": "void", @@ -17167,7 +17217,7 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "imgui_internal:3921", + "location": "imgui_internal:3930", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -17191,7 +17241,7 @@ "col": "4278190335" }, "funcname": "DebugDrawLineExtents", - "location": "imgui_internal:3920", + "location": "imgui_internal:3929", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawLineExtents", "ret": "void", @@ -17213,7 +17263,7 @@ "cimguiname": "igDebugFlashStyleColor", "defaults": {}, "funcname": "DebugFlashStyleColor", - "location": "imgui:1059", + "location": "imgui:1063", "namespace": "ImGui", "ov_cimguiname": "igDebugFlashStyleColor", "ret": "void", @@ -17247,7 +17297,7 @@ "cimguiname": "igDebugHookIdInfo", "defaults": {}, "funcname": "DebugHookIdInfo", - "location": "imgui_internal:3930", + "location": "imgui_internal:3939", "namespace": "ImGui", "ov_cimguiname": "igDebugHookIdInfo", "ret": "void", @@ -17269,7 +17319,7 @@ "cimguiname": "igDebugLocateItem", "defaults": {}, "funcname": "DebugLocateItem", - "location": "imgui_internal:3923", + "location": "imgui_internal:3932", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItem", "ret": "void", @@ -17291,7 +17341,7 @@ "cimguiname": "igDebugLocateItemOnHover", "defaults": {}, "funcname": "DebugLocateItemOnHover", - "location": "imgui_internal:3924", + "location": "imgui_internal:3933", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemOnHover", "ret": "void", @@ -17308,7 +17358,7 @@ "cimguiname": "igDebugLocateItemResolveWithLastItem", "defaults": {}, "funcname": "DebugLocateItemResolveWithLastItem", - "location": "imgui_internal:3925", + "location": "imgui_internal:3934", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemResolveWithLastItem", "ret": "void", @@ -17335,7 +17385,7 @@ "defaults": {}, "funcname": "DebugLog", "isvararg": "...)", - "location": "imgui:1063", + "location": "imgui:1067", "namespace": "ImGui", "ov_cimguiname": "igDebugLog", "ret": "void", @@ -17361,7 +17411,7 @@ "cimguiname": "igDebugLogV", "defaults": {}, "funcname": "DebugLogV", - "location": "imgui:1064", + "location": "imgui:1068", "namespace": "ImGui", "ov_cimguiname": "igDebugLogV", "ret": "void", @@ -17383,7 +17433,7 @@ "cimguiname": "igDebugNodeColumns", "defaults": {}, "funcname": "DebugNodeColumns", - "location": "imgui_internal:3931", + "location": "imgui_internal:3940", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeColumns", "ret": "void", @@ -17409,7 +17459,7 @@ "cimguiname": "igDebugNodeDockNode", "defaults": {}, "funcname": "DebugNodeDockNode", - "location": "imgui_internal:3932", + "location": "imgui_internal:3941", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDockNode", "ret": "void", @@ -17447,7 +17497,7 @@ "cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "defaults": {}, "funcname": "DebugNodeDrawCmdShowMeshAndBoundingBox", - "location": "imgui_internal:3934", + "location": "imgui_internal:3943", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "ret": "void", @@ -17481,7 +17531,7 @@ "cimguiname": "igDebugNodeDrawList", "defaults": {}, "funcname": "DebugNodeDrawList", - "location": "imgui_internal:3933", + "location": "imgui_internal:3942", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawList", "ret": "void", @@ -17503,7 +17553,7 @@ "cimguiname": "igDebugNodeFont", "defaults": {}, "funcname": "DebugNodeFont", - "location": "imgui_internal:3935", + "location": "imgui_internal:3944", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFont", "ret": "void", @@ -17529,7 +17579,7 @@ "cimguiname": "igDebugNodeFontGlyph", "defaults": {}, "funcname": "DebugNodeFontGlyph", - "location": "imgui_internal:3936", + "location": "imgui_internal:3945", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFontGlyph", "ret": "void", @@ -17551,7 +17601,7 @@ "cimguiname": "igDebugNodeInputTextState", "defaults": {}, "funcname": "DebugNodeInputTextState", - "location": "imgui_internal:3941", + "location": "imgui_internal:3950", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeInputTextState", "ret": "void", @@ -17573,7 +17623,7 @@ "cimguiname": "igDebugNodeMultiSelectState", "defaults": {}, "funcname": "DebugNodeMultiSelectState", - "location": "imgui_internal:3943", + "location": "imgui_internal:3952", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeMultiSelectState", "ret": "void", @@ -17603,7 +17653,7 @@ "cimguiname": "igDebugNodePlatformMonitor", "defaults": {}, "funcname": "DebugNodePlatformMonitor", - "location": "imgui_internal:3949", + "location": "imgui_internal:3958", "namespace": "ImGui", "ov_cimguiname": "igDebugNodePlatformMonitor", "ret": "void", @@ -17629,7 +17679,7 @@ "cimguiname": "igDebugNodeStorage", "defaults": {}, "funcname": "DebugNodeStorage", - "location": "imgui_internal:3937", + "location": "imgui_internal:3946", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeStorage", "ret": "void", @@ -17655,7 +17705,7 @@ "cimguiname": "igDebugNodeTabBar", "defaults": {}, "funcname": "DebugNodeTabBar", - "location": "imgui_internal:3938", + "location": "imgui_internal:3947", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTabBar", "ret": "void", @@ -17677,7 +17727,7 @@ "cimguiname": "igDebugNodeTable", "defaults": {}, "funcname": "DebugNodeTable", - "location": "imgui_internal:3939", + "location": "imgui_internal:3948", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTable", "ret": "void", @@ -17699,7 +17749,7 @@ "cimguiname": "igDebugNodeTableSettings", "defaults": {}, "funcname": "DebugNodeTableSettings", - "location": "imgui_internal:3940", + "location": "imgui_internal:3949", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTableSettings", "ret": "void", @@ -17721,7 +17771,7 @@ "cimguiname": "igDebugNodeTypingSelectState", "defaults": {}, "funcname": "DebugNodeTypingSelectState", - "location": "imgui_internal:3942", + "location": "imgui_internal:3951", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTypingSelectState", "ret": "void", @@ -17743,7 +17793,7 @@ "cimguiname": "igDebugNodeViewport", "defaults": {}, "funcname": "DebugNodeViewport", - "location": "imgui_internal:3948", + "location": "imgui_internal:3957", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeViewport", "ret": "void", @@ -17769,7 +17819,7 @@ "cimguiname": "igDebugNodeWindow", "defaults": {}, "funcname": "DebugNodeWindow", - "location": "imgui_internal:3944", + "location": "imgui_internal:3953", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindow", "ret": "void", @@ -17791,7 +17841,7 @@ "cimguiname": "igDebugNodeWindowSettings", "defaults": {}, "funcname": "DebugNodeWindowSettings", - "location": "imgui_internal:3945", + "location": "imgui_internal:3954", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowSettings", "ret": "void", @@ -17817,7 +17867,7 @@ "cimguiname": "igDebugNodeWindowsList", "defaults": {}, "funcname": "DebugNodeWindowsList", - "location": "imgui_internal:3946", + "location": "imgui_internal:3955", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsList", "ret": "void", @@ -17847,7 +17897,7 @@ "cimguiname": "igDebugNodeWindowsListByBeginStackParent", "defaults": {}, "funcname": "DebugNodeWindowsListByBeginStackParent", - "location": "imgui_internal:3947", + "location": "imgui_internal:3956", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsListByBeginStackParent", "ret": "void", @@ -17869,7 +17919,7 @@ "cimguiname": "igDebugRenderKeyboardPreview", "defaults": {}, "funcname": "DebugRenderKeyboardPreview", - "location": "imgui_internal:3950", + "location": "imgui_internal:3959", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderKeyboardPreview", "ret": "void", @@ -17899,7 +17949,7 @@ "cimguiname": "igDebugRenderViewportThumbnail", "defaults": {}, "funcname": "DebugRenderViewportThumbnail", - "location": "imgui_internal:3951", + "location": "imgui_internal:3960", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderViewportThumbnail", "ret": "void", @@ -17916,7 +17966,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", - "location": "imgui:1060", + "location": "imgui:1064", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -17938,7 +17988,7 @@ "cimguiname": "igDebugTextEncoding", "defaults": {}, "funcname": "DebugTextEncoding", - "location": "imgui:1058", + "location": "imgui:1062", "namespace": "ImGui", "ov_cimguiname": "igDebugTextEncoding", "ret": "void", @@ -17964,7 +18014,7 @@ "cimguiname": "igDebugTextUnformattedWithLocateItem", "defaults": {}, "funcname": "DebugTextUnformattedWithLocateItem", - "location": "imgui_internal:3922", + "location": "imgui_internal:3931", "namespace": "ImGui", "ov_cimguiname": "igDebugTextUnformattedWithLocateItem", "ret": "void", @@ -17988,7 +18038,7 @@ "ctx": "NULL" }, "funcname": "DestroyContext", - "location": "imgui:328", + "location": "imgui:329", "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -18010,7 +18060,7 @@ "cimguiname": "igDestroyPlatformWindow", "defaults": {}, "funcname": "DestroyPlatformWindow", - "location": "imgui_internal:3410", + "location": "imgui_internal:3419", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindow", "ret": "void", @@ -18027,7 +18077,7 @@ "cimguiname": "igDestroyPlatformWindows", "defaults": {}, "funcname": "DestroyPlatformWindows", - "location": "imgui:1082", + "location": "imgui:1085", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindows", "ret": "void", @@ -18056,7 +18106,7 @@ "node_id": "0" }, "funcname": "DockBuilderAddNode", - "location": "imgui_internal:3672", + "location": "imgui_internal:3681", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderAddNode", "ret": "ImGuiID", @@ -18086,7 +18136,7 @@ "cimguiname": "igDockBuilderCopyDockSpace", "defaults": {}, "funcname": "DockBuilderCopyDockSpace", - "location": "imgui_internal:3679", + "location": "imgui_internal:3688", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyDockSpace", "ret": "void", @@ -18116,7 +18166,7 @@ "cimguiname": "igDockBuilderCopyNode", "defaults": {}, "funcname": "DockBuilderCopyNode", - "location": "imgui_internal:3680", + "location": "imgui_internal:3689", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyNode", "ret": "void", @@ -18142,7 +18192,7 @@ "cimguiname": "igDockBuilderCopyWindowSettings", "defaults": {}, "funcname": "DockBuilderCopyWindowSettings", - "location": "imgui_internal:3681", + "location": "imgui_internal:3690", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyWindowSettings", "ret": "void", @@ -18168,7 +18218,7 @@ "cimguiname": "igDockBuilderDockWindow", "defaults": {}, "funcname": "DockBuilderDockWindow", - "location": "imgui_internal:3669", + "location": "imgui_internal:3678", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderDockWindow", "ret": "void", @@ -18190,7 +18240,7 @@ "cimguiname": "igDockBuilderFinish", "defaults": {}, "funcname": "DockBuilderFinish", - "location": "imgui_internal:3682", + "location": "imgui_internal:3691", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderFinish", "ret": "void", @@ -18212,7 +18262,7 @@ "cimguiname": "igDockBuilderGetCentralNode", "defaults": {}, "funcname": "DockBuilderGetCentralNode", - "location": "imgui_internal:3671", + "location": "imgui_internal:3680", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetCentralNode", "ret": "ImGuiDockNode*", @@ -18234,7 +18284,7 @@ "cimguiname": "igDockBuilderGetNode", "defaults": {}, "funcname": "DockBuilderGetNode", - "location": "imgui_internal:3670", + "location": "imgui_internal:3679", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetNode", "ret": "ImGuiDockNode*", @@ -18256,7 +18306,7 @@ "cimguiname": "igDockBuilderRemoveNode", "defaults": {}, "funcname": "DockBuilderRemoveNode", - "location": "imgui_internal:3673", + "location": "imgui_internal:3682", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNode", "ret": "void", @@ -18278,7 +18328,7 @@ "cimguiname": "igDockBuilderRemoveNodeChildNodes", "defaults": {}, "funcname": "DockBuilderRemoveNodeChildNodes", - "location": "imgui_internal:3675", + "location": "imgui_internal:3684", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeChildNodes", "ret": "void", @@ -18306,7 +18356,7 @@ "clear_settings_refs": "true" }, "funcname": "DockBuilderRemoveNodeDockedWindows", - "location": "imgui_internal:3674", + "location": "imgui_internal:3683", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeDockedWindows", "ret": "void", @@ -18332,7 +18382,7 @@ "cimguiname": "igDockBuilderSetNodePos", "defaults": {}, "funcname": "DockBuilderSetNodePos", - "location": "imgui_internal:3676", + "location": "imgui_internal:3685", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodePos", "ret": "void", @@ -18358,7 +18408,7 @@ "cimguiname": "igDockBuilderSetNodeSize", "defaults": {}, "funcname": "DockBuilderSetNodeSize", - "location": "imgui_internal:3677", + "location": "imgui_internal:3686", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodeSize", "ret": "void", @@ -18396,7 +18446,7 @@ "cimguiname": "igDockBuilderSplitNode", "defaults": {}, "funcname": "DockBuilderSplitNode", - "location": "imgui_internal:3678", + "location": "imgui_internal:3687", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSplitNode", "ret": "ImGuiID", @@ -18442,7 +18492,7 @@ "cimguiname": "igDockContextCalcDropPosForDocking", "defaults": {}, "funcname": "DockContextCalcDropPosForDocking", - "location": "imgui_internal:3644", + "location": "imgui_internal:3653", "namespace": "ImGui", "ov_cimguiname": "igDockContextCalcDropPosForDocking", "ret": "bool", @@ -18472,7 +18522,7 @@ "cimguiname": "igDockContextClearNodes", "defaults": {}, "funcname": "DockContextClearNodes", - "location": "imgui_internal:3633", + "location": "imgui_internal:3642", "namespace": "ImGui", "ov_cimguiname": "igDockContextClearNodes", "ret": "void", @@ -18494,7 +18544,7 @@ "cimguiname": "igDockContextEndFrame", "defaults": {}, "funcname": "DockContextEndFrame", - "location": "imgui_internal:3637", + "location": "imgui_internal:3646", "namespace": "ImGui", "ov_cimguiname": "igDockContextEndFrame", "ret": "void", @@ -18520,7 +18570,7 @@ "cimguiname": "igDockContextFindNodeByID", "defaults": {}, "funcname": "DockContextFindNodeByID", - "location": "imgui_internal:3645", + "location": "imgui_internal:3654", "namespace": "ImGui", "ov_cimguiname": "igDockContextFindNodeByID", "ret": "ImGuiDockNode*", @@ -18542,7 +18592,7 @@ "cimguiname": "igDockContextGenNodeID", "defaults": {}, "funcname": "DockContextGenNodeID", - "location": "imgui_internal:3638", + "location": "imgui_internal:3647", "namespace": "ImGui", "ov_cimguiname": "igDockContextGenNodeID", "ret": "ImGuiID", @@ -18564,7 +18614,7 @@ "cimguiname": "igDockContextInitialize", "defaults": {}, "funcname": "DockContextInitialize", - "location": "imgui_internal:3631", + "location": "imgui_internal:3640", "namespace": "ImGui", "ov_cimguiname": "igDockContextInitialize", "ret": "void", @@ -18586,7 +18636,7 @@ "cimguiname": "igDockContextNewFrameUpdateDocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateDocking", - "location": "imgui_internal:3636", + "location": "imgui_internal:3645", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateDocking", "ret": "void", @@ -18608,7 +18658,7 @@ "cimguiname": "igDockContextNewFrameUpdateUndocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateUndocking", - "location": "imgui_internal:3635", + "location": "imgui_internal:3644", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateUndocking", "ret": "void", @@ -18634,7 +18684,7 @@ "cimguiname": "igDockContextProcessUndockNode", "defaults": {}, "funcname": "DockContextProcessUndockNode", - "location": "imgui_internal:3643", + "location": "imgui_internal:3652", "namespace": "ImGui", "ov_cimguiname": "igDockContextProcessUndockNode", "ret": "void", @@ -18666,7 +18716,7 @@ "clear_persistent_docking_ref": "true" }, "funcname": "DockContextProcessUndockWindow", - "location": "imgui_internal:3642", + "location": "imgui_internal:3651", "namespace": "ImGui", "ov_cimguiname": "igDockContextProcessUndockWindow", "ret": "void", @@ -18712,7 +18762,7 @@ "cimguiname": "igDockContextQueueDock", "defaults": {}, "funcname": "DockContextQueueDock", - "location": "imgui_internal:3639", + "location": "imgui_internal:3648", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueDock", "ret": "void", @@ -18738,7 +18788,7 @@ "cimguiname": "igDockContextQueueUndockNode", "defaults": {}, "funcname": "DockContextQueueUndockNode", - "location": "imgui_internal:3641", + "location": "imgui_internal:3650", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockNode", "ret": "void", @@ -18764,7 +18814,7 @@ "cimguiname": "igDockContextQueueUndockWindow", "defaults": {}, "funcname": "DockContextQueueUndockWindow", - "location": "imgui_internal:3640", + "location": "imgui_internal:3649", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockWindow", "ret": "void", @@ -18786,7 +18836,7 @@ "cimguiname": "igDockContextRebuildNodes", "defaults": {}, "funcname": "DockContextRebuildNodes", - "location": "imgui_internal:3634", + "location": "imgui_internal:3643", "namespace": "ImGui", "ov_cimguiname": "igDockContextRebuildNodes", "ret": "void", @@ -18808,7 +18858,7 @@ "cimguiname": "igDockContextShutdown", "defaults": {}, "funcname": "DockContextShutdown", - "location": "imgui_internal:3632", + "location": "imgui_internal:3641", "namespace": "ImGui", "ov_cimguiname": "igDockContextShutdown", "ret": "void", @@ -18830,7 +18880,7 @@ "cimguiname": "igDockNodeBeginAmendTabBar", "defaults": {}, "funcname": "DockNodeBeginAmendTabBar", - "location": "imgui_internal:3647", + "location": "imgui_internal:3656", "namespace": "ImGui", "ov_cimguiname": "igDockNodeBeginAmendTabBar", "ret": "bool", @@ -18847,7 +18897,7 @@ "cimguiname": "igDockNodeEndAmendTabBar", "defaults": {}, "funcname": "DockNodeEndAmendTabBar", - "location": "imgui_internal:3648", + "location": "imgui_internal:3657", "namespace": "ImGui", "ov_cimguiname": "igDockNodeEndAmendTabBar", "ret": "void", @@ -18869,7 +18919,7 @@ "cimguiname": "igDockNodeGetDepth", "defaults": {}, "funcname": "DockNodeGetDepth", - "location": "imgui_internal:3651", + "location": "imgui_internal:3660", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetDepth", "ret": "int", @@ -18891,7 +18941,7 @@ "cimguiname": "igDockNodeGetRootNode", "defaults": {}, "funcname": "DockNodeGetRootNode", - "location": "imgui_internal:3649", + "location": "imgui_internal:3658", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetRootNode", "ret": "ImGuiDockNode*", @@ -18913,7 +18963,7 @@ "cimguiname": "igDockNodeGetWindowMenuButtonId", "defaults": {}, "funcname": "DockNodeGetWindowMenuButtonId", - "location": "imgui_internal:3652", + "location": "imgui_internal:3661", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetWindowMenuButtonId", "ret": "ImGuiID", @@ -18939,7 +18989,7 @@ "cimguiname": "igDockNodeIsInHierarchyOf", "defaults": {}, "funcname": "DockNodeIsInHierarchyOf", - "location": "imgui_internal:3650", + "location": "imgui_internal:3659", "namespace": "ImGui", "ov_cimguiname": "igDockNodeIsInHierarchyOf", "ret": "bool", @@ -18969,7 +19019,7 @@ "cimguiname": "igDockNodeWindowMenuHandler_Default", "defaults": {}, "funcname": "DockNodeWindowMenuHandler_Default", - "location": "imgui_internal:3646", + "location": "imgui_internal:3655", "namespace": "ImGui", "ov_cimguiname": "igDockNodeWindowMenuHandler_Default", "ret": "void", @@ -19007,7 +19057,7 @@ "window_class": "NULL" }, "funcname": "DockSpace", - "location": "imgui:881", + "location": "imgui:885", "namespace": "ImGui", "ov_cimguiname": "igDockSpace", "ret": "ImGuiID", @@ -19046,7 +19096,7 @@ "window_class": "NULL" }, "funcname": "DockSpaceOverViewport", - "location": "imgui:882", + "location": "imgui:886", "namespace": "ImGui", "ov_cimguiname": "igDockSpaceOverViewport", "ret": "ImGuiID", @@ -19096,7 +19146,7 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", - "location": "imgui_internal:3858", + "location": "imgui_internal:3867", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -19148,7 +19198,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui:592", + "location": "imgui:596", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -19200,7 +19250,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui:593", + "location": "imgui:597", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -19252,7 +19302,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui:594", + "location": "imgui:598", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -19304,7 +19354,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui:595", + "location": "imgui:599", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -19365,7 +19415,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui:596", + "location": "imgui:600", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -19417,7 +19467,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui:597", + "location": "imgui:601", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -19469,7 +19519,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui:598", + "location": "imgui:602", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -19521,7 +19571,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui:599", + "location": "imgui:603", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -19573,7 +19623,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui:600", + "location": "imgui:604", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -19634,7 +19684,7 @@ "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui:601", + "location": "imgui:605", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -19690,7 +19740,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalar", - "location": "imgui:602", + "location": "imgui:606", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -19750,7 +19800,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalarN", - "location": "imgui:603", + "location": "imgui:607", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -19772,7 +19822,7 @@ "cimguiname": "igDummy", "defaults": {}, "funcname": "Dummy", - "location": "imgui:499", + "location": "imgui:503", "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -19789,7 +19839,7 @@ "cimguiname": "igEnd", "defaults": {}, "funcname": "End", - "location": "imgui:370", + "location": "imgui:372", "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -19815,7 +19865,7 @@ "cimguiname": "igEndBoxSelect", "defaults": {}, "funcname": "EndBoxSelect", - "location": "imgui_internal:3711", + "location": "imgui_internal:3720", "namespace": "ImGui", "ov_cimguiname": "igEndBoxSelect", "ret": "void", @@ -19832,7 +19882,7 @@ "cimguiname": "igEndChild", "defaults": {}, "funcname": "EndChild", - "location": "imgui:392", + "location": "imgui:394", "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -19849,7 +19899,7 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", - "location": "imgui_internal:3724", + "location": "imgui_internal:3733", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -19866,7 +19916,7 @@ "cimguiname": "igEndCombo", "defaults": {}, "funcname": "EndCombo", - "location": "imgui:575", + "location": "imgui:579", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -19883,7 +19933,7 @@ "cimguiname": "igEndComboPreview", "defaults": {}, "funcname": "EndComboPreview", - "location": "imgui_internal:3517", + "location": "imgui_internal:3526", "namespace": "ImGui", "ov_cimguiname": "igEndComboPreview", "ret": "void", @@ -19900,7 +19950,7 @@ "cimguiname": "igEndDisabled", "defaults": {}, "funcname": "EndDisabled", - "location": "imgui:917", + "location": "imgui:921", "namespace": "ImGui", "ov_cimguiname": "igEndDisabled", "ret": "void", @@ -19917,7 +19967,7 @@ "cimguiname": "igEndDisabledOverrideReenable", "defaults": {}, "funcname": "EndDisabledOverrideReenable", - "location": "imgui_internal:3480", + "location": "imgui_internal:3489", "namespace": "ImGui", "ov_cimguiname": "igEndDisabledOverrideReenable", "ret": "void", @@ -19934,7 +19984,7 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui:905", + "location": "imgui:909", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -19951,7 +20001,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui:908", + "location": "imgui:912", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -19968,7 +20018,7 @@ "cimguiname": "igEndFrame", "defaults": {}, "funcname": "EndFrame", - "location": "imgui:336", + "location": "imgui:338", "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -19985,7 +20035,7 @@ "cimguiname": "igEndGroup", "defaults": {}, "funcname": "EndGroup", - "location": "imgui:503", + "location": "imgui:507", "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -20002,7 +20052,7 @@ "cimguiname": "igEndListBox", "defaults": {}, "funcname": "EndListBox", - "location": "imgui:700", + "location": "imgui:704", "namespace": "ImGui", "ov_cimguiname": "igEndListBox", "ret": "void", @@ -20019,7 +20069,7 @@ "cimguiname": "igEndMainMenuBar", "defaults": {}, "funcname": "EndMainMenuBar", - "location": "imgui:726", + "location": "imgui:730", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -20036,7 +20086,7 @@ "cimguiname": "igEndMenu", "defaults": {}, "funcname": "EndMenu", - "location": "imgui:728", + "location": "imgui:732", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -20053,7 +20103,7 @@ "cimguiname": "igEndMenuBar", "defaults": {}, "funcname": "EndMenuBar", - "location": "imgui:724", + "location": "imgui:728", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -20070,7 +20120,7 @@ "cimguiname": "igEndMultiSelect", "defaults": {}, "funcname": "EndMultiSelect", - "location": "imgui:689", + "location": "imgui:693", "namespace": "ImGui", "ov_cimguiname": "igEndMultiSelect", "ret": "ImGuiMultiSelectIO*", @@ -20087,7 +20137,7 @@ "cimguiname": "igEndPopup", "defaults": {}, "funcname": "EndPopup", - "location": "imgui:761", + "location": "imgui:765", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -20104,7 +20154,7 @@ "cimguiname": "igEndTabBar", "defaults": {}, "funcname": "EndTabBar", - "location": "imgui:862", + "location": "imgui:866", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -20121,7 +20171,7 @@ "cimguiname": "igEndTabItem", "defaults": {}, "funcname": "EndTabItem", - "location": "imgui:864", + "location": "imgui:868", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -20138,7 +20188,7 @@ "cimguiname": "igEndTable", "defaults": {}, "funcname": "EndTable", - "location": "imgui:813", + "location": "imgui:817", "namespace": "ImGui", "ov_cimguiname": "igEndTable", "ret": "void", @@ -20155,7 +20205,7 @@ "cimguiname": "igEndTooltip", "defaults": {}, "funcname": "EndTooltip", - "location": "imgui:737", + "location": "imgui:741", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -20183,7 +20233,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndFrameRecover", - "location": "imgui_internal:3916", + "location": "imgui_internal:3925", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndFrameRecover", "ret": "void", @@ -20211,7 +20261,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndWindowRecover", - "location": "imgui_internal:3917", + "location": "imgui_internal:3926", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndWindowRecover", "ret": "void", @@ -20228,7 +20278,7 @@ "cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "defaults": {}, "funcname": "ErrorCheckUsingSetCursorPosToExtendParentBoundaries", - "location": "imgui_internal:3918", + "location": "imgui_internal:3927", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "ret": "void", @@ -20254,7 +20304,7 @@ "cimguiname": "igFindBestWindowPosForPopup", "defaults": {}, "funcname": "FindBestWindowPosForPopup", - "location": "imgui_internal:3502", + "location": "imgui_internal:3511", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -20301,7 +20351,7 @@ "cimguiname": "igFindBestWindowPosForPopupEx", "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", - "location": "imgui_internal:3503", + "location": "imgui_internal:3512", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -20324,7 +20374,7 @@ "cimguiname": "igFindBlockingModal", "defaults": {}, "funcname": "FindBlockingModal", - "location": "imgui_internal:3501", + "location": "imgui_internal:3510", "namespace": "ImGui", "ov_cimguiname": "igFindBlockingModal", "ret": "ImGuiWindow*", @@ -20346,7 +20396,7 @@ "cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "defaults": {}, "funcname": "FindBottomMostVisibleWindowWithinBeginStack", - "location": "imgui_internal:3378", + "location": "imgui_internal:3387", "namespace": "ImGui", "ov_cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "ret": "ImGuiWindow*", @@ -20368,7 +20418,7 @@ "cimguiname": "igFindHoveredViewportFromPlatformWindowStack", "defaults": {}, "funcname": "FindHoveredViewportFromPlatformWindowStack", - "location": "imgui_internal:3414", + "location": "imgui_internal:3423", "namespace": "ImGui", "ov_cimguiname": "igFindHoveredViewportFromPlatformWindowStack", "ret": "ImGuiViewportP*", @@ -20402,7 +20452,7 @@ "cimguiname": "igFindHoveredWindowEx", "defaults": {}, "funcname": "FindHoveredWindowEx", - "location": "imgui_internal:3396", + "location": "imgui_internal:3405", "namespace": "ImGui", "ov_cimguiname": "igFindHoveredWindowEx", "ret": "void", @@ -20428,7 +20478,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", - "location": "imgui_internal:3729", + "location": "imgui_internal:3738", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiOldColumns*", @@ -20456,7 +20506,7 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "imgui_internal:3823", + "location": "imgui_internal:3832", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -20478,7 +20528,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", - "location": "imgui_internal:3422", + "location": "imgui_internal:3431", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -20500,7 +20550,7 @@ "cimguiname": "igFindViewportByID", "defaults": {}, "funcname": "FindViewportByID", - "location": "imgui:1083", + "location": "imgui:1086", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByID", "ret": "ImGuiViewport*", @@ -20522,7 +20572,7 @@ "cimguiname": "igFindViewportByPlatformHandle", "defaults": {}, "funcname": "FindViewportByPlatformHandle", - "location": "imgui:1084", + "location": "imgui:1087", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByPlatformHandle", "ret": "ImGuiViewport*", @@ -20544,7 +20594,7 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", - "location": "imgui_internal:3350", + "location": "imgui_internal:3359", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -20566,7 +20616,7 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", - "location": "imgui_internal:3351", + "location": "imgui_internal:3360", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -20588,7 +20638,7 @@ "cimguiname": "igFindWindowDisplayIndex", "defaults": {}, "funcname": "FindWindowDisplayIndex", - "location": "imgui_internal:3377", + "location": "imgui_internal:3386", "namespace": "ImGui", "ov_cimguiname": "igFindWindowDisplayIndex", "ret": "int", @@ -20610,7 +20660,7 @@ "cimguiname": "igFindWindowSettingsByID", "defaults": {}, "funcname": "FindWindowSettingsByID", - "location": "imgui_internal:3426", + "location": "imgui_internal:3435", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByID", "ret": "ImGuiWindowSettings*", @@ -20632,7 +20682,7 @@ "cimguiname": "igFindWindowSettingsByWindow", "defaults": {}, "funcname": "FindWindowSettingsByWindow", - "location": "imgui_internal:3427", + "location": "imgui_internal:3436", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByWindow", "ret": "ImGuiWindowSettings*", @@ -20654,7 +20704,7 @@ "cimguiname": "igFixupKeyChord", "defaults": {}, "funcname": "FixupKeyChord", - "location": "imgui_internal:3554", + "location": "imgui_internal:3563", "namespace": "ImGui", "ov_cimguiname": "igFixupKeyChord", "ret": "ImGuiKeyChord", @@ -20671,7 +20721,7 @@ "cimguiname": "igFocusItem", "defaults": {}, "funcname": "FocusItem", - "location": "imgui_internal:3541", + "location": "imgui_internal:3550", "namespace": "ImGui", "ov_cimguiname": "igFocusItem", "ret": "void", @@ -20705,7 +20755,7 @@ "cimguiname": "igFocusTopMostWindowUnderOne", "defaults": {}, "funcname": "FocusTopMostWindowUnderOne", - "location": "imgui_internal:3372", + "location": "imgui_internal:3381", "namespace": "ImGui", "ov_cimguiname": "igFocusTopMostWindowUnderOne", "ret": "void", @@ -20733,7 +20783,7 @@ "flags": "0" }, "funcname": "FocusWindow", - "location": "imgui_internal:3371", + "location": "imgui_internal:3380", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", @@ -20755,7 +20805,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", - "location": "imgui_internal:3912", + "location": "imgui_internal:3921", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -20772,7 +20822,7 @@ "cimguiname": "igGcCompactTransientMiscBuffers", "defaults": {}, "funcname": "GcCompactTransientMiscBuffers", - "location": "imgui_internal:3910", + "location": "imgui_internal:3919", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientMiscBuffers", "ret": "void", @@ -20794,7 +20844,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", - "location": "imgui_internal:3911", + "location": "imgui_internal:3920", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -20811,7 +20861,7 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", - "location": "imgui_internal:3451", + "location": "imgui_internal:3460", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -20841,7 +20891,7 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", - "location": "imgui:1072", + "location": "imgui:1076", "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -20865,7 +20915,7 @@ "viewport": "NULL" }, "funcname": "GetBackgroundDrawList", - "location": "imgui:960", + "location": "imgui:964", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList", "ret": "ImDrawList*", @@ -20887,7 +20937,7 @@ "cimguiname": "igGetBoxSelectState", "defaults": {}, "funcname": "GetBoxSelectState", - "location": "imgui_internal:3718", + "location": "imgui_internal:3727", "namespace": "ImGui", "ov_cimguiname": "igGetBoxSelectState", "ret": "ImGuiBoxSelectState*", @@ -20904,7 +20954,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:1044", + "location": "imgui:1048", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -20932,7 +20982,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui:468", + "location": "imgui:472", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Col", "ret": "ImU32", @@ -20952,7 +21002,7 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:469", + "location": "imgui:473", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Vec4", "ret": "ImU32", @@ -20978,7 +21028,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui:470", + "location": "imgui:474", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_U32", "ret": "ImU32", @@ -20995,7 +21045,7 @@ "cimguiname": "igGetColumnIndex", "defaults": {}, "funcname": "GetColumnIndex", - "location": "imgui:852", + "location": "imgui:856", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -21021,7 +21071,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", - "location": "imgui_internal:3731", + "location": "imgui_internal:3740", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -21045,7 +21095,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui:855", + "location": "imgui:859", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -21071,7 +21121,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", - "location": "imgui_internal:3730", + "location": "imgui_internal:3739", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -21095,7 +21145,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui:853", + "location": "imgui:857", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -21112,7 +21162,7 @@ "cimguiname": "igGetColumnsCount", "defaults": {}, "funcname": "GetColumnsCount", - "location": "imgui:857", + "location": "imgui:861", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -21138,7 +21188,7 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", - "location": "imgui_internal:3728", + "location": "imgui_internal:3737", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -21160,7 +21210,7 @@ "cimguiname": "igGetContentRegionAvail", "defaults": {}, "funcname": "GetContentRegionAvail", - "location": "imgui:485", + "location": "imgui:489", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -21178,7 +21228,7 @@ "cimguiname": "igGetCurrentContext", "defaults": {}, "funcname": "GetCurrentContext", - "location": "imgui:329", + "location": "imgui:330", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -21195,7 +21245,7 @@ "cimguiname": "igGetCurrentFocusScope", "defaults": {}, "funcname": "GetCurrentFocusScope", - "location": "imgui_internal:3694", + "location": "imgui_internal:3703", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentFocusScope", "ret": "ImGuiID", @@ -21212,7 +21262,7 @@ "cimguiname": "igGetCurrentTabBar", "defaults": {}, "funcname": "GetCurrentTabBar", - "location": "imgui_internal:3790", + "location": "imgui_internal:3799", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTabBar", "ret": "ImGuiTabBar*", @@ -21229,7 +21279,7 @@ "cimguiname": "igGetCurrentTable", "defaults": {}, "funcname": "GetCurrentTable", - "location": "imgui_internal:3745", + "location": "imgui_internal:3754", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTable", "ret": "ImGuiTable*", @@ -21246,7 +21296,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", - "location": "imgui_internal:3349", + "location": "imgui_internal:3358", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -21263,7 +21313,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", - "location": "imgui_internal:3348", + "location": "imgui_internal:3357", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -21285,7 +21335,7 @@ "cimguiname": "igGetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui:486", + "location": "imgui:490", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -21303,7 +21353,7 @@ "cimguiname": "igGetCursorPosX", "defaults": {}, "funcname": "GetCursorPosX", - "location": "imgui:487", + "location": "imgui:491", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -21320,7 +21370,7 @@ "cimguiname": "igGetCursorPosY", "defaults": {}, "funcname": "GetCursorPosY", - "location": "imgui:488", + "location": "imgui:492", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -21342,7 +21392,7 @@ "cimguiname": "igGetCursorScreenPos", "defaults": {}, "funcname": "GetCursorScreenPos", - "location": "imgui:483", + "location": "imgui:487", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -21365,7 +21415,7 @@ "cimguiname": "igGetCursorStartPos", "defaults": {}, "funcname": "GetCursorStartPos", - "location": "imgui:492", + "location": "imgui:496", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -21383,7 +21433,7 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", - "location": "imgui_internal:3385", + "location": "imgui_internal:3394", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -21400,7 +21450,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui:909", + "location": "imgui:913", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -21417,7 +21467,7 @@ "cimguiname": "igGetDrawData", "defaults": {}, "funcname": "GetDrawData", - "location": "imgui:338", + "location": "imgui:340", "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -21434,7 +21484,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui:968", + "location": "imgui:972", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -21451,7 +21501,7 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", - "location": "imgui_internal:3452", + "location": "imgui_internal:3461", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -21468,7 +21518,7 @@ "cimguiname": "igGetFont", "defaults": {}, "funcname": "GetFont", - "location": "imgui:465", + "location": "imgui:469", "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -21485,7 +21535,7 @@ "cimguiname": "igGetFontSize", "defaults": {}, "funcname": "GetFontSize", - "location": "imgui:466", + "location": "imgui:470", "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -21507,7 +21557,7 @@ "cimguiname": "igGetFontTexUvWhitePixel", "defaults": {}, "funcname": "GetFontTexUvWhitePixel", - "location": "imgui:467", + "location": "imgui:471", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -21532,7 +21582,7 @@ "viewport": "NULL" }, "funcname": "GetForegroundDrawList", - "location": "imgui:961", + "location": "imgui:965", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -21552,7 +21602,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:3386", + "location": "imgui_internal:3395", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_WindowPtr", "ret": "ImDrawList*", @@ -21569,7 +21619,7 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui:967", + "location": "imgui:971", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -21586,7 +21636,7 @@ "cimguiname": "igGetFrameHeight", "defaults": {}, "funcname": "GetFrameHeight", - "location": "imgui:507", + "location": "imgui:511", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -21603,7 +21653,7 @@ "cimguiname": "igGetFrameHeightWithSpacing", "defaults": {}, "funcname": "GetFrameHeightWithSpacing", - "location": "imgui:508", + "location": "imgui:512", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -21620,7 +21670,7 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", - "location": "imgui_internal:3456", + "location": "imgui_internal:3465", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -21642,7 +21692,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:526", + "location": "imgui:530", "namespace": "ImGui", "ov_cimguiname": "igGetID_Str", "ret": "ImGuiID", @@ -21666,7 +21716,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:527", + "location": "imgui:531", "namespace": "ImGui", "ov_cimguiname": "igGetID_StrStr", "ret": "ImGuiID", @@ -21686,7 +21736,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:528", + "location": "imgui:532", "namespace": "ImGui", "ov_cimguiname": "igGetID_Ptr", "ret": "ImGuiID", @@ -21706,7 +21756,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:529", + "location": "imgui:533", "namespace": "ImGui", "ov_cimguiname": "igGetID_Int", "ret": "ImGuiID", @@ -21736,7 +21786,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3461", + "location": "imgui_internal:3470", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Str", "ret": "ImGuiID", @@ -21760,7 +21810,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3462", + "location": "imgui_internal:3471", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Int", "ret": "ImGuiID", @@ -21777,7 +21827,7 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", - "location": "imgui:333", + "location": "imgui:334", "namespace": "ImGui", "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", @@ -21800,7 +21850,7 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", - "location": "imgui_internal:3893", + "location": "imgui_internal:3902", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -21817,7 +21867,7 @@ "cimguiname": "igGetItemFlags", "defaults": {}, "funcname": "GetItemFlags", - "location": "imgui_internal:3450", + "location": "imgui_internal:3459", "namespace": "ImGui", "ov_cimguiname": "igGetItemFlags", "ret": "ImGuiItemFlags", @@ -21834,7 +21884,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui:948", + "location": "imgui:952", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -21856,7 +21906,7 @@ "cimguiname": "igGetItemRectMax", "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui:950", + "location": "imgui:954", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -21879,7 +21929,7 @@ "cimguiname": "igGetItemRectMin", "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui:949", + "location": "imgui:953", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -21902,7 +21952,7 @@ "cimguiname": "igGetItemRectSize", "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui:951", + "location": "imgui:955", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -21920,7 +21970,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", - "location": "imgui_internal:3449", + "location": "imgui_internal:3458", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -21942,7 +21992,7 @@ "cimguiname": "igGetKeyChordName", "defaults": {}, "funcname": "GetKeyChordName", - "location": "imgui_internal:3566", + "location": "imgui_internal:3575", "namespace": "ImGui", "ov_cimguiname": "igGetKeyChordName", "ret": "const char*", @@ -21968,7 +22018,7 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3564", + "location": "imgui_internal:3573", "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_ContextPtr", "ret": "ImGuiKeyData*", @@ -21988,7 +22038,7 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3565", + "location": "imgui_internal:3574", "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_Key", "ret": "ImGuiKeyData*", @@ -22026,7 +22076,7 @@ "cimguiname": "igGetKeyMagnitude2d", "defaults": {}, "funcname": "GetKeyMagnitude2d", - "location": "imgui_internal:3569", + "location": "imgui_internal:3578", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetKeyMagnitude2d", @@ -22049,7 +22099,7 @@ "cimguiname": "igGetKeyName", "defaults": {}, "funcname": "GetKeyName", - "location": "imgui:992", + "location": "imgui:996", "namespace": "ImGui", "ov_cimguiname": "igGetKeyName", "ret": "const char*", @@ -22071,7 +22121,7 @@ "cimguiname": "igGetKeyOwner", "defaults": {}, "funcname": "GetKeyOwner", - "location": "imgui_internal:3588", + "location": "imgui_internal:3597", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwner", "ret": "ImGuiID", @@ -22097,7 +22147,7 @@ "cimguiname": "igGetKeyOwnerData", "defaults": {}, "funcname": "GetKeyOwnerData", - "location": "imgui_internal:3593", + "location": "imgui_internal:3602", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwnerData", "ret": "ImGuiKeyOwnerData*", @@ -22127,7 +22177,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:991", + "location": "imgui:995", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -22144,7 +22194,7 @@ "cimguiname": "igGetMainViewport", "defaults": {}, "funcname": "GetMainViewport", - "location": "imgui:957", + "location": "imgui:961", "namespace": "ImGui", "ov_cimguiname": "igGetMainViewport", "ret": "ImGuiViewport*", @@ -22166,7 +22216,7 @@ "cimguiname": "igGetMouseClickedCount", "defaults": {}, "funcname": "GetMouseClickedCount", - "location": "imgui:1029", + "location": "imgui:1033", "namespace": "ImGui", "ov_cimguiname": "igGetMouseClickedCount", "ret": "int", @@ -22183,7 +22233,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:1038", + "location": "imgui:1042", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -22216,7 +22266,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:1036", + "location": "imgui:1040", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -22239,7 +22289,7 @@ "cimguiname": "igGetMousePos", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:1033", + "location": "imgui:1037", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -22262,7 +22312,7 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:1034", + "location": "imgui:1038", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -22285,7 +22335,7 @@ "cimguiname": "igGetMultiSelectState", "defaults": {}, "funcname": "GetMultiSelectState", - "location": "imgui_internal:3719", + "location": "imgui_internal:3728", "namespace": "ImGui", "ov_cimguiname": "igGetMultiSelectState", "ret": "ImGuiMultiSelectState*", @@ -22307,7 +22357,7 @@ "cimguiname": "igGetNavTweakPressedAmount", "defaults": {}, "funcname": "GetNavTweakPressedAmount", - "location": "imgui_internal:3570", + "location": "imgui_internal:3579", "namespace": "ImGui", "ov_cimguiname": "igGetNavTweakPressedAmount", "ret": "float", @@ -22324,7 +22374,7 @@ "cimguiname": "igGetPlatformIO", "defaults": {}, "funcname": "GetPlatformIO", - "location": "imgui:1079", + "location": "imgui:335", "namespace": "ImGui", "ov_cimguiname": "igGetPlatformIO", "ret": "ImGuiPlatformIO*", @@ -22351,7 +22401,7 @@ "cimguiname": "igGetPopupAllowedExtentRect", "defaults": {}, "funcname": "GetPopupAllowedExtentRect", - "location": "imgui_internal:3498", + "location": "imgui_internal:3507", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetPopupAllowedExtentRect", @@ -22369,7 +22419,7 @@ "cimguiname": "igGetScrollMaxX", "defaults": {}, "funcname": "GetScrollMaxX", - "location": "imgui:436", + "location": "imgui:438", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -22386,7 +22436,7 @@ "cimguiname": "igGetScrollMaxY", "defaults": {}, "funcname": "GetScrollMaxY", - "location": "imgui:437", + "location": "imgui:439", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -22403,7 +22453,7 @@ "cimguiname": "igGetScrollX", "defaults": {}, "funcname": "GetScrollX", - "location": "imgui:432", + "location": "imgui:434", "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -22420,7 +22470,7 @@ "cimguiname": "igGetScrollY", "defaults": {}, "funcname": "GetScrollY", - "location": "imgui:433", + "location": "imgui:435", "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -22442,7 +22492,7 @@ "cimguiname": "igGetShortcutRoutingData", "defaults": {}, "funcname": "GetShortcutRoutingData", - "location": "imgui_internal:3627", + "location": "imgui_internal:3636", "namespace": "ImGui", "ov_cimguiname": "igGetShortcutRoutingData", "ret": "ImGuiKeyRoutingData*", @@ -22459,7 +22509,7 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui:971", + "location": "imgui:975", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -22476,7 +22526,7 @@ "cimguiname": "igGetStyle", "defaults": {}, "funcname": "GetStyle", - "location": "imgui:334", + "location": "imgui:336", "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -22499,7 +22549,7 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui:969", + "location": "imgui:973", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -22521,7 +22571,7 @@ "cimguiname": "igGetStyleColorVec4", "defaults": {}, "funcname": "GetStyleColorVec4", - "location": "imgui:471", + "location": "imgui:475", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", @@ -22544,7 +22594,7 @@ "cimguiname": "igGetStyleVarInfo", "defaults": {}, "funcname": "GetStyleVarInfo", - "location": "imgui_internal:3478", + "location": "imgui_internal:3487", "namespace": "ImGui", "ov_cimguiname": "igGetStyleVarInfo", "ret": "const ImGuiDataVarInfo*", @@ -22561,7 +22611,7 @@ "cimguiname": "igGetTextLineHeight", "defaults": {}, "funcname": "GetTextLineHeight", - "location": "imgui:505", + "location": "imgui:509", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -22578,7 +22628,7 @@ "cimguiname": "igGetTextLineHeightWithSpacing", "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", - "location": "imgui:506", + "location": "imgui:510", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -22595,7 +22645,7 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", - "location": "imgui:966", + "location": "imgui:970", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -22612,7 +22662,7 @@ "cimguiname": "igGetTopMostAndVisiblePopupModal", "defaults": {}, "funcname": "GetTopMostAndVisiblePopupModal", - "location": "imgui_internal:3500", + "location": "imgui_internal:3509", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostAndVisiblePopupModal", "ret": "ImGuiWindow*", @@ -22629,7 +22679,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", - "location": "imgui_internal:3499", + "location": "imgui_internal:3508", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -22646,7 +22696,7 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui:669", + "location": "imgui:673", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -22676,7 +22726,7 @@ "cimguiname": "igGetTypematicRepeatRate", "defaults": {}, "funcname": "GetTypematicRepeatRate", - "location": "imgui_internal:3572", + "location": "imgui_internal:3581", "namespace": "ImGui", "ov_cimguiname": "igGetTypematicRepeatRate", "ret": "void", @@ -22700,7 +22750,7 @@ "flags": "ImGuiTypingSelectFlags_None" }, "funcname": "GetTypingSelectRequest", - "location": "imgui_internal:3704", + "location": "imgui_internal:3713", "namespace": "ImGui", "ov_cimguiname": "igGetTypingSelectRequest", "ret": "ImGuiTypingSelectRequest*", @@ -22717,7 +22767,7 @@ "cimguiname": "igGetVersion", "defaults": {}, "funcname": "GetVersion", - "location": "imgui:350", + "location": "imgui:352", "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -22739,7 +22789,7 @@ "cimguiname": "igGetViewportPlatformMonitor", "defaults": {}, "funcname": "GetViewportPlatformMonitor", - "location": "imgui_internal:3413", + "location": "imgui_internal:3422", "namespace": "ImGui", "ov_cimguiname": "igGetViewportPlatformMonitor", "ret": "const ImGuiPlatformMonitor*", @@ -22761,7 +22811,7 @@ "cimguiname": "igGetWindowAlwaysWantOwnTabBar", "defaults": {}, "funcname": "GetWindowAlwaysWantOwnTabBar", - "location": "imgui_internal:3654", + "location": "imgui_internal:3663", "namespace": "ImGui", "ov_cimguiname": "igGetWindowAlwaysWantOwnTabBar", "ret": "bool", @@ -22778,7 +22828,7 @@ "cimguiname": "igGetWindowDockID", "defaults": {}, "funcname": "GetWindowDockID", - "location": "imgui:885", + "location": "imgui:889", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockID", "ret": "ImGuiID", @@ -22795,7 +22845,7 @@ "cimguiname": "igGetWindowDockNode", "defaults": {}, "funcname": "GetWindowDockNode", - "location": "imgui_internal:3653", + "location": "imgui_internal:3662", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockNode", "ret": "ImGuiDockNode*", @@ -22812,7 +22862,7 @@ "cimguiname": "igGetWindowDpiScale", "defaults": {}, "funcname": "GetWindowDpiScale", - "location": "imgui:401", + "location": "imgui:403", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDpiScale", "ret": "float", @@ -22829,7 +22879,7 @@ "cimguiname": "igGetWindowDrawList", "defaults": {}, "funcname": "GetWindowDrawList", - "location": "imgui:400", + "location": "imgui:402", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -22846,7 +22896,7 @@ "cimguiname": "igGetWindowHeight", "defaults": {}, "funcname": "GetWindowHeight", - "location": "imgui:405", + "location": "imgui:407", "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -22868,7 +22918,7 @@ "cimguiname": "igGetWindowPos", "defaults": {}, "funcname": "GetWindowPos", - "location": "imgui:402", + "location": "imgui:404", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -22895,7 +22945,7 @@ "cimguiname": "igGetWindowResizeBorderID", "defaults": {}, "funcname": "GetWindowResizeBorderID", - "location": "imgui_internal:3854", + "location": "imgui_internal:3863", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeBorderID", "ret": "ImGuiID", @@ -22921,7 +22971,7 @@ "cimguiname": "igGetWindowResizeCornerID", "defaults": {}, "funcname": "GetWindowResizeCornerID", - "location": "imgui_internal:3853", + "location": "imgui_internal:3862", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeCornerID", "ret": "ImGuiID", @@ -22947,7 +22997,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", - "location": "imgui_internal:3852", + "location": "imgui_internal:3861", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -22977,7 +23027,7 @@ "cimguiname": "igGetWindowScrollbarRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", - "location": "imgui_internal:3851", + "location": "imgui_internal:3860", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -23000,7 +23050,7 @@ "cimguiname": "igGetWindowSize", "defaults": {}, "funcname": "GetWindowSize", - "location": "imgui:403", + "location": "imgui:405", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -23018,7 +23068,7 @@ "cimguiname": "igGetWindowViewport", "defaults": {}, "funcname": "GetWindowViewport", - "location": "imgui:406", + "location": "imgui:408", "namespace": "ImGui", "ov_cimguiname": "igGetWindowViewport", "ret": "ImGuiViewport*", @@ -23035,7 +23085,7 @@ "cimguiname": "igGetWindowWidth", "defaults": {}, "funcname": "GetWindowWidth", - "location": "imgui:404", + "location": "imgui:406", "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", @@ -23828,7 +23878,7 @@ "cimguiname": "igImFontAtlasBuildFinish", "defaults": {}, "funcname": "ImFontAtlasBuildFinish", - "location": "imgui_internal:3989", + "location": "imgui_internal:3998", "ov_cimguiname": "igImFontAtlasBuildFinish", "ret": "void", "signature": "(ImFontAtlas*)", @@ -23849,7 +23899,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", - "location": "imgui_internal:3986", + "location": "imgui_internal:3995", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -23874,7 +23924,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", - "location": "imgui_internal:3992", + "location": "imgui_internal:4001", "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "ret": "void", "signature": "(unsigned char[256],float)", @@ -23919,7 +23969,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", - "location": "imgui_internal:3993", + "location": "imgui_internal:4002", "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "ret": "void", "signature": "(const unsigned char[256],unsigned char*,int,int,int,int,int)", @@ -23944,7 +23994,7 @@ "cimguiname": "igImFontAtlasBuildPackCustomRects", "defaults": {}, "funcname": "ImFontAtlasBuildPackCustomRects", - "location": "imgui_internal:3988", + "location": "imgui_internal:3997", "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", "ret": "void", "signature": "(ImFontAtlas*,void*)", @@ -23993,7 +24043,7 @@ "cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender32bppRectFromString", - "location": "imgui_internal:3991", + "location": "imgui_internal:4000", "ov_cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)", @@ -24042,7 +24092,7 @@ "cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender8bppRectFromString", - "location": "imgui_internal:3990", + "location": "imgui_internal:3999", "ov_cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)", @@ -24079,7 +24129,7 @@ "cimguiname": "igImFontAtlasBuildSetupFont", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFont", - "location": "imgui_internal:3987", + "location": "imgui_internal:3996", "ov_cimguiname": "igImFontAtlasBuildSetupFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)", @@ -24095,7 +24145,7 @@ "cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "defaults": {}, "funcname": "ImFontAtlasGetBuilderForStbTruetype", - "location": "imgui_internal:3983", + "location": "imgui_internal:3992", "ov_cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "ret": "const ImFontBuilderIO*", "signature": "()", @@ -24116,7 +24166,7 @@ "cimguiname": "igImFontAtlasUpdateConfigDataPointers", "defaults": {}, "funcname": "ImFontAtlasUpdateConfigDataPointers", - "location": "imgui_internal:3985", + "location": "imgui_internal:3994", "ov_cimguiname": "igImFontAtlasUpdateConfigDataPointers", "ret": "void", "signature": "(ImFontAtlas*)", @@ -26062,7 +26112,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui:568", + "location": "imgui:572", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -26113,7 +26163,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui:569", + "location": "imgui:573", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -26165,7 +26215,7 @@ "flags": "0" }, "funcname": "ImageButtonEx", - "location": "imgui_internal:3840", + "location": "imgui_internal:3849", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", @@ -26189,7 +26239,7 @@ "indent_w": "0.0f" }, "funcname": "Indent", - "location": "imgui:500", + "location": "imgui:504", "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -26206,7 +26256,7 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", - "location": "imgui_internal:3390", + "location": "imgui_internal:3399", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -26253,7 +26303,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui:640", + "location": "imgui:644", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -26300,7 +26350,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui:632", + "location": "imgui:636", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -26337,7 +26387,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui:633", + "location": "imgui:637", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -26374,7 +26424,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui:634", + "location": "imgui:638", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -26411,7 +26461,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui:635", + "location": "imgui:639", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -26453,7 +26503,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui:636", + "location": "imgui:640", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -26485,7 +26535,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui:637", + "location": "imgui:641", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -26517,7 +26567,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui:638", + "location": "imgui:642", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -26549,7 +26599,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui:639", + "location": "imgui:643", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -26600,7 +26650,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui:641", + "location": "imgui:645", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -26655,7 +26705,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui:642", + "location": "imgui:646", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -26701,7 +26751,7 @@ "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui:629", + "location": "imgui:633", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -26723,7 +26773,7 @@ "cimguiname": "igInputTextDeactivateHook", "defaults": {}, "funcname": "InputTextDeactivateHook", - "location": "imgui_internal:3889", + "location": "imgui_internal:3898", "namespace": "ImGui", "ov_cimguiname": "igInputTextDeactivateHook", "ret": "void", @@ -26776,7 +26826,7 @@ "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "imgui_internal:3888", + "location": "imgui_internal:3897", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -26827,7 +26877,7 @@ "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui:630", + "location": "imgui:634", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -26877,7 +26927,7 @@ "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui:631", + "location": "imgui:635", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -26909,7 +26959,7 @@ "flags": "0" }, "funcname": "InvisibleButton", - "location": "imgui:552", + "location": "imgui:556", "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -26931,7 +26981,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", - "location": "imgui_internal:3575", + "location": "imgui_internal:3584", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -26953,7 +27003,7 @@ "cimguiname": "igIsAliasKey", "defaults": {}, "funcname": "IsAliasKey", - "location": "imgui_internal:3552", + "location": "imgui_internal:3561", "namespace": "ImGui", "ov_cimguiname": "igIsAliasKey", "ret": "bool", @@ -26970,7 +27020,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui:946", + "location": "imgui:950", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -26987,7 +27037,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui:947", + "location": "imgui:951", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -27004,7 +27054,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui:945", + "location": "imgui:949", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -27021,7 +27071,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:1032", + "location": "imgui:1036", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -27047,7 +27097,7 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", - "location": "imgui_internal:3470", + "location": "imgui_internal:3479", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -27064,7 +27114,7 @@ "cimguiname": "igIsDragDropActive", "defaults": {}, "funcname": "IsDragDropActive", - "location": "imgui_internal:3697", + "location": "imgui_internal:3706", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropActive", "ret": "bool", @@ -27081,7 +27131,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", - "location": "imgui_internal:3700", + "location": "imgui_internal:3709", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -27103,7 +27153,7 @@ "cimguiname": "igIsGamepadKey", "defaults": {}, "funcname": "IsGamepadKey", - "location": "imgui_internal:3550", + "location": "imgui_internal:3559", "namespace": "ImGui", "ov_cimguiname": "igIsGamepadKey", "ret": "bool", @@ -27120,7 +27170,7 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui:941", + "location": "imgui:945", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -27137,7 +27187,7 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", - "location": "imgui:936", + "location": "imgui:940", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -27161,7 +27211,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui:938", + "location": "imgui:942", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -27178,7 +27228,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui:942", + "location": "imgui:946", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -27195,7 +27245,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui:943", + "location": "imgui:947", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -27212,7 +27262,7 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui:940", + "location": "imgui:944", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -27229,7 +27279,7 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui:937", + "location": "imgui:941", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -27253,7 +27303,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui:935", + "location": "imgui:939", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -27270,7 +27320,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui:944", + "location": "imgui:948", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -27287,7 +27337,7 @@ "cimguiname": "igIsItemToggledSelection", "defaults": {}, "funcname": "IsItemToggledSelection", - "location": "imgui:691", + "location": "imgui:695", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -27304,7 +27354,7 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui:939", + "location": "imgui:943", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -27326,7 +27376,7 @@ "cimguiname": "igIsKeyChordPressed", "defaults": {}, "funcname": "IsKeyChordPressed", - "location": "imgui:990", + "location": "imgui:994", "namespace": "ImGui", "ov_cimguiname": "igIsKeyChordPressed_Nil", "ret": "bool", @@ -27356,7 +27406,7 @@ "owner_id": "0" }, "funcname": "IsKeyChordPressed", - "location": "imgui_internal:3604", + "location": "imgui_internal:3613", "namespace": "ImGui", "ov_cimguiname": "igIsKeyChordPressed_InputFlags", "ret": "bool", @@ -27378,7 +27428,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:987", + "location": "imgui:991", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_Nil", "ret": "bool", @@ -27402,7 +27452,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui_internal:3601", + "location": "imgui_internal:3610", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_ID", "ret": "bool", @@ -27430,7 +27480,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:988", + "location": "imgui:992", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_Bool", "ret": "bool", @@ -27460,7 +27510,7 @@ "owner_id": "0" }, "funcname": "IsKeyPressed", - "location": "imgui_internal:3602", + "location": "imgui_internal:3611", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_InputFlags", "ret": "bool", @@ -27482,7 +27532,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:989", + "location": "imgui:993", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_Nil", "ret": "bool", @@ -27506,7 +27556,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui_internal:3603", + "location": "imgui_internal:3612", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_ID", "ret": "bool", @@ -27528,7 +27578,7 @@ "cimguiname": "igIsKeyboardKey", "defaults": {}, "funcname": "IsKeyboardKey", - "location": "imgui_internal:3549", + "location": "imgui_internal:3558", "namespace": "ImGui", "ov_cimguiname": "igIsKeyboardKey", "ret": "bool", @@ -27536,6 +27586,28 @@ "stname": "" } ], + "igIsLRModKey": [ + { + "args": "(ImGuiKey key)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igIsLRModKey", + "defaults": {}, + "funcname": "IsLRModKey", + "location": "imgui_internal:3562", + "namespace": "ImGui", + "ov_cimguiname": "igIsLRModKey", + "ret": "bool", + "signature": "(ImGuiKey)", + "stname": "" + } + ], "igIsLegacyKey": [ { "args": "(ImGuiKey key)", @@ -27550,7 +27622,7 @@ "cimguiname": "igIsLegacyKey", "defaults": {}, "funcname": "IsLegacyKey", - "location": "imgui_internal:3548", + "location": "imgui_internal:3557", "namespace": "ImGui", "ov_cimguiname": "igIsLegacyKey", "ret": "bool", @@ -27558,28 +27630,6 @@ "stname": "" } ], - "igIsModKey": [ - { - "args": "(ImGuiKey key)", - "argsT": [ - { - "name": "key", - "type": "ImGuiKey" - } - ], - "argsoriginal": "(ImGuiKey key)", - "call_args": "(key)", - "cimguiname": "igIsModKey", - "defaults": {}, - "funcname": "IsModKey", - "location": "imgui_internal:3553", - "namespace": "ImGui", - "ov_cimguiname": "igIsModKey", - "ret": "bool", - "signature": "(ImGuiKey)", - "stname": "" - } - ], "igIsMouseClicked": [ { "args": "(ImGuiMouseButton button,bool repeat)", @@ -27600,7 +27650,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:1026", + "location": "imgui:1030", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_Bool", "ret": "bool", @@ -27630,7 +27680,7 @@ "owner_id": "0" }, "funcname": "IsMouseClicked", - "location": "imgui_internal:3606", + "location": "imgui_internal:3615", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_InputFlags", "ret": "bool", @@ -27652,7 +27702,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:1028", + "location": "imgui:1032", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_Nil", "ret": "bool", @@ -27676,7 +27726,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui_internal:3608", + "location": "imgui_internal:3617", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_ID", "ret": "bool", @@ -27698,7 +27748,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:1025", + "location": "imgui:1029", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_Nil", "ret": "bool", @@ -27722,7 +27772,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui_internal:3605", + "location": "imgui_internal:3614", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_ID", "ret": "bool", @@ -27750,7 +27800,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "imgui_internal:3568", + "location": "imgui_internal:3577", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -27778,7 +27828,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:1035", + "location": "imgui:1039", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -27810,7 +27860,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:1030", + "location": "imgui:1034", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -27832,7 +27882,7 @@ "cimguiname": "igIsMouseKey", "defaults": {}, "funcname": "IsMouseKey", - "location": "imgui_internal:3551", + "location": "imgui_internal:3560", "namespace": "ImGui", "ov_cimguiname": "igIsMouseKey", "ret": "bool", @@ -27856,7 +27906,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:1031", + "location": "imgui:1035", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -27878,7 +27928,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:1027", + "location": "imgui:1031", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_Nil", "ret": "bool", @@ -27902,7 +27952,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui_internal:3607", + "location": "imgui_internal:3616", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_ID", "ret": "bool", @@ -27924,7 +27974,7 @@ "cimguiname": "igIsNamedKey", "defaults": {}, "funcname": "IsNamedKey", - "location": "imgui_internal:3546", + "location": "imgui_internal:3555", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKey", "ret": "bool", @@ -27946,7 +27996,7 @@ "cimguiname": "igIsNamedKeyOrMod", "defaults": {}, "funcname": "IsNamedKeyOrMod", - "location": "imgui_internal:3547", + "location": "imgui_internal:3556", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKeyOrMod", "ret": "bool", @@ -27974,7 +28024,7 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui:789", + "location": "imgui:793", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_Str", "ret": "bool", @@ -27998,7 +28048,7 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", - "location": "imgui_internal:3497", + "location": "imgui_internal:3506", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_ID", "ret": "bool", @@ -28020,7 +28070,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:964", + "location": "imgui:968", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Nil", "ret": "bool", @@ -28044,7 +28094,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:965", + "location": "imgui:969", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Vec2", "ret": "bool", @@ -28070,7 +28120,7 @@ "cimguiname": "igIsWindowAbove", "defaults": {}, "funcname": "IsWindowAbove", - "location": "imgui_internal:3357", + "location": "imgui_internal:3366", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAbove", "ret": "bool", @@ -28087,7 +28137,7 @@ "cimguiname": "igIsWindowAppearing", "defaults": {}, "funcname": "IsWindowAppearing", - "location": "imgui:396", + "location": "imgui:398", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -28121,7 +28171,7 @@ "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", - "location": "imgui_internal:3355", + "location": "imgui_internal:3364", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -28138,7 +28188,7 @@ "cimguiname": "igIsWindowCollapsed", "defaults": {}, "funcname": "IsWindowCollapsed", - "location": "imgui:397", + "location": "imgui:399", "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -28166,7 +28216,7 @@ "flags": "0" }, "funcname": "IsWindowContentHoverable", - "location": "imgui_internal:3469", + "location": "imgui_internal:3478", "namespace": "ImGui", "ov_cimguiname": "igIsWindowContentHoverable", "ret": "bool", @@ -28183,7 +28233,7 @@ "cimguiname": "igIsWindowDocked", "defaults": {}, "funcname": "IsWindowDocked", - "location": "imgui:886", + "location": "imgui:890", "namespace": "ImGui", "ov_cimguiname": "igIsWindowDocked", "ret": "bool", @@ -28207,7 +28257,7 @@ "flags": "0" }, "funcname": "IsWindowFocused", - "location": "imgui:398", + "location": "imgui:400", "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -28231,7 +28281,7 @@ "flags": "0" }, "funcname": "IsWindowHovered", - "location": "imgui:399", + "location": "imgui:401", "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -28253,7 +28303,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", - "location": "imgui_internal:3358", + "location": "imgui_internal:3367", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -28279,7 +28329,7 @@ "cimguiname": "igIsWindowWithinBeginStackOf", "defaults": {}, "funcname": "IsWindowWithinBeginStackOf", - "location": "imgui_internal:3356", + "location": "imgui_internal:3365", "namespace": "ImGui", "ov_cimguiname": "igIsWindowWithinBeginStackOf", "ret": "bool", @@ -28316,7 +28366,7 @@ "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "imgui_internal:3467", + "location": "imgui_internal:3476", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -28346,7 +28396,7 @@ "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", - "location": "imgui_internal:3468", + "location": "imgui_internal:3477", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", @@ -28374,7 +28424,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3465", + "location": "imgui_internal:3474", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Vec2", "ret": "void", @@ -28400,7 +28450,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3466", + "location": "imgui_internal:3475", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Rect", "ret": "void", @@ -28422,7 +28472,7 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", - "location": "imgui_internal:3458", + "location": "imgui_internal:3467", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -28453,7 +28503,7 @@ "defaults": {}, "funcname": "LabelText", "isvararg": "...)", - "location": "imgui:541", + "location": "imgui:545", "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -28483,7 +28533,7 @@ "cimguiname": "igLabelTextV", "defaults": {}, "funcname": "LabelTextV", - "location": "imgui:542", + "location": "imgui:546", "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -28523,7 +28573,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:701", + "location": "imgui:705", "namespace": "ImGui", "ov_cimguiname": "igListBox_Str_arr", "ret": "bool", @@ -28567,7 +28617,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:702", + "location": "imgui:706", "namespace": "ImGui", "ov_cimguiname": "igListBox_FnStrPtr", "ret": "bool", @@ -28589,7 +28639,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:1051", + "location": "imgui:1055", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -28617,7 +28667,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:1052", + "location": "imgui:1056", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -28639,7 +28689,7 @@ "cimguiname": "igLocalizeGetMsg", "defaults": {}, "funcname": "LocalizeGetMsg", - "location": "imgui_internal:3432", + "location": "imgui_internal:3441", "namespace": "ImGui", "ov_cimguiname": "igLocalizeGetMsg", "ret": "const char*", @@ -28665,7 +28715,7 @@ "cimguiname": "igLocalizeRegisterEntries", "defaults": {}, "funcname": "LocalizeRegisterEntries", - "location": "imgui_internal:3431", + "location": "imgui_internal:3440", "namespace": "ImGui", "ov_cimguiname": "igLocalizeRegisterEntries", "ret": "void", @@ -28691,7 +28741,7 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", - "location": "imgui_internal:3483", + "location": "imgui_internal:3492", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -28708,7 +28758,7 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", - "location": "imgui:894", + "location": "imgui:898", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -28725,7 +28775,7 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", - "location": "imgui:893", + "location": "imgui:897", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -28757,7 +28807,7 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "imgui_internal:3485", + "location": "imgui_internal:3494", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -28783,7 +28833,7 @@ "cimguiname": "igLogSetNextTextDecoration", "defaults": {}, "funcname": "LogSetNextTextDecoration", - "location": "imgui_internal:3486", + "location": "imgui_internal:3495", "namespace": "ImGui", "ov_cimguiname": "igLogSetNextTextDecoration", "ret": "void", @@ -28810,7 +28860,7 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui:895", + "location": "imgui:899", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -28837,7 +28887,7 @@ "cimguiname": "igLogTextV", "defaults": {}, "funcname": "LogTextV", - "location": "imgui:896", + "location": "imgui:900", "namespace": "ImGui", "ov_cimguiname": "igLogTextV", "ret": "void", @@ -28861,7 +28911,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "imgui_internal:3484", + "location": "imgui_internal:3493", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -28885,7 +28935,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui:892", + "location": "imgui:896", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -28914,7 +28964,7 @@ "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui:891", + "location": "imgui:895", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -28938,7 +28988,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui:890", + "location": "imgui:894", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -28955,7 +29005,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3417", + "location": "imgui_internal:3426", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_Nil", "ret": "void", @@ -28975,7 +29025,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3418", + "location": "imgui_internal:3427", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_WindowPtr", "ret": "void", @@ -28997,7 +29047,7 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", - "location": "imgui_internal:3459", + "location": "imgui_internal:3468", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -29019,7 +29069,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:1073", + "location": "imgui:1077", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -29041,7 +29091,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:1074", + "location": "imgui:1078", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -29079,7 +29129,7 @@ "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui:729", + "location": "imgui:733", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_Bool", "ret": "bool", @@ -29113,7 +29163,7 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui:730", + "location": "imgui:734", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_BoolPtr", "ret": "bool", @@ -29155,7 +29205,7 @@ "shortcut": "NULL" }, "funcname": "MenuItemEx", - "location": "imgui_internal:3512", + "location": "imgui_internal:3521", "namespace": "ImGui", "ov_cimguiname": "igMenuItemEx", "ret": "bool", @@ -29177,7 +29227,7 @@ "cimguiname": "igMouseButtonToKey", "defaults": {}, "funcname": "MouseButtonToKey", - "location": "imgui_internal:3567", + "location": "imgui_internal:3576", "namespace": "ImGui", "ov_cimguiname": "igMouseButtonToKey", "ret": "ImGuiKey", @@ -29203,7 +29253,7 @@ "cimguiname": "igMultiSelectAddSetAll", "defaults": {}, "funcname": "MultiSelectAddSetAll", - "location": "imgui_internal:3716", + "location": "imgui_internal:3725", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectAddSetAll", "ret": "void", @@ -29241,7 +29291,7 @@ "cimguiname": "igMultiSelectAddSetRange", "defaults": {}, "funcname": "MultiSelectAddSetRange", - "location": "imgui_internal:3717", + "location": "imgui_internal:3726", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectAddSetRange", "ret": "void", @@ -29271,7 +29321,7 @@ "cimguiname": "igMultiSelectItemFooter", "defaults": {}, "funcname": "MultiSelectItemFooter", - "location": "imgui_internal:3715", + "location": "imgui_internal:3724", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectItemFooter", "ret": "void", @@ -29301,7 +29351,7 @@ "cimguiname": "igMultiSelectItemHeader", "defaults": {}, "funcname": "MultiSelectItemHeader", - "location": "imgui_internal:3714", + "location": "imgui_internal:3723", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectItemHeader", "ret": "void", @@ -29323,7 +29373,7 @@ "cimguiname": "igNavClearPreferredPosForAxis", "defaults": {}, "funcname": "NavClearPreferredPosForAxis", - "location": "imgui_internal:3531", + "location": "imgui_internal:3540", "namespace": "ImGui", "ov_cimguiname": "igNavClearPreferredPosForAxis", "ret": "void", @@ -29345,7 +29395,7 @@ "cimguiname": "igNavHighlightActivated", "defaults": {}, "funcname": "NavHighlightActivated", - "location": "imgui_internal:3530", + "location": "imgui_internal:3539", "namespace": "ImGui", "ov_cimguiname": "igNavHighlightActivated", "ret": "void", @@ -29362,7 +29412,7 @@ "cimguiname": "igNavInitRequestApplyResult", "defaults": {}, "funcname": "NavInitRequestApplyResult", - "location": "imgui_internal:3521", + "location": "imgui_internal:3530", "namespace": "ImGui", "ov_cimguiname": "igNavInitRequestApplyResult", "ret": "void", @@ -29388,7 +29438,7 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", - "location": "imgui_internal:3520", + "location": "imgui_internal:3529", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -29405,7 +29455,7 @@ "cimguiname": "igNavMoveRequestApplyResult", "defaults": {}, "funcname": "NavMoveRequestApplyResult", - "location": "imgui_internal:3528", + "location": "imgui_internal:3537", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestApplyResult", "ret": "void", @@ -29422,7 +29472,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", - "location": "imgui_internal:3522", + "location": "imgui_internal:3531", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -29439,7 +29489,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", - "location": "imgui_internal:3527", + "location": "imgui_internal:3536", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -29473,7 +29523,7 @@ "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", - "location": "imgui_internal:3524", + "location": "imgui_internal:3533", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -29495,7 +29545,7 @@ "cimguiname": "igNavMoveRequestResolveWithLastItem", "defaults": {}, "funcname": "NavMoveRequestResolveWithLastItem", - "location": "imgui_internal:3525", + "location": "imgui_internal:3534", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithLastItem", "ret": "void", @@ -29521,7 +29571,7 @@ "cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "defaults": {}, "funcname": "NavMoveRequestResolveWithPastTreeNode", - "location": "imgui_internal:3526", + "location": "imgui_internal:3535", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "ret": "void", @@ -29555,7 +29605,7 @@ "cimguiname": "igNavMoveRequestSubmit", "defaults": {}, "funcname": "NavMoveRequestSubmit", - "location": "imgui_internal:3523", + "location": "imgui_internal:3532", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestSubmit", "ret": "void", @@ -29581,7 +29631,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", - "location": "imgui_internal:3529", + "location": "imgui_internal:3538", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -29598,7 +29648,7 @@ "cimguiname": "igNavRestoreHighlightAfterMove", "defaults": {}, "funcname": "NavRestoreHighlightAfterMove", - "location": "imgui_internal:3532", + "location": "imgui_internal:3541", "namespace": "ImGui", "ov_cimguiname": "igNavRestoreHighlightAfterMove", "ret": "void", @@ -29615,7 +29665,7 @@ "cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "defaults": {}, "funcname": "NavUpdateCurrentWindowIsScrollPushableX", - "location": "imgui_internal:3533", + "location": "imgui_internal:3542", "namespace": "ImGui", "ov_cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "ret": "void", @@ -29632,7 +29682,7 @@ "cimguiname": "igNewFrame", "defaults": {}, "funcname": "NewFrame", - "location": "imgui:335", + "location": "imgui:337", "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -29649,7 +29699,7 @@ "cimguiname": "igNewLine", "defaults": {}, "funcname": "NewLine", - "location": "imgui:497", + "location": "imgui:501", "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -29666,7 +29716,7 @@ "cimguiname": "igNextColumn", "defaults": {}, "funcname": "NextColumn", - "location": "imgui:851", + "location": "imgui:855", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -29694,7 +29744,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:771", + "location": "imgui:775", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_Str", "ret": "void", @@ -29720,7 +29770,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:772", + "location": "imgui:776", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_ID", "ret": "void", @@ -29748,7 +29798,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "imgui_internal:3493", + "location": "imgui_internal:3502", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -29777,7 +29827,7 @@ "str_id": "NULL" }, "funcname": "OpenPopupOnItemClick", - "location": "imgui:773", + "location": "imgui:777", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "void", @@ -29837,7 +29887,7 @@ "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", - "location": "imgui_internal:3902", + "location": "imgui_internal:3911", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", @@ -29898,7 +29948,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:708", + "location": "imgui:712", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FloatPtr", "ret": "void", @@ -29958,7 +30008,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:709", + "location": "imgui:713", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FnFloatPtr", "ret": "void", @@ -30019,7 +30069,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:706", + "location": "imgui:710", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FloatPtr", "ret": "void", @@ -30079,7 +30129,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:707", + "location": "imgui:711", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FnFloatPtr", "ret": "void", @@ -30096,7 +30146,7 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:922", + "location": "imgui:926", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -30113,7 +30163,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", - "location": "imgui_internal:3727", + "location": "imgui_internal:3736", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -30130,7 +30180,7 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", - "location": "imgui_internal:3693", + "location": "imgui_internal:3702", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -30147,7 +30197,7 @@ "cimguiname": "igPopFont", "defaults": {}, "funcname": "PopFont", - "location": "imgui:445", + "location": "imgui:447", "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -30164,7 +30214,7 @@ "cimguiname": "igPopID", "defaults": {}, "funcname": "PopID", - "location": "imgui:525", + "location": "imgui:529", "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -30181,7 +30231,7 @@ "cimguiname": "igPopItemFlag", "defaults": {}, "funcname": "PopItemFlag", - "location": "imgui:453", + "location": "imgui:457", "namespace": "ImGui", "ov_cimguiname": "igPopItemFlag", "ret": "void", @@ -30198,7 +30248,7 @@ "cimguiname": "igPopItemWidth", "defaults": {}, "funcname": "PopItemWidth", - "location": "imgui:457", + "location": "imgui:461", "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -30222,7 +30272,7 @@ "count": "1" }, "funcname": "PopStyleColor", - "location": "imgui:448", + "location": "imgui:450", "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -30246,7 +30296,7 @@ "count": "1" }, "funcname": "PopStyleVar", - "location": "imgui:451", + "location": "imgui:455", "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -30263,7 +30313,7 @@ "cimguiname": "igPopTextWrapPos", "defaults": {}, "funcname": "PopTextWrapPos", - "location": "imgui:461", + "location": "imgui:465", "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -30296,7 +30346,7 @@ "size_arg": "ImVec2(-FLT_MIN,0)" }, "funcname": "ProgressBar", - "location": "imgui:559", + "location": "imgui:563", "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -30326,7 +30376,7 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", - "location": "imgui:921", + "location": "imgui:925", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -30348,7 +30398,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", - "location": "imgui_internal:3725", + "location": "imgui_internal:3734", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -30365,7 +30415,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", - "location": "imgui_internal:3726", + "location": "imgui_internal:3735", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -30387,7 +30437,7 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", - "location": "imgui_internal:3692", + "location": "imgui_internal:3701", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -30409,7 +30459,7 @@ "cimguiname": "igPushFont", "defaults": {}, "funcname": "PushFont", - "location": "imgui:444", + "location": "imgui:446", "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -30431,7 +30481,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:521", + "location": "imgui:525", "namespace": "ImGui", "ov_cimguiname": "igPushID_Str", "ret": "void", @@ -30455,7 +30505,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:522", + "location": "imgui:526", "namespace": "ImGui", "ov_cimguiname": "igPushID_StrStr", "ret": "void", @@ -30475,7 +30525,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:523", + "location": "imgui:527", "namespace": "ImGui", "ov_cimguiname": "igPushID_Ptr", "ret": "void", @@ -30495,7 +30545,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:524", + "location": "imgui:528", "namespace": "ImGui", "ov_cimguiname": "igPushID_Int", "ret": "void", @@ -30521,7 +30571,7 @@ "cimguiname": "igPushItemFlag", "defaults": {}, "funcname": "PushItemFlag", - "location": "imgui:452", + "location": "imgui:456", "namespace": "ImGui", "ov_cimguiname": "igPushItemFlag", "ret": "void", @@ -30543,7 +30593,7 @@ "cimguiname": "igPushItemWidth", "defaults": {}, "funcname": "PushItemWidth", - "location": "imgui:456", + "location": "imgui:460", "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -30569,7 +30619,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", - "location": "imgui_internal:3474", + "location": "imgui_internal:3483", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -30591,7 +30641,7 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", - "location": "imgui_internal:3460", + "location": "imgui_internal:3469", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -30617,7 +30667,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:446", + "location": "imgui:448", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_U32", "ret": "void", @@ -30641,7 +30691,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:447", + "location": "imgui:449", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_Vec4", "ret": "void", @@ -30667,7 +30717,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:449", + "location": "imgui:451", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Float", "ret": "void", @@ -30691,7 +30741,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:450", + "location": "imgui:452", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Vec2", "ret": "void", @@ -30699,6 +30749,58 @@ "stname": "" } ], + "igPushStyleVarX": [ + { + "args": "(ImGuiStyleVar idx,float val_x)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + }, + { + "name": "val_x", + "type": "float" + } + ], + "argsoriginal": "(ImGuiStyleVar idx,float val_x)", + "call_args": "(idx,val_x)", + "cimguiname": "igPushStyleVarX", + "defaults": {}, + "funcname": "PushStyleVarX", + "location": "imgui:453", + "namespace": "ImGui", + "ov_cimguiname": "igPushStyleVarX", + "ret": "void", + "signature": "(ImGuiStyleVar,float)", + "stname": "" + } + ], + "igPushStyleVarY": [ + { + "args": "(ImGuiStyleVar idx,float val_y)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + }, + { + "name": "val_y", + "type": "float" + } + ], + "argsoriginal": "(ImGuiStyleVar idx,float val_y)", + "call_args": "(idx,val_y)", + "cimguiname": "igPushStyleVarY", + "defaults": {}, + "funcname": "PushStyleVarY", + "location": "imgui:454", + "namespace": "ImGui", + "ov_cimguiname": "igPushStyleVarY", + "ret": "void", + "signature": "(ImGuiStyleVar,float)", + "stname": "" + } + ], "igPushTextWrapPos": [ { "args": "(float wrap_local_pos_x)", @@ -30715,7 +30817,7 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", - "location": "imgui:460", + "location": "imgui:464", "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -30741,7 +30843,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:557", + "location": "imgui:561", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_Bool", "ret": "bool", @@ -30769,7 +30871,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:558", + "location": "imgui:562", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_IntPtr", "ret": "bool", @@ -30795,7 +30897,7 @@ "cimguiname": "igRemoveContextHook", "defaults": {}, "funcname": "RemoveContextHook", - "location": "imgui_internal:3404", + "location": "imgui_internal:3413", "namespace": "ImGui", "ov_cimguiname": "igRemoveContextHook", "ret": "void", @@ -30817,7 +30919,7 @@ "cimguiname": "igRemoveSettingsHandler", "defaults": {}, "funcname": "RemoveSettingsHandler", - "location": "imgui_internal:3421", + "location": "imgui_internal:3430", "namespace": "ImGui", "ov_cimguiname": "igRemoveSettingsHandler", "ret": "void", @@ -30834,7 +30936,7 @@ "cimguiname": "igRender", "defaults": {}, "funcname": "Render", - "location": "imgui:337", + "location": "imgui:339", "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -30874,7 +30976,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "imgui_internal:3827", + "location": "imgui_internal:3836", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -30908,7 +31010,7 @@ "cimguiname": "igRenderArrowDockMenu", "defaults": {}, "funcname": "RenderArrowDockMenu", - "location": "imgui_internal:3831", + "location": "imgui_internal:3840", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowDockMenu", "ret": "void", @@ -30946,7 +31048,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", - "location": "imgui_internal:3830", + "location": "imgui_internal:3839", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -30976,7 +31078,7 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", - "location": "imgui_internal:3828", + "location": "imgui_internal:3837", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -31010,7 +31112,7 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", - "location": "imgui_internal:3829", + "location": "imgui_internal:3838", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -31063,7 +31165,7 @@ "rounding": "0.0f" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "imgui_internal:3821", + "location": "imgui_internal:3830", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -31089,7 +31191,7 @@ "cimguiname": "igRenderDragDropTargetRect", "defaults": {}, "funcname": "RenderDragDropTargetRect", - "location": "imgui_internal:3701", + "location": "imgui_internal:3710", "namespace": "ImGui", "ov_cimguiname": "igRenderDragDropTargetRect", "ret": "void", @@ -31099,7 +31201,7 @@ ], "igRenderFrame": [ { - "args": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding)", + "args": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding)", "argsT": [ { "name": "p_min", @@ -31114,7 +31216,7 @@ "type": "ImU32" }, { - "name": "border", + "name": "borders", "type": "bool" }, { @@ -31122,15 +31224,15 @@ "type": "float" } ], - "argsoriginal": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border=true,float rounding=0.0f)", - "call_args": "(p_min,p_max,fill_col,border,rounding)", + "argsoriginal": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders=true,float rounding=0.0f)", + "call_args": "(p_min,p_max,fill_col,borders,rounding)", "cimguiname": "igRenderFrame", "defaults": { - "border": "true", + "borders": "true", "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "imgui_internal:3819", + "location": "imgui_internal:3828", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -31162,7 +31264,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "imgui_internal:3820", + "location": "imgui_internal:3829", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -31204,7 +31306,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", - "location": "imgui_internal:3824", + "location": "imgui_internal:3833", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -31236,7 +31338,7 @@ "flags": "ImGuiNavHighlightFlags_None" }, "funcname": "RenderNavHighlight", - "location": "imgui_internal:3822", + "location": "imgui_internal:3831", "namespace": "ImGui", "ov_cimguiname": "igRenderNavHighlight", "ret": "void", @@ -31265,7 +31367,7 @@ "renderer_render_arg": "NULL" }, "funcname": "RenderPlatformWindowsDefault", - "location": "imgui:1081", + "location": "imgui:1084", "namespace": "ImGui", "ov_cimguiname": "igRenderPlatformWindowsDefault", "ret": "void", @@ -31307,7 +31409,7 @@ "cimguiname": "igRenderRectFilledRangeH", "defaults": {}, "funcname": "RenderRectFilledRangeH", - "location": "imgui_internal:3832", + "location": "imgui_internal:3841", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledRangeH", "ret": "void", @@ -31345,7 +31447,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", - "location": "imgui_internal:3833", + "location": "imgui_internal:3842", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -31382,7 +31484,7 @@ "text_end": "NULL" }, "funcname": "RenderText", - "location": "imgui_internal:3814", + "location": "imgui_internal:3823", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -31431,7 +31533,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "imgui_internal:3816", + "location": "imgui_internal:3825", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -31484,7 +31586,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "imgui_internal:3817", + "location": "imgui_internal:3826", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -31534,7 +31636,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", - "location": "imgui_internal:3818", + "location": "imgui_internal:3827", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -31568,7 +31670,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", - "location": "imgui_internal:3815", + "location": "imgui_internal:3824", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -31592,7 +31694,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:1037", + "location": "imgui:1041", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -31621,7 +31723,7 @@ "spacing": "-1.0f" }, "funcname": "SameLine", - "location": "imgui:496", + "location": "imgui:500", "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -31643,7 +31745,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:1053", + "location": "imgui:1057", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -31667,7 +31769,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:1054", + "location": "imgui:1058", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -31693,7 +31795,7 @@ "cimguiname": "igScaleWindowsInViewport", "defaults": {}, "funcname": "ScaleWindowsInViewport", - "location": "imgui_internal:3409", + "location": "imgui_internal:3418", "namespace": "ImGui", "ov_cimguiname": "igScaleWindowsInViewport", "ret": "void", @@ -31719,7 +31821,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", - "location": "imgui_internal:3445", + "location": "imgui_internal:3454", "namespace": "ImGui", "ov_cimguiname": "igScrollToBringRectIntoView", "ret": "void", @@ -31743,7 +31845,7 @@ "flags": "0" }, "funcname": "ScrollToItem", - "location": "imgui_internal:3441", + "location": "imgui_internal:3450", "namespace": "ImGui", "ov_cimguiname": "igScrollToItem", "ret": "void", @@ -31775,7 +31877,7 @@ "flags": "0" }, "funcname": "ScrollToRect", - "location": "imgui_internal:3442", + "location": "imgui_internal:3451", "namespace": "ImGui", "ov_cimguiname": "igScrollToRect", "ret": "void", @@ -31811,7 +31913,7 @@ "flags": "0" }, "funcname": "ScrollToRectEx", - "location": "imgui_internal:3443", + "location": "imgui_internal:3452", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToRectEx", @@ -31834,7 +31936,7 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", - "location": "imgui_internal:3849", + "location": "imgui_internal:3858", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -31880,7 +31982,7 @@ "cimguiname": "igScrollbarEx", "defaults": {}, "funcname": "ScrollbarEx", - "location": "imgui_internal:3850", + "location": "imgui_internal:3859", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -31918,7 +32020,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:678", + "location": "imgui:682", "namespace": "ImGui", "ov_cimguiname": "igSelectable_Bool", "ret": "bool", @@ -31953,7 +32055,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:679", + "location": "imgui:683", "namespace": "ImGui", "ov_cimguiname": "igSelectable_BoolPtr", "ret": "bool", @@ -31970,7 +32072,7 @@ "cimguiname": "igSeparator", "defaults": {}, "funcname": "Separator", - "location": "imgui:495", + "location": "imgui:499", "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -31998,7 +32100,7 @@ "thickness": "1.0f" }, "funcname": "SeparatorEx", - "location": "imgui_internal:3841", + "location": "imgui_internal:3850", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", @@ -32020,7 +32122,7 @@ "cimguiname": "igSeparatorText", "defaults": {}, "funcname": "SeparatorText", - "location": "imgui:545", + "location": "imgui:549", "namespace": "ImGui", "ov_cimguiname": "igSeparatorText", "ret": "void", @@ -32054,7 +32156,7 @@ "cimguiname": "igSeparatorTextEx", "defaults": {}, "funcname": "SeparatorTextEx", - "location": "imgui_internal:3842", + "location": "imgui_internal:3851", "namespace": "ImGui", "ov_cimguiname": "igSeparatorTextEx", "ret": "void", @@ -32080,7 +32182,7 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", - "location": "imgui_internal:3453", + "location": "imgui_internal:3462", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -32097,7 +32199,7 @@ "cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "defaults": {}, "funcname": "SetActiveIdUsingAllKeyboardKeys", - "location": "imgui_internal:3574", + "location": "imgui_internal:3583", "namespace": "ImGui", "ov_cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "ret": "void", @@ -32129,7 +32231,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:1071", + "location": "imgui:1075", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -32151,7 +32253,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:1045", + "location": "imgui:1049", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -32173,7 +32275,7 @@ "cimguiname": "igSetColorEditOptions", "defaults": {}, "funcname": "SetColorEditOptions", - "location": "imgui:652", + "location": "imgui:656", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -32199,7 +32301,7 @@ "cimguiname": "igSetColumnOffset", "defaults": {}, "funcname": "SetColumnOffset", - "location": "imgui:856", + "location": "imgui:860", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -32225,7 +32327,7 @@ "cimguiname": "igSetColumnWidth", "defaults": {}, "funcname": "SetColumnWidth", - "location": "imgui:854", + "location": "imgui:858", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -32247,7 +32349,7 @@ "cimguiname": "igSetCurrentContext", "defaults": {}, "funcname": "SetCurrentContext", - "location": "imgui:330", + "location": "imgui:331", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -32269,7 +32371,7 @@ "cimguiname": "igSetCurrentFont", "defaults": {}, "funcname": "SetCurrentFont", - "location": "imgui_internal:3384", + "location": "imgui_internal:3393", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -32295,7 +32397,7 @@ "cimguiname": "igSetCurrentViewport", "defaults": {}, "funcname": "SetCurrentViewport", - "location": "imgui_internal:3412", + "location": "imgui_internal:3421", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentViewport", "ret": "void", @@ -32317,7 +32419,7 @@ "cimguiname": "igSetCursorPos", "defaults": {}, "funcname": "SetCursorPos", - "location": "imgui:489", + "location": "imgui:493", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -32339,7 +32441,7 @@ "cimguiname": "igSetCursorPosX", "defaults": {}, "funcname": "SetCursorPosX", - "location": "imgui:490", + "location": "imgui:494", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -32361,7 +32463,7 @@ "cimguiname": "igSetCursorPosY", "defaults": {}, "funcname": "SetCursorPosY", - "location": "imgui:491", + "location": "imgui:495", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -32383,7 +32485,7 @@ "cimguiname": "igSetCursorScreenPos", "defaults": {}, "funcname": "SetCursorScreenPos", - "location": "imgui:484", + "location": "imgui:488", "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -32419,7 +32521,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui:904", + "location": "imgui:908", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -32445,7 +32547,7 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", - "location": "imgui_internal:3454", + "location": "imgui_internal:3463", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -32467,7 +32569,7 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", - "location": "imgui_internal:3457", + "location": "imgui_internal:3466", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -32484,7 +32586,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui:926", + "location": "imgui:930", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -32506,7 +32608,7 @@ "cimguiname": "igSetItemKeyOwner", "defaults": {}, "funcname": "SetItemKeyOwner", - "location": "imgui:1019", + "location": "imgui:1023", "namespace": "ImGui", "ov_cimguiname": "igSetItemKeyOwner_Nil", "ret": "void", @@ -32530,7 +32632,7 @@ "cimguiname": "igSetItemKeyOwner", "defaults": {}, "funcname": "SetItemKeyOwner", - "location": "imgui_internal:3591", + "location": "imgui_internal:3600", "namespace": "ImGui", "ov_cimguiname": "igSetItemKeyOwner_InputFlags", "ret": "void", @@ -32557,7 +32659,7 @@ "defaults": {}, "funcname": "SetItemTooltip", "isvararg": "...)", - "location": "imgui:746", + "location": "imgui:750", "namespace": "ImGui", "ov_cimguiname": "igSetItemTooltip", "ret": "void", @@ -32583,7 +32685,7 @@ "cimguiname": "igSetItemTooltipV", "defaults": {}, "funcname": "SetItemTooltipV", - "location": "imgui:747", + "location": "imgui:751", "namespace": "ImGui", "ov_cimguiname": "igSetItemTooltipV", "ret": "void", @@ -32615,7 +32717,7 @@ "flags": "0" }, "funcname": "SetKeyOwner", - "location": "imgui_internal:3589", + "location": "imgui_internal:3598", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwner", "ret": "void", @@ -32647,7 +32749,7 @@ "flags": "0" }, "funcname": "SetKeyOwnersForKeyChord", - "location": "imgui_internal:3590", + "location": "imgui_internal:3599", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwnersForKeyChord", "ret": "void", @@ -32671,7 +32773,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui:927", + "location": "imgui:931", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -32705,7 +32807,7 @@ "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", - "location": "imgui_internal:3471", + "location": "imgui_internal:3480", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -32727,7 +32829,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:1039", + "location": "imgui:1043", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -32749,7 +32851,7 @@ "cimguiname": "igSetNavFocusScope", "defaults": {}, "funcname": "SetNavFocusScope", - "location": "imgui_internal:3536", + "location": "imgui_internal:3545", "namespace": "ImGui", "ov_cimguiname": "igSetNavFocusScope", "ret": "void", @@ -32783,7 +32885,7 @@ "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", - "location": "imgui_internal:3535", + "location": "imgui_internal:3544", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -32805,7 +32907,7 @@ "cimguiname": "igSetNavWindow", "defaults": {}, "funcname": "SetNavWindow", - "location": "imgui_internal:3534", + "location": "imgui_internal:3543", "namespace": "ImGui", "ov_cimguiname": "igSetNavWindow", "ret": "void", @@ -32827,7 +32929,7 @@ "cimguiname": "igSetNextFrameWantCaptureKeyboard", "defaults": {}, "funcname": "SetNextFrameWantCaptureKeyboard", - "location": "imgui:993", + "location": "imgui:997", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureKeyboard", "ret": "void", @@ -32849,7 +32951,7 @@ "cimguiname": "igSetNextFrameWantCaptureMouse", "defaults": {}, "funcname": "SetNextFrameWantCaptureMouse", - "location": "imgui:1040", + "location": "imgui:1044", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureMouse", "ret": "void", @@ -32866,7 +32968,7 @@ "cimguiname": "igSetNextItemAllowOverlap", "defaults": {}, "funcname": "SetNextItemAllowOverlap", - "location": "imgui:930", + "location": "imgui:934", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemAllowOverlap", "ret": "void", @@ -32894,7 +32996,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui:672", + "location": "imgui:676", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -32920,7 +33022,7 @@ "cimguiname": "igSetNextItemRefVal", "defaults": {}, "funcname": "SetNextItemRefVal", - "location": "imgui_internal:3894", + "location": "imgui_internal:3903", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemRefVal", "ret": "void", @@ -32942,7 +33044,7 @@ "cimguiname": "igSetNextItemSelectionUserData", "defaults": {}, "funcname": "SetNextItemSelectionUserData", - "location": "imgui:690", + "location": "imgui:694", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemSelectionUserData", "ret": "void", @@ -32970,7 +33072,7 @@ "flags": "0" }, "funcname": "SetNextItemShortcut", - "location": "imgui:1011", + "location": "imgui:1015", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemShortcut", "ret": "void", @@ -32992,7 +33094,7 @@ "cimguiname": "igSetNextItemStorageID", "defaults": {}, "funcname": "SetNextItemStorageID", - "location": "imgui:673", + "location": "imgui:677", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemStorageID", "ret": "void", @@ -33014,7 +33116,7 @@ "cimguiname": "igSetNextItemWidth", "defaults": {}, "funcname": "SetNextItemWidth", - "location": "imgui:458", + "location": "imgui:462", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -33036,7 +33138,7 @@ "cimguiname": "igSetNextWindowBgAlpha", "defaults": {}, "funcname": "SetNextWindowBgAlpha", - "location": "imgui:417", + "location": "imgui:419", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -33058,7 +33160,7 @@ "cimguiname": "igSetNextWindowClass", "defaults": {}, "funcname": "SetNextWindowClass", - "location": "imgui:884", + "location": "imgui:888", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowClass", "ret": "void", @@ -33086,7 +33188,7 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", - "location": "imgui:414", + "location": "imgui:416", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -33108,7 +33210,7 @@ "cimguiname": "igSetNextWindowContentSize", "defaults": {}, "funcname": "SetNextWindowContentSize", - "location": "imgui:413", + "location": "imgui:415", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -33136,7 +33238,7 @@ "cond": "0" }, "funcname": "SetNextWindowDockID", - "location": "imgui:883", + "location": "imgui:887", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowDockID", "ret": "void", @@ -33153,7 +33255,7 @@ "cimguiname": "igSetNextWindowFocus", "defaults": {}, "funcname": "SetNextWindowFocus", - "location": "imgui:415", + "location": "imgui:417", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -33186,7 +33288,7 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", - "location": "imgui:410", + "location": "imgui:412", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -33208,7 +33310,7 @@ "cimguiname": "igSetNextWindowRefreshPolicy", "defaults": {}, "funcname": "SetNextWindowRefreshPolicy", - "location": "imgui_internal:3381", + "location": "imgui_internal:3390", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowRefreshPolicy", "ret": "void", @@ -33230,7 +33332,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", - "location": "imgui:416", + "location": "imgui:418", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -33258,7 +33360,7 @@ "cond": "0" }, "funcname": "SetNextWindowSize", - "location": "imgui:411", + "location": "imgui:413", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -33295,7 +33397,7 @@ "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", - "location": "imgui:412", + "location": "imgui:414", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -33317,7 +33419,7 @@ "cimguiname": "igSetNextWindowViewport", "defaults": {}, "funcname": "SetNextWindowViewport", - "location": "imgui:418", + "location": "imgui:420", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowViewport", "ret": "void", @@ -33345,7 +33447,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "imgui:440", + "location": "imgui:442", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_Float", "ret": "void", @@ -33373,7 +33475,7 @@ "cimguiname": "igSetScrollFromPosX", "defaults": {}, "funcname": "SetScrollFromPosX", - "location": "imgui_internal:3437", + "location": "imgui_internal:3446", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_WindowPtr", "ret": "void", @@ -33401,7 +33503,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "imgui:441", + "location": "imgui:443", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_Float", "ret": "void", @@ -33429,7 +33531,7 @@ "cimguiname": "igSetScrollFromPosY", "defaults": {}, "funcname": "SetScrollFromPosY", - "location": "imgui_internal:3438", + "location": "imgui_internal:3447", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_WindowPtr", "ret": "void", @@ -33453,7 +33555,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", - "location": "imgui:438", + "location": "imgui:440", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -33477,7 +33579,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", - "location": "imgui:439", + "location": "imgui:441", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -33499,7 +33601,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui:434", + "location": "imgui:436", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_Float", "ret": "void", @@ -33523,7 +33625,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui_internal:3435", + "location": "imgui_internal:3444", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_WindowPtr", "ret": "void", @@ -33545,7 +33647,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui:435", + "location": "imgui:437", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_Float", "ret": "void", @@ -33569,7 +33671,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui_internal:3436", + "location": "imgui_internal:3445", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_WindowPtr", "ret": "void", @@ -33599,7 +33701,7 @@ "cimguiname": "igSetShortcutRouting", "defaults": {}, "funcname": "SetShortcutRouting", - "location": "imgui_internal:3625", + "location": "imgui_internal:3634", "namespace": "ImGui", "ov_cimguiname": "igSetShortcutRouting", "ret": "bool", @@ -33621,7 +33723,7 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui:970", + "location": "imgui:974", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -33643,7 +33745,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui:866", + "location": "imgui:870", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -33670,7 +33772,7 @@ "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui:738", + "location": "imgui:742", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -33696,7 +33798,7 @@ "cimguiname": "igSetTooltipV", "defaults": {}, "funcname": "SetTooltipV", - "location": "imgui:739", + "location": "imgui:743", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -33722,7 +33824,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "imgui_internal:3722", + "location": "imgui_internal:3731", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -33750,7 +33852,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:421", + "location": "imgui:423", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Bool", "ret": "void", @@ -33780,7 +33882,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:426", + "location": "imgui:428", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Str", "ret": "void", @@ -33810,7 +33912,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui_internal:3361", + "location": "imgui_internal:3370", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_WindowPtr", "ret": "void", @@ -33840,7 +33942,7 @@ "cimguiname": "igSetWindowDock", "defaults": {}, "funcname": "SetWindowDock", - "location": "imgui_internal:3658", + "location": "imgui_internal:3667", "namespace": "ImGui", "ov_cimguiname": "igSetWindowDock", "ret": "void", @@ -33857,7 +33959,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:422", + "location": "imgui:424", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Nil", "ret": "void", @@ -33877,7 +33979,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:427", + "location": "imgui:429", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Str", "ret": "void", @@ -33899,7 +34001,7 @@ "cimguiname": "igSetWindowFontScale", "defaults": {}, "funcname": "SetWindowFontScale", - "location": "imgui:423", + "location": "imgui:425", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFontScale", "ret": "void", @@ -33921,7 +34023,7 @@ "cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "defaults": {}, "funcname": "SetWindowHiddenAndSkipItemsForCurrentFrame", - "location": "imgui_internal:3363", + "location": "imgui_internal:3372", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "ret": "void", @@ -33951,7 +34053,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", - "location": "imgui_internal:3362", + "location": "imgui_internal:3371", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -33977,7 +34079,7 @@ "cimguiname": "igSetWindowParentWindowForFocusRoute", "defaults": {}, "funcname": "SetWindowParentWindowForFocusRoute", - "location": "imgui_internal:3364", + "location": "imgui_internal:3373", "namespace": "ImGui", "ov_cimguiname": "igSetWindowParentWindowForFocusRoute", "ret": "void", @@ -34005,7 +34107,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:419", + "location": "imgui:421", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Vec2", "ret": "void", @@ -34035,7 +34137,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:424", + "location": "imgui:426", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Str", "ret": "void", @@ -34065,7 +34167,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui_internal:3359", + "location": "imgui_internal:3368", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_WindowPtr", "ret": "void", @@ -34093,7 +34195,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:420", + "location": "imgui:422", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Vec2", "ret": "void", @@ -34123,7 +34225,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:425", + "location": "imgui:427", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Str", "ret": "void", @@ -34153,7 +34255,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui_internal:3360", + "location": "imgui_internal:3369", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_WindowPtr", "ret": "void", @@ -34179,7 +34281,7 @@ "cimguiname": "igSetWindowViewport", "defaults": {}, "funcname": "SetWindowViewport", - "location": "imgui_internal:3411", + "location": "imgui_internal:3420", "namespace": "ImGui", "ov_cimguiname": "igSetWindowViewport", "ret": "void", @@ -34225,7 +34327,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "imgui_internal:3905", + "location": "imgui_internal:3914", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -34275,7 +34377,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", - "location": "imgui_internal:3906", + "location": "imgui_internal:3915", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -34321,7 +34423,7 @@ "cimguiname": "igShadeVertsTransformPos", "defaults": {}, "funcname": "ShadeVertsTransformPos", - "location": "imgui_internal:3907", + "location": "imgui_internal:3916", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsTransformPos", "ret": "void", @@ -34349,7 +34451,7 @@ "flags": "0" }, "funcname": "Shortcut", - "location": "imgui:1010", + "location": "imgui:1014", "namespace": "ImGui", "ov_cimguiname": "igShortcut_Nil", "ret": "bool", @@ -34377,7 +34479,7 @@ "cimguiname": "igShortcut", "defaults": {}, "funcname": "Shortcut", - "location": "imgui_internal:3624", + "location": "imgui_internal:3633", "namespace": "ImGui", "ov_cimguiname": "igShortcut_ID", "ret": "bool", @@ -34401,7 +34503,7 @@ "p_open": "NULL" }, "funcname": "ShowAboutWindow", - "location": "imgui:345", + "location": "imgui:347", "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -34425,7 +34527,7 @@ "p_open": "NULL" }, "funcname": "ShowDebugLogWindow", - "location": "imgui:343", + "location": "imgui:345", "namespace": "ImGui", "ov_cimguiname": "igShowDebugLogWindow", "ret": "void", @@ -34449,7 +34551,7 @@ "p_open": "NULL" }, "funcname": "ShowDemoWindow", - "location": "imgui:341", + "location": "imgui:343", "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -34471,7 +34573,7 @@ "cimguiname": "igShowFontAtlas", "defaults": {}, "funcname": "ShowFontAtlas", - "location": "imgui_internal:3929", + "location": "imgui_internal:3938", "namespace": "ImGui", "ov_cimguiname": "igShowFontAtlas", "ret": "void", @@ -34493,7 +34595,7 @@ "cimguiname": "igShowFontSelector", "defaults": {}, "funcname": "ShowFontSelector", - "location": "imgui:348", + "location": "imgui:350", "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -34517,7 +34619,7 @@ "p_open": "NULL" }, "funcname": "ShowIDStackToolWindow", - "location": "imgui:344", + "location": "imgui:346", "namespace": "ImGui", "ov_cimguiname": "igShowIDStackToolWindow", "ret": "void", @@ -34541,7 +34643,7 @@ "p_open": "NULL" }, "funcname": "ShowMetricsWindow", - "location": "imgui:342", + "location": "imgui:344", "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -34565,7 +34667,7 @@ "ref": "NULL" }, "funcname": "ShowStyleEditor", - "location": "imgui:346", + "location": "imgui:348", "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -34587,7 +34689,7 @@ "cimguiname": "igShowStyleSelector", "defaults": {}, "funcname": "ShowStyleSelector", - "location": "imgui:347", + "location": "imgui:349", "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -34604,7 +34706,7 @@ "cimguiname": "igShowUserGuide", "defaults": {}, "funcname": "ShowUserGuide", - "location": "imgui:349", + "location": "imgui:351", "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -34634,7 +34736,7 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", - "location": "imgui_internal:3475", + "location": "imgui_internal:3484", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -34651,7 +34753,7 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", - "location": "imgui_internal:3391", + "location": "imgui_internal:3400", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -34698,7 +34800,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui:615", + "location": "imgui:619", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -34752,7 +34854,7 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", - "location": "imgui_internal:3859", + "location": "imgui_internal:3868", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -34797,7 +34899,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui:611", + "location": "imgui:615", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -34842,7 +34944,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui:612", + "location": "imgui:616", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -34887,7 +34989,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui:613", + "location": "imgui:617", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -34932,7 +35034,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui:614", + "location": "imgui:618", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -34977,7 +35079,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui:616", + "location": "imgui:620", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -35022,7 +35124,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui:617", + "location": "imgui:621", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -35067,7 +35169,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui:618", + "location": "imgui:622", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -35112,7 +35214,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui:619", + "location": "imgui:623", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -35161,7 +35263,7 @@ "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui:620", + "location": "imgui:624", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -35214,7 +35316,7 @@ "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui:621", + "location": "imgui:625", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -35236,7 +35338,7 @@ "cimguiname": "igSmallButton", "defaults": {}, "funcname": "SmallButton", - "location": "imgui:551", + "location": "imgui:555", "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -35253,7 +35355,7 @@ "cimguiname": "igSpacing", "defaults": {}, "funcname": "Spacing", - "location": "imgui:498", + "location": "imgui:502", "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -35315,7 +35417,7 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "imgui_internal:3860", + "location": "imgui_internal:3869", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -35337,7 +35439,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", - "location": "imgui_internal:3397", + "location": "imgui_internal:3406", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -35367,7 +35469,7 @@ "cimguiname": "igStartMouseMovingWindowOrNode", "defaults": {}, "funcname": "StartMouseMovingWindowOrNode", - "location": "imgui_internal:3398", + "location": "imgui_internal:3407", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindowOrNode", "ret": "void", @@ -35391,7 +35493,7 @@ "dst": "NULL" }, "funcname": "StyleColorsClassic", - "location": "imgui:355", + "location": "imgui:357", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -35415,7 +35517,7 @@ "dst": "NULL" }, "funcname": "StyleColorsDark", - "location": "imgui:353", + "location": "imgui:355", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -35439,7 +35541,7 @@ "dst": "NULL" }, "funcname": "StyleColorsLight", - "location": "imgui:354", + "location": "imgui:356", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -35469,7 +35571,7 @@ "cimguiname": "igTabBarAddTab", "defaults": {}, "funcname": "TabBarAddTab", - "location": "imgui_internal:3798", + "location": "imgui_internal:3807", "namespace": "ImGui", "ov_cimguiname": "igTabBarAddTab", "ret": "void", @@ -35495,7 +35597,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", - "location": "imgui_internal:3800", + "location": "imgui_internal:3809", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -35517,7 +35619,7 @@ "cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "defaults": {}, "funcname": "TabBarFindMostRecentlySelectedTabForActiveWindow", - "location": "imgui_internal:3794", + "location": "imgui_internal:3803", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "ret": "ImGuiTabItem*", @@ -35543,7 +35645,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", - "location": "imgui_internal:3792", + "location": "imgui_internal:3801", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -35569,7 +35671,7 @@ "cimguiname": "igTabBarFindTabByOrder", "defaults": {}, "funcname": "TabBarFindTabByOrder", - "location": "imgui_internal:3793", + "location": "imgui_internal:3802", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByOrder", "ret": "ImGuiTabItem*", @@ -35591,7 +35693,7 @@ "cimguiname": "igTabBarGetCurrentTab", "defaults": {}, "funcname": "TabBarGetCurrentTab", - "location": "imgui_internal:3795", + "location": "imgui_internal:3804", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetCurrentTab", "ret": "ImGuiTabItem*", @@ -35617,7 +35719,7 @@ "cimguiname": "igTabBarGetTabName", "defaults": {}, "funcname": "TabBarGetTabName", - "location": "imgui_internal:3797", + "location": "imgui_internal:3806", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabName", "ret": "const char*", @@ -35643,7 +35745,7 @@ "cimguiname": "igTabBarGetTabOrder", "defaults": {}, "funcname": "TabBarGetTabOrder", - "location": "imgui_internal:3796", + "location": "imgui_internal:3805", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabOrder", "ret": "int", @@ -35665,7 +35767,7 @@ "cimguiname": "igTabBarProcessReorder", "defaults": {}, "funcname": "TabBarProcessReorder", - "location": "imgui_internal:3804", + "location": "imgui_internal:3813", "namespace": "ImGui", "ov_cimguiname": "igTabBarProcessReorder", "ret": "bool", @@ -35691,7 +35793,7 @@ "cimguiname": "igTabBarQueueFocus", "defaults": {}, "funcname": "TabBarQueueFocus", - "location": "imgui_internal:3801", + "location": "imgui_internal:3810", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueFocus", "ret": "void", @@ -35721,7 +35823,7 @@ "cimguiname": "igTabBarQueueReorder", "defaults": {}, "funcname": "TabBarQueueReorder", - "location": "imgui_internal:3802", + "location": "imgui_internal:3811", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", @@ -35751,7 +35853,7 @@ "cimguiname": "igTabBarQueueReorderFromMousePos", "defaults": {}, "funcname": "TabBarQueueReorderFromMousePos", - "location": "imgui_internal:3803", + "location": "imgui_internal:3812", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorderFromMousePos", "ret": "void", @@ -35777,7 +35879,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", - "location": "imgui_internal:3799", + "location": "imgui_internal:3808", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -35811,7 +35913,7 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", - "location": "imgui_internal:3808", + "location": "imgui_internal:3817", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -35839,7 +35941,7 @@ "flags": "0" }, "funcname": "TabItemButton", - "location": "imgui:865", + "location": "imgui:869", "namespace": "ImGui", "ov_cimguiname": "igTabItemButton", "ret": "bool", @@ -35869,7 +35971,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3806", + "location": "imgui_internal:3815", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_Str", @@ -35894,7 +35996,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3807", + "location": "imgui_internal:3816", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_WindowPtr", @@ -35933,7 +36035,7 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", - "location": "imgui_internal:3805", + "location": "imgui_internal:3814", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -35991,7 +36093,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", - "location": "imgui_internal:3809", + "location": "imgui_internal:3818", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "void", @@ -36008,7 +36110,7 @@ "cimguiname": "igTableAngledHeadersRow", "defaults": {}, "funcname": "TableAngledHeadersRow", - "location": "imgui:830", + "location": "imgui:834", "namespace": "ImGui", "ov_cimguiname": "igTableAngledHeadersRow", "ret": "void", @@ -36046,7 +36148,7 @@ "cimguiname": "igTableAngledHeadersRowEx", "defaults": {}, "funcname": "TableAngledHeadersRowEx", - "location": "imgui_internal:3742", + "location": "imgui_internal:3751", "namespace": "ImGui", "ov_cimguiname": "igTableAngledHeadersRowEx", "ret": "void", @@ -36068,7 +36170,7 @@ "cimguiname": "igTableBeginApplyRequests", "defaults": {}, "funcname": "TableBeginApplyRequests", - "location": "imgui_internal:3749", + "location": "imgui_internal:3758", "namespace": "ImGui", "ov_cimguiname": "igTableBeginApplyRequests", "ret": "void", @@ -36094,7 +36196,7 @@ "cimguiname": "igTableBeginCell", "defaults": {}, "funcname": "TableBeginCell", - "location": "imgui_internal:3767", + "location": "imgui_internal:3776", "namespace": "ImGui", "ov_cimguiname": "igTableBeginCell", "ret": "void", @@ -36116,7 +36218,7 @@ "cimguiname": "igTableBeginContextMenuPopup", "defaults": {}, "funcname": "TableBeginContextMenuPopup", - "location": "imgui_internal:3756", + "location": "imgui_internal:3765", "namespace": "ImGui", "ov_cimguiname": "igTableBeginContextMenuPopup", "ret": "bool", @@ -36142,7 +36244,7 @@ "cimguiname": "igTableBeginInitMemory", "defaults": {}, "funcname": "TableBeginInitMemory", - "location": "imgui_internal:3748", + "location": "imgui_internal:3757", "namespace": "ImGui", "ov_cimguiname": "igTableBeginInitMemory", "ret": "void", @@ -36164,7 +36266,7 @@ "cimguiname": "igTableBeginRow", "defaults": {}, "funcname": "TableBeginRow", - "location": "imgui_internal:3765", + "location": "imgui_internal:3774", "namespace": "ImGui", "ov_cimguiname": "igTableBeginRow", "ret": "void", @@ -36172,6 +36274,32 @@ "stname": "" } ], + "igTableCalcMaxColumnWidth": [ + { + "args": "(const ImGuiTable* table,int column_n)", + "argsT": [ + { + "name": "table", + "type": "const ImGuiTable*" + }, + { + "name": "column_n", + "type": "int" + } + ], + "argsoriginal": "(const ImGuiTable* table,int column_n)", + "call_args": "(table,column_n)", + "cimguiname": "igTableCalcMaxColumnWidth", + "defaults": {}, + "funcname": "TableCalcMaxColumnWidth", + "location": "imgui_internal:3781", + "namespace": "ImGui", + "ov_cimguiname": "igTableCalcMaxColumnWidth", + "ret": "float", + "signature": "(const ImGuiTable*,int)", + "stname": "" + } + ], "igTableDrawBorders": [ { "args": "(ImGuiTable* table)", @@ -36186,7 +36314,7 @@ "cimguiname": "igTableDrawBorders", "defaults": {}, "funcname": "TableDrawBorders", - "location": "imgui_internal:3754", + "location": "imgui_internal:3763", "namespace": "ImGui", "ov_cimguiname": "igTableDrawBorders", "ret": "void", @@ -36212,7 +36340,7 @@ "cimguiname": "igTableDrawDefaultContextMenu", "defaults": {}, "funcname": "TableDrawDefaultContextMenu", - "location": "imgui_internal:3755", + "location": "imgui_internal:3764", "namespace": "ImGui", "ov_cimguiname": "igTableDrawDefaultContextMenu", "ret": "void", @@ -36234,7 +36362,7 @@ "cimguiname": "igTableEndCell", "defaults": {}, "funcname": "TableEndCell", - "location": "imgui_internal:3768", + "location": "imgui_internal:3777", "namespace": "ImGui", "ov_cimguiname": "igTableEndCell", "ret": "void", @@ -36256,7 +36384,7 @@ "cimguiname": "igTableEndRow", "defaults": {}, "funcname": "TableEndRow", - "location": "imgui_internal:3766", + "location": "imgui_internal:3775", "namespace": "ImGui", "ov_cimguiname": "igTableEndRow", "ret": "void", @@ -36278,7 +36406,7 @@ "cimguiname": "igTableFindByID", "defaults": {}, "funcname": "TableFindByID", - "location": "imgui_internal:3746", + "location": "imgui_internal:3755", "namespace": "ImGui", "ov_cimguiname": "igTableFindByID", "ret": "ImGuiTable*", @@ -36304,7 +36432,7 @@ "cimguiname": "igTableFixColumnSortDirection", "defaults": {}, "funcname": "TableFixColumnSortDirection", - "location": "imgui_internal:3763", + "location": "imgui_internal:3772", "namespace": "ImGui", "ov_cimguiname": "igTableFixColumnSortDirection", "ret": "void", @@ -36321,7 +36449,7 @@ "cimguiname": "igTableGcCompactSettings", "defaults": {}, "funcname": "TableGcCompactSettings", - "location": "imgui_internal:3778", + "location": "imgui_internal:3787", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactSettings", "ret": "void", @@ -36343,7 +36471,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3776", + "location": "imgui_internal:3785", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TablePtr", "ret": "void", @@ -36363,7 +36491,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3777", + "location": "imgui_internal:3786", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TableTempDataPtr", "ret": "void", @@ -36385,7 +36513,7 @@ "cimguiname": "igTableGetBoundSettings", "defaults": {}, "funcname": "TableGetBoundSettings", - "location": "imgui_internal:3784", + "location": "imgui_internal:3793", "namespace": "ImGui", "ov_cimguiname": "igTableGetBoundSettings", "ret": "ImGuiTableSettings*", @@ -36415,7 +36543,7 @@ "cimguiname": "igTableGetCellBgRect", "defaults": {}, "funcname": "TableGetCellBgRect", - "location": "imgui_internal:3769", + "location": "imgui_internal:3778", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTableGetCellBgRect", @@ -36433,7 +36561,7 @@ "cimguiname": "igTableGetColumnCount", "defaults": {}, "funcname": "TableGetColumnCount", - "location": "imgui:839", + "location": "imgui:843", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnCount", "ret": "int", @@ -36457,7 +36585,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnFlags", - "location": "imgui:843", + "location": "imgui:847", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnFlags", "ret": "ImGuiTableColumnFlags", @@ -36474,7 +36602,7 @@ "cimguiname": "igTableGetColumnIndex", "defaults": {}, "funcname": "TableGetColumnIndex", - "location": "imgui:840", + "location": "imgui:844", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnIndex", "ret": "int", @@ -36498,7 +36626,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnName", - "location": "imgui:842", + "location": "imgui:846", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_Int", "ret": "const char*", @@ -36522,7 +36650,7 @@ "cimguiname": "igTableGetColumnName", "defaults": {}, "funcname": "TableGetColumnName", - "location": "imgui_internal:3770", + "location": "imgui_internal:3779", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_TablePtr", "ret": "const char*", @@ -36544,7 +36672,7 @@ "cimguiname": "igTableGetColumnNextSortDirection", "defaults": {}, "funcname": "TableGetColumnNextSortDirection", - "location": "imgui_internal:3762", + "location": "imgui_internal:3771", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnNextSortDirection", "ret": "ImGuiSortDirection", @@ -36576,7 +36704,7 @@ "instance_no": "0" }, "funcname": "TableGetColumnResizeID", - "location": "imgui_internal:3771", + "location": "imgui_internal:3780", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnResizeID", "ret": "ImGuiID", @@ -36602,7 +36730,7 @@ "cimguiname": "igTableGetColumnWidthAuto", "defaults": {}, "funcname": "TableGetColumnWidthAuto", - "location": "imgui_internal:3764", + "location": "imgui_internal:3773", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnWidthAuto", "ret": "float", @@ -36619,7 +36747,7 @@ "cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "defaults": {}, "funcname": "TableGetHeaderAngledMaxLabelWidth", - "location": "imgui_internal:3739", + "location": "imgui_internal:3748", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "ret": "float", @@ -36636,7 +36764,7 @@ "cimguiname": "igTableGetHeaderRowHeight", "defaults": {}, "funcname": "TableGetHeaderRowHeight", - "location": "imgui_internal:3738", + "location": "imgui_internal:3747", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderRowHeight", "ret": "float", @@ -36653,7 +36781,7 @@ "cimguiname": "igTableGetHoveredColumn", "defaults": {}, "funcname": "TableGetHoveredColumn", - "location": "imgui:845", + "location": "imgui:849", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredColumn", "ret": "int", @@ -36670,7 +36798,7 @@ "cimguiname": "igTableGetHoveredRow", "defaults": {}, "funcname": "TableGetHoveredRow", - "location": "imgui_internal:3737", + "location": "imgui_internal:3746", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredRow", "ret": "int", @@ -36696,7 +36824,7 @@ "cimguiname": "igTableGetInstanceData", "defaults": {}, "funcname": "TableGetInstanceData", - "location": "imgui_internal:3758", + "location": "imgui_internal:3767", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceData", "ret": "ImGuiTableInstanceData*", @@ -36722,7 +36850,7 @@ "cimguiname": "igTableGetInstanceID", "defaults": {}, "funcname": "TableGetInstanceID", - "location": "imgui_internal:3759", + "location": "imgui_internal:3768", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceID", "ret": "ImGuiID", @@ -36730,32 +36858,6 @@ "stname": "" } ], - "igTableGetMaxColumnWidth": [ - { - "args": "(const ImGuiTable* table,int column_n)", - "argsT": [ - { - "name": "table", - "type": "const ImGuiTable*" - }, - { - "name": "column_n", - "type": "int" - } - ], - "argsoriginal": "(const ImGuiTable* table,int column_n)", - "call_args": "(table,column_n)", - "cimguiname": "igTableGetMaxColumnWidth", - "defaults": {}, - "funcname": "TableGetMaxColumnWidth", - "location": "imgui_internal:3772", - "namespace": "ImGui", - "ov_cimguiname": "igTableGetMaxColumnWidth", - "ret": "float", - "signature": "(const ImGuiTable*,int)", - "stname": "" - } - ], "igTableGetRowIndex": [ { "args": "()", @@ -36765,7 +36867,7 @@ "cimguiname": "igTableGetRowIndex", "defaults": {}, "funcname": "TableGetRowIndex", - "location": "imgui:841", + "location": "imgui:845", "namespace": "ImGui", "ov_cimguiname": "igTableGetRowIndex", "ret": "int", @@ -36782,7 +36884,7 @@ "cimguiname": "igTableGetSortSpecs", "defaults": {}, "funcname": "TableGetSortSpecs", - "location": "imgui:838", + "location": "imgui:842", "namespace": "ImGui", "ov_cimguiname": "igTableGetSortSpecs", "ret": "ImGuiTableSortSpecs*", @@ -36804,7 +36906,7 @@ "cimguiname": "igTableHeader", "defaults": {}, "funcname": "TableHeader", - "location": "imgui:828", + "location": "imgui:832", "namespace": "ImGui", "ov_cimguiname": "igTableHeader", "ret": "void", @@ -36821,7 +36923,7 @@ "cimguiname": "igTableHeadersRow", "defaults": {}, "funcname": "TableHeadersRow", - "location": "imgui:829", + "location": "imgui:833", "namespace": "ImGui", "ov_cimguiname": "igTableHeadersRow", "ret": "void", @@ -36843,7 +36945,7 @@ "cimguiname": "igTableLoadSettings", "defaults": {}, "funcname": "TableLoadSettings", - "location": "imgui_internal:3781", + "location": "imgui_internal:3790", "namespace": "ImGui", "ov_cimguiname": "igTableLoadSettings", "ret": "void", @@ -36865,7 +36967,7 @@ "cimguiname": "igTableMergeDrawChannels", "defaults": {}, "funcname": "TableMergeDrawChannels", - "location": "imgui_internal:3757", + "location": "imgui_internal:3766", "namespace": "ImGui", "ov_cimguiname": "igTableMergeDrawChannels", "ret": "void", @@ -36882,7 +36984,7 @@ "cimguiname": "igTableNextColumn", "defaults": {}, "funcname": "TableNextColumn", - "location": "imgui:815", + "location": "imgui:819", "namespace": "ImGui", "ov_cimguiname": "igTableNextColumn", "ret": "bool", @@ -36911,7 +37013,7 @@ "row_flags": "0" }, "funcname": "TableNextRow", - "location": "imgui:814", + "location": "imgui:818", "namespace": "ImGui", "ov_cimguiname": "igTableNextRow", "ret": "void", @@ -36935,7 +37037,7 @@ "column_n": "-1" }, "funcname": "TableOpenContextMenu", - "location": "imgui_internal:3734", + "location": "imgui_internal:3743", "namespace": "ImGui", "ov_cimguiname": "igTableOpenContextMenu", "ret": "void", @@ -36952,7 +37054,7 @@ "cimguiname": "igTablePopBackgroundChannel", "defaults": {}, "funcname": "TablePopBackgroundChannel", - "location": "imgui_internal:3741", + "location": "imgui_internal:3750", "namespace": "ImGui", "ov_cimguiname": "igTablePopBackgroundChannel", "ret": "void", @@ -36969,7 +37071,7 @@ "cimguiname": "igTablePushBackgroundChannel", "defaults": {}, "funcname": "TablePushBackgroundChannel", - "location": "imgui_internal:3740", + "location": "imgui_internal:3749", "namespace": "ImGui", "ov_cimguiname": "igTablePushBackgroundChannel", "ret": "void", @@ -36991,7 +37093,7 @@ "cimguiname": "igTableRemove", "defaults": {}, "funcname": "TableRemove", - "location": "imgui_internal:3775", + "location": "imgui_internal:3784", "namespace": "ImGui", "ov_cimguiname": "igTableRemove", "ret": "void", @@ -37013,7 +37115,7 @@ "cimguiname": "igTableResetSettings", "defaults": {}, "funcname": "TableResetSettings", - "location": "imgui_internal:3783", + "location": "imgui_internal:3792", "namespace": "ImGui", "ov_cimguiname": "igTableResetSettings", "ret": "void", @@ -37035,7 +37137,7 @@ "cimguiname": "igTableSaveSettings", "defaults": {}, "funcname": "TableSaveSettings", - "location": "imgui_internal:3782", + "location": "imgui_internal:3791", "namespace": "ImGui", "ov_cimguiname": "igTableSaveSettings", "ret": "void", @@ -37067,7 +37169,7 @@ "column_n": "-1" }, "funcname": "TableSetBgColor", - "location": "imgui:846", + "location": "imgui:850", "namespace": "ImGui", "ov_cimguiname": "igTableSetBgColor", "ret": "void", @@ -37093,7 +37195,7 @@ "cimguiname": "igTableSetColumnEnabled", "defaults": {}, "funcname": "TableSetColumnEnabled", - "location": "imgui:844", + "location": "imgui:848", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnEnabled", "ret": "void", @@ -37115,7 +37217,7 @@ "cimguiname": "igTableSetColumnIndex", "defaults": {}, "funcname": "TableSetColumnIndex", - "location": "imgui:816", + "location": "imgui:820", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnIndex", "ret": "bool", @@ -37145,7 +37247,7 @@ "cimguiname": "igTableSetColumnSortDirection", "defaults": {}, "funcname": "TableSetColumnSortDirection", - "location": "imgui_internal:3736", + "location": "imgui_internal:3745", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnSortDirection", "ret": "void", @@ -37171,7 +37273,7 @@ "cimguiname": "igTableSetColumnWidth", "defaults": {}, "funcname": "TableSetColumnWidth", - "location": "imgui_internal:3735", + "location": "imgui_internal:3744", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidth", "ret": "void", @@ -37193,7 +37295,7 @@ "cimguiname": "igTableSetColumnWidthAutoAll", "defaults": {}, "funcname": "TableSetColumnWidthAutoAll", - "location": "imgui_internal:3774", + "location": "imgui_internal:3783", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoAll", "ret": "void", @@ -37219,7 +37321,7 @@ "cimguiname": "igTableSetColumnWidthAutoSingle", "defaults": {}, "funcname": "TableSetColumnWidthAutoSingle", - "location": "imgui_internal:3773", + "location": "imgui_internal:3782", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoSingle", "ret": "void", @@ -37236,7 +37338,7 @@ "cimguiname": "igTableSettingsAddSettingsHandler", "defaults": {}, "funcname": "TableSettingsAddSettingsHandler", - "location": "imgui_internal:3785", + "location": "imgui_internal:3794", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsAddSettingsHandler", "ret": "void", @@ -37262,7 +37364,7 @@ "cimguiname": "igTableSettingsCreate", "defaults": {}, "funcname": "TableSettingsCreate", - "location": "imgui_internal:3786", + "location": "imgui_internal:3795", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsCreate", "ret": "ImGuiTableSettings*", @@ -37284,7 +37386,7 @@ "cimguiname": "igTableSettingsFindByID", "defaults": {}, "funcname": "TableSettingsFindByID", - "location": "imgui_internal:3787", + "location": "imgui_internal:3796", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsFindByID", "ret": "ImGuiTableSettings*", @@ -37322,7 +37424,7 @@ "user_id": "0" }, "funcname": "TableSetupColumn", - "location": "imgui:826", + "location": "imgui:830", "namespace": "ImGui", "ov_cimguiname": "igTableSetupColumn", "ret": "void", @@ -37344,7 +37446,7 @@ "cimguiname": "igTableSetupDrawChannels", "defaults": {}, "funcname": "TableSetupDrawChannels", - "location": "imgui_internal:3750", + "location": "imgui_internal:3759", "namespace": "ImGui", "ov_cimguiname": "igTableSetupDrawChannels", "ret": "void", @@ -37370,7 +37472,7 @@ "cimguiname": "igTableSetupScrollFreeze", "defaults": {}, "funcname": "TableSetupScrollFreeze", - "location": "imgui:827", + "location": "imgui:831", "namespace": "ImGui", "ov_cimguiname": "igTableSetupScrollFreeze", "ret": "void", @@ -37392,7 +37494,7 @@ "cimguiname": "igTableSortSpecsBuild", "defaults": {}, "funcname": "TableSortSpecsBuild", - "location": "imgui_internal:3761", + "location": "imgui_internal:3770", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsBuild", "ret": "void", @@ -37414,7 +37516,7 @@ "cimguiname": "igTableSortSpecsSanitize", "defaults": {}, "funcname": "TableSortSpecsSanitize", - "location": "imgui_internal:3760", + "location": "imgui_internal:3769", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsSanitize", "ret": "void", @@ -37436,7 +37538,7 @@ "cimguiname": "igTableUpdateBorders", "defaults": {}, "funcname": "TableUpdateBorders", - "location": "imgui_internal:3752", + "location": "imgui_internal:3761", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateBorders", "ret": "void", @@ -37458,7 +37560,7 @@ "cimguiname": "igTableUpdateColumnsWeightFromWidth", "defaults": {}, "funcname": "TableUpdateColumnsWeightFromWidth", - "location": "imgui_internal:3753", + "location": "imgui_internal:3762", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateColumnsWeightFromWidth", "ret": "void", @@ -37480,7 +37582,7 @@ "cimguiname": "igTableUpdateLayout", "defaults": {}, "funcname": "TableUpdateLayout", - "location": "imgui_internal:3751", + "location": "imgui_internal:3760", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateLayout", "ret": "void", @@ -37502,7 +37604,7 @@ "cimguiname": "igTeleportMousePos", "defaults": {}, "funcname": "TeleportMousePos", - "location": "imgui_internal:3573", + "location": "imgui_internal:3582", "namespace": "ImGui", "ov_cimguiname": "igTeleportMousePos", "ret": "void", @@ -37524,7 +37626,7 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", - "location": "imgui_internal:3892", + "location": "imgui_internal:3901", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -37577,7 +37679,7 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "imgui_internal:3891", + "location": "imgui_internal:3900", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -37619,7 +37721,7 @@ "cimguiname": "igTempInputText", "defaults": {}, "funcname": "TempInputText", - "location": "imgui_internal:3890", + "location": "imgui_internal:3899", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -37645,7 +37747,7 @@ "cimguiname": "igTestKeyOwner", "defaults": {}, "funcname": "TestKeyOwner", - "location": "imgui_internal:3592", + "location": "imgui_internal:3601", "namespace": "ImGui", "ov_cimguiname": "igTestKeyOwner", "ret": "bool", @@ -37671,7 +37773,7 @@ "cimguiname": "igTestShortcutRouting", "defaults": {}, "funcname": "TestShortcutRouting", - "location": "imgui_internal:3626", + "location": "imgui_internal:3635", "namespace": "ImGui", "ov_cimguiname": "igTestShortcutRouting", "ret": "bool", @@ -37698,7 +37800,7 @@ "defaults": {}, "funcname": "Text", "isvararg": "...)", - "location": "imgui:533", + "location": "imgui:537", "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -37729,7 +37831,7 @@ "defaults": {}, "funcname": "TextColored", "isvararg": "...)", - "location": "imgui:535", + "location": "imgui:539", "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -37759,7 +37861,7 @@ "cimguiname": "igTextColoredV", "defaults": {}, "funcname": "TextColoredV", - "location": "imgui:536", + "location": "imgui:540", "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -37786,7 +37888,7 @@ "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", - "location": "imgui:537", + "location": "imgui:541", "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -37812,7 +37914,7 @@ "cimguiname": "igTextDisabledV", "defaults": {}, "funcname": "TextDisabledV", - "location": "imgui:538", + "location": "imgui:542", "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -37845,7 +37947,7 @@ "text_end": "NULL" }, "funcname": "TextEx", - "location": "imgui_internal:3837", + "location": "imgui_internal:3846", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -37867,7 +37969,7 @@ "cimguiname": "igTextLink", "defaults": {}, "funcname": "TextLink", - "location": "imgui:561", + "location": "imgui:565", "namespace": "ImGui", "ov_cimguiname": "igTextLink", "ret": "bool", @@ -37895,7 +37997,7 @@ "url": "NULL" }, "funcname": "TextLinkOpenURL", - "location": "imgui:562", + "location": "imgui:566", "namespace": "ImGui", "ov_cimguiname": "igTextLinkOpenURL", "ret": "void", @@ -37923,7 +38025,7 @@ "text_end": "NULL" }, "funcname": "TextUnformatted", - "location": "imgui:532", + "location": "imgui:536", "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -37949,7 +38051,7 @@ "cimguiname": "igTextV", "defaults": {}, "funcname": "TextV", - "location": "imgui:534", + "location": "imgui:538", "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -37976,7 +38078,7 @@ "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", - "location": "imgui:539", + "location": "imgui:543", "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -38002,7 +38104,7 @@ "cimguiname": "igTextWrappedV", "defaults": {}, "funcname": "TextWrappedV", - "location": "imgui:540", + "location": "imgui:544", "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -38032,7 +38134,7 @@ "cimguiname": "igTranslateWindowsInViewport", "defaults": {}, "funcname": "TranslateWindowsInViewport", - "location": "imgui_internal:3408", + "location": "imgui_internal:3417", "namespace": "ImGui", "ov_cimguiname": "igTranslateWindowsInViewport", "ret": "void", @@ -38054,7 +38156,7 @@ "cimguiname": "igTreeNode", "defaults": {}, "funcname": "TreeNode", - "location": "imgui:656", + "location": "imgui:660", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Str", "ret": "bool", @@ -38083,7 +38185,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:657", + "location": "imgui:661", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_StrStr", "ret": "bool", @@ -38112,7 +38214,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:658", + "location": "imgui:662", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Ptr", "ret": "bool", @@ -38148,7 +38250,7 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "imgui_internal:3863", + "location": "imgui_internal:3872", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -38176,7 +38278,7 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui:661", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Str", "ret": "bool", @@ -38209,7 +38311,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:662", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_StrStr", "ret": "bool", @@ -38242,7 +38344,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:663", + "location": "imgui:667", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Ptr", "ret": "bool", @@ -38276,7 +38378,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:664", + "location": "imgui:668", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Str", "ret": "bool", @@ -38308,7 +38410,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:665", + "location": "imgui:669", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Ptr", "ret": "bool", @@ -38330,7 +38432,7 @@ "cimguiname": "igTreeNodeGetOpen", "defaults": {}, "funcname": "TreeNodeGetOpen", - "location": "imgui_internal:3865", + "location": "imgui_internal:3874", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeGetOpen", "ret": "bool", @@ -38356,7 +38458,7 @@ "cimguiname": "igTreeNodeSetOpen", "defaults": {}, "funcname": "TreeNodeSetOpen", - "location": "imgui_internal:3866", + "location": "imgui_internal:3875", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeSetOpen", "ret": "void", @@ -38382,7 +38484,7 @@ "cimguiname": "igTreeNodeUpdateNextOpen", "defaults": {}, "funcname": "TreeNodeUpdateNextOpen", - "location": "imgui_internal:3867", + "location": "imgui_internal:3876", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeUpdateNextOpen", "ret": "bool", @@ -38412,7 +38514,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:659", + "location": "imgui:663", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Str", "ret": "bool", @@ -38440,7 +38542,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:660", + "location": "imgui:664", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Ptr", "ret": "bool", @@ -38457,7 +38559,7 @@ "cimguiname": "igTreePop", "defaults": {}, "funcname": "TreePop", - "location": "imgui:668", + "location": "imgui:672", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -38479,7 +38581,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:666", + "location": "imgui:670", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Str", "ret": "void", @@ -38499,7 +38601,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:667", + "location": "imgui:671", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Ptr", "ret": "void", @@ -38521,7 +38623,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", - "location": "imgui_internal:3864", + "location": "imgui_internal:3873", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -38557,7 +38659,7 @@ "cimguiname": "igTypingSelectFindBestLeadingMatch", "defaults": {}, "funcname": "TypingSelectFindBestLeadingMatch", - "location": "imgui_internal:3707", + "location": "imgui_internal:3716", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindBestLeadingMatch", "ret": "int", @@ -38597,7 +38699,7 @@ "cimguiname": "igTypingSelectFindMatch", "defaults": {}, "funcname": "TypingSelectFindMatch", - "location": "imgui_internal:3705", + "location": "imgui_internal:3714", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindMatch", "ret": "int", @@ -38637,7 +38739,7 @@ "cimguiname": "igTypingSelectFindNextSingleCharMatch", "defaults": {}, "funcname": "TypingSelectFindNextSingleCharMatch", - "location": "imgui_internal:3706", + "location": "imgui_internal:3715", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindNextSingleCharMatch", "ret": "int", @@ -38661,7 +38763,7 @@ "indent_w": "0.0f" }, "funcname": "Unindent", - "location": "imgui:501", + "location": "imgui:505", "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -38678,7 +38780,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "imgui_internal:3395", + "location": "imgui_internal:3404", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -38700,7 +38802,7 @@ "cimguiname": "igUpdateInputEvents", "defaults": {}, "funcname": "UpdateInputEvents", - "location": "imgui_internal:3394", + "location": "imgui_internal:3403", "namespace": "ImGui", "ov_cimguiname": "igUpdateInputEvents", "ret": "void", @@ -38717,7 +38819,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "imgui_internal:3400", + "location": "imgui_internal:3409", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -38734,7 +38836,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "imgui_internal:3399", + "location": "imgui_internal:3408", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -38751,7 +38853,7 @@ "cimguiname": "igUpdatePlatformWindows", "defaults": {}, "funcname": "UpdatePlatformWindows", - "location": "imgui:1080", + "location": "imgui:1083", "namespace": "ImGui", "ov_cimguiname": "igUpdatePlatformWindows", "ret": "void", @@ -38781,7 +38883,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", - "location": "imgui_internal:3352", + "location": "imgui_internal:3361", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -38803,7 +38905,7 @@ "cimguiname": "igUpdateWindowSkipRefresh", "defaults": {}, "funcname": "UpdateWindowSkipRefresh", - "location": "imgui_internal:3353", + "location": "imgui_internal:3362", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowSkipRefresh", "ret": "void", @@ -38852,7 +38954,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui:622", + "location": "imgui:626", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -38901,7 +39003,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui:623", + "location": "imgui:627", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -38954,7 +39056,7 @@ "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui:624", + "location": "imgui:628", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -38980,7 +39082,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:713", + "location": "imgui:717", "namespace": "ImGui", "ov_cimguiname": "igValue_Bool", "ret": "void", @@ -39004,7 +39106,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:714", + "location": "imgui:718", "namespace": "ImGui", "ov_cimguiname": "igValue_Int", "ret": "void", @@ -39028,7 +39130,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:715", + "location": "imgui:719", "namespace": "ImGui", "ov_cimguiname": "igValue_Uint", "ret": "void", @@ -39058,7 +39160,7 @@ "float_format": "NULL" }, "funcname": "Value", - "location": "imgui:716", + "location": "imgui:720", "namespace": "ImGui", "ov_cimguiname": "igValue_Float", "ret": "void", @@ -39088,7 +39190,7 @@ "cimguiname": "igWindowPosAbsToRel", "defaults": {}, "funcname": "WindowPosAbsToRel", - "location": "imgui_internal:3368", + "location": "imgui_internal:3376", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowPosAbsToRel", @@ -39119,7 +39221,7 @@ "cimguiname": "igWindowPosRelToAbs", "defaults": {}, "funcname": "WindowPosRelToAbs", - "location": "imgui_internal:3367", + "location": "imgui_internal:3377", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowPosRelToAbs", @@ -39150,7 +39252,7 @@ "cimguiname": "igWindowRectAbsToRel", "defaults": {}, "funcname": "WindowRectAbsToRel", - "location": "imgui_internal:3365", + "location": "imgui_internal:3374", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectAbsToRel", @@ -39181,7 +39283,7 @@ "cimguiname": "igWindowRectRelToAbs", "defaults": {}, "funcname": "WindowRectRelToAbs", - "location": "imgui_internal:3366", + "location": "imgui_internal:3375", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectRelToAbs", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index b130731..03fe769 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -517,7 +517,7 @@ defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" defs["ImColor_HSV"][1]["is_static_function"] = true -defs["ImColor_HSV"][1]["location"] = "imgui:2851" +defs["ImColor_HSV"][1]["location"] = "imgui:2850" defs["ImColor_HSV"][1]["nonUDT"] = 1 defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "void" @@ -534,7 +534,7 @@ defs["ImColor_ImColor"][1]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][1]["constructor"] = true defs["ImColor_ImColor"][1]["defaults"] = {} defs["ImColor_ImColor"][1]["funcname"] = "ImColor" -defs["ImColor_ImColor"][1]["location"] = "imgui:2841" +defs["ImColor_ImColor"][1]["location"] = "imgui:2840" defs["ImColor_ImColor"][1]["ov_cimguiname"] = "ImColor_ImColor_Nil" defs["ImColor_ImColor"][1]["signature"] = "()" defs["ImColor_ImColor"][1]["stname"] = "ImColor" @@ -560,7 +560,7 @@ defs["ImColor_ImColor"][2]["constructor"] = true defs["ImColor_ImColor"][2]["defaults"] = {} defs["ImColor_ImColor"][2]["defaults"]["a"] = "1.0f" defs["ImColor_ImColor"][2]["funcname"] = "ImColor" -defs["ImColor_ImColor"][2]["location"] = "imgui:2842" +defs["ImColor_ImColor"][2]["location"] = "imgui:2841" defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColor_Float" defs["ImColor_ImColor"][2]["signature"] = "(float,float,float,float)" defs["ImColor_ImColor"][2]["stname"] = "ImColor" @@ -576,7 +576,7 @@ defs["ImColor_ImColor"][3]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][3]["constructor"] = true defs["ImColor_ImColor"][3]["defaults"] = {} defs["ImColor_ImColor"][3]["funcname"] = "ImColor" -defs["ImColor_ImColor"][3]["location"] = "imgui:2843" +defs["ImColor_ImColor"][3]["location"] = "imgui:2842" defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColor_Vec4" defs["ImColor_ImColor"][3]["signature"] = "(const ImVec4)" defs["ImColor_ImColor"][3]["stname"] = "ImColor" @@ -602,7 +602,7 @@ defs["ImColor_ImColor"][4]["constructor"] = true defs["ImColor_ImColor"][4]["defaults"] = {} defs["ImColor_ImColor"][4]["defaults"]["a"] = "255" defs["ImColor_ImColor"][4]["funcname"] = "ImColor" -defs["ImColor_ImColor"][4]["location"] = "imgui:2844" +defs["ImColor_ImColor"][4]["location"] = "imgui:2843" defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColor_Int" defs["ImColor_ImColor"][4]["signature"] = "(int,int,int,int)" defs["ImColor_ImColor"][4]["stname"] = "ImColor" @@ -618,7 +618,7 @@ defs["ImColor_ImColor"][5]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][5]["constructor"] = true defs["ImColor_ImColor"][5]["defaults"] = {} defs["ImColor_ImColor"][5]["funcname"] = "ImColor" -defs["ImColor_ImColor"][5]["location"] = "imgui:2845" +defs["ImColor_ImColor"][5]["location"] = "imgui:2844" defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColor_U32" defs["ImColor_ImColor"][5]["signature"] = "(ImU32)" defs["ImColor_ImColor"][5]["stname"] = "ImColor" @@ -652,7 +652,7 @@ defs["ImColor_SetHSV"][1]["cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" -defs["ImColor_SetHSV"][1]["location"] = "imgui:2850" +defs["ImColor_SetHSV"][1]["location"] = "imgui:2849" defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" @@ -686,7 +686,7 @@ defs["ImDrawCmd_GetTexID"][1]["call_args"] = "()" defs["ImDrawCmd_GetTexID"][1]["cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["defaults"] = {} defs["ImDrawCmd_GetTexID"][1]["funcname"] = "GetTexID" -defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:3047" +defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:3046" defs["ImDrawCmd_GetTexID"][1]["ov_cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["ret"] = "ImTextureID" defs["ImDrawCmd_GetTexID"][1]["signature"] = "()const" @@ -702,7 +702,7 @@ defs["ImDrawCmd_ImDrawCmd"][1]["cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" -defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:3044" +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:3043" defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -927,7 +927,7 @@ defs["ImDrawListSplitter_Clear"][1]["call_args"] = "()" defs["ImDrawListSplitter_Clear"][1]["cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["defaults"] = {} defs["ImDrawListSplitter_Clear"][1]["funcname"] = "Clear" -defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:3092" +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:3091" defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -945,7 +945,7 @@ defs["ImDrawListSplitter_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawListSplitter_ClearFreeMemory"][1]["cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawListSplitter_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:3093" +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:3092" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -961,7 +961,7 @@ defs["ImDrawListSplitter_ImDrawListSplitter"][1]["cimguiname"] = "ImDrawListSpli defs["ImDrawListSplitter_ImDrawListSplitter"][1]["constructor"] = true defs["ImDrawListSplitter_ImDrawListSplitter"][1]["defaults"] = {} defs["ImDrawListSplitter_ImDrawListSplitter"][1]["funcname"] = "ImDrawListSplitter" -defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:3090" +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:3089" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -981,7 +981,7 @@ defs["ImDrawListSplitter_Merge"][1]["call_args"] = "(draw_list)" defs["ImDrawListSplitter_Merge"][1]["cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["defaults"] = {} defs["ImDrawListSplitter_Merge"][1]["funcname"] = "Merge" -defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:3095" +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:3094" defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -1005,7 +1005,7 @@ defs["ImDrawListSplitter_SetCurrentChannel"][1]["call_args"] = "(draw_list,chann defs["ImDrawListSplitter_SetCurrentChannel"][1]["cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["defaults"] = {} defs["ImDrawListSplitter_SetCurrentChannel"][1]["funcname"] = "SetCurrentChannel" -defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:3096" +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:3095" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -1029,7 +1029,7 @@ defs["ImDrawListSplitter_Split"][1]["call_args"] = "(draw_list,count)" defs["ImDrawListSplitter_Split"][1]["cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["defaults"] = {} defs["ImDrawListSplitter_Split"][1]["funcname"] = "Split" -defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:3094" +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:3093" defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -1046,7 +1046,7 @@ defs["ImDrawListSplitter_destroy"][1]["call_args"] = "(self)" defs["ImDrawListSplitter_destroy"][1]["cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["defaults"] = {} defs["ImDrawListSplitter_destroy"][1]["destructor"] = true -defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:3091" +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:3090" defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" @@ -1087,7 +1087,7 @@ defs["ImDrawList_AddBezierCubic"][1]["cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["defaults"] = {} defs["ImDrawList_AddBezierCubic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCubic"][1]["funcname"] = "AddBezierCubic" -defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:3195" +defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:3194" defs["ImDrawList_AddBezierCubic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["ret"] = "void" defs["ImDrawList_AddBezierCubic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -1124,7 +1124,7 @@ defs["ImDrawList_AddBezierQuadratic"][1]["cimguiname"] = "ImDrawList_AddBezierQu defs["ImDrawList_AddBezierQuadratic"][1]["defaults"] = {} defs["ImDrawList_AddBezierQuadratic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierQuadratic"][1]["funcname"] = "AddBezierQuadratic" -defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:3196" +defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:3195" defs["ImDrawList_AddBezierQuadratic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierQuadratic" defs["ImDrawList_AddBezierQuadratic"][1]["ret"] = "void" defs["ImDrawList_AddBezierQuadratic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -1148,7 +1148,7 @@ defs["ImDrawList_AddCallback"][1]["call_args"] = "(callback,callback_data)" defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" -defs["ImDrawList_AddCallback"][1]["location"] = "imgui:3230" +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:3229" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" @@ -1183,7 +1183,7 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" -defs["ImDrawList_AddCircle"][1]["location"] = "imgui:3187" +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:3186" defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1214,7 +1214,7 @@ defs["ImDrawList_AddCircleFilled"][1]["cimguiname"] = "ImDrawList_AddCircleFille defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" -defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:3188" +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:3187" defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1241,7 +1241,7 @@ defs["ImDrawList_AddConcavePolyFilled"][1]["call_args"] = "(points,num_points,co defs["ImDrawList_AddConcavePolyFilled"][1]["cimguiname"] = "ImDrawList_AddConcavePolyFilled" defs["ImDrawList_AddConcavePolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConcavePolyFilled"][1]["funcname"] = "AddConcavePolyFilled" -defs["ImDrawList_AddConcavePolyFilled"][1]["location"] = "imgui:3203" +defs["ImDrawList_AddConcavePolyFilled"][1]["location"] = "imgui:3202" defs["ImDrawList_AddConcavePolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConcavePolyFilled" defs["ImDrawList_AddConcavePolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConcavePolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1268,7 +1268,7 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["call_args"] = "(points,num_points,col defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" -defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:3202" +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:3201" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1286,7 +1286,7 @@ defs["ImDrawList_AddDrawCmd"][1]["call_args"] = "()" defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" -defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:3231" +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:3230" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" @@ -1325,7 +1325,7 @@ defs["ImDrawList_AddEllipse"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddEllipse"][1]["defaults"]["rot"] = "0.0f" defs["ImDrawList_AddEllipse"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddEllipse"][1]["funcname"] = "AddEllipse" -defs["ImDrawList_AddEllipse"][1]["location"] = "imgui:3191" +defs["ImDrawList_AddEllipse"][1]["location"] = "imgui:3190" defs["ImDrawList_AddEllipse"][1]["ov_cimguiname"] = "ImDrawList_AddEllipse" defs["ImDrawList_AddEllipse"][1]["ret"] = "void" defs["ImDrawList_AddEllipse"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int,float)" @@ -1360,7 +1360,7 @@ defs["ImDrawList_AddEllipseFilled"][1]["defaults"] = {} defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["rot"] = "0.0f" defs["ImDrawList_AddEllipseFilled"][1]["funcname"] = "AddEllipseFilled" -defs["ImDrawList_AddEllipseFilled"][1]["location"] = "imgui:3192" +defs["ImDrawList_AddEllipseFilled"][1]["location"] = "imgui:3191" defs["ImDrawList_AddEllipseFilled"][1]["ov_cimguiname"] = "ImDrawList_AddEllipseFilled" defs["ImDrawList_AddEllipseFilled"][1]["ret"] = "void" defs["ImDrawList_AddEllipseFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int)" @@ -1399,7 +1399,7 @@ defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImage"][1]["defaults"]["uv_max"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_min"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" -defs["ImDrawList_AddImage"][1]["location"] = "imgui:3209" +defs["ImDrawList_AddImage"][1]["location"] = "imgui:3208" defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1452,7 +1452,7 @@ defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv2"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv3"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv4"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" -defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:3210" +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:3209" defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1495,7 +1495,7 @@ defs["ImDrawList_AddImageRounded"][1]["cimguiname"] = "ImDrawList_AddImageRounde defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" -defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:3211" +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:3210" defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1526,7 +1526,7 @@ defs["ImDrawList_AddLine"][1]["cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" -defs["ImDrawList_AddLine"][1]["location"] = "imgui:3179" +defs["ImDrawList_AddLine"][1]["location"] = "imgui:3178" defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" @@ -1560,7 +1560,7 @@ defs["ImDrawList_AddNgon"][1]["cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["defaults"] = {} defs["ImDrawList_AddNgon"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddNgon"][1]["funcname"] = "AddNgon" -defs["ImDrawList_AddNgon"][1]["location"] = "imgui:3189" +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:3188" defs["ImDrawList_AddNgon"][1]["ov_cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["ret"] = "void" defs["ImDrawList_AddNgon"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1590,7 +1590,7 @@ defs["ImDrawList_AddNgonFilled"][1]["call_args"] = "(center,radius,col,num_segme defs["ImDrawList_AddNgonFilled"][1]["cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["defaults"] = {} defs["ImDrawList_AddNgonFilled"][1]["funcname"] = "AddNgonFilled" -defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:3190" +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:3189" defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1623,7 +1623,7 @@ defs["ImDrawList_AddPolyline"][1]["call_args"] = "(points,num_points,col,flags,t defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" -defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:3201" +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:3200" defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,int,ImU32,ImDrawFlags,float)" @@ -1660,7 +1660,7 @@ defs["ImDrawList_AddQuad"][1]["cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" -defs["ImDrawList_AddQuad"][1]["location"] = "imgui:3183" +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:3182" defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1693,7 +1693,7 @@ defs["ImDrawList_AddQuadFilled"][1]["call_args"] = "(p1,p2,p3,p4,col)" defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" -defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:3184" +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:3183" defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1732,7 +1732,7 @@ defs["ImDrawList_AddRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" -defs["ImDrawList_AddRect"][1]["location"] = "imgui:3180" +defs["ImDrawList_AddRect"][1]["location"] = "imgui:3179" defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)" @@ -1767,7 +1767,7 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" -defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:3181" +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:3180" defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1803,7 +1803,7 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["call_args"] = "(p_min,p_max,col_u defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" -defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:3182" +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:3181" defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" @@ -1834,7 +1834,7 @@ defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["defaults"] = {} defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" -defs["ImDrawList_AddText"][1]["location"] = "imgui:3193" +defs["ImDrawList_AddText"][1]["location"] = "imgui:3192" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddText_Vec2" defs["ImDrawList_AddText"][1]["ret"] = "void" defs["ImDrawList_AddText"][1]["signature"] = "(const ImVec2,ImU32,const char*,const char*)" @@ -1877,7 +1877,7 @@ defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" -defs["ImDrawList_AddText"][2]["location"] = "imgui:3194" +defs["ImDrawList_AddText"][2]["location"] = "imgui:3193" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddText_FontPtr" defs["ImDrawList_AddText"][2]["ret"] = "void" defs["ImDrawList_AddText"][2]["signature"] = "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)" @@ -1912,7 +1912,7 @@ defs["ImDrawList_AddTriangle"][1]["cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" -defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:3185" +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:3184" defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1942,7 +1942,7 @@ defs["ImDrawList_AddTriangleFilled"][1]["call_args"] = "(p1,p2,p3,col)" defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" -defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:3186" +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:3185" defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1960,7 +1960,7 @@ defs["ImDrawList_ChannelsMerge"][1]["call_args"] = "()" defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" -defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:3241" +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:3240" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1981,7 +1981,7 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["call_args"] = "(n)" defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" -defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:3242" +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:3241" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -2002,7 +2002,7 @@ defs["ImDrawList_ChannelsSplit"][1]["call_args"] = "(count)" defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" -defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:3240" +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:3239" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -2020,7 +2020,7 @@ defs["ImDrawList_CloneOutput"][1]["call_args"] = "()" defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" -defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:3232" +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:3231" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -2041,7 +2041,7 @@ defs["ImDrawList_GetClipRectMax"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:3170" +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:3169" defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -2063,7 +2063,7 @@ defs["ImDrawList_GetClipRectMin"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:3169" +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:3168" defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -2083,7 +2083,7 @@ defs["ImDrawList_ImDrawList"][1]["cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" -defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:3161" +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:3160" defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" @@ -2116,7 +2116,7 @@ defs["ImDrawList_PathArcTo"][1]["cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" -defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:3222" +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:3221" defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2146,7 +2146,7 @@ defs["ImDrawList_PathArcToFast"][1]["call_args"] = "(center,radius,a_min_of_12,a defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" -defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:3223" +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:3222" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -2177,7 +2177,7 @@ defs["ImDrawList_PathBezierCubicCurveTo"][1]["cimguiname"] = "ImDrawList_PathBez defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCubicCurveTo"][1]["funcname"] = "PathBezierCubicCurveTo" -defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:3225" +defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:3224" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCubicCurveTo" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCubicCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" @@ -2205,7 +2205,7 @@ defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["cimguiname"] = "ImDrawList_Pat defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["funcname"] = "PathBezierQuadraticCurveTo" -defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:3226" +defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:3225" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierQuadraticCurveTo" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,int)" @@ -2223,7 +2223,7 @@ defs["ImDrawList_PathClear"][1]["call_args"] = "()" defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" -defs["ImDrawList_PathClear"][1]["location"] = "imgui:3216" +defs["ImDrawList_PathClear"][1]["location"] = "imgui:3215" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" @@ -2260,7 +2260,7 @@ defs["ImDrawList_PathEllipticalArcTo"][1]["cimguiname"] = "ImDrawList_PathEllipt defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"] = {} defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathEllipticalArcTo"][1]["funcname"] = "PathEllipticalArcTo" -defs["ImDrawList_PathEllipticalArcTo"][1]["location"] = "imgui:3224" +defs["ImDrawList_PathEllipticalArcTo"][1]["location"] = "imgui:3223" defs["ImDrawList_PathEllipticalArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathEllipticalArcTo" defs["ImDrawList_PathEllipticalArcTo"][1]["ret"] = "void" defs["ImDrawList_PathEllipticalArcTo"][1]["signature"] = "(const ImVec2,const ImVec2,float,float,float,int)" @@ -2281,7 +2281,7 @@ defs["ImDrawList_PathFillConcave"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConcave"][1]["cimguiname"] = "ImDrawList_PathFillConcave" defs["ImDrawList_PathFillConcave"][1]["defaults"] = {} defs["ImDrawList_PathFillConcave"][1]["funcname"] = "PathFillConcave" -defs["ImDrawList_PathFillConcave"][1]["location"] = "imgui:3220" +defs["ImDrawList_PathFillConcave"][1]["location"] = "imgui:3219" defs["ImDrawList_PathFillConcave"][1]["ov_cimguiname"] = "ImDrawList_PathFillConcave" defs["ImDrawList_PathFillConcave"][1]["ret"] = "void" defs["ImDrawList_PathFillConcave"][1]["signature"] = "(ImU32)" @@ -2302,7 +2302,7 @@ defs["ImDrawList_PathFillConvex"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" -defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:3219" +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:3218" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -2323,7 +2323,7 @@ defs["ImDrawList_PathLineTo"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" -defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:3217" +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:3216" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -2344,7 +2344,7 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" -defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:3218" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:3217" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -2376,7 +2376,7 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" -defs["ImDrawList_PathRect"][1]["location"] = "imgui:3227" +defs["ImDrawList_PathRect"][1]["location"] = "imgui:3226" defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,ImDrawFlags)" @@ -2405,7 +2405,7 @@ defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" -defs["ImDrawList_PathStroke"][1]["location"] = "imgui:3221" +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:3220" defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,ImDrawFlags,float)" @@ -2423,7 +2423,7 @@ defs["ImDrawList_PopClipRect"][1]["call_args"] = "()" defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" -defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:3166" +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:3165" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -2441,7 +2441,7 @@ defs["ImDrawList_PopTextureID"][1]["call_args"] = "()" defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" -defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:3168" +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:3167" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -2486,7 +2486,7 @@ defs["ImDrawList_PrimQuadUV"][1]["call_args"] = "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,co defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" -defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:3251" +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:3250" defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2513,7 +2513,7 @@ defs["ImDrawList_PrimRect"][1]["call_args"] = "(a,b,col)" defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" -defs["ImDrawList_PrimRect"][1]["location"] = "imgui:3249" +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:3248" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2546,7 +2546,7 @@ defs["ImDrawList_PrimRectUV"][1]["call_args"] = "(a,b,uv_a,uv_b,col)" defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" -defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:3250" +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:3249" defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2570,7 +2570,7 @@ defs["ImDrawList_PrimReserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" -defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:3247" +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:3246" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -2594,7 +2594,7 @@ defs["ImDrawList_PrimUnreserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimUnreserve"][1]["cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["defaults"] = {} defs["ImDrawList_PrimUnreserve"][1]["funcname"] = "PrimUnreserve" -defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:3248" +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:3247" defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -2621,7 +2621,7 @@ defs["ImDrawList_PrimVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" -defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:3254" +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:3253" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2642,7 +2642,7 @@ defs["ImDrawList_PrimWriteIdx"][1]["call_args"] = "(idx)" defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" -defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:3253" +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:3252" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -2669,7 +2669,7 @@ defs["ImDrawList_PrimWriteVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" -defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:3252" +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:3251" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2697,7 +2697,7 @@ defs["ImDrawList_PushClipRect"][1]["cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" -defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:3164" +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:3163" defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" @@ -2715,7 +2715,7 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["call_args"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" -defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:3165" +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:3164" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -2736,7 +2736,7 @@ defs["ImDrawList_PushTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" -defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:3167" +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:3166" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -2775,7 +2775,7 @@ defs["ImDrawList__ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawList__ClearFreeMemory"][1]["cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList__ClearFreeMemory"][1]["funcname"] = "_ClearFreeMemory" -defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:3265" +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:3264" defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -2793,7 +2793,7 @@ defs["ImDrawList__OnChangedClipRect"][1]["call_args"] = "()" defs["ImDrawList__OnChangedClipRect"][1]["cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["defaults"] = {} defs["ImDrawList__OnChangedClipRect"][1]["funcname"] = "_OnChangedClipRect" -defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:3268" +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:3267" defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -2811,7 +2811,7 @@ defs["ImDrawList__OnChangedTextureID"][1]["call_args"] = "()" defs["ImDrawList__OnChangedTextureID"][1]["cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["defaults"] = {} defs["ImDrawList__OnChangedTextureID"][1]["funcname"] = "_OnChangedTextureID" -defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:3269" +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:3268" defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -2829,7 +2829,7 @@ defs["ImDrawList__OnChangedVtxOffset"][1]["call_args"] = "()" defs["ImDrawList__OnChangedVtxOffset"][1]["cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["defaults"] = {} defs["ImDrawList__OnChangedVtxOffset"][1]["funcname"] = "_OnChangedVtxOffset" -defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:3270" +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:3269" defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -2913,7 +2913,7 @@ defs["ImDrawList__PopUnusedDrawCmd"][1]["call_args"] = "()" defs["ImDrawList__PopUnusedDrawCmd"][1]["cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["defaults"] = {} defs["ImDrawList__PopUnusedDrawCmd"][1]["funcname"] = "_PopUnusedDrawCmd" -defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:3266" +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:3265" defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2931,12 +2931,33 @@ defs["ImDrawList__ResetForNewFrame"][1]["call_args"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["defaults"] = {} defs["ImDrawList__ResetForNewFrame"][1]["funcname"] = "_ResetForNewFrame" -defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:3264" +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:3263" defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["stname"] = "ImDrawList" defs["ImDrawList__ResetForNewFrame"]["()"] = defs["ImDrawList__ResetForNewFrame"][1] +defs["ImDrawList__SetTextureID"] = {} +defs["ImDrawList__SetTextureID"][1] = {} +defs["ImDrawList__SetTextureID"][1]["args"] = "(ImDrawList* self,ImTextureID texture_id)" +defs["ImDrawList__SetTextureID"][1]["argsT"] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][1] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList__SetTextureID"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList__SetTextureID"][1]["argsT"][2] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][2]["name"] = "texture_id" +defs["ImDrawList__SetTextureID"][1]["argsT"][2]["type"] = "ImTextureID" +defs["ImDrawList__SetTextureID"][1]["argsoriginal"] = "(ImTextureID texture_id)" +defs["ImDrawList__SetTextureID"][1]["call_args"] = "(texture_id)" +defs["ImDrawList__SetTextureID"][1]["cimguiname"] = "ImDrawList__SetTextureID" +defs["ImDrawList__SetTextureID"][1]["defaults"] = {} +defs["ImDrawList__SetTextureID"][1]["funcname"] = "_SetTextureID" +defs["ImDrawList__SetTextureID"][1]["location"] = "imgui:3270" +defs["ImDrawList__SetTextureID"][1]["ov_cimguiname"] = "ImDrawList__SetTextureID" +defs["ImDrawList__SetTextureID"][1]["ret"] = "void" +defs["ImDrawList__SetTextureID"][1]["signature"] = "(ImTextureID)" +defs["ImDrawList__SetTextureID"][1]["stname"] = "ImDrawList" +defs["ImDrawList__SetTextureID"]["(ImTextureID)"] = defs["ImDrawList__SetTextureID"][1] defs["ImDrawList__TryMergeDrawCmds"] = {} defs["ImDrawList__TryMergeDrawCmds"][1] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["args"] = "(ImDrawList* self)" @@ -2949,7 +2970,7 @@ defs["ImDrawList__TryMergeDrawCmds"][1]["call_args"] = "()" defs["ImDrawList__TryMergeDrawCmds"][1]["cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["defaults"] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["funcname"] = "_TryMergeDrawCmds" -defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:3267" +defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:3266" defs["ImDrawList__TryMergeDrawCmds"][1]["ov_cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["ret"] = "void" defs["ImDrawList__TryMergeDrawCmds"][1]["signature"] = "()" @@ -2966,7 +2987,7 @@ defs["ImDrawList_destroy"][1]["call_args"] = "(self)" defs["ImDrawList_destroy"][1]["cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["defaults"] = {} defs["ImDrawList_destroy"][1]["destructor"] = true -defs["ImDrawList_destroy"][1]["location"] = "imgui:3163" +defs["ImDrawList_destroy"][1]["location"] = "imgui:3162" defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" @@ -4415,7 +4436,7 @@ defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["cimguiname"] = "ImGuiBoxSele defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["constructor"] = true defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["defaults"] = {} defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["funcname"] = "ImGuiBoxSelectState" -defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["location"] = "imgui_internal:1761" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["location"] = "imgui_internal:1762" defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["ov_cimguiname"] = "ImGuiBoxSelectState_ImGuiBoxSelectState" defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["signature"] = "()" defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["stname"] = "ImGuiBoxSelectState" @@ -4446,7 +4467,7 @@ defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["cimguiname"] = "ImGuiCom defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["constructor"] = true defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["defaults"] = {} defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["funcname"] = "ImGuiComboPreviewData" -defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:1075" +defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:1076" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["ov_cimguiname"] = "ImGuiComboPreviewData_ImGuiComboPreviewData" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["signature"] = "()" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["stname"] = "ImGuiComboPreviewData" @@ -4477,7 +4498,7 @@ defs["ImGuiContextHook_ImGuiContextHook"][1]["cimguiname"] = "ImGuiContextHook_I defs["ImGuiContextHook_ImGuiContextHook"][1]["constructor"] = true defs["ImGuiContextHook_ImGuiContextHook"][1]["defaults"] = {} defs["ImGuiContextHook_ImGuiContextHook"][1]["funcname"] = "ImGuiContextHook" -defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:2176" +defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:2183" defs["ImGuiContextHook_ImGuiContextHook"][1]["ov_cimguiname"] = "ImGuiContextHook_ImGuiContextHook" defs["ImGuiContextHook_ImGuiContextHook"][1]["signature"] = "()" defs["ImGuiContextHook_ImGuiContextHook"][1]["stname"] = "ImGuiContextHook" @@ -4511,7 +4532,7 @@ defs["ImGuiContext_ImGuiContext"][1]["cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["constructor"] = true defs["ImGuiContext_ImGuiContext"][1]["defaults"] = {} defs["ImGuiContext_ImGuiContext"][1]["funcname"] = "ImGuiContext" -defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:2547" +defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:2554" defs["ImGuiContext_ImGuiContext"][1]["ov_cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["signature"] = "(ImFontAtlas*)" defs["ImGuiContext_ImGuiContext"][1]["stname"] = "ImGuiContext" @@ -4563,7 +4584,7 @@ defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["cimguiname"] = "ImGuiDebugAl defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["constructor"] = true defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["defaults"] = {} defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["funcname"] = "ImGuiDebugAllocInfo" -defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["location"] = "imgui_internal:2116" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["location"] = "imgui_internal:2123" defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["ov_cimguiname"] = "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo" defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["signature"] = "()" defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["stname"] = "ImGuiDebugAllocInfo" @@ -4594,7 +4615,7 @@ defs["ImGuiDockContext_ImGuiDockContext"][1]["cimguiname"] = "ImGuiDockContext_I defs["ImGuiDockContext_ImGuiDockContext"][1]["constructor"] = true defs["ImGuiDockContext_ImGuiDockContext"][1]["defaults"] = {} defs["ImGuiDockContext_ImGuiDockContext"][1]["funcname"] = "ImGuiDockContext" -defs["ImGuiDockContext_ImGuiDockContext"][1]["location"] = "imgui_internal:1958" +defs["ImGuiDockContext_ImGuiDockContext"][1]["location"] = "imgui_internal:1960" defs["ImGuiDockContext_ImGuiDockContext"][1]["ov_cimguiname"] = "ImGuiDockContext_ImGuiDockContext" defs["ImGuiDockContext_ImGuiDockContext"][1]["signature"] = "()" defs["ImGuiDockContext_ImGuiDockContext"][1]["stname"] = "ImGuiDockContext" @@ -4628,7 +4649,7 @@ defs["ImGuiDockNode_ImGuiDockNode"][1]["cimguiname"] = "ImGuiDockNode_ImGuiDockN defs["ImGuiDockNode_ImGuiDockNode"][1]["constructor"] = true defs["ImGuiDockNode_ImGuiDockNode"][1]["defaults"] = {} defs["ImGuiDockNode_ImGuiDockNode"][1]["funcname"] = "ImGuiDockNode" -defs["ImGuiDockNode_ImGuiDockNode"][1]["location"] = "imgui_internal:1912" +defs["ImGuiDockNode_ImGuiDockNode"][1]["location"] = "imgui_internal:1914" defs["ImGuiDockNode_ImGuiDockNode"][1]["ov_cimguiname"] = "ImGuiDockNode_ImGuiDockNode" defs["ImGuiDockNode_ImGuiDockNode"][1]["signature"] = "(ImGuiID)" defs["ImGuiDockNode_ImGuiDockNode"][1]["stname"] = "ImGuiDockNode" @@ -4645,7 +4666,7 @@ defs["ImGuiDockNode_IsCentralNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsCentralNode"][1]["cimguiname"] = "ImGuiDockNode_IsCentralNode" defs["ImGuiDockNode_IsCentralNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsCentralNode"][1]["funcname"] = "IsCentralNode" -defs["ImGuiDockNode_IsCentralNode"][1]["location"] = "imgui_internal:1917" +defs["ImGuiDockNode_IsCentralNode"][1]["location"] = "imgui_internal:1919" defs["ImGuiDockNode_IsCentralNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsCentralNode" defs["ImGuiDockNode_IsCentralNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsCentralNode"][1]["signature"] = "()const" @@ -4663,7 +4684,7 @@ defs["ImGuiDockNode_IsDockSpace"][1]["call_args"] = "()" defs["ImGuiDockNode_IsDockSpace"][1]["cimguiname"] = "ImGuiDockNode_IsDockSpace" defs["ImGuiDockNode_IsDockSpace"][1]["defaults"] = {} defs["ImGuiDockNode_IsDockSpace"][1]["funcname"] = "IsDockSpace" -defs["ImGuiDockNode_IsDockSpace"][1]["location"] = "imgui_internal:1915" +defs["ImGuiDockNode_IsDockSpace"][1]["location"] = "imgui_internal:1917" defs["ImGuiDockNode_IsDockSpace"][1]["ov_cimguiname"] = "ImGuiDockNode_IsDockSpace" defs["ImGuiDockNode_IsDockSpace"][1]["ret"] = "bool" defs["ImGuiDockNode_IsDockSpace"][1]["signature"] = "()const" @@ -4681,7 +4702,7 @@ defs["ImGuiDockNode_IsEmpty"][1]["call_args"] = "()" defs["ImGuiDockNode_IsEmpty"][1]["cimguiname"] = "ImGuiDockNode_IsEmpty" defs["ImGuiDockNode_IsEmpty"][1]["defaults"] = {} defs["ImGuiDockNode_IsEmpty"][1]["funcname"] = "IsEmpty" -defs["ImGuiDockNode_IsEmpty"][1]["location"] = "imgui_internal:1922" +defs["ImGuiDockNode_IsEmpty"][1]["location"] = "imgui_internal:1924" defs["ImGuiDockNode_IsEmpty"][1]["ov_cimguiname"] = "ImGuiDockNode_IsEmpty" defs["ImGuiDockNode_IsEmpty"][1]["ret"] = "bool" defs["ImGuiDockNode_IsEmpty"][1]["signature"] = "()const" @@ -4699,7 +4720,7 @@ defs["ImGuiDockNode_IsFloatingNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsFloatingNode"][1]["cimguiname"] = "ImGuiDockNode_IsFloatingNode" defs["ImGuiDockNode_IsFloatingNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsFloatingNode"][1]["funcname"] = "IsFloatingNode" -defs["ImGuiDockNode_IsFloatingNode"][1]["location"] = "imgui_internal:1916" +defs["ImGuiDockNode_IsFloatingNode"][1]["location"] = "imgui_internal:1918" defs["ImGuiDockNode_IsFloatingNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsFloatingNode" defs["ImGuiDockNode_IsFloatingNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsFloatingNode"][1]["signature"] = "()const" @@ -4717,7 +4738,7 @@ defs["ImGuiDockNode_IsHiddenTabBar"][1]["call_args"] = "()" defs["ImGuiDockNode_IsHiddenTabBar"][1]["cimguiname"] = "ImGuiDockNode_IsHiddenTabBar" defs["ImGuiDockNode_IsHiddenTabBar"][1]["defaults"] = {} defs["ImGuiDockNode_IsHiddenTabBar"][1]["funcname"] = "IsHiddenTabBar" -defs["ImGuiDockNode_IsHiddenTabBar"][1]["location"] = "imgui_internal:1918" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["location"] = "imgui_internal:1920" defs["ImGuiDockNode_IsHiddenTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsHiddenTabBar" defs["ImGuiDockNode_IsHiddenTabBar"][1]["ret"] = "bool" defs["ImGuiDockNode_IsHiddenTabBar"][1]["signature"] = "()const" @@ -4735,7 +4756,7 @@ defs["ImGuiDockNode_IsLeafNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsLeafNode"][1]["cimguiname"] = "ImGuiDockNode_IsLeafNode" defs["ImGuiDockNode_IsLeafNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsLeafNode"][1]["funcname"] = "IsLeafNode" -defs["ImGuiDockNode_IsLeafNode"][1]["location"] = "imgui_internal:1921" +defs["ImGuiDockNode_IsLeafNode"][1]["location"] = "imgui_internal:1923" defs["ImGuiDockNode_IsLeafNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsLeafNode" defs["ImGuiDockNode_IsLeafNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsLeafNode"][1]["signature"] = "()const" @@ -4753,7 +4774,7 @@ defs["ImGuiDockNode_IsNoTabBar"][1]["call_args"] = "()" defs["ImGuiDockNode_IsNoTabBar"][1]["cimguiname"] = "ImGuiDockNode_IsNoTabBar" defs["ImGuiDockNode_IsNoTabBar"][1]["defaults"] = {} defs["ImGuiDockNode_IsNoTabBar"][1]["funcname"] = "IsNoTabBar" -defs["ImGuiDockNode_IsNoTabBar"][1]["location"] = "imgui_internal:1919" +defs["ImGuiDockNode_IsNoTabBar"][1]["location"] = "imgui_internal:1921" defs["ImGuiDockNode_IsNoTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsNoTabBar" defs["ImGuiDockNode_IsNoTabBar"][1]["ret"] = "bool" defs["ImGuiDockNode_IsNoTabBar"][1]["signature"] = "()const" @@ -4771,7 +4792,7 @@ defs["ImGuiDockNode_IsRootNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsRootNode"][1]["cimguiname"] = "ImGuiDockNode_IsRootNode" defs["ImGuiDockNode_IsRootNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsRootNode"][1]["funcname"] = "IsRootNode" -defs["ImGuiDockNode_IsRootNode"][1]["location"] = "imgui_internal:1914" +defs["ImGuiDockNode_IsRootNode"][1]["location"] = "imgui_internal:1916" defs["ImGuiDockNode_IsRootNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsRootNode" defs["ImGuiDockNode_IsRootNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsRootNode"][1]["signature"] = "()const" @@ -4789,7 +4810,7 @@ defs["ImGuiDockNode_IsSplitNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsSplitNode"][1]["cimguiname"] = "ImGuiDockNode_IsSplitNode" defs["ImGuiDockNode_IsSplitNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsSplitNode"][1]["funcname"] = "IsSplitNode" -defs["ImGuiDockNode_IsSplitNode"][1]["location"] = "imgui_internal:1920" +defs["ImGuiDockNode_IsSplitNode"][1]["location"] = "imgui_internal:1922" defs["ImGuiDockNode_IsSplitNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsSplitNode" defs["ImGuiDockNode_IsSplitNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsSplitNode"][1]["signature"] = "()const" @@ -4810,7 +4831,7 @@ defs["ImGuiDockNode_Rect"][1]["call_args"] = "()" defs["ImGuiDockNode_Rect"][1]["cimguiname"] = "ImGuiDockNode_Rect" defs["ImGuiDockNode_Rect"][1]["defaults"] = {} defs["ImGuiDockNode_Rect"][1]["funcname"] = "Rect" -defs["ImGuiDockNode_Rect"][1]["location"] = "imgui_internal:1923" +defs["ImGuiDockNode_Rect"][1]["location"] = "imgui_internal:1925" defs["ImGuiDockNode_Rect"][1]["nonUDT"] = 1 defs["ImGuiDockNode_Rect"][1]["ov_cimguiname"] = "ImGuiDockNode_Rect" defs["ImGuiDockNode_Rect"][1]["ret"] = "void" @@ -4832,7 +4853,7 @@ defs["ImGuiDockNode_SetLocalFlags"][1]["call_args"] = "(flags)" defs["ImGuiDockNode_SetLocalFlags"][1]["cimguiname"] = "ImGuiDockNode_SetLocalFlags" defs["ImGuiDockNode_SetLocalFlags"][1]["defaults"] = {} defs["ImGuiDockNode_SetLocalFlags"][1]["funcname"] = "SetLocalFlags" -defs["ImGuiDockNode_SetLocalFlags"][1]["location"] = "imgui_internal:1925" +defs["ImGuiDockNode_SetLocalFlags"][1]["location"] = "imgui_internal:1927" defs["ImGuiDockNode_SetLocalFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_SetLocalFlags" defs["ImGuiDockNode_SetLocalFlags"][1]["ret"] = "void" defs["ImGuiDockNode_SetLocalFlags"][1]["signature"] = "(ImGuiDockNodeFlags)" @@ -4850,7 +4871,7 @@ defs["ImGuiDockNode_UpdateMergedFlags"][1]["call_args"] = "()" defs["ImGuiDockNode_UpdateMergedFlags"][1]["cimguiname"] = "ImGuiDockNode_UpdateMergedFlags" defs["ImGuiDockNode_UpdateMergedFlags"][1]["defaults"] = {} defs["ImGuiDockNode_UpdateMergedFlags"][1]["funcname"] = "UpdateMergedFlags" -defs["ImGuiDockNode_UpdateMergedFlags"][1]["location"] = "imgui_internal:1926" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["location"] = "imgui_internal:1928" defs["ImGuiDockNode_UpdateMergedFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_UpdateMergedFlags" defs["ImGuiDockNode_UpdateMergedFlags"][1]["ret"] = "void" defs["ImGuiDockNode_UpdateMergedFlags"][1]["signature"] = "()" @@ -4867,7 +4888,7 @@ defs["ImGuiDockNode_destroy"][1]["call_args"] = "(self)" defs["ImGuiDockNode_destroy"][1]["cimguiname"] = "ImGuiDockNode_destroy" defs["ImGuiDockNode_destroy"][1]["defaults"] = {} defs["ImGuiDockNode_destroy"][1]["destructor"] = true -defs["ImGuiDockNode_destroy"][1]["location"] = "imgui_internal:1913" +defs["ImGuiDockNode_destroy"][1]["location"] = "imgui_internal:1915" defs["ImGuiDockNode_destroy"][1]["ov_cimguiname"] = "ImGuiDockNode_destroy" defs["ImGuiDockNode_destroy"][1]["realdestructor"] = true defs["ImGuiDockNode_destroy"][1]["ret"] = "void" @@ -4884,7 +4905,7 @@ defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["cimguiname"] = "ImGuiIDStackTool_I defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["constructor"] = true defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["defaults"] = {} defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["funcname"] = "ImGuiIDStackTool" -defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["location"] = "imgui_internal:2158" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["location"] = "imgui_internal:2165" defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["ov_cimguiname"] = "ImGuiIDStackTool_ImGuiIDStackTool" defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["signature"] = "()" defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["stname"] = "ImGuiIDStackTool" @@ -4920,7 +4941,7 @@ defs["ImGuiIO_AddFocusEvent"][1]["call_args"] = "(focused)" defs["ImGuiIO_AddFocusEvent"][1]["cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["defaults"] = {} defs["ImGuiIO_AddFocusEvent"][1]["funcname"] = "AddFocusEvent" -defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2408" +defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2399" defs["ImGuiIO_AddFocusEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["ret"] = "void" defs["ImGuiIO_AddFocusEvent"][1]["signature"] = "(bool)" @@ -4941,7 +4962,7 @@ defs["ImGuiIO_AddInputCharacter"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" -defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2409" +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2400" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -4962,7 +4983,7 @@ defs["ImGuiIO_AddInputCharacterUTF16"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacterUTF16"][1]["cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacterUTF16"][1]["funcname"] = "AddInputCharacterUTF16" -defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2410" +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2401" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -4983,7 +5004,7 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["call_args"] = "(str)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" -defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2411" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2402" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -5010,7 +5031,7 @@ defs["ImGuiIO_AddKeyAnalogEvent"][1]["call_args"] = "(key,down,v)" defs["ImGuiIO_AddKeyAnalogEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyAnalogEvent"][1]["funcname"] = "AddKeyAnalogEvent" -defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2402" +defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2393" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyAnalogEvent"][1]["signature"] = "(ImGuiKey,bool,float)" @@ -5034,7 +5055,7 @@ defs["ImGuiIO_AddKeyEvent"][1]["call_args"] = "(key,down)" defs["ImGuiIO_AddKeyEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyEvent"][1]["funcname"] = "AddKeyEvent" -defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2401" +defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2392" defs["ImGuiIO_AddKeyEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyEvent"][1]["signature"] = "(ImGuiKey,bool)" @@ -5058,7 +5079,7 @@ defs["ImGuiIO_AddMouseButtonEvent"][1]["call_args"] = "(button,down)" defs["ImGuiIO_AddMouseButtonEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseButtonEvent"][1]["funcname"] = "AddMouseButtonEvent" -defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2404" +defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2395" defs["ImGuiIO_AddMouseButtonEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseButtonEvent"][1]["signature"] = "(int,bool)" @@ -5082,7 +5103,7 @@ defs["ImGuiIO_AddMousePosEvent"][1]["call_args"] = "(x,y)" defs["ImGuiIO_AddMousePosEvent"][1]["cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMousePosEvent"][1]["funcname"] = "AddMousePosEvent" -defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2403" +defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2394" defs["ImGuiIO_AddMousePosEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMousePosEvent"][1]["signature"] = "(float,float)" @@ -5103,7 +5124,7 @@ defs["ImGuiIO_AddMouseSourceEvent"][1]["call_args"] = "(source)" defs["ImGuiIO_AddMouseSourceEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseSourceEvent" defs["ImGuiIO_AddMouseSourceEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseSourceEvent"][1]["funcname"] = "AddMouseSourceEvent" -defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2406" +defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2397" defs["ImGuiIO_AddMouseSourceEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseSourceEvent" defs["ImGuiIO_AddMouseSourceEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseSourceEvent"][1]["signature"] = "(ImGuiMouseSource)" @@ -5124,7 +5145,7 @@ defs["ImGuiIO_AddMouseViewportEvent"][1]["call_args"] = "(id)" defs["ImGuiIO_AddMouseViewportEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseViewportEvent" defs["ImGuiIO_AddMouseViewportEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseViewportEvent"][1]["funcname"] = "AddMouseViewportEvent" -defs["ImGuiIO_AddMouseViewportEvent"][1]["location"] = "imgui:2407" +defs["ImGuiIO_AddMouseViewportEvent"][1]["location"] = "imgui:2398" defs["ImGuiIO_AddMouseViewportEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseViewportEvent" defs["ImGuiIO_AddMouseViewportEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseViewportEvent"][1]["signature"] = "(ImGuiID)" @@ -5148,7 +5169,7 @@ defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wheel_x,wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["funcname"] = "AddMouseWheelEvent" -defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2405" +defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2396" defs["ImGuiIO_AddMouseWheelEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseWheelEvent"][1]["signature"] = "(float,float)" @@ -5166,7 +5187,7 @@ defs["ImGuiIO_ClearEventsQueue"][1]["call_args"] = "()" defs["ImGuiIO_ClearEventsQueue"][1]["cimguiname"] = "ImGuiIO_ClearEventsQueue" defs["ImGuiIO_ClearEventsQueue"][1]["defaults"] = {} defs["ImGuiIO_ClearEventsQueue"][1]["funcname"] = "ClearEventsQueue" -defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2415" +defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2406" defs["ImGuiIO_ClearEventsQueue"][1]["ov_cimguiname"] = "ImGuiIO_ClearEventsQueue" defs["ImGuiIO_ClearEventsQueue"][1]["ret"] = "void" defs["ImGuiIO_ClearEventsQueue"][1]["signature"] = "()" @@ -5184,7 +5205,7 @@ defs["ImGuiIO_ClearInputKeys"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["defaults"] = {} defs["ImGuiIO_ClearInputKeys"][1]["funcname"] = "ClearInputKeys" -defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2416" +defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2407" defs["ImGuiIO_ClearInputKeys"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["ret"] = "void" defs["ImGuiIO_ClearInputKeys"][1]["signature"] = "()" @@ -5202,7 +5223,7 @@ defs["ImGuiIO_ClearInputMouse"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputMouse"][1]["cimguiname"] = "ImGuiIO_ClearInputMouse" defs["ImGuiIO_ClearInputMouse"][1]["defaults"] = {} defs["ImGuiIO_ClearInputMouse"][1]["funcname"] = "ClearInputMouse" -defs["ImGuiIO_ClearInputMouse"][1]["location"] = "imgui:2417" +defs["ImGuiIO_ClearInputMouse"][1]["location"] = "imgui:2408" defs["ImGuiIO_ClearInputMouse"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputMouse" defs["ImGuiIO_ClearInputMouse"][1]["ret"] = "void" defs["ImGuiIO_ClearInputMouse"][1]["signature"] = "()" @@ -5218,7 +5239,7 @@ defs["ImGuiIO_ImGuiIO"][1]["cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" -defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2500" +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2499" defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -5238,7 +5259,7 @@ defs["ImGuiIO_SetAppAcceptingEvents"][1]["call_args"] = "(accepting_events)" defs["ImGuiIO_SetAppAcceptingEvents"][1]["cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["defaults"] = {} defs["ImGuiIO_SetAppAcceptingEvents"][1]["funcname"] = "SetAppAcceptingEvents" -defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2414" +defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2405" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ov_cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ret"] = "void" defs["ImGuiIO_SetAppAcceptingEvents"][1]["signature"] = "(bool)" @@ -5269,7 +5290,7 @@ defs["ImGuiIO_SetKeyEventNativeData"][1]["cimguiname"] = "ImGuiIO_SetKeyEventNat defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"] = {} defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"]["native_legacy_index"] = "-1" defs["ImGuiIO_SetKeyEventNativeData"][1]["funcname"] = "SetKeyEventNativeData" -defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2413" +defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2404" defs["ImGuiIO_SetKeyEventNativeData"][1]["ov_cimguiname"] = "ImGuiIO_SetKeyEventNativeData" defs["ImGuiIO_SetKeyEventNativeData"][1]["ret"] = "void" defs["ImGuiIO_SetKeyEventNativeData"][1]["signature"] = "(ImGuiKey,int,int,int)" @@ -5301,7 +5322,7 @@ defs["ImGuiInputEvent_ImGuiInputEvent"][1]["cimguiname"] = "ImGuiInputEvent_ImGu defs["ImGuiInputEvent_ImGuiInputEvent"][1]["constructor"] = true defs["ImGuiInputEvent_ImGuiInputEvent"][1]["defaults"] = {} defs["ImGuiInputEvent_ImGuiInputEvent"][1]["funcname"] = "ImGuiInputEvent" -defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1434" +defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1435" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["ov_cimguiname"] = "ImGuiInputEvent_ImGuiInputEvent" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["signature"] = "()" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["stname"] = "ImGuiInputEvent" @@ -5334,7 +5355,7 @@ defs["ImGuiInputTextCallbackData_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ClearSelection"][1]["funcname"] = "ClearSelection" -defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2544" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2543" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["signature"] = "()" @@ -5358,7 +5379,7 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["call_args"] = "(pos,bytes_cou defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" -defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2541" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2540" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -5376,7 +5397,7 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2545" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2544" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -5392,7 +5413,7 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["cimguiname"] = defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" -defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2540" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2539" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -5419,7 +5440,7 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTex defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2542" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2541" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" @@ -5437,7 +5458,7 @@ defs["ImGuiInputTextCallbackData_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_SelectAll"][1]["cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_SelectAll"][1]["funcname"] = "SelectAll" -defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2543" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2542" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_SelectAll"][1]["signature"] = "()" @@ -5471,7 +5492,7 @@ defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["call_args"] = "()" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["defaults"] = {} defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["location"] = "imgui_internal:1121" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["location"] = "imgui_internal:1122" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["signature"] = "()" @@ -5487,7 +5508,7 @@ defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["cimgui defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["constructor"] = true defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["defaults"] = {} defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["funcname"] = "ImGuiInputTextDeactivatedState" -defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["location"] = "imgui_internal:1120" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["location"] = "imgui_internal:1121" defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState" defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["signature"] = "()" defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["stname"] = "ImGuiInputTextDeactivatedState" @@ -5520,7 +5541,7 @@ defs["ImGuiInputTextState_ClearFreeMemory"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearFreeMemory"][1]["cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1148" +defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1149" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearFreeMemory"][1]["signature"] = "()" @@ -5538,7 +5559,7 @@ defs["ImGuiInputTextState_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearSelection"][1]["funcname"] = "ClearSelection" -defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1157" +defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1158" defs["ImGuiInputTextState_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearSelection"][1]["signature"] = "()" @@ -5556,7 +5577,7 @@ defs["ImGuiInputTextState_ClearText"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearText"][1]["cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearText"][1]["funcname"] = "ClearText" -defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1147" +defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1148" defs["ImGuiInputTextState_ClearText"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearText"][1]["signature"] = "()" @@ -5574,7 +5595,7 @@ defs["ImGuiInputTextState_CursorAnimReset"][1]["call_args"] = "()" defs["ImGuiInputTextState_CursorAnimReset"][1]["cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["defaults"] = {} defs["ImGuiInputTextState_CursorAnimReset"][1]["funcname"] = "CursorAnimReset" -defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1154" +defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1155" defs["ImGuiInputTextState_CursorAnimReset"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorAnimReset"][1]["signature"] = "()" @@ -5592,7 +5613,7 @@ defs["ImGuiInputTextState_CursorClamp"][1]["call_args"] = "()" defs["ImGuiInputTextState_CursorClamp"][1]["cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["defaults"] = {} defs["ImGuiInputTextState_CursorClamp"][1]["funcname"] = "CursorClamp" -defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1155" +defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1156" defs["ImGuiInputTextState_CursorClamp"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorClamp"][1]["signature"] = "()" @@ -5610,7 +5631,7 @@ defs["ImGuiInputTextState_GetCursorPos"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetCursorPos"][1]["cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["defaults"] = {} defs["ImGuiInputTextState_GetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1158" +defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1159" defs["ImGuiInputTextState_GetCursorPos"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["ret"] = "int" defs["ImGuiInputTextState_GetCursorPos"][1]["signature"] = "()const" @@ -5628,7 +5649,7 @@ defs["ImGuiInputTextState_GetRedoAvailCount"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["defaults"] = {} defs["ImGuiInputTextState_GetRedoAvailCount"][1]["funcname"] = "GetRedoAvailCount" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "imgui_internal:1150" +defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "imgui_internal:1151" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["signature"] = "()const" @@ -5646,7 +5667,7 @@ defs["ImGuiInputTextState_GetSelectionEnd"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetSelectionEnd"][1]["cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["defaults"] = {} defs["ImGuiInputTextState_GetSelectionEnd"][1]["funcname"] = "GetSelectionEnd" -defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1160" +defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1161" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionEnd"][1]["signature"] = "()const" @@ -5664,7 +5685,7 @@ defs["ImGuiInputTextState_GetSelectionStart"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetSelectionStart"][1]["cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["defaults"] = {} defs["ImGuiInputTextState_GetSelectionStart"][1]["funcname"] = "GetSelectionStart" -defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1159" +defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1160" defs["ImGuiInputTextState_GetSelectionStart"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionStart"][1]["signature"] = "()const" @@ -5682,7 +5703,7 @@ defs["ImGuiInputTextState_GetUndoAvailCount"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["defaults"] = {} defs["ImGuiInputTextState_GetUndoAvailCount"][1]["funcname"] = "GetUndoAvailCount" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "imgui_internal:1149" +defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "imgui_internal:1150" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["signature"] = "()const" @@ -5700,7 +5721,7 @@ defs["ImGuiInputTextState_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_HasSelection"][1]["cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1156" +defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1157" defs["ImGuiInputTextState_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextState_HasSelection"][1]["signature"] = "()const" @@ -5716,7 +5737,7 @@ defs["ImGuiInputTextState_ImGuiInputTextState"][1]["cimguiname"] = "ImGuiInputTe defs["ImGuiInputTextState_ImGuiInputTextState"][1]["constructor"] = true defs["ImGuiInputTextState_ImGuiInputTextState"][1]["defaults"] = {} defs["ImGuiInputTextState_ImGuiInputTextState"][1]["funcname"] = "ImGuiInputTextState" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1146" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1147" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["ov_cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["stname"] = "ImGuiInputTextState" @@ -5736,7 +5757,7 @@ defs["ImGuiInputTextState_OnKeyPressed"][1]["call_args"] = "(key)" defs["ImGuiInputTextState_OnKeyPressed"][1]["cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["defaults"] = {} defs["ImGuiInputTextState_OnKeyPressed"][1]["funcname"] = "OnKeyPressed" -defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1151" +defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1152" defs["ImGuiInputTextState_OnKeyPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["ret"] = "void" defs["ImGuiInputTextState_OnKeyPressed"][1]["signature"] = "(int)" @@ -5754,7 +5775,7 @@ defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["funcname"] = "ReloadUserBufAndKeepSelection" -defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["location"] = "imgui_internal:1169" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["location"] = "imgui_internal:1170" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["signature"] = "()" @@ -5772,7 +5793,7 @@ defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["call_args"] = "()" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["defaults"] = {} defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["funcname"] = "ReloadUserBufAndMoveToEnd" -defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["location"] = "imgui_internal:1170" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["location"] = "imgui_internal:1171" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ret"] = "void" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["signature"] = "()" @@ -5790,7 +5811,7 @@ defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["defaults"] = {} defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["funcname"] = "ReloadUserBufAndSelectAll" -defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["location"] = "imgui_internal:1168" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["location"] = "imgui_internal:1169" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["signature"] = "()" @@ -5808,7 +5829,7 @@ defs["ImGuiInputTextState_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextState_SelectAll"][1]["cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextState_SelectAll"][1]["funcname"] = "SelectAll" -defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1161" +defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1162" defs["ImGuiInputTextState_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_SelectAll"][1]["signature"] = "()" @@ -5840,7 +5861,7 @@ defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["cimguiname"] = "ImGuiKeyOwnerDat defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["constructor"] = true defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["defaults"] = {} defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["funcname"] = "ImGuiKeyOwnerData" -defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1478" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1479" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["ov_cimguiname"] = "ImGuiKeyOwnerData_ImGuiKeyOwnerData" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["signature"] = "()" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["stname"] = "ImGuiKeyOwnerData" @@ -5871,7 +5892,7 @@ defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["cimguiname"] = "ImGuiKeyRout defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["constructor"] = true defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["defaults"] = {} defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["funcname"] = "ImGuiKeyRoutingData" -defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1454" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1455" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["ov_cimguiname"] = "ImGuiKeyRoutingData_ImGuiKeyRoutingData" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["signature"] = "()" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["stname"] = "ImGuiKeyRoutingData" @@ -5904,7 +5925,7 @@ defs["ImGuiKeyRoutingTable_Clear"][1]["call_args"] = "()" defs["ImGuiKeyRoutingTable_Clear"][1]["cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_Clear"][1]["funcname"] = "Clear" -defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1466" +defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1467" defs["ImGuiKeyRoutingTable_Clear"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["ret"] = "void" defs["ImGuiKeyRoutingTable_Clear"][1]["signature"] = "()" @@ -5920,7 +5941,7 @@ defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["cimguiname"] = "ImGuiKeyRo defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["constructor"] = true defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["funcname"] = "ImGuiKeyRoutingTable" -defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1465" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1466" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["signature"] = "()" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["stname"] = "ImGuiKeyRoutingTable" @@ -5951,7 +5972,7 @@ defs["ImGuiLastItemData_ImGuiLastItemData"][1]["cimguiname"] = "ImGuiLastItemDat defs["ImGuiLastItemData_ImGuiLastItemData"][1]["constructor"] = true defs["ImGuiLastItemData_ImGuiLastItemData"][1]["defaults"] = {} defs["ImGuiLastItemData_ImGuiLastItemData"][1]["funcname"] = "ImGuiLastItemData" -defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1273" +defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1274" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["ov_cimguiname"] = "ImGuiLastItemData_ImGuiLastItemData" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["signature"] = "()" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["stname"] = "ImGuiLastItemData" @@ -5982,7 +6003,7 @@ defs["ImGuiListClipperData_ImGuiListClipperData"][1]["cimguiname"] = "ImGuiListC defs["ImGuiListClipperData_ImGuiListClipperData"][1]["constructor"] = true defs["ImGuiListClipperData_ImGuiListClipperData"][1]["defaults"] = {} defs["ImGuiListClipperData_ImGuiListClipperData"][1]["funcname"] = "ImGuiListClipperData" -defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1549" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1550" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["ov_cimguiname"] = "ImGuiListClipperData_ImGuiListClipperData" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["signature"] = "()" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["stname"] = "ImGuiListClipperData" @@ -6002,7 +6023,7 @@ defs["ImGuiListClipperData_Reset"][1]["call_args"] = "(clipper)" defs["ImGuiListClipperData_Reset"][1]["cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["defaults"] = {} defs["ImGuiListClipperData_Reset"][1]["funcname"] = "Reset" -defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1550" +defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1551" defs["ImGuiListClipperData_Reset"][1]["ov_cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["ret"] = "void" defs["ImGuiListClipperData_Reset"][1]["signature"] = "(ImGuiListClipper*)" @@ -6040,7 +6061,7 @@ defs["ImGuiListClipperRange_FromIndices"][1]["cimguiname"] = "ImGuiListClipperRa defs["ImGuiListClipperRange_FromIndices"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromIndices"][1]["funcname"] = "FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["is_static_function"] = true -defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1536" +defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1537" defs["ImGuiListClipperRange_FromIndices"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromIndices"][1]["signature"] = "(int,int)" @@ -6068,7 +6089,7 @@ defs["ImGuiListClipperRange_FromPositions"][1]["cimguiname"] = "ImGuiListClipper defs["ImGuiListClipperRange_FromPositions"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromPositions"][1]["funcname"] = "FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["is_static_function"] = true -defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1537" +defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1538" defs["ImGuiListClipperRange_FromPositions"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromPositions"][1]["signature"] = "(float,float,int,int)" @@ -6093,7 +6114,7 @@ defs["ImGuiListClipper_Begin"][1]["cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" -defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2760" +defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2759" defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" @@ -6111,7 +6132,7 @@ defs["ImGuiListClipper_End"][1]["call_args"] = "()" defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" -defs["ImGuiListClipper_End"][1]["location"] = "imgui:2761" +defs["ImGuiListClipper_End"][1]["location"] = "imgui:2760" defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" @@ -6127,7 +6148,7 @@ defs["ImGuiListClipper_ImGuiListClipper"][1]["cimguiname"] = "ImGuiListClipper_I defs["ImGuiListClipper_ImGuiListClipper"][1]["constructor"] = true defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2758" +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2757" defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" @@ -6147,7 +6168,7 @@ defs["ImGuiListClipper_IncludeItemByIndex"][1]["call_args"] = "(item_index)" defs["ImGuiListClipper_IncludeItemByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" defs["ImGuiListClipper_IncludeItemByIndex"][1]["defaults"] = {} defs["ImGuiListClipper_IncludeItemByIndex"][1]["funcname"] = "IncludeItemByIndex" -defs["ImGuiListClipper_IncludeItemByIndex"][1]["location"] = "imgui:2766" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["location"] = "imgui:2765" defs["ImGuiListClipper_IncludeItemByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" defs["ImGuiListClipper_IncludeItemByIndex"][1]["ret"] = "void" defs["ImGuiListClipper_IncludeItemByIndex"][1]["signature"] = "(int)" @@ -6171,7 +6192,7 @@ defs["ImGuiListClipper_IncludeItemsByIndex"][1]["call_args"] = "(item_begin,item defs["ImGuiListClipper_IncludeItemsByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" defs["ImGuiListClipper_IncludeItemsByIndex"][1]["defaults"] = {} defs["ImGuiListClipper_IncludeItemsByIndex"][1]["funcname"] = "IncludeItemsByIndex" -defs["ImGuiListClipper_IncludeItemsByIndex"][1]["location"] = "imgui:2767" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["location"] = "imgui:2766" defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ret"] = "void" defs["ImGuiListClipper_IncludeItemsByIndex"][1]["signature"] = "(int,int)" @@ -6192,7 +6213,7 @@ defs["ImGuiListClipper_SeekCursorForItem"][1]["call_args"] = "(item_index)" defs["ImGuiListClipper_SeekCursorForItem"][1]["cimguiname"] = "ImGuiListClipper_SeekCursorForItem" defs["ImGuiListClipper_SeekCursorForItem"][1]["defaults"] = {} defs["ImGuiListClipper_SeekCursorForItem"][1]["funcname"] = "SeekCursorForItem" -defs["ImGuiListClipper_SeekCursorForItem"][1]["location"] = "imgui:2772" +defs["ImGuiListClipper_SeekCursorForItem"][1]["location"] = "imgui:2771" defs["ImGuiListClipper_SeekCursorForItem"][1]["ov_cimguiname"] = "ImGuiListClipper_SeekCursorForItem" defs["ImGuiListClipper_SeekCursorForItem"][1]["ret"] = "void" defs["ImGuiListClipper_SeekCursorForItem"][1]["signature"] = "(int)" @@ -6210,7 +6231,7 @@ defs["ImGuiListClipper_Step"][1]["call_args"] = "()" defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" -defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2762" +defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2761" defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" @@ -6227,7 +6248,7 @@ defs["ImGuiListClipper_destroy"][1]["call_args"] = "(self)" defs["ImGuiListClipper_destroy"][1]["cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["defaults"] = {} defs["ImGuiListClipper_destroy"][1]["destructor"] = true -defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2759" +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2758" defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" @@ -6249,7 +6270,7 @@ defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["call_args"] = "(update_offsets)" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["defaults"] = {} defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["funcname"] = "CalcNextTotalWidth" -defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1111" +defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1112" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ov_cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ret"] = "void" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["signature"] = "(bool)" @@ -6279,7 +6300,7 @@ defs["ImGuiMenuColumns_DeclColumns"][1]["call_args"] = "(w_icon,w_label,w_shortc defs["ImGuiMenuColumns_DeclColumns"][1]["cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["defaults"] = {} defs["ImGuiMenuColumns_DeclColumns"][1]["funcname"] = "DeclColumns" -defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1110" +defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1111" defs["ImGuiMenuColumns_DeclColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["ret"] = "float" defs["ImGuiMenuColumns_DeclColumns"][1]["signature"] = "(float,float,float,float)" @@ -6295,7 +6316,7 @@ defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["cimguiname"] = "ImGuiMenuColumns_I defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["constructor"] = true defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["defaults"] = {} defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["funcname"] = "ImGuiMenuColumns" -defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1108" +defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1109" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_ImGuiMenuColumns" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["signature"] = "()" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["stname"] = "ImGuiMenuColumns" @@ -6318,7 +6339,7 @@ defs["ImGuiMenuColumns_Update"][1]["call_args"] = "(spacing,window_reappearing)" defs["ImGuiMenuColumns_Update"][1]["cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["defaults"] = {} defs["ImGuiMenuColumns_Update"][1]["funcname"] = "Update" -defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1109" +defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1110" defs["ImGuiMenuColumns_Update"][1]["ov_cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["ret"] = "void" defs["ImGuiMenuColumns_Update"][1]["signature"] = "(float,bool)" @@ -6350,7 +6371,7 @@ defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["cimguiname"] = "ImGuiMul defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["constructor"] = true defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["defaults"] = {} defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["funcname"] = "ImGuiMultiSelectState" -defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["location"] = "imgui_internal:1808" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["location"] = "imgui_internal:1809" defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["ov_cimguiname"] = "ImGuiMultiSelectState_ImGuiMultiSelectState" defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["signature"] = "()" defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["stname"] = "ImGuiMultiSelectState" @@ -6383,7 +6404,7 @@ defs["ImGuiMultiSelectTempData_Clear"][1]["call_args"] = "()" defs["ImGuiMultiSelectTempData_Clear"][1]["cimguiname"] = "ImGuiMultiSelectTempData_Clear" defs["ImGuiMultiSelectTempData_Clear"][1]["defaults"] = {} defs["ImGuiMultiSelectTempData_Clear"][1]["funcname"] = "Clear" -defs["ImGuiMultiSelectTempData_Clear"][1]["location"] = "imgui_internal:1792" +defs["ImGuiMultiSelectTempData_Clear"][1]["location"] = "imgui_internal:1793" defs["ImGuiMultiSelectTempData_Clear"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_Clear" defs["ImGuiMultiSelectTempData_Clear"][1]["ret"] = "void" defs["ImGuiMultiSelectTempData_Clear"][1]["signature"] = "()" @@ -6401,7 +6422,7 @@ defs["ImGuiMultiSelectTempData_ClearIO"][1]["call_args"] = "()" defs["ImGuiMultiSelectTempData_ClearIO"][1]["cimguiname"] = "ImGuiMultiSelectTempData_ClearIO" defs["ImGuiMultiSelectTempData_ClearIO"][1]["defaults"] = {} defs["ImGuiMultiSelectTempData_ClearIO"][1]["funcname"] = "ClearIO" -defs["ImGuiMultiSelectTempData_ClearIO"][1]["location"] = "imgui_internal:1793" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["location"] = "imgui_internal:1794" defs["ImGuiMultiSelectTempData_ClearIO"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_ClearIO" defs["ImGuiMultiSelectTempData_ClearIO"][1]["ret"] = "void" defs["ImGuiMultiSelectTempData_ClearIO"][1]["signature"] = "()" @@ -6417,7 +6438,7 @@ defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["cimguiname"] = "Im defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["constructor"] = true defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["defaults"] = {} defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["funcname"] = "ImGuiMultiSelectTempData" -defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["location"] = "imgui_internal:1791" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["location"] = "imgui_internal:1792" defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData" defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["signature"] = "()" defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["stname"] = "ImGuiMultiSelectTempData" @@ -6450,7 +6471,7 @@ defs["ImGuiNavItemData_Clear"][1]["call_args"] = "()" defs["ImGuiNavItemData_Clear"][1]["cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["defaults"] = {} defs["ImGuiNavItemData_Clear"][1]["funcname"] = "Clear" -defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1633" +defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1634" defs["ImGuiNavItemData_Clear"][1]["ov_cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["ret"] = "void" defs["ImGuiNavItemData_Clear"][1]["signature"] = "()" @@ -6466,7 +6487,7 @@ defs["ImGuiNavItemData_ImGuiNavItemData"][1]["cimguiname"] = "ImGuiNavItemData_I defs["ImGuiNavItemData_ImGuiNavItemData"][1]["constructor"] = true defs["ImGuiNavItemData_ImGuiNavItemData"][1]["defaults"] = {} defs["ImGuiNavItemData_ImGuiNavItemData"][1]["funcname"] = "ImGuiNavItemData" -defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1632" +defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1633" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["ov_cimguiname"] = "ImGuiNavItemData_ImGuiNavItemData" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["signature"] = "()" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["stname"] = "ImGuiNavItemData" @@ -6499,7 +6520,7 @@ defs["ImGuiNextItemData_ClearFlags"][1]["call_args"] = "()" defs["ImGuiNextItemData_ClearFlags"][1]["cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["defaults"] = {} defs["ImGuiNextItemData_ClearFlags"][1]["funcname"] = "ClearFlags" -defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1257" +defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1258" defs["ImGuiNextItemData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextItemData_ClearFlags"][1]["signature"] = "()" @@ -6515,7 +6536,7 @@ defs["ImGuiNextItemData_ImGuiNextItemData"][1]["cimguiname"] = "ImGuiNextItemDat defs["ImGuiNextItemData_ImGuiNextItemData"][1]["constructor"] = true defs["ImGuiNextItemData_ImGuiNextItemData"][1]["defaults"] = {} defs["ImGuiNextItemData_ImGuiNextItemData"][1]["funcname"] = "ImGuiNextItemData" -defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1256" +defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1257" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["ov_cimguiname"] = "ImGuiNextItemData_ImGuiNextItemData" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["signature"] = "()" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["stname"] = "ImGuiNextItemData" @@ -6548,7 +6569,7 @@ defs["ImGuiNextWindowData_ClearFlags"][1]["call_args"] = "()" defs["ImGuiNextWindowData_ClearFlags"][1]["cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["defaults"] = {} defs["ImGuiNextWindowData_ClearFlags"][1]["funcname"] = "ClearFlags" -defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1228" +defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1229" defs["ImGuiNextWindowData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextWindowData_ClearFlags"][1]["signature"] = "()" @@ -6564,7 +6585,7 @@ defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["cimguiname"] = "ImGuiNextWin defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["constructor"] = true defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["defaults"] = {} defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["funcname"] = "ImGuiNextWindowData" -defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1227" +defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1228" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ImGuiNextWindowData" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["signature"] = "()" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["stname"] = "ImGuiNextWindowData" @@ -6595,7 +6616,7 @@ defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["cimguiname"] = "ImGuiOldColumn defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["constructor"] = true defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["defaults"] = {} defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["funcname"] = "ImGuiOldColumnData" -defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1712" +defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1713" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["ov_cimguiname"] = "ImGuiOldColumnData_ImGuiOldColumnData" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["signature"] = "()" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["stname"] = "ImGuiOldColumnData" @@ -6626,7 +6647,7 @@ defs["ImGuiOldColumns_ImGuiOldColumns"][1]["cimguiname"] = "ImGuiOldColumns_ImGu defs["ImGuiOldColumns_ImGuiOldColumns"][1]["constructor"] = true defs["ImGuiOldColumns_ImGuiOldColumns"][1]["defaults"] = {} defs["ImGuiOldColumns_ImGuiOldColumns"][1]["funcname"] = "ImGuiOldColumns" -defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1733" +defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1734" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["ov_cimguiname"] = "ImGuiOldColumns_ImGuiOldColumns" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["signature"] = "()" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["stname"] = "ImGuiOldColumns" @@ -6657,7 +6678,7 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["cimguiname"] = "ImGuiOnceUpo defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" -defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2618" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2617" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -6690,7 +6711,7 @@ defs["ImGuiPayload_Clear"][1]["call_args"] = "()" defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" -defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2596" +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2595" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -6706,7 +6727,7 @@ defs["ImGuiPayload_ImGuiPayload"][1]["cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" -defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2595" +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2594" defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -6726,7 +6747,7 @@ defs["ImGuiPayload_IsDataType"][1]["call_args"] = "(type)" defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" -defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2597" +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2596" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -6744,7 +6765,7 @@ defs["ImGuiPayload_IsDelivery"][1]["call_args"] = "()" defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" -defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2599" +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2598" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -6762,7 +6783,7 @@ defs["ImGuiPayload_IsPreview"][1]["call_args"] = "()" defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" -defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2598" +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2597" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -6794,7 +6815,7 @@ defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["cimguiname"] = "ImGuiPlatformIO_ImGu defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["constructor"] = true defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["defaults"] = {} defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["funcname"] = "ImGuiPlatformIO" -defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3730" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3675" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["ov_cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["signature"] = "()" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["stname"] = "ImGuiPlatformIO" @@ -6825,7 +6846,7 @@ defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["constructor"] = true defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["defaults"] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["funcname"] = "ImGuiPlatformImeData" -defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3751" +defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3778" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["ov_cimguiname"] = "ImGuiPlatformImeData_ImGuiPlatformImeData" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["signature"] = "()" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["stname"] = "ImGuiPlatformImeData" @@ -6856,7 +6877,7 @@ defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["constructor"] = true defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["defaults"] = {} defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["funcname"] = "ImGuiPlatformMonitor" -defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["location"] = "imgui:3741" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["location"] = "imgui:3768" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["ov_cimguiname"] = "ImGuiPlatformMonitor_ImGuiPlatformMonitor" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["signature"] = "()" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["stname"] = "ImGuiPlatformMonitor" @@ -6887,7 +6908,7 @@ defs["ImGuiPopupData_ImGuiPopupData"][1]["cimguiname"] = "ImGuiPopupData_ImGuiPo defs["ImGuiPopupData_ImGuiPopupData"][1]["constructor"] = true defs["ImGuiPopupData_ImGuiPopupData"][1]["defaults"] = {} defs["ImGuiPopupData_ImGuiPopupData"][1]["funcname"] = "ImGuiPopupData" -defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1353" +defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1354" defs["ImGuiPopupData_ImGuiPopupData"][1]["ov_cimguiname"] = "ImGuiPopupData_ImGuiPopupData" defs["ImGuiPopupData_ImGuiPopupData"][1]["signature"] = "()" defs["ImGuiPopupData_ImGuiPopupData"][1]["stname"] = "ImGuiPopupData" @@ -6921,7 +6942,7 @@ defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["cimguiname"] = "ImGuiPtrOrIndex_ImGu defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["constructor"] = true defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["defaults"] = {} defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["funcname"] = "ImGuiPtrOrIndex" -defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1326" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1327" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["signature"] = "(void*)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["stname"] = "ImGuiPtrOrIndex" @@ -6937,7 +6958,7 @@ defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["cimguiname"] = "ImGuiPtrOrIndex_ImGu defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["constructor"] = true defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["defaults"] = {} defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["funcname"] = "ImGuiPtrOrIndex" -defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1327" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1328" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["signature"] = "(int)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["stname"] = "ImGuiPtrOrIndex" @@ -6974,7 +6995,7 @@ defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" -defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["location"] = "imgui:2980" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["location"] = "imgui:2979" defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ret"] = "void" defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" @@ -6992,7 +7013,7 @@ defs["ImGuiSelectionBasicStorage_Clear"][1]["call_args"] = "()" defs["ImGuiSelectionBasicStorage_Clear"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Clear" defs["ImGuiSelectionBasicStorage_Clear"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_Clear"][1]["funcname"] = "Clear" -defs["ImGuiSelectionBasicStorage_Clear"][1]["location"] = "imgui:2982" +defs["ImGuiSelectionBasicStorage_Clear"][1]["location"] = "imgui:2981" defs["ImGuiSelectionBasicStorage_Clear"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Clear" defs["ImGuiSelectionBasicStorage_Clear"][1]["ret"] = "void" defs["ImGuiSelectionBasicStorage_Clear"][1]["signature"] = "()" @@ -7013,7 +7034,7 @@ defs["ImGuiSelectionBasicStorage_Contains"][1]["call_args"] = "(id)" defs["ImGuiSelectionBasicStorage_Contains"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Contains" defs["ImGuiSelectionBasicStorage_Contains"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_Contains"][1]["funcname"] = "Contains" -defs["ImGuiSelectionBasicStorage_Contains"][1]["location"] = "imgui:2981" +defs["ImGuiSelectionBasicStorage_Contains"][1]["location"] = "imgui:2980" defs["ImGuiSelectionBasicStorage_Contains"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Contains" defs["ImGuiSelectionBasicStorage_Contains"][1]["ret"] = "bool" defs["ImGuiSelectionBasicStorage_Contains"][1]["signature"] = "(ImGuiID)const" @@ -7037,7 +7058,7 @@ defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["call_args"] = "(opaqu defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["funcname"] = "GetNextSelectedItem" -defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["location"] = "imgui:2985" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["location"] = "imgui:2984" defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ret"] = "bool" defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["signature"] = "(void**,ImGuiID*)" @@ -7058,7 +7079,7 @@ defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["call_args"] = "(idx defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["funcname"] = "GetStorageIdFromIndex" -defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["location"] = "imgui:2986" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["location"] = "imgui:2985" defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ret"] = "ImGuiID" defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["signature"] = "(int)" @@ -7074,7 +7095,7 @@ defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["cimguiname"] = defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["constructor"] = true defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["funcname"] = "ImGuiSelectionBasicStorage" -defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["location"] = "imgui:2979" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["location"] = "imgui:2978" defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage" defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["signature"] = "()" defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["stname"] = "ImGuiSelectionBasicStorage" @@ -7097,7 +7118,7 @@ defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["call_args"] = "(id,select defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["funcname"] = "SetItemSelected" -defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["location"] = "imgui:2984" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["location"] = "imgui:2983" defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ret"] = "void" defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["signature"] = "(ImGuiID,bool)" @@ -7119,7 +7140,7 @@ defs["ImGuiSelectionBasicStorage_Swap"][1]["call_args"] = "(*r)" defs["ImGuiSelectionBasicStorage_Swap"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Swap" defs["ImGuiSelectionBasicStorage_Swap"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_Swap"][1]["funcname"] = "Swap" -defs["ImGuiSelectionBasicStorage_Swap"][1]["location"] = "imgui:2983" +defs["ImGuiSelectionBasicStorage_Swap"][1]["location"] = "imgui:2982" defs["ImGuiSelectionBasicStorage_Swap"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Swap" defs["ImGuiSelectionBasicStorage_Swap"][1]["ret"] = "void" defs["ImGuiSelectionBasicStorage_Swap"][1]["signature"] = "(ImGuiSelectionBasicStorage*)" @@ -7156,7 +7177,7 @@ defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["defaults"] = {} defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" -defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["location"] = "imgui:2999" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["location"] = "imgui:2998" defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ret"] = "void" defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" @@ -7172,7 +7193,7 @@ defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["cimguina defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["constructor"] = true defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["defaults"] = {} defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["funcname"] = "ImGuiSelectionExternalStorage" -defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["location"] = "imgui:2998" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["location"] = "imgui:2997" defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage" defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["signature"] = "()" defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["stname"] = "ImGuiSelectionExternalStorage" @@ -7203,7 +7224,7 @@ defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["cimguiname"] = "ImGuiSetti defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["constructor"] = true defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["defaults"] = {} defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["funcname"] = "ImGuiSettingsHandler" -defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:2046" +defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:2053" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["ov_cimguiname"] = "ImGuiSettingsHandler_ImGuiSettingsHandler" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["signature"] = "()" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["stname"] = "ImGuiSettingsHandler" @@ -7234,7 +7255,7 @@ defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["cimguiname"] = "ImGuiStackLe defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["constructor"] = true defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["defaults"] = {} defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["funcname"] = "ImGuiStackLevelInfo" -defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:2145" +defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:2152" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["ov_cimguiname"] = "ImGuiStackLevelInfo_ImGuiStackLevelInfo" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["signature"] = "()" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["stname"] = "ImGuiStackLevelInfo" @@ -7270,7 +7291,7 @@ defs["ImGuiStackSizes_CompareWithContextState"][1]["call_args"] = "(ctx)" defs["ImGuiStackSizes_CompareWithContextState"][1]["cimguiname"] = "ImGuiStackSizes_CompareWithContextState" defs["ImGuiStackSizes_CompareWithContextState"][1]["defaults"] = {} defs["ImGuiStackSizes_CompareWithContextState"][1]["funcname"] = "CompareWithContextState" -defs["ImGuiStackSizes_CompareWithContextState"][1]["location"] = "imgui_internal:1302" +defs["ImGuiStackSizes_CompareWithContextState"][1]["location"] = "imgui_internal:1303" defs["ImGuiStackSizes_CompareWithContextState"][1]["ov_cimguiname"] = "ImGuiStackSizes_CompareWithContextState" defs["ImGuiStackSizes_CompareWithContextState"][1]["ret"] = "void" defs["ImGuiStackSizes_CompareWithContextState"][1]["signature"] = "(ImGuiContext*)" @@ -7286,7 +7307,7 @@ defs["ImGuiStackSizes_ImGuiStackSizes"][1]["cimguiname"] = "ImGuiStackSizes_ImGu defs["ImGuiStackSizes_ImGuiStackSizes"][1]["constructor"] = true defs["ImGuiStackSizes_ImGuiStackSizes"][1]["defaults"] = {} defs["ImGuiStackSizes_ImGuiStackSizes"][1]["funcname"] = "ImGuiStackSizes" -defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1300" +defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1301" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["ov_cimguiname"] = "ImGuiStackSizes_ImGuiStackSizes" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["signature"] = "()" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["stname"] = "ImGuiStackSizes" @@ -7306,7 +7327,7 @@ defs["ImGuiStackSizes_SetToContextState"][1]["call_args"] = "(ctx)" defs["ImGuiStackSizes_SetToContextState"][1]["cimguiname"] = "ImGuiStackSizes_SetToContextState" defs["ImGuiStackSizes_SetToContextState"][1]["defaults"] = {} defs["ImGuiStackSizes_SetToContextState"][1]["funcname"] = "SetToContextState" -defs["ImGuiStackSizes_SetToContextState"][1]["location"] = "imgui_internal:1301" +defs["ImGuiStackSizes_SetToContextState"][1]["location"] = "imgui_internal:1302" defs["ImGuiStackSizes_SetToContextState"][1]["ov_cimguiname"] = "ImGuiStackSizes_SetToContextState" defs["ImGuiStackSizes_SetToContextState"][1]["ret"] = "void" defs["ImGuiStackSizes_SetToContextState"][1]["signature"] = "(ImGuiContext*)" @@ -7344,7 +7365,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][1]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][1]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][1]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2675" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2674" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Int" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" @@ -7363,7 +7384,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][2]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][2]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][2]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2676" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2675" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Float" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" @@ -7382,7 +7403,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][3]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][3]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][3]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2677" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2676" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Ptr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -7417,7 +7438,7 @@ defs["ImGuiStorage_BuildSortByKey"][1]["call_args"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" -defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2716" +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2715" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -7435,7 +7456,7 @@ defs["ImGuiStorage_Clear"][1]["call_args"] = "()" defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" -defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2696" +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2695" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -7460,7 +7481,7 @@ defs["ImGuiStorage_GetBool"][1]["cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" -defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2699" +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2698" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -7485,7 +7506,7 @@ defs["ImGuiStorage_GetBoolRef"][1]["cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" -defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2711" +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2710" defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -7510,7 +7531,7 @@ defs["ImGuiStorage_GetFloat"][1]["cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" -defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2701" +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2700" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -7535,7 +7556,7 @@ defs["ImGuiStorage_GetFloatRef"][1]["cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" -defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2712" +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2711" defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -7560,7 +7581,7 @@ defs["ImGuiStorage_GetInt"][1]["cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" -defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2697" +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2696" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -7585,7 +7606,7 @@ defs["ImGuiStorage_GetIntRef"][1]["cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" -defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2710" +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2709" defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -7606,7 +7627,7 @@ defs["ImGuiStorage_GetVoidPtr"][1]["call_args"] = "(key)" defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" -defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2703" +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2702" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -7631,7 +7652,7 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRe defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "NULL" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" -defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2713" +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2712" defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -7652,7 +7673,7 @@ defs["ImGuiStorage_SetAllInt"][1]["call_args"] = "(val)" defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" -defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2718" +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2717" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -7676,7 +7697,7 @@ defs["ImGuiStorage_SetBool"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" -defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2700" +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2699" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -7700,7 +7721,7 @@ defs["ImGuiStorage_SetFloat"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" -defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2702" +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2701" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -7724,7 +7745,7 @@ defs["ImGuiStorage_SetInt"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" -defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2698" +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2697" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -7748,7 +7769,7 @@ defs["ImGuiStorage_SetVoidPtr"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" -defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2704" +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2703" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -7770,7 +7791,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][1]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][1]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][1]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][1]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:1060" +defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:1061" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Int" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["signature"] = "(ImGuiStyleVar,int)" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["stname"] = "ImGuiStyleMod" @@ -7789,7 +7810,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][2]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][2]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][2]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][2]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:1061" +defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:1062" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Float" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["signature"] = "(ImGuiStyleVar,float)" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["stname"] = "ImGuiStyleMod" @@ -7808,7 +7829,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][3]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][3]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][3]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][3]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:1062" +defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:1063" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Vec2" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["signature"] = "(ImGuiStyleVar,ImVec2)" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["stname"] = "ImGuiStyleMod" @@ -7841,7 +7862,7 @@ defs["ImGuiStyle_ImGuiStyle"][1]["cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" -defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:2263" +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:2271" defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -7861,7 +7882,7 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["call_args"] = "(scale_factor)" defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" -defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:2264" +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:2272" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -7893,7 +7914,7 @@ defs["ImGuiTabBar_ImGuiTabBar"][1]["cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["constructor"] = true defs["ImGuiTabBar_ImGuiTabBar"][1]["defaults"] = {} defs["ImGuiTabBar_ImGuiTabBar"][1]["funcname"] = "ImGuiTabBar" -defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:3043" +defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:3051" defs["ImGuiTabBar_ImGuiTabBar"][1]["ov_cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["signature"] = "()" defs["ImGuiTabBar_ImGuiTabBar"][1]["stname"] = "ImGuiTabBar" @@ -7924,7 +7945,7 @@ defs["ImGuiTabItem_ImGuiTabItem"][1]["cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["constructor"] = true defs["ImGuiTabItem_ImGuiTabItem"][1]["defaults"] = {} defs["ImGuiTabItem_ImGuiTabItem"][1]["funcname"] = "ImGuiTabItem" -defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:3003" +defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:3011" defs["ImGuiTabItem_ImGuiTabItem"][1]["ov_cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["signature"] = "()" defs["ImGuiTabItem_ImGuiTabItem"][1]["stname"] = "ImGuiTabItem" @@ -7955,7 +7976,7 @@ defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["cimguiname"] = "Im defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["constructor"] = true defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["defaults"] = {} defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["funcname"] = "ImGuiTableColumnSettings" -defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:3310" +defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:3319" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableColumnSettings_ImGuiTableColumnSettings" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["signature"] = "()" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["stname"] = "ImGuiTableColumnSettings" @@ -7986,7 +8007,7 @@ defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["cimguiname"] = " defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["constructor"] = true defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["defaults"] = {} defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["funcname"] = "ImGuiTableColumnSortSpecs" -defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2086" +defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2094" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["signature"] = "()" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["stname"] = "ImGuiTableColumnSortSpecs" @@ -8017,7 +8038,7 @@ defs["ImGuiTableColumn_ImGuiTableColumn"][1]["cimguiname"] = "ImGuiTableColumn_I defs["ImGuiTableColumn_ImGuiTableColumn"][1]["constructor"] = true defs["ImGuiTableColumn_ImGuiTableColumn"][1]["defaults"] = {} defs["ImGuiTableColumn_ImGuiTableColumn"][1]["funcname"] = "ImGuiTableColumn" -defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:3105" +defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:3114" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["ov_cimguiname"] = "ImGuiTableColumn_ImGuiTableColumn" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["signature"] = "()" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["stname"] = "ImGuiTableColumn" @@ -8048,7 +8069,7 @@ defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["cimguiname"] = "ImGuiT defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["constructor"] = true defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["defaults"] = {} defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["funcname"] = "ImGuiTableInstanceData" -defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:3148" +defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:3157" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["ov_cimguiname"] = "ImGuiTableInstanceData_ImGuiTableInstanceData" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["signature"] = "()" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["stname"] = "ImGuiTableInstanceData" @@ -8081,7 +8102,7 @@ defs["ImGuiTableSettings_GetColumnSettings"][1]["call_args"] = "()" defs["ImGuiTableSettings_GetColumnSettings"][1]["cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["defaults"] = {} defs["ImGuiTableSettings_GetColumnSettings"][1]["funcname"] = "GetColumnSettings" -defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:3333" +defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:3342" defs["ImGuiTableSettings_GetColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["ret"] = "ImGuiTableColumnSettings*" defs["ImGuiTableSettings_GetColumnSettings"][1]["signature"] = "()" @@ -8097,7 +8118,7 @@ defs["ImGuiTableSettings_ImGuiTableSettings"][1]["cimguiname"] = "ImGuiTableSett defs["ImGuiTableSettings_ImGuiTableSettings"][1]["constructor"] = true defs["ImGuiTableSettings_ImGuiTableSettings"][1]["defaults"] = {} defs["ImGuiTableSettings_ImGuiTableSettings"][1]["funcname"] = "ImGuiTableSettings" -defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:3332" +defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:3341" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_ImGuiTableSettings" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["signature"] = "()" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["stname"] = "ImGuiTableSettings" @@ -8128,7 +8149,7 @@ defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["cimguiname"] = "ImGuiTableSo defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["constructor"] = true defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["defaults"] = {} defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["funcname"] = "ImGuiTableSortSpecs" -defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2075" +defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2083" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableSortSpecs_ImGuiTableSortSpecs" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["signature"] = "()" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["stname"] = "ImGuiTableSortSpecs" @@ -8159,7 +8180,7 @@ defs["ImGuiTableTempData_ImGuiTableTempData"][1]["cimguiname"] = "ImGuiTableTemp defs["ImGuiTableTempData_ImGuiTableTempData"][1]["constructor"] = true defs["ImGuiTableTempData_ImGuiTableTempData"][1]["defaults"] = {} defs["ImGuiTableTempData_ImGuiTableTempData"][1]["funcname"] = "ImGuiTableTempData" -defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:3295" +defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:3304" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["ov_cimguiname"] = "ImGuiTableTempData_ImGuiTableTempData" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["signature"] = "()" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["stname"] = "ImGuiTableTempData" @@ -8190,7 +8211,7 @@ defs["ImGuiTable_ImGuiTable"][1]["cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["constructor"] = true defs["ImGuiTable_ImGuiTable"][1]["defaults"] = {} defs["ImGuiTable_ImGuiTable"][1]["funcname"] = "ImGuiTable" -defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:3267" +defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:3276" defs["ImGuiTable_ImGuiTable"][1]["ov_cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["signature"] = "()" defs["ImGuiTable_ImGuiTable"][1]["stname"] = "ImGuiTable" @@ -8206,7 +8227,7 @@ defs["ImGuiTable_destroy"][1]["call_args"] = "(self)" defs["ImGuiTable_destroy"][1]["cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["defaults"] = {} defs["ImGuiTable_destroy"][1]["destructor"] = true -defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:3268" +defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:3277" defs["ImGuiTable_destroy"][1]["ov_cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["realdestructor"] = true defs["ImGuiTable_destroy"][1]["ret"] = "void" @@ -8223,7 +8244,7 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["cimguiname"] = "ImGuiTextBuffer_ImGu defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2656" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2655" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -8247,7 +8268,7 @@ defs["ImGuiTextBuffer_append"][1]["cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["defaults"] = {} defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiTextBuffer_append"][1]["funcname"] = "append" -defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2665" +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2664" defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -8272,7 +8293,7 @@ defs["ImGuiTextBuffer_appendf"][1]["cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" -defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2666" +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2665" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -8297,7 +8318,7 @@ defs["ImGuiTextBuffer_appendfv"][1]["call_args"] = "(fmt,args)" defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" -defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2667" +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2666" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -8315,7 +8336,7 @@ defs["ImGuiTextBuffer_begin"][1]["call_args"] = "()" defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" -defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2658" +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2657" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -8333,7 +8354,7 @@ defs["ImGuiTextBuffer_c_str"][1]["call_args"] = "()" defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" -defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2664" +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2663" defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()const" @@ -8351,7 +8372,7 @@ defs["ImGuiTextBuffer_clear"][1]["call_args"] = "()" defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" -defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2662" +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2661" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -8385,7 +8406,7 @@ defs["ImGuiTextBuffer_empty"][1]["call_args"] = "()" defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" -defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2661" +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2660" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -8403,7 +8424,7 @@ defs["ImGuiTextBuffer_end"][1]["call_args"] = "()" defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" -defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2659" +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2658" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -8424,7 +8445,7 @@ defs["ImGuiTextBuffer_reserve"][1]["call_args"] = "(capacity)" defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" -defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2663" +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2662" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -8442,7 +8463,7 @@ defs["ImGuiTextBuffer_size"][1]["call_args"] = "()" defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" -defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2660" +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2659" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -8460,7 +8481,7 @@ defs["ImGuiTextFilter_Build"][1]["call_args"] = "()" defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" -defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2629" +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2628" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -8478,7 +8499,7 @@ defs["ImGuiTextFilter_Clear"][1]["call_args"] = "()" defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" -defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2630" +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2629" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -8504,7 +8525,7 @@ defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" defs["ImGuiTextFilter_Draw"][1]["funcname"] = "Draw" -defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2627" +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2626" defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -8524,7 +8545,7 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["funcname"] = "ImGuiTextFilter" -defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2626" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2625" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -8541,7 +8562,7 @@ defs["ImGuiTextFilter_IsActive"][1]["call_args"] = "()" defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" -defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2631" +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2630" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -8566,7 +8587,7 @@ defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilte defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" -defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2628" +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2627" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -8709,7 +8730,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][1]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][1]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][1]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][1]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2639" +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2638" defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Nil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -8728,7 +8749,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][2]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][2]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][2]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][2]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2640" +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2639" defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Str" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -8762,7 +8783,7 @@ defs["ImGuiTextRange_empty"][1]["call_args"] = "()" defs["ImGuiTextRange_empty"][1]["cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["defaults"] = {} defs["ImGuiTextRange_empty"][1]["funcname"] = "empty" -defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2641" +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2640" defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -8786,7 +8807,7 @@ defs["ImGuiTextRange_split"][1]["call_args"] = "(separator,out)" defs["ImGuiTextRange_split"][1]["cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["defaults"] = {} defs["ImGuiTextRange_split"][1]["funcname"] = "split" -defs["ImGuiTextRange_split"][1]["location"] = "imgui:2642" +defs["ImGuiTextRange_split"][1]["location"] = "imgui:2641" defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" @@ -8804,7 +8825,7 @@ defs["ImGuiTypingSelectState_Clear"][1]["call_args"] = "()" defs["ImGuiTypingSelectState_Clear"][1]["cimguiname"] = "ImGuiTypingSelectState_Clear" defs["ImGuiTypingSelectState_Clear"][1]["defaults"] = {} defs["ImGuiTypingSelectState_Clear"][1]["funcname"] = "Clear" -defs["ImGuiTypingSelectState_Clear"][1]["location"] = "imgui_internal:1677" +defs["ImGuiTypingSelectState_Clear"][1]["location"] = "imgui_internal:1678" defs["ImGuiTypingSelectState_Clear"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_Clear" defs["ImGuiTypingSelectState_Clear"][1]["ret"] = "void" defs["ImGuiTypingSelectState_Clear"][1]["signature"] = "()" @@ -8820,7 +8841,7 @@ defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["cimguiname"] = "ImGuiT defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["constructor"] = true defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["defaults"] = {} defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["funcname"] = "ImGuiTypingSelectState" -defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["location"] = "imgui_internal:1676" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["location"] = "imgui_internal:1677" defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_ImGuiTypingSelectState" defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["signature"] = "()" defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["stname"] = "ImGuiTypingSelectState" @@ -8843,7 +8864,7 @@ defs["ImGuiTypingSelectState_destroy"][1]["stname"] = "ImGuiTypingSelectState" defs["ImGuiTypingSelectState_destroy"]["(ImGuiTypingSelectState*)"] = defs["ImGuiTypingSelectState_destroy"][1] defs["ImGuiViewportP_CalcWorkRectPos"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1] = {} -defs["ImGuiViewportP_CalcWorkRectPos"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min)" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min)" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][1] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][1]["name"] = "pOut" @@ -8852,14 +8873,14 @@ defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][2] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][2]["name"] = "self" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][2]["type"] = "ImGuiViewportP*" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3] = {} -defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3]["name"] = "off_min" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3]["name"] = "inset_min" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3]["type"] = "const ImVec2" -defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsoriginal"] = "(const ImVec2& off_min)" -defs["ImGuiViewportP_CalcWorkRectPos"][1]["call_args"] = "(off_min)" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsoriginal"] = "(const ImVec2& inset_min)" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["call_args"] = "(inset_min)" defs["ImGuiViewportP_CalcWorkRectPos"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["funcname"] = "CalcWorkRectPos" -defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1998" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:2005" defs["ImGuiViewportP_CalcWorkRectPos"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectPos"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["ret"] = "void" @@ -8868,7 +8889,7 @@ defs["ImGuiViewportP_CalcWorkRectPos"][1]["stname"] = "ImGuiViewportP" defs["ImGuiViewportP_CalcWorkRectPos"]["(const ImVec2)const"] = defs["ImGuiViewportP_CalcWorkRectPos"][1] defs["ImGuiViewportP_CalcWorkRectSize"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1] = {} -defs["ImGuiViewportP_CalcWorkRectSize"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max)" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max)" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][1] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][1]["name"] = "pOut" @@ -8877,17 +8898,17 @@ defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][2] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][2]["name"] = "self" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][2]["type"] = "ImGuiViewportP*" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3] = {} -defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3]["name"] = "off_min" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3]["name"] = "inset_min" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3]["type"] = "const ImVec2" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4] = {} -defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4]["name"] = "off_max" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4]["name"] = "inset_max" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4]["type"] = "const ImVec2" -defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsoriginal"] = "(const ImVec2& off_min,const ImVec2& off_max)" -defs["ImGuiViewportP_CalcWorkRectSize"][1]["call_args"] = "(off_min,off_max)" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsoriginal"] = "(const ImVec2& inset_min,const ImVec2& inset_max)" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["call_args"] = "(inset_min,inset_max)" defs["ImGuiViewportP_CalcWorkRectSize"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["funcname"] = "CalcWorkRectSize" -defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1999" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:2006" defs["ImGuiViewportP_CalcWorkRectSize"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectSize"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["ret"] = "void" @@ -8906,7 +8927,7 @@ defs["ImGuiViewportP_ClearRequestFlags"][1]["call_args"] = "()" defs["ImGuiViewportP_ClearRequestFlags"][1]["cimguiname"] = "ImGuiViewportP_ClearRequestFlags" defs["ImGuiViewportP_ClearRequestFlags"][1]["defaults"] = {} defs["ImGuiViewportP_ClearRequestFlags"][1]["funcname"] = "ClearRequestFlags" -defs["ImGuiViewportP_ClearRequestFlags"][1]["location"] = "imgui_internal:1995" +defs["ImGuiViewportP_ClearRequestFlags"][1]["location"] = "imgui_internal:2002" defs["ImGuiViewportP_ClearRequestFlags"][1]["ov_cimguiname"] = "ImGuiViewportP_ClearRequestFlags" defs["ImGuiViewportP_ClearRequestFlags"][1]["ret"] = "void" defs["ImGuiViewportP_ClearRequestFlags"][1]["signature"] = "()" @@ -8927,7 +8948,7 @@ defs["ImGuiViewportP_GetBuildWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetBuildWorkRect"][1]["cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetBuildWorkRect"][1]["funcname"] = "GetBuildWorkRect" -defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:2005" +defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:2012" defs["ImGuiViewportP_GetBuildWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetBuildWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["ret"] = "void" @@ -8949,7 +8970,7 @@ defs["ImGuiViewportP_GetMainRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetMainRect"][1]["cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetMainRect"][1]["funcname"] = "GetMainRect" -defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:2003" +defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:2010" defs["ImGuiViewportP_GetMainRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetMainRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["ret"] = "void" @@ -8971,7 +8992,7 @@ defs["ImGuiViewportP_GetWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetWorkRect"][1]["cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetWorkRect"][1]["funcname"] = "GetWorkRect" -defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:2004" +defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:2011" defs["ImGuiViewportP_GetWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["ret"] = "void" @@ -8988,7 +9009,7 @@ defs["ImGuiViewportP_ImGuiViewportP"][1]["cimguiname"] = "ImGuiViewportP_ImGuiVi defs["ImGuiViewportP_ImGuiViewportP"][1]["constructor"] = true defs["ImGuiViewportP_ImGuiViewportP"][1]["defaults"] = {} defs["ImGuiViewportP_ImGuiViewportP"][1]["funcname"] = "ImGuiViewportP" -defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1993" +defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:2000" defs["ImGuiViewportP_ImGuiViewportP"][1]["ov_cimguiname"] = "ImGuiViewportP_ImGuiViewportP" defs["ImGuiViewportP_ImGuiViewportP"][1]["signature"] = "()" defs["ImGuiViewportP_ImGuiViewportP"][1]["stname"] = "ImGuiViewportP" @@ -9005,7 +9026,7 @@ defs["ImGuiViewportP_UpdateWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_UpdateWorkRect"][1]["cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_UpdateWorkRect"][1]["funcname"] = "UpdateWorkRect" -defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:2000" +defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:2007" defs["ImGuiViewportP_UpdateWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["ret"] = "void" defs["ImGuiViewportP_UpdateWorkRect"][1]["signature"] = "()" @@ -9022,7 +9043,7 @@ defs["ImGuiViewportP_destroy"][1]["call_args"] = "(self)" defs["ImGuiViewportP_destroy"][1]["cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["defaults"] = {} defs["ImGuiViewportP_destroy"][1]["destructor"] = true -defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1994" +defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:2001" defs["ImGuiViewportP_destroy"][1]["ov_cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["realdestructor"] = true defs["ImGuiViewportP_destroy"][1]["ret"] = "void" @@ -9116,7 +9137,7 @@ defs["ImGuiWindowClass_ImGuiWindowClass"][1]["cimguiname"] = "ImGuiWindowClass_I defs["ImGuiWindowClass_ImGuiWindowClass"][1]["constructor"] = true defs["ImGuiWindowClass_ImGuiWindowClass"][1]["defaults"] = {} defs["ImGuiWindowClass_ImGuiWindowClass"][1]["funcname"] = "ImGuiWindowClass" -defs["ImGuiWindowClass_ImGuiWindowClass"][1]["location"] = "imgui:2577" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["location"] = "imgui:2576" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["ov_cimguiname"] = "ImGuiWindowClass_ImGuiWindowClass" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["signature"] = "()" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["stname"] = "ImGuiWindowClass" @@ -9149,7 +9170,7 @@ defs["ImGuiWindowSettings_GetName"][1]["call_args"] = "()" defs["ImGuiWindowSettings_GetName"][1]["cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["defaults"] = {} defs["ImGuiWindowSettings_GetName"][1]["funcname"] = "GetName" -defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:2031" +defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:2038" defs["ImGuiWindowSettings_GetName"][1]["ov_cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["ret"] = "char*" defs["ImGuiWindowSettings_GetName"][1]["signature"] = "()" @@ -9165,7 +9186,7 @@ defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["cimguiname"] = "ImGuiWindowS defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["constructor"] = true defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["defaults"] = {} defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["funcname"] = "ImGuiWindowSettings" -defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:2030" +defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:2037" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["ov_cimguiname"] = "ImGuiWindowSettings_ImGuiWindowSettings" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["signature"] = "()" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["stname"] = "ImGuiWindowSettings" @@ -9198,7 +9219,7 @@ defs["ImGuiWindow_CalcFontSize"][1]["call_args"] = "()" defs["ImGuiWindow_CalcFontSize"][1]["cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["defaults"] = {} defs["ImGuiWindow_CalcFontSize"][1]["funcname"] = "CalcFontSize" -defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2960" +defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2968" defs["ImGuiWindow_CalcFontSize"][1]["ov_cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["ret"] = "float" defs["ImGuiWindow_CalcFontSize"][1]["signature"] = "()const" @@ -9223,7 +9244,7 @@ defs["ImGuiWindow_GetID"][1]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][1]["defaults"] = {} defs["ImGuiWindow_GetID"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiWindow_GetID"][1]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2953" +defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2960" defs["ImGuiWindow_GetID"][1]["ov_cimguiname"] = "ImGuiWindow_GetID_Str" defs["ImGuiWindow_GetID"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][1]["signature"] = "(const char*,const char*)" @@ -9242,7 +9263,7 @@ defs["ImGuiWindow_GetID"][2]["call_args"] = "(ptr)" defs["ImGuiWindow_GetID"][2]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][2]["defaults"] = {} defs["ImGuiWindow_GetID"][2]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2954" +defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2961" defs["ImGuiWindow_GetID"][2]["ov_cimguiname"] = "ImGuiWindow_GetID_Ptr" defs["ImGuiWindow_GetID"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][2]["signature"] = "(const void*)" @@ -9261,7 +9282,7 @@ defs["ImGuiWindow_GetID"][3]["call_args"] = "(n)" defs["ImGuiWindow_GetID"][3]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][3]["defaults"] = {} defs["ImGuiWindow_GetID"][3]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2955" +defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2962" defs["ImGuiWindow_GetID"][3]["ov_cimguiname"] = "ImGuiWindow_GetID_Int" defs["ImGuiWindow_GetID"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][3]["signature"] = "(int)" @@ -9269,6 +9290,27 @@ defs["ImGuiWindow_GetID"][3]["stname"] = "ImGuiWindow" defs["ImGuiWindow_GetID"]["(const char*,const char*)"] = defs["ImGuiWindow_GetID"][1] defs["ImGuiWindow_GetID"]["(const void*)"] = defs["ImGuiWindow_GetID"][2] defs["ImGuiWindow_GetID"]["(int)"] = defs["ImGuiWindow_GetID"][3] +defs["ImGuiWindow_GetIDFromPos"] = {} +defs["ImGuiWindow_GetIDFromPos"][1] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["args"] = "(ImGuiWindow* self,const ImVec2 p_abs)" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][1] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][1]["name"] = "self" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][2] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][2]["name"] = "p_abs" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImGuiWindow_GetIDFromPos"][1]["argsoriginal"] = "(const ImVec2& p_abs)" +defs["ImGuiWindow_GetIDFromPos"][1]["call_args"] = "(p_abs)" +defs["ImGuiWindow_GetIDFromPos"][1]["cimguiname"] = "ImGuiWindow_GetIDFromPos" +defs["ImGuiWindow_GetIDFromPos"][1]["defaults"] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["funcname"] = "GetIDFromPos" +defs["ImGuiWindow_GetIDFromPos"][1]["location"] = "imgui_internal:2963" +defs["ImGuiWindow_GetIDFromPos"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromPos" +defs["ImGuiWindow_GetIDFromPos"][1]["ret"] = "ImGuiID" +defs["ImGuiWindow_GetIDFromPos"][1]["signature"] = "(const ImVec2)" +defs["ImGuiWindow_GetIDFromPos"][1]["stname"] = "ImGuiWindow" +defs["ImGuiWindow_GetIDFromPos"]["(const ImVec2)"] = defs["ImGuiWindow_GetIDFromPos"][1] defs["ImGuiWindow_GetIDFromRectangle"] = {} defs["ImGuiWindow_GetIDFromRectangle"][1] = {} defs["ImGuiWindow_GetIDFromRectangle"][1]["args"] = "(ImGuiWindow* self,const ImRect r_abs)" @@ -9284,7 +9326,7 @@ defs["ImGuiWindow_GetIDFromRectangle"][1]["call_args"] = "(r_abs)" defs["ImGuiWindow_GetIDFromRectangle"][1]["cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["defaults"] = {} defs["ImGuiWindow_GetIDFromRectangle"][1]["funcname"] = "GetIDFromRectangle" -defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2956" +defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2964" defs["ImGuiWindow_GetIDFromRectangle"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDFromRectangle"][1]["signature"] = "(const ImRect)" @@ -9306,7 +9348,7 @@ defs["ImGuiWindow_ImGuiWindow"][1]["cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["constructor"] = true defs["ImGuiWindow_ImGuiWindow"][1]["defaults"] = {} defs["ImGuiWindow_ImGuiWindow"][1]["funcname"] = "ImGuiWindow" -defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2949" +defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2956" defs["ImGuiWindow_ImGuiWindow"][1]["ov_cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["signature"] = "(ImGuiContext*,const char*)" defs["ImGuiWindow_ImGuiWindow"][1]["stname"] = "ImGuiWindow" @@ -9326,7 +9368,7 @@ defs["ImGuiWindow_MenuBarRect"][1]["call_args"] = "()" defs["ImGuiWindow_MenuBarRect"][1]["cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["defaults"] = {} defs["ImGuiWindow_MenuBarRect"][1]["funcname"] = "MenuBarRect" -defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2962" +defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2970" defs["ImGuiWindow_MenuBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_MenuBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["ret"] = "void" @@ -9348,7 +9390,7 @@ defs["ImGuiWindow_Rect"][1]["call_args"] = "()" defs["ImGuiWindow_Rect"][1]["cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["defaults"] = {} defs["ImGuiWindow_Rect"][1]["funcname"] = "Rect" -defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2959" +defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2967" defs["ImGuiWindow_Rect"][1]["nonUDT"] = 1 defs["ImGuiWindow_Rect"][1]["ov_cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["ret"] = "void" @@ -9370,7 +9412,7 @@ defs["ImGuiWindow_TitleBarRect"][1]["call_args"] = "()" defs["ImGuiWindow_TitleBarRect"][1]["cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["defaults"] = {} defs["ImGuiWindow_TitleBarRect"][1]["funcname"] = "TitleBarRect" -defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2961" +defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2969" defs["ImGuiWindow_TitleBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_TitleBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["ret"] = "void" @@ -9388,7 +9430,7 @@ defs["ImGuiWindow_destroy"][1]["call_args"] = "(self)" defs["ImGuiWindow_destroy"][1]["cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["defaults"] = {} defs["ImGuiWindow_destroy"][1]["destructor"] = true -defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2951" +defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2958" defs["ImGuiWindow_destroy"][1]["ov_cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["realdestructor"] = true defs["ImGuiWindow_destroy"][1]["ret"] = "void" @@ -10802,7 +10844,7 @@ defs["ImVec2_ImVec2"][1]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][1]["constructor"] = true defs["ImVec2_ImVec2"][1]["defaults"] = {} defs["ImVec2_ImVec2"][1]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][1]["location"] = "imgui:295" +defs["ImVec2_ImVec2"][1]["location"] = "imgui:296" defs["ImVec2_ImVec2"][1]["ov_cimguiname"] = "ImVec2_ImVec2_Nil" defs["ImVec2_ImVec2"][1]["signature"] = "()" defs["ImVec2_ImVec2"][1]["stname"] = "ImVec2" @@ -10821,7 +10863,7 @@ defs["ImVec2_ImVec2"][2]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][2]["constructor"] = true defs["ImVec2_ImVec2"][2]["defaults"] = {} defs["ImVec2_ImVec2"][2]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][2]["location"] = "imgui:296" +defs["ImVec2_ImVec2"][2]["location"] = "imgui:297" defs["ImVec2_ImVec2"][2]["ov_cimguiname"] = "ImVec2_ImVec2_Float" defs["ImVec2_ImVec2"][2]["signature"] = "(float,float)" defs["ImVec2_ImVec2"][2]["stname"] = "ImVec2" @@ -10921,7 +10963,7 @@ defs["ImVec4_ImVec4"][1]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][1]["constructor"] = true defs["ImVec4_ImVec4"][1]["defaults"] = {} defs["ImVec4_ImVec4"][1]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][1]["location"] = "imgui:308" +defs["ImVec4_ImVec4"][1]["location"] = "imgui:309" defs["ImVec4_ImVec4"][1]["ov_cimguiname"] = "ImVec4_ImVec4_Nil" defs["ImVec4_ImVec4"][1]["signature"] = "()" defs["ImVec4_ImVec4"][1]["stname"] = "ImVec4" @@ -10946,7 +10988,7 @@ defs["ImVec4_ImVec4"][2]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][2]["constructor"] = true defs["ImVec4_ImVec4"][2]["defaults"] = {} defs["ImVec4_ImVec4"][2]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][2]["location"] = "imgui:309" +defs["ImVec4_ImVec4"][2]["location"] = "imgui:310" defs["ImVec4_ImVec4"][2]["ov_cimguiname"] = "ImVec4_ImVec4_Float" defs["ImVec4_ImVec4"][2]["signature"] = "(float,float,float,float)" defs["ImVec4_ImVec4"][2]["stname"] = "ImVec4" @@ -10978,7 +11020,7 @@ defs["ImVector_ImVector"][1]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" -defs["ImVector_ImVector"][1]["location"] = "imgui:2143" +defs["ImVector_ImVector"][1]["location"] = "imgui:2151" defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVector_Nil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -10995,7 +11037,7 @@ defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][2]["constructor"] = true defs["ImVector_ImVector"][2]["defaults"] = {} defs["ImVector_ImVector"][2]["funcname"] = "ImVector" -defs["ImVector_ImVector"][2]["location"] = "imgui:2144" +defs["ImVector_ImVector"][2]["location"] = "imgui:2152" defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVector_Vector_T_" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_T )" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -11017,7 +11059,7 @@ defs["ImVector__grow_capacity"][1]["call_args"] = "(sz)" defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" -defs["ImVector__grow_capacity"][1]["location"] = "imgui:2170" +defs["ImVector__grow_capacity"][1]["location"] = "imgui:2178" defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" defs["ImVector__grow_capacity"][1]["signature"] = "(int)const" @@ -11036,7 +11078,7 @@ defs["ImVector_back"][1]["call_args"] = "()" defs["ImVector_back"][1]["cimguiname"] = "ImVector_back" defs["ImVector_back"][1]["defaults"] = {} defs["ImVector_back"][1]["funcname"] = "back" -defs["ImVector_back"][1]["location"] = "imgui:2166" +defs["ImVector_back"][1]["location"] = "imgui:2174" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_back_Nil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -11054,7 +11096,7 @@ defs["ImVector_back"][2]["call_args"] = "()" defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" defs["ImVector_back"][2]["defaults"] = {} defs["ImVector_back"][2]["funcname"] = "back" -defs["ImVector_back"][2]["location"] = "imgui:2167" +defs["ImVector_back"][2]["location"] = "imgui:2175" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back__const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -11075,7 +11117,7 @@ defs["ImVector_begin"][1]["call_args"] = "()" defs["ImVector_begin"][1]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][1]["defaults"] = {} defs["ImVector_begin"][1]["funcname"] = "begin" -defs["ImVector_begin"][1]["location"] = "imgui:2160" +defs["ImVector_begin"][1]["location"] = "imgui:2168" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin_Nil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -11092,7 +11134,7 @@ defs["ImVector_begin"][2]["call_args"] = "()" defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["defaults"] = {} defs["ImVector_begin"][2]["funcname"] = "begin" -defs["ImVector_begin"][2]["location"] = "imgui:2161" +defs["ImVector_begin"][2]["location"] = "imgui:2169" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin__const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -11112,7 +11154,7 @@ defs["ImVector_capacity"][1]["call_args"] = "()" defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" -defs["ImVector_capacity"][1]["location"] = "imgui:2156" +defs["ImVector_capacity"][1]["location"] = "imgui:2164" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -11131,7 +11173,7 @@ defs["ImVector_clear"][1]["call_args"] = "()" defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" -defs["ImVector_clear"][1]["location"] = "imgui:2148" +defs["ImVector_clear"][1]["location"] = "imgui:2156" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -11150,7 +11192,7 @@ defs["ImVector_clear_delete"][1]["call_args"] = "()" defs["ImVector_clear_delete"][1]["cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["defaults"] = {} defs["ImVector_clear_delete"][1]["funcname"] = "clear_delete" -defs["ImVector_clear_delete"][1]["location"] = "imgui:2149" +defs["ImVector_clear_delete"][1]["location"] = "imgui:2157" defs["ImVector_clear_delete"][1]["ov_cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["ret"] = "void" defs["ImVector_clear_delete"][1]["signature"] = "()" @@ -11169,7 +11211,7 @@ defs["ImVector_clear_destruct"][1]["call_args"] = "()" defs["ImVector_clear_destruct"][1]["cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["defaults"] = {} defs["ImVector_clear_destruct"][1]["funcname"] = "clear_destruct" -defs["ImVector_clear_destruct"][1]["location"] = "imgui:2150" +defs["ImVector_clear_destruct"][1]["location"] = "imgui:2158" defs["ImVector_clear_destruct"][1]["ov_cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["ret"] = "void" defs["ImVector_clear_destruct"][1]["signature"] = "()" @@ -11191,7 +11233,7 @@ defs["ImVector_contains"][1]["call_args"] = "(v)" defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" -defs["ImVector_contains"][1]["location"] = "imgui:2185" +defs["ImVector_contains"][1]["location"] = "imgui:2193" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -11209,7 +11251,7 @@ defs["ImVector_destroy"][1]["call_args"] = "(self)" defs["ImVector_destroy"][1]["cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["defaults"] = {} defs["ImVector_destroy"][1]["destructor"] = true -defs["ImVector_destroy"][1]["location"] = "imgui:2146" +defs["ImVector_destroy"][1]["location"] = "imgui:2154" defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" @@ -11229,7 +11271,7 @@ defs["ImVector_empty"][1]["call_args"] = "()" defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" -defs["ImVector_empty"][1]["location"] = "imgui:2152" +defs["ImVector_empty"][1]["location"] = "imgui:2160" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -11248,7 +11290,7 @@ defs["ImVector_end"][1]["call_args"] = "()" defs["ImVector_end"][1]["cimguiname"] = "ImVector_end" defs["ImVector_end"][1]["defaults"] = {} defs["ImVector_end"][1]["funcname"] = "end" -defs["ImVector_end"][1]["location"] = "imgui:2162" +defs["ImVector_end"][1]["location"] = "imgui:2170" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end_Nil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -11265,7 +11307,7 @@ defs["ImVector_end"][2]["call_args"] = "()" defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["defaults"] = {} defs["ImVector_end"][2]["funcname"] = "end" -defs["ImVector_end"][2]["location"] = "imgui:2163" +defs["ImVector_end"][2]["location"] = "imgui:2171" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end__const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -11288,7 +11330,7 @@ defs["ImVector_erase"][1]["call_args"] = "(it)" defs["ImVector_erase"][1]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][1]["defaults"] = {} defs["ImVector_erase"][1]["funcname"] = "erase" -defs["ImVector_erase"][1]["location"] = "imgui:2181" +defs["ImVector_erase"][1]["location"] = "imgui:2189" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase_Nil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -11311,7 +11353,7 @@ defs["ImVector_erase"][2]["call_args"] = "(it,it_last)" defs["ImVector_erase"][2]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][2]["defaults"] = {} defs["ImVector_erase"][2]["funcname"] = "erase" -defs["ImVector_erase"][2]["location"] = "imgui:2182" +defs["ImVector_erase"][2]["location"] = "imgui:2190" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_erase_TPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -11334,7 +11376,7 @@ defs["ImVector_erase_unsorted"][1]["call_args"] = "(it)" defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" -defs["ImVector_erase_unsorted"][1]["location"] = "imgui:2183" +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:2191" defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["ret"] = "T*" defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" @@ -11356,7 +11398,7 @@ defs["ImVector_find"][1]["call_args"] = "(v)" defs["ImVector_find"][1]["cimguiname"] = "ImVector_find" defs["ImVector_find"][1]["defaults"] = {} defs["ImVector_find"][1]["funcname"] = "find" -defs["ImVector_find"][1]["location"] = "imgui:2186" +defs["ImVector_find"][1]["location"] = "imgui:2194" defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_find_Nil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -11376,7 +11418,7 @@ defs["ImVector_find"][2]["call_args"] = "(v)" defs["ImVector_find"][2]["cimguiname"] = "ImVector_find" defs["ImVector_find"][2]["defaults"] = {} defs["ImVector_find"][2]["funcname"] = "find" -defs["ImVector_find"][2]["location"] = "imgui:2187" +defs["ImVector_find"][2]["location"] = "imgui:2195" defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find__const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -11399,7 +11441,7 @@ defs["ImVector_find_erase"][1]["call_args"] = "(v)" defs["ImVector_find_erase"][1]["cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["defaults"] = {} defs["ImVector_find_erase"][1]["funcname"] = "find_erase" -defs["ImVector_find_erase"][1]["location"] = "imgui:2189" +defs["ImVector_find_erase"][1]["location"] = "imgui:2197" defs["ImVector_find_erase"][1]["ov_cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["ret"] = "bool" defs["ImVector_find_erase"][1]["signature"] = "(const T)" @@ -11421,7 +11463,7 @@ defs["ImVector_find_erase_unsorted"][1]["call_args"] = "(v)" defs["ImVector_find_erase_unsorted"][1]["cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["defaults"] = {} defs["ImVector_find_erase_unsorted"][1]["funcname"] = "find_erase_unsorted" -defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:2190" +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:2198" defs["ImVector_find_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["ret"] = "bool" defs["ImVector_find_erase_unsorted"][1]["signature"] = "(const T)" @@ -11443,7 +11485,7 @@ defs["ImVector_find_index"][1]["call_args"] = "(v)" defs["ImVector_find_index"][1]["cimguiname"] = "ImVector_find_index" defs["ImVector_find_index"][1]["defaults"] = {} defs["ImVector_find_index"][1]["funcname"] = "find_index" -defs["ImVector_find_index"][1]["location"] = "imgui:2188" +defs["ImVector_find_index"][1]["location"] = "imgui:2196" defs["ImVector_find_index"][1]["ov_cimguiname"] = "ImVector_find_index" defs["ImVector_find_index"][1]["ret"] = "int" defs["ImVector_find_index"][1]["signature"] = "(const T)const" @@ -11462,7 +11504,7 @@ defs["ImVector_front"][1]["call_args"] = "()" defs["ImVector_front"][1]["cimguiname"] = "ImVector_front" defs["ImVector_front"][1]["defaults"] = {} defs["ImVector_front"][1]["funcname"] = "front" -defs["ImVector_front"][1]["location"] = "imgui:2164" +defs["ImVector_front"][1]["location"] = "imgui:2172" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_front_Nil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -11480,7 +11522,7 @@ defs["ImVector_front"][2]["call_args"] = "()" defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" defs["ImVector_front"][2]["defaults"] = {} defs["ImVector_front"][2]["funcname"] = "front" -defs["ImVector_front"][2]["location"] = "imgui:2165" +defs["ImVector_front"][2]["location"] = "imgui:2173" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front__const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -11504,7 +11546,7 @@ defs["ImVector_index_from_ptr"][1]["call_args"] = "(it)" defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImVector_index_from_ptr"][1]["location"] = "imgui:2191" +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:2199" defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -11529,7 +11571,7 @@ defs["ImVector_insert"][1]["call_args"] = "(it,v)" defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" -defs["ImVector_insert"][1]["location"] = "imgui:2184" +defs["ImVector_insert"][1]["location"] = "imgui:2192" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" @@ -11548,7 +11590,7 @@ defs["ImVector_max_size"][1]["call_args"] = "()" defs["ImVector_max_size"][1]["cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["defaults"] = {} defs["ImVector_max_size"][1]["funcname"] = "max_size" -defs["ImVector_max_size"][1]["location"] = "imgui:2155" +defs["ImVector_max_size"][1]["location"] = "imgui:2163" defs["ImVector_max_size"][1]["ov_cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["ret"] = "int" defs["ImVector_max_size"][1]["signature"] = "()const" @@ -11567,7 +11609,7 @@ defs["ImVector_pop_back"][1]["call_args"] = "()" defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" -defs["ImVector_pop_back"][1]["location"] = "imgui:2179" +defs["ImVector_pop_back"][1]["location"] = "imgui:2187" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -11589,7 +11631,7 @@ defs["ImVector_push_back"][1]["call_args"] = "(v)" defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" -defs["ImVector_push_back"][1]["location"] = "imgui:2178" +defs["ImVector_push_back"][1]["location"] = "imgui:2186" defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["ret"] = "void" defs["ImVector_push_back"][1]["signature"] = "(const T)" @@ -11611,7 +11653,7 @@ defs["ImVector_push_front"][1]["call_args"] = "(v)" defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" -defs["ImVector_push_front"][1]["location"] = "imgui:2180" +defs["ImVector_push_front"][1]["location"] = "imgui:2188" defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["ret"] = "void" defs["ImVector_push_front"][1]["signature"] = "(const T)" @@ -11633,7 +11675,7 @@ defs["ImVector_reserve"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" -defs["ImVector_reserve"][1]["location"] = "imgui:2174" +defs["ImVector_reserve"][1]["location"] = "imgui:2182" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -11655,7 +11697,7 @@ defs["ImVector_reserve_discard"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve_discard"][1]["cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["defaults"] = {} defs["ImVector_reserve_discard"][1]["funcname"] = "reserve_discard" -defs["ImVector_reserve_discard"][1]["location"] = "imgui:2175" +defs["ImVector_reserve_discard"][1]["location"] = "imgui:2183" defs["ImVector_reserve_discard"][1]["ov_cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["ret"] = "void" defs["ImVector_reserve_discard"][1]["signature"] = "(int)" @@ -11677,7 +11719,7 @@ defs["ImVector_resize"][1]["call_args"] = "(new_size)" defs["ImVector_resize"][1]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][1]["defaults"] = {} defs["ImVector_resize"][1]["funcname"] = "resize" -defs["ImVector_resize"][1]["location"] = "imgui:2171" +defs["ImVector_resize"][1]["location"] = "imgui:2179" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize_Nil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -11700,7 +11742,7 @@ defs["ImVector_resize"][2]["call_args"] = "(new_size,v)" defs["ImVector_resize"][2]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][2]["defaults"] = {} defs["ImVector_resize"][2]["funcname"] = "resize" -defs["ImVector_resize"][2]["location"] = "imgui:2172" +defs["ImVector_resize"][2]["location"] = "imgui:2180" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resize_T" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -11723,7 +11765,7 @@ defs["ImVector_shrink"][1]["call_args"] = "(new_size)" defs["ImVector_shrink"][1]["cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["defaults"] = {} defs["ImVector_shrink"][1]["funcname"] = "shrink" -defs["ImVector_shrink"][1]["location"] = "imgui:2173" +defs["ImVector_shrink"][1]["location"] = "imgui:2181" defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -11742,7 +11784,7 @@ defs["ImVector_size"][1]["call_args"] = "()" defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" -defs["ImVector_size"][1]["location"] = "imgui:2153" +defs["ImVector_size"][1]["location"] = "imgui:2161" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -11761,7 +11803,7 @@ defs["ImVector_size_in_bytes"][1]["call_args"] = "()" defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImVector_size_in_bytes"][1]["location"] = "imgui:2154" +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:2162" defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" defs["ImVector_size_in_bytes"][1]["signature"] = "()const" @@ -11784,7 +11826,7 @@ defs["ImVector_swap"][1]["call_args"] = "(*rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" -defs["ImVector_swap"][1]["location"] = "imgui:2168" +defs["ImVector_swap"][1]["location"] = "imgui:2176" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" defs["ImVector_swap"][1]["signature"] = "(ImVector_T *)" @@ -11807,7 +11849,7 @@ defs["igAcceptDragDropPayload"][1]["cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" -defs["igAcceptDragDropPayload"][1]["location"] = "imgui:907" +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:911" defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -11826,7 +11868,7 @@ defs["igActivateItemByID"][1]["call_args"] = "(id)" defs["igActivateItemByID"][1]["cimguiname"] = "igActivateItemByID" defs["igActivateItemByID"][1]["defaults"] = {} defs["igActivateItemByID"][1]["funcname"] = "ActivateItemByID" -defs["igActivateItemByID"][1]["location"] = "imgui_internal:3542" +defs["igActivateItemByID"][1]["location"] = "imgui_internal:3551" defs["igActivateItemByID"][1]["namespace"] = "ImGui" defs["igActivateItemByID"][1]["ov_cimguiname"] = "igActivateItemByID" defs["igActivateItemByID"][1]["ret"] = "void" @@ -11848,7 +11890,7 @@ defs["igAddContextHook"][1]["call_args"] = "(context,hook)" defs["igAddContextHook"][1]["cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["defaults"] = {} defs["igAddContextHook"][1]["funcname"] = "AddContextHook" -defs["igAddContextHook"][1]["location"] = "imgui_internal:3403" +defs["igAddContextHook"][1]["location"] = "imgui_internal:3412" defs["igAddContextHook"][1]["namespace"] = "ImGui" defs["igAddContextHook"][1]["ov_cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["ret"] = "ImGuiID" @@ -11873,7 +11915,7 @@ defs["igAddDrawListToDrawDataEx"][1]["call_args"] = "(draw_data,out_list,draw_li defs["igAddDrawListToDrawDataEx"][1]["cimguiname"] = "igAddDrawListToDrawDataEx" defs["igAddDrawListToDrawDataEx"][1]["defaults"] = {} defs["igAddDrawListToDrawDataEx"][1]["funcname"] = "AddDrawListToDrawDataEx" -defs["igAddDrawListToDrawDataEx"][1]["location"] = "imgui_internal:3387" +defs["igAddDrawListToDrawDataEx"][1]["location"] = "imgui_internal:3396" defs["igAddDrawListToDrawDataEx"][1]["namespace"] = "ImGui" defs["igAddDrawListToDrawDataEx"][1]["ov_cimguiname"] = "igAddDrawListToDrawDataEx" defs["igAddDrawListToDrawDataEx"][1]["ret"] = "void" @@ -11892,7 +11934,7 @@ defs["igAddSettingsHandler"][1]["call_args"] = "(handler)" defs["igAddSettingsHandler"][1]["cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["defaults"] = {} defs["igAddSettingsHandler"][1]["funcname"] = "AddSettingsHandler" -defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:3420" +defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:3429" defs["igAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igAddSettingsHandler"][1]["ov_cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["ret"] = "void" @@ -11908,7 +11950,7 @@ defs["igAlignTextToFramePadding"][1]["call_args"] = "()" defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" -defs["igAlignTextToFramePadding"][1]["location"] = "imgui:504" +defs["igAlignTextToFramePadding"][1]["location"] = "imgui:508" defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" @@ -11930,7 +11972,7 @@ defs["igArrowButton"][1]["call_args"] = "(str_id,dir)" defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" -defs["igArrowButton"][1]["location"] = "imgui:553" +defs["igArrowButton"][1]["location"] = "imgui:557" defs["igArrowButton"][1]["namespace"] = "ImGui" defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" @@ -11959,7 +12001,7 @@ defs["igArrowButtonEx"][1]["cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["defaults"] = {} defs["igArrowButtonEx"][1]["defaults"]["flags"] = "0" defs["igArrowButtonEx"][1]["funcname"] = "ArrowButtonEx" -defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3839" +defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3848" defs["igArrowButtonEx"][1]["namespace"] = "ImGui" defs["igArrowButtonEx"][1]["ov_cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["ret"] = "bool" @@ -11986,7 +12028,7 @@ defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" defs["igBegin"][1]["defaults"]["p_open"] = "NULL" defs["igBegin"][1]["funcname"] = "Begin" -defs["igBegin"][1]["location"] = "imgui:369" +defs["igBegin"][1]["location"] = "imgui:371" defs["igBegin"][1]["namespace"] = "ImGui" defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" @@ -12014,7 +12056,7 @@ defs["igBeginBoxSelect"][1]["call_args"] = "(scope_rect,window,box_select_id,ms_ defs["igBeginBoxSelect"][1]["cimguiname"] = "igBeginBoxSelect" defs["igBeginBoxSelect"][1]["defaults"] = {} defs["igBeginBoxSelect"][1]["funcname"] = "BeginBoxSelect" -defs["igBeginBoxSelect"][1]["location"] = "imgui_internal:3710" +defs["igBeginBoxSelect"][1]["location"] = "imgui_internal:3719" defs["igBeginBoxSelect"][1]["namespace"] = "ImGui" defs["igBeginBoxSelect"][1]["ov_cimguiname"] = "igBeginBoxSelect" defs["igBeginBoxSelect"][1]["ret"] = "bool" @@ -12045,7 +12087,7 @@ defs["igBeginChild"][1]["defaults"]["child_flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][1]["defaults"]["window_flags"] = "0" defs["igBeginChild"][1]["funcname"] = "BeginChild" -defs["igBeginChild"][1]["location"] = "imgui:390" +defs["igBeginChild"][1]["location"] = "imgui:392" defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChild_Str" defs["igBeginChild"][1]["ret"] = "bool" @@ -12074,7 +12116,7 @@ defs["igBeginChild"][2]["defaults"]["child_flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][2]["defaults"]["window_flags"] = "0" defs["igBeginChild"][2]["funcname"] = "BeginChild" -defs["igBeginChild"][2]["location"] = "imgui:391" +defs["igBeginChild"][2]["location"] = "imgui:393" defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChild_ID" defs["igBeginChild"][2]["ret"] = "bool" @@ -12106,7 +12148,7 @@ defs["igBeginChildEx"][1]["call_args"] = "(name,id,size_arg,child_flags,window_f defs["igBeginChildEx"][1]["cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["defaults"] = {} defs["igBeginChildEx"][1]["funcname"] = "BeginChildEx" -defs["igBeginChildEx"][1]["location"] = "imgui_internal:3489" +defs["igBeginChildEx"][1]["location"] = "imgui_internal:3498" defs["igBeginChildEx"][1]["namespace"] = "ImGui" defs["igBeginChildEx"][1]["ov_cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["ret"] = "bool" @@ -12132,7 +12174,7 @@ defs["igBeginColumns"][1]["cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["defaults"] = {} defs["igBeginColumns"][1]["defaults"]["flags"] = "0" defs["igBeginColumns"][1]["funcname"] = "BeginColumns" -defs["igBeginColumns"][1]["location"] = "imgui_internal:3723" +defs["igBeginColumns"][1]["location"] = "imgui_internal:3732" defs["igBeginColumns"][1]["namespace"] = "ImGui" defs["igBeginColumns"][1]["ov_cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["ret"] = "void" @@ -12158,7 +12200,7 @@ defs["igBeginCombo"][1]["cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" -defs["igBeginCombo"][1]["location"] = "imgui:574" +defs["igBeginCombo"][1]["location"] = "imgui:578" defs["igBeginCombo"][1]["namespace"] = "ImGui" defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" @@ -12183,7 +12225,7 @@ defs["igBeginComboPopup"][1]["call_args"] = "(popup_id,bb,flags)" defs["igBeginComboPopup"][1]["cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["defaults"] = {} defs["igBeginComboPopup"][1]["funcname"] = "BeginComboPopup" -defs["igBeginComboPopup"][1]["location"] = "imgui_internal:3515" +defs["igBeginComboPopup"][1]["location"] = "imgui_internal:3524" defs["igBeginComboPopup"][1]["namespace"] = "ImGui" defs["igBeginComboPopup"][1]["ov_cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["ret"] = "bool" @@ -12199,7 +12241,7 @@ defs["igBeginComboPreview"][1]["call_args"] = "()" defs["igBeginComboPreview"][1]["cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["defaults"] = {} defs["igBeginComboPreview"][1]["funcname"] = "BeginComboPreview" -defs["igBeginComboPreview"][1]["location"] = "imgui_internal:3516" +defs["igBeginComboPreview"][1]["location"] = "imgui_internal:3525" defs["igBeginComboPreview"][1]["namespace"] = "ImGui" defs["igBeginComboPreview"][1]["ov_cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["ret"] = "bool" @@ -12219,7 +12261,7 @@ defs["igBeginDisabled"][1]["cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["defaults"] = {} defs["igBeginDisabled"][1]["defaults"]["disabled"] = "true" defs["igBeginDisabled"][1]["funcname"] = "BeginDisabled" -defs["igBeginDisabled"][1]["location"] = "imgui:916" +defs["igBeginDisabled"][1]["location"] = "imgui:920" defs["igBeginDisabled"][1]["namespace"] = "ImGui" defs["igBeginDisabled"][1]["ov_cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["ret"] = "void" @@ -12235,7 +12277,7 @@ defs["igBeginDisabledOverrideReenable"][1]["call_args"] = "()" defs["igBeginDisabledOverrideReenable"][1]["cimguiname"] = "igBeginDisabledOverrideReenable" defs["igBeginDisabledOverrideReenable"][1]["defaults"] = {} defs["igBeginDisabledOverrideReenable"][1]["funcname"] = "BeginDisabledOverrideReenable" -defs["igBeginDisabledOverrideReenable"][1]["location"] = "imgui_internal:3479" +defs["igBeginDisabledOverrideReenable"][1]["location"] = "imgui_internal:3488" defs["igBeginDisabledOverrideReenable"][1]["namespace"] = "ImGui" defs["igBeginDisabledOverrideReenable"][1]["ov_cimguiname"] = "igBeginDisabledOverrideReenable" defs["igBeginDisabledOverrideReenable"][1]["ret"] = "void" @@ -12254,7 +12296,7 @@ defs["igBeginDockableDragDropSource"][1]["call_args"] = "(window)" defs["igBeginDockableDragDropSource"][1]["cimguiname"] = "igBeginDockableDragDropSource" defs["igBeginDockableDragDropSource"][1]["defaults"] = {} defs["igBeginDockableDragDropSource"][1]["funcname"] = "BeginDockableDragDropSource" -defs["igBeginDockableDragDropSource"][1]["location"] = "imgui_internal:3656" +defs["igBeginDockableDragDropSource"][1]["location"] = "imgui_internal:3665" defs["igBeginDockableDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDockableDragDropSource"][1]["ov_cimguiname"] = "igBeginDockableDragDropSource" defs["igBeginDockableDragDropSource"][1]["ret"] = "void" @@ -12273,7 +12315,7 @@ defs["igBeginDockableDragDropTarget"][1]["call_args"] = "(window)" defs["igBeginDockableDragDropTarget"][1]["cimguiname"] = "igBeginDockableDragDropTarget" defs["igBeginDockableDragDropTarget"][1]["defaults"] = {} defs["igBeginDockableDragDropTarget"][1]["funcname"] = "BeginDockableDragDropTarget" -defs["igBeginDockableDragDropTarget"][1]["location"] = "imgui_internal:3657" +defs["igBeginDockableDragDropTarget"][1]["location"] = "imgui_internal:3666" defs["igBeginDockableDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDockableDragDropTarget"][1]["ov_cimguiname"] = "igBeginDockableDragDropTarget" defs["igBeginDockableDragDropTarget"][1]["ret"] = "void" @@ -12295,7 +12337,7 @@ defs["igBeginDocked"][1]["call_args"] = "(window,p_open)" defs["igBeginDocked"][1]["cimguiname"] = "igBeginDocked" defs["igBeginDocked"][1]["defaults"] = {} defs["igBeginDocked"][1]["funcname"] = "BeginDocked" -defs["igBeginDocked"][1]["location"] = "imgui_internal:3655" +defs["igBeginDocked"][1]["location"] = "imgui_internal:3664" defs["igBeginDocked"][1]["namespace"] = "ImGui" defs["igBeginDocked"][1]["ov_cimguiname"] = "igBeginDocked" defs["igBeginDocked"][1]["ret"] = "void" @@ -12315,7 +12357,7 @@ defs["igBeginDragDropSource"][1]["cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" -defs["igBeginDragDropSource"][1]["location"] = "imgui:903" +defs["igBeginDragDropSource"][1]["location"] = "imgui:907" defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -12331,7 +12373,7 @@ defs["igBeginDragDropTarget"][1]["call_args"] = "()" defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" -defs["igBeginDragDropTarget"][1]["location"] = "imgui:906" +defs["igBeginDragDropTarget"][1]["location"] = "imgui:910" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -12353,7 +12395,7 @@ defs["igBeginDragDropTargetCustom"][1]["call_args"] = "(bb,id)" defs["igBeginDragDropTargetCustom"][1]["cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["defaults"] = {} defs["igBeginDragDropTargetCustom"][1]["funcname"] = "BeginDragDropTargetCustom" -defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:3698" +defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:3707" defs["igBeginDragDropTargetCustom"][1]["namespace"] = "ImGui" defs["igBeginDragDropTargetCustom"][1]["ov_cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["ret"] = "bool" @@ -12369,7 +12411,7 @@ defs["igBeginGroup"][1]["call_args"] = "()" defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" -defs["igBeginGroup"][1]["location"] = "imgui:502" +defs["igBeginGroup"][1]["location"] = "imgui:506" defs["igBeginGroup"][1]["namespace"] = "ImGui" defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" @@ -12385,7 +12427,7 @@ defs["igBeginItemTooltip"][1]["call_args"] = "()" defs["igBeginItemTooltip"][1]["cimguiname"] = "igBeginItemTooltip" defs["igBeginItemTooltip"][1]["defaults"] = {} defs["igBeginItemTooltip"][1]["funcname"] = "BeginItemTooltip" -defs["igBeginItemTooltip"][1]["location"] = "imgui:745" +defs["igBeginItemTooltip"][1]["location"] = "imgui:749" defs["igBeginItemTooltip"][1]["namespace"] = "ImGui" defs["igBeginItemTooltip"][1]["ov_cimguiname"] = "igBeginItemTooltip" defs["igBeginItemTooltip"][1]["ret"] = "bool" @@ -12408,7 +12450,7 @@ defs["igBeginListBox"][1]["cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["defaults"] = {} defs["igBeginListBox"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginListBox"][1]["funcname"] = "BeginListBox" -defs["igBeginListBox"][1]["location"] = "imgui:699" +defs["igBeginListBox"][1]["location"] = "imgui:703" defs["igBeginListBox"][1]["namespace"] = "ImGui" defs["igBeginListBox"][1]["ov_cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["ret"] = "bool" @@ -12424,7 +12466,7 @@ defs["igBeginMainMenuBar"][1]["call_args"] = "()" defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" -defs["igBeginMainMenuBar"][1]["location"] = "imgui:725" +defs["igBeginMainMenuBar"][1]["location"] = "imgui:729" defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" @@ -12447,7 +12489,7 @@ defs["igBeginMenu"][1]["cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" -defs["igBeginMenu"][1]["location"] = "imgui:727" +defs["igBeginMenu"][1]["location"] = "imgui:731" defs["igBeginMenu"][1]["namespace"] = "ImGui" defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" @@ -12463,7 +12505,7 @@ defs["igBeginMenuBar"][1]["call_args"] = "()" defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" -defs["igBeginMenuBar"][1]["location"] = "imgui:723" +defs["igBeginMenuBar"][1]["location"] = "imgui:727" defs["igBeginMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" @@ -12489,7 +12531,7 @@ defs["igBeginMenuEx"][1]["cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["defaults"] = {} defs["igBeginMenuEx"][1]["defaults"]["enabled"] = "true" defs["igBeginMenuEx"][1]["funcname"] = "BeginMenuEx" -defs["igBeginMenuEx"][1]["location"] = "imgui_internal:3511" +defs["igBeginMenuEx"][1]["location"] = "imgui_internal:3520" defs["igBeginMenuEx"][1]["namespace"] = "ImGui" defs["igBeginMenuEx"][1]["ov_cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["ret"] = "bool" @@ -12516,7 +12558,7 @@ defs["igBeginMultiSelect"][1]["defaults"] = {} defs["igBeginMultiSelect"][1]["defaults"]["items_count"] = "-1" defs["igBeginMultiSelect"][1]["defaults"]["selection_size"] = "-1" defs["igBeginMultiSelect"][1]["funcname"] = "BeginMultiSelect" -defs["igBeginMultiSelect"][1]["location"] = "imgui:688" +defs["igBeginMultiSelect"][1]["location"] = "imgui:692" defs["igBeginMultiSelect"][1]["namespace"] = "ImGui" defs["igBeginMultiSelect"][1]["ov_cimguiname"] = "igBeginMultiSelect" defs["igBeginMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" @@ -12539,7 +12581,7 @@ defs["igBeginPopup"][1]["cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" -defs["igBeginPopup"][1]["location"] = "imgui:759" +defs["igBeginPopup"][1]["location"] = "imgui:763" defs["igBeginPopup"][1]["namespace"] = "ImGui" defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" @@ -12563,7 +12605,7 @@ defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" -defs["igBeginPopupContextItem"][1]["location"] = "imgui:781" +defs["igBeginPopupContextItem"][1]["location"] = "imgui:785" defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" @@ -12587,7 +12629,7 @@ defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" -defs["igBeginPopupContextVoid"][1]["location"] = "imgui:783" +defs["igBeginPopupContextVoid"][1]["location"] = "imgui:787" defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" @@ -12611,7 +12653,7 @@ defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" -defs["igBeginPopupContextWindow"][1]["location"] = "imgui:782" +defs["igBeginPopupContextWindow"][1]["location"] = "imgui:786" defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" @@ -12633,7 +12675,7 @@ defs["igBeginPopupEx"][1]["call_args"] = "(id,extra_window_flags)" defs["igBeginPopupEx"][1]["cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["defaults"] = {} defs["igBeginPopupEx"][1]["funcname"] = "BeginPopupEx" -defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3492" +defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3501" defs["igBeginPopupEx"][1]["namespace"] = "ImGui" defs["igBeginPopupEx"][1]["ov_cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["ret"] = "bool" @@ -12660,7 +12702,7 @@ defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "NULL" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" -defs["igBeginPopupModal"][1]["location"] = "imgui:760" +defs["igBeginPopupModal"][1]["location"] = "imgui:764" defs["igBeginPopupModal"][1]["namespace"] = "ImGui" defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" @@ -12683,7 +12725,7 @@ defs["igBeginTabBar"][1]["cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" -defs["igBeginTabBar"][1]["location"] = "imgui:861" +defs["igBeginTabBar"][1]["location"] = "imgui:865" defs["igBeginTabBar"][1]["namespace"] = "ImGui" defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" @@ -12708,7 +12750,7 @@ defs["igBeginTabBarEx"][1]["call_args"] = "(tab_bar,bb,flags)" defs["igBeginTabBarEx"][1]["cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["defaults"] = {} defs["igBeginTabBarEx"][1]["funcname"] = "BeginTabBarEx" -defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3791" +defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3800" defs["igBeginTabBarEx"][1]["namespace"] = "ImGui" defs["igBeginTabBarEx"][1]["ov_cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["ret"] = "bool" @@ -12735,7 +12777,7 @@ defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" defs["igBeginTabItem"][1]["defaults"]["p_open"] = "NULL" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" -defs["igBeginTabItem"][1]["location"] = "imgui:863" +defs["igBeginTabItem"][1]["location"] = "imgui:867" defs["igBeginTabItem"][1]["namespace"] = "ImGui" defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" @@ -12769,7 +12811,7 @@ defs["igBeginTable"][1]["defaults"]["flags"] = "0" defs["igBeginTable"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTable"][1]["defaults"]["outer_size"] = "ImVec2(0.0f,0.0f)" defs["igBeginTable"][1]["funcname"] = "BeginTable" -defs["igBeginTable"][1]["location"] = "imgui:812" +defs["igBeginTable"][1]["location"] = "imgui:816" defs["igBeginTable"][1]["namespace"] = "ImGui" defs["igBeginTable"][1]["ov_cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["ret"] = "bool" @@ -12806,7 +12848,7 @@ defs["igBeginTableEx"][1]["defaults"]["flags"] = "0" defs["igBeginTableEx"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTableEx"][1]["defaults"]["outer_size"] = "ImVec2(0,0)" defs["igBeginTableEx"][1]["funcname"] = "BeginTableEx" -defs["igBeginTableEx"][1]["location"] = "imgui_internal:3747" +defs["igBeginTableEx"][1]["location"] = "imgui_internal:3756" defs["igBeginTableEx"][1]["namespace"] = "ImGui" defs["igBeginTableEx"][1]["ov_cimguiname"] = "igBeginTableEx" defs["igBeginTableEx"][1]["ret"] = "bool" @@ -12822,7 +12864,7 @@ defs["igBeginTooltip"][1]["call_args"] = "()" defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" -defs["igBeginTooltip"][1]["location"] = "imgui:736" +defs["igBeginTooltip"][1]["location"] = "imgui:740" defs["igBeginTooltip"][1]["namespace"] = "ImGui" defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["ret"] = "bool" @@ -12844,7 +12886,7 @@ defs["igBeginTooltipEx"][1]["call_args"] = "(tooltip_flags,extra_window_flags)" defs["igBeginTooltipEx"][1]["cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["defaults"] = {} defs["igBeginTooltipEx"][1]["funcname"] = "BeginTooltipEx" -defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3506" +defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3515" defs["igBeginTooltipEx"][1]["namespace"] = "ImGui" defs["igBeginTooltipEx"][1]["ov_cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["ret"] = "bool" @@ -12860,7 +12902,7 @@ defs["igBeginTooltipHidden"][1]["call_args"] = "()" defs["igBeginTooltipHidden"][1]["cimguiname"] = "igBeginTooltipHidden" defs["igBeginTooltipHidden"][1]["defaults"] = {} defs["igBeginTooltipHidden"][1]["funcname"] = "BeginTooltipHidden" -defs["igBeginTooltipHidden"][1]["location"] = "imgui_internal:3507" +defs["igBeginTooltipHidden"][1]["location"] = "imgui_internal:3516" defs["igBeginTooltipHidden"][1]["namespace"] = "ImGui" defs["igBeginTooltipHidden"][1]["ov_cimguiname"] = "igBeginTooltipHidden" defs["igBeginTooltipHidden"][1]["ret"] = "bool" @@ -12891,7 +12933,7 @@ defs["igBeginViewportSideBar"][1]["call_args"] = "(name,viewport,dir,size,window defs["igBeginViewportSideBar"][1]["cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["defaults"] = {} defs["igBeginViewportSideBar"][1]["funcname"] = "BeginViewportSideBar" -defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:3510" +defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:3519" defs["igBeginViewportSideBar"][1]["namespace"] = "ImGui" defs["igBeginViewportSideBar"][1]["ov_cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["ret"] = "bool" @@ -12910,7 +12952,7 @@ defs["igBringWindowToDisplayBack"][1]["call_args"] = "(window)" defs["igBringWindowToDisplayBack"][1]["cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["defaults"] = {} defs["igBringWindowToDisplayBack"][1]["funcname"] = "BringWindowToDisplayBack" -defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:3375" +defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:3384" defs["igBringWindowToDisplayBack"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBack"][1]["ov_cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["ret"] = "void" @@ -12932,7 +12974,7 @@ defs["igBringWindowToDisplayBehind"][1]["call_args"] = "(window,above_window)" defs["igBringWindowToDisplayBehind"][1]["cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["defaults"] = {} defs["igBringWindowToDisplayBehind"][1]["funcname"] = "BringWindowToDisplayBehind" -defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:3376" +defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:3385" defs["igBringWindowToDisplayBehind"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBehind"][1]["ov_cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["ret"] = "void" @@ -12951,7 +12993,7 @@ defs["igBringWindowToDisplayFront"][1]["call_args"] = "(window)" defs["igBringWindowToDisplayFront"][1]["cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["defaults"] = {} defs["igBringWindowToDisplayFront"][1]["funcname"] = "BringWindowToDisplayFront" -defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:3374" +defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:3383" defs["igBringWindowToDisplayFront"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayFront"][1]["ov_cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["ret"] = "void" @@ -12970,7 +13012,7 @@ defs["igBringWindowToFocusFront"][1]["call_args"] = "(window)" defs["igBringWindowToFocusFront"][1]["cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["defaults"] = {} defs["igBringWindowToFocusFront"][1]["funcname"] = "BringWindowToFocusFront" -defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:3373" +defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:3382" defs["igBringWindowToFocusFront"][1]["namespace"] = "ImGui" defs["igBringWindowToFocusFront"][1]["ov_cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["ret"] = "void" @@ -12986,7 +13028,7 @@ defs["igBullet"][1]["call_args"] = "()" defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" -defs["igBullet"][1]["location"] = "imgui:560" +defs["igBullet"][1]["location"] = "imgui:564" defs["igBullet"][1]["namespace"] = "ImGui" defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" @@ -13009,7 +13051,7 @@ defs["igBulletText"][1]["cimguiname"] = "igBulletText" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" -defs["igBulletText"][1]["location"] = "imgui:543" +defs["igBulletText"][1]["location"] = "imgui:547" defs["igBulletText"][1]["namespace"] = "ImGui" defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" @@ -13031,7 +13073,7 @@ defs["igBulletTextV"][1]["call_args"] = "(fmt,args)" defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" -defs["igBulletTextV"][1]["location"] = "imgui:544" +defs["igBulletTextV"][1]["location"] = "imgui:548" defs["igBulletTextV"][1]["namespace"] = "ImGui" defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" @@ -13054,7 +13096,7 @@ defs["igButton"][1]["cimguiname"] = "igButton" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" -defs["igButton"][1]["location"] = "imgui:550" +defs["igButton"][1]["location"] = "imgui:554" defs["igButton"][1]["namespace"] = "ImGui" defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" @@ -13086,7 +13128,7 @@ defs["igButtonBehavior"][1]["cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["defaults"] = {} defs["igButtonBehavior"][1]["defaults"]["flags"] = "0" defs["igButtonBehavior"][1]["funcname"] = "ButtonBehavior" -defs["igButtonBehavior"][1]["location"] = "imgui_internal:3857" +defs["igButtonBehavior"][1]["location"] = "imgui_internal:3866" defs["igButtonBehavior"][1]["namespace"] = "ImGui" defs["igButtonBehavior"][1]["ov_cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["ret"] = "bool" @@ -13113,7 +13155,7 @@ defs["igButtonEx"][1]["defaults"] = {} defs["igButtonEx"][1]["defaults"]["flags"] = "0" defs["igButtonEx"][1]["defaults"]["size_arg"] = "ImVec2(0,0)" defs["igButtonEx"][1]["funcname"] = "ButtonEx" -defs["igButtonEx"][1]["location"] = "imgui_internal:3838" +defs["igButtonEx"][1]["location"] = "imgui_internal:3847" defs["igButtonEx"][1]["namespace"] = "ImGui" defs["igButtonEx"][1]["ov_cimguiname"] = "igButtonEx" defs["igButtonEx"][1]["ret"] = "bool" @@ -13141,7 +13183,7 @@ defs["igCalcItemSize"][1]["call_args"] = "(size,default_w,default_h)" defs["igCalcItemSize"][1]["cimguiname"] = "igCalcItemSize" defs["igCalcItemSize"][1]["defaults"] = {} defs["igCalcItemSize"][1]["funcname"] = "CalcItemSize" -defs["igCalcItemSize"][1]["location"] = "imgui_internal:3472" +defs["igCalcItemSize"][1]["location"] = "imgui_internal:3481" defs["igCalcItemSize"][1]["namespace"] = "ImGui" defs["igCalcItemSize"][1]["nonUDT"] = 1 defs["igCalcItemSize"][1]["ov_cimguiname"] = "igCalcItemSize" @@ -13158,7 +13200,7 @@ defs["igCalcItemWidth"][1]["call_args"] = "()" defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" -defs["igCalcItemWidth"][1]["location"] = "imgui:459" +defs["igCalcItemWidth"][1]["location"] = "imgui:463" defs["igCalcItemWidth"][1]["namespace"] = "ImGui" defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" @@ -13183,7 +13225,7 @@ defs["igCalcRoundingFlagsForRectInRect"][1]["call_args"] = "(r_in,r_outer,thresh defs["igCalcRoundingFlagsForRectInRect"][1]["cimguiname"] = "igCalcRoundingFlagsForRectInRect" defs["igCalcRoundingFlagsForRectInRect"][1]["defaults"] = {} defs["igCalcRoundingFlagsForRectInRect"][1]["funcname"] = "CalcRoundingFlagsForRectInRect" -defs["igCalcRoundingFlagsForRectInRect"][1]["location"] = "imgui_internal:3834" +defs["igCalcRoundingFlagsForRectInRect"][1]["location"] = "imgui_internal:3843" defs["igCalcRoundingFlagsForRectInRect"][1]["namespace"] = "ImGui" defs["igCalcRoundingFlagsForRectInRect"][1]["ov_cimguiname"] = "igCalcRoundingFlagsForRectInRect" defs["igCalcRoundingFlagsForRectInRect"][1]["ret"] = "ImDrawFlags" @@ -13217,7 +13259,7 @@ defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" defs["igCalcTextSize"][1]["defaults"]["text_end"] = "NULL" defs["igCalcTextSize"][1]["defaults"]["wrap_width"] = "-1.0f" defs["igCalcTextSize"][1]["funcname"] = "CalcTextSize" -defs["igCalcTextSize"][1]["location"] = "imgui:974" +defs["igCalcTextSize"][1]["location"] = "imgui:978" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -13246,7 +13288,7 @@ defs["igCalcTypematicRepeatAmount"][1]["call_args"] = "(t0,t1,repeat_delay,repea defs["igCalcTypematicRepeatAmount"][1]["cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["defaults"] = {} defs["igCalcTypematicRepeatAmount"][1]["funcname"] = "CalcTypematicRepeatAmount" -defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:3571" +defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:3580" defs["igCalcTypematicRepeatAmount"][1]["namespace"] = "ImGui" defs["igCalcTypematicRepeatAmount"][1]["ov_cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["ret"] = "int" @@ -13268,7 +13310,7 @@ defs["igCalcWindowNextAutoFitSize"][1]["call_args"] = "(window)" defs["igCalcWindowNextAutoFitSize"][1]["cimguiname"] = "igCalcWindowNextAutoFitSize" defs["igCalcWindowNextAutoFitSize"][1]["defaults"] = {} defs["igCalcWindowNextAutoFitSize"][1]["funcname"] = "CalcWindowNextAutoFitSize" -defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:3354" +defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:3363" defs["igCalcWindowNextAutoFitSize"][1]["namespace"] = "ImGui" defs["igCalcWindowNextAutoFitSize"][1]["nonUDT"] = 1 defs["igCalcWindowNextAutoFitSize"][1]["ov_cimguiname"] = "igCalcWindowNextAutoFitSize" @@ -13291,7 +13333,7 @@ defs["igCalcWrapWidthForPos"][1]["call_args"] = "(pos,wrap_pos_x)" defs["igCalcWrapWidthForPos"][1]["cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["defaults"] = {} defs["igCalcWrapWidthForPos"][1]["funcname"] = "CalcWrapWidthForPos" -defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:3473" +defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:3482" defs["igCalcWrapWidthForPos"][1]["namespace"] = "ImGui" defs["igCalcWrapWidthForPos"][1]["ov_cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["ret"] = "float" @@ -13313,7 +13355,7 @@ defs["igCallContextHooks"][1]["call_args"] = "(context,type)" defs["igCallContextHooks"][1]["cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["defaults"] = {} defs["igCallContextHooks"][1]["funcname"] = "CallContextHooks" -defs["igCallContextHooks"][1]["location"] = "imgui_internal:3405" +defs["igCallContextHooks"][1]["location"] = "imgui_internal:3414" defs["igCallContextHooks"][1]["namespace"] = "ImGui" defs["igCallContextHooks"][1]["ov_cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["ret"] = "void" @@ -13335,7 +13377,7 @@ defs["igCheckbox"][1]["call_args"] = "(label,v)" defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" -defs["igCheckbox"][1]["location"] = "imgui:554" +defs["igCheckbox"][1]["location"] = "imgui:558" defs["igCheckbox"][1]["namespace"] = "ImGui" defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" @@ -13360,7 +13402,7 @@ defs["igCheckboxFlags"][1]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][1]["location"] = "imgui:555" +defs["igCheckboxFlags"][1]["location"] = "imgui:559" defs["igCheckboxFlags"][1]["namespace"] = "ImGui" defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags_IntPtr" defs["igCheckboxFlags"][1]["ret"] = "bool" @@ -13383,7 +13425,7 @@ defs["igCheckboxFlags"][2]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][2]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][2]["defaults"] = {} defs["igCheckboxFlags"][2]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][2]["location"] = "imgui:556" +defs["igCheckboxFlags"][2]["location"] = "imgui:560" defs["igCheckboxFlags"][2]["namespace"] = "ImGui" defs["igCheckboxFlags"][2]["ov_cimguiname"] = "igCheckboxFlags_UintPtr" defs["igCheckboxFlags"][2]["ret"] = "bool" @@ -13406,7 +13448,7 @@ defs["igCheckboxFlags"][3]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][3]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][3]["defaults"] = {} defs["igCheckboxFlags"][3]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3843" +defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3852" defs["igCheckboxFlags"][3]["namespace"] = "ImGui" defs["igCheckboxFlags"][3]["ov_cimguiname"] = "igCheckboxFlags_S64Ptr" defs["igCheckboxFlags"][3]["ret"] = "bool" @@ -13429,7 +13471,7 @@ defs["igCheckboxFlags"][4]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][4]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][4]["defaults"] = {} defs["igCheckboxFlags"][4]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3844" +defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3853" defs["igCheckboxFlags"][4]["namespace"] = "ImGui" defs["igCheckboxFlags"][4]["ov_cimguiname"] = "igCheckboxFlags_U64Ptr" defs["igCheckboxFlags"][4]["ret"] = "bool" @@ -13448,7 +13490,7 @@ defs["igClearActiveID"][1]["call_args"] = "()" defs["igClearActiveID"][1]["cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["defaults"] = {} defs["igClearActiveID"][1]["funcname"] = "ClearActiveID" -defs["igClearActiveID"][1]["location"] = "imgui_internal:3455" +defs["igClearActiveID"][1]["location"] = "imgui_internal:3464" defs["igClearActiveID"][1]["namespace"] = "ImGui" defs["igClearActiveID"][1]["ov_cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["ret"] = "void" @@ -13464,7 +13506,7 @@ defs["igClearDragDrop"][1]["call_args"] = "()" defs["igClearDragDrop"][1]["cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["defaults"] = {} defs["igClearDragDrop"][1]["funcname"] = "ClearDragDrop" -defs["igClearDragDrop"][1]["location"] = "imgui_internal:3699" +defs["igClearDragDrop"][1]["location"] = "imgui_internal:3708" defs["igClearDragDrop"][1]["namespace"] = "ImGui" defs["igClearDragDrop"][1]["ov_cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["ret"] = "void" @@ -13480,7 +13522,7 @@ defs["igClearIniSettings"][1]["call_args"] = "()" defs["igClearIniSettings"][1]["cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["defaults"] = {} defs["igClearIniSettings"][1]["funcname"] = "ClearIniSettings" -defs["igClearIniSettings"][1]["location"] = "imgui_internal:3419" +defs["igClearIniSettings"][1]["location"] = "imgui_internal:3428" defs["igClearIniSettings"][1]["namespace"] = "ImGui" defs["igClearIniSettings"][1]["ov_cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["ret"] = "void" @@ -13499,7 +13541,7 @@ defs["igClearWindowSettings"][1]["call_args"] = "(name)" defs["igClearWindowSettings"][1]["cimguiname"] = "igClearWindowSettings" defs["igClearWindowSettings"][1]["defaults"] = {} defs["igClearWindowSettings"][1]["funcname"] = "ClearWindowSettings" -defs["igClearWindowSettings"][1]["location"] = "imgui_internal:3428" +defs["igClearWindowSettings"][1]["location"] = "imgui_internal:3437" defs["igClearWindowSettings"][1]["namespace"] = "ImGui" defs["igClearWindowSettings"][1]["ov_cimguiname"] = "igClearWindowSettings" defs["igClearWindowSettings"][1]["ret"] = "void" @@ -13521,7 +13563,7 @@ defs["igCloseButton"][1]["call_args"] = "(id,pos)" defs["igCloseButton"][1]["cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["defaults"] = {} defs["igCloseButton"][1]["funcname"] = "CloseButton" -defs["igCloseButton"][1]["location"] = "imgui_internal:3847" +defs["igCloseButton"][1]["location"] = "imgui_internal:3856" defs["igCloseButton"][1]["namespace"] = "ImGui" defs["igCloseButton"][1]["ov_cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["ret"] = "bool" @@ -13537,7 +13579,7 @@ defs["igCloseCurrentPopup"][1]["call_args"] = "()" defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" -defs["igCloseCurrentPopup"][1]["location"] = "imgui:774" +defs["igCloseCurrentPopup"][1]["location"] = "imgui:778" defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" @@ -13559,7 +13601,7 @@ defs["igClosePopupToLevel"][1]["call_args"] = "(remaining,restore_focus_to_windo defs["igClosePopupToLevel"][1]["cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["defaults"] = {} defs["igClosePopupToLevel"][1]["funcname"] = "ClosePopupToLevel" -defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:3494" +defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:3503" defs["igClosePopupToLevel"][1]["namespace"] = "ImGui" defs["igClosePopupToLevel"][1]["ov_cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["ret"] = "void" @@ -13575,7 +13617,7 @@ defs["igClosePopupsExceptModals"][1]["call_args"] = "()" defs["igClosePopupsExceptModals"][1]["cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["defaults"] = {} defs["igClosePopupsExceptModals"][1]["funcname"] = "ClosePopupsExceptModals" -defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:3496" +defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:3505" defs["igClosePopupsExceptModals"][1]["namespace"] = "ImGui" defs["igClosePopupsExceptModals"][1]["ov_cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["ret"] = "void" @@ -13597,7 +13639,7 @@ defs["igClosePopupsOverWindow"][1]["call_args"] = "(ref_window,restore_focus_to_ defs["igClosePopupsOverWindow"][1]["cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["defaults"] = {} defs["igClosePopupsOverWindow"][1]["funcname"] = "ClosePopupsOverWindow" -defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:3495" +defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:3504" defs["igClosePopupsOverWindow"][1]["namespace"] = "ImGui" defs["igClosePopupsOverWindow"][1]["ov_cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["ret"] = "void" @@ -13622,7 +13664,7 @@ defs["igCollapseButton"][1]["call_args"] = "(id,pos,dock_node)" defs["igCollapseButton"][1]["cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["defaults"] = {} defs["igCollapseButton"][1]["funcname"] = "CollapseButton" -defs["igCollapseButton"][1]["location"] = "imgui_internal:3848" +defs["igCollapseButton"][1]["location"] = "imgui_internal:3857" defs["igCollapseButton"][1]["namespace"] = "ImGui" defs["igCollapseButton"][1]["ov_cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["ret"] = "bool" @@ -13645,7 +13687,7 @@ defs["igCollapsingHeader"][1]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][1]["location"] = "imgui:670" +defs["igCollapsingHeader"][1]["location"] = "imgui:674" defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeader_TreeNodeFlags" defs["igCollapsingHeader"][1]["ret"] = "bool" @@ -13669,7 +13711,7 @@ defs["igCollapsingHeader"][2]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][2]["location"] = "imgui:671" +defs["igCollapsingHeader"][2]["location"] = "imgui:675" defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeader_BoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" @@ -13700,7 +13742,7 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" -defs["igColorButton"][1]["location"] = "imgui:651" +defs["igColorButton"][1]["location"] = "imgui:655" defs["igColorButton"][1]["namespace"] = "ImGui" defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" @@ -13719,7 +13761,7 @@ defs["igColorConvertFloat4ToU32"][1]["call_args"] = "(in)" defs["igColorConvertFloat4ToU32"][1]["cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["defaults"] = {} defs["igColorConvertFloat4ToU32"][1]["funcname"] = "ColorConvertFloat4ToU32" -defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:978" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:982" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -13756,7 +13798,7 @@ defs["igColorConvertHSVtoRGB"][1]["call_args"] = "(h,s,v,*out_r,*out_g,*out_b)" defs["igColorConvertHSVtoRGB"][1]["cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["defaults"] = {} defs["igColorConvertHSVtoRGB"][1]["funcname"] = "ColorConvertHSVtoRGB" -defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:980" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:984" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -13793,7 +13835,7 @@ defs["igColorConvertRGBtoHSV"][1]["call_args"] = "(r,g,b,*out_h,*out_s,*out_v)" defs["igColorConvertRGBtoHSV"][1]["cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["defaults"] = {} defs["igColorConvertRGBtoHSV"][1]["funcname"] = "ColorConvertRGBtoHSV" -defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:979" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:983" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -13815,7 +13857,7 @@ defs["igColorConvertU32ToFloat4"][1]["call_args"] = "(in)" defs["igColorConvertU32ToFloat4"][1]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["defaults"] = {} defs["igColorConvertU32ToFloat4"][1]["funcname"] = "ColorConvertU32ToFloat4" -defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:977" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:981" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -13842,7 +13884,7 @@ defs["igColorEdit3"][1]["cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" -defs["igColorEdit3"][1]["location"] = "imgui:647" +defs["igColorEdit3"][1]["location"] = "imgui:651" defs["igColorEdit3"][1]["namespace"] = "ImGui" defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" @@ -13868,7 +13910,7 @@ defs["igColorEdit4"][1]["cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" -defs["igColorEdit4"][1]["location"] = "imgui:648" +defs["igColorEdit4"][1]["location"] = "imgui:652" defs["igColorEdit4"][1]["namespace"] = "ImGui" defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" @@ -13890,7 +13932,7 @@ defs["igColorEditOptionsPopup"][1]["call_args"] = "(col,flags)" defs["igColorEditOptionsPopup"][1]["cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["defaults"] = {} defs["igColorEditOptionsPopup"][1]["funcname"] = "ColorEditOptionsPopup" -defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3898" +defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3907" defs["igColorEditOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorEditOptionsPopup"][1]["ov_cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["ret"] = "void" @@ -13916,7 +13958,7 @@ defs["igColorPicker3"][1]["cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" -defs["igColorPicker3"][1]["location"] = "imgui:649" +defs["igColorPicker3"][1]["location"] = "imgui:653" defs["igColorPicker3"][1]["namespace"] = "ImGui" defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" @@ -13946,7 +13988,7 @@ defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" defs["igColorPicker4"][1]["defaults"]["ref_col"] = "NULL" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" -defs["igColorPicker4"][1]["location"] = "imgui:650" +defs["igColorPicker4"][1]["location"] = "imgui:654" defs["igColorPicker4"][1]["namespace"] = "ImGui" defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" @@ -13968,7 +14010,7 @@ defs["igColorPickerOptionsPopup"][1]["call_args"] = "(ref_col,flags)" defs["igColorPickerOptionsPopup"][1]["cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["defaults"] = {} defs["igColorPickerOptionsPopup"][1]["funcname"] = "ColorPickerOptionsPopup" -defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3899" +defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3908" defs["igColorPickerOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorPickerOptionsPopup"][1]["ov_cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["ret"] = "void" @@ -13993,7 +14035,7 @@ defs["igColorTooltip"][1]["call_args"] = "(text,col,flags)" defs["igColorTooltip"][1]["cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["defaults"] = {} defs["igColorTooltip"][1]["funcname"] = "ColorTooltip" -defs["igColorTooltip"][1]["location"] = "imgui_internal:3897" +defs["igColorTooltip"][1]["location"] = "imgui_internal:3906" defs["igColorTooltip"][1]["namespace"] = "ImGui" defs["igColorTooltip"][1]["ov_cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["ret"] = "void" @@ -14002,7 +14044,7 @@ defs["igColorTooltip"][1]["stname"] = "" defs["igColorTooltip"]["(const char*,const float*,ImGuiColorEditFlags)"] = defs["igColorTooltip"][1] defs["igColumns"] = {} defs["igColumns"][1] = {} -defs["igColumns"][1]["args"] = "(int count,const char* id,bool border)" +defs["igColumns"][1]["args"] = "(int count,const char* id,bool borders)" defs["igColumns"][1]["argsT"] = {} defs["igColumns"][1]["argsT"][1] = {} defs["igColumns"][1]["argsT"][1]["name"] = "count" @@ -14011,17 +14053,17 @@ defs["igColumns"][1]["argsT"][2] = {} defs["igColumns"][1]["argsT"][2]["name"] = "id" defs["igColumns"][1]["argsT"][2]["type"] = "const char*" defs["igColumns"][1]["argsT"][3] = {} -defs["igColumns"][1]["argsT"][3]["name"] = "border" +defs["igColumns"][1]["argsT"][3]["name"] = "borders" defs["igColumns"][1]["argsT"][3]["type"] = "bool" -defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool border=true)" -defs["igColumns"][1]["call_args"] = "(count,id,border)" +defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool borders=true)" +defs["igColumns"][1]["call_args"] = "(count,id,borders)" defs["igColumns"][1]["cimguiname"] = "igColumns" defs["igColumns"][1]["defaults"] = {} -defs["igColumns"][1]["defaults"]["border"] = "true" +defs["igColumns"][1]["defaults"]["borders"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" defs["igColumns"][1]["defaults"]["id"] = "NULL" defs["igColumns"][1]["funcname"] = "Columns" -defs["igColumns"][1]["location"] = "imgui:850" +defs["igColumns"][1]["location"] = "imgui:854" defs["igColumns"][1]["namespace"] = "ImGui" defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" @@ -14053,7 +14095,7 @@ defs["igCombo"][1]["cimguiname"] = "igCombo" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" -defs["igCombo"][1]["location"] = "imgui:576" +defs["igCombo"][1]["location"] = "imgui:580" defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igCombo_Str_arr" defs["igCombo"][1]["ret"] = "bool" @@ -14080,7 +14122,7 @@ defs["igCombo"][2]["cimguiname"] = "igCombo" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" -defs["igCombo"][2]["location"] = "imgui:577" +defs["igCombo"][2]["location"] = "imgui:581" defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igCombo_Str" defs["igCombo"][2]["ret"] = "bool" @@ -14115,7 +14157,7 @@ defs["igCombo"][3]["cimguiname"] = "igCombo" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" -defs["igCombo"][3]["location"] = "imgui:578" +defs["igCombo"][3]["location"] = "imgui:582" defs["igCombo"][3]["namespace"] = "ImGui" defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnStrPtr" defs["igCombo"][3]["ret"] = "bool" @@ -14136,7 +14178,7 @@ defs["igConvertSingleModFlagToKey"][1]["call_args"] = "(key)" defs["igConvertSingleModFlagToKey"][1]["cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["defaults"] = {} defs["igConvertSingleModFlagToKey"][1]["funcname"] = "ConvertSingleModFlagToKey" -defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3555" +defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3564" defs["igConvertSingleModFlagToKey"][1]["namespace"] = "ImGui" defs["igConvertSingleModFlagToKey"][1]["ov_cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["ret"] = "ImGuiKey" @@ -14156,7 +14198,7 @@ defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["defaults"] = {} defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "NULL" defs["igCreateContext"][1]["funcname"] = "CreateContext" -defs["igCreateContext"][1]["location"] = "imgui:327" +defs["igCreateContext"][1]["location"] = "imgui:328" defs["igCreateContext"][1]["namespace"] = "ImGui" defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" @@ -14175,7 +14217,7 @@ defs["igCreateNewWindowSettings"][1]["call_args"] = "(name)" defs["igCreateNewWindowSettings"][1]["cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["defaults"] = {} defs["igCreateNewWindowSettings"][1]["funcname"] = "CreateNewWindowSettings" -defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:3425" +defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:3434" defs["igCreateNewWindowSettings"][1]["namespace"] = "ImGui" defs["igCreateNewWindowSettings"][1]["ov_cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -14207,7 +14249,7 @@ defs["igDataTypeApplyFromText"][1]["cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["defaults"] = {} defs["igDataTypeApplyFromText"][1]["defaults"]["p_data_when_empty"] = "NULL" defs["igDataTypeApplyFromText"][1]["funcname"] = "DataTypeApplyFromText" -defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3883" +defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3892" defs["igDataTypeApplyFromText"][1]["namespace"] = "ImGui" defs["igDataTypeApplyFromText"][1]["ov_cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["ret"] = "bool" @@ -14238,7 +14280,7 @@ defs["igDataTypeApplyOp"][1]["call_args"] = "(data_type,op,output,arg_1,arg_2)" defs["igDataTypeApplyOp"][1]["cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["defaults"] = {} defs["igDataTypeApplyOp"][1]["funcname"] = "DataTypeApplyOp" -defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3882" +defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3891" defs["igDataTypeApplyOp"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOp"][1]["ov_cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["ret"] = "void" @@ -14266,7 +14308,7 @@ defs["igDataTypeClamp"][1]["call_args"] = "(data_type,p_data,p_min,p_max)" defs["igDataTypeClamp"][1]["cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["defaults"] = {} defs["igDataTypeClamp"][1]["funcname"] = "DataTypeClamp" -defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3885" +defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3894" defs["igDataTypeClamp"][1]["namespace"] = "ImGui" defs["igDataTypeClamp"][1]["ov_cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["ret"] = "bool" @@ -14291,7 +14333,7 @@ defs["igDataTypeCompare"][1]["call_args"] = "(data_type,arg_1,arg_2)" defs["igDataTypeCompare"][1]["cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["defaults"] = {} defs["igDataTypeCompare"][1]["funcname"] = "DataTypeCompare" -defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3884" +defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3893" defs["igDataTypeCompare"][1]["namespace"] = "ImGui" defs["igDataTypeCompare"][1]["ov_cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["ret"] = "int" @@ -14322,7 +14364,7 @@ defs["igDataTypeFormatString"][1]["call_args"] = "(buf,buf_size,data_type,p_data defs["igDataTypeFormatString"][1]["cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["defaults"] = {} defs["igDataTypeFormatString"][1]["funcname"] = "DataTypeFormatString" -defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3881" +defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3890" defs["igDataTypeFormatString"][1]["namespace"] = "ImGui" defs["igDataTypeFormatString"][1]["ov_cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["ret"] = "int" @@ -14341,7 +14383,7 @@ defs["igDataTypeGetInfo"][1]["call_args"] = "(data_type)" defs["igDataTypeGetInfo"][1]["cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["defaults"] = {} defs["igDataTypeGetInfo"][1]["funcname"] = "DataTypeGetInfo" -defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3880" +defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3889" defs["igDataTypeGetInfo"][1]["namespace"] = "ImGui" defs["igDataTypeGetInfo"][1]["ov_cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["ret"] = "const ImGuiDataTypeInfo*" @@ -14369,7 +14411,7 @@ defs["igDebugAllocHook"][1]["call_args"] = "(info,frame_count,ptr,size)" defs["igDebugAllocHook"][1]["cimguiname"] = "igDebugAllocHook" defs["igDebugAllocHook"][1]["defaults"] = {} defs["igDebugAllocHook"][1]["funcname"] = "DebugAllocHook" -defs["igDebugAllocHook"][1]["location"] = "imgui_internal:3915" +defs["igDebugAllocHook"][1]["location"] = "imgui_internal:3924" defs["igDebugAllocHook"][1]["namespace"] = "ImGui" defs["igDebugAllocHook"][1]["ov_cimguiname"] = "igDebugAllocHook" defs["igDebugAllocHook"][1]["ret"] = "void" @@ -14391,7 +14433,7 @@ defs["igDebugBreakButton"][1]["call_args"] = "(label,description_of_location)" defs["igDebugBreakButton"][1]["cimguiname"] = "igDebugBreakButton" defs["igDebugBreakButton"][1]["defaults"] = {} defs["igDebugBreakButton"][1]["funcname"] = "DebugBreakButton" -defs["igDebugBreakButton"][1]["location"] = "imgui_internal:3927" +defs["igDebugBreakButton"][1]["location"] = "imgui_internal:3936" defs["igDebugBreakButton"][1]["namespace"] = "ImGui" defs["igDebugBreakButton"][1]["ov_cimguiname"] = "igDebugBreakButton" defs["igDebugBreakButton"][1]["ret"] = "bool" @@ -14413,7 +14455,7 @@ defs["igDebugBreakButtonTooltip"][1]["call_args"] = "(keyboard_only,description_ defs["igDebugBreakButtonTooltip"][1]["cimguiname"] = "igDebugBreakButtonTooltip" defs["igDebugBreakButtonTooltip"][1]["defaults"] = {} defs["igDebugBreakButtonTooltip"][1]["funcname"] = "DebugBreakButtonTooltip" -defs["igDebugBreakButtonTooltip"][1]["location"] = "imgui_internal:3928" +defs["igDebugBreakButtonTooltip"][1]["location"] = "imgui_internal:3937" defs["igDebugBreakButtonTooltip"][1]["namespace"] = "ImGui" defs["igDebugBreakButtonTooltip"][1]["ov_cimguiname"] = "igDebugBreakButtonTooltip" defs["igDebugBreakButtonTooltip"][1]["ret"] = "void" @@ -14429,7 +14471,7 @@ defs["igDebugBreakClearData"][1]["call_args"] = "()" defs["igDebugBreakClearData"][1]["cimguiname"] = "igDebugBreakClearData" defs["igDebugBreakClearData"][1]["defaults"] = {} defs["igDebugBreakClearData"][1]["funcname"] = "DebugBreakClearData" -defs["igDebugBreakClearData"][1]["location"] = "imgui_internal:3926" +defs["igDebugBreakClearData"][1]["location"] = "imgui_internal:3935" defs["igDebugBreakClearData"][1]["namespace"] = "ImGui" defs["igDebugBreakClearData"][1]["ov_cimguiname"] = "igDebugBreakClearData" defs["igDebugBreakClearData"][1]["ret"] = "void" @@ -14466,7 +14508,7 @@ defs["igDebugCheckVersionAndDataLayout"][1]["call_args"] = "(version_str,sz_io,s defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" -defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:1061" +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:1065" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" @@ -14486,7 +14528,7 @@ defs["igDebugDrawCursorPos"][1]["cimguiname"] = "igDebugDrawCursorPos" defs["igDebugDrawCursorPos"][1]["defaults"] = {} defs["igDebugDrawCursorPos"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawCursorPos"][1]["funcname"] = "DebugDrawCursorPos" -defs["igDebugDrawCursorPos"][1]["location"] = "imgui_internal:3919" +defs["igDebugDrawCursorPos"][1]["location"] = "imgui_internal:3928" defs["igDebugDrawCursorPos"][1]["namespace"] = "ImGui" defs["igDebugDrawCursorPos"][1]["ov_cimguiname"] = "igDebugDrawCursorPos" defs["igDebugDrawCursorPos"][1]["ret"] = "void" @@ -14506,7 +14548,7 @@ defs["igDebugDrawItemRect"][1]["cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["defaults"] = {} defs["igDebugDrawItemRect"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawItemRect"][1]["funcname"] = "DebugDrawItemRect" -defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3921" +defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3930" defs["igDebugDrawItemRect"][1]["namespace"] = "ImGui" defs["igDebugDrawItemRect"][1]["ov_cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["ret"] = "void" @@ -14526,7 +14568,7 @@ defs["igDebugDrawLineExtents"][1]["cimguiname"] = "igDebugDrawLineExtents" defs["igDebugDrawLineExtents"][1]["defaults"] = {} defs["igDebugDrawLineExtents"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawLineExtents"][1]["funcname"] = "DebugDrawLineExtents" -defs["igDebugDrawLineExtents"][1]["location"] = "imgui_internal:3920" +defs["igDebugDrawLineExtents"][1]["location"] = "imgui_internal:3929" defs["igDebugDrawLineExtents"][1]["namespace"] = "ImGui" defs["igDebugDrawLineExtents"][1]["ov_cimguiname"] = "igDebugDrawLineExtents" defs["igDebugDrawLineExtents"][1]["ret"] = "void" @@ -14545,7 +14587,7 @@ defs["igDebugFlashStyleColor"][1]["call_args"] = "(idx)" defs["igDebugFlashStyleColor"][1]["cimguiname"] = "igDebugFlashStyleColor" defs["igDebugFlashStyleColor"][1]["defaults"] = {} defs["igDebugFlashStyleColor"][1]["funcname"] = "DebugFlashStyleColor" -defs["igDebugFlashStyleColor"][1]["location"] = "imgui:1059" +defs["igDebugFlashStyleColor"][1]["location"] = "imgui:1063" defs["igDebugFlashStyleColor"][1]["namespace"] = "ImGui" defs["igDebugFlashStyleColor"][1]["ov_cimguiname"] = "igDebugFlashStyleColor" defs["igDebugFlashStyleColor"][1]["ret"] = "void" @@ -14573,7 +14615,7 @@ defs["igDebugHookIdInfo"][1]["call_args"] = "(id,data_type,data_id,data_id_end)" defs["igDebugHookIdInfo"][1]["cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["defaults"] = {} defs["igDebugHookIdInfo"][1]["funcname"] = "DebugHookIdInfo" -defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3930" +defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3939" defs["igDebugHookIdInfo"][1]["namespace"] = "ImGui" defs["igDebugHookIdInfo"][1]["ov_cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["ret"] = "void" @@ -14592,7 +14634,7 @@ defs["igDebugLocateItem"][1]["call_args"] = "(target_id)" defs["igDebugLocateItem"][1]["cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["defaults"] = {} defs["igDebugLocateItem"][1]["funcname"] = "DebugLocateItem" -defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3923" +defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3932" defs["igDebugLocateItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItem"][1]["ov_cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["ret"] = "void" @@ -14611,7 +14653,7 @@ defs["igDebugLocateItemOnHover"][1]["call_args"] = "(target_id)" defs["igDebugLocateItemOnHover"][1]["cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["defaults"] = {} defs["igDebugLocateItemOnHover"][1]["funcname"] = "DebugLocateItemOnHover" -defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3924" +defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3933" defs["igDebugLocateItemOnHover"][1]["namespace"] = "ImGui" defs["igDebugLocateItemOnHover"][1]["ov_cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["ret"] = "void" @@ -14627,7 +14669,7 @@ defs["igDebugLocateItemResolveWithLastItem"][1]["call_args"] = "()" defs["igDebugLocateItemResolveWithLastItem"][1]["cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["defaults"] = {} defs["igDebugLocateItemResolveWithLastItem"][1]["funcname"] = "DebugLocateItemResolveWithLastItem" -defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3925" +defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3934" defs["igDebugLocateItemResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItemResolveWithLastItem"][1]["ov_cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["ret"] = "void" @@ -14650,7 +14692,7 @@ defs["igDebugLog"][1]["cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["defaults"] = {} defs["igDebugLog"][1]["funcname"] = "DebugLog" defs["igDebugLog"][1]["isvararg"] = "...)" -defs["igDebugLog"][1]["location"] = "imgui:1063" +defs["igDebugLog"][1]["location"] = "imgui:1067" defs["igDebugLog"][1]["namespace"] = "ImGui" defs["igDebugLog"][1]["ov_cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["ret"] = "void" @@ -14672,7 +14714,7 @@ defs["igDebugLogV"][1]["call_args"] = "(fmt,args)" defs["igDebugLogV"][1]["cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["defaults"] = {} defs["igDebugLogV"][1]["funcname"] = "DebugLogV" -defs["igDebugLogV"][1]["location"] = "imgui:1064" +defs["igDebugLogV"][1]["location"] = "imgui:1068" defs["igDebugLogV"][1]["namespace"] = "ImGui" defs["igDebugLogV"][1]["ov_cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["ret"] = "void" @@ -14691,7 +14733,7 @@ defs["igDebugNodeColumns"][1]["call_args"] = "(columns)" defs["igDebugNodeColumns"][1]["cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["defaults"] = {} defs["igDebugNodeColumns"][1]["funcname"] = "DebugNodeColumns" -defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3931" +defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3940" defs["igDebugNodeColumns"][1]["namespace"] = "ImGui" defs["igDebugNodeColumns"][1]["ov_cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["ret"] = "void" @@ -14713,7 +14755,7 @@ defs["igDebugNodeDockNode"][1]["call_args"] = "(node,label)" defs["igDebugNodeDockNode"][1]["cimguiname"] = "igDebugNodeDockNode" defs["igDebugNodeDockNode"][1]["defaults"] = {} defs["igDebugNodeDockNode"][1]["funcname"] = "DebugNodeDockNode" -defs["igDebugNodeDockNode"][1]["location"] = "imgui_internal:3932" +defs["igDebugNodeDockNode"][1]["location"] = "imgui_internal:3941" defs["igDebugNodeDockNode"][1]["namespace"] = "ImGui" defs["igDebugNodeDockNode"][1]["ov_cimguiname"] = "igDebugNodeDockNode" defs["igDebugNodeDockNode"][1]["ret"] = "void" @@ -14744,7 +14786,7 @@ defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["call_args"] = "(out_draw_li defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["defaults"] = {} defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["funcname"] = "DebugNodeDrawCmdShowMeshAndBoundingBox" -defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3934" +defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3943" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ov_cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ret"] = "void" @@ -14772,7 +14814,7 @@ defs["igDebugNodeDrawList"][1]["call_args"] = "(window,viewport,draw_list,label) defs["igDebugNodeDrawList"][1]["cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["defaults"] = {} defs["igDebugNodeDrawList"][1]["funcname"] = "DebugNodeDrawList" -defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3933" +defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3942" defs["igDebugNodeDrawList"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawList"][1]["ov_cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["ret"] = "void" @@ -14791,7 +14833,7 @@ defs["igDebugNodeFont"][1]["call_args"] = "(font)" defs["igDebugNodeFont"][1]["cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["defaults"] = {} defs["igDebugNodeFont"][1]["funcname"] = "DebugNodeFont" -defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3935" +defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3944" defs["igDebugNodeFont"][1]["namespace"] = "ImGui" defs["igDebugNodeFont"][1]["ov_cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["ret"] = "void" @@ -14813,7 +14855,7 @@ defs["igDebugNodeFontGlyph"][1]["call_args"] = "(font,glyph)" defs["igDebugNodeFontGlyph"][1]["cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["defaults"] = {} defs["igDebugNodeFontGlyph"][1]["funcname"] = "DebugNodeFontGlyph" -defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3936" +defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3945" defs["igDebugNodeFontGlyph"][1]["namespace"] = "ImGui" defs["igDebugNodeFontGlyph"][1]["ov_cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["ret"] = "void" @@ -14832,7 +14874,7 @@ defs["igDebugNodeInputTextState"][1]["call_args"] = "(state)" defs["igDebugNodeInputTextState"][1]["cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["defaults"] = {} defs["igDebugNodeInputTextState"][1]["funcname"] = "DebugNodeInputTextState" -defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3941" +defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3950" defs["igDebugNodeInputTextState"][1]["namespace"] = "ImGui" defs["igDebugNodeInputTextState"][1]["ov_cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["ret"] = "void" @@ -14851,7 +14893,7 @@ defs["igDebugNodeMultiSelectState"][1]["call_args"] = "(state)" defs["igDebugNodeMultiSelectState"][1]["cimguiname"] = "igDebugNodeMultiSelectState" defs["igDebugNodeMultiSelectState"][1]["defaults"] = {} defs["igDebugNodeMultiSelectState"][1]["funcname"] = "DebugNodeMultiSelectState" -defs["igDebugNodeMultiSelectState"][1]["location"] = "imgui_internal:3943" +defs["igDebugNodeMultiSelectState"][1]["location"] = "imgui_internal:3952" defs["igDebugNodeMultiSelectState"][1]["namespace"] = "ImGui" defs["igDebugNodeMultiSelectState"][1]["ov_cimguiname"] = "igDebugNodeMultiSelectState" defs["igDebugNodeMultiSelectState"][1]["ret"] = "void" @@ -14876,7 +14918,7 @@ defs["igDebugNodePlatformMonitor"][1]["call_args"] = "(monitor,label,idx)" defs["igDebugNodePlatformMonitor"][1]["cimguiname"] = "igDebugNodePlatformMonitor" defs["igDebugNodePlatformMonitor"][1]["defaults"] = {} defs["igDebugNodePlatformMonitor"][1]["funcname"] = "DebugNodePlatformMonitor" -defs["igDebugNodePlatformMonitor"][1]["location"] = "imgui_internal:3949" +defs["igDebugNodePlatformMonitor"][1]["location"] = "imgui_internal:3958" defs["igDebugNodePlatformMonitor"][1]["namespace"] = "ImGui" defs["igDebugNodePlatformMonitor"][1]["ov_cimguiname"] = "igDebugNodePlatformMonitor" defs["igDebugNodePlatformMonitor"][1]["ret"] = "void" @@ -14898,7 +14940,7 @@ defs["igDebugNodeStorage"][1]["call_args"] = "(storage,label)" defs["igDebugNodeStorage"][1]["cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["defaults"] = {} defs["igDebugNodeStorage"][1]["funcname"] = "DebugNodeStorage" -defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3937" +defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3946" defs["igDebugNodeStorage"][1]["namespace"] = "ImGui" defs["igDebugNodeStorage"][1]["ov_cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["ret"] = "void" @@ -14920,7 +14962,7 @@ defs["igDebugNodeTabBar"][1]["call_args"] = "(tab_bar,label)" defs["igDebugNodeTabBar"][1]["cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["defaults"] = {} defs["igDebugNodeTabBar"][1]["funcname"] = "DebugNodeTabBar" -defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3938" +defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3947" defs["igDebugNodeTabBar"][1]["namespace"] = "ImGui" defs["igDebugNodeTabBar"][1]["ov_cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["ret"] = "void" @@ -14939,7 +14981,7 @@ defs["igDebugNodeTable"][1]["call_args"] = "(table)" defs["igDebugNodeTable"][1]["cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["defaults"] = {} defs["igDebugNodeTable"][1]["funcname"] = "DebugNodeTable" -defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3939" +defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3948" defs["igDebugNodeTable"][1]["namespace"] = "ImGui" defs["igDebugNodeTable"][1]["ov_cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["ret"] = "void" @@ -14958,7 +15000,7 @@ defs["igDebugNodeTableSettings"][1]["call_args"] = "(settings)" defs["igDebugNodeTableSettings"][1]["cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["defaults"] = {} defs["igDebugNodeTableSettings"][1]["funcname"] = "DebugNodeTableSettings" -defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3940" +defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3949" defs["igDebugNodeTableSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeTableSettings"][1]["ov_cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["ret"] = "void" @@ -14977,7 +15019,7 @@ defs["igDebugNodeTypingSelectState"][1]["call_args"] = "(state)" defs["igDebugNodeTypingSelectState"][1]["cimguiname"] = "igDebugNodeTypingSelectState" defs["igDebugNodeTypingSelectState"][1]["defaults"] = {} defs["igDebugNodeTypingSelectState"][1]["funcname"] = "DebugNodeTypingSelectState" -defs["igDebugNodeTypingSelectState"][1]["location"] = "imgui_internal:3942" +defs["igDebugNodeTypingSelectState"][1]["location"] = "imgui_internal:3951" defs["igDebugNodeTypingSelectState"][1]["namespace"] = "ImGui" defs["igDebugNodeTypingSelectState"][1]["ov_cimguiname"] = "igDebugNodeTypingSelectState" defs["igDebugNodeTypingSelectState"][1]["ret"] = "void" @@ -14996,7 +15038,7 @@ defs["igDebugNodeViewport"][1]["call_args"] = "(viewport)" defs["igDebugNodeViewport"][1]["cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["defaults"] = {} defs["igDebugNodeViewport"][1]["funcname"] = "DebugNodeViewport" -defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3948" +defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3957" defs["igDebugNodeViewport"][1]["namespace"] = "ImGui" defs["igDebugNodeViewport"][1]["ov_cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["ret"] = "void" @@ -15018,7 +15060,7 @@ defs["igDebugNodeWindow"][1]["call_args"] = "(window,label)" defs["igDebugNodeWindow"][1]["cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["defaults"] = {} defs["igDebugNodeWindow"][1]["funcname"] = "DebugNodeWindow" -defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3944" +defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3953" defs["igDebugNodeWindow"][1]["namespace"] = "ImGui" defs["igDebugNodeWindow"][1]["ov_cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["ret"] = "void" @@ -15037,7 +15079,7 @@ defs["igDebugNodeWindowSettings"][1]["call_args"] = "(settings)" defs["igDebugNodeWindowSettings"][1]["cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["defaults"] = {} defs["igDebugNodeWindowSettings"][1]["funcname"] = "DebugNodeWindowSettings" -defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3945" +defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3954" defs["igDebugNodeWindowSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowSettings"][1]["ov_cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["ret"] = "void" @@ -15059,7 +15101,7 @@ defs["igDebugNodeWindowsList"][1]["call_args"] = "(windows,label)" defs["igDebugNodeWindowsList"][1]["cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["defaults"] = {} defs["igDebugNodeWindowsList"][1]["funcname"] = "DebugNodeWindowsList" -defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3946" +defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3955" defs["igDebugNodeWindowsList"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsList"][1]["ov_cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["ret"] = "void" @@ -15084,7 +15126,7 @@ defs["igDebugNodeWindowsListByBeginStackParent"][1]["call_args"] = "(windows,win defs["igDebugNodeWindowsListByBeginStackParent"][1]["cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["defaults"] = {} defs["igDebugNodeWindowsListByBeginStackParent"][1]["funcname"] = "DebugNodeWindowsListByBeginStackParent" -defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3947" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3956" defs["igDebugNodeWindowsListByBeginStackParent"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ov_cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ret"] = "void" @@ -15103,7 +15145,7 @@ defs["igDebugRenderKeyboardPreview"][1]["call_args"] = "(draw_list)" defs["igDebugRenderKeyboardPreview"][1]["cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["defaults"] = {} defs["igDebugRenderKeyboardPreview"][1]["funcname"] = "DebugRenderKeyboardPreview" -defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3950" +defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3959" defs["igDebugRenderKeyboardPreview"][1]["namespace"] = "ImGui" defs["igDebugRenderKeyboardPreview"][1]["ov_cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["ret"] = "void" @@ -15128,7 +15170,7 @@ defs["igDebugRenderViewportThumbnail"][1]["call_args"] = "(draw_list,viewport,bb defs["igDebugRenderViewportThumbnail"][1]["cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["defaults"] = {} defs["igDebugRenderViewportThumbnail"][1]["funcname"] = "DebugRenderViewportThumbnail" -defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3951" +defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3960" defs["igDebugRenderViewportThumbnail"][1]["namespace"] = "ImGui" defs["igDebugRenderViewportThumbnail"][1]["ov_cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["ret"] = "void" @@ -15144,7 +15186,7 @@ defs["igDebugStartItemPicker"][1]["call_args"] = "()" defs["igDebugStartItemPicker"][1]["cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["defaults"] = {} defs["igDebugStartItemPicker"][1]["funcname"] = "DebugStartItemPicker" -defs["igDebugStartItemPicker"][1]["location"] = "imgui:1060" +defs["igDebugStartItemPicker"][1]["location"] = "imgui:1064" defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["ret"] = "void" @@ -15163,7 +15205,7 @@ defs["igDebugTextEncoding"][1]["call_args"] = "(text)" defs["igDebugTextEncoding"][1]["cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["defaults"] = {} defs["igDebugTextEncoding"][1]["funcname"] = "DebugTextEncoding" -defs["igDebugTextEncoding"][1]["location"] = "imgui:1058" +defs["igDebugTextEncoding"][1]["location"] = "imgui:1062" defs["igDebugTextEncoding"][1]["namespace"] = "ImGui" defs["igDebugTextEncoding"][1]["ov_cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["ret"] = "void" @@ -15185,7 +15227,7 @@ defs["igDebugTextUnformattedWithLocateItem"][1]["call_args"] = "(line_begin,line defs["igDebugTextUnformattedWithLocateItem"][1]["cimguiname"] = "igDebugTextUnformattedWithLocateItem" defs["igDebugTextUnformattedWithLocateItem"][1]["defaults"] = {} defs["igDebugTextUnformattedWithLocateItem"][1]["funcname"] = "DebugTextUnformattedWithLocateItem" -defs["igDebugTextUnformattedWithLocateItem"][1]["location"] = "imgui_internal:3922" +defs["igDebugTextUnformattedWithLocateItem"][1]["location"] = "imgui_internal:3931" defs["igDebugTextUnformattedWithLocateItem"][1]["namespace"] = "ImGui" defs["igDebugTextUnformattedWithLocateItem"][1]["ov_cimguiname"] = "igDebugTextUnformattedWithLocateItem" defs["igDebugTextUnformattedWithLocateItem"][1]["ret"] = "void" @@ -15205,7 +15247,7 @@ defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["defaults"] = {} defs["igDestroyContext"][1]["defaults"]["ctx"] = "NULL" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" -defs["igDestroyContext"][1]["location"] = "imgui:328" +defs["igDestroyContext"][1]["location"] = "imgui:329" defs["igDestroyContext"][1]["namespace"] = "ImGui" defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" @@ -15224,7 +15266,7 @@ defs["igDestroyPlatformWindow"][1]["call_args"] = "(viewport)" defs["igDestroyPlatformWindow"][1]["cimguiname"] = "igDestroyPlatformWindow" defs["igDestroyPlatformWindow"][1]["defaults"] = {} defs["igDestroyPlatformWindow"][1]["funcname"] = "DestroyPlatformWindow" -defs["igDestroyPlatformWindow"][1]["location"] = "imgui_internal:3410" +defs["igDestroyPlatformWindow"][1]["location"] = "imgui_internal:3419" defs["igDestroyPlatformWindow"][1]["namespace"] = "ImGui" defs["igDestroyPlatformWindow"][1]["ov_cimguiname"] = "igDestroyPlatformWindow" defs["igDestroyPlatformWindow"][1]["ret"] = "void" @@ -15240,7 +15282,7 @@ defs["igDestroyPlatformWindows"][1]["call_args"] = "()" defs["igDestroyPlatformWindows"][1]["cimguiname"] = "igDestroyPlatformWindows" defs["igDestroyPlatformWindows"][1]["defaults"] = {} defs["igDestroyPlatformWindows"][1]["funcname"] = "DestroyPlatformWindows" -defs["igDestroyPlatformWindows"][1]["location"] = "imgui:1082" +defs["igDestroyPlatformWindows"][1]["location"] = "imgui:1085" defs["igDestroyPlatformWindows"][1]["namespace"] = "ImGui" defs["igDestroyPlatformWindows"][1]["ov_cimguiname"] = "igDestroyPlatformWindows" defs["igDestroyPlatformWindows"][1]["ret"] = "void" @@ -15264,7 +15306,7 @@ defs["igDockBuilderAddNode"][1]["defaults"] = {} defs["igDockBuilderAddNode"][1]["defaults"]["flags"] = "0" defs["igDockBuilderAddNode"][1]["defaults"]["node_id"] = "0" defs["igDockBuilderAddNode"][1]["funcname"] = "DockBuilderAddNode" -defs["igDockBuilderAddNode"][1]["location"] = "imgui_internal:3672" +defs["igDockBuilderAddNode"][1]["location"] = "imgui_internal:3681" defs["igDockBuilderAddNode"][1]["namespace"] = "ImGui" defs["igDockBuilderAddNode"][1]["ov_cimguiname"] = "igDockBuilderAddNode" defs["igDockBuilderAddNode"][1]["ret"] = "ImGuiID" @@ -15289,7 +15331,7 @@ defs["igDockBuilderCopyDockSpace"][1]["call_args"] = "(src_dockspace_id,dst_dock defs["igDockBuilderCopyDockSpace"][1]["cimguiname"] = "igDockBuilderCopyDockSpace" defs["igDockBuilderCopyDockSpace"][1]["defaults"] = {} defs["igDockBuilderCopyDockSpace"][1]["funcname"] = "DockBuilderCopyDockSpace" -defs["igDockBuilderCopyDockSpace"][1]["location"] = "imgui_internal:3679" +defs["igDockBuilderCopyDockSpace"][1]["location"] = "imgui_internal:3688" defs["igDockBuilderCopyDockSpace"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyDockSpace"][1]["ov_cimguiname"] = "igDockBuilderCopyDockSpace" defs["igDockBuilderCopyDockSpace"][1]["ret"] = "void" @@ -15314,7 +15356,7 @@ defs["igDockBuilderCopyNode"][1]["call_args"] = "(src_node_id,dst_node_id,out_no defs["igDockBuilderCopyNode"][1]["cimguiname"] = "igDockBuilderCopyNode" defs["igDockBuilderCopyNode"][1]["defaults"] = {} defs["igDockBuilderCopyNode"][1]["funcname"] = "DockBuilderCopyNode" -defs["igDockBuilderCopyNode"][1]["location"] = "imgui_internal:3680" +defs["igDockBuilderCopyNode"][1]["location"] = "imgui_internal:3689" defs["igDockBuilderCopyNode"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyNode"][1]["ov_cimguiname"] = "igDockBuilderCopyNode" defs["igDockBuilderCopyNode"][1]["ret"] = "void" @@ -15336,7 +15378,7 @@ defs["igDockBuilderCopyWindowSettings"][1]["call_args"] = "(src_name,dst_name)" defs["igDockBuilderCopyWindowSettings"][1]["cimguiname"] = "igDockBuilderCopyWindowSettings" defs["igDockBuilderCopyWindowSettings"][1]["defaults"] = {} defs["igDockBuilderCopyWindowSettings"][1]["funcname"] = "DockBuilderCopyWindowSettings" -defs["igDockBuilderCopyWindowSettings"][1]["location"] = "imgui_internal:3681" +defs["igDockBuilderCopyWindowSettings"][1]["location"] = "imgui_internal:3690" defs["igDockBuilderCopyWindowSettings"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyWindowSettings"][1]["ov_cimguiname"] = "igDockBuilderCopyWindowSettings" defs["igDockBuilderCopyWindowSettings"][1]["ret"] = "void" @@ -15358,7 +15400,7 @@ defs["igDockBuilderDockWindow"][1]["call_args"] = "(window_name,node_id)" defs["igDockBuilderDockWindow"][1]["cimguiname"] = "igDockBuilderDockWindow" defs["igDockBuilderDockWindow"][1]["defaults"] = {} defs["igDockBuilderDockWindow"][1]["funcname"] = "DockBuilderDockWindow" -defs["igDockBuilderDockWindow"][1]["location"] = "imgui_internal:3669" +defs["igDockBuilderDockWindow"][1]["location"] = "imgui_internal:3678" defs["igDockBuilderDockWindow"][1]["namespace"] = "ImGui" defs["igDockBuilderDockWindow"][1]["ov_cimguiname"] = "igDockBuilderDockWindow" defs["igDockBuilderDockWindow"][1]["ret"] = "void" @@ -15377,7 +15419,7 @@ defs["igDockBuilderFinish"][1]["call_args"] = "(node_id)" defs["igDockBuilderFinish"][1]["cimguiname"] = "igDockBuilderFinish" defs["igDockBuilderFinish"][1]["defaults"] = {} defs["igDockBuilderFinish"][1]["funcname"] = "DockBuilderFinish" -defs["igDockBuilderFinish"][1]["location"] = "imgui_internal:3682" +defs["igDockBuilderFinish"][1]["location"] = "imgui_internal:3691" defs["igDockBuilderFinish"][1]["namespace"] = "ImGui" defs["igDockBuilderFinish"][1]["ov_cimguiname"] = "igDockBuilderFinish" defs["igDockBuilderFinish"][1]["ret"] = "void" @@ -15396,7 +15438,7 @@ defs["igDockBuilderGetCentralNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderGetCentralNode"][1]["cimguiname"] = "igDockBuilderGetCentralNode" defs["igDockBuilderGetCentralNode"][1]["defaults"] = {} defs["igDockBuilderGetCentralNode"][1]["funcname"] = "DockBuilderGetCentralNode" -defs["igDockBuilderGetCentralNode"][1]["location"] = "imgui_internal:3671" +defs["igDockBuilderGetCentralNode"][1]["location"] = "imgui_internal:3680" defs["igDockBuilderGetCentralNode"][1]["namespace"] = "ImGui" defs["igDockBuilderGetCentralNode"][1]["ov_cimguiname"] = "igDockBuilderGetCentralNode" defs["igDockBuilderGetCentralNode"][1]["ret"] = "ImGuiDockNode*" @@ -15415,7 +15457,7 @@ defs["igDockBuilderGetNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderGetNode"][1]["cimguiname"] = "igDockBuilderGetNode" defs["igDockBuilderGetNode"][1]["defaults"] = {} defs["igDockBuilderGetNode"][1]["funcname"] = "DockBuilderGetNode" -defs["igDockBuilderGetNode"][1]["location"] = "imgui_internal:3670" +defs["igDockBuilderGetNode"][1]["location"] = "imgui_internal:3679" defs["igDockBuilderGetNode"][1]["namespace"] = "ImGui" defs["igDockBuilderGetNode"][1]["ov_cimguiname"] = "igDockBuilderGetNode" defs["igDockBuilderGetNode"][1]["ret"] = "ImGuiDockNode*" @@ -15434,7 +15476,7 @@ defs["igDockBuilderRemoveNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderRemoveNode"][1]["cimguiname"] = "igDockBuilderRemoveNode" defs["igDockBuilderRemoveNode"][1]["defaults"] = {} defs["igDockBuilderRemoveNode"][1]["funcname"] = "DockBuilderRemoveNode" -defs["igDockBuilderRemoveNode"][1]["location"] = "imgui_internal:3673" +defs["igDockBuilderRemoveNode"][1]["location"] = "imgui_internal:3682" defs["igDockBuilderRemoveNode"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNode"][1]["ov_cimguiname"] = "igDockBuilderRemoveNode" defs["igDockBuilderRemoveNode"][1]["ret"] = "void" @@ -15453,7 +15495,7 @@ defs["igDockBuilderRemoveNodeChildNodes"][1]["call_args"] = "(node_id)" defs["igDockBuilderRemoveNodeChildNodes"][1]["cimguiname"] = "igDockBuilderRemoveNodeChildNodes" defs["igDockBuilderRemoveNodeChildNodes"][1]["defaults"] = {} defs["igDockBuilderRemoveNodeChildNodes"][1]["funcname"] = "DockBuilderRemoveNodeChildNodes" -defs["igDockBuilderRemoveNodeChildNodes"][1]["location"] = "imgui_internal:3675" +defs["igDockBuilderRemoveNodeChildNodes"][1]["location"] = "imgui_internal:3684" defs["igDockBuilderRemoveNodeChildNodes"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNodeChildNodes"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeChildNodes" defs["igDockBuilderRemoveNodeChildNodes"][1]["ret"] = "void" @@ -15476,7 +15518,7 @@ defs["igDockBuilderRemoveNodeDockedWindows"][1]["cimguiname"] = "igDockBuilderRe defs["igDockBuilderRemoveNodeDockedWindows"][1]["defaults"] = {} defs["igDockBuilderRemoveNodeDockedWindows"][1]["defaults"]["clear_settings_refs"] = "true" defs["igDockBuilderRemoveNodeDockedWindows"][1]["funcname"] = "DockBuilderRemoveNodeDockedWindows" -defs["igDockBuilderRemoveNodeDockedWindows"][1]["location"] = "imgui_internal:3674" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["location"] = "imgui_internal:3683" defs["igDockBuilderRemoveNodeDockedWindows"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNodeDockedWindows"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeDockedWindows" defs["igDockBuilderRemoveNodeDockedWindows"][1]["ret"] = "void" @@ -15498,7 +15540,7 @@ defs["igDockBuilderSetNodePos"][1]["call_args"] = "(node_id,pos)" defs["igDockBuilderSetNodePos"][1]["cimguiname"] = "igDockBuilderSetNodePos" defs["igDockBuilderSetNodePos"][1]["defaults"] = {} defs["igDockBuilderSetNodePos"][1]["funcname"] = "DockBuilderSetNodePos" -defs["igDockBuilderSetNodePos"][1]["location"] = "imgui_internal:3676" +defs["igDockBuilderSetNodePos"][1]["location"] = "imgui_internal:3685" defs["igDockBuilderSetNodePos"][1]["namespace"] = "ImGui" defs["igDockBuilderSetNodePos"][1]["ov_cimguiname"] = "igDockBuilderSetNodePos" defs["igDockBuilderSetNodePos"][1]["ret"] = "void" @@ -15520,7 +15562,7 @@ defs["igDockBuilderSetNodeSize"][1]["call_args"] = "(node_id,size)" defs["igDockBuilderSetNodeSize"][1]["cimguiname"] = "igDockBuilderSetNodeSize" defs["igDockBuilderSetNodeSize"][1]["defaults"] = {} defs["igDockBuilderSetNodeSize"][1]["funcname"] = "DockBuilderSetNodeSize" -defs["igDockBuilderSetNodeSize"][1]["location"] = "imgui_internal:3677" +defs["igDockBuilderSetNodeSize"][1]["location"] = "imgui_internal:3686" defs["igDockBuilderSetNodeSize"][1]["namespace"] = "ImGui" defs["igDockBuilderSetNodeSize"][1]["ov_cimguiname"] = "igDockBuilderSetNodeSize" defs["igDockBuilderSetNodeSize"][1]["ret"] = "void" @@ -15551,7 +15593,7 @@ defs["igDockBuilderSplitNode"][1]["call_args"] = "(node_id,split_dir,size_ratio_ defs["igDockBuilderSplitNode"][1]["cimguiname"] = "igDockBuilderSplitNode" defs["igDockBuilderSplitNode"][1]["defaults"] = {} defs["igDockBuilderSplitNode"][1]["funcname"] = "DockBuilderSplitNode" -defs["igDockBuilderSplitNode"][1]["location"] = "imgui_internal:3678" +defs["igDockBuilderSplitNode"][1]["location"] = "imgui_internal:3687" defs["igDockBuilderSplitNode"][1]["namespace"] = "ImGui" defs["igDockBuilderSplitNode"][1]["ov_cimguiname"] = "igDockBuilderSplitNode" defs["igDockBuilderSplitNode"][1]["ret"] = "ImGuiID" @@ -15588,7 +15630,7 @@ defs["igDockContextCalcDropPosForDocking"][1]["call_args"] = "(target,target_nod defs["igDockContextCalcDropPosForDocking"][1]["cimguiname"] = "igDockContextCalcDropPosForDocking" defs["igDockContextCalcDropPosForDocking"][1]["defaults"] = {} defs["igDockContextCalcDropPosForDocking"][1]["funcname"] = "DockContextCalcDropPosForDocking" -defs["igDockContextCalcDropPosForDocking"][1]["location"] = "imgui_internal:3644" +defs["igDockContextCalcDropPosForDocking"][1]["location"] = "imgui_internal:3653" defs["igDockContextCalcDropPosForDocking"][1]["namespace"] = "ImGui" defs["igDockContextCalcDropPosForDocking"][1]["ov_cimguiname"] = "igDockContextCalcDropPosForDocking" defs["igDockContextCalcDropPosForDocking"][1]["ret"] = "bool" @@ -15613,7 +15655,7 @@ defs["igDockContextClearNodes"][1]["call_args"] = "(ctx,root_id,clear_settings_r defs["igDockContextClearNodes"][1]["cimguiname"] = "igDockContextClearNodes" defs["igDockContextClearNodes"][1]["defaults"] = {} defs["igDockContextClearNodes"][1]["funcname"] = "DockContextClearNodes" -defs["igDockContextClearNodes"][1]["location"] = "imgui_internal:3633" +defs["igDockContextClearNodes"][1]["location"] = "imgui_internal:3642" defs["igDockContextClearNodes"][1]["namespace"] = "ImGui" defs["igDockContextClearNodes"][1]["ov_cimguiname"] = "igDockContextClearNodes" defs["igDockContextClearNodes"][1]["ret"] = "void" @@ -15632,7 +15674,7 @@ defs["igDockContextEndFrame"][1]["call_args"] = "(ctx)" defs["igDockContextEndFrame"][1]["cimguiname"] = "igDockContextEndFrame" defs["igDockContextEndFrame"][1]["defaults"] = {} defs["igDockContextEndFrame"][1]["funcname"] = "DockContextEndFrame" -defs["igDockContextEndFrame"][1]["location"] = "imgui_internal:3637" +defs["igDockContextEndFrame"][1]["location"] = "imgui_internal:3646" defs["igDockContextEndFrame"][1]["namespace"] = "ImGui" defs["igDockContextEndFrame"][1]["ov_cimguiname"] = "igDockContextEndFrame" defs["igDockContextEndFrame"][1]["ret"] = "void" @@ -15654,7 +15696,7 @@ defs["igDockContextFindNodeByID"][1]["call_args"] = "(ctx,id)" defs["igDockContextFindNodeByID"][1]["cimguiname"] = "igDockContextFindNodeByID" defs["igDockContextFindNodeByID"][1]["defaults"] = {} defs["igDockContextFindNodeByID"][1]["funcname"] = "DockContextFindNodeByID" -defs["igDockContextFindNodeByID"][1]["location"] = "imgui_internal:3645" +defs["igDockContextFindNodeByID"][1]["location"] = "imgui_internal:3654" defs["igDockContextFindNodeByID"][1]["namespace"] = "ImGui" defs["igDockContextFindNodeByID"][1]["ov_cimguiname"] = "igDockContextFindNodeByID" defs["igDockContextFindNodeByID"][1]["ret"] = "ImGuiDockNode*" @@ -15673,7 +15715,7 @@ defs["igDockContextGenNodeID"][1]["call_args"] = "(ctx)" defs["igDockContextGenNodeID"][1]["cimguiname"] = "igDockContextGenNodeID" defs["igDockContextGenNodeID"][1]["defaults"] = {} defs["igDockContextGenNodeID"][1]["funcname"] = "DockContextGenNodeID" -defs["igDockContextGenNodeID"][1]["location"] = "imgui_internal:3638" +defs["igDockContextGenNodeID"][1]["location"] = "imgui_internal:3647" defs["igDockContextGenNodeID"][1]["namespace"] = "ImGui" defs["igDockContextGenNodeID"][1]["ov_cimguiname"] = "igDockContextGenNodeID" defs["igDockContextGenNodeID"][1]["ret"] = "ImGuiID" @@ -15692,7 +15734,7 @@ defs["igDockContextInitialize"][1]["call_args"] = "(ctx)" defs["igDockContextInitialize"][1]["cimguiname"] = "igDockContextInitialize" defs["igDockContextInitialize"][1]["defaults"] = {} defs["igDockContextInitialize"][1]["funcname"] = "DockContextInitialize" -defs["igDockContextInitialize"][1]["location"] = "imgui_internal:3631" +defs["igDockContextInitialize"][1]["location"] = "imgui_internal:3640" defs["igDockContextInitialize"][1]["namespace"] = "ImGui" defs["igDockContextInitialize"][1]["ov_cimguiname"] = "igDockContextInitialize" defs["igDockContextInitialize"][1]["ret"] = "void" @@ -15711,7 +15753,7 @@ defs["igDockContextNewFrameUpdateDocking"][1]["call_args"] = "(ctx)" defs["igDockContextNewFrameUpdateDocking"][1]["cimguiname"] = "igDockContextNewFrameUpdateDocking" defs["igDockContextNewFrameUpdateDocking"][1]["defaults"] = {} defs["igDockContextNewFrameUpdateDocking"][1]["funcname"] = "DockContextNewFrameUpdateDocking" -defs["igDockContextNewFrameUpdateDocking"][1]["location"] = "imgui_internal:3636" +defs["igDockContextNewFrameUpdateDocking"][1]["location"] = "imgui_internal:3645" defs["igDockContextNewFrameUpdateDocking"][1]["namespace"] = "ImGui" defs["igDockContextNewFrameUpdateDocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateDocking" defs["igDockContextNewFrameUpdateDocking"][1]["ret"] = "void" @@ -15730,7 +15772,7 @@ defs["igDockContextNewFrameUpdateUndocking"][1]["call_args"] = "(ctx)" defs["igDockContextNewFrameUpdateUndocking"][1]["cimguiname"] = "igDockContextNewFrameUpdateUndocking" defs["igDockContextNewFrameUpdateUndocking"][1]["defaults"] = {} defs["igDockContextNewFrameUpdateUndocking"][1]["funcname"] = "DockContextNewFrameUpdateUndocking" -defs["igDockContextNewFrameUpdateUndocking"][1]["location"] = "imgui_internal:3635" +defs["igDockContextNewFrameUpdateUndocking"][1]["location"] = "imgui_internal:3644" defs["igDockContextNewFrameUpdateUndocking"][1]["namespace"] = "ImGui" defs["igDockContextNewFrameUpdateUndocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateUndocking" defs["igDockContextNewFrameUpdateUndocking"][1]["ret"] = "void" @@ -15752,7 +15794,7 @@ defs["igDockContextProcessUndockNode"][1]["call_args"] = "(ctx,node)" defs["igDockContextProcessUndockNode"][1]["cimguiname"] = "igDockContextProcessUndockNode" defs["igDockContextProcessUndockNode"][1]["defaults"] = {} defs["igDockContextProcessUndockNode"][1]["funcname"] = "DockContextProcessUndockNode" -defs["igDockContextProcessUndockNode"][1]["location"] = "imgui_internal:3643" +defs["igDockContextProcessUndockNode"][1]["location"] = "imgui_internal:3652" defs["igDockContextProcessUndockNode"][1]["namespace"] = "ImGui" defs["igDockContextProcessUndockNode"][1]["ov_cimguiname"] = "igDockContextProcessUndockNode" defs["igDockContextProcessUndockNode"][1]["ret"] = "void" @@ -15778,7 +15820,7 @@ defs["igDockContextProcessUndockWindow"][1]["cimguiname"] = "igDockContextProces defs["igDockContextProcessUndockWindow"][1]["defaults"] = {} defs["igDockContextProcessUndockWindow"][1]["defaults"]["clear_persistent_docking_ref"] = "true" defs["igDockContextProcessUndockWindow"][1]["funcname"] = "DockContextProcessUndockWindow" -defs["igDockContextProcessUndockWindow"][1]["location"] = "imgui_internal:3642" +defs["igDockContextProcessUndockWindow"][1]["location"] = "imgui_internal:3651" defs["igDockContextProcessUndockWindow"][1]["namespace"] = "ImGui" defs["igDockContextProcessUndockWindow"][1]["ov_cimguiname"] = "igDockContextProcessUndockWindow" defs["igDockContextProcessUndockWindow"][1]["ret"] = "void" @@ -15815,7 +15857,7 @@ defs["igDockContextQueueDock"][1]["call_args"] = "(ctx,target,target_node,payloa defs["igDockContextQueueDock"][1]["cimguiname"] = "igDockContextQueueDock" defs["igDockContextQueueDock"][1]["defaults"] = {} defs["igDockContextQueueDock"][1]["funcname"] = "DockContextQueueDock" -defs["igDockContextQueueDock"][1]["location"] = "imgui_internal:3639" +defs["igDockContextQueueDock"][1]["location"] = "imgui_internal:3648" defs["igDockContextQueueDock"][1]["namespace"] = "ImGui" defs["igDockContextQueueDock"][1]["ov_cimguiname"] = "igDockContextQueueDock" defs["igDockContextQueueDock"][1]["ret"] = "void" @@ -15837,7 +15879,7 @@ defs["igDockContextQueueUndockNode"][1]["call_args"] = "(ctx,node)" defs["igDockContextQueueUndockNode"][1]["cimguiname"] = "igDockContextQueueUndockNode" defs["igDockContextQueueUndockNode"][1]["defaults"] = {} defs["igDockContextQueueUndockNode"][1]["funcname"] = "DockContextQueueUndockNode" -defs["igDockContextQueueUndockNode"][1]["location"] = "imgui_internal:3641" +defs["igDockContextQueueUndockNode"][1]["location"] = "imgui_internal:3650" defs["igDockContextQueueUndockNode"][1]["namespace"] = "ImGui" defs["igDockContextQueueUndockNode"][1]["ov_cimguiname"] = "igDockContextQueueUndockNode" defs["igDockContextQueueUndockNode"][1]["ret"] = "void" @@ -15859,7 +15901,7 @@ defs["igDockContextQueueUndockWindow"][1]["call_args"] = "(ctx,window)" defs["igDockContextQueueUndockWindow"][1]["cimguiname"] = "igDockContextQueueUndockWindow" defs["igDockContextQueueUndockWindow"][1]["defaults"] = {} defs["igDockContextQueueUndockWindow"][1]["funcname"] = "DockContextQueueUndockWindow" -defs["igDockContextQueueUndockWindow"][1]["location"] = "imgui_internal:3640" +defs["igDockContextQueueUndockWindow"][1]["location"] = "imgui_internal:3649" defs["igDockContextQueueUndockWindow"][1]["namespace"] = "ImGui" defs["igDockContextQueueUndockWindow"][1]["ov_cimguiname"] = "igDockContextQueueUndockWindow" defs["igDockContextQueueUndockWindow"][1]["ret"] = "void" @@ -15878,7 +15920,7 @@ defs["igDockContextRebuildNodes"][1]["call_args"] = "(ctx)" defs["igDockContextRebuildNodes"][1]["cimguiname"] = "igDockContextRebuildNodes" defs["igDockContextRebuildNodes"][1]["defaults"] = {} defs["igDockContextRebuildNodes"][1]["funcname"] = "DockContextRebuildNodes" -defs["igDockContextRebuildNodes"][1]["location"] = "imgui_internal:3634" +defs["igDockContextRebuildNodes"][1]["location"] = "imgui_internal:3643" defs["igDockContextRebuildNodes"][1]["namespace"] = "ImGui" defs["igDockContextRebuildNodes"][1]["ov_cimguiname"] = "igDockContextRebuildNodes" defs["igDockContextRebuildNodes"][1]["ret"] = "void" @@ -15897,7 +15939,7 @@ defs["igDockContextShutdown"][1]["call_args"] = "(ctx)" defs["igDockContextShutdown"][1]["cimguiname"] = "igDockContextShutdown" defs["igDockContextShutdown"][1]["defaults"] = {} defs["igDockContextShutdown"][1]["funcname"] = "DockContextShutdown" -defs["igDockContextShutdown"][1]["location"] = "imgui_internal:3632" +defs["igDockContextShutdown"][1]["location"] = "imgui_internal:3641" defs["igDockContextShutdown"][1]["namespace"] = "ImGui" defs["igDockContextShutdown"][1]["ov_cimguiname"] = "igDockContextShutdown" defs["igDockContextShutdown"][1]["ret"] = "void" @@ -15916,7 +15958,7 @@ defs["igDockNodeBeginAmendTabBar"][1]["call_args"] = "(node)" defs["igDockNodeBeginAmendTabBar"][1]["cimguiname"] = "igDockNodeBeginAmendTabBar" defs["igDockNodeBeginAmendTabBar"][1]["defaults"] = {} defs["igDockNodeBeginAmendTabBar"][1]["funcname"] = "DockNodeBeginAmendTabBar" -defs["igDockNodeBeginAmendTabBar"][1]["location"] = "imgui_internal:3647" +defs["igDockNodeBeginAmendTabBar"][1]["location"] = "imgui_internal:3656" defs["igDockNodeBeginAmendTabBar"][1]["namespace"] = "ImGui" defs["igDockNodeBeginAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeBeginAmendTabBar" defs["igDockNodeBeginAmendTabBar"][1]["ret"] = "bool" @@ -15932,7 +15974,7 @@ defs["igDockNodeEndAmendTabBar"][1]["call_args"] = "()" defs["igDockNodeEndAmendTabBar"][1]["cimguiname"] = "igDockNodeEndAmendTabBar" defs["igDockNodeEndAmendTabBar"][1]["defaults"] = {} defs["igDockNodeEndAmendTabBar"][1]["funcname"] = "DockNodeEndAmendTabBar" -defs["igDockNodeEndAmendTabBar"][1]["location"] = "imgui_internal:3648" +defs["igDockNodeEndAmendTabBar"][1]["location"] = "imgui_internal:3657" defs["igDockNodeEndAmendTabBar"][1]["namespace"] = "ImGui" defs["igDockNodeEndAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeEndAmendTabBar" defs["igDockNodeEndAmendTabBar"][1]["ret"] = "void" @@ -15951,7 +15993,7 @@ defs["igDockNodeGetDepth"][1]["call_args"] = "(node)" defs["igDockNodeGetDepth"][1]["cimguiname"] = "igDockNodeGetDepth" defs["igDockNodeGetDepth"][1]["defaults"] = {} defs["igDockNodeGetDepth"][1]["funcname"] = "DockNodeGetDepth" -defs["igDockNodeGetDepth"][1]["location"] = "imgui_internal:3651" +defs["igDockNodeGetDepth"][1]["location"] = "imgui_internal:3660" defs["igDockNodeGetDepth"][1]["namespace"] = "ImGui" defs["igDockNodeGetDepth"][1]["ov_cimguiname"] = "igDockNodeGetDepth" defs["igDockNodeGetDepth"][1]["ret"] = "int" @@ -15970,7 +16012,7 @@ defs["igDockNodeGetRootNode"][1]["call_args"] = "(node)" defs["igDockNodeGetRootNode"][1]["cimguiname"] = "igDockNodeGetRootNode" defs["igDockNodeGetRootNode"][1]["defaults"] = {} defs["igDockNodeGetRootNode"][1]["funcname"] = "DockNodeGetRootNode" -defs["igDockNodeGetRootNode"][1]["location"] = "imgui_internal:3649" +defs["igDockNodeGetRootNode"][1]["location"] = "imgui_internal:3658" defs["igDockNodeGetRootNode"][1]["namespace"] = "ImGui" defs["igDockNodeGetRootNode"][1]["ov_cimguiname"] = "igDockNodeGetRootNode" defs["igDockNodeGetRootNode"][1]["ret"] = "ImGuiDockNode*" @@ -15989,7 +16031,7 @@ defs["igDockNodeGetWindowMenuButtonId"][1]["call_args"] = "(node)" defs["igDockNodeGetWindowMenuButtonId"][1]["cimguiname"] = "igDockNodeGetWindowMenuButtonId" defs["igDockNodeGetWindowMenuButtonId"][1]["defaults"] = {} defs["igDockNodeGetWindowMenuButtonId"][1]["funcname"] = "DockNodeGetWindowMenuButtonId" -defs["igDockNodeGetWindowMenuButtonId"][1]["location"] = "imgui_internal:3652" +defs["igDockNodeGetWindowMenuButtonId"][1]["location"] = "imgui_internal:3661" defs["igDockNodeGetWindowMenuButtonId"][1]["namespace"] = "ImGui" defs["igDockNodeGetWindowMenuButtonId"][1]["ov_cimguiname"] = "igDockNodeGetWindowMenuButtonId" defs["igDockNodeGetWindowMenuButtonId"][1]["ret"] = "ImGuiID" @@ -16011,7 +16053,7 @@ defs["igDockNodeIsInHierarchyOf"][1]["call_args"] = "(node,parent)" defs["igDockNodeIsInHierarchyOf"][1]["cimguiname"] = "igDockNodeIsInHierarchyOf" defs["igDockNodeIsInHierarchyOf"][1]["defaults"] = {} defs["igDockNodeIsInHierarchyOf"][1]["funcname"] = "DockNodeIsInHierarchyOf" -defs["igDockNodeIsInHierarchyOf"][1]["location"] = "imgui_internal:3650" +defs["igDockNodeIsInHierarchyOf"][1]["location"] = "imgui_internal:3659" defs["igDockNodeIsInHierarchyOf"][1]["namespace"] = "ImGui" defs["igDockNodeIsInHierarchyOf"][1]["ov_cimguiname"] = "igDockNodeIsInHierarchyOf" defs["igDockNodeIsInHierarchyOf"][1]["ret"] = "bool" @@ -16036,7 +16078,7 @@ defs["igDockNodeWindowMenuHandler_Default"][1]["call_args"] = "(ctx,node,tab_bar defs["igDockNodeWindowMenuHandler_Default"][1]["cimguiname"] = "igDockNodeWindowMenuHandler_Default" defs["igDockNodeWindowMenuHandler_Default"][1]["defaults"] = {} defs["igDockNodeWindowMenuHandler_Default"][1]["funcname"] = "DockNodeWindowMenuHandler_Default" -defs["igDockNodeWindowMenuHandler_Default"][1]["location"] = "imgui_internal:3646" +defs["igDockNodeWindowMenuHandler_Default"][1]["location"] = "imgui_internal:3655" defs["igDockNodeWindowMenuHandler_Default"][1]["namespace"] = "ImGui" defs["igDockNodeWindowMenuHandler_Default"][1]["ov_cimguiname"] = "igDockNodeWindowMenuHandler_Default" defs["igDockNodeWindowMenuHandler_Default"][1]["ret"] = "void" @@ -16067,7 +16109,7 @@ defs["igDockSpace"][1]["defaults"]["flags"] = "0" defs["igDockSpace"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igDockSpace"][1]["defaults"]["window_class"] = "NULL" defs["igDockSpace"][1]["funcname"] = "DockSpace" -defs["igDockSpace"][1]["location"] = "imgui:881" +defs["igDockSpace"][1]["location"] = "imgui:885" defs["igDockSpace"][1]["namespace"] = "ImGui" defs["igDockSpace"][1]["ov_cimguiname"] = "igDockSpace" defs["igDockSpace"][1]["ret"] = "ImGuiID" @@ -16099,7 +16141,7 @@ defs["igDockSpaceOverViewport"][1]["defaults"]["flags"] = "0" defs["igDockSpaceOverViewport"][1]["defaults"]["viewport"] = "NULL" defs["igDockSpaceOverViewport"][1]["defaults"]["window_class"] = "NULL" defs["igDockSpaceOverViewport"][1]["funcname"] = "DockSpaceOverViewport" -defs["igDockSpaceOverViewport"][1]["location"] = "imgui:882" +defs["igDockSpaceOverViewport"][1]["location"] = "imgui:886" defs["igDockSpaceOverViewport"][1]["namespace"] = "ImGui" defs["igDockSpaceOverViewport"][1]["ov_cimguiname"] = "igDockSpaceOverViewport" defs["igDockSpaceOverViewport"][1]["ret"] = "ImGuiID" @@ -16139,7 +16181,7 @@ defs["igDragBehavior"][1]["call_args"] = "(id,data_type,p_v,v_speed,p_min,p_max, defs["igDragBehavior"][1]["cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["defaults"] = {} defs["igDragBehavior"][1]["funcname"] = "DragBehavior" -defs["igDragBehavior"][1]["location"] = "imgui_internal:3858" +defs["igDragBehavior"][1]["location"] = "imgui_internal:3867" defs["igDragBehavior"][1]["namespace"] = "ImGui" defs["igDragBehavior"][1]["ov_cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["ret"] = "bool" @@ -16181,7 +16223,7 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" -defs["igDragFloat"][1]["location"] = "imgui:592" +defs["igDragFloat"][1]["location"] = "imgui:596" defs["igDragFloat"][1]["namespace"] = "ImGui" defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" @@ -16223,7 +16265,7 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" -defs["igDragFloat2"][1]["location"] = "imgui:593" +defs["igDragFloat2"][1]["location"] = "imgui:597" defs["igDragFloat2"][1]["namespace"] = "ImGui" defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" @@ -16265,7 +16307,7 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" -defs["igDragFloat3"][1]["location"] = "imgui:594" +defs["igDragFloat3"][1]["location"] = "imgui:598" defs["igDragFloat3"][1]["namespace"] = "ImGui" defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" @@ -16307,7 +16349,7 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" -defs["igDragFloat4"][1]["location"] = "imgui:595" +defs["igDragFloat4"][1]["location"] = "imgui:599" defs["igDragFloat4"][1]["namespace"] = "ImGui" defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" @@ -16356,7 +16398,7 @@ defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" -defs["igDragFloatRange2"][1]["location"] = "imgui:596" +defs["igDragFloatRange2"][1]["location"] = "imgui:600" defs["igDragFloatRange2"][1]["namespace"] = "ImGui" defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" @@ -16398,7 +16440,7 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" -defs["igDragInt"][1]["location"] = "imgui:597" +defs["igDragInt"][1]["location"] = "imgui:601" defs["igDragInt"][1]["namespace"] = "ImGui" defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" @@ -16440,7 +16482,7 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" -defs["igDragInt2"][1]["location"] = "imgui:598" +defs["igDragInt2"][1]["location"] = "imgui:602" defs["igDragInt2"][1]["namespace"] = "ImGui" defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" @@ -16482,7 +16524,7 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" -defs["igDragInt3"][1]["location"] = "imgui:599" +defs["igDragInt3"][1]["location"] = "imgui:603" defs["igDragInt3"][1]["namespace"] = "ImGui" defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" @@ -16524,7 +16566,7 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" -defs["igDragInt4"][1]["location"] = "imgui:600" +defs["igDragInt4"][1]["location"] = "imgui:604" defs["igDragInt4"][1]["namespace"] = "ImGui" defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" @@ -16573,7 +16615,7 @@ defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" -defs["igDragIntRange2"][1]["location"] = "imgui:601" +defs["igDragIntRange2"][1]["location"] = "imgui:605" defs["igDragIntRange2"][1]["namespace"] = "ImGui" defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" @@ -16618,7 +16660,7 @@ defs["igDragScalar"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalar"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalar"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalar"][1]["funcname"] = "DragScalar" -defs["igDragScalar"][1]["location"] = "imgui:602" +defs["igDragScalar"][1]["location"] = "imgui:606" defs["igDragScalar"][1]["namespace"] = "ImGui" defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" @@ -16666,7 +16708,7 @@ defs["igDragScalarN"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalarN"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalarN"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" -defs["igDragScalarN"][1]["location"] = "imgui:603" +defs["igDragScalarN"][1]["location"] = "imgui:607" defs["igDragScalarN"][1]["namespace"] = "ImGui" defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" @@ -16685,7 +16727,7 @@ defs["igDummy"][1]["call_args"] = "(size)" defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" -defs["igDummy"][1]["location"] = "imgui:499" +defs["igDummy"][1]["location"] = "imgui:503" defs["igDummy"][1]["namespace"] = "ImGui" defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" @@ -16701,7 +16743,7 @@ defs["igEnd"][1]["call_args"] = "()" defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" -defs["igEnd"][1]["location"] = "imgui:370" +defs["igEnd"][1]["location"] = "imgui:372" defs["igEnd"][1]["namespace"] = "ImGui" defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" @@ -16723,7 +16765,7 @@ defs["igEndBoxSelect"][1]["call_args"] = "(scope_rect,ms_flags)" defs["igEndBoxSelect"][1]["cimguiname"] = "igEndBoxSelect" defs["igEndBoxSelect"][1]["defaults"] = {} defs["igEndBoxSelect"][1]["funcname"] = "EndBoxSelect" -defs["igEndBoxSelect"][1]["location"] = "imgui_internal:3711" +defs["igEndBoxSelect"][1]["location"] = "imgui_internal:3720" defs["igEndBoxSelect"][1]["namespace"] = "ImGui" defs["igEndBoxSelect"][1]["ov_cimguiname"] = "igEndBoxSelect" defs["igEndBoxSelect"][1]["ret"] = "void" @@ -16739,7 +16781,7 @@ defs["igEndChild"][1]["call_args"] = "()" defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" -defs["igEndChild"][1]["location"] = "imgui:392" +defs["igEndChild"][1]["location"] = "imgui:394" defs["igEndChild"][1]["namespace"] = "ImGui" defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" @@ -16755,7 +16797,7 @@ defs["igEndColumns"][1]["call_args"] = "()" defs["igEndColumns"][1]["cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["defaults"] = {} defs["igEndColumns"][1]["funcname"] = "EndColumns" -defs["igEndColumns"][1]["location"] = "imgui_internal:3724" +defs["igEndColumns"][1]["location"] = "imgui_internal:3733" defs["igEndColumns"][1]["namespace"] = "ImGui" defs["igEndColumns"][1]["ov_cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["ret"] = "void" @@ -16771,7 +16813,7 @@ defs["igEndCombo"][1]["call_args"] = "()" defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" -defs["igEndCombo"][1]["location"] = "imgui:575" +defs["igEndCombo"][1]["location"] = "imgui:579" defs["igEndCombo"][1]["namespace"] = "ImGui" defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" @@ -16787,7 +16829,7 @@ defs["igEndComboPreview"][1]["call_args"] = "()" defs["igEndComboPreview"][1]["cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["defaults"] = {} defs["igEndComboPreview"][1]["funcname"] = "EndComboPreview" -defs["igEndComboPreview"][1]["location"] = "imgui_internal:3517" +defs["igEndComboPreview"][1]["location"] = "imgui_internal:3526" defs["igEndComboPreview"][1]["namespace"] = "ImGui" defs["igEndComboPreview"][1]["ov_cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["ret"] = "void" @@ -16803,7 +16845,7 @@ defs["igEndDisabled"][1]["call_args"] = "()" defs["igEndDisabled"][1]["cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["defaults"] = {} defs["igEndDisabled"][1]["funcname"] = "EndDisabled" -defs["igEndDisabled"][1]["location"] = "imgui:917" +defs["igEndDisabled"][1]["location"] = "imgui:921" defs["igEndDisabled"][1]["namespace"] = "ImGui" defs["igEndDisabled"][1]["ov_cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["ret"] = "void" @@ -16819,7 +16861,7 @@ defs["igEndDisabledOverrideReenable"][1]["call_args"] = "()" defs["igEndDisabledOverrideReenable"][1]["cimguiname"] = "igEndDisabledOverrideReenable" defs["igEndDisabledOverrideReenable"][1]["defaults"] = {} defs["igEndDisabledOverrideReenable"][1]["funcname"] = "EndDisabledOverrideReenable" -defs["igEndDisabledOverrideReenable"][1]["location"] = "imgui_internal:3480" +defs["igEndDisabledOverrideReenable"][1]["location"] = "imgui_internal:3489" defs["igEndDisabledOverrideReenable"][1]["namespace"] = "ImGui" defs["igEndDisabledOverrideReenable"][1]["ov_cimguiname"] = "igEndDisabledOverrideReenable" defs["igEndDisabledOverrideReenable"][1]["ret"] = "void" @@ -16835,7 +16877,7 @@ defs["igEndDragDropSource"][1]["call_args"] = "()" defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" -defs["igEndDragDropSource"][1]["location"] = "imgui:905" +defs["igEndDragDropSource"][1]["location"] = "imgui:909" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -16851,7 +16893,7 @@ defs["igEndDragDropTarget"][1]["call_args"] = "()" defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" -defs["igEndDragDropTarget"][1]["location"] = "imgui:908" +defs["igEndDragDropTarget"][1]["location"] = "imgui:912" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -16867,7 +16909,7 @@ defs["igEndFrame"][1]["call_args"] = "()" defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" -defs["igEndFrame"][1]["location"] = "imgui:336" +defs["igEndFrame"][1]["location"] = "imgui:338" defs["igEndFrame"][1]["namespace"] = "ImGui" defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" @@ -16883,7 +16925,7 @@ defs["igEndGroup"][1]["call_args"] = "()" defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" -defs["igEndGroup"][1]["location"] = "imgui:503" +defs["igEndGroup"][1]["location"] = "imgui:507" defs["igEndGroup"][1]["namespace"] = "ImGui" defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" @@ -16899,7 +16941,7 @@ defs["igEndListBox"][1]["call_args"] = "()" defs["igEndListBox"][1]["cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["defaults"] = {} defs["igEndListBox"][1]["funcname"] = "EndListBox" -defs["igEndListBox"][1]["location"] = "imgui:700" +defs["igEndListBox"][1]["location"] = "imgui:704" defs["igEndListBox"][1]["namespace"] = "ImGui" defs["igEndListBox"][1]["ov_cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["ret"] = "void" @@ -16915,7 +16957,7 @@ defs["igEndMainMenuBar"][1]["call_args"] = "()" defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" -defs["igEndMainMenuBar"][1]["location"] = "imgui:726" +defs["igEndMainMenuBar"][1]["location"] = "imgui:730" defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" @@ -16931,7 +16973,7 @@ defs["igEndMenu"][1]["call_args"] = "()" defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" -defs["igEndMenu"][1]["location"] = "imgui:728" +defs["igEndMenu"][1]["location"] = "imgui:732" defs["igEndMenu"][1]["namespace"] = "ImGui" defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" @@ -16947,7 +16989,7 @@ defs["igEndMenuBar"][1]["call_args"] = "()" defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" -defs["igEndMenuBar"][1]["location"] = "imgui:724" +defs["igEndMenuBar"][1]["location"] = "imgui:728" defs["igEndMenuBar"][1]["namespace"] = "ImGui" defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" @@ -16963,7 +17005,7 @@ defs["igEndMultiSelect"][1]["call_args"] = "()" defs["igEndMultiSelect"][1]["cimguiname"] = "igEndMultiSelect" defs["igEndMultiSelect"][1]["defaults"] = {} defs["igEndMultiSelect"][1]["funcname"] = "EndMultiSelect" -defs["igEndMultiSelect"][1]["location"] = "imgui:689" +defs["igEndMultiSelect"][1]["location"] = "imgui:693" defs["igEndMultiSelect"][1]["namespace"] = "ImGui" defs["igEndMultiSelect"][1]["ov_cimguiname"] = "igEndMultiSelect" defs["igEndMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" @@ -16979,7 +17021,7 @@ defs["igEndPopup"][1]["call_args"] = "()" defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" -defs["igEndPopup"][1]["location"] = "imgui:761" +defs["igEndPopup"][1]["location"] = "imgui:765" defs["igEndPopup"][1]["namespace"] = "ImGui" defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" @@ -16995,7 +17037,7 @@ defs["igEndTabBar"][1]["call_args"] = "()" defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" -defs["igEndTabBar"][1]["location"] = "imgui:862" +defs["igEndTabBar"][1]["location"] = "imgui:866" defs["igEndTabBar"][1]["namespace"] = "ImGui" defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" @@ -17011,7 +17053,7 @@ defs["igEndTabItem"][1]["call_args"] = "()" defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" -defs["igEndTabItem"][1]["location"] = "imgui:864" +defs["igEndTabItem"][1]["location"] = "imgui:868" defs["igEndTabItem"][1]["namespace"] = "ImGui" defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" @@ -17027,7 +17069,7 @@ defs["igEndTable"][1]["call_args"] = "()" defs["igEndTable"][1]["cimguiname"] = "igEndTable" defs["igEndTable"][1]["defaults"] = {} defs["igEndTable"][1]["funcname"] = "EndTable" -defs["igEndTable"][1]["location"] = "imgui:813" +defs["igEndTable"][1]["location"] = "imgui:817" defs["igEndTable"][1]["namespace"] = "ImGui" defs["igEndTable"][1]["ov_cimguiname"] = "igEndTable" defs["igEndTable"][1]["ret"] = "void" @@ -17043,7 +17085,7 @@ defs["igEndTooltip"][1]["call_args"] = "()" defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" -defs["igEndTooltip"][1]["location"] = "imgui:737" +defs["igEndTooltip"][1]["location"] = "imgui:741" defs["igEndTooltip"][1]["namespace"] = "ImGui" defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" @@ -17066,7 +17108,7 @@ defs["igErrorCheckEndFrameRecover"][1]["cimguiname"] = "igErrorCheckEndFrameReco defs["igErrorCheckEndFrameRecover"][1]["defaults"] = {} defs["igErrorCheckEndFrameRecover"][1]["defaults"]["user_data"] = "NULL" defs["igErrorCheckEndFrameRecover"][1]["funcname"] = "ErrorCheckEndFrameRecover" -defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3916" +defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3925" defs["igErrorCheckEndFrameRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndFrameRecover"][1]["ov_cimguiname"] = "igErrorCheckEndFrameRecover" defs["igErrorCheckEndFrameRecover"][1]["ret"] = "void" @@ -17089,7 +17131,7 @@ defs["igErrorCheckEndWindowRecover"][1]["cimguiname"] = "igErrorCheckEndWindowRe defs["igErrorCheckEndWindowRecover"][1]["defaults"] = {} defs["igErrorCheckEndWindowRecover"][1]["defaults"]["user_data"] = "NULL" defs["igErrorCheckEndWindowRecover"][1]["funcname"] = "ErrorCheckEndWindowRecover" -defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3917" +defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3926" defs["igErrorCheckEndWindowRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndWindowRecover"][1]["ov_cimguiname"] = "igErrorCheckEndWindowRecover" defs["igErrorCheckEndWindowRecover"][1]["ret"] = "void" @@ -17105,7 +17147,7 @@ defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["call_args"] = defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["defaults"] = {} defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["funcname"] = "ErrorCheckUsingSetCursorPosToExtendParentBoundaries" -defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3918" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3927" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["namespace"] = "ImGui" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ov_cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ret"] = "void" @@ -17127,7 +17169,7 @@ defs["igFindBestWindowPosForPopup"][1]["call_args"] = "(window)" defs["igFindBestWindowPosForPopup"][1]["cimguiname"] = "igFindBestWindowPosForPopup" defs["igFindBestWindowPosForPopup"][1]["defaults"] = {} defs["igFindBestWindowPosForPopup"][1]["funcname"] = "FindBestWindowPosForPopup" -defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:3502" +defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:3511" defs["igFindBestWindowPosForPopup"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopup"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopup"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopup" @@ -17165,7 +17207,7 @@ defs["igFindBestWindowPosForPopupEx"][1]["call_args"] = "(ref_pos,size,last_dir, defs["igFindBestWindowPosForPopupEx"][1]["cimguiname"] = "igFindBestWindowPosForPopupEx" defs["igFindBestWindowPosForPopupEx"][1]["defaults"] = {} defs["igFindBestWindowPosForPopupEx"][1]["funcname"] = "FindBestWindowPosForPopupEx" -defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:3503" +defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:3512" defs["igFindBestWindowPosForPopupEx"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopupEx"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopupEx"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopupEx" @@ -17185,7 +17227,7 @@ defs["igFindBlockingModal"][1]["call_args"] = "(window)" defs["igFindBlockingModal"][1]["cimguiname"] = "igFindBlockingModal" defs["igFindBlockingModal"][1]["defaults"] = {} defs["igFindBlockingModal"][1]["funcname"] = "FindBlockingModal" -defs["igFindBlockingModal"][1]["location"] = "imgui_internal:3501" +defs["igFindBlockingModal"][1]["location"] = "imgui_internal:3510" defs["igFindBlockingModal"][1]["namespace"] = "ImGui" defs["igFindBlockingModal"][1]["ov_cimguiname"] = "igFindBlockingModal" defs["igFindBlockingModal"][1]["ret"] = "ImGuiWindow*" @@ -17204,7 +17246,7 @@ defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["call_args"] = "(window defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["defaults"] = {} defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["funcname"] = "FindBottomMostVisibleWindowWithinBeginStack" -defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:3378" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:3387" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["namespace"] = "ImGui" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ov_cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ret"] = "ImGuiWindow*" @@ -17223,7 +17265,7 @@ defs["igFindHoveredViewportFromPlatformWindowStack"][1]["call_args"] = "(mouse_p defs["igFindHoveredViewportFromPlatformWindowStack"][1]["cimguiname"] = "igFindHoveredViewportFromPlatformWindowStack" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["defaults"] = {} defs["igFindHoveredViewportFromPlatformWindowStack"][1]["funcname"] = "FindHoveredViewportFromPlatformWindowStack" -defs["igFindHoveredViewportFromPlatformWindowStack"][1]["location"] = "imgui_internal:3414" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["location"] = "imgui_internal:3423" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["namespace"] = "ImGui" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["ov_cimguiname"] = "igFindHoveredViewportFromPlatformWindowStack" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["ret"] = "ImGuiViewportP*" @@ -17251,7 +17293,7 @@ defs["igFindHoveredWindowEx"][1]["call_args"] = "(pos,find_first_and_in_any_view defs["igFindHoveredWindowEx"][1]["cimguiname"] = "igFindHoveredWindowEx" defs["igFindHoveredWindowEx"][1]["defaults"] = {} defs["igFindHoveredWindowEx"][1]["funcname"] = "FindHoveredWindowEx" -defs["igFindHoveredWindowEx"][1]["location"] = "imgui_internal:3396" +defs["igFindHoveredWindowEx"][1]["location"] = "imgui_internal:3405" defs["igFindHoveredWindowEx"][1]["namespace"] = "ImGui" defs["igFindHoveredWindowEx"][1]["ov_cimguiname"] = "igFindHoveredWindowEx" defs["igFindHoveredWindowEx"][1]["ret"] = "void" @@ -17273,7 +17315,7 @@ defs["igFindOrCreateColumns"][1]["call_args"] = "(window,id)" defs["igFindOrCreateColumns"][1]["cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["defaults"] = {} defs["igFindOrCreateColumns"][1]["funcname"] = "FindOrCreateColumns" -defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:3729" +defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:3738" defs["igFindOrCreateColumns"][1]["namespace"] = "ImGui" defs["igFindOrCreateColumns"][1]["ov_cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["ret"] = "ImGuiOldColumns*" @@ -17296,7 +17338,7 @@ defs["igFindRenderedTextEnd"][1]["cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["defaults"] = {} defs["igFindRenderedTextEnd"][1]["defaults"]["text_end"] = "NULL" defs["igFindRenderedTextEnd"][1]["funcname"] = "FindRenderedTextEnd" -defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:3823" +defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:3832" defs["igFindRenderedTextEnd"][1]["namespace"] = "ImGui" defs["igFindRenderedTextEnd"][1]["ov_cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["ret"] = "const char*" @@ -17315,7 +17357,7 @@ defs["igFindSettingsHandler"][1]["call_args"] = "(type_name)" defs["igFindSettingsHandler"][1]["cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["defaults"] = {} defs["igFindSettingsHandler"][1]["funcname"] = "FindSettingsHandler" -defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:3422" +defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:3431" defs["igFindSettingsHandler"][1]["namespace"] = "ImGui" defs["igFindSettingsHandler"][1]["ov_cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["ret"] = "ImGuiSettingsHandler*" @@ -17334,7 +17376,7 @@ defs["igFindViewportByID"][1]["call_args"] = "(id)" defs["igFindViewportByID"][1]["cimguiname"] = "igFindViewportByID" defs["igFindViewportByID"][1]["defaults"] = {} defs["igFindViewportByID"][1]["funcname"] = "FindViewportByID" -defs["igFindViewportByID"][1]["location"] = "imgui:1083" +defs["igFindViewportByID"][1]["location"] = "imgui:1086" defs["igFindViewportByID"][1]["namespace"] = "ImGui" defs["igFindViewportByID"][1]["ov_cimguiname"] = "igFindViewportByID" defs["igFindViewportByID"][1]["ret"] = "ImGuiViewport*" @@ -17353,7 +17395,7 @@ defs["igFindViewportByPlatformHandle"][1]["call_args"] = "(platform_handle)" defs["igFindViewportByPlatformHandle"][1]["cimguiname"] = "igFindViewportByPlatformHandle" defs["igFindViewportByPlatformHandle"][1]["defaults"] = {} defs["igFindViewportByPlatformHandle"][1]["funcname"] = "FindViewportByPlatformHandle" -defs["igFindViewportByPlatformHandle"][1]["location"] = "imgui:1084" +defs["igFindViewportByPlatformHandle"][1]["location"] = "imgui:1087" defs["igFindViewportByPlatformHandle"][1]["namespace"] = "ImGui" defs["igFindViewportByPlatformHandle"][1]["ov_cimguiname"] = "igFindViewportByPlatformHandle" defs["igFindViewportByPlatformHandle"][1]["ret"] = "ImGuiViewport*" @@ -17372,7 +17414,7 @@ defs["igFindWindowByID"][1]["call_args"] = "(id)" defs["igFindWindowByID"][1]["cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["defaults"] = {} defs["igFindWindowByID"][1]["funcname"] = "FindWindowByID" -defs["igFindWindowByID"][1]["location"] = "imgui_internal:3350" +defs["igFindWindowByID"][1]["location"] = "imgui_internal:3359" defs["igFindWindowByID"][1]["namespace"] = "ImGui" defs["igFindWindowByID"][1]["ov_cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["ret"] = "ImGuiWindow*" @@ -17391,7 +17433,7 @@ defs["igFindWindowByName"][1]["call_args"] = "(name)" defs["igFindWindowByName"][1]["cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["defaults"] = {} defs["igFindWindowByName"][1]["funcname"] = "FindWindowByName" -defs["igFindWindowByName"][1]["location"] = "imgui_internal:3351" +defs["igFindWindowByName"][1]["location"] = "imgui_internal:3360" defs["igFindWindowByName"][1]["namespace"] = "ImGui" defs["igFindWindowByName"][1]["ov_cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["ret"] = "ImGuiWindow*" @@ -17410,7 +17452,7 @@ defs["igFindWindowDisplayIndex"][1]["call_args"] = "(window)" defs["igFindWindowDisplayIndex"][1]["cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["defaults"] = {} defs["igFindWindowDisplayIndex"][1]["funcname"] = "FindWindowDisplayIndex" -defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:3377" +defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:3386" defs["igFindWindowDisplayIndex"][1]["namespace"] = "ImGui" defs["igFindWindowDisplayIndex"][1]["ov_cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["ret"] = "int" @@ -17429,7 +17471,7 @@ defs["igFindWindowSettingsByID"][1]["call_args"] = "(id)" defs["igFindWindowSettingsByID"][1]["cimguiname"] = "igFindWindowSettingsByID" defs["igFindWindowSettingsByID"][1]["defaults"] = {} defs["igFindWindowSettingsByID"][1]["funcname"] = "FindWindowSettingsByID" -defs["igFindWindowSettingsByID"][1]["location"] = "imgui_internal:3426" +defs["igFindWindowSettingsByID"][1]["location"] = "imgui_internal:3435" defs["igFindWindowSettingsByID"][1]["namespace"] = "ImGui" defs["igFindWindowSettingsByID"][1]["ov_cimguiname"] = "igFindWindowSettingsByID" defs["igFindWindowSettingsByID"][1]["ret"] = "ImGuiWindowSettings*" @@ -17448,7 +17490,7 @@ defs["igFindWindowSettingsByWindow"][1]["call_args"] = "(window)" defs["igFindWindowSettingsByWindow"][1]["cimguiname"] = "igFindWindowSettingsByWindow" defs["igFindWindowSettingsByWindow"][1]["defaults"] = {} defs["igFindWindowSettingsByWindow"][1]["funcname"] = "FindWindowSettingsByWindow" -defs["igFindWindowSettingsByWindow"][1]["location"] = "imgui_internal:3427" +defs["igFindWindowSettingsByWindow"][1]["location"] = "imgui_internal:3436" defs["igFindWindowSettingsByWindow"][1]["namespace"] = "ImGui" defs["igFindWindowSettingsByWindow"][1]["ov_cimguiname"] = "igFindWindowSettingsByWindow" defs["igFindWindowSettingsByWindow"][1]["ret"] = "ImGuiWindowSettings*" @@ -17467,7 +17509,7 @@ defs["igFixupKeyChord"][1]["call_args"] = "(key_chord)" defs["igFixupKeyChord"][1]["cimguiname"] = "igFixupKeyChord" defs["igFixupKeyChord"][1]["defaults"] = {} defs["igFixupKeyChord"][1]["funcname"] = "FixupKeyChord" -defs["igFixupKeyChord"][1]["location"] = "imgui_internal:3554" +defs["igFixupKeyChord"][1]["location"] = "imgui_internal:3563" defs["igFixupKeyChord"][1]["namespace"] = "ImGui" defs["igFixupKeyChord"][1]["ov_cimguiname"] = "igFixupKeyChord" defs["igFixupKeyChord"][1]["ret"] = "ImGuiKeyChord" @@ -17483,7 +17525,7 @@ defs["igFocusItem"][1]["call_args"] = "()" defs["igFocusItem"][1]["cimguiname"] = "igFocusItem" defs["igFocusItem"][1]["defaults"] = {} defs["igFocusItem"][1]["funcname"] = "FocusItem" -defs["igFocusItem"][1]["location"] = "imgui_internal:3541" +defs["igFocusItem"][1]["location"] = "imgui_internal:3550" defs["igFocusItem"][1]["namespace"] = "ImGui" defs["igFocusItem"][1]["ov_cimguiname"] = "igFocusItem" defs["igFocusItem"][1]["ret"] = "void" @@ -17511,7 +17553,7 @@ defs["igFocusTopMostWindowUnderOne"][1]["call_args"] = "(under_this_window,ignor defs["igFocusTopMostWindowUnderOne"][1]["cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["defaults"] = {} defs["igFocusTopMostWindowUnderOne"][1]["funcname"] = "FocusTopMostWindowUnderOne" -defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:3372" +defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:3381" defs["igFocusTopMostWindowUnderOne"][1]["namespace"] = "ImGui" defs["igFocusTopMostWindowUnderOne"][1]["ov_cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["ret"] = "void" @@ -17534,7 +17576,7 @@ defs["igFocusWindow"][1]["cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["defaults"] = {} defs["igFocusWindow"][1]["defaults"]["flags"] = "0" defs["igFocusWindow"][1]["funcname"] = "FocusWindow" -defs["igFocusWindow"][1]["location"] = "imgui_internal:3371" +defs["igFocusWindow"][1]["location"] = "imgui_internal:3380" defs["igFocusWindow"][1]["namespace"] = "ImGui" defs["igFocusWindow"][1]["ov_cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["ret"] = "void" @@ -17553,7 +17595,7 @@ defs["igGcAwakeTransientWindowBuffers"][1]["call_args"] = "(window)" defs["igGcAwakeTransientWindowBuffers"][1]["cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["defaults"] = {} defs["igGcAwakeTransientWindowBuffers"][1]["funcname"] = "GcAwakeTransientWindowBuffers" -defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3912" +defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3921" defs["igGcAwakeTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcAwakeTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["ret"] = "void" @@ -17569,7 +17611,7 @@ defs["igGcCompactTransientMiscBuffers"][1]["call_args"] = "()" defs["igGcCompactTransientMiscBuffers"][1]["cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["defaults"] = {} defs["igGcCompactTransientMiscBuffers"][1]["funcname"] = "GcCompactTransientMiscBuffers" -defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3910" +defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3919" defs["igGcCompactTransientMiscBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientMiscBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["ret"] = "void" @@ -17588,7 +17630,7 @@ defs["igGcCompactTransientWindowBuffers"][1]["call_args"] = "(window)" defs["igGcCompactTransientWindowBuffers"][1]["cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["defaults"] = {} defs["igGcCompactTransientWindowBuffers"][1]["funcname"] = "GcCompactTransientWindowBuffers" -defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3911" +defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3920" defs["igGcCompactTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["ret"] = "void" @@ -17604,7 +17646,7 @@ defs["igGetActiveID"][1]["call_args"] = "()" defs["igGetActiveID"][1]["cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["defaults"] = {} defs["igGetActiveID"][1]["funcname"] = "GetActiveID" -defs["igGetActiveID"][1]["location"] = "imgui_internal:3451" +defs["igGetActiveID"][1]["location"] = "imgui_internal:3460" defs["igGetActiveID"][1]["namespace"] = "ImGui" defs["igGetActiveID"][1]["ov_cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["ret"] = "ImGuiID" @@ -17629,7 +17671,7 @@ defs["igGetAllocatorFunctions"][1]["call_args"] = "(p_alloc_func,p_free_func,p_u defs["igGetAllocatorFunctions"][1]["cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["defaults"] = {} defs["igGetAllocatorFunctions"][1]["funcname"] = "GetAllocatorFunctions" -defs["igGetAllocatorFunctions"][1]["location"] = "imgui:1072" +defs["igGetAllocatorFunctions"][1]["location"] = "imgui:1076" defs["igGetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igGetAllocatorFunctions"][1]["ov_cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["ret"] = "void" @@ -17649,7 +17691,7 @@ defs["igGetBackgroundDrawList"][1]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["defaults"] = {} defs["igGetBackgroundDrawList"][1]["defaults"]["viewport"] = "NULL" defs["igGetBackgroundDrawList"][1]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][1]["location"] = "imgui:960" +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:964" defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" @@ -17668,7 +17710,7 @@ defs["igGetBoxSelectState"][1]["call_args"] = "(id)" defs["igGetBoxSelectState"][1]["cimguiname"] = "igGetBoxSelectState" defs["igGetBoxSelectState"][1]["defaults"] = {} defs["igGetBoxSelectState"][1]["funcname"] = "GetBoxSelectState" -defs["igGetBoxSelectState"][1]["location"] = "imgui_internal:3718" +defs["igGetBoxSelectState"][1]["location"] = "imgui_internal:3727" defs["igGetBoxSelectState"][1]["namespace"] = "ImGui" defs["igGetBoxSelectState"][1]["ov_cimguiname"] = "igGetBoxSelectState" defs["igGetBoxSelectState"][1]["ret"] = "ImGuiBoxSelectState*" @@ -17684,7 +17726,7 @@ defs["igGetClipboardText"][1]["call_args"] = "()" defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" -defs["igGetClipboardText"][1]["location"] = "imgui:1044" +defs["igGetClipboardText"][1]["location"] = "imgui:1048" defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -17707,7 +17749,7 @@ defs["igGetColorU32"][1]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" -defs["igGetColorU32"][1]["location"] = "imgui:468" +defs["igGetColorU32"][1]["location"] = "imgui:472" defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32_Col" defs["igGetColorU32"][1]["ret"] = "ImU32" @@ -17724,7 +17766,7 @@ defs["igGetColorU32"][2]["call_args"] = "(col)" defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" -defs["igGetColorU32"][2]["location"] = "imgui:469" +defs["igGetColorU32"][2]["location"] = "imgui:473" defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32_Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" @@ -17745,7 +17787,7 @@ defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["defaults"] = {} defs["igGetColorU32"][3]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][3]["funcname"] = "GetColorU32" -defs["igGetColorU32"][3]["location"] = "imgui:470" +defs["igGetColorU32"][3]["location"] = "imgui:474" defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32_U32" defs["igGetColorU32"][3]["ret"] = "ImU32" @@ -17763,7 +17805,7 @@ defs["igGetColumnIndex"][1]["call_args"] = "()" defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" -defs["igGetColumnIndex"][1]["location"] = "imgui:852" +defs["igGetColumnIndex"][1]["location"] = "imgui:856" defs["igGetColumnIndex"][1]["namespace"] = "ImGui" defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" @@ -17785,7 +17827,7 @@ defs["igGetColumnNormFromOffset"][1]["call_args"] = "(columns,offset)" defs["igGetColumnNormFromOffset"][1]["cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["defaults"] = {} defs["igGetColumnNormFromOffset"][1]["funcname"] = "GetColumnNormFromOffset" -defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:3731" +defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:3740" defs["igGetColumnNormFromOffset"][1]["namespace"] = "ImGui" defs["igGetColumnNormFromOffset"][1]["ov_cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["ret"] = "float" @@ -17805,7 +17847,7 @@ defs["igGetColumnOffset"][1]["cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" -defs["igGetColumnOffset"][1]["location"] = "imgui:855" +defs["igGetColumnOffset"][1]["location"] = "imgui:859" defs["igGetColumnOffset"][1]["namespace"] = "ImGui" defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" @@ -17827,7 +17869,7 @@ defs["igGetColumnOffsetFromNorm"][1]["call_args"] = "(columns,offset_norm)" defs["igGetColumnOffsetFromNorm"][1]["cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["defaults"] = {} defs["igGetColumnOffsetFromNorm"][1]["funcname"] = "GetColumnOffsetFromNorm" -defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:3730" +defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:3739" defs["igGetColumnOffsetFromNorm"][1]["namespace"] = "ImGui" defs["igGetColumnOffsetFromNorm"][1]["ov_cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["ret"] = "float" @@ -17847,7 +17889,7 @@ defs["igGetColumnWidth"][1]["cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" -defs["igGetColumnWidth"][1]["location"] = "imgui:853" +defs["igGetColumnWidth"][1]["location"] = "imgui:857" defs["igGetColumnWidth"][1]["namespace"] = "ImGui" defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" @@ -17863,7 +17905,7 @@ defs["igGetColumnsCount"][1]["call_args"] = "()" defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" -defs["igGetColumnsCount"][1]["location"] = "imgui:857" +defs["igGetColumnsCount"][1]["location"] = "imgui:861" defs["igGetColumnsCount"][1]["namespace"] = "ImGui" defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" @@ -17885,7 +17927,7 @@ defs["igGetColumnsID"][1]["call_args"] = "(str_id,count)" defs["igGetColumnsID"][1]["cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["defaults"] = {} defs["igGetColumnsID"][1]["funcname"] = "GetColumnsID" -defs["igGetColumnsID"][1]["location"] = "imgui_internal:3728" +defs["igGetColumnsID"][1]["location"] = "imgui_internal:3737" defs["igGetColumnsID"][1]["namespace"] = "ImGui" defs["igGetColumnsID"][1]["ov_cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["ret"] = "ImGuiID" @@ -17904,7 +17946,7 @@ defs["igGetContentRegionAvail"][1]["call_args"] = "()" defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" -defs["igGetContentRegionAvail"][1]["location"] = "imgui:485" +defs["igGetContentRegionAvail"][1]["location"] = "imgui:489" defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][1]["nonUDT"] = 1 defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" @@ -17921,7 +17963,7 @@ defs["igGetCurrentContext"][1]["call_args"] = "()" defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" -defs["igGetCurrentContext"][1]["location"] = "imgui:329" +defs["igGetCurrentContext"][1]["location"] = "imgui:330" defs["igGetCurrentContext"][1]["namespace"] = "ImGui" defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" @@ -17937,7 +17979,7 @@ defs["igGetCurrentFocusScope"][1]["call_args"] = "()" defs["igGetCurrentFocusScope"][1]["cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["defaults"] = {} defs["igGetCurrentFocusScope"][1]["funcname"] = "GetCurrentFocusScope" -defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3694" +defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3703" defs["igGetCurrentFocusScope"][1]["namespace"] = "ImGui" defs["igGetCurrentFocusScope"][1]["ov_cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["ret"] = "ImGuiID" @@ -17953,7 +17995,7 @@ defs["igGetCurrentTabBar"][1]["call_args"] = "()" defs["igGetCurrentTabBar"][1]["cimguiname"] = "igGetCurrentTabBar" defs["igGetCurrentTabBar"][1]["defaults"] = {} defs["igGetCurrentTabBar"][1]["funcname"] = "GetCurrentTabBar" -defs["igGetCurrentTabBar"][1]["location"] = "imgui_internal:3790" +defs["igGetCurrentTabBar"][1]["location"] = "imgui_internal:3799" defs["igGetCurrentTabBar"][1]["namespace"] = "ImGui" defs["igGetCurrentTabBar"][1]["ov_cimguiname"] = "igGetCurrentTabBar" defs["igGetCurrentTabBar"][1]["ret"] = "ImGuiTabBar*" @@ -17969,7 +18011,7 @@ defs["igGetCurrentTable"][1]["call_args"] = "()" defs["igGetCurrentTable"][1]["cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["defaults"] = {} defs["igGetCurrentTable"][1]["funcname"] = "GetCurrentTable" -defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3745" +defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3754" defs["igGetCurrentTable"][1]["namespace"] = "ImGui" defs["igGetCurrentTable"][1]["ov_cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["ret"] = "ImGuiTable*" @@ -17985,7 +18027,7 @@ defs["igGetCurrentWindow"][1]["call_args"] = "()" defs["igGetCurrentWindow"][1]["cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["defaults"] = {} defs["igGetCurrentWindow"][1]["funcname"] = "GetCurrentWindow" -defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:3349" +defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:3358" defs["igGetCurrentWindow"][1]["namespace"] = "ImGui" defs["igGetCurrentWindow"][1]["ov_cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["ret"] = "ImGuiWindow*" @@ -18001,7 +18043,7 @@ defs["igGetCurrentWindowRead"][1]["call_args"] = "()" defs["igGetCurrentWindowRead"][1]["cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["defaults"] = {} defs["igGetCurrentWindowRead"][1]["funcname"] = "GetCurrentWindowRead" -defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:3348" +defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:3357" defs["igGetCurrentWindowRead"][1]["namespace"] = "ImGui" defs["igGetCurrentWindowRead"][1]["ov_cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["ret"] = "ImGuiWindow*" @@ -18020,7 +18062,7 @@ defs["igGetCursorPos"][1]["call_args"] = "()" defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["igGetCursorPos"][1]["location"] = "imgui:486" +defs["igGetCursorPos"][1]["location"] = "imgui:490" defs["igGetCursorPos"][1]["namespace"] = "ImGui" defs["igGetCursorPos"][1]["nonUDT"] = 1 defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" @@ -18037,7 +18079,7 @@ defs["igGetCursorPosX"][1]["call_args"] = "()" defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" -defs["igGetCursorPosX"][1]["location"] = "imgui:487" +defs["igGetCursorPosX"][1]["location"] = "imgui:491" defs["igGetCursorPosX"][1]["namespace"] = "ImGui" defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" @@ -18053,7 +18095,7 @@ defs["igGetCursorPosY"][1]["call_args"] = "()" defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" -defs["igGetCursorPosY"][1]["location"] = "imgui:488" +defs["igGetCursorPosY"][1]["location"] = "imgui:492" defs["igGetCursorPosY"][1]["namespace"] = "ImGui" defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" @@ -18072,7 +18114,7 @@ defs["igGetCursorScreenPos"][1]["call_args"] = "()" defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" -defs["igGetCursorScreenPos"][1]["location"] = "imgui:483" +defs["igGetCursorScreenPos"][1]["location"] = "imgui:487" defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][1]["nonUDT"] = 1 defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" @@ -18092,7 +18134,7 @@ defs["igGetCursorStartPos"][1]["call_args"] = "()" defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" -defs["igGetCursorStartPos"][1]["location"] = "imgui:492" +defs["igGetCursorStartPos"][1]["location"] = "imgui:496" defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" defs["igGetCursorStartPos"][1]["nonUDT"] = 1 defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" @@ -18109,7 +18151,7 @@ defs["igGetDefaultFont"][1]["call_args"] = "()" defs["igGetDefaultFont"][1]["cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["defaults"] = {} defs["igGetDefaultFont"][1]["funcname"] = "GetDefaultFont" -defs["igGetDefaultFont"][1]["location"] = "imgui_internal:3385" +defs["igGetDefaultFont"][1]["location"] = "imgui_internal:3394" defs["igGetDefaultFont"][1]["namespace"] = "ImGui" defs["igGetDefaultFont"][1]["ov_cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["ret"] = "ImFont*" @@ -18125,7 +18167,7 @@ defs["igGetDragDropPayload"][1]["call_args"] = "()" defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" -defs["igGetDragDropPayload"][1]["location"] = "imgui:909" +defs["igGetDragDropPayload"][1]["location"] = "imgui:913" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -18141,7 +18183,7 @@ defs["igGetDrawData"][1]["call_args"] = "()" defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" -defs["igGetDrawData"][1]["location"] = "imgui:338" +defs["igGetDrawData"][1]["location"] = "imgui:340" defs["igGetDrawData"][1]["namespace"] = "ImGui" defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" @@ -18157,7 +18199,7 @@ defs["igGetDrawListSharedData"][1]["call_args"] = "()" defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" -defs["igGetDrawListSharedData"][1]["location"] = "imgui:968" +defs["igGetDrawListSharedData"][1]["location"] = "imgui:972" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -18173,7 +18215,7 @@ defs["igGetFocusID"][1]["call_args"] = "()" defs["igGetFocusID"][1]["cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["defaults"] = {} defs["igGetFocusID"][1]["funcname"] = "GetFocusID" -defs["igGetFocusID"][1]["location"] = "imgui_internal:3452" +defs["igGetFocusID"][1]["location"] = "imgui_internal:3461" defs["igGetFocusID"][1]["namespace"] = "ImGui" defs["igGetFocusID"][1]["ov_cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["ret"] = "ImGuiID" @@ -18189,7 +18231,7 @@ defs["igGetFont"][1]["call_args"] = "()" defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" -defs["igGetFont"][1]["location"] = "imgui:465" +defs["igGetFont"][1]["location"] = "imgui:469" defs["igGetFont"][1]["namespace"] = "ImGui" defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" @@ -18205,7 +18247,7 @@ defs["igGetFontSize"][1]["call_args"] = "()" defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" -defs["igGetFontSize"][1]["location"] = "imgui:466" +defs["igGetFontSize"][1]["location"] = "imgui:470" defs["igGetFontSize"][1]["namespace"] = "ImGui" defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" @@ -18224,7 +18266,7 @@ defs["igGetFontTexUvWhitePixel"][1]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:467" +defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:471" defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][1]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" @@ -18245,7 +18287,7 @@ defs["igGetForegroundDrawList"][1]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["defaults"] = {} defs["igGetForegroundDrawList"][1]["defaults"]["viewport"] = "NULL" defs["igGetForegroundDrawList"][1]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][1]["location"] = "imgui:961" +defs["igGetForegroundDrawList"][1]["location"] = "imgui:965" defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList_ViewportPtr" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" @@ -18262,7 +18304,7 @@ defs["igGetForegroundDrawList"][2]["call_args"] = "(window)" defs["igGetForegroundDrawList"][2]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][2]["defaults"] = {} defs["igGetForegroundDrawList"][2]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:3386" +defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:3395" defs["igGetForegroundDrawList"][2]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][2]["ov_cimguiname"] = "igGetForegroundDrawList_WindowPtr" defs["igGetForegroundDrawList"][2]["ret"] = "ImDrawList*" @@ -18279,7 +18321,7 @@ defs["igGetFrameCount"][1]["call_args"] = "()" defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" -defs["igGetFrameCount"][1]["location"] = "imgui:967" +defs["igGetFrameCount"][1]["location"] = "imgui:971" defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -18295,7 +18337,7 @@ defs["igGetFrameHeight"][1]["call_args"] = "()" defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" -defs["igGetFrameHeight"][1]["location"] = "imgui:507" +defs["igGetFrameHeight"][1]["location"] = "imgui:511" defs["igGetFrameHeight"][1]["namespace"] = "ImGui" defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" @@ -18311,7 +18353,7 @@ defs["igGetFrameHeightWithSpacing"][1]["call_args"] = "()" defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" -defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:508" +defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:512" defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" @@ -18327,7 +18369,7 @@ defs["igGetHoveredID"][1]["call_args"] = "()" defs["igGetHoveredID"][1]["cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["defaults"] = {} defs["igGetHoveredID"][1]["funcname"] = "GetHoveredID" -defs["igGetHoveredID"][1]["location"] = "imgui_internal:3456" +defs["igGetHoveredID"][1]["location"] = "imgui_internal:3465" defs["igGetHoveredID"][1]["namespace"] = "ImGui" defs["igGetHoveredID"][1]["ov_cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["ret"] = "ImGuiID" @@ -18346,7 +18388,7 @@ defs["igGetID"][1]["call_args"] = "(str_id)" defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" -defs["igGetID"][1]["location"] = "imgui:526" +defs["igGetID"][1]["location"] = "imgui:530" defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetID_Str" defs["igGetID"][1]["ret"] = "ImGuiID" @@ -18366,7 +18408,7 @@ defs["igGetID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" -defs["igGetID"][2]["location"] = "imgui:527" +defs["igGetID"][2]["location"] = "imgui:531" defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetID_StrStr" defs["igGetID"][2]["ret"] = "ImGuiID" @@ -18383,7 +18425,7 @@ defs["igGetID"][3]["call_args"] = "(ptr_id)" defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" -defs["igGetID"][3]["location"] = "imgui:528" +defs["igGetID"][3]["location"] = "imgui:532" defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetID_Ptr" defs["igGetID"][3]["ret"] = "ImGuiID" @@ -18400,7 +18442,7 @@ defs["igGetID"][4]["call_args"] = "(int_id)" defs["igGetID"][4]["cimguiname"] = "igGetID" defs["igGetID"][4]["defaults"] = {} defs["igGetID"][4]["funcname"] = "GetID" -defs["igGetID"][4]["location"] = "imgui:529" +defs["igGetID"][4]["location"] = "imgui:533" defs["igGetID"][4]["namespace"] = "ImGui" defs["igGetID"][4]["ov_cimguiname"] = "igGetID_Int" defs["igGetID"][4]["ret"] = "ImGuiID" @@ -18428,7 +18470,7 @@ defs["igGetIDWithSeed"][1]["call_args"] = "(str_id_begin,str_id_end,seed)" defs["igGetIDWithSeed"][1]["cimguiname"] = "igGetIDWithSeed" defs["igGetIDWithSeed"][1]["defaults"] = {} defs["igGetIDWithSeed"][1]["funcname"] = "GetIDWithSeed" -defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:3461" +defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:3470" defs["igGetIDWithSeed"][1]["namespace"] = "ImGui" defs["igGetIDWithSeed"][1]["ov_cimguiname"] = "igGetIDWithSeed_Str" defs["igGetIDWithSeed"][1]["ret"] = "ImGuiID" @@ -18448,7 +18490,7 @@ defs["igGetIDWithSeed"][2]["call_args"] = "(n,seed)" defs["igGetIDWithSeed"][2]["cimguiname"] = "igGetIDWithSeed" defs["igGetIDWithSeed"][2]["defaults"] = {} defs["igGetIDWithSeed"][2]["funcname"] = "GetIDWithSeed" -defs["igGetIDWithSeed"][2]["location"] = "imgui_internal:3462" +defs["igGetIDWithSeed"][2]["location"] = "imgui_internal:3471" defs["igGetIDWithSeed"][2]["namespace"] = "ImGui" defs["igGetIDWithSeed"][2]["ov_cimguiname"] = "igGetIDWithSeed_Int" defs["igGetIDWithSeed"][2]["ret"] = "ImGuiID" @@ -18465,7 +18507,7 @@ defs["igGetIO"][1]["call_args"] = "()" defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" -defs["igGetIO"][1]["location"] = "imgui:333" +defs["igGetIO"][1]["location"] = "imgui:334" defs["igGetIO"][1]["namespace"] = "ImGui" defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" @@ -18485,7 +18527,7 @@ defs["igGetInputTextState"][1]["call_args"] = "(id)" defs["igGetInputTextState"][1]["cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["defaults"] = {} defs["igGetInputTextState"][1]["funcname"] = "GetInputTextState" -defs["igGetInputTextState"][1]["location"] = "imgui_internal:3893" +defs["igGetInputTextState"][1]["location"] = "imgui_internal:3902" defs["igGetInputTextState"][1]["namespace"] = "ImGui" defs["igGetInputTextState"][1]["ov_cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["ret"] = "ImGuiInputTextState*" @@ -18501,7 +18543,7 @@ defs["igGetItemFlags"][1]["call_args"] = "()" defs["igGetItemFlags"][1]["cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["defaults"] = {} defs["igGetItemFlags"][1]["funcname"] = "GetItemFlags" -defs["igGetItemFlags"][1]["location"] = "imgui_internal:3450" +defs["igGetItemFlags"][1]["location"] = "imgui_internal:3459" defs["igGetItemFlags"][1]["namespace"] = "ImGui" defs["igGetItemFlags"][1]["ov_cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["ret"] = "ImGuiItemFlags" @@ -18517,7 +18559,7 @@ defs["igGetItemID"][1]["call_args"] = "()" defs["igGetItemID"][1]["cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["defaults"] = {} defs["igGetItemID"][1]["funcname"] = "GetItemID" -defs["igGetItemID"][1]["location"] = "imgui:948" +defs["igGetItemID"][1]["location"] = "imgui:952" defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -18536,7 +18578,7 @@ defs["igGetItemRectMax"][1]["call_args"] = "()" defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" -defs["igGetItemRectMax"][1]["location"] = "imgui:950" +defs["igGetItemRectMax"][1]["location"] = "imgui:954" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -18556,7 +18598,7 @@ defs["igGetItemRectMin"][1]["call_args"] = "()" defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" -defs["igGetItemRectMin"][1]["location"] = "imgui:949" +defs["igGetItemRectMin"][1]["location"] = "imgui:953" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -18576,7 +18618,7 @@ defs["igGetItemRectSize"][1]["call_args"] = "()" defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" -defs["igGetItemRectSize"][1]["location"] = "imgui:951" +defs["igGetItemRectSize"][1]["location"] = "imgui:955" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -18593,7 +18635,7 @@ defs["igGetItemStatusFlags"][1]["call_args"] = "()" defs["igGetItemStatusFlags"][1]["cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["defaults"] = {} defs["igGetItemStatusFlags"][1]["funcname"] = "GetItemStatusFlags" -defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:3449" +defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:3458" defs["igGetItemStatusFlags"][1]["namespace"] = "ImGui" defs["igGetItemStatusFlags"][1]["ov_cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["ret"] = "ImGuiItemStatusFlags" @@ -18612,7 +18654,7 @@ defs["igGetKeyChordName"][1]["call_args"] = "(key_chord)" defs["igGetKeyChordName"][1]["cimguiname"] = "igGetKeyChordName" defs["igGetKeyChordName"][1]["defaults"] = {} defs["igGetKeyChordName"][1]["funcname"] = "GetKeyChordName" -defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3566" +defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3575" defs["igGetKeyChordName"][1]["namespace"] = "ImGui" defs["igGetKeyChordName"][1]["ov_cimguiname"] = "igGetKeyChordName" defs["igGetKeyChordName"][1]["ret"] = "const char*" @@ -18634,7 +18676,7 @@ defs["igGetKeyData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyData"][1]["cimguiname"] = "igGetKeyData" defs["igGetKeyData"][1]["defaults"] = {} defs["igGetKeyData"][1]["funcname"] = "GetKeyData" -defs["igGetKeyData"][1]["location"] = "imgui_internal:3564" +defs["igGetKeyData"][1]["location"] = "imgui_internal:3573" defs["igGetKeyData"][1]["namespace"] = "ImGui" defs["igGetKeyData"][1]["ov_cimguiname"] = "igGetKeyData_ContextPtr" defs["igGetKeyData"][1]["ret"] = "ImGuiKeyData*" @@ -18651,7 +18693,7 @@ defs["igGetKeyData"][2]["call_args"] = "(key)" defs["igGetKeyData"][2]["cimguiname"] = "igGetKeyData" defs["igGetKeyData"][2]["defaults"] = {} defs["igGetKeyData"][2]["funcname"] = "GetKeyData" -defs["igGetKeyData"][2]["location"] = "imgui_internal:3565" +defs["igGetKeyData"][2]["location"] = "imgui_internal:3574" defs["igGetKeyData"][2]["namespace"] = "ImGui" defs["igGetKeyData"][2]["ov_cimguiname"] = "igGetKeyData_Key" defs["igGetKeyData"][2]["ret"] = "ImGuiKeyData*" @@ -18683,7 +18725,7 @@ defs["igGetKeyMagnitude2d"][1]["call_args"] = "(key_left,key_right,key_up,key_do defs["igGetKeyMagnitude2d"][1]["cimguiname"] = "igGetKeyMagnitude2d" defs["igGetKeyMagnitude2d"][1]["defaults"] = {} defs["igGetKeyMagnitude2d"][1]["funcname"] = "GetKeyMagnitude2d" -defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3569" +defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3578" defs["igGetKeyMagnitude2d"][1]["namespace"] = "ImGui" defs["igGetKeyMagnitude2d"][1]["nonUDT"] = 1 defs["igGetKeyMagnitude2d"][1]["ov_cimguiname"] = "igGetKeyMagnitude2d" @@ -18703,7 +18745,7 @@ defs["igGetKeyName"][1]["call_args"] = "(key)" defs["igGetKeyName"][1]["cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["defaults"] = {} defs["igGetKeyName"][1]["funcname"] = "GetKeyName" -defs["igGetKeyName"][1]["location"] = "imgui:992" +defs["igGetKeyName"][1]["location"] = "imgui:996" defs["igGetKeyName"][1]["namespace"] = "ImGui" defs["igGetKeyName"][1]["ov_cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["ret"] = "const char*" @@ -18722,7 +18764,7 @@ defs["igGetKeyOwner"][1]["call_args"] = "(key)" defs["igGetKeyOwner"][1]["cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["defaults"] = {} defs["igGetKeyOwner"][1]["funcname"] = "GetKeyOwner" -defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3588" +defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3597" defs["igGetKeyOwner"][1]["namespace"] = "ImGui" defs["igGetKeyOwner"][1]["ov_cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["ret"] = "ImGuiID" @@ -18744,7 +18786,7 @@ defs["igGetKeyOwnerData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyOwnerData"][1]["cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["defaults"] = {} defs["igGetKeyOwnerData"][1]["funcname"] = "GetKeyOwnerData" -defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3593" +defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3602" defs["igGetKeyOwnerData"][1]["namespace"] = "ImGui" defs["igGetKeyOwnerData"][1]["ov_cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["ret"] = "ImGuiKeyOwnerData*" @@ -18769,7 +18811,7 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui:991" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:995" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -18785,7 +18827,7 @@ defs["igGetMainViewport"][1]["call_args"] = "()" defs["igGetMainViewport"][1]["cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["defaults"] = {} defs["igGetMainViewport"][1]["funcname"] = "GetMainViewport" -defs["igGetMainViewport"][1]["location"] = "imgui:957" +defs["igGetMainViewport"][1]["location"] = "imgui:961" defs["igGetMainViewport"][1]["namespace"] = "ImGui" defs["igGetMainViewport"][1]["ov_cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["ret"] = "ImGuiViewport*" @@ -18804,7 +18846,7 @@ defs["igGetMouseClickedCount"][1]["call_args"] = "(button)" defs["igGetMouseClickedCount"][1]["cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["defaults"] = {} defs["igGetMouseClickedCount"][1]["funcname"] = "GetMouseClickedCount" -defs["igGetMouseClickedCount"][1]["location"] = "imgui:1029" +defs["igGetMouseClickedCount"][1]["location"] = "imgui:1033" defs["igGetMouseClickedCount"][1]["namespace"] = "ImGui" defs["igGetMouseClickedCount"][1]["ov_cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["ret"] = "int" @@ -18820,7 +18862,7 @@ defs["igGetMouseCursor"][1]["call_args"] = "()" defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" -defs["igGetMouseCursor"][1]["location"] = "imgui:1038" +defs["igGetMouseCursor"][1]["location"] = "imgui:1042" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -18847,7 +18889,7 @@ defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igGetMouseDragDelta"][1]["funcname"] = "GetMouseDragDelta" -defs["igGetMouseDragDelta"][1]["location"] = "imgui:1036" +defs["igGetMouseDragDelta"][1]["location"] = "imgui:1040" defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -18867,7 +18909,7 @@ defs["igGetMousePos"][1]["call_args"] = "()" defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" -defs["igGetMousePos"][1]["location"] = "imgui:1033" +defs["igGetMousePos"][1]["location"] = "imgui:1037" defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -18887,7 +18929,7 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" -defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:1034" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:1038" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -18907,7 +18949,7 @@ defs["igGetMultiSelectState"][1]["call_args"] = "(id)" defs["igGetMultiSelectState"][1]["cimguiname"] = "igGetMultiSelectState" defs["igGetMultiSelectState"][1]["defaults"] = {} defs["igGetMultiSelectState"][1]["funcname"] = "GetMultiSelectState" -defs["igGetMultiSelectState"][1]["location"] = "imgui_internal:3719" +defs["igGetMultiSelectState"][1]["location"] = "imgui_internal:3728" defs["igGetMultiSelectState"][1]["namespace"] = "ImGui" defs["igGetMultiSelectState"][1]["ov_cimguiname"] = "igGetMultiSelectState" defs["igGetMultiSelectState"][1]["ret"] = "ImGuiMultiSelectState*" @@ -18926,7 +18968,7 @@ defs["igGetNavTweakPressedAmount"][1]["call_args"] = "(axis)" defs["igGetNavTweakPressedAmount"][1]["cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["defaults"] = {} defs["igGetNavTweakPressedAmount"][1]["funcname"] = "GetNavTweakPressedAmount" -defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3570" +defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3579" defs["igGetNavTweakPressedAmount"][1]["namespace"] = "ImGui" defs["igGetNavTweakPressedAmount"][1]["ov_cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["ret"] = "float" @@ -18942,7 +18984,7 @@ defs["igGetPlatformIO"][1]["call_args"] = "()" defs["igGetPlatformIO"][1]["cimguiname"] = "igGetPlatformIO" defs["igGetPlatformIO"][1]["defaults"] = {} defs["igGetPlatformIO"][1]["funcname"] = "GetPlatformIO" -defs["igGetPlatformIO"][1]["location"] = "imgui:1079" +defs["igGetPlatformIO"][1]["location"] = "imgui:335" defs["igGetPlatformIO"][1]["namespace"] = "ImGui" defs["igGetPlatformIO"][1]["ov_cimguiname"] = "igGetPlatformIO" defs["igGetPlatformIO"][1]["ret"] = "ImGuiPlatformIO*" @@ -18965,7 +19007,7 @@ defs["igGetPopupAllowedExtentRect"][1]["call_args"] = "(window)" defs["igGetPopupAllowedExtentRect"][1]["cimguiname"] = "igGetPopupAllowedExtentRect" defs["igGetPopupAllowedExtentRect"][1]["defaults"] = {} defs["igGetPopupAllowedExtentRect"][1]["funcname"] = "GetPopupAllowedExtentRect" -defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:3498" +defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:3507" defs["igGetPopupAllowedExtentRect"][1]["namespace"] = "ImGui" defs["igGetPopupAllowedExtentRect"][1]["nonUDT"] = 1 defs["igGetPopupAllowedExtentRect"][1]["ov_cimguiname"] = "igGetPopupAllowedExtentRect" @@ -18982,7 +19024,7 @@ defs["igGetScrollMaxX"][1]["call_args"] = "()" defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" -defs["igGetScrollMaxX"][1]["location"] = "imgui:436" +defs["igGetScrollMaxX"][1]["location"] = "imgui:438" defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" @@ -18998,7 +19040,7 @@ defs["igGetScrollMaxY"][1]["call_args"] = "()" defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" -defs["igGetScrollMaxY"][1]["location"] = "imgui:437" +defs["igGetScrollMaxY"][1]["location"] = "imgui:439" defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" @@ -19014,7 +19056,7 @@ defs["igGetScrollX"][1]["call_args"] = "()" defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" -defs["igGetScrollX"][1]["location"] = "imgui:432" +defs["igGetScrollX"][1]["location"] = "imgui:434" defs["igGetScrollX"][1]["namespace"] = "ImGui" defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" @@ -19030,7 +19072,7 @@ defs["igGetScrollY"][1]["call_args"] = "()" defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" -defs["igGetScrollY"][1]["location"] = "imgui:433" +defs["igGetScrollY"][1]["location"] = "imgui:435" defs["igGetScrollY"][1]["namespace"] = "ImGui" defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" @@ -19049,7 +19091,7 @@ defs["igGetShortcutRoutingData"][1]["call_args"] = "(key_chord)" defs["igGetShortcutRoutingData"][1]["cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["defaults"] = {} defs["igGetShortcutRoutingData"][1]["funcname"] = "GetShortcutRoutingData" -defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3627" +defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3636" defs["igGetShortcutRoutingData"][1]["namespace"] = "ImGui" defs["igGetShortcutRoutingData"][1]["ov_cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["ret"] = "ImGuiKeyRoutingData*" @@ -19065,7 +19107,7 @@ defs["igGetStateStorage"][1]["call_args"] = "()" defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" -defs["igGetStateStorage"][1]["location"] = "imgui:971" +defs["igGetStateStorage"][1]["location"] = "imgui:975" defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -19081,7 +19123,7 @@ defs["igGetStyle"][1]["call_args"] = "()" defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" -defs["igGetStyle"][1]["location"] = "imgui:334" +defs["igGetStyle"][1]["location"] = "imgui:336" defs["igGetStyle"][1]["namespace"] = "ImGui" defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" @@ -19101,7 +19143,7 @@ defs["igGetStyleColorName"][1]["call_args"] = "(idx)" defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" -defs["igGetStyleColorName"][1]["location"] = "imgui:969" +defs["igGetStyleColorName"][1]["location"] = "imgui:973" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -19120,7 +19162,7 @@ defs["igGetStyleColorVec4"][1]["call_args"] = "(idx)" defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" -defs["igGetStyleColorVec4"][1]["location"] = "imgui:471" +defs["igGetStyleColorVec4"][1]["location"] = "imgui:475" defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" @@ -19140,7 +19182,7 @@ defs["igGetStyleVarInfo"][1]["call_args"] = "(idx)" defs["igGetStyleVarInfo"][1]["cimguiname"] = "igGetStyleVarInfo" defs["igGetStyleVarInfo"][1]["defaults"] = {} defs["igGetStyleVarInfo"][1]["funcname"] = "GetStyleVarInfo" -defs["igGetStyleVarInfo"][1]["location"] = "imgui_internal:3478" +defs["igGetStyleVarInfo"][1]["location"] = "imgui_internal:3487" defs["igGetStyleVarInfo"][1]["namespace"] = "ImGui" defs["igGetStyleVarInfo"][1]["ov_cimguiname"] = "igGetStyleVarInfo" defs["igGetStyleVarInfo"][1]["ret"] = "const ImGuiDataVarInfo*" @@ -19156,7 +19198,7 @@ defs["igGetTextLineHeight"][1]["call_args"] = "()" defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" -defs["igGetTextLineHeight"][1]["location"] = "imgui:505" +defs["igGetTextLineHeight"][1]["location"] = "imgui:509" defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" @@ -19172,7 +19214,7 @@ defs["igGetTextLineHeightWithSpacing"][1]["call_args"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" -defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:506" +defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:510" defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" @@ -19188,7 +19230,7 @@ defs["igGetTime"][1]["call_args"] = "()" defs["igGetTime"][1]["cimguiname"] = "igGetTime" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" -defs["igGetTime"][1]["location"] = "imgui:966" +defs["igGetTime"][1]["location"] = "imgui:970" defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -19204,7 +19246,7 @@ defs["igGetTopMostAndVisiblePopupModal"][1]["call_args"] = "()" defs["igGetTopMostAndVisiblePopupModal"][1]["cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["defaults"] = {} defs["igGetTopMostAndVisiblePopupModal"][1]["funcname"] = "GetTopMostAndVisiblePopupModal" -defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3500" +defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3509" defs["igGetTopMostAndVisiblePopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostAndVisiblePopupModal"][1]["ov_cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["ret"] = "ImGuiWindow*" @@ -19220,7 +19262,7 @@ defs["igGetTopMostPopupModal"][1]["call_args"] = "()" defs["igGetTopMostPopupModal"][1]["cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["defaults"] = {} defs["igGetTopMostPopupModal"][1]["funcname"] = "GetTopMostPopupModal" -defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:3499" +defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:3508" defs["igGetTopMostPopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostPopupModal"][1]["ov_cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["ret"] = "ImGuiWindow*" @@ -19236,7 +19278,7 @@ defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" -defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:669" +defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:673" defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" @@ -19261,7 +19303,7 @@ defs["igGetTypematicRepeatRate"][1]["call_args"] = "(flags,repeat_delay,repeat_r defs["igGetTypematicRepeatRate"][1]["cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["defaults"] = {} defs["igGetTypematicRepeatRate"][1]["funcname"] = "GetTypematicRepeatRate" -defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3572" +defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3581" defs["igGetTypematicRepeatRate"][1]["namespace"] = "ImGui" defs["igGetTypematicRepeatRate"][1]["ov_cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["ret"] = "void" @@ -19281,7 +19323,7 @@ defs["igGetTypingSelectRequest"][1]["cimguiname"] = "igGetTypingSelectRequest" defs["igGetTypingSelectRequest"][1]["defaults"] = {} defs["igGetTypingSelectRequest"][1]["defaults"]["flags"] = "ImGuiTypingSelectFlags_None" defs["igGetTypingSelectRequest"][1]["funcname"] = "GetTypingSelectRequest" -defs["igGetTypingSelectRequest"][1]["location"] = "imgui_internal:3704" +defs["igGetTypingSelectRequest"][1]["location"] = "imgui_internal:3713" defs["igGetTypingSelectRequest"][1]["namespace"] = "ImGui" defs["igGetTypingSelectRequest"][1]["ov_cimguiname"] = "igGetTypingSelectRequest" defs["igGetTypingSelectRequest"][1]["ret"] = "ImGuiTypingSelectRequest*" @@ -19297,7 +19339,7 @@ defs["igGetVersion"][1]["call_args"] = "()" defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" -defs["igGetVersion"][1]["location"] = "imgui:350" +defs["igGetVersion"][1]["location"] = "imgui:352" defs["igGetVersion"][1]["namespace"] = "ImGui" defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" @@ -19316,7 +19358,7 @@ defs["igGetViewportPlatformMonitor"][1]["call_args"] = "(viewport)" defs["igGetViewportPlatformMonitor"][1]["cimguiname"] = "igGetViewportPlatformMonitor" defs["igGetViewportPlatformMonitor"][1]["defaults"] = {} defs["igGetViewportPlatformMonitor"][1]["funcname"] = "GetViewportPlatformMonitor" -defs["igGetViewportPlatformMonitor"][1]["location"] = "imgui_internal:3413" +defs["igGetViewportPlatformMonitor"][1]["location"] = "imgui_internal:3422" defs["igGetViewportPlatformMonitor"][1]["namespace"] = "ImGui" defs["igGetViewportPlatformMonitor"][1]["ov_cimguiname"] = "igGetViewportPlatformMonitor" defs["igGetViewportPlatformMonitor"][1]["ret"] = "const ImGuiPlatformMonitor*" @@ -19335,7 +19377,7 @@ defs["igGetWindowAlwaysWantOwnTabBar"][1]["call_args"] = "(window)" defs["igGetWindowAlwaysWantOwnTabBar"][1]["cimguiname"] = "igGetWindowAlwaysWantOwnTabBar" defs["igGetWindowAlwaysWantOwnTabBar"][1]["defaults"] = {} defs["igGetWindowAlwaysWantOwnTabBar"][1]["funcname"] = "GetWindowAlwaysWantOwnTabBar" -defs["igGetWindowAlwaysWantOwnTabBar"][1]["location"] = "imgui_internal:3654" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["location"] = "imgui_internal:3663" defs["igGetWindowAlwaysWantOwnTabBar"][1]["namespace"] = "ImGui" defs["igGetWindowAlwaysWantOwnTabBar"][1]["ov_cimguiname"] = "igGetWindowAlwaysWantOwnTabBar" defs["igGetWindowAlwaysWantOwnTabBar"][1]["ret"] = "bool" @@ -19351,7 +19393,7 @@ defs["igGetWindowDockID"][1]["call_args"] = "()" defs["igGetWindowDockID"][1]["cimguiname"] = "igGetWindowDockID" defs["igGetWindowDockID"][1]["defaults"] = {} defs["igGetWindowDockID"][1]["funcname"] = "GetWindowDockID" -defs["igGetWindowDockID"][1]["location"] = "imgui:885" +defs["igGetWindowDockID"][1]["location"] = "imgui:889" defs["igGetWindowDockID"][1]["namespace"] = "ImGui" defs["igGetWindowDockID"][1]["ov_cimguiname"] = "igGetWindowDockID" defs["igGetWindowDockID"][1]["ret"] = "ImGuiID" @@ -19367,7 +19409,7 @@ defs["igGetWindowDockNode"][1]["call_args"] = "()" defs["igGetWindowDockNode"][1]["cimguiname"] = "igGetWindowDockNode" defs["igGetWindowDockNode"][1]["defaults"] = {} defs["igGetWindowDockNode"][1]["funcname"] = "GetWindowDockNode" -defs["igGetWindowDockNode"][1]["location"] = "imgui_internal:3653" +defs["igGetWindowDockNode"][1]["location"] = "imgui_internal:3662" defs["igGetWindowDockNode"][1]["namespace"] = "ImGui" defs["igGetWindowDockNode"][1]["ov_cimguiname"] = "igGetWindowDockNode" defs["igGetWindowDockNode"][1]["ret"] = "ImGuiDockNode*" @@ -19383,7 +19425,7 @@ defs["igGetWindowDpiScale"][1]["call_args"] = "()" defs["igGetWindowDpiScale"][1]["cimguiname"] = "igGetWindowDpiScale" defs["igGetWindowDpiScale"][1]["defaults"] = {} defs["igGetWindowDpiScale"][1]["funcname"] = "GetWindowDpiScale" -defs["igGetWindowDpiScale"][1]["location"] = "imgui:401" +defs["igGetWindowDpiScale"][1]["location"] = "imgui:403" defs["igGetWindowDpiScale"][1]["namespace"] = "ImGui" defs["igGetWindowDpiScale"][1]["ov_cimguiname"] = "igGetWindowDpiScale" defs["igGetWindowDpiScale"][1]["ret"] = "float" @@ -19399,7 +19441,7 @@ defs["igGetWindowDrawList"][1]["call_args"] = "()" defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" -defs["igGetWindowDrawList"][1]["location"] = "imgui:400" +defs["igGetWindowDrawList"][1]["location"] = "imgui:402" defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" @@ -19415,7 +19457,7 @@ defs["igGetWindowHeight"][1]["call_args"] = "()" defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" -defs["igGetWindowHeight"][1]["location"] = "imgui:405" +defs["igGetWindowHeight"][1]["location"] = "imgui:407" defs["igGetWindowHeight"][1]["namespace"] = "ImGui" defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" @@ -19434,7 +19476,7 @@ defs["igGetWindowPos"][1]["call_args"] = "()" defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" -defs["igGetWindowPos"][1]["location"] = "imgui:402" +defs["igGetWindowPos"][1]["location"] = "imgui:404" defs["igGetWindowPos"][1]["namespace"] = "ImGui" defs["igGetWindowPos"][1]["nonUDT"] = 1 defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" @@ -19457,7 +19499,7 @@ defs["igGetWindowResizeBorderID"][1]["call_args"] = "(window,dir)" defs["igGetWindowResizeBorderID"][1]["cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["defaults"] = {} defs["igGetWindowResizeBorderID"][1]["funcname"] = "GetWindowResizeBorderID" -defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3854" +defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3863" defs["igGetWindowResizeBorderID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeBorderID"][1]["ov_cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["ret"] = "ImGuiID" @@ -19479,7 +19521,7 @@ defs["igGetWindowResizeCornerID"][1]["call_args"] = "(window,n)" defs["igGetWindowResizeCornerID"][1]["cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["defaults"] = {} defs["igGetWindowResizeCornerID"][1]["funcname"] = "GetWindowResizeCornerID" -defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3853" +defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3862" defs["igGetWindowResizeCornerID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeCornerID"][1]["ov_cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["ret"] = "ImGuiID" @@ -19501,7 +19543,7 @@ defs["igGetWindowScrollbarID"][1]["call_args"] = "(window,axis)" defs["igGetWindowScrollbarID"][1]["cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["defaults"] = {} defs["igGetWindowScrollbarID"][1]["funcname"] = "GetWindowScrollbarID" -defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3852" +defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3861" defs["igGetWindowScrollbarID"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarID"][1]["ov_cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["ret"] = "ImGuiID" @@ -19526,7 +19568,7 @@ defs["igGetWindowScrollbarRect"][1]["call_args"] = "(window,axis)" defs["igGetWindowScrollbarRect"][1]["cimguiname"] = "igGetWindowScrollbarRect" defs["igGetWindowScrollbarRect"][1]["defaults"] = {} defs["igGetWindowScrollbarRect"][1]["funcname"] = "GetWindowScrollbarRect" -defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3851" +defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3860" defs["igGetWindowScrollbarRect"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarRect"][1]["nonUDT"] = 1 defs["igGetWindowScrollbarRect"][1]["ov_cimguiname"] = "igGetWindowScrollbarRect" @@ -19546,7 +19588,7 @@ defs["igGetWindowSize"][1]["call_args"] = "()" defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" -defs["igGetWindowSize"][1]["location"] = "imgui:403" +defs["igGetWindowSize"][1]["location"] = "imgui:405" defs["igGetWindowSize"][1]["namespace"] = "ImGui" defs["igGetWindowSize"][1]["nonUDT"] = 1 defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" @@ -19563,7 +19605,7 @@ defs["igGetWindowViewport"][1]["call_args"] = "()" defs["igGetWindowViewport"][1]["cimguiname"] = "igGetWindowViewport" defs["igGetWindowViewport"][1]["defaults"] = {} defs["igGetWindowViewport"][1]["funcname"] = "GetWindowViewport" -defs["igGetWindowViewport"][1]["location"] = "imgui:406" +defs["igGetWindowViewport"][1]["location"] = "imgui:408" defs["igGetWindowViewport"][1]["namespace"] = "ImGui" defs["igGetWindowViewport"][1]["ov_cimguiname"] = "igGetWindowViewport" defs["igGetWindowViewport"][1]["ret"] = "ImGuiViewport*" @@ -19579,7 +19621,7 @@ defs["igGetWindowWidth"][1]["call_args"] = "()" defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" -defs["igGetWindowWidth"][1]["location"] = "imgui:404" +defs["igGetWindowWidth"][1]["location"] = "imgui:406" defs["igGetWindowWidth"][1]["namespace"] = "ImGui" defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" @@ -20242,7 +20284,7 @@ defs["igImFontAtlasBuildFinish"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildFinish"][1]["cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["defaults"] = {} defs["igImFontAtlasBuildFinish"][1]["funcname"] = "ImFontAtlasBuildFinish" -defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3989" +defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3998" defs["igImFontAtlasBuildFinish"][1]["ov_cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["ret"] = "void" defs["igImFontAtlasBuildFinish"][1]["signature"] = "(ImFontAtlas*)" @@ -20260,7 +20302,7 @@ defs["igImFontAtlasBuildInit"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildInit"][1]["cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["defaults"] = {} defs["igImFontAtlasBuildInit"][1]["funcname"] = "ImFontAtlasBuildInit" -defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3986" +defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3995" defs["igImFontAtlasBuildInit"][1]["ov_cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["ret"] = "void" defs["igImFontAtlasBuildInit"][1]["signature"] = "(ImFontAtlas*)" @@ -20281,7 +20323,7 @@ defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["call_args"] = "(out_table, defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["defaults"] = {} defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["funcname"] = "ImFontAtlasBuildMultiplyCalcLookupTable" -defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:3992" +defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:4001" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["signature"] = "(unsigned char[256],float)" @@ -20317,7 +20359,7 @@ defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["call_args"] = "(table,pixels,x, defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["cimguiname"] = "igImFontAtlasBuildMultiplyRectAlpha8" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["defaults"] = {} defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["funcname"] = "ImFontAtlasBuildMultiplyRectAlpha8" -defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:3993" +defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:4002" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyRectAlpha8" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["signature"] = "(const unsigned char[256],unsigned char*,int,int,int,int,int)" @@ -20338,7 +20380,7 @@ defs["igImFontAtlasBuildPackCustomRects"][1]["call_args"] = "(atlas,stbrp_contex defs["igImFontAtlasBuildPackCustomRects"][1]["cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["defaults"] = {} defs["igImFontAtlasBuildPackCustomRects"][1]["funcname"] = "ImFontAtlasBuildPackCustomRects" -defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3988" +defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3997" defs["igImFontAtlasBuildPackCustomRects"][1]["ov_cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["ret"] = "void" defs["igImFontAtlasBuildPackCustomRects"][1]["signature"] = "(ImFontAtlas*,void*)" @@ -20377,7 +20419,7 @@ defs["igImFontAtlasBuildRender32bppRectFromString"][1]["call_args"] = "(atlas,x, defs["igImFontAtlasBuildRender32bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender32bppRectFromString" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender32bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender32bppRectFromString" -defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3991" +defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:4000" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender32bppRectFromString" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)" @@ -20416,7 +20458,7 @@ defs["igImFontAtlasBuildRender8bppRectFromString"][1]["call_args"] = "(atlas,x,y defs["igImFontAtlasBuildRender8bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender8bppRectFromString" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender8bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender8bppRectFromString" -defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3990" +defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3999" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender8bppRectFromString" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)" @@ -20446,7 +20488,7 @@ defs["igImFontAtlasBuildSetupFont"][1]["call_args"] = "(atlas,font,font_config,a defs["igImFontAtlasBuildSetupFont"][1]["cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["defaults"] = {} defs["igImFontAtlasBuildSetupFont"][1]["funcname"] = "ImFontAtlasBuildSetupFont" -defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3987" +defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3996" defs["igImFontAtlasBuildSetupFont"][1]["ov_cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["ret"] = "void" defs["igImFontAtlasBuildSetupFont"][1]["signature"] = "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)" @@ -20461,7 +20503,7 @@ defs["igImFontAtlasGetBuilderForStbTruetype"][1]["call_args"] = "()" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["cimguiname"] = "igImFontAtlasGetBuilderForStbTruetype" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["defaults"] = {} defs["igImFontAtlasGetBuilderForStbTruetype"][1]["funcname"] = "ImFontAtlasGetBuilderForStbTruetype" -defs["igImFontAtlasGetBuilderForStbTruetype"][1]["location"] = "imgui_internal:3983" +defs["igImFontAtlasGetBuilderForStbTruetype"][1]["location"] = "imgui_internal:3992" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ov_cimguiname"] = "igImFontAtlasGetBuilderForStbTruetype" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ret"] = "const ImFontBuilderIO*" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["signature"] = "()" @@ -20479,7 +20521,7 @@ defs["igImFontAtlasUpdateConfigDataPointers"][1]["call_args"] = "(atlas)" defs["igImFontAtlasUpdateConfigDataPointers"][1]["cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" defs["igImFontAtlasUpdateConfigDataPointers"][1]["defaults"] = {} defs["igImFontAtlasUpdateConfigDataPointers"][1]["funcname"] = "ImFontAtlasUpdateConfigDataPointers" -defs["igImFontAtlasUpdateConfigDataPointers"][1]["location"] = "imgui_internal:3985" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["location"] = "imgui_internal:3994" defs["igImFontAtlasUpdateConfigDataPointers"][1]["ov_cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" defs["igImFontAtlasUpdateConfigDataPointers"][1]["ret"] = "void" defs["igImFontAtlasUpdateConfigDataPointers"][1]["signature"] = "(ImFontAtlas*)" @@ -22106,7 +22148,7 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" -defs["igImage"][1]["location"] = "imgui:568" +defs["igImage"][1]["location"] = "imgui:572" defs["igImage"][1]["namespace"] = "ImGui" defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" @@ -22147,7 +22189,7 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" -defs["igImageButton"][1]["location"] = "imgui:569" +defs["igImageButton"][1]["location"] = "imgui:573" defs["igImageButton"][1]["namespace"] = "ImGui" defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" @@ -22188,7 +22230,7 @@ defs["igImageButtonEx"][1]["cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["defaults"] = {} defs["igImageButtonEx"][1]["defaults"]["flags"] = "0" defs["igImageButtonEx"][1]["funcname"] = "ImageButtonEx" -defs["igImageButtonEx"][1]["location"] = "imgui_internal:3840" +defs["igImageButtonEx"][1]["location"] = "imgui_internal:3849" defs["igImageButtonEx"][1]["namespace"] = "ImGui" defs["igImageButtonEx"][1]["ov_cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["ret"] = "bool" @@ -22208,7 +22250,7 @@ defs["igIndent"][1]["cimguiname"] = "igIndent" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" -defs["igIndent"][1]["location"] = "imgui:500" +defs["igIndent"][1]["location"] = "imgui:504" defs["igIndent"][1]["namespace"] = "ImGui" defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" @@ -22224,7 +22266,7 @@ defs["igInitialize"][1]["call_args"] = "()" defs["igInitialize"][1]["cimguiname"] = "igInitialize" defs["igInitialize"][1]["defaults"] = {} defs["igInitialize"][1]["funcname"] = "Initialize" -defs["igInitialize"][1]["location"] = "imgui_internal:3390" +defs["igInitialize"][1]["location"] = "imgui_internal:3399" defs["igInitialize"][1]["namespace"] = "ImGui" defs["igInitialize"][1]["ov_cimguiname"] = "igInitialize" defs["igInitialize"][1]["ret"] = "void" @@ -22262,7 +22304,7 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" -defs["igInputDouble"][1]["location"] = "imgui:640" +defs["igInputDouble"][1]["location"] = "imgui:644" defs["igInputDouble"][1]["namespace"] = "ImGui" defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" @@ -22300,7 +22342,7 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" -defs["igInputFloat"][1]["location"] = "imgui:632" +defs["igInputFloat"][1]["location"] = "imgui:636" defs["igInputFloat"][1]["namespace"] = "ImGui" defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" @@ -22330,7 +22372,7 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" -defs["igInputFloat2"][1]["location"] = "imgui:633" +defs["igInputFloat2"][1]["location"] = "imgui:637" defs["igInputFloat2"][1]["namespace"] = "ImGui" defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" @@ -22360,7 +22402,7 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" -defs["igInputFloat3"][1]["location"] = "imgui:634" +defs["igInputFloat3"][1]["location"] = "imgui:638" defs["igInputFloat3"][1]["namespace"] = "ImGui" defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" @@ -22390,7 +22432,7 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" -defs["igInputFloat4"][1]["location"] = "imgui:635" +defs["igInputFloat4"][1]["location"] = "imgui:639" defs["igInputFloat4"][1]["namespace"] = "ImGui" defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" @@ -22424,7 +22466,7 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" -defs["igInputInt"][1]["location"] = "imgui:636" +defs["igInputInt"][1]["location"] = "imgui:640" defs["igInputInt"][1]["namespace"] = "ImGui" defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" @@ -22450,7 +22492,7 @@ defs["igInputInt2"][1]["cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" -defs["igInputInt2"][1]["location"] = "imgui:637" +defs["igInputInt2"][1]["location"] = "imgui:641" defs["igInputInt2"][1]["namespace"] = "ImGui" defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" @@ -22476,7 +22518,7 @@ defs["igInputInt3"][1]["cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" -defs["igInputInt3"][1]["location"] = "imgui:638" +defs["igInputInt3"][1]["location"] = "imgui:642" defs["igInputInt3"][1]["namespace"] = "ImGui" defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" @@ -22502,7 +22544,7 @@ defs["igInputInt4"][1]["cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" -defs["igInputInt4"][1]["location"] = "imgui:639" +defs["igInputInt4"][1]["location"] = "imgui:643" defs["igInputInt4"][1]["namespace"] = "ImGui" defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" @@ -22543,7 +22585,7 @@ defs["igInputScalar"][1]["defaults"]["format"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalar"][1]["funcname"] = "InputScalar" -defs["igInputScalar"][1]["location"] = "imgui:641" +defs["igInputScalar"][1]["location"] = "imgui:645" defs["igInputScalar"][1]["namespace"] = "ImGui" defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" @@ -22587,7 +22629,7 @@ defs["igInputScalarN"][1]["defaults"]["format"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" -defs["igInputScalarN"][1]["location"] = "imgui:642" +defs["igInputScalarN"][1]["location"] = "imgui:646" defs["igInputScalarN"][1]["namespace"] = "ImGui" defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" @@ -22624,7 +22666,7 @@ defs["igInputText"][1]["defaults"]["callback"] = "NULL" defs["igInputText"][1]["defaults"]["flags"] = "0" defs["igInputText"][1]["defaults"]["user_data"] = "NULL" defs["igInputText"][1]["funcname"] = "InputText" -defs["igInputText"][1]["location"] = "imgui:629" +defs["igInputText"][1]["location"] = "imgui:633" defs["igInputText"][1]["namespace"] = "ImGui" defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" @@ -22643,7 +22685,7 @@ defs["igInputTextDeactivateHook"][1]["call_args"] = "(id)" defs["igInputTextDeactivateHook"][1]["cimguiname"] = "igInputTextDeactivateHook" defs["igInputTextDeactivateHook"][1]["defaults"] = {} defs["igInputTextDeactivateHook"][1]["funcname"] = "InputTextDeactivateHook" -defs["igInputTextDeactivateHook"][1]["location"] = "imgui_internal:3889" +defs["igInputTextDeactivateHook"][1]["location"] = "imgui_internal:3898" defs["igInputTextDeactivateHook"][1]["namespace"] = "ImGui" defs["igInputTextDeactivateHook"][1]["ov_cimguiname"] = "igInputTextDeactivateHook" defs["igInputTextDeactivateHook"][1]["ret"] = "void" @@ -22685,7 +22727,7 @@ defs["igInputTextEx"][1]["defaults"] = {} defs["igInputTextEx"][1]["defaults"]["callback"] = "NULL" defs["igInputTextEx"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextEx"][1]["funcname"] = "InputTextEx" -defs["igInputTextEx"][1]["location"] = "imgui_internal:3888" +defs["igInputTextEx"][1]["location"] = "imgui_internal:3897" defs["igInputTextEx"][1]["namespace"] = "ImGui" defs["igInputTextEx"][1]["ov_cimguiname"] = "igInputTextEx" defs["igInputTextEx"][1]["ret"] = "bool" @@ -22726,7 +22768,7 @@ defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" -defs["igInputTextMultiline"][1]["location"] = "imgui:630" +defs["igInputTextMultiline"][1]["location"] = "imgui:634" defs["igInputTextMultiline"][1]["namespace"] = "ImGui" defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" @@ -22766,7 +22808,7 @@ defs["igInputTextWithHint"][1]["defaults"]["callback"] = "NULL" defs["igInputTextWithHint"][1]["defaults"]["flags"] = "0" defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextWithHint"][1]["funcname"] = "InputTextWithHint" -defs["igInputTextWithHint"][1]["location"] = "imgui:631" +defs["igInputTextWithHint"][1]["location"] = "imgui:635" defs["igInputTextWithHint"][1]["namespace"] = "ImGui" defs["igInputTextWithHint"][1]["ov_cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["ret"] = "bool" @@ -22792,7 +22834,7 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["defaults"]["flags"] = "0" defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" -defs["igInvisibleButton"][1]["location"] = "imgui:552" +defs["igInvisibleButton"][1]["location"] = "imgui:556" defs["igInvisibleButton"][1]["namespace"] = "ImGui" defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" @@ -22811,7 +22853,7 @@ defs["igIsActiveIdUsingNavDir"][1]["call_args"] = "(dir)" defs["igIsActiveIdUsingNavDir"][1]["cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["defaults"] = {} defs["igIsActiveIdUsingNavDir"][1]["funcname"] = "IsActiveIdUsingNavDir" -defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3575" +defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3584" defs["igIsActiveIdUsingNavDir"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavDir"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["ret"] = "bool" @@ -22830,7 +22872,7 @@ defs["igIsAliasKey"][1]["call_args"] = "(key)" defs["igIsAliasKey"][1]["cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["defaults"] = {} defs["igIsAliasKey"][1]["funcname"] = "IsAliasKey" -defs["igIsAliasKey"][1]["location"] = "imgui_internal:3552" +defs["igIsAliasKey"][1]["location"] = "imgui_internal:3561" defs["igIsAliasKey"][1]["namespace"] = "ImGui" defs["igIsAliasKey"][1]["ov_cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["ret"] = "bool" @@ -22846,7 +22888,7 @@ defs["igIsAnyItemActive"][1]["call_args"] = "()" defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" -defs["igIsAnyItemActive"][1]["location"] = "imgui:946" +defs["igIsAnyItemActive"][1]["location"] = "imgui:950" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -22862,7 +22904,7 @@ defs["igIsAnyItemFocused"][1]["call_args"] = "()" defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" -defs["igIsAnyItemFocused"][1]["location"] = "imgui:947" +defs["igIsAnyItemFocused"][1]["location"] = "imgui:951" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -22878,7 +22920,7 @@ defs["igIsAnyItemHovered"][1]["call_args"] = "()" defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" -defs["igIsAnyItemHovered"][1]["location"] = "imgui:945" +defs["igIsAnyItemHovered"][1]["location"] = "imgui:949" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -22894,7 +22936,7 @@ defs["igIsAnyMouseDown"][1]["call_args"] = "()" defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" -defs["igIsAnyMouseDown"][1]["location"] = "imgui:1032" +defs["igIsAnyMouseDown"][1]["location"] = "imgui:1036" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -22916,7 +22958,7 @@ defs["igIsClippedEx"][1]["call_args"] = "(bb,id)" defs["igIsClippedEx"][1]["cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["defaults"] = {} defs["igIsClippedEx"][1]["funcname"] = "IsClippedEx" -defs["igIsClippedEx"][1]["location"] = "imgui_internal:3470" +defs["igIsClippedEx"][1]["location"] = "imgui_internal:3479" defs["igIsClippedEx"][1]["namespace"] = "ImGui" defs["igIsClippedEx"][1]["ov_cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["ret"] = "bool" @@ -22932,7 +22974,7 @@ defs["igIsDragDropActive"][1]["call_args"] = "()" defs["igIsDragDropActive"][1]["cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["defaults"] = {} defs["igIsDragDropActive"][1]["funcname"] = "IsDragDropActive" -defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3697" +defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3706" defs["igIsDragDropActive"][1]["namespace"] = "ImGui" defs["igIsDragDropActive"][1]["ov_cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["ret"] = "bool" @@ -22948,7 +22990,7 @@ defs["igIsDragDropPayloadBeingAccepted"][1]["call_args"] = "()" defs["igIsDragDropPayloadBeingAccepted"][1]["cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["defaults"] = {} defs["igIsDragDropPayloadBeingAccepted"][1]["funcname"] = "IsDragDropPayloadBeingAccepted" -defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:3700" +defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:3709" defs["igIsDragDropPayloadBeingAccepted"][1]["namespace"] = "ImGui" defs["igIsDragDropPayloadBeingAccepted"][1]["ov_cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["ret"] = "bool" @@ -22967,7 +23009,7 @@ defs["igIsGamepadKey"][1]["call_args"] = "(key)" defs["igIsGamepadKey"][1]["cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["defaults"] = {} defs["igIsGamepadKey"][1]["funcname"] = "IsGamepadKey" -defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3550" +defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3559" defs["igIsGamepadKey"][1]["namespace"] = "ImGui" defs["igIsGamepadKey"][1]["ov_cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["ret"] = "bool" @@ -22983,7 +23025,7 @@ defs["igIsItemActivated"][1]["call_args"] = "()" defs["igIsItemActivated"][1]["cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["defaults"] = {} defs["igIsItemActivated"][1]["funcname"] = "IsItemActivated" -defs["igIsItemActivated"][1]["location"] = "imgui:941" +defs["igIsItemActivated"][1]["location"] = "imgui:945" defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -22999,7 +23041,7 @@ defs["igIsItemActive"][1]["call_args"] = "()" defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" -defs["igIsItemActive"][1]["location"] = "imgui:936" +defs["igIsItemActive"][1]["location"] = "imgui:940" defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -23019,7 +23061,7 @@ defs["igIsItemClicked"][1]["cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" -defs["igIsItemClicked"][1]["location"] = "imgui:938" +defs["igIsItemClicked"][1]["location"] = "imgui:942" defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -23035,7 +23077,7 @@ defs["igIsItemDeactivated"][1]["call_args"] = "()" defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" -defs["igIsItemDeactivated"][1]["location"] = "imgui:942" +defs["igIsItemDeactivated"][1]["location"] = "imgui:946" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -23051,7 +23093,7 @@ defs["igIsItemDeactivatedAfterEdit"][1]["call_args"] = "()" defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" -defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:943" +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:947" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -23067,7 +23109,7 @@ defs["igIsItemEdited"][1]["call_args"] = "()" defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" -defs["igIsItemEdited"][1]["location"] = "imgui:940" +defs["igIsItemEdited"][1]["location"] = "imgui:944" defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -23083,7 +23125,7 @@ defs["igIsItemFocused"][1]["call_args"] = "()" defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" -defs["igIsItemFocused"][1]["location"] = "imgui:937" +defs["igIsItemFocused"][1]["location"] = "imgui:941" defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -23103,7 +23145,7 @@ defs["igIsItemHovered"][1]["cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" -defs["igIsItemHovered"][1]["location"] = "imgui:935" +defs["igIsItemHovered"][1]["location"] = "imgui:939" defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -23119,7 +23161,7 @@ defs["igIsItemToggledOpen"][1]["call_args"] = "()" defs["igIsItemToggledOpen"][1]["cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["defaults"] = {} defs["igIsItemToggledOpen"][1]["funcname"] = "IsItemToggledOpen" -defs["igIsItemToggledOpen"][1]["location"] = "imgui:944" +defs["igIsItemToggledOpen"][1]["location"] = "imgui:948" defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" @@ -23135,7 +23177,7 @@ defs["igIsItemToggledSelection"][1]["call_args"] = "()" defs["igIsItemToggledSelection"][1]["cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["defaults"] = {} defs["igIsItemToggledSelection"][1]["funcname"] = "IsItemToggledSelection" -defs["igIsItemToggledSelection"][1]["location"] = "imgui:691" +defs["igIsItemToggledSelection"][1]["location"] = "imgui:695" defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["ret"] = "bool" @@ -23151,7 +23193,7 @@ defs["igIsItemVisible"][1]["call_args"] = "()" defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" -defs["igIsItemVisible"][1]["location"] = "imgui:939" +defs["igIsItemVisible"][1]["location"] = "imgui:943" defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" @@ -23170,7 +23212,7 @@ defs["igIsKeyChordPressed"][1]["call_args"] = "(key_chord)" defs["igIsKeyChordPressed"][1]["cimguiname"] = "igIsKeyChordPressed" defs["igIsKeyChordPressed"][1]["defaults"] = {} defs["igIsKeyChordPressed"][1]["funcname"] = "IsKeyChordPressed" -defs["igIsKeyChordPressed"][1]["location"] = "imgui:990" +defs["igIsKeyChordPressed"][1]["location"] = "imgui:994" defs["igIsKeyChordPressed"][1]["namespace"] = "ImGui" defs["igIsKeyChordPressed"][1]["ov_cimguiname"] = "igIsKeyChordPressed_Nil" defs["igIsKeyChordPressed"][1]["ret"] = "bool" @@ -23194,7 +23236,7 @@ defs["igIsKeyChordPressed"][2]["cimguiname"] = "igIsKeyChordPressed" defs["igIsKeyChordPressed"][2]["defaults"] = {} defs["igIsKeyChordPressed"][2]["defaults"]["owner_id"] = "0" defs["igIsKeyChordPressed"][2]["funcname"] = "IsKeyChordPressed" -defs["igIsKeyChordPressed"][2]["location"] = "imgui_internal:3604" +defs["igIsKeyChordPressed"][2]["location"] = "imgui_internal:3613" defs["igIsKeyChordPressed"][2]["namespace"] = "ImGui" defs["igIsKeyChordPressed"][2]["ov_cimguiname"] = "igIsKeyChordPressed_InputFlags" defs["igIsKeyChordPressed"][2]["ret"] = "bool" @@ -23214,7 +23256,7 @@ defs["igIsKeyDown"][1]["call_args"] = "(key)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui:987" +defs["igIsKeyDown"][1]["location"] = "imgui:991" defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown_Nil" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -23234,7 +23276,7 @@ defs["igIsKeyDown"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyDown"][2]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][2]["defaults"] = {} defs["igIsKeyDown"][2]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][2]["location"] = "imgui_internal:3601" +defs["igIsKeyDown"][2]["location"] = "imgui_internal:3610" defs["igIsKeyDown"][2]["namespace"] = "ImGui" defs["igIsKeyDown"][2]["ov_cimguiname"] = "igIsKeyDown_ID" defs["igIsKeyDown"][2]["ret"] = "bool" @@ -23258,7 +23300,7 @@ defs["igIsKeyPressed"][1]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][1]["location"] = "imgui:988" +defs["igIsKeyPressed"][1]["location"] = "imgui:992" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed_Bool" defs["igIsKeyPressed"][1]["ret"] = "bool" @@ -23282,7 +23324,7 @@ defs["igIsKeyPressed"][2]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][2]["defaults"] = {} defs["igIsKeyPressed"][2]["defaults"]["owner_id"] = "0" defs["igIsKeyPressed"][2]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3602" +defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3611" defs["igIsKeyPressed"][2]["namespace"] = "ImGui" defs["igIsKeyPressed"][2]["ov_cimguiname"] = "igIsKeyPressed_InputFlags" defs["igIsKeyPressed"][2]["ret"] = "bool" @@ -23302,7 +23344,7 @@ defs["igIsKeyReleased"][1]["call_args"] = "(key)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui:989" +defs["igIsKeyReleased"][1]["location"] = "imgui:993" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased_Nil" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -23322,7 +23364,7 @@ defs["igIsKeyReleased"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyReleased"][2]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][2]["defaults"] = {} defs["igIsKeyReleased"][2]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3603" +defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3612" defs["igIsKeyReleased"][2]["namespace"] = "ImGui" defs["igIsKeyReleased"][2]["ov_cimguiname"] = "igIsKeyReleased_ID" defs["igIsKeyReleased"][2]["ret"] = "bool" @@ -23342,13 +23384,32 @@ defs["igIsKeyboardKey"][1]["call_args"] = "(key)" defs["igIsKeyboardKey"][1]["cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["defaults"] = {} defs["igIsKeyboardKey"][1]["funcname"] = "IsKeyboardKey" -defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3549" +defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3558" defs["igIsKeyboardKey"][1]["namespace"] = "ImGui" defs["igIsKeyboardKey"][1]["ov_cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["ret"] = "bool" defs["igIsKeyboardKey"][1]["signature"] = "(ImGuiKey)" defs["igIsKeyboardKey"][1]["stname"] = "" defs["igIsKeyboardKey"]["(ImGuiKey)"] = defs["igIsKeyboardKey"][1] +defs["igIsLRModKey"] = {} +defs["igIsLRModKey"][1] = {} +defs["igIsLRModKey"][1]["args"] = "(ImGuiKey key)" +defs["igIsLRModKey"][1]["argsT"] = {} +defs["igIsLRModKey"][1]["argsT"][1] = {} +defs["igIsLRModKey"][1]["argsT"][1]["name"] = "key" +defs["igIsLRModKey"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igIsLRModKey"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igIsLRModKey"][1]["call_args"] = "(key)" +defs["igIsLRModKey"][1]["cimguiname"] = "igIsLRModKey" +defs["igIsLRModKey"][1]["defaults"] = {} +defs["igIsLRModKey"][1]["funcname"] = "IsLRModKey" +defs["igIsLRModKey"][1]["location"] = "imgui_internal:3562" +defs["igIsLRModKey"][1]["namespace"] = "ImGui" +defs["igIsLRModKey"][1]["ov_cimguiname"] = "igIsLRModKey" +defs["igIsLRModKey"][1]["ret"] = "bool" +defs["igIsLRModKey"][1]["signature"] = "(ImGuiKey)" +defs["igIsLRModKey"][1]["stname"] = "" +defs["igIsLRModKey"]["(ImGuiKey)"] = defs["igIsLRModKey"][1] defs["igIsLegacyKey"] = {} defs["igIsLegacyKey"][1] = {} defs["igIsLegacyKey"][1]["args"] = "(ImGuiKey key)" @@ -23361,32 +23422,13 @@ defs["igIsLegacyKey"][1]["call_args"] = "(key)" defs["igIsLegacyKey"][1]["cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["defaults"] = {} defs["igIsLegacyKey"][1]["funcname"] = "IsLegacyKey" -defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3548" +defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3557" defs["igIsLegacyKey"][1]["namespace"] = "ImGui" defs["igIsLegacyKey"][1]["ov_cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["ret"] = "bool" defs["igIsLegacyKey"][1]["signature"] = "(ImGuiKey)" defs["igIsLegacyKey"][1]["stname"] = "" defs["igIsLegacyKey"]["(ImGuiKey)"] = defs["igIsLegacyKey"][1] -defs["igIsModKey"] = {} -defs["igIsModKey"][1] = {} -defs["igIsModKey"][1]["args"] = "(ImGuiKey key)" -defs["igIsModKey"][1]["argsT"] = {} -defs["igIsModKey"][1]["argsT"][1] = {} -defs["igIsModKey"][1]["argsT"][1]["name"] = "key" -defs["igIsModKey"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igIsModKey"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igIsModKey"][1]["call_args"] = "(key)" -defs["igIsModKey"][1]["cimguiname"] = "igIsModKey" -defs["igIsModKey"][1]["defaults"] = {} -defs["igIsModKey"][1]["funcname"] = "IsModKey" -defs["igIsModKey"][1]["location"] = "imgui_internal:3553" -defs["igIsModKey"][1]["namespace"] = "ImGui" -defs["igIsModKey"][1]["ov_cimguiname"] = "igIsModKey" -defs["igIsModKey"][1]["ret"] = "bool" -defs["igIsModKey"][1]["signature"] = "(ImGuiKey)" -defs["igIsModKey"][1]["stname"] = "" -defs["igIsModKey"]["(ImGuiKey)"] = defs["igIsModKey"][1] defs["igIsMouseClicked"] = {} defs["igIsMouseClicked"][1] = {} defs["igIsMouseClicked"][1]["args"] = "(ImGuiMouseButton button,bool repeat)" @@ -23403,7 +23445,7 @@ defs["igIsMouseClicked"][1]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][1]["location"] = "imgui:1026" +defs["igIsMouseClicked"][1]["location"] = "imgui:1030" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked_Bool" defs["igIsMouseClicked"][1]["ret"] = "bool" @@ -23427,7 +23469,7 @@ defs["igIsMouseClicked"][2]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][2]["defaults"] = {} defs["igIsMouseClicked"][2]["defaults"]["owner_id"] = "0" defs["igIsMouseClicked"][2]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3606" +defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3615" defs["igIsMouseClicked"][2]["namespace"] = "ImGui" defs["igIsMouseClicked"][2]["ov_cimguiname"] = "igIsMouseClicked_InputFlags" defs["igIsMouseClicked"][2]["ret"] = "bool" @@ -23447,7 +23489,7 @@ defs["igIsMouseDoubleClicked"][1]["call_args"] = "(button)" defs["igIsMouseDoubleClicked"][1]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["defaults"] = {} defs["igIsMouseDoubleClicked"][1]["funcname"] = "IsMouseDoubleClicked" -defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:1028" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:1032" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked_Nil" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" @@ -23467,7 +23509,7 @@ defs["igIsMouseDoubleClicked"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseDoubleClicked"][2]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][2]["defaults"] = {} defs["igIsMouseDoubleClicked"][2]["funcname"] = "IsMouseDoubleClicked" -defs["igIsMouseDoubleClicked"][2]["location"] = "imgui_internal:3608" +defs["igIsMouseDoubleClicked"][2]["location"] = "imgui_internal:3617" defs["igIsMouseDoubleClicked"][2]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][2]["ov_cimguiname"] = "igIsMouseDoubleClicked_ID" defs["igIsMouseDoubleClicked"][2]["ret"] = "bool" @@ -23487,7 +23529,7 @@ defs["igIsMouseDown"][1]["call_args"] = "(button)" defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][1]["location"] = "imgui:1025" +defs["igIsMouseDown"][1]["location"] = "imgui:1029" defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown_Nil" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -23507,7 +23549,7 @@ defs["igIsMouseDown"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseDown"][2]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][2]["defaults"] = {} defs["igIsMouseDown"][2]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][2]["location"] = "imgui_internal:3605" +defs["igIsMouseDown"][2]["location"] = "imgui_internal:3614" defs["igIsMouseDown"][2]["namespace"] = "ImGui" defs["igIsMouseDown"][2]["ov_cimguiname"] = "igIsMouseDown_ID" defs["igIsMouseDown"][2]["ret"] = "bool" @@ -23531,7 +23573,7 @@ defs["igIsMouseDragPastThreshold"][1]["cimguiname"] = "igIsMouseDragPastThreshol defs["igIsMouseDragPastThreshold"][1]["defaults"] = {} defs["igIsMouseDragPastThreshold"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragPastThreshold"][1]["funcname"] = "IsMouseDragPastThreshold" -defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:3568" +defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:3577" defs["igIsMouseDragPastThreshold"][1]["namespace"] = "ImGui" defs["igIsMouseDragPastThreshold"][1]["ov_cimguiname"] = "igIsMouseDragPastThreshold" defs["igIsMouseDragPastThreshold"][1]["ret"] = "bool" @@ -23554,7 +23596,7 @@ defs["igIsMouseDragging"][1]["cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragging"][1]["funcname"] = "IsMouseDragging" -defs["igIsMouseDragging"][1]["location"] = "imgui:1035" +defs["igIsMouseDragging"][1]["location"] = "imgui:1039" defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -23580,7 +23622,7 @@ defs["igIsMouseHoveringRect"][1]["cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" -defs["igIsMouseHoveringRect"][1]["location"] = "imgui:1030" +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:1034" defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -23599,7 +23641,7 @@ defs["igIsMouseKey"][1]["call_args"] = "(key)" defs["igIsMouseKey"][1]["cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["defaults"] = {} defs["igIsMouseKey"][1]["funcname"] = "IsMouseKey" -defs["igIsMouseKey"][1]["location"] = "imgui_internal:3551" +defs["igIsMouseKey"][1]["location"] = "imgui_internal:3560" defs["igIsMouseKey"][1]["namespace"] = "ImGui" defs["igIsMouseKey"][1]["ov_cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["ret"] = "bool" @@ -23619,7 +23661,7 @@ defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["defaults"] = {} defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "NULL" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" -defs["igIsMousePosValid"][1]["location"] = "imgui:1031" +defs["igIsMousePosValid"][1]["location"] = "imgui:1035" defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -23638,7 +23680,7 @@ defs["igIsMouseReleased"][1]["call_args"] = "(button)" defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][1]["location"] = "imgui:1027" +defs["igIsMouseReleased"][1]["location"] = "imgui:1031" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased_Nil" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -23658,7 +23700,7 @@ defs["igIsMouseReleased"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseReleased"][2]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][2]["defaults"] = {} defs["igIsMouseReleased"][2]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3607" +defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3616" defs["igIsMouseReleased"][2]["namespace"] = "ImGui" defs["igIsMouseReleased"][2]["ov_cimguiname"] = "igIsMouseReleased_ID" defs["igIsMouseReleased"][2]["ret"] = "bool" @@ -23678,7 +23720,7 @@ defs["igIsNamedKey"][1]["call_args"] = "(key)" defs["igIsNamedKey"][1]["cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["defaults"] = {} defs["igIsNamedKey"][1]["funcname"] = "IsNamedKey" -defs["igIsNamedKey"][1]["location"] = "imgui_internal:3546" +defs["igIsNamedKey"][1]["location"] = "imgui_internal:3555" defs["igIsNamedKey"][1]["namespace"] = "ImGui" defs["igIsNamedKey"][1]["ov_cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["ret"] = "bool" @@ -23697,7 +23739,7 @@ defs["igIsNamedKeyOrMod"][1]["call_args"] = "(key)" defs["igIsNamedKeyOrMod"][1]["cimguiname"] = "igIsNamedKeyOrMod" defs["igIsNamedKeyOrMod"][1]["defaults"] = {} defs["igIsNamedKeyOrMod"][1]["funcname"] = "IsNamedKeyOrMod" -defs["igIsNamedKeyOrMod"][1]["location"] = "imgui_internal:3547" +defs["igIsNamedKeyOrMod"][1]["location"] = "imgui_internal:3556" defs["igIsNamedKeyOrMod"][1]["namespace"] = "ImGui" defs["igIsNamedKeyOrMod"][1]["ov_cimguiname"] = "igIsNamedKeyOrMod" defs["igIsNamedKeyOrMod"][1]["ret"] = "bool" @@ -23720,7 +23762,7 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["defaults"]["flags"] = "0" defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][1]["location"] = "imgui:789" +defs["igIsPopupOpen"][1]["location"] = "imgui:793" defs["igIsPopupOpen"][1]["namespace"] = "ImGui" defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen_Str" defs["igIsPopupOpen"][1]["ret"] = "bool" @@ -23740,7 +23782,7 @@ defs["igIsPopupOpen"][2]["call_args"] = "(id,popup_flags)" defs["igIsPopupOpen"][2]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][2]["defaults"] = {} defs["igIsPopupOpen"][2]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][2]["location"] = "imgui_internal:3497" +defs["igIsPopupOpen"][2]["location"] = "imgui_internal:3506" defs["igIsPopupOpen"][2]["namespace"] = "ImGui" defs["igIsPopupOpen"][2]["ov_cimguiname"] = "igIsPopupOpen_ID" defs["igIsPopupOpen"][2]["ret"] = "bool" @@ -23760,7 +23802,7 @@ defs["igIsRectVisible"][1]["call_args"] = "(size)" defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][1]["location"] = "imgui:964" +defs["igIsRectVisible"][1]["location"] = "imgui:968" defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisible_Nil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -23780,7 +23822,7 @@ defs["igIsRectVisible"][2]["call_args"] = "(rect_min,rect_max)" defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][2]["location"] = "imgui:965" +defs["igIsRectVisible"][2]["location"] = "imgui:969" defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisible_Vec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -23803,7 +23845,7 @@ defs["igIsWindowAbove"][1]["call_args"] = "(potential_above,potential_below)" defs["igIsWindowAbove"][1]["cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["defaults"] = {} defs["igIsWindowAbove"][1]["funcname"] = "IsWindowAbove" -defs["igIsWindowAbove"][1]["location"] = "imgui_internal:3357" +defs["igIsWindowAbove"][1]["location"] = "imgui_internal:3366" defs["igIsWindowAbove"][1]["namespace"] = "ImGui" defs["igIsWindowAbove"][1]["ov_cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["ret"] = "bool" @@ -23819,7 +23861,7 @@ defs["igIsWindowAppearing"][1]["call_args"] = "()" defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" -defs["igIsWindowAppearing"][1]["location"] = "imgui:396" +defs["igIsWindowAppearing"][1]["location"] = "imgui:398" defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" @@ -23847,7 +23889,7 @@ defs["igIsWindowChildOf"][1]["call_args"] = "(window,potential_parent,popup_hier defs["igIsWindowChildOf"][1]["cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["defaults"] = {} defs["igIsWindowChildOf"][1]["funcname"] = "IsWindowChildOf" -defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:3355" +defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:3364" defs["igIsWindowChildOf"][1]["namespace"] = "ImGui" defs["igIsWindowChildOf"][1]["ov_cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["ret"] = "bool" @@ -23863,7 +23905,7 @@ defs["igIsWindowCollapsed"][1]["call_args"] = "()" defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" -defs["igIsWindowCollapsed"][1]["location"] = "imgui:397" +defs["igIsWindowCollapsed"][1]["location"] = "imgui:399" defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" @@ -23886,7 +23928,7 @@ defs["igIsWindowContentHoverable"][1]["cimguiname"] = "igIsWindowContentHoverabl defs["igIsWindowContentHoverable"][1]["defaults"] = {} defs["igIsWindowContentHoverable"][1]["defaults"]["flags"] = "0" defs["igIsWindowContentHoverable"][1]["funcname"] = "IsWindowContentHoverable" -defs["igIsWindowContentHoverable"][1]["location"] = "imgui_internal:3469" +defs["igIsWindowContentHoverable"][1]["location"] = "imgui_internal:3478" defs["igIsWindowContentHoverable"][1]["namespace"] = "ImGui" defs["igIsWindowContentHoverable"][1]["ov_cimguiname"] = "igIsWindowContentHoverable" defs["igIsWindowContentHoverable"][1]["ret"] = "bool" @@ -23902,7 +23944,7 @@ defs["igIsWindowDocked"][1]["call_args"] = "()" defs["igIsWindowDocked"][1]["cimguiname"] = "igIsWindowDocked" defs["igIsWindowDocked"][1]["defaults"] = {} defs["igIsWindowDocked"][1]["funcname"] = "IsWindowDocked" -defs["igIsWindowDocked"][1]["location"] = "imgui:886" +defs["igIsWindowDocked"][1]["location"] = "imgui:890" defs["igIsWindowDocked"][1]["namespace"] = "ImGui" defs["igIsWindowDocked"][1]["ov_cimguiname"] = "igIsWindowDocked" defs["igIsWindowDocked"][1]["ret"] = "bool" @@ -23922,7 +23964,7 @@ defs["igIsWindowFocused"][1]["cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" -defs["igIsWindowFocused"][1]["location"] = "imgui:398" +defs["igIsWindowFocused"][1]["location"] = "imgui:400" defs["igIsWindowFocused"][1]["namespace"] = "ImGui" defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" @@ -23942,7 +23984,7 @@ defs["igIsWindowHovered"][1]["cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" -defs["igIsWindowHovered"][1]["location"] = "imgui:399" +defs["igIsWindowHovered"][1]["location"] = "imgui:401" defs["igIsWindowHovered"][1]["namespace"] = "ImGui" defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" @@ -23961,7 +24003,7 @@ defs["igIsWindowNavFocusable"][1]["call_args"] = "(window)" defs["igIsWindowNavFocusable"][1]["cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["defaults"] = {} defs["igIsWindowNavFocusable"][1]["funcname"] = "IsWindowNavFocusable" -defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:3358" +defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:3367" defs["igIsWindowNavFocusable"][1]["namespace"] = "ImGui" defs["igIsWindowNavFocusable"][1]["ov_cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["ret"] = "bool" @@ -23983,7 +24025,7 @@ defs["igIsWindowWithinBeginStackOf"][1]["call_args"] = "(window,potential_parent defs["igIsWindowWithinBeginStackOf"][1]["cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["defaults"] = {} defs["igIsWindowWithinBeginStackOf"][1]["funcname"] = "IsWindowWithinBeginStackOf" -defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:3356" +defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:3365" defs["igIsWindowWithinBeginStackOf"][1]["namespace"] = "ImGui" defs["igIsWindowWithinBeginStackOf"][1]["ov_cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["ret"] = "bool" @@ -24013,7 +24055,7 @@ defs["igItemAdd"][1]["defaults"] = {} defs["igItemAdd"][1]["defaults"]["extra_flags"] = "0" defs["igItemAdd"][1]["defaults"]["nav_bb"] = "NULL" defs["igItemAdd"][1]["funcname"] = "ItemAdd" -defs["igItemAdd"][1]["location"] = "imgui_internal:3467" +defs["igItemAdd"][1]["location"] = "imgui_internal:3476" defs["igItemAdd"][1]["namespace"] = "ImGui" defs["igItemAdd"][1]["ov_cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["ret"] = "bool" @@ -24038,7 +24080,7 @@ defs["igItemHoverable"][1]["call_args"] = "(bb,id,item_flags)" defs["igItemHoverable"][1]["cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["defaults"] = {} defs["igItemHoverable"][1]["funcname"] = "ItemHoverable" -defs["igItemHoverable"][1]["location"] = "imgui_internal:3468" +defs["igItemHoverable"][1]["location"] = "imgui_internal:3477" defs["igItemHoverable"][1]["namespace"] = "ImGui" defs["igItemHoverable"][1]["ov_cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["ret"] = "bool" @@ -24061,7 +24103,7 @@ defs["igItemSize"][1]["cimguiname"] = "igItemSize" defs["igItemSize"][1]["defaults"] = {} defs["igItemSize"][1]["defaults"]["text_baseline_y"] = "-1.0f" defs["igItemSize"][1]["funcname"] = "ItemSize" -defs["igItemSize"][1]["location"] = "imgui_internal:3465" +defs["igItemSize"][1]["location"] = "imgui_internal:3474" defs["igItemSize"][1]["namespace"] = "ImGui" defs["igItemSize"][1]["ov_cimguiname"] = "igItemSize_Vec2" defs["igItemSize"][1]["ret"] = "void" @@ -24082,7 +24124,7 @@ defs["igItemSize"][2]["cimguiname"] = "igItemSize" defs["igItemSize"][2]["defaults"] = {} defs["igItemSize"][2]["defaults"]["text_baseline_y"] = "-1.0f" defs["igItemSize"][2]["funcname"] = "ItemSize" -defs["igItemSize"][2]["location"] = "imgui_internal:3466" +defs["igItemSize"][2]["location"] = "imgui_internal:3475" defs["igItemSize"][2]["namespace"] = "ImGui" defs["igItemSize"][2]["ov_cimguiname"] = "igItemSize_Rect" defs["igItemSize"][2]["ret"] = "void" @@ -24102,7 +24144,7 @@ defs["igKeepAliveID"][1]["call_args"] = "(id)" defs["igKeepAliveID"][1]["cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["defaults"] = {} defs["igKeepAliveID"][1]["funcname"] = "KeepAliveID" -defs["igKeepAliveID"][1]["location"] = "imgui_internal:3458" +defs["igKeepAliveID"][1]["location"] = "imgui_internal:3467" defs["igKeepAliveID"][1]["namespace"] = "ImGui" defs["igKeepAliveID"][1]["ov_cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["ret"] = "void" @@ -24128,7 +24170,7 @@ defs["igLabelText"][1]["cimguiname"] = "igLabelText" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" -defs["igLabelText"][1]["location"] = "imgui:541" +defs["igLabelText"][1]["location"] = "imgui:545" defs["igLabelText"][1]["namespace"] = "ImGui" defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" @@ -24153,7 +24195,7 @@ defs["igLabelTextV"][1]["call_args"] = "(label,fmt,args)" defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" -defs["igLabelTextV"][1]["location"] = "imgui:542" +defs["igLabelTextV"][1]["location"] = "imgui:546" defs["igLabelTextV"][1]["namespace"] = "ImGui" defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" @@ -24185,7 +24227,7 @@ defs["igListBox"][1]["cimguiname"] = "igListBox" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" -defs["igListBox"][1]["location"] = "imgui:701" +defs["igListBox"][1]["location"] = "imgui:705" defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBox_Str_arr" defs["igListBox"][1]["ret"] = "bool" @@ -24220,7 +24262,7 @@ defs["igListBox"][2]["cimguiname"] = "igListBox" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" -defs["igListBox"][2]["location"] = "imgui:702" +defs["igListBox"][2]["location"] = "imgui:706" defs["igListBox"][2]["namespace"] = "ImGui" defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnStrPtr" defs["igListBox"][2]["ret"] = "bool" @@ -24240,7 +24282,7 @@ defs["igLoadIniSettingsFromDisk"][1]["call_args"] = "(ini_filename)" defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" -defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:1051" +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:1055" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -24263,7 +24305,7 @@ defs["igLoadIniSettingsFromMemory"][1]["cimguiname"] = "igLoadIniSettingsFromMem defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" -defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:1052" +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:1056" defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -24282,7 +24324,7 @@ defs["igLocalizeGetMsg"][1]["call_args"] = "(key)" defs["igLocalizeGetMsg"][1]["cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["defaults"] = {} defs["igLocalizeGetMsg"][1]["funcname"] = "LocalizeGetMsg" -defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3432" +defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3441" defs["igLocalizeGetMsg"][1]["namespace"] = "ImGui" defs["igLocalizeGetMsg"][1]["ov_cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["ret"] = "const char*" @@ -24304,7 +24346,7 @@ defs["igLocalizeRegisterEntries"][1]["call_args"] = "(entries,count)" defs["igLocalizeRegisterEntries"][1]["cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["defaults"] = {} defs["igLocalizeRegisterEntries"][1]["funcname"] = "LocalizeRegisterEntries" -defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3431" +defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3440" defs["igLocalizeRegisterEntries"][1]["namespace"] = "ImGui" defs["igLocalizeRegisterEntries"][1]["ov_cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["ret"] = "void" @@ -24326,7 +24368,7 @@ defs["igLogBegin"][1]["call_args"] = "(type,auto_open_depth)" defs["igLogBegin"][1]["cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["defaults"] = {} defs["igLogBegin"][1]["funcname"] = "LogBegin" -defs["igLogBegin"][1]["location"] = "imgui_internal:3483" +defs["igLogBegin"][1]["location"] = "imgui_internal:3492" defs["igLogBegin"][1]["namespace"] = "ImGui" defs["igLogBegin"][1]["ov_cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["ret"] = "void" @@ -24342,7 +24384,7 @@ defs["igLogButtons"][1]["call_args"] = "()" defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" -defs["igLogButtons"][1]["location"] = "imgui:894" +defs["igLogButtons"][1]["location"] = "imgui:898" defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -24358,7 +24400,7 @@ defs["igLogFinish"][1]["call_args"] = "()" defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" -defs["igLogFinish"][1]["location"] = "imgui:893" +defs["igLogFinish"][1]["location"] = "imgui:897" defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -24384,7 +24426,7 @@ defs["igLogRenderedText"][1]["cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["defaults"] = {} defs["igLogRenderedText"][1]["defaults"]["text_end"] = "NULL" defs["igLogRenderedText"][1]["funcname"] = "LogRenderedText" -defs["igLogRenderedText"][1]["location"] = "imgui_internal:3485" +defs["igLogRenderedText"][1]["location"] = "imgui_internal:3494" defs["igLogRenderedText"][1]["namespace"] = "ImGui" defs["igLogRenderedText"][1]["ov_cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["ret"] = "void" @@ -24406,7 +24448,7 @@ defs["igLogSetNextTextDecoration"][1]["call_args"] = "(prefix,suffix)" defs["igLogSetNextTextDecoration"][1]["cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["defaults"] = {} defs["igLogSetNextTextDecoration"][1]["funcname"] = "LogSetNextTextDecoration" -defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:3486" +defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:3495" defs["igLogSetNextTextDecoration"][1]["namespace"] = "ImGui" defs["igLogSetNextTextDecoration"][1]["ov_cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["ret"] = "void" @@ -24429,7 +24471,7 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" -defs["igLogText"][1]["location"] = "imgui:895" +defs["igLogText"][1]["location"] = "imgui:899" defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -24452,7 +24494,7 @@ defs["igLogTextV"][1]["call_args"] = "(fmt,args)" defs["igLogTextV"][1]["cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["defaults"] = {} defs["igLogTextV"][1]["funcname"] = "LogTextV" -defs["igLogTextV"][1]["location"] = "imgui:896" +defs["igLogTextV"][1]["location"] = "imgui:900" defs["igLogTextV"][1]["namespace"] = "ImGui" defs["igLogTextV"][1]["ov_cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["ret"] = "void" @@ -24472,7 +24514,7 @@ defs["igLogToBuffer"][1]["cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["defaults"] = {} defs["igLogToBuffer"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToBuffer"][1]["funcname"] = "LogToBuffer" -defs["igLogToBuffer"][1]["location"] = "imgui_internal:3484" +defs["igLogToBuffer"][1]["location"] = "imgui_internal:3493" defs["igLogToBuffer"][1]["namespace"] = "ImGui" defs["igLogToBuffer"][1]["ov_cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["ret"] = "void" @@ -24492,7 +24534,7 @@ defs["igLogToClipboard"][1]["cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" -defs["igLogToClipboard"][1]["location"] = "imgui:892" +defs["igLogToClipboard"][1]["location"] = "imgui:896" defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -24516,7 +24558,7 @@ defs["igLogToFile"][1]["defaults"] = {} defs["igLogToFile"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToFile"][1]["defaults"]["filename"] = "NULL" defs["igLogToFile"][1]["funcname"] = "LogToFile" -defs["igLogToFile"][1]["location"] = "imgui:891" +defs["igLogToFile"][1]["location"] = "imgui:895" defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -24536,7 +24578,7 @@ defs["igLogToTTY"][1]["cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" -defs["igLogToTTY"][1]["location"] = "imgui:890" +defs["igLogToTTY"][1]["location"] = "imgui:894" defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -24552,7 +24594,7 @@ defs["igMarkIniSettingsDirty"][1]["call_args"] = "()" defs["igMarkIniSettingsDirty"][1]["cimguiname"] = "igMarkIniSettingsDirty" defs["igMarkIniSettingsDirty"][1]["defaults"] = {} defs["igMarkIniSettingsDirty"][1]["funcname"] = "MarkIniSettingsDirty" -defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:3417" +defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:3426" defs["igMarkIniSettingsDirty"][1]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][1]["ov_cimguiname"] = "igMarkIniSettingsDirty_Nil" defs["igMarkIniSettingsDirty"][1]["ret"] = "void" @@ -24569,7 +24611,7 @@ defs["igMarkIniSettingsDirty"][2]["call_args"] = "(window)" defs["igMarkIniSettingsDirty"][2]["cimguiname"] = "igMarkIniSettingsDirty" defs["igMarkIniSettingsDirty"][2]["defaults"] = {} defs["igMarkIniSettingsDirty"][2]["funcname"] = "MarkIniSettingsDirty" -defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:3418" +defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:3427" defs["igMarkIniSettingsDirty"][2]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][2]["ov_cimguiname"] = "igMarkIniSettingsDirty_WindowPtr" defs["igMarkIniSettingsDirty"][2]["ret"] = "void" @@ -24589,7 +24631,7 @@ defs["igMarkItemEdited"][1]["call_args"] = "(id)" defs["igMarkItemEdited"][1]["cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["defaults"] = {} defs["igMarkItemEdited"][1]["funcname"] = "MarkItemEdited" -defs["igMarkItemEdited"][1]["location"] = "imgui_internal:3459" +defs["igMarkItemEdited"][1]["location"] = "imgui_internal:3468" defs["igMarkItemEdited"][1]["namespace"] = "ImGui" defs["igMarkItemEdited"][1]["ov_cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["ret"] = "void" @@ -24608,7 +24650,7 @@ defs["igMemAlloc"][1]["call_args"] = "(size)" defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" -defs["igMemAlloc"][1]["location"] = "imgui:1073" +defs["igMemAlloc"][1]["location"] = "imgui:1077" defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -24627,7 +24669,7 @@ defs["igMemFree"][1]["call_args"] = "(ptr)" defs["igMemFree"][1]["cimguiname"] = "igMemFree" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" -defs["igMemFree"][1]["location"] = "imgui:1074" +defs["igMemFree"][1]["location"] = "imgui:1078" defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -24658,7 +24700,7 @@ defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" defs["igMenuItem"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItem"][1]["funcname"] = "MenuItem" -defs["igMenuItem"][1]["location"] = "imgui:729" +defs["igMenuItem"][1]["location"] = "imgui:733" defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItem_Bool" defs["igMenuItem"][1]["ret"] = "bool" @@ -24685,7 +24727,7 @@ defs["igMenuItem"][2]["cimguiname"] = "igMenuItem" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" -defs["igMenuItem"][2]["location"] = "imgui:730" +defs["igMenuItem"][2]["location"] = "imgui:734" defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItem_BoolPtr" defs["igMenuItem"][2]["ret"] = "bool" @@ -24720,7 +24762,7 @@ defs["igMenuItemEx"][1]["defaults"]["enabled"] = "true" defs["igMenuItemEx"][1]["defaults"]["selected"] = "false" defs["igMenuItemEx"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItemEx"][1]["funcname"] = "MenuItemEx" -defs["igMenuItemEx"][1]["location"] = "imgui_internal:3512" +defs["igMenuItemEx"][1]["location"] = "imgui_internal:3521" defs["igMenuItemEx"][1]["namespace"] = "ImGui" defs["igMenuItemEx"][1]["ov_cimguiname"] = "igMenuItemEx" defs["igMenuItemEx"][1]["ret"] = "bool" @@ -24739,7 +24781,7 @@ defs["igMouseButtonToKey"][1]["call_args"] = "(button)" defs["igMouseButtonToKey"][1]["cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["defaults"] = {} defs["igMouseButtonToKey"][1]["funcname"] = "MouseButtonToKey" -defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3567" +defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3576" defs["igMouseButtonToKey"][1]["namespace"] = "ImGui" defs["igMouseButtonToKey"][1]["ov_cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["ret"] = "ImGuiKey" @@ -24761,7 +24803,7 @@ defs["igMultiSelectAddSetAll"][1]["call_args"] = "(ms,selected)" defs["igMultiSelectAddSetAll"][1]["cimguiname"] = "igMultiSelectAddSetAll" defs["igMultiSelectAddSetAll"][1]["defaults"] = {} defs["igMultiSelectAddSetAll"][1]["funcname"] = "MultiSelectAddSetAll" -defs["igMultiSelectAddSetAll"][1]["location"] = "imgui_internal:3716" +defs["igMultiSelectAddSetAll"][1]["location"] = "imgui_internal:3725" defs["igMultiSelectAddSetAll"][1]["namespace"] = "ImGui" defs["igMultiSelectAddSetAll"][1]["ov_cimguiname"] = "igMultiSelectAddSetAll" defs["igMultiSelectAddSetAll"][1]["ret"] = "void" @@ -24792,7 +24834,7 @@ defs["igMultiSelectAddSetRange"][1]["call_args"] = "(ms,selected,range_dir,first defs["igMultiSelectAddSetRange"][1]["cimguiname"] = "igMultiSelectAddSetRange" defs["igMultiSelectAddSetRange"][1]["defaults"] = {} defs["igMultiSelectAddSetRange"][1]["funcname"] = "MultiSelectAddSetRange" -defs["igMultiSelectAddSetRange"][1]["location"] = "imgui_internal:3717" +defs["igMultiSelectAddSetRange"][1]["location"] = "imgui_internal:3726" defs["igMultiSelectAddSetRange"][1]["namespace"] = "ImGui" defs["igMultiSelectAddSetRange"][1]["ov_cimguiname"] = "igMultiSelectAddSetRange" defs["igMultiSelectAddSetRange"][1]["ret"] = "void" @@ -24817,7 +24859,7 @@ defs["igMultiSelectItemFooter"][1]["call_args"] = "(id,p_selected,p_pressed)" defs["igMultiSelectItemFooter"][1]["cimguiname"] = "igMultiSelectItemFooter" defs["igMultiSelectItemFooter"][1]["defaults"] = {} defs["igMultiSelectItemFooter"][1]["funcname"] = "MultiSelectItemFooter" -defs["igMultiSelectItemFooter"][1]["location"] = "imgui_internal:3715" +defs["igMultiSelectItemFooter"][1]["location"] = "imgui_internal:3724" defs["igMultiSelectItemFooter"][1]["namespace"] = "ImGui" defs["igMultiSelectItemFooter"][1]["ov_cimguiname"] = "igMultiSelectItemFooter" defs["igMultiSelectItemFooter"][1]["ret"] = "void" @@ -24842,7 +24884,7 @@ defs["igMultiSelectItemHeader"][1]["call_args"] = "(id,p_selected,p_button_flags defs["igMultiSelectItemHeader"][1]["cimguiname"] = "igMultiSelectItemHeader" defs["igMultiSelectItemHeader"][1]["defaults"] = {} defs["igMultiSelectItemHeader"][1]["funcname"] = "MultiSelectItemHeader" -defs["igMultiSelectItemHeader"][1]["location"] = "imgui_internal:3714" +defs["igMultiSelectItemHeader"][1]["location"] = "imgui_internal:3723" defs["igMultiSelectItemHeader"][1]["namespace"] = "ImGui" defs["igMultiSelectItemHeader"][1]["ov_cimguiname"] = "igMultiSelectItemHeader" defs["igMultiSelectItemHeader"][1]["ret"] = "void" @@ -24861,7 +24903,7 @@ defs["igNavClearPreferredPosForAxis"][1]["call_args"] = "(axis)" defs["igNavClearPreferredPosForAxis"][1]["cimguiname"] = "igNavClearPreferredPosForAxis" defs["igNavClearPreferredPosForAxis"][1]["defaults"] = {} defs["igNavClearPreferredPosForAxis"][1]["funcname"] = "NavClearPreferredPosForAxis" -defs["igNavClearPreferredPosForAxis"][1]["location"] = "imgui_internal:3531" +defs["igNavClearPreferredPosForAxis"][1]["location"] = "imgui_internal:3540" defs["igNavClearPreferredPosForAxis"][1]["namespace"] = "ImGui" defs["igNavClearPreferredPosForAxis"][1]["ov_cimguiname"] = "igNavClearPreferredPosForAxis" defs["igNavClearPreferredPosForAxis"][1]["ret"] = "void" @@ -24880,7 +24922,7 @@ defs["igNavHighlightActivated"][1]["call_args"] = "(id)" defs["igNavHighlightActivated"][1]["cimguiname"] = "igNavHighlightActivated" defs["igNavHighlightActivated"][1]["defaults"] = {} defs["igNavHighlightActivated"][1]["funcname"] = "NavHighlightActivated" -defs["igNavHighlightActivated"][1]["location"] = "imgui_internal:3530" +defs["igNavHighlightActivated"][1]["location"] = "imgui_internal:3539" defs["igNavHighlightActivated"][1]["namespace"] = "ImGui" defs["igNavHighlightActivated"][1]["ov_cimguiname"] = "igNavHighlightActivated" defs["igNavHighlightActivated"][1]["ret"] = "void" @@ -24896,7 +24938,7 @@ defs["igNavInitRequestApplyResult"][1]["call_args"] = "()" defs["igNavInitRequestApplyResult"][1]["cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["defaults"] = {} defs["igNavInitRequestApplyResult"][1]["funcname"] = "NavInitRequestApplyResult" -defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:3521" +defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:3530" defs["igNavInitRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavInitRequestApplyResult"][1]["ov_cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["ret"] = "void" @@ -24918,7 +24960,7 @@ defs["igNavInitWindow"][1]["call_args"] = "(window,force_reinit)" defs["igNavInitWindow"][1]["cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["defaults"] = {} defs["igNavInitWindow"][1]["funcname"] = "NavInitWindow" -defs["igNavInitWindow"][1]["location"] = "imgui_internal:3520" +defs["igNavInitWindow"][1]["location"] = "imgui_internal:3529" defs["igNavInitWindow"][1]["namespace"] = "ImGui" defs["igNavInitWindow"][1]["ov_cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["ret"] = "void" @@ -24934,7 +24976,7 @@ defs["igNavMoveRequestApplyResult"][1]["call_args"] = "()" defs["igNavMoveRequestApplyResult"][1]["cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["defaults"] = {} defs["igNavMoveRequestApplyResult"][1]["funcname"] = "NavMoveRequestApplyResult" -defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:3528" +defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:3537" defs["igNavMoveRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavMoveRequestApplyResult"][1]["ov_cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["ret"] = "void" @@ -24950,7 +24992,7 @@ defs["igNavMoveRequestButNoResultYet"][1]["call_args"] = "()" defs["igNavMoveRequestButNoResultYet"][1]["cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["defaults"] = {} defs["igNavMoveRequestButNoResultYet"][1]["funcname"] = "NavMoveRequestButNoResultYet" -defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:3522" +defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:3531" defs["igNavMoveRequestButNoResultYet"][1]["namespace"] = "ImGui" defs["igNavMoveRequestButNoResultYet"][1]["ov_cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["ret"] = "bool" @@ -24966,7 +25008,7 @@ defs["igNavMoveRequestCancel"][1]["call_args"] = "()" defs["igNavMoveRequestCancel"][1]["cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["defaults"] = {} defs["igNavMoveRequestCancel"][1]["funcname"] = "NavMoveRequestCancel" -defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:3527" +defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:3536" defs["igNavMoveRequestCancel"][1]["namespace"] = "ImGui" defs["igNavMoveRequestCancel"][1]["ov_cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["ret"] = "void" @@ -24994,7 +25036,7 @@ defs["igNavMoveRequestForward"][1]["call_args"] = "(move_dir,clip_dir,move_flags defs["igNavMoveRequestForward"][1]["cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["defaults"] = {} defs["igNavMoveRequestForward"][1]["funcname"] = "NavMoveRequestForward" -defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:3524" +defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:3533" defs["igNavMoveRequestForward"][1]["namespace"] = "ImGui" defs["igNavMoveRequestForward"][1]["ov_cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["ret"] = "void" @@ -25013,7 +25055,7 @@ defs["igNavMoveRequestResolveWithLastItem"][1]["call_args"] = "(result)" defs["igNavMoveRequestResolveWithLastItem"][1]["cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["defaults"] = {} defs["igNavMoveRequestResolveWithLastItem"][1]["funcname"] = "NavMoveRequestResolveWithLastItem" -defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3525" +defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3534" defs["igNavMoveRequestResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithLastItem"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["ret"] = "void" @@ -25035,7 +25077,7 @@ defs["igNavMoveRequestResolveWithPastTreeNode"][1]["call_args"] = "(result,tree_ defs["igNavMoveRequestResolveWithPastTreeNode"][1]["cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["defaults"] = {} defs["igNavMoveRequestResolveWithPastTreeNode"][1]["funcname"] = "NavMoveRequestResolveWithPastTreeNode" -defs["igNavMoveRequestResolveWithPastTreeNode"][1]["location"] = "imgui_internal:3526" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["location"] = "imgui_internal:3535" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ret"] = "void" @@ -25063,7 +25105,7 @@ defs["igNavMoveRequestSubmit"][1]["call_args"] = "(move_dir,clip_dir,move_flags, defs["igNavMoveRequestSubmit"][1]["cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["defaults"] = {} defs["igNavMoveRequestSubmit"][1]["funcname"] = "NavMoveRequestSubmit" -defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:3523" +defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:3532" defs["igNavMoveRequestSubmit"][1]["namespace"] = "ImGui" defs["igNavMoveRequestSubmit"][1]["ov_cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["ret"] = "void" @@ -25085,7 +25127,7 @@ defs["igNavMoveRequestTryWrapping"][1]["call_args"] = "(window,move_flags)" defs["igNavMoveRequestTryWrapping"][1]["cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["defaults"] = {} defs["igNavMoveRequestTryWrapping"][1]["funcname"] = "NavMoveRequestTryWrapping" -defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:3529" +defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:3538" defs["igNavMoveRequestTryWrapping"][1]["namespace"] = "ImGui" defs["igNavMoveRequestTryWrapping"][1]["ov_cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["ret"] = "void" @@ -25101,7 +25143,7 @@ defs["igNavRestoreHighlightAfterMove"][1]["call_args"] = "()" defs["igNavRestoreHighlightAfterMove"][1]["cimguiname"] = "igNavRestoreHighlightAfterMove" defs["igNavRestoreHighlightAfterMove"][1]["defaults"] = {} defs["igNavRestoreHighlightAfterMove"][1]["funcname"] = "NavRestoreHighlightAfterMove" -defs["igNavRestoreHighlightAfterMove"][1]["location"] = "imgui_internal:3532" +defs["igNavRestoreHighlightAfterMove"][1]["location"] = "imgui_internal:3541" defs["igNavRestoreHighlightAfterMove"][1]["namespace"] = "ImGui" defs["igNavRestoreHighlightAfterMove"][1]["ov_cimguiname"] = "igNavRestoreHighlightAfterMove" defs["igNavRestoreHighlightAfterMove"][1]["ret"] = "void" @@ -25117,7 +25159,7 @@ defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["call_args"] = "()" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["defaults"] = {} defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["funcname"] = "NavUpdateCurrentWindowIsScrollPushableX" -defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["location"] = "imgui_internal:3533" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["location"] = "imgui_internal:3542" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["namespace"] = "ImGui" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ov_cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ret"] = "void" @@ -25133,7 +25175,7 @@ defs["igNewFrame"][1]["call_args"] = "()" defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" -defs["igNewFrame"][1]["location"] = "imgui:335" +defs["igNewFrame"][1]["location"] = "imgui:337" defs["igNewFrame"][1]["namespace"] = "ImGui" defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" @@ -25149,7 +25191,7 @@ defs["igNewLine"][1]["call_args"] = "()" defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" -defs["igNewLine"][1]["location"] = "imgui:497" +defs["igNewLine"][1]["location"] = "imgui:501" defs["igNewLine"][1]["namespace"] = "ImGui" defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" @@ -25165,7 +25207,7 @@ defs["igNextColumn"][1]["call_args"] = "()" defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" -defs["igNextColumn"][1]["location"] = "imgui:851" +defs["igNextColumn"][1]["location"] = "imgui:855" defs["igNextColumn"][1]["namespace"] = "ImGui" defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" @@ -25188,7 +25230,7 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][1]["funcname"] = "OpenPopup" -defs["igOpenPopup"][1]["location"] = "imgui:771" +defs["igOpenPopup"][1]["location"] = "imgui:775" defs["igOpenPopup"][1]["namespace"] = "ImGui" defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup_Str" defs["igOpenPopup"][1]["ret"] = "void" @@ -25209,7 +25251,7 @@ defs["igOpenPopup"][2]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][2]["defaults"] = {} defs["igOpenPopup"][2]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][2]["funcname"] = "OpenPopup" -defs["igOpenPopup"][2]["location"] = "imgui:772" +defs["igOpenPopup"][2]["location"] = "imgui:776" defs["igOpenPopup"][2]["namespace"] = "ImGui" defs["igOpenPopup"][2]["ov_cimguiname"] = "igOpenPopup_ID" defs["igOpenPopup"][2]["ret"] = "void" @@ -25233,7 +25275,7 @@ defs["igOpenPopupEx"][1]["cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["defaults"] = {} defs["igOpenPopupEx"][1]["defaults"]["popup_flags"] = "ImGuiPopupFlags_None" defs["igOpenPopupEx"][1]["funcname"] = "OpenPopupEx" -defs["igOpenPopupEx"][1]["location"] = "imgui_internal:3493" +defs["igOpenPopupEx"][1]["location"] = "imgui_internal:3502" defs["igOpenPopupEx"][1]["namespace"] = "ImGui" defs["igOpenPopupEx"][1]["ov_cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["ret"] = "void" @@ -25257,7 +25299,7 @@ defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["popup_flags"] = "1" defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "NULL" defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" -defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:773" +defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:777" defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "void" @@ -25305,7 +25347,7 @@ defs["igPlotEx"][1]["call_args"] = "(plot_type,label,values_getter,data,values_c defs["igPlotEx"][1]["cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["defaults"] = {} defs["igPlotEx"][1]["funcname"] = "PlotEx" -defs["igPlotEx"][1]["location"] = "imgui_internal:3902" +defs["igPlotEx"][1]["location"] = "imgui_internal:3911" defs["igPlotEx"][1]["namespace"] = "ImGui" defs["igPlotEx"][1]["ov_cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["ret"] = "int" @@ -25354,7 +25396,7 @@ defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][1]["location"] = "imgui:708" +defs["igPlotHistogram"][1]["location"] = "imgui:712" defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogram_FloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" @@ -25402,7 +25444,7 @@ defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][2]["location"] = "imgui:709" +defs["igPlotHistogram"][2]["location"] = "imgui:713" defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogram_FnFloatPtr" defs["igPlotHistogram"][2]["ret"] = "void" @@ -25452,7 +25494,7 @@ defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" -defs["igPlotLines"][1]["location"] = "imgui:706" +defs["igPlotLines"][1]["location"] = "imgui:710" defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLines_FloatPtr" defs["igPlotLines"][1]["ret"] = "void" @@ -25500,7 +25542,7 @@ defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" -defs["igPlotLines"][2]["location"] = "imgui:707" +defs["igPlotLines"][2]["location"] = "imgui:711" defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLines_FnFloatPtr" defs["igPlotLines"][2]["ret"] = "void" @@ -25517,7 +25559,7 @@ defs["igPopClipRect"][1]["call_args"] = "()" defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" -defs["igPopClipRect"][1]["location"] = "imgui:922" +defs["igPopClipRect"][1]["location"] = "imgui:926" defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -25533,7 +25575,7 @@ defs["igPopColumnsBackground"][1]["call_args"] = "()" defs["igPopColumnsBackground"][1]["cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["defaults"] = {} defs["igPopColumnsBackground"][1]["funcname"] = "PopColumnsBackground" -defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:3727" +defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:3736" defs["igPopColumnsBackground"][1]["namespace"] = "ImGui" defs["igPopColumnsBackground"][1]["ov_cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["ret"] = "void" @@ -25549,7 +25591,7 @@ defs["igPopFocusScope"][1]["call_args"] = "()" defs["igPopFocusScope"][1]["cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["defaults"] = {} defs["igPopFocusScope"][1]["funcname"] = "PopFocusScope" -defs["igPopFocusScope"][1]["location"] = "imgui_internal:3693" +defs["igPopFocusScope"][1]["location"] = "imgui_internal:3702" defs["igPopFocusScope"][1]["namespace"] = "ImGui" defs["igPopFocusScope"][1]["ov_cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["ret"] = "void" @@ -25565,7 +25607,7 @@ defs["igPopFont"][1]["call_args"] = "()" defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" -defs["igPopFont"][1]["location"] = "imgui:445" +defs["igPopFont"][1]["location"] = "imgui:447" defs["igPopFont"][1]["namespace"] = "ImGui" defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" @@ -25581,7 +25623,7 @@ defs["igPopID"][1]["call_args"] = "()" defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" -defs["igPopID"][1]["location"] = "imgui:525" +defs["igPopID"][1]["location"] = "imgui:529" defs["igPopID"][1]["namespace"] = "ImGui" defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" @@ -25597,7 +25639,7 @@ defs["igPopItemFlag"][1]["call_args"] = "()" defs["igPopItemFlag"][1]["cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["defaults"] = {} defs["igPopItemFlag"][1]["funcname"] = "PopItemFlag" -defs["igPopItemFlag"][1]["location"] = "imgui:453" +defs["igPopItemFlag"][1]["location"] = "imgui:457" defs["igPopItemFlag"][1]["namespace"] = "ImGui" defs["igPopItemFlag"][1]["ov_cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["ret"] = "void" @@ -25613,7 +25655,7 @@ defs["igPopItemWidth"][1]["call_args"] = "()" defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" -defs["igPopItemWidth"][1]["location"] = "imgui:457" +defs["igPopItemWidth"][1]["location"] = "imgui:461" defs["igPopItemWidth"][1]["namespace"] = "ImGui" defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" @@ -25633,7 +25675,7 @@ defs["igPopStyleColor"][1]["cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" -defs["igPopStyleColor"][1]["location"] = "imgui:448" +defs["igPopStyleColor"][1]["location"] = "imgui:450" defs["igPopStyleColor"][1]["namespace"] = "ImGui" defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" @@ -25653,7 +25695,7 @@ defs["igPopStyleVar"][1]["cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" -defs["igPopStyleVar"][1]["location"] = "imgui:451" +defs["igPopStyleVar"][1]["location"] = "imgui:455" defs["igPopStyleVar"][1]["namespace"] = "ImGui" defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" @@ -25669,7 +25711,7 @@ defs["igPopTextWrapPos"][1]["call_args"] = "()" defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" -defs["igPopTextWrapPos"][1]["location"] = "imgui:461" +defs["igPopTextWrapPos"][1]["location"] = "imgui:465" defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" @@ -25696,7 +25738,7 @@ defs["igProgressBar"][1]["defaults"] = {} defs["igProgressBar"][1]["defaults"]["overlay"] = "NULL" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-FLT_MIN,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" -defs["igProgressBar"][1]["location"] = "imgui:559" +defs["igProgressBar"][1]["location"] = "imgui:563" defs["igProgressBar"][1]["namespace"] = "ImGui" defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" @@ -25721,7 +25763,7 @@ defs["igPushClipRect"][1]["call_args"] = "(clip_rect_min,clip_rect_max,intersect defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" -defs["igPushClipRect"][1]["location"] = "imgui:921" +defs["igPushClipRect"][1]["location"] = "imgui:925" defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -25740,7 +25782,7 @@ defs["igPushColumnClipRect"][1]["call_args"] = "(column_index)" defs["igPushColumnClipRect"][1]["cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["defaults"] = {} defs["igPushColumnClipRect"][1]["funcname"] = "PushColumnClipRect" -defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:3725" +defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:3734" defs["igPushColumnClipRect"][1]["namespace"] = "ImGui" defs["igPushColumnClipRect"][1]["ov_cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["ret"] = "void" @@ -25756,7 +25798,7 @@ defs["igPushColumnsBackground"][1]["call_args"] = "()" defs["igPushColumnsBackground"][1]["cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["defaults"] = {} defs["igPushColumnsBackground"][1]["funcname"] = "PushColumnsBackground" -defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:3726" +defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:3735" defs["igPushColumnsBackground"][1]["namespace"] = "ImGui" defs["igPushColumnsBackground"][1]["ov_cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["ret"] = "void" @@ -25775,7 +25817,7 @@ defs["igPushFocusScope"][1]["call_args"] = "(id)" defs["igPushFocusScope"][1]["cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["defaults"] = {} defs["igPushFocusScope"][1]["funcname"] = "PushFocusScope" -defs["igPushFocusScope"][1]["location"] = "imgui_internal:3692" +defs["igPushFocusScope"][1]["location"] = "imgui_internal:3701" defs["igPushFocusScope"][1]["namespace"] = "ImGui" defs["igPushFocusScope"][1]["ov_cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["ret"] = "void" @@ -25794,7 +25836,7 @@ defs["igPushFont"][1]["call_args"] = "(font)" defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" -defs["igPushFont"][1]["location"] = "imgui:444" +defs["igPushFont"][1]["location"] = "imgui:446" defs["igPushFont"][1]["namespace"] = "ImGui" defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" @@ -25813,7 +25855,7 @@ defs["igPushID"][1]["call_args"] = "(str_id)" defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" -defs["igPushID"][1]["location"] = "imgui:521" +defs["igPushID"][1]["location"] = "imgui:525" defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushID_Str" defs["igPushID"][1]["ret"] = "void" @@ -25833,7 +25875,7 @@ defs["igPushID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" -defs["igPushID"][2]["location"] = "imgui:522" +defs["igPushID"][2]["location"] = "imgui:526" defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushID_StrStr" defs["igPushID"][2]["ret"] = "void" @@ -25850,7 +25892,7 @@ defs["igPushID"][3]["call_args"] = "(ptr_id)" defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" -defs["igPushID"][3]["location"] = "imgui:523" +defs["igPushID"][3]["location"] = "imgui:527" defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushID_Ptr" defs["igPushID"][3]["ret"] = "void" @@ -25867,7 +25909,7 @@ defs["igPushID"][4]["call_args"] = "(int_id)" defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" -defs["igPushID"][4]["location"] = "imgui:524" +defs["igPushID"][4]["location"] = "imgui:528" defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushID_Int" defs["igPushID"][4]["ret"] = "void" @@ -25892,7 +25934,7 @@ defs["igPushItemFlag"][1]["call_args"] = "(option,enabled)" defs["igPushItemFlag"][1]["cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["defaults"] = {} defs["igPushItemFlag"][1]["funcname"] = "PushItemFlag" -defs["igPushItemFlag"][1]["location"] = "imgui:452" +defs["igPushItemFlag"][1]["location"] = "imgui:456" defs["igPushItemFlag"][1]["namespace"] = "ImGui" defs["igPushItemFlag"][1]["ov_cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["ret"] = "void" @@ -25911,7 +25953,7 @@ defs["igPushItemWidth"][1]["call_args"] = "(item_width)" defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" -defs["igPushItemWidth"][1]["location"] = "imgui:456" +defs["igPushItemWidth"][1]["location"] = "imgui:460" defs["igPushItemWidth"][1]["namespace"] = "ImGui" defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" @@ -25933,7 +25975,7 @@ defs["igPushMultiItemsWidths"][1]["call_args"] = "(components,width_full)" defs["igPushMultiItemsWidths"][1]["cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["defaults"] = {} defs["igPushMultiItemsWidths"][1]["funcname"] = "PushMultiItemsWidths" -defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:3474" +defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:3483" defs["igPushMultiItemsWidths"][1]["namespace"] = "ImGui" defs["igPushMultiItemsWidths"][1]["ov_cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["ret"] = "void" @@ -25952,7 +25994,7 @@ defs["igPushOverrideID"][1]["call_args"] = "(id)" defs["igPushOverrideID"][1]["cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["defaults"] = {} defs["igPushOverrideID"][1]["funcname"] = "PushOverrideID" -defs["igPushOverrideID"][1]["location"] = "imgui_internal:3460" +defs["igPushOverrideID"][1]["location"] = "imgui_internal:3469" defs["igPushOverrideID"][1]["namespace"] = "ImGui" defs["igPushOverrideID"][1]["ov_cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["ret"] = "void" @@ -25974,7 +26016,7 @@ defs["igPushStyleColor"][1]["call_args"] = "(idx,col)" defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][1]["location"] = "imgui:446" +defs["igPushStyleColor"][1]["location"] = "imgui:448" defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColor_U32" defs["igPushStyleColor"][1]["ret"] = "void" @@ -25994,7 +26036,7 @@ defs["igPushStyleColor"][2]["call_args"] = "(idx,col)" defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][2]["location"] = "imgui:447" +defs["igPushStyleColor"][2]["location"] = "imgui:449" defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColor_Vec4" defs["igPushStyleColor"][2]["ret"] = "void" @@ -26017,7 +26059,7 @@ defs["igPushStyleVar"][1]["call_args"] = "(idx,val)" defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][1]["location"] = "imgui:449" +defs["igPushStyleVar"][1]["location"] = "imgui:451" defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVar_Float" defs["igPushStyleVar"][1]["ret"] = "void" @@ -26037,7 +26079,7 @@ defs["igPushStyleVar"][2]["call_args"] = "(idx,val)" defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][2]["location"] = "imgui:450" +defs["igPushStyleVar"][2]["location"] = "imgui:452" defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVar_Vec2" defs["igPushStyleVar"][2]["ret"] = "void" @@ -26045,6 +26087,50 @@ defs["igPushStyleVar"][2]["signature"] = "(ImGuiStyleVar,const ImVec2)" defs["igPushStyleVar"][2]["stname"] = "" defs["igPushStyleVar"]["(ImGuiStyleVar,const ImVec2)"] = defs["igPushStyleVar"][2] defs["igPushStyleVar"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVar"][1] +defs["igPushStyleVarX"] = {} +defs["igPushStyleVarX"][1] = {} +defs["igPushStyleVarX"][1]["args"] = "(ImGuiStyleVar idx,float val_x)" +defs["igPushStyleVarX"][1]["argsT"] = {} +defs["igPushStyleVarX"][1]["argsT"][1] = {} +defs["igPushStyleVarX"][1]["argsT"][1]["name"] = "idx" +defs["igPushStyleVarX"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igPushStyleVarX"][1]["argsT"][2] = {} +defs["igPushStyleVarX"][1]["argsT"][2]["name"] = "val_x" +defs["igPushStyleVarX"][1]["argsT"][2]["type"] = "float" +defs["igPushStyleVarX"][1]["argsoriginal"] = "(ImGuiStyleVar idx,float val_x)" +defs["igPushStyleVarX"][1]["call_args"] = "(idx,val_x)" +defs["igPushStyleVarX"][1]["cimguiname"] = "igPushStyleVarX" +defs["igPushStyleVarX"][1]["defaults"] = {} +defs["igPushStyleVarX"][1]["funcname"] = "PushStyleVarX" +defs["igPushStyleVarX"][1]["location"] = "imgui:453" +defs["igPushStyleVarX"][1]["namespace"] = "ImGui" +defs["igPushStyleVarX"][1]["ov_cimguiname"] = "igPushStyleVarX" +defs["igPushStyleVarX"][1]["ret"] = "void" +defs["igPushStyleVarX"][1]["signature"] = "(ImGuiStyleVar,float)" +defs["igPushStyleVarX"][1]["stname"] = "" +defs["igPushStyleVarX"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVarX"][1] +defs["igPushStyleVarY"] = {} +defs["igPushStyleVarY"][1] = {} +defs["igPushStyleVarY"][1]["args"] = "(ImGuiStyleVar idx,float val_y)" +defs["igPushStyleVarY"][1]["argsT"] = {} +defs["igPushStyleVarY"][1]["argsT"][1] = {} +defs["igPushStyleVarY"][1]["argsT"][1]["name"] = "idx" +defs["igPushStyleVarY"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igPushStyleVarY"][1]["argsT"][2] = {} +defs["igPushStyleVarY"][1]["argsT"][2]["name"] = "val_y" +defs["igPushStyleVarY"][1]["argsT"][2]["type"] = "float" +defs["igPushStyleVarY"][1]["argsoriginal"] = "(ImGuiStyleVar idx,float val_y)" +defs["igPushStyleVarY"][1]["call_args"] = "(idx,val_y)" +defs["igPushStyleVarY"][1]["cimguiname"] = "igPushStyleVarY" +defs["igPushStyleVarY"][1]["defaults"] = {} +defs["igPushStyleVarY"][1]["funcname"] = "PushStyleVarY" +defs["igPushStyleVarY"][1]["location"] = "imgui:454" +defs["igPushStyleVarY"][1]["namespace"] = "ImGui" +defs["igPushStyleVarY"][1]["ov_cimguiname"] = "igPushStyleVarY" +defs["igPushStyleVarY"][1]["ret"] = "void" +defs["igPushStyleVarY"][1]["signature"] = "(ImGuiStyleVar,float)" +defs["igPushStyleVarY"][1]["stname"] = "" +defs["igPushStyleVarY"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVarY"][1] defs["igPushTextWrapPos"] = {} defs["igPushTextWrapPos"][1] = {} defs["igPushTextWrapPos"][1]["args"] = "(float wrap_local_pos_x)" @@ -26058,7 +26144,7 @@ defs["igPushTextWrapPos"][1]["cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" -defs["igPushTextWrapPos"][1]["location"] = "imgui:460" +defs["igPushTextWrapPos"][1]["location"] = "imgui:464" defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" @@ -26080,7 +26166,7 @@ defs["igRadioButton"][1]["call_args"] = "(label,active)" defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" -defs["igRadioButton"][1]["location"] = "imgui:557" +defs["igRadioButton"][1]["location"] = "imgui:561" defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButton_Bool" defs["igRadioButton"][1]["ret"] = "bool" @@ -26103,7 +26189,7 @@ defs["igRadioButton"][2]["call_args"] = "(label,v,v_button)" defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" -defs["igRadioButton"][2]["location"] = "imgui:558" +defs["igRadioButton"][2]["location"] = "imgui:562" defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButton_IntPtr" defs["igRadioButton"][2]["ret"] = "bool" @@ -26126,7 +26212,7 @@ defs["igRemoveContextHook"][1]["call_args"] = "(context,hook_to_remove)" defs["igRemoveContextHook"][1]["cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["defaults"] = {} defs["igRemoveContextHook"][1]["funcname"] = "RemoveContextHook" -defs["igRemoveContextHook"][1]["location"] = "imgui_internal:3404" +defs["igRemoveContextHook"][1]["location"] = "imgui_internal:3413" defs["igRemoveContextHook"][1]["namespace"] = "ImGui" defs["igRemoveContextHook"][1]["ov_cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["ret"] = "void" @@ -26145,7 +26231,7 @@ defs["igRemoveSettingsHandler"][1]["call_args"] = "(type_name)" defs["igRemoveSettingsHandler"][1]["cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["defaults"] = {} defs["igRemoveSettingsHandler"][1]["funcname"] = "RemoveSettingsHandler" -defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:3421" +defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:3430" defs["igRemoveSettingsHandler"][1]["namespace"] = "ImGui" defs["igRemoveSettingsHandler"][1]["ov_cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["ret"] = "void" @@ -26161,7 +26247,7 @@ defs["igRender"][1]["call_args"] = "()" defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" -defs["igRender"][1]["location"] = "imgui:337" +defs["igRender"][1]["location"] = "imgui:339" defs["igRender"][1]["namespace"] = "ImGui" defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" @@ -26193,7 +26279,7 @@ defs["igRenderArrow"][1]["cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["defaults"] = {} defs["igRenderArrow"][1]["defaults"]["scale"] = "1.0f" defs["igRenderArrow"][1]["funcname"] = "RenderArrow" -defs["igRenderArrow"][1]["location"] = "imgui_internal:3827" +defs["igRenderArrow"][1]["location"] = "imgui_internal:3836" defs["igRenderArrow"][1]["namespace"] = "ImGui" defs["igRenderArrow"][1]["ov_cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["ret"] = "void" @@ -26221,7 +26307,7 @@ defs["igRenderArrowDockMenu"][1]["call_args"] = "(draw_list,p_min,sz,col)" defs["igRenderArrowDockMenu"][1]["cimguiname"] = "igRenderArrowDockMenu" defs["igRenderArrowDockMenu"][1]["defaults"] = {} defs["igRenderArrowDockMenu"][1]["funcname"] = "RenderArrowDockMenu" -defs["igRenderArrowDockMenu"][1]["location"] = "imgui_internal:3831" +defs["igRenderArrowDockMenu"][1]["location"] = "imgui_internal:3840" defs["igRenderArrowDockMenu"][1]["namespace"] = "ImGui" defs["igRenderArrowDockMenu"][1]["ov_cimguiname"] = "igRenderArrowDockMenu" defs["igRenderArrowDockMenu"][1]["ret"] = "void" @@ -26252,7 +26338,7 @@ defs["igRenderArrowPointingAt"][1]["call_args"] = "(draw_list,pos,half_sz,direct defs["igRenderArrowPointingAt"][1]["cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["defaults"] = {} defs["igRenderArrowPointingAt"][1]["funcname"] = "RenderArrowPointingAt" -defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:3830" +defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:3839" defs["igRenderArrowPointingAt"][1]["namespace"] = "ImGui" defs["igRenderArrowPointingAt"][1]["ov_cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["ret"] = "void" @@ -26277,7 +26363,7 @@ defs["igRenderBullet"][1]["call_args"] = "(draw_list,pos,col)" defs["igRenderBullet"][1]["cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["defaults"] = {} defs["igRenderBullet"][1]["funcname"] = "RenderBullet" -defs["igRenderBullet"][1]["location"] = "imgui_internal:3828" +defs["igRenderBullet"][1]["location"] = "imgui_internal:3837" defs["igRenderBullet"][1]["namespace"] = "ImGui" defs["igRenderBullet"][1]["ov_cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["ret"] = "void" @@ -26305,7 +26391,7 @@ defs["igRenderCheckMark"][1]["call_args"] = "(draw_list,pos,col,sz)" defs["igRenderCheckMark"][1]["cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["defaults"] = {} defs["igRenderCheckMark"][1]["funcname"] = "RenderCheckMark" -defs["igRenderCheckMark"][1]["location"] = "imgui_internal:3829" +defs["igRenderCheckMark"][1]["location"] = "imgui_internal:3838" defs["igRenderCheckMark"][1]["namespace"] = "ImGui" defs["igRenderCheckMark"][1]["ov_cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["ret"] = "void" @@ -26347,7 +26433,7 @@ defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"] = {} defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["flags"] = "0" defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderColorRectWithAlphaCheckerboard"][1]["funcname"] = "RenderColorRectWithAlphaCheckerboard" -defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3821" +defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3830" defs["igRenderColorRectWithAlphaCheckerboard"][1]["namespace"] = "ImGui" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ov_cimguiname"] = "igRenderColorRectWithAlphaCheckerboard" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ret"] = "void" @@ -26369,7 +26455,7 @@ defs["igRenderDragDropTargetRect"][1]["call_args"] = "(bb,item_clip_rect)" defs["igRenderDragDropTargetRect"][1]["cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["defaults"] = {} defs["igRenderDragDropTargetRect"][1]["funcname"] = "RenderDragDropTargetRect" -defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3701" +defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3710" defs["igRenderDragDropTargetRect"][1]["namespace"] = "ImGui" defs["igRenderDragDropTargetRect"][1]["ov_cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["ret"] = "void" @@ -26378,7 +26464,7 @@ defs["igRenderDragDropTargetRect"][1]["stname"] = "" defs["igRenderDragDropTargetRect"]["(const ImRect,const ImRect)"] = defs["igRenderDragDropTargetRect"][1] defs["igRenderFrame"] = {} defs["igRenderFrame"][1] = {} -defs["igRenderFrame"][1]["args"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding)" +defs["igRenderFrame"][1]["args"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding)" defs["igRenderFrame"][1]["argsT"] = {} defs["igRenderFrame"][1]["argsT"][1] = {} defs["igRenderFrame"][1]["argsT"][1]["name"] = "p_min" @@ -26390,19 +26476,19 @@ defs["igRenderFrame"][1]["argsT"][3] = {} defs["igRenderFrame"][1]["argsT"][3]["name"] = "fill_col" defs["igRenderFrame"][1]["argsT"][3]["type"] = "ImU32" defs["igRenderFrame"][1]["argsT"][4] = {} -defs["igRenderFrame"][1]["argsT"][4]["name"] = "border" +defs["igRenderFrame"][1]["argsT"][4]["name"] = "borders" defs["igRenderFrame"][1]["argsT"][4]["type"] = "bool" defs["igRenderFrame"][1]["argsT"][5] = {} defs["igRenderFrame"][1]["argsT"][5]["name"] = "rounding" defs["igRenderFrame"][1]["argsT"][5]["type"] = "float" -defs["igRenderFrame"][1]["argsoriginal"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border=true,float rounding=0.0f)" -defs["igRenderFrame"][1]["call_args"] = "(p_min,p_max,fill_col,border,rounding)" +defs["igRenderFrame"][1]["argsoriginal"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders=true,float rounding=0.0f)" +defs["igRenderFrame"][1]["call_args"] = "(p_min,p_max,fill_col,borders,rounding)" defs["igRenderFrame"][1]["cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["defaults"] = {} -defs["igRenderFrame"][1]["defaults"]["border"] = "true" +defs["igRenderFrame"][1]["defaults"]["borders"] = "true" defs["igRenderFrame"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrame"][1]["funcname"] = "RenderFrame" -defs["igRenderFrame"][1]["location"] = "imgui_internal:3819" +defs["igRenderFrame"][1]["location"] = "imgui_internal:3828" defs["igRenderFrame"][1]["namespace"] = "ImGui" defs["igRenderFrame"][1]["ov_cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["ret"] = "void" @@ -26428,7 +26514,7 @@ defs["igRenderFrameBorder"][1]["cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["defaults"] = {} defs["igRenderFrameBorder"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrameBorder"][1]["funcname"] = "RenderFrameBorder" -defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:3820" +defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:3829" defs["igRenderFrameBorder"][1]["namespace"] = "ImGui" defs["igRenderFrameBorder"][1]["ov_cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["ret"] = "void" @@ -26462,7 +26548,7 @@ defs["igRenderMouseCursor"][1]["call_args"] = "(pos,scale,mouse_cursor,col_fill, defs["igRenderMouseCursor"][1]["cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["defaults"] = {} defs["igRenderMouseCursor"][1]["funcname"] = "RenderMouseCursor" -defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3824" +defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3833" defs["igRenderMouseCursor"][1]["namespace"] = "ImGui" defs["igRenderMouseCursor"][1]["ov_cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["ret"] = "void" @@ -26488,7 +26574,7 @@ defs["igRenderNavHighlight"][1]["cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["defaults"] = {} defs["igRenderNavHighlight"][1]["defaults"]["flags"] = "ImGuiNavHighlightFlags_None" defs["igRenderNavHighlight"][1]["funcname"] = "RenderNavHighlight" -defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:3822" +defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:3831" defs["igRenderNavHighlight"][1]["namespace"] = "ImGui" defs["igRenderNavHighlight"][1]["ov_cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["ret"] = "void" @@ -26512,7 +26598,7 @@ defs["igRenderPlatformWindowsDefault"][1]["defaults"] = {} defs["igRenderPlatformWindowsDefault"][1]["defaults"]["platform_render_arg"] = "NULL" defs["igRenderPlatformWindowsDefault"][1]["defaults"]["renderer_render_arg"] = "NULL" defs["igRenderPlatformWindowsDefault"][1]["funcname"] = "RenderPlatformWindowsDefault" -defs["igRenderPlatformWindowsDefault"][1]["location"] = "imgui:1081" +defs["igRenderPlatformWindowsDefault"][1]["location"] = "imgui:1084" defs["igRenderPlatformWindowsDefault"][1]["namespace"] = "ImGui" defs["igRenderPlatformWindowsDefault"][1]["ov_cimguiname"] = "igRenderPlatformWindowsDefault" defs["igRenderPlatformWindowsDefault"][1]["ret"] = "void" @@ -26546,7 +26632,7 @@ defs["igRenderRectFilledRangeH"][1]["call_args"] = "(draw_list,rect,col,x_start_ defs["igRenderRectFilledRangeH"][1]["cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["defaults"] = {} defs["igRenderRectFilledRangeH"][1]["funcname"] = "RenderRectFilledRangeH" -defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:3832" +defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:3841" defs["igRenderRectFilledRangeH"][1]["namespace"] = "ImGui" defs["igRenderRectFilledRangeH"][1]["ov_cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["ret"] = "void" @@ -26577,7 +26663,7 @@ defs["igRenderRectFilledWithHole"][1]["call_args"] = "(draw_list,outer,inner,col defs["igRenderRectFilledWithHole"][1]["cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["defaults"] = {} defs["igRenderRectFilledWithHole"][1]["funcname"] = "RenderRectFilledWithHole" -defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:3833" +defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:3842" defs["igRenderRectFilledWithHole"][1]["namespace"] = "ImGui" defs["igRenderRectFilledWithHole"][1]["ov_cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["ret"] = "void" @@ -26607,7 +26693,7 @@ defs["igRenderText"][1]["defaults"] = {} defs["igRenderText"][1]["defaults"]["hide_text_after_hash"] = "true" defs["igRenderText"][1]["defaults"]["text_end"] = "NULL" defs["igRenderText"][1]["funcname"] = "RenderText" -defs["igRenderText"][1]["location"] = "imgui_internal:3814" +defs["igRenderText"][1]["location"] = "imgui_internal:3823" defs["igRenderText"][1]["namespace"] = "ImGui" defs["igRenderText"][1]["ov_cimguiname"] = "igRenderText" defs["igRenderText"][1]["ret"] = "void" @@ -26646,7 +26732,7 @@ defs["igRenderTextClipped"][1]["defaults"] = {} defs["igRenderTextClipped"][1]["defaults"]["align"] = "ImVec2(0,0)" defs["igRenderTextClipped"][1]["defaults"]["clip_rect"] = "NULL" defs["igRenderTextClipped"][1]["funcname"] = "RenderTextClipped" -defs["igRenderTextClipped"][1]["location"] = "imgui_internal:3816" +defs["igRenderTextClipped"][1]["location"] = "imgui_internal:3825" defs["igRenderTextClipped"][1]["namespace"] = "ImGui" defs["igRenderTextClipped"][1]["ov_cimguiname"] = "igRenderTextClipped" defs["igRenderTextClipped"][1]["ret"] = "void" @@ -26688,7 +26774,7 @@ defs["igRenderTextClippedEx"][1]["defaults"] = {} defs["igRenderTextClippedEx"][1]["defaults"]["align"] = "ImVec2(0,0)" defs["igRenderTextClippedEx"][1]["defaults"]["clip_rect"] = "NULL" defs["igRenderTextClippedEx"][1]["funcname"] = "RenderTextClippedEx" -defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:3817" +defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:3826" defs["igRenderTextClippedEx"][1]["namespace"] = "ImGui" defs["igRenderTextClippedEx"][1]["ov_cimguiname"] = "igRenderTextClippedEx" defs["igRenderTextClippedEx"][1]["ret"] = "void" @@ -26728,7 +26814,7 @@ defs["igRenderTextEllipsis"][1]["call_args"] = "(draw_list,pos_min,pos_max,clip_ defs["igRenderTextEllipsis"][1]["cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["defaults"] = {} defs["igRenderTextEllipsis"][1]["funcname"] = "RenderTextEllipsis" -defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:3818" +defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:3827" defs["igRenderTextEllipsis"][1]["namespace"] = "ImGui" defs["igRenderTextEllipsis"][1]["ov_cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["ret"] = "void" @@ -26756,7 +26842,7 @@ defs["igRenderTextWrapped"][1]["call_args"] = "(pos,text,text_end,wrap_width)" defs["igRenderTextWrapped"][1]["cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["defaults"] = {} defs["igRenderTextWrapped"][1]["funcname"] = "RenderTextWrapped" -defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:3815" +defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:3824" defs["igRenderTextWrapped"][1]["namespace"] = "ImGui" defs["igRenderTextWrapped"][1]["ov_cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["ret"] = "void" @@ -26776,7 +26862,7 @@ defs["igResetMouseDragDelta"][1]["cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" -defs["igResetMouseDragDelta"][1]["location"] = "imgui:1037" +defs["igResetMouseDragDelta"][1]["location"] = "imgui:1041" defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -26800,7 +26886,7 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["offset_from_start_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" -defs["igSameLine"][1]["location"] = "imgui:496" +defs["igSameLine"][1]["location"] = "imgui:500" defs["igSameLine"][1]["namespace"] = "ImGui" defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" @@ -26819,7 +26905,7 @@ defs["igSaveIniSettingsToDisk"][1]["call_args"] = "(ini_filename)" defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" -defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:1053" +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:1057" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -26839,7 +26925,7 @@ defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "NULL" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" -defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:1054" +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:1058" defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" @@ -26861,7 +26947,7 @@ defs["igScaleWindowsInViewport"][1]["call_args"] = "(viewport,scale)" defs["igScaleWindowsInViewport"][1]["cimguiname"] = "igScaleWindowsInViewport" defs["igScaleWindowsInViewport"][1]["defaults"] = {} defs["igScaleWindowsInViewport"][1]["funcname"] = "ScaleWindowsInViewport" -defs["igScaleWindowsInViewport"][1]["location"] = "imgui_internal:3409" +defs["igScaleWindowsInViewport"][1]["location"] = "imgui_internal:3418" defs["igScaleWindowsInViewport"][1]["namespace"] = "ImGui" defs["igScaleWindowsInViewport"][1]["ov_cimguiname"] = "igScaleWindowsInViewport" defs["igScaleWindowsInViewport"][1]["ret"] = "void" @@ -26883,7 +26969,7 @@ defs["igScrollToBringRectIntoView"][1]["call_args"] = "(window,rect)" defs["igScrollToBringRectIntoView"][1]["cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["defaults"] = {} defs["igScrollToBringRectIntoView"][1]["funcname"] = "ScrollToBringRectIntoView" -defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:3445" +defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:3454" defs["igScrollToBringRectIntoView"][1]["namespace"] = "ImGui" defs["igScrollToBringRectIntoView"][1]["ov_cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["ret"] = "void" @@ -26903,7 +26989,7 @@ defs["igScrollToItem"][1]["cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["defaults"] = {} defs["igScrollToItem"][1]["defaults"]["flags"] = "0" defs["igScrollToItem"][1]["funcname"] = "ScrollToItem" -defs["igScrollToItem"][1]["location"] = "imgui_internal:3441" +defs["igScrollToItem"][1]["location"] = "imgui_internal:3450" defs["igScrollToItem"][1]["namespace"] = "ImGui" defs["igScrollToItem"][1]["ov_cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["ret"] = "void" @@ -26929,7 +27015,7 @@ defs["igScrollToRect"][1]["cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["defaults"] = {} defs["igScrollToRect"][1]["defaults"]["flags"] = "0" defs["igScrollToRect"][1]["funcname"] = "ScrollToRect" -defs["igScrollToRect"][1]["location"] = "imgui_internal:3442" +defs["igScrollToRect"][1]["location"] = "imgui_internal:3451" defs["igScrollToRect"][1]["namespace"] = "ImGui" defs["igScrollToRect"][1]["ov_cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["ret"] = "void" @@ -26958,7 +27044,7 @@ defs["igScrollToRectEx"][1]["cimguiname"] = "igScrollToRectEx" defs["igScrollToRectEx"][1]["defaults"] = {} defs["igScrollToRectEx"][1]["defaults"]["flags"] = "0" defs["igScrollToRectEx"][1]["funcname"] = "ScrollToRectEx" -defs["igScrollToRectEx"][1]["location"] = "imgui_internal:3443" +defs["igScrollToRectEx"][1]["location"] = "imgui_internal:3452" defs["igScrollToRectEx"][1]["namespace"] = "ImGui" defs["igScrollToRectEx"][1]["nonUDT"] = 1 defs["igScrollToRectEx"][1]["ov_cimguiname"] = "igScrollToRectEx" @@ -26978,7 +27064,7 @@ defs["igScrollbar"][1]["call_args"] = "(axis)" defs["igScrollbar"][1]["cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["defaults"] = {} defs["igScrollbar"][1]["funcname"] = "Scrollbar" -defs["igScrollbar"][1]["location"] = "imgui_internal:3849" +defs["igScrollbar"][1]["location"] = "imgui_internal:3858" defs["igScrollbar"][1]["namespace"] = "ImGui" defs["igScrollbar"][1]["ov_cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["ret"] = "void" @@ -27015,7 +27101,7 @@ defs["igScrollbarEx"][1]["call_args"] = "(bb,id,axis,p_scroll_v,avail_v,contents defs["igScrollbarEx"][1]["cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["defaults"] = {} defs["igScrollbarEx"][1]["funcname"] = "ScrollbarEx" -defs["igScrollbarEx"][1]["location"] = "imgui_internal:3850" +defs["igScrollbarEx"][1]["location"] = "imgui_internal:3859" defs["igScrollbarEx"][1]["namespace"] = "ImGui" defs["igScrollbarEx"][1]["ov_cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["ret"] = "bool" @@ -27046,7 +27132,7 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" -defs["igSelectable"][1]["location"] = "imgui:678" +defs["igSelectable"][1]["location"] = "imgui:682" defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectable_Bool" defs["igSelectable"][1]["ret"] = "bool" @@ -27074,7 +27160,7 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" -defs["igSelectable"][2]["location"] = "imgui:679" +defs["igSelectable"][2]["location"] = "imgui:683" defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectable_BoolPtr" defs["igSelectable"][2]["ret"] = "bool" @@ -27091,7 +27177,7 @@ defs["igSeparator"][1]["call_args"] = "()" defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" -defs["igSeparator"][1]["location"] = "imgui:495" +defs["igSeparator"][1]["location"] = "imgui:499" defs["igSeparator"][1]["namespace"] = "ImGui" defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" @@ -27114,7 +27200,7 @@ defs["igSeparatorEx"][1]["cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["defaults"] = {} defs["igSeparatorEx"][1]["defaults"]["thickness"] = "1.0f" defs["igSeparatorEx"][1]["funcname"] = "SeparatorEx" -defs["igSeparatorEx"][1]["location"] = "imgui_internal:3841" +defs["igSeparatorEx"][1]["location"] = "imgui_internal:3850" defs["igSeparatorEx"][1]["namespace"] = "ImGui" defs["igSeparatorEx"][1]["ov_cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["ret"] = "void" @@ -27133,7 +27219,7 @@ defs["igSeparatorText"][1]["call_args"] = "(label)" defs["igSeparatorText"][1]["cimguiname"] = "igSeparatorText" defs["igSeparatorText"][1]["defaults"] = {} defs["igSeparatorText"][1]["funcname"] = "SeparatorText" -defs["igSeparatorText"][1]["location"] = "imgui:545" +defs["igSeparatorText"][1]["location"] = "imgui:549" defs["igSeparatorText"][1]["namespace"] = "ImGui" defs["igSeparatorText"][1]["ov_cimguiname"] = "igSeparatorText" defs["igSeparatorText"][1]["ret"] = "void" @@ -27161,7 +27247,7 @@ defs["igSeparatorTextEx"][1]["call_args"] = "(id,label,label_end,extra_width)" defs["igSeparatorTextEx"][1]["cimguiname"] = "igSeparatorTextEx" defs["igSeparatorTextEx"][1]["defaults"] = {} defs["igSeparatorTextEx"][1]["funcname"] = "SeparatorTextEx" -defs["igSeparatorTextEx"][1]["location"] = "imgui_internal:3842" +defs["igSeparatorTextEx"][1]["location"] = "imgui_internal:3851" defs["igSeparatorTextEx"][1]["namespace"] = "ImGui" defs["igSeparatorTextEx"][1]["ov_cimguiname"] = "igSeparatorTextEx" defs["igSeparatorTextEx"][1]["ret"] = "void" @@ -27183,7 +27269,7 @@ defs["igSetActiveID"][1]["call_args"] = "(id,window)" defs["igSetActiveID"][1]["cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["defaults"] = {} defs["igSetActiveID"][1]["funcname"] = "SetActiveID" -defs["igSetActiveID"][1]["location"] = "imgui_internal:3453" +defs["igSetActiveID"][1]["location"] = "imgui_internal:3462" defs["igSetActiveID"][1]["namespace"] = "ImGui" defs["igSetActiveID"][1]["ov_cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["ret"] = "void" @@ -27199,7 +27285,7 @@ defs["igSetActiveIdUsingAllKeyboardKeys"][1]["call_args"] = "()" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["defaults"] = {} defs["igSetActiveIdUsingAllKeyboardKeys"][1]["funcname"] = "SetActiveIdUsingAllKeyboardKeys" -defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3574" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3583" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["namespace"] = "ImGui" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ov_cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ret"] = "void" @@ -27225,7 +27311,7 @@ defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["defaults"] = {} defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "NULL" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" -defs["igSetAllocatorFunctions"][1]["location"] = "imgui:1071" +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:1075" defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -27244,7 +27330,7 @@ defs["igSetClipboardText"][1]["call_args"] = "(text)" defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" -defs["igSetClipboardText"][1]["location"] = "imgui:1045" +defs["igSetClipboardText"][1]["location"] = "imgui:1049" defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -27263,7 +27349,7 @@ defs["igSetColorEditOptions"][1]["call_args"] = "(flags)" defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" -defs["igSetColorEditOptions"][1]["location"] = "imgui:652" +defs["igSetColorEditOptions"][1]["location"] = "imgui:656" defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" @@ -27285,7 +27371,7 @@ defs["igSetColumnOffset"][1]["call_args"] = "(column_index,offset_x)" defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" -defs["igSetColumnOffset"][1]["location"] = "imgui:856" +defs["igSetColumnOffset"][1]["location"] = "imgui:860" defs["igSetColumnOffset"][1]["namespace"] = "ImGui" defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" @@ -27307,7 +27393,7 @@ defs["igSetColumnWidth"][1]["call_args"] = "(column_index,width)" defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" -defs["igSetColumnWidth"][1]["location"] = "imgui:854" +defs["igSetColumnWidth"][1]["location"] = "imgui:858" defs["igSetColumnWidth"][1]["namespace"] = "ImGui" defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" @@ -27326,7 +27412,7 @@ defs["igSetCurrentContext"][1]["call_args"] = "(ctx)" defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" -defs["igSetCurrentContext"][1]["location"] = "imgui:330" +defs["igSetCurrentContext"][1]["location"] = "imgui:331" defs["igSetCurrentContext"][1]["namespace"] = "ImGui" defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" @@ -27345,7 +27431,7 @@ defs["igSetCurrentFont"][1]["call_args"] = "(font)" defs["igSetCurrentFont"][1]["cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["defaults"] = {} defs["igSetCurrentFont"][1]["funcname"] = "SetCurrentFont" -defs["igSetCurrentFont"][1]["location"] = "imgui_internal:3384" +defs["igSetCurrentFont"][1]["location"] = "imgui_internal:3393" defs["igSetCurrentFont"][1]["namespace"] = "ImGui" defs["igSetCurrentFont"][1]["ov_cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["ret"] = "void" @@ -27367,7 +27453,7 @@ defs["igSetCurrentViewport"][1]["call_args"] = "(window,viewport)" defs["igSetCurrentViewport"][1]["cimguiname"] = "igSetCurrentViewport" defs["igSetCurrentViewport"][1]["defaults"] = {} defs["igSetCurrentViewport"][1]["funcname"] = "SetCurrentViewport" -defs["igSetCurrentViewport"][1]["location"] = "imgui_internal:3412" +defs["igSetCurrentViewport"][1]["location"] = "imgui_internal:3421" defs["igSetCurrentViewport"][1]["namespace"] = "ImGui" defs["igSetCurrentViewport"][1]["ov_cimguiname"] = "igSetCurrentViewport" defs["igSetCurrentViewport"][1]["ret"] = "void" @@ -27386,7 +27472,7 @@ defs["igSetCursorPos"][1]["call_args"] = "(local_pos)" defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" -defs["igSetCursorPos"][1]["location"] = "imgui:489" +defs["igSetCursorPos"][1]["location"] = "imgui:493" defs["igSetCursorPos"][1]["namespace"] = "ImGui" defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" @@ -27405,7 +27491,7 @@ defs["igSetCursorPosX"][1]["call_args"] = "(local_x)" defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" -defs["igSetCursorPosX"][1]["location"] = "imgui:490" +defs["igSetCursorPosX"][1]["location"] = "imgui:494" defs["igSetCursorPosX"][1]["namespace"] = "ImGui" defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" @@ -27424,7 +27510,7 @@ defs["igSetCursorPosY"][1]["call_args"] = "(local_y)" defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" -defs["igSetCursorPosY"][1]["location"] = "imgui:491" +defs["igSetCursorPosY"][1]["location"] = "imgui:495" defs["igSetCursorPosY"][1]["namespace"] = "ImGui" defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" @@ -27443,7 +27529,7 @@ defs["igSetCursorScreenPos"][1]["call_args"] = "(pos)" defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" -defs["igSetCursorScreenPos"][1]["location"] = "imgui:484" +defs["igSetCursorScreenPos"][1]["location"] = "imgui:488" defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" @@ -27472,7 +27558,7 @@ defs["igSetDragDropPayload"][1]["cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" -defs["igSetDragDropPayload"][1]["location"] = "imgui:904" +defs["igSetDragDropPayload"][1]["location"] = "imgui:908" defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" @@ -27494,7 +27580,7 @@ defs["igSetFocusID"][1]["call_args"] = "(id,window)" defs["igSetFocusID"][1]["cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["defaults"] = {} defs["igSetFocusID"][1]["funcname"] = "SetFocusID" -defs["igSetFocusID"][1]["location"] = "imgui_internal:3454" +defs["igSetFocusID"][1]["location"] = "imgui_internal:3463" defs["igSetFocusID"][1]["namespace"] = "ImGui" defs["igSetFocusID"][1]["ov_cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["ret"] = "void" @@ -27513,7 +27599,7 @@ defs["igSetHoveredID"][1]["call_args"] = "(id)" defs["igSetHoveredID"][1]["cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["defaults"] = {} defs["igSetHoveredID"][1]["funcname"] = "SetHoveredID" -defs["igSetHoveredID"][1]["location"] = "imgui_internal:3457" +defs["igSetHoveredID"][1]["location"] = "imgui_internal:3466" defs["igSetHoveredID"][1]["namespace"] = "ImGui" defs["igSetHoveredID"][1]["ov_cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["ret"] = "void" @@ -27529,7 +27615,7 @@ defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" -defs["igSetItemDefaultFocus"][1]["location"] = "imgui:926" +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:930" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" @@ -27548,7 +27634,7 @@ defs["igSetItemKeyOwner"][1]["call_args"] = "(key)" defs["igSetItemKeyOwner"][1]["cimguiname"] = "igSetItemKeyOwner" defs["igSetItemKeyOwner"][1]["defaults"] = {} defs["igSetItemKeyOwner"][1]["funcname"] = "SetItemKeyOwner" -defs["igSetItemKeyOwner"][1]["location"] = "imgui:1019" +defs["igSetItemKeyOwner"][1]["location"] = "imgui:1023" defs["igSetItemKeyOwner"][1]["namespace"] = "ImGui" defs["igSetItemKeyOwner"][1]["ov_cimguiname"] = "igSetItemKeyOwner_Nil" defs["igSetItemKeyOwner"][1]["ret"] = "void" @@ -27568,7 +27654,7 @@ defs["igSetItemKeyOwner"][2]["call_args"] = "(key,flags)" defs["igSetItemKeyOwner"][2]["cimguiname"] = "igSetItemKeyOwner" defs["igSetItemKeyOwner"][2]["defaults"] = {} defs["igSetItemKeyOwner"][2]["funcname"] = "SetItemKeyOwner" -defs["igSetItemKeyOwner"][2]["location"] = "imgui_internal:3591" +defs["igSetItemKeyOwner"][2]["location"] = "imgui_internal:3600" defs["igSetItemKeyOwner"][2]["namespace"] = "ImGui" defs["igSetItemKeyOwner"][2]["ov_cimguiname"] = "igSetItemKeyOwner_InputFlags" defs["igSetItemKeyOwner"][2]["ret"] = "void" @@ -27592,7 +27678,7 @@ defs["igSetItemTooltip"][1]["cimguiname"] = "igSetItemTooltip" defs["igSetItemTooltip"][1]["defaults"] = {} defs["igSetItemTooltip"][1]["funcname"] = "SetItemTooltip" defs["igSetItemTooltip"][1]["isvararg"] = "...)" -defs["igSetItemTooltip"][1]["location"] = "imgui:746" +defs["igSetItemTooltip"][1]["location"] = "imgui:750" defs["igSetItemTooltip"][1]["namespace"] = "ImGui" defs["igSetItemTooltip"][1]["ov_cimguiname"] = "igSetItemTooltip" defs["igSetItemTooltip"][1]["ret"] = "void" @@ -27614,7 +27700,7 @@ defs["igSetItemTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetItemTooltipV"][1]["cimguiname"] = "igSetItemTooltipV" defs["igSetItemTooltipV"][1]["defaults"] = {} defs["igSetItemTooltipV"][1]["funcname"] = "SetItemTooltipV" -defs["igSetItemTooltipV"][1]["location"] = "imgui:747" +defs["igSetItemTooltipV"][1]["location"] = "imgui:751" defs["igSetItemTooltipV"][1]["namespace"] = "ImGui" defs["igSetItemTooltipV"][1]["ov_cimguiname"] = "igSetItemTooltipV" defs["igSetItemTooltipV"][1]["ret"] = "void" @@ -27640,7 +27726,7 @@ defs["igSetKeyOwner"][1]["cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["defaults"] = {} defs["igSetKeyOwner"][1]["defaults"]["flags"] = "0" defs["igSetKeyOwner"][1]["funcname"] = "SetKeyOwner" -defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3589" +defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3598" defs["igSetKeyOwner"][1]["namespace"] = "ImGui" defs["igSetKeyOwner"][1]["ov_cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["ret"] = "void" @@ -27666,7 +27752,7 @@ defs["igSetKeyOwnersForKeyChord"][1]["cimguiname"] = "igSetKeyOwnersForKeyChord" defs["igSetKeyOwnersForKeyChord"][1]["defaults"] = {} defs["igSetKeyOwnersForKeyChord"][1]["defaults"]["flags"] = "0" defs["igSetKeyOwnersForKeyChord"][1]["funcname"] = "SetKeyOwnersForKeyChord" -defs["igSetKeyOwnersForKeyChord"][1]["location"] = "imgui_internal:3590" +defs["igSetKeyOwnersForKeyChord"][1]["location"] = "imgui_internal:3599" defs["igSetKeyOwnersForKeyChord"][1]["namespace"] = "ImGui" defs["igSetKeyOwnersForKeyChord"][1]["ov_cimguiname"] = "igSetKeyOwnersForKeyChord" defs["igSetKeyOwnersForKeyChord"][1]["ret"] = "void" @@ -27686,7 +27772,7 @@ defs["igSetKeyboardFocusHere"][1]["cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" -defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:927" +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:931" defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -27714,7 +27800,7 @@ defs["igSetLastItemData"][1]["call_args"] = "(item_id,in_flags,status_flags,item defs["igSetLastItemData"][1]["cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["defaults"] = {} defs["igSetLastItemData"][1]["funcname"] = "SetLastItemData" -defs["igSetLastItemData"][1]["location"] = "imgui_internal:3471" +defs["igSetLastItemData"][1]["location"] = "imgui_internal:3480" defs["igSetLastItemData"][1]["namespace"] = "ImGui" defs["igSetLastItemData"][1]["ov_cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["ret"] = "void" @@ -27733,7 +27819,7 @@ defs["igSetMouseCursor"][1]["call_args"] = "(cursor_type)" defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" -defs["igSetMouseCursor"][1]["location"] = "imgui:1039" +defs["igSetMouseCursor"][1]["location"] = "imgui:1043" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" @@ -27752,7 +27838,7 @@ defs["igSetNavFocusScope"][1]["call_args"] = "(focus_scope_id)" defs["igSetNavFocusScope"][1]["cimguiname"] = "igSetNavFocusScope" defs["igSetNavFocusScope"][1]["defaults"] = {} defs["igSetNavFocusScope"][1]["funcname"] = "SetNavFocusScope" -defs["igSetNavFocusScope"][1]["location"] = "imgui_internal:3536" +defs["igSetNavFocusScope"][1]["location"] = "imgui_internal:3545" defs["igSetNavFocusScope"][1]["namespace"] = "ImGui" defs["igSetNavFocusScope"][1]["ov_cimguiname"] = "igSetNavFocusScope" defs["igSetNavFocusScope"][1]["ret"] = "void" @@ -27780,7 +27866,7 @@ defs["igSetNavID"][1]["call_args"] = "(id,nav_layer,focus_scope_id,rect_rel)" defs["igSetNavID"][1]["cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["defaults"] = {} defs["igSetNavID"][1]["funcname"] = "SetNavID" -defs["igSetNavID"][1]["location"] = "imgui_internal:3535" +defs["igSetNavID"][1]["location"] = "imgui_internal:3544" defs["igSetNavID"][1]["namespace"] = "ImGui" defs["igSetNavID"][1]["ov_cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["ret"] = "void" @@ -27799,7 +27885,7 @@ defs["igSetNavWindow"][1]["call_args"] = "(window)" defs["igSetNavWindow"][1]["cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["defaults"] = {} defs["igSetNavWindow"][1]["funcname"] = "SetNavWindow" -defs["igSetNavWindow"][1]["location"] = "imgui_internal:3534" +defs["igSetNavWindow"][1]["location"] = "imgui_internal:3543" defs["igSetNavWindow"][1]["namespace"] = "ImGui" defs["igSetNavWindow"][1]["ov_cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["ret"] = "void" @@ -27818,7 +27904,7 @@ defs["igSetNextFrameWantCaptureKeyboard"][1]["call_args"] = "(want_capture_keybo defs["igSetNextFrameWantCaptureKeyboard"][1]["cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureKeyboard"][1]["funcname"] = "SetNextFrameWantCaptureKeyboard" -defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:993" +defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:997" defs["igSetNextFrameWantCaptureKeyboard"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureKeyboard"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["ret"] = "void" @@ -27837,7 +27923,7 @@ defs["igSetNextFrameWantCaptureMouse"][1]["call_args"] = "(want_capture_mouse)" defs["igSetNextFrameWantCaptureMouse"][1]["cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureMouse"][1]["funcname"] = "SetNextFrameWantCaptureMouse" -defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:1040" +defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:1044" defs["igSetNextFrameWantCaptureMouse"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureMouse"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["ret"] = "void" @@ -27853,7 +27939,7 @@ defs["igSetNextItemAllowOverlap"][1]["call_args"] = "()" defs["igSetNextItemAllowOverlap"][1]["cimguiname"] = "igSetNextItemAllowOverlap" defs["igSetNextItemAllowOverlap"][1]["defaults"] = {} defs["igSetNextItemAllowOverlap"][1]["funcname"] = "SetNextItemAllowOverlap" -defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:930" +defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:934" defs["igSetNextItemAllowOverlap"][1]["namespace"] = "ImGui" defs["igSetNextItemAllowOverlap"][1]["ov_cimguiname"] = "igSetNextItemAllowOverlap" defs["igSetNextItemAllowOverlap"][1]["ret"] = "void" @@ -27876,7 +27962,7 @@ defs["igSetNextItemOpen"][1]["cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["defaults"] = {} defs["igSetNextItemOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextItemOpen"][1]["funcname"] = "SetNextItemOpen" -defs["igSetNextItemOpen"][1]["location"] = "imgui:672" +defs["igSetNextItemOpen"][1]["location"] = "imgui:676" defs["igSetNextItemOpen"][1]["namespace"] = "ImGui" defs["igSetNextItemOpen"][1]["ov_cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["ret"] = "void" @@ -27898,7 +27984,7 @@ defs["igSetNextItemRefVal"][1]["call_args"] = "(data_type,p_data)" defs["igSetNextItemRefVal"][1]["cimguiname"] = "igSetNextItemRefVal" defs["igSetNextItemRefVal"][1]["defaults"] = {} defs["igSetNextItemRefVal"][1]["funcname"] = "SetNextItemRefVal" -defs["igSetNextItemRefVal"][1]["location"] = "imgui_internal:3894" +defs["igSetNextItemRefVal"][1]["location"] = "imgui_internal:3903" defs["igSetNextItemRefVal"][1]["namespace"] = "ImGui" defs["igSetNextItemRefVal"][1]["ov_cimguiname"] = "igSetNextItemRefVal" defs["igSetNextItemRefVal"][1]["ret"] = "void" @@ -27917,7 +28003,7 @@ defs["igSetNextItemSelectionUserData"][1]["call_args"] = "(selection_user_data)" defs["igSetNextItemSelectionUserData"][1]["cimguiname"] = "igSetNextItemSelectionUserData" defs["igSetNextItemSelectionUserData"][1]["defaults"] = {} defs["igSetNextItemSelectionUserData"][1]["funcname"] = "SetNextItemSelectionUserData" -defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui:690" +defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui:694" defs["igSetNextItemSelectionUserData"][1]["namespace"] = "ImGui" defs["igSetNextItemSelectionUserData"][1]["ov_cimguiname"] = "igSetNextItemSelectionUserData" defs["igSetNextItemSelectionUserData"][1]["ret"] = "void" @@ -27940,7 +28026,7 @@ defs["igSetNextItemShortcut"][1]["cimguiname"] = "igSetNextItemShortcut" defs["igSetNextItemShortcut"][1]["defaults"] = {} defs["igSetNextItemShortcut"][1]["defaults"]["flags"] = "0" defs["igSetNextItemShortcut"][1]["funcname"] = "SetNextItemShortcut" -defs["igSetNextItemShortcut"][1]["location"] = "imgui:1011" +defs["igSetNextItemShortcut"][1]["location"] = "imgui:1015" defs["igSetNextItemShortcut"][1]["namespace"] = "ImGui" defs["igSetNextItemShortcut"][1]["ov_cimguiname"] = "igSetNextItemShortcut" defs["igSetNextItemShortcut"][1]["ret"] = "void" @@ -27959,7 +28045,7 @@ defs["igSetNextItemStorageID"][1]["call_args"] = "(storage_id)" defs["igSetNextItemStorageID"][1]["cimguiname"] = "igSetNextItemStorageID" defs["igSetNextItemStorageID"][1]["defaults"] = {} defs["igSetNextItemStorageID"][1]["funcname"] = "SetNextItemStorageID" -defs["igSetNextItemStorageID"][1]["location"] = "imgui:673" +defs["igSetNextItemStorageID"][1]["location"] = "imgui:677" defs["igSetNextItemStorageID"][1]["namespace"] = "ImGui" defs["igSetNextItemStorageID"][1]["ov_cimguiname"] = "igSetNextItemStorageID" defs["igSetNextItemStorageID"][1]["ret"] = "void" @@ -27978,7 +28064,7 @@ defs["igSetNextItemWidth"][1]["call_args"] = "(item_width)" defs["igSetNextItemWidth"][1]["cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["defaults"] = {} defs["igSetNextItemWidth"][1]["funcname"] = "SetNextItemWidth" -defs["igSetNextItemWidth"][1]["location"] = "imgui:458" +defs["igSetNextItemWidth"][1]["location"] = "imgui:462" defs["igSetNextItemWidth"][1]["namespace"] = "ImGui" defs["igSetNextItemWidth"][1]["ov_cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["ret"] = "void" @@ -27997,7 +28083,7 @@ defs["igSetNextWindowBgAlpha"][1]["call_args"] = "(alpha)" defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" -defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:417" +defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:419" defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" @@ -28016,7 +28102,7 @@ defs["igSetNextWindowClass"][1]["call_args"] = "(window_class)" defs["igSetNextWindowClass"][1]["cimguiname"] = "igSetNextWindowClass" defs["igSetNextWindowClass"][1]["defaults"] = {} defs["igSetNextWindowClass"][1]["funcname"] = "SetNextWindowClass" -defs["igSetNextWindowClass"][1]["location"] = "imgui:884" +defs["igSetNextWindowClass"][1]["location"] = "imgui:888" defs["igSetNextWindowClass"][1]["namespace"] = "ImGui" defs["igSetNextWindowClass"][1]["ov_cimguiname"] = "igSetNextWindowClass" defs["igSetNextWindowClass"][1]["ret"] = "void" @@ -28039,7 +28125,7 @@ defs["igSetNextWindowCollapsed"][1]["cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" -defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:414" +defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:416" defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" @@ -28058,7 +28144,7 @@ defs["igSetNextWindowContentSize"][1]["call_args"] = "(size)" defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" -defs["igSetNextWindowContentSize"][1]["location"] = "imgui:413" +defs["igSetNextWindowContentSize"][1]["location"] = "imgui:415" defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" @@ -28081,7 +28167,7 @@ defs["igSetNextWindowDockID"][1]["cimguiname"] = "igSetNextWindowDockID" defs["igSetNextWindowDockID"][1]["defaults"] = {} defs["igSetNextWindowDockID"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowDockID"][1]["funcname"] = "SetNextWindowDockID" -defs["igSetNextWindowDockID"][1]["location"] = "imgui:883" +defs["igSetNextWindowDockID"][1]["location"] = "imgui:887" defs["igSetNextWindowDockID"][1]["namespace"] = "ImGui" defs["igSetNextWindowDockID"][1]["ov_cimguiname"] = "igSetNextWindowDockID" defs["igSetNextWindowDockID"][1]["ret"] = "void" @@ -28097,7 +28183,7 @@ defs["igSetNextWindowFocus"][1]["call_args"] = "()" defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" -defs["igSetNextWindowFocus"][1]["location"] = "imgui:415" +defs["igSetNextWindowFocus"][1]["location"] = "imgui:417" defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" @@ -28124,7 +28210,7 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" -defs["igSetNextWindowPos"][1]["location"] = "imgui:410" +defs["igSetNextWindowPos"][1]["location"] = "imgui:412" defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" @@ -28143,7 +28229,7 @@ defs["igSetNextWindowRefreshPolicy"][1]["call_args"] = "(flags)" defs["igSetNextWindowRefreshPolicy"][1]["cimguiname"] = "igSetNextWindowRefreshPolicy" defs["igSetNextWindowRefreshPolicy"][1]["defaults"] = {} defs["igSetNextWindowRefreshPolicy"][1]["funcname"] = "SetNextWindowRefreshPolicy" -defs["igSetNextWindowRefreshPolicy"][1]["location"] = "imgui_internal:3381" +defs["igSetNextWindowRefreshPolicy"][1]["location"] = "imgui_internal:3390" defs["igSetNextWindowRefreshPolicy"][1]["namespace"] = "ImGui" defs["igSetNextWindowRefreshPolicy"][1]["ov_cimguiname"] = "igSetNextWindowRefreshPolicy" defs["igSetNextWindowRefreshPolicy"][1]["ret"] = "void" @@ -28162,7 +28248,7 @@ defs["igSetNextWindowScroll"][1]["call_args"] = "(scroll)" defs["igSetNextWindowScroll"][1]["cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["defaults"] = {} defs["igSetNextWindowScroll"][1]["funcname"] = "SetNextWindowScroll" -defs["igSetNextWindowScroll"][1]["location"] = "imgui:416" +defs["igSetNextWindowScroll"][1]["location"] = "imgui:418" defs["igSetNextWindowScroll"][1]["namespace"] = "ImGui" defs["igSetNextWindowScroll"][1]["ov_cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["ret"] = "void" @@ -28185,7 +28271,7 @@ defs["igSetNextWindowSize"][1]["cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" -defs["igSetNextWindowSize"][1]["location"] = "imgui:411" +defs["igSetNextWindowSize"][1]["location"] = "imgui:413" defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" @@ -28215,7 +28301,7 @@ defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" -defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:412" +defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:414" defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" @@ -28234,7 +28320,7 @@ defs["igSetNextWindowViewport"][1]["call_args"] = "(viewport_id)" defs["igSetNextWindowViewport"][1]["cimguiname"] = "igSetNextWindowViewport" defs["igSetNextWindowViewport"][1]["defaults"] = {} defs["igSetNextWindowViewport"][1]["funcname"] = "SetNextWindowViewport" -defs["igSetNextWindowViewport"][1]["location"] = "imgui:418" +defs["igSetNextWindowViewport"][1]["location"] = "imgui:420" defs["igSetNextWindowViewport"][1]["namespace"] = "ImGui" defs["igSetNextWindowViewport"][1]["ov_cimguiname"] = "igSetNextWindowViewport" defs["igSetNextWindowViewport"][1]["ret"] = "void" @@ -28257,7 +28343,7 @@ defs["igSetScrollFromPosX"][1]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["defaults"] = {} defs["igSetScrollFromPosX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][1]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][1]["location"] = "imgui:440" +defs["igSetScrollFromPosX"][1]["location"] = "imgui:442" defs["igSetScrollFromPosX"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][1]["ov_cimguiname"] = "igSetScrollFromPosX_Float" defs["igSetScrollFromPosX"][1]["ret"] = "void" @@ -28280,7 +28366,7 @@ defs["igSetScrollFromPosX"][2]["call_args"] = "(window,local_x,center_x_ratio)" defs["igSetScrollFromPosX"][2]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][2]["defaults"] = {} defs["igSetScrollFromPosX"][2]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:3437" +defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:3446" defs["igSetScrollFromPosX"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][2]["ov_cimguiname"] = "igSetScrollFromPosX_WindowPtr" defs["igSetScrollFromPosX"][2]["ret"] = "void" @@ -28304,7 +28390,7 @@ defs["igSetScrollFromPosY"][1]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][1]["location"] = "imgui:441" +defs["igSetScrollFromPosY"][1]["location"] = "imgui:443" defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosY_Float" defs["igSetScrollFromPosY"][1]["ret"] = "void" @@ -28327,7 +28413,7 @@ defs["igSetScrollFromPosY"][2]["call_args"] = "(window,local_y,center_y_ratio)" defs["igSetScrollFromPosY"][2]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][2]["defaults"] = {} defs["igSetScrollFromPosY"][2]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:3438" +defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:3447" defs["igSetScrollFromPosY"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][2]["ov_cimguiname"] = "igSetScrollFromPosY_WindowPtr" defs["igSetScrollFromPosY"][2]["ret"] = "void" @@ -28348,7 +28434,7 @@ defs["igSetScrollHereX"][1]["cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["defaults"] = {} defs["igSetScrollHereX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollHereX"][1]["funcname"] = "SetScrollHereX" -defs["igSetScrollHereX"][1]["location"] = "imgui:438" +defs["igSetScrollHereX"][1]["location"] = "imgui:440" defs["igSetScrollHereX"][1]["namespace"] = "ImGui" defs["igSetScrollHereX"][1]["ov_cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["ret"] = "void" @@ -28368,7 +28454,7 @@ defs["igSetScrollHereY"][1]["cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" -defs["igSetScrollHereY"][1]["location"] = "imgui:439" +defs["igSetScrollHereY"][1]["location"] = "imgui:441" defs["igSetScrollHereY"][1]["namespace"] = "ImGui" defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" @@ -28387,7 +28473,7 @@ defs["igSetScrollX"][1]["call_args"] = "(scroll_x)" defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" -defs["igSetScrollX"][1]["location"] = "imgui:434" +defs["igSetScrollX"][1]["location"] = "imgui:436" defs["igSetScrollX"][1]["namespace"] = "ImGui" defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollX_Float" defs["igSetScrollX"][1]["ret"] = "void" @@ -28407,7 +28493,7 @@ defs["igSetScrollX"][2]["call_args"] = "(window,scroll_x)" defs["igSetScrollX"][2]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][2]["defaults"] = {} defs["igSetScrollX"][2]["funcname"] = "SetScrollX" -defs["igSetScrollX"][2]["location"] = "imgui_internal:3435" +defs["igSetScrollX"][2]["location"] = "imgui_internal:3444" defs["igSetScrollX"][2]["namespace"] = "ImGui" defs["igSetScrollX"][2]["ov_cimguiname"] = "igSetScrollX_WindowPtr" defs["igSetScrollX"][2]["ret"] = "void" @@ -28427,7 +28513,7 @@ defs["igSetScrollY"][1]["call_args"] = "(scroll_y)" defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" -defs["igSetScrollY"][1]["location"] = "imgui:435" +defs["igSetScrollY"][1]["location"] = "imgui:437" defs["igSetScrollY"][1]["namespace"] = "ImGui" defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollY_Float" defs["igSetScrollY"][1]["ret"] = "void" @@ -28447,7 +28533,7 @@ defs["igSetScrollY"][2]["call_args"] = "(window,scroll_y)" defs["igSetScrollY"][2]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][2]["defaults"] = {} defs["igSetScrollY"][2]["funcname"] = "SetScrollY" -defs["igSetScrollY"][2]["location"] = "imgui_internal:3436" +defs["igSetScrollY"][2]["location"] = "imgui_internal:3445" defs["igSetScrollY"][2]["namespace"] = "ImGui" defs["igSetScrollY"][2]["ov_cimguiname"] = "igSetScrollY_WindowPtr" defs["igSetScrollY"][2]["ret"] = "void" @@ -28473,7 +28559,7 @@ defs["igSetShortcutRouting"][1]["call_args"] = "(key_chord,flags,owner_id)" defs["igSetShortcutRouting"][1]["cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["defaults"] = {} defs["igSetShortcutRouting"][1]["funcname"] = "SetShortcutRouting" -defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3625" +defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3634" defs["igSetShortcutRouting"][1]["namespace"] = "ImGui" defs["igSetShortcutRouting"][1]["ov_cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["ret"] = "bool" @@ -28492,7 +28578,7 @@ defs["igSetStateStorage"][1]["call_args"] = "(storage)" defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" -defs["igSetStateStorage"][1]["location"] = "imgui:970" +defs["igSetStateStorage"][1]["location"] = "imgui:974" defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -28511,7 +28597,7 @@ defs["igSetTabItemClosed"][1]["call_args"] = "(tab_or_docked_window_label)" defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" -defs["igSetTabItemClosed"][1]["location"] = "imgui:866" +defs["igSetTabItemClosed"][1]["location"] = "imgui:870" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -28534,7 +28620,7 @@ defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" -defs["igSetTooltip"][1]["location"] = "imgui:738" +defs["igSetTooltip"][1]["location"] = "imgui:742" defs["igSetTooltip"][1]["namespace"] = "ImGui" defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" @@ -28556,7 +28642,7 @@ defs["igSetTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" -defs["igSetTooltipV"][1]["location"] = "imgui:739" +defs["igSetTooltipV"][1]["location"] = "imgui:743" defs["igSetTooltipV"][1]["namespace"] = "ImGui" defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" @@ -28578,7 +28664,7 @@ defs["igSetWindowClipRectBeforeSetChannel"][1]["call_args"] = "(window,clip_rect defs["igSetWindowClipRectBeforeSetChannel"][1]["cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["defaults"] = {} defs["igSetWindowClipRectBeforeSetChannel"][1]["funcname"] = "SetWindowClipRectBeforeSetChannel" -defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:3722" +defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:3731" defs["igSetWindowClipRectBeforeSetChannel"][1]["namespace"] = "ImGui" defs["igSetWindowClipRectBeforeSetChannel"][1]["ov_cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["ret"] = "void" @@ -28601,7 +28687,7 @@ defs["igSetWindowCollapsed"][1]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][1]["location"] = "imgui:421" +defs["igSetWindowCollapsed"][1]["location"] = "imgui:423" defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsed_Bool" defs["igSetWindowCollapsed"][1]["ret"] = "void" @@ -28625,7 +28711,7 @@ defs["igSetWindowCollapsed"][2]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][2]["location"] = "imgui:426" +defs["igSetWindowCollapsed"][2]["location"] = "imgui:428" defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsed_Str" defs["igSetWindowCollapsed"][2]["ret"] = "void" @@ -28649,7 +28735,7 @@ defs["igSetWindowCollapsed"][3]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][3]["defaults"] = {} defs["igSetWindowCollapsed"][3]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][3]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:3361" +defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:3370" defs["igSetWindowCollapsed"][3]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][3]["ov_cimguiname"] = "igSetWindowCollapsed_WindowPtr" defs["igSetWindowCollapsed"][3]["ret"] = "void" @@ -28676,7 +28762,7 @@ defs["igSetWindowDock"][1]["call_args"] = "(window,dock_id,cond)" defs["igSetWindowDock"][1]["cimguiname"] = "igSetWindowDock" defs["igSetWindowDock"][1]["defaults"] = {} defs["igSetWindowDock"][1]["funcname"] = "SetWindowDock" -defs["igSetWindowDock"][1]["location"] = "imgui_internal:3658" +defs["igSetWindowDock"][1]["location"] = "imgui_internal:3667" defs["igSetWindowDock"][1]["namespace"] = "ImGui" defs["igSetWindowDock"][1]["ov_cimguiname"] = "igSetWindowDock" defs["igSetWindowDock"][1]["ret"] = "void" @@ -28692,7 +28778,7 @@ defs["igSetWindowFocus"][1]["call_args"] = "()" defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][1]["location"] = "imgui:422" +defs["igSetWindowFocus"][1]["location"] = "imgui:424" defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocus_Nil" defs["igSetWindowFocus"][1]["ret"] = "void" @@ -28709,7 +28795,7 @@ defs["igSetWindowFocus"][2]["call_args"] = "(name)" defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][2]["location"] = "imgui:427" +defs["igSetWindowFocus"][2]["location"] = "imgui:429" defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocus_Str" defs["igSetWindowFocus"][2]["ret"] = "void" @@ -28729,7 +28815,7 @@ defs["igSetWindowFontScale"][1]["call_args"] = "(scale)" defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" -defs["igSetWindowFontScale"][1]["location"] = "imgui:423" +defs["igSetWindowFontScale"][1]["location"] = "imgui:425" defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" @@ -28748,7 +28834,7 @@ defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["call_args"] = "(window) defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["defaults"] = {} defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["funcname"] = "SetWindowHiddenAndSkipItemsForCurrentFrame" -defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["location"] = "imgui_internal:3363" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["location"] = "imgui_internal:3372" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["namespace"] = "ImGui" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ov_cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ret"] = "void" @@ -28773,7 +28859,7 @@ defs["igSetWindowHitTestHole"][1]["call_args"] = "(window,pos,size)" defs["igSetWindowHitTestHole"][1]["cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["defaults"] = {} defs["igSetWindowHitTestHole"][1]["funcname"] = "SetWindowHitTestHole" -defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:3362" +defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:3371" defs["igSetWindowHitTestHole"][1]["namespace"] = "ImGui" defs["igSetWindowHitTestHole"][1]["ov_cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["ret"] = "void" @@ -28795,7 +28881,7 @@ defs["igSetWindowParentWindowForFocusRoute"][1]["call_args"] = "(window,parent_w defs["igSetWindowParentWindowForFocusRoute"][1]["cimguiname"] = "igSetWindowParentWindowForFocusRoute" defs["igSetWindowParentWindowForFocusRoute"][1]["defaults"] = {} defs["igSetWindowParentWindowForFocusRoute"][1]["funcname"] = "SetWindowParentWindowForFocusRoute" -defs["igSetWindowParentWindowForFocusRoute"][1]["location"] = "imgui_internal:3364" +defs["igSetWindowParentWindowForFocusRoute"][1]["location"] = "imgui_internal:3373" defs["igSetWindowParentWindowForFocusRoute"][1]["namespace"] = "ImGui" defs["igSetWindowParentWindowForFocusRoute"][1]["ov_cimguiname"] = "igSetWindowParentWindowForFocusRoute" defs["igSetWindowParentWindowForFocusRoute"][1]["ret"] = "void" @@ -28818,7 +28904,7 @@ defs["igSetWindowPos"][1]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][1]["location"] = "imgui:419" +defs["igSetWindowPos"][1]["location"] = "imgui:421" defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPos_Vec2" defs["igSetWindowPos"][1]["ret"] = "void" @@ -28842,7 +28928,7 @@ defs["igSetWindowPos"][2]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][2]["location"] = "imgui:424" +defs["igSetWindowPos"][2]["location"] = "imgui:426" defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPos_Str" defs["igSetWindowPos"][2]["ret"] = "void" @@ -28866,7 +28952,7 @@ defs["igSetWindowPos"][3]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][3]["defaults"] = {} defs["igSetWindowPos"][3]["defaults"]["cond"] = "0" defs["igSetWindowPos"][3]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][3]["location"] = "imgui_internal:3359" +defs["igSetWindowPos"][3]["location"] = "imgui_internal:3368" defs["igSetWindowPos"][3]["namespace"] = "ImGui" defs["igSetWindowPos"][3]["ov_cimguiname"] = "igSetWindowPos_WindowPtr" defs["igSetWindowPos"][3]["ret"] = "void" @@ -28891,7 +28977,7 @@ defs["igSetWindowSize"][1]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][1]["location"] = "imgui:420" +defs["igSetWindowSize"][1]["location"] = "imgui:422" defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSize_Vec2" defs["igSetWindowSize"][1]["ret"] = "void" @@ -28915,7 +29001,7 @@ defs["igSetWindowSize"][2]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][2]["location"] = "imgui:425" +defs["igSetWindowSize"][2]["location"] = "imgui:427" defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSize_Str" defs["igSetWindowSize"][2]["ret"] = "void" @@ -28939,7 +29025,7 @@ defs["igSetWindowSize"][3]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][3]["defaults"] = {} defs["igSetWindowSize"][3]["defaults"]["cond"] = "0" defs["igSetWindowSize"][3]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][3]["location"] = "imgui_internal:3360" +defs["igSetWindowSize"][3]["location"] = "imgui_internal:3369" defs["igSetWindowSize"][3]["namespace"] = "ImGui" defs["igSetWindowSize"][3]["ov_cimguiname"] = "igSetWindowSize_WindowPtr" defs["igSetWindowSize"][3]["ret"] = "void" @@ -28963,7 +29049,7 @@ defs["igSetWindowViewport"][1]["call_args"] = "(window,viewport)" defs["igSetWindowViewport"][1]["cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["defaults"] = {} defs["igSetWindowViewport"][1]["funcname"] = "SetWindowViewport" -defs["igSetWindowViewport"][1]["location"] = "imgui_internal:3411" +defs["igSetWindowViewport"][1]["location"] = "imgui_internal:3420" defs["igSetWindowViewport"][1]["namespace"] = "ImGui" defs["igSetWindowViewport"][1]["ov_cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["ret"] = "void" @@ -29000,7 +29086,7 @@ defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["call_args"] = "(draw_list,v defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["defaults"] = {} defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["funcname"] = "ShadeVertsLinearColorGradientKeepAlpha" -defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3905" +defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3914" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ov_cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ret"] = "void" @@ -29040,7 +29126,7 @@ defs["igShadeVertsLinearUV"][1]["call_args"] = "(draw_list,vert_start_idx,vert_e defs["igShadeVertsLinearUV"][1]["cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["defaults"] = {} defs["igShadeVertsLinearUV"][1]["funcname"] = "ShadeVertsLinearUV" -defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3906" +defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3915" defs["igShadeVertsLinearUV"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearUV"][1]["ov_cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["ret"] = "void" @@ -29077,7 +29163,7 @@ defs["igShadeVertsTransformPos"][1]["call_args"] = "(draw_list,vert_start_idx,ve defs["igShadeVertsTransformPos"][1]["cimguiname"] = "igShadeVertsTransformPos" defs["igShadeVertsTransformPos"][1]["defaults"] = {} defs["igShadeVertsTransformPos"][1]["funcname"] = "ShadeVertsTransformPos" -defs["igShadeVertsTransformPos"][1]["location"] = "imgui_internal:3907" +defs["igShadeVertsTransformPos"][1]["location"] = "imgui_internal:3916" defs["igShadeVertsTransformPos"][1]["namespace"] = "ImGui" defs["igShadeVertsTransformPos"][1]["ov_cimguiname"] = "igShadeVertsTransformPos" defs["igShadeVertsTransformPos"][1]["ret"] = "void" @@ -29100,7 +29186,7 @@ defs["igShortcut"][1]["cimguiname"] = "igShortcut" defs["igShortcut"][1]["defaults"] = {} defs["igShortcut"][1]["defaults"]["flags"] = "0" defs["igShortcut"][1]["funcname"] = "Shortcut" -defs["igShortcut"][1]["location"] = "imgui:1010" +defs["igShortcut"][1]["location"] = "imgui:1014" defs["igShortcut"][1]["namespace"] = "ImGui" defs["igShortcut"][1]["ov_cimguiname"] = "igShortcut_Nil" defs["igShortcut"][1]["ret"] = "bool" @@ -29123,7 +29209,7 @@ defs["igShortcut"][2]["call_args"] = "(key_chord,flags,owner_id)" defs["igShortcut"][2]["cimguiname"] = "igShortcut" defs["igShortcut"][2]["defaults"] = {} defs["igShortcut"][2]["funcname"] = "Shortcut" -defs["igShortcut"][2]["location"] = "imgui_internal:3624" +defs["igShortcut"][2]["location"] = "imgui_internal:3633" defs["igShortcut"][2]["namespace"] = "ImGui" defs["igShortcut"][2]["ov_cimguiname"] = "igShortcut_ID" defs["igShortcut"][2]["ret"] = "bool" @@ -29144,7 +29230,7 @@ defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["defaults"] = {} defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" -defs["igShowAboutWindow"][1]["location"] = "imgui:345" +defs["igShowAboutWindow"][1]["location"] = "imgui:347" defs["igShowAboutWindow"][1]["namespace"] = "ImGui" defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" @@ -29164,7 +29250,7 @@ defs["igShowDebugLogWindow"][1]["cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["defaults"] = {} defs["igShowDebugLogWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDebugLogWindow"][1]["funcname"] = "ShowDebugLogWindow" -defs["igShowDebugLogWindow"][1]["location"] = "imgui:343" +defs["igShowDebugLogWindow"][1]["location"] = "imgui:345" defs["igShowDebugLogWindow"][1]["namespace"] = "ImGui" defs["igShowDebugLogWindow"][1]["ov_cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["ret"] = "void" @@ -29184,7 +29270,7 @@ defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["defaults"] = {} defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" -defs["igShowDemoWindow"][1]["location"] = "imgui:341" +defs["igShowDemoWindow"][1]["location"] = "imgui:343" defs["igShowDemoWindow"][1]["namespace"] = "ImGui" defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" @@ -29203,7 +29289,7 @@ defs["igShowFontAtlas"][1]["call_args"] = "(atlas)" defs["igShowFontAtlas"][1]["cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["defaults"] = {} defs["igShowFontAtlas"][1]["funcname"] = "ShowFontAtlas" -defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3929" +defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3938" defs["igShowFontAtlas"][1]["namespace"] = "ImGui" defs["igShowFontAtlas"][1]["ov_cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["ret"] = "void" @@ -29222,7 +29308,7 @@ defs["igShowFontSelector"][1]["call_args"] = "(label)" defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" -defs["igShowFontSelector"][1]["location"] = "imgui:348" +defs["igShowFontSelector"][1]["location"] = "imgui:350" defs["igShowFontSelector"][1]["namespace"] = "ImGui" defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" @@ -29242,7 +29328,7 @@ defs["igShowIDStackToolWindow"][1]["cimguiname"] = "igShowIDStackToolWindow" defs["igShowIDStackToolWindow"][1]["defaults"] = {} defs["igShowIDStackToolWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowIDStackToolWindow"][1]["funcname"] = "ShowIDStackToolWindow" -defs["igShowIDStackToolWindow"][1]["location"] = "imgui:344" +defs["igShowIDStackToolWindow"][1]["location"] = "imgui:346" defs["igShowIDStackToolWindow"][1]["namespace"] = "ImGui" defs["igShowIDStackToolWindow"][1]["ov_cimguiname"] = "igShowIDStackToolWindow" defs["igShowIDStackToolWindow"][1]["ret"] = "void" @@ -29262,7 +29348,7 @@ defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["defaults"] = {} defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" -defs["igShowMetricsWindow"][1]["location"] = "imgui:342" +defs["igShowMetricsWindow"][1]["location"] = "imgui:344" defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" @@ -29282,7 +29368,7 @@ defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["defaults"] = {} defs["igShowStyleEditor"][1]["defaults"]["ref"] = "NULL" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" -defs["igShowStyleEditor"][1]["location"] = "imgui:346" +defs["igShowStyleEditor"][1]["location"] = "imgui:348" defs["igShowStyleEditor"][1]["namespace"] = "ImGui" defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" @@ -29301,7 +29387,7 @@ defs["igShowStyleSelector"][1]["call_args"] = "(label)" defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" -defs["igShowStyleSelector"][1]["location"] = "imgui:347" +defs["igShowStyleSelector"][1]["location"] = "imgui:349" defs["igShowStyleSelector"][1]["namespace"] = "ImGui" defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" @@ -29317,7 +29403,7 @@ defs["igShowUserGuide"][1]["call_args"] = "()" defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" -defs["igShowUserGuide"][1]["location"] = "imgui:349" +defs["igShowUserGuide"][1]["location"] = "imgui:351" defs["igShowUserGuide"][1]["namespace"] = "ImGui" defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" @@ -29342,7 +29428,7 @@ defs["igShrinkWidths"][1]["call_args"] = "(items,count,width_excess)" defs["igShrinkWidths"][1]["cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["defaults"] = {} defs["igShrinkWidths"][1]["funcname"] = "ShrinkWidths" -defs["igShrinkWidths"][1]["location"] = "imgui_internal:3475" +defs["igShrinkWidths"][1]["location"] = "imgui_internal:3484" defs["igShrinkWidths"][1]["namespace"] = "ImGui" defs["igShrinkWidths"][1]["ov_cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["ret"] = "void" @@ -29358,7 +29444,7 @@ defs["igShutdown"][1]["call_args"] = "()" defs["igShutdown"][1]["cimguiname"] = "igShutdown" defs["igShutdown"][1]["defaults"] = {} defs["igShutdown"][1]["funcname"] = "Shutdown" -defs["igShutdown"][1]["location"] = "imgui_internal:3391" +defs["igShutdown"][1]["location"] = "imgui_internal:3400" defs["igShutdown"][1]["namespace"] = "ImGui" defs["igShutdown"][1]["ov_cimguiname"] = "igShutdown" defs["igShutdown"][1]["ret"] = "void" @@ -29396,7 +29482,7 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" -defs["igSliderAngle"][1]["location"] = "imgui:615" +defs["igSliderAngle"][1]["location"] = "imgui:619" defs["igSliderAngle"][1]["namespace"] = "ImGui" defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" @@ -29439,7 +29525,7 @@ defs["igSliderBehavior"][1]["call_args"] = "(bb,id,data_type,p_v,p_min,p_max,for defs["igSliderBehavior"][1]["cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["defaults"] = {} defs["igSliderBehavior"][1]["funcname"] = "SliderBehavior" -defs["igSliderBehavior"][1]["location"] = "imgui_internal:3859" +defs["igSliderBehavior"][1]["location"] = "imgui_internal:3868" defs["igSliderBehavior"][1]["namespace"] = "ImGui" defs["igSliderBehavior"][1]["ov_cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["ret"] = "bool" @@ -29475,7 +29561,7 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["flags"] = "0" defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" -defs["igSliderFloat"][1]["location"] = "imgui:611" +defs["igSliderFloat"][1]["location"] = "imgui:615" defs["igSliderFloat"][1]["namespace"] = "ImGui" defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" @@ -29511,7 +29597,7 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["flags"] = "0" defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" -defs["igSliderFloat2"][1]["location"] = "imgui:612" +defs["igSliderFloat2"][1]["location"] = "imgui:616" defs["igSliderFloat2"][1]["namespace"] = "ImGui" defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" @@ -29547,7 +29633,7 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["flags"] = "0" defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" -defs["igSliderFloat3"][1]["location"] = "imgui:613" +defs["igSliderFloat3"][1]["location"] = "imgui:617" defs["igSliderFloat3"][1]["namespace"] = "ImGui" defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" @@ -29583,7 +29669,7 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["flags"] = "0" defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" -defs["igSliderFloat4"][1]["location"] = "imgui:614" +defs["igSliderFloat4"][1]["location"] = "imgui:618" defs["igSliderFloat4"][1]["namespace"] = "ImGui" defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" @@ -29619,7 +29705,7 @@ defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["flags"] = "0" defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" -defs["igSliderInt"][1]["location"] = "imgui:616" +defs["igSliderInt"][1]["location"] = "imgui:620" defs["igSliderInt"][1]["namespace"] = "ImGui" defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" @@ -29655,7 +29741,7 @@ defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["flags"] = "0" defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" -defs["igSliderInt2"][1]["location"] = "imgui:617" +defs["igSliderInt2"][1]["location"] = "imgui:621" defs["igSliderInt2"][1]["namespace"] = "ImGui" defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" @@ -29691,7 +29777,7 @@ defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["flags"] = "0" defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" -defs["igSliderInt3"][1]["location"] = "imgui:618" +defs["igSliderInt3"][1]["location"] = "imgui:622" defs["igSliderInt3"][1]["namespace"] = "ImGui" defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" @@ -29727,7 +29813,7 @@ defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["flags"] = "0" defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" -defs["igSliderInt4"][1]["location"] = "imgui:619" +defs["igSliderInt4"][1]["location"] = "imgui:623" defs["igSliderInt4"][1]["namespace"] = "ImGui" defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" @@ -29766,7 +29852,7 @@ defs["igSliderScalar"][1]["defaults"] = {} defs["igSliderScalar"][1]["defaults"]["flags"] = "0" defs["igSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" -defs["igSliderScalar"][1]["location"] = "imgui:620" +defs["igSliderScalar"][1]["location"] = "imgui:624" defs["igSliderScalar"][1]["namespace"] = "ImGui" defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -29808,7 +29894,7 @@ defs["igSliderScalarN"][1]["defaults"] = {} defs["igSliderScalarN"][1]["defaults"]["flags"] = "0" defs["igSliderScalarN"][1]["defaults"]["format"] = "NULL" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" -defs["igSliderScalarN"][1]["location"] = "imgui:621" +defs["igSliderScalarN"][1]["location"] = "imgui:625" defs["igSliderScalarN"][1]["namespace"] = "ImGui" defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -29827,7 +29913,7 @@ defs["igSmallButton"][1]["call_args"] = "(label)" defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" -defs["igSmallButton"][1]["location"] = "imgui:551" +defs["igSmallButton"][1]["location"] = "imgui:555" defs["igSmallButton"][1]["namespace"] = "ImGui" defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" @@ -29843,7 +29929,7 @@ defs["igSpacing"][1]["call_args"] = "()" defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" -defs["igSpacing"][1]["location"] = "imgui:498" +defs["igSpacing"][1]["location"] = "imgui:502" defs["igSpacing"][1]["namespace"] = "ImGui" defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" @@ -29892,7 +29978,7 @@ defs["igSplitterBehavior"][1]["defaults"]["bg_col"] = "0" defs["igSplitterBehavior"][1]["defaults"]["hover_extend"] = "0.0f" defs["igSplitterBehavior"][1]["defaults"]["hover_visibility_delay"] = "0.0f" defs["igSplitterBehavior"][1]["funcname"] = "SplitterBehavior" -defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3860" +defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3869" defs["igSplitterBehavior"][1]["namespace"] = "ImGui" defs["igSplitterBehavior"][1]["ov_cimguiname"] = "igSplitterBehavior" defs["igSplitterBehavior"][1]["ret"] = "bool" @@ -29911,7 +29997,7 @@ defs["igStartMouseMovingWindow"][1]["call_args"] = "(window)" defs["igStartMouseMovingWindow"][1]["cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["defaults"] = {} defs["igStartMouseMovingWindow"][1]["funcname"] = "StartMouseMovingWindow" -defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:3397" +defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:3406" defs["igStartMouseMovingWindow"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindow"][1]["ov_cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["ret"] = "void" @@ -29936,7 +30022,7 @@ defs["igStartMouseMovingWindowOrNode"][1]["call_args"] = "(window,node,undock)" defs["igStartMouseMovingWindowOrNode"][1]["cimguiname"] = "igStartMouseMovingWindowOrNode" defs["igStartMouseMovingWindowOrNode"][1]["defaults"] = {} defs["igStartMouseMovingWindowOrNode"][1]["funcname"] = "StartMouseMovingWindowOrNode" -defs["igStartMouseMovingWindowOrNode"][1]["location"] = "imgui_internal:3398" +defs["igStartMouseMovingWindowOrNode"][1]["location"] = "imgui_internal:3407" defs["igStartMouseMovingWindowOrNode"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindowOrNode"][1]["ov_cimguiname"] = "igStartMouseMovingWindowOrNode" defs["igStartMouseMovingWindowOrNode"][1]["ret"] = "void" @@ -29956,7 +30042,7 @@ defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["defaults"] = {} defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" -defs["igStyleColorsClassic"][1]["location"] = "imgui:355" +defs["igStyleColorsClassic"][1]["location"] = "imgui:357" defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" @@ -29976,7 +30062,7 @@ defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["defaults"] = {} defs["igStyleColorsDark"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" -defs["igStyleColorsDark"][1]["location"] = "imgui:353" +defs["igStyleColorsDark"][1]["location"] = "imgui:355" defs["igStyleColorsDark"][1]["namespace"] = "ImGui" defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" @@ -29996,7 +30082,7 @@ defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["defaults"] = {} defs["igStyleColorsLight"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" -defs["igStyleColorsLight"][1]["location"] = "imgui:354" +defs["igStyleColorsLight"][1]["location"] = "imgui:356" defs["igStyleColorsLight"][1]["namespace"] = "ImGui" defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" @@ -30021,7 +30107,7 @@ defs["igTabBarAddTab"][1]["call_args"] = "(tab_bar,tab_flags,window)" defs["igTabBarAddTab"][1]["cimguiname"] = "igTabBarAddTab" defs["igTabBarAddTab"][1]["defaults"] = {} defs["igTabBarAddTab"][1]["funcname"] = "TabBarAddTab" -defs["igTabBarAddTab"][1]["location"] = "imgui_internal:3798" +defs["igTabBarAddTab"][1]["location"] = "imgui_internal:3807" defs["igTabBarAddTab"][1]["namespace"] = "ImGui" defs["igTabBarAddTab"][1]["ov_cimguiname"] = "igTabBarAddTab" defs["igTabBarAddTab"][1]["ret"] = "void" @@ -30043,7 +30129,7 @@ defs["igTabBarCloseTab"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarCloseTab"][1]["cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["defaults"] = {} defs["igTabBarCloseTab"][1]["funcname"] = "TabBarCloseTab" -defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:3800" +defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:3809" defs["igTabBarCloseTab"][1]["namespace"] = "ImGui" defs["igTabBarCloseTab"][1]["ov_cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["ret"] = "void" @@ -30062,7 +30148,7 @@ defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["call_args"] = "(t defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["cimguiname"] = "igTabBarFindMostRecentlySelectedTabForActiveWindow" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["defaults"] = {} defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["funcname"] = "TabBarFindMostRecentlySelectedTabForActiveWindow" -defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["location"] = "imgui_internal:3794" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["location"] = "imgui_internal:3803" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["namespace"] = "ImGui" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ov_cimguiname"] = "igTabBarFindMostRecentlySelectedTabForActiveWindow" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ret"] = "ImGuiTabItem*" @@ -30084,7 +30170,7 @@ defs["igTabBarFindTabByID"][1]["call_args"] = "(tab_bar,tab_id)" defs["igTabBarFindTabByID"][1]["cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["defaults"] = {} defs["igTabBarFindTabByID"][1]["funcname"] = "TabBarFindTabByID" -defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3792" +defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3801" defs["igTabBarFindTabByID"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByID"][1]["ov_cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["ret"] = "ImGuiTabItem*" @@ -30106,7 +30192,7 @@ defs["igTabBarFindTabByOrder"][1]["call_args"] = "(tab_bar,order)" defs["igTabBarFindTabByOrder"][1]["cimguiname"] = "igTabBarFindTabByOrder" defs["igTabBarFindTabByOrder"][1]["defaults"] = {} defs["igTabBarFindTabByOrder"][1]["funcname"] = "TabBarFindTabByOrder" -defs["igTabBarFindTabByOrder"][1]["location"] = "imgui_internal:3793" +defs["igTabBarFindTabByOrder"][1]["location"] = "imgui_internal:3802" defs["igTabBarFindTabByOrder"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByOrder"][1]["ov_cimguiname"] = "igTabBarFindTabByOrder" defs["igTabBarFindTabByOrder"][1]["ret"] = "ImGuiTabItem*" @@ -30125,7 +30211,7 @@ defs["igTabBarGetCurrentTab"][1]["call_args"] = "(tab_bar)" defs["igTabBarGetCurrentTab"][1]["cimguiname"] = "igTabBarGetCurrentTab" defs["igTabBarGetCurrentTab"][1]["defaults"] = {} defs["igTabBarGetCurrentTab"][1]["funcname"] = "TabBarGetCurrentTab" -defs["igTabBarGetCurrentTab"][1]["location"] = "imgui_internal:3795" +defs["igTabBarGetCurrentTab"][1]["location"] = "imgui_internal:3804" defs["igTabBarGetCurrentTab"][1]["namespace"] = "ImGui" defs["igTabBarGetCurrentTab"][1]["ov_cimguiname"] = "igTabBarGetCurrentTab" defs["igTabBarGetCurrentTab"][1]["ret"] = "ImGuiTabItem*" @@ -30147,7 +30233,7 @@ defs["igTabBarGetTabName"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarGetTabName"][1]["cimguiname"] = "igTabBarGetTabName" defs["igTabBarGetTabName"][1]["defaults"] = {} defs["igTabBarGetTabName"][1]["funcname"] = "TabBarGetTabName" -defs["igTabBarGetTabName"][1]["location"] = "imgui_internal:3797" +defs["igTabBarGetTabName"][1]["location"] = "imgui_internal:3806" defs["igTabBarGetTabName"][1]["namespace"] = "ImGui" defs["igTabBarGetTabName"][1]["ov_cimguiname"] = "igTabBarGetTabName" defs["igTabBarGetTabName"][1]["ret"] = "const char*" @@ -30169,7 +30255,7 @@ defs["igTabBarGetTabOrder"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarGetTabOrder"][1]["cimguiname"] = "igTabBarGetTabOrder" defs["igTabBarGetTabOrder"][1]["defaults"] = {} defs["igTabBarGetTabOrder"][1]["funcname"] = "TabBarGetTabOrder" -defs["igTabBarGetTabOrder"][1]["location"] = "imgui_internal:3796" +defs["igTabBarGetTabOrder"][1]["location"] = "imgui_internal:3805" defs["igTabBarGetTabOrder"][1]["namespace"] = "ImGui" defs["igTabBarGetTabOrder"][1]["ov_cimguiname"] = "igTabBarGetTabOrder" defs["igTabBarGetTabOrder"][1]["ret"] = "int" @@ -30188,7 +30274,7 @@ defs["igTabBarProcessReorder"][1]["call_args"] = "(tab_bar)" defs["igTabBarProcessReorder"][1]["cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["defaults"] = {} defs["igTabBarProcessReorder"][1]["funcname"] = "TabBarProcessReorder" -defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3804" +defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3813" defs["igTabBarProcessReorder"][1]["namespace"] = "ImGui" defs["igTabBarProcessReorder"][1]["ov_cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["ret"] = "bool" @@ -30210,7 +30296,7 @@ defs["igTabBarQueueFocus"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarQueueFocus"][1]["cimguiname"] = "igTabBarQueueFocus" defs["igTabBarQueueFocus"][1]["defaults"] = {} defs["igTabBarQueueFocus"][1]["funcname"] = "TabBarQueueFocus" -defs["igTabBarQueueFocus"][1]["location"] = "imgui_internal:3801" +defs["igTabBarQueueFocus"][1]["location"] = "imgui_internal:3810" defs["igTabBarQueueFocus"][1]["namespace"] = "ImGui" defs["igTabBarQueueFocus"][1]["ov_cimguiname"] = "igTabBarQueueFocus" defs["igTabBarQueueFocus"][1]["ret"] = "void" @@ -30235,7 +30321,7 @@ defs["igTabBarQueueReorder"][1]["call_args"] = "(tab_bar,tab,offset)" defs["igTabBarQueueReorder"][1]["cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["defaults"] = {} defs["igTabBarQueueReorder"][1]["funcname"] = "TabBarQueueReorder" -defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3802" +defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3811" defs["igTabBarQueueReorder"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorder"][1]["ov_cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["ret"] = "void" @@ -30260,7 +30346,7 @@ defs["igTabBarQueueReorderFromMousePos"][1]["call_args"] = "(tab_bar,tab,mouse_p defs["igTabBarQueueReorderFromMousePos"][1]["cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["defaults"] = {} defs["igTabBarQueueReorderFromMousePos"][1]["funcname"] = "TabBarQueueReorderFromMousePos" -defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3803" +defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3812" defs["igTabBarQueueReorderFromMousePos"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorderFromMousePos"][1]["ov_cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["ret"] = "void" @@ -30282,7 +30368,7 @@ defs["igTabBarRemoveTab"][1]["call_args"] = "(tab_bar,tab_id)" defs["igTabBarRemoveTab"][1]["cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["defaults"] = {} defs["igTabBarRemoveTab"][1]["funcname"] = "TabBarRemoveTab" -defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:3799" +defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:3808" defs["igTabBarRemoveTab"][1]["namespace"] = "ImGui" defs["igTabBarRemoveTab"][1]["ov_cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["ret"] = "void" @@ -30310,7 +30396,7 @@ defs["igTabItemBackground"][1]["call_args"] = "(draw_list,bb,flags,col)" defs["igTabItemBackground"][1]["cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["defaults"] = {} defs["igTabItemBackground"][1]["funcname"] = "TabItemBackground" -defs["igTabItemBackground"][1]["location"] = "imgui_internal:3808" +defs["igTabItemBackground"][1]["location"] = "imgui_internal:3817" defs["igTabItemBackground"][1]["namespace"] = "ImGui" defs["igTabItemBackground"][1]["ov_cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["ret"] = "void" @@ -30333,7 +30419,7 @@ defs["igTabItemButton"][1]["cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["defaults"] = {} defs["igTabItemButton"][1]["defaults"]["flags"] = "0" defs["igTabItemButton"][1]["funcname"] = "TabItemButton" -defs["igTabItemButton"][1]["location"] = "imgui:865" +defs["igTabItemButton"][1]["location"] = "imgui:869" defs["igTabItemButton"][1]["namespace"] = "ImGui" defs["igTabItemButton"][1]["ov_cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["ret"] = "bool" @@ -30358,7 +30444,7 @@ defs["igTabItemCalcSize"][1]["call_args"] = "(label,has_close_button_or_unsaved_ defs["igTabItemCalcSize"][1]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][1]["defaults"] = {} defs["igTabItemCalcSize"][1]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3806" +defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3815" defs["igTabItemCalcSize"][1]["namespace"] = "ImGui" defs["igTabItemCalcSize"][1]["nonUDT"] = 1 defs["igTabItemCalcSize"][1]["ov_cimguiname"] = "igTabItemCalcSize_Str" @@ -30379,7 +30465,7 @@ defs["igTabItemCalcSize"][2]["call_args"] = "(window)" defs["igTabItemCalcSize"][2]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][2]["defaults"] = {} defs["igTabItemCalcSize"][2]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3807" +defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3816" defs["igTabItemCalcSize"][2]["namespace"] = "ImGui" defs["igTabItemCalcSize"][2]["nonUDT"] = 1 defs["igTabItemCalcSize"][2]["ov_cimguiname"] = "igTabItemCalcSize_WindowPtr" @@ -30412,7 +30498,7 @@ defs["igTabItemEx"][1]["call_args"] = "(tab_bar,label,p_open,flags,docked_window defs["igTabItemEx"][1]["cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["defaults"] = {} defs["igTabItemEx"][1]["funcname"] = "TabItemEx" -defs["igTabItemEx"][1]["location"] = "imgui_internal:3805" +defs["igTabItemEx"][1]["location"] = "imgui_internal:3814" defs["igTabItemEx"][1]["namespace"] = "ImGui" defs["igTabItemEx"][1]["ov_cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["ret"] = "bool" @@ -30458,7 +30544,7 @@ defs["igTabItemLabelAndCloseButton"][1]["call_args"] = "(draw_list,bb,flags,fram defs["igTabItemLabelAndCloseButton"][1]["cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["defaults"] = {} defs["igTabItemLabelAndCloseButton"][1]["funcname"] = "TabItemLabelAndCloseButton" -defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:3809" +defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:3818" defs["igTabItemLabelAndCloseButton"][1]["namespace"] = "ImGui" defs["igTabItemLabelAndCloseButton"][1]["ov_cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["ret"] = "void" @@ -30474,7 +30560,7 @@ defs["igTableAngledHeadersRow"][1]["call_args"] = "()" defs["igTableAngledHeadersRow"][1]["cimguiname"] = "igTableAngledHeadersRow" defs["igTableAngledHeadersRow"][1]["defaults"] = {} defs["igTableAngledHeadersRow"][1]["funcname"] = "TableAngledHeadersRow" -defs["igTableAngledHeadersRow"][1]["location"] = "imgui:830" +defs["igTableAngledHeadersRow"][1]["location"] = "imgui:834" defs["igTableAngledHeadersRow"][1]["namespace"] = "ImGui" defs["igTableAngledHeadersRow"][1]["ov_cimguiname"] = "igTableAngledHeadersRow" defs["igTableAngledHeadersRow"][1]["ret"] = "void" @@ -30505,7 +30591,7 @@ defs["igTableAngledHeadersRowEx"][1]["call_args"] = "(row_id,angle,max_label_wid defs["igTableAngledHeadersRowEx"][1]["cimguiname"] = "igTableAngledHeadersRowEx" defs["igTableAngledHeadersRowEx"][1]["defaults"] = {} defs["igTableAngledHeadersRowEx"][1]["funcname"] = "TableAngledHeadersRowEx" -defs["igTableAngledHeadersRowEx"][1]["location"] = "imgui_internal:3742" +defs["igTableAngledHeadersRowEx"][1]["location"] = "imgui_internal:3751" defs["igTableAngledHeadersRowEx"][1]["namespace"] = "ImGui" defs["igTableAngledHeadersRowEx"][1]["ov_cimguiname"] = "igTableAngledHeadersRowEx" defs["igTableAngledHeadersRowEx"][1]["ret"] = "void" @@ -30524,7 +30610,7 @@ defs["igTableBeginApplyRequests"][1]["call_args"] = "(table)" defs["igTableBeginApplyRequests"][1]["cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["defaults"] = {} defs["igTableBeginApplyRequests"][1]["funcname"] = "TableBeginApplyRequests" -defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3749" +defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3758" defs["igTableBeginApplyRequests"][1]["namespace"] = "ImGui" defs["igTableBeginApplyRequests"][1]["ov_cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["ret"] = "void" @@ -30546,7 +30632,7 @@ defs["igTableBeginCell"][1]["call_args"] = "(table,column_n)" defs["igTableBeginCell"][1]["cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["defaults"] = {} defs["igTableBeginCell"][1]["funcname"] = "TableBeginCell" -defs["igTableBeginCell"][1]["location"] = "imgui_internal:3767" +defs["igTableBeginCell"][1]["location"] = "imgui_internal:3776" defs["igTableBeginCell"][1]["namespace"] = "ImGui" defs["igTableBeginCell"][1]["ov_cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["ret"] = "void" @@ -30565,7 +30651,7 @@ defs["igTableBeginContextMenuPopup"][1]["call_args"] = "(table)" defs["igTableBeginContextMenuPopup"][1]["cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["defaults"] = {} defs["igTableBeginContextMenuPopup"][1]["funcname"] = "TableBeginContextMenuPopup" -defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3756" +defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3765" defs["igTableBeginContextMenuPopup"][1]["namespace"] = "ImGui" defs["igTableBeginContextMenuPopup"][1]["ov_cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["ret"] = "bool" @@ -30587,7 +30673,7 @@ defs["igTableBeginInitMemory"][1]["call_args"] = "(table,columns_count)" defs["igTableBeginInitMemory"][1]["cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["defaults"] = {} defs["igTableBeginInitMemory"][1]["funcname"] = "TableBeginInitMemory" -defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3748" +defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3757" defs["igTableBeginInitMemory"][1]["namespace"] = "ImGui" defs["igTableBeginInitMemory"][1]["ov_cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["ret"] = "void" @@ -30606,13 +30692,35 @@ defs["igTableBeginRow"][1]["call_args"] = "(table)" defs["igTableBeginRow"][1]["cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["defaults"] = {} defs["igTableBeginRow"][1]["funcname"] = "TableBeginRow" -defs["igTableBeginRow"][1]["location"] = "imgui_internal:3765" +defs["igTableBeginRow"][1]["location"] = "imgui_internal:3774" defs["igTableBeginRow"][1]["namespace"] = "ImGui" defs["igTableBeginRow"][1]["ov_cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["ret"] = "void" defs["igTableBeginRow"][1]["signature"] = "(ImGuiTable*)" defs["igTableBeginRow"][1]["stname"] = "" defs["igTableBeginRow"]["(ImGuiTable*)"] = defs["igTableBeginRow"][1] +defs["igTableCalcMaxColumnWidth"] = {} +defs["igTableCalcMaxColumnWidth"][1] = {} +defs["igTableCalcMaxColumnWidth"][1]["args"] = "(const ImGuiTable* table,int column_n)" +defs["igTableCalcMaxColumnWidth"][1]["argsT"] = {} +defs["igTableCalcMaxColumnWidth"][1]["argsT"][1] = {} +defs["igTableCalcMaxColumnWidth"][1]["argsT"][1]["name"] = "table" +defs["igTableCalcMaxColumnWidth"][1]["argsT"][1]["type"] = "const ImGuiTable*" +defs["igTableCalcMaxColumnWidth"][1]["argsT"][2] = {} +defs["igTableCalcMaxColumnWidth"][1]["argsT"][2]["name"] = "column_n" +defs["igTableCalcMaxColumnWidth"][1]["argsT"][2]["type"] = "int" +defs["igTableCalcMaxColumnWidth"][1]["argsoriginal"] = "(const ImGuiTable* table,int column_n)" +defs["igTableCalcMaxColumnWidth"][1]["call_args"] = "(table,column_n)" +defs["igTableCalcMaxColumnWidth"][1]["cimguiname"] = "igTableCalcMaxColumnWidth" +defs["igTableCalcMaxColumnWidth"][1]["defaults"] = {} +defs["igTableCalcMaxColumnWidth"][1]["funcname"] = "TableCalcMaxColumnWidth" +defs["igTableCalcMaxColumnWidth"][1]["location"] = "imgui_internal:3781" +defs["igTableCalcMaxColumnWidth"][1]["namespace"] = "ImGui" +defs["igTableCalcMaxColumnWidth"][1]["ov_cimguiname"] = "igTableCalcMaxColumnWidth" +defs["igTableCalcMaxColumnWidth"][1]["ret"] = "float" +defs["igTableCalcMaxColumnWidth"][1]["signature"] = "(const ImGuiTable*,int)" +defs["igTableCalcMaxColumnWidth"][1]["stname"] = "" +defs["igTableCalcMaxColumnWidth"]["(const ImGuiTable*,int)"] = defs["igTableCalcMaxColumnWidth"][1] defs["igTableDrawBorders"] = {} defs["igTableDrawBorders"][1] = {} defs["igTableDrawBorders"][1]["args"] = "(ImGuiTable* table)" @@ -30625,7 +30733,7 @@ defs["igTableDrawBorders"][1]["call_args"] = "(table)" defs["igTableDrawBorders"][1]["cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["defaults"] = {} defs["igTableDrawBorders"][1]["funcname"] = "TableDrawBorders" -defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3754" +defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3763" defs["igTableDrawBorders"][1]["namespace"] = "ImGui" defs["igTableDrawBorders"][1]["ov_cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["ret"] = "void" @@ -30647,7 +30755,7 @@ defs["igTableDrawDefaultContextMenu"][1]["call_args"] = "(table,flags_for_sectio defs["igTableDrawDefaultContextMenu"][1]["cimguiname"] = "igTableDrawDefaultContextMenu" defs["igTableDrawDefaultContextMenu"][1]["defaults"] = {} defs["igTableDrawDefaultContextMenu"][1]["funcname"] = "TableDrawDefaultContextMenu" -defs["igTableDrawDefaultContextMenu"][1]["location"] = "imgui_internal:3755" +defs["igTableDrawDefaultContextMenu"][1]["location"] = "imgui_internal:3764" defs["igTableDrawDefaultContextMenu"][1]["namespace"] = "ImGui" defs["igTableDrawDefaultContextMenu"][1]["ov_cimguiname"] = "igTableDrawDefaultContextMenu" defs["igTableDrawDefaultContextMenu"][1]["ret"] = "void" @@ -30666,7 +30774,7 @@ defs["igTableEndCell"][1]["call_args"] = "(table)" defs["igTableEndCell"][1]["cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["defaults"] = {} defs["igTableEndCell"][1]["funcname"] = "TableEndCell" -defs["igTableEndCell"][1]["location"] = "imgui_internal:3768" +defs["igTableEndCell"][1]["location"] = "imgui_internal:3777" defs["igTableEndCell"][1]["namespace"] = "ImGui" defs["igTableEndCell"][1]["ov_cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["ret"] = "void" @@ -30685,7 +30793,7 @@ defs["igTableEndRow"][1]["call_args"] = "(table)" defs["igTableEndRow"][1]["cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["defaults"] = {} defs["igTableEndRow"][1]["funcname"] = "TableEndRow" -defs["igTableEndRow"][1]["location"] = "imgui_internal:3766" +defs["igTableEndRow"][1]["location"] = "imgui_internal:3775" defs["igTableEndRow"][1]["namespace"] = "ImGui" defs["igTableEndRow"][1]["ov_cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["ret"] = "void" @@ -30704,7 +30812,7 @@ defs["igTableFindByID"][1]["call_args"] = "(id)" defs["igTableFindByID"][1]["cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["defaults"] = {} defs["igTableFindByID"][1]["funcname"] = "TableFindByID" -defs["igTableFindByID"][1]["location"] = "imgui_internal:3746" +defs["igTableFindByID"][1]["location"] = "imgui_internal:3755" defs["igTableFindByID"][1]["namespace"] = "ImGui" defs["igTableFindByID"][1]["ov_cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["ret"] = "ImGuiTable*" @@ -30726,7 +30834,7 @@ defs["igTableFixColumnSortDirection"][1]["call_args"] = "(table,column)" defs["igTableFixColumnSortDirection"][1]["cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["defaults"] = {} defs["igTableFixColumnSortDirection"][1]["funcname"] = "TableFixColumnSortDirection" -defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3763" +defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3772" defs["igTableFixColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableFixColumnSortDirection"][1]["ov_cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["ret"] = "void" @@ -30742,7 +30850,7 @@ defs["igTableGcCompactSettings"][1]["call_args"] = "()" defs["igTableGcCompactSettings"][1]["cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["defaults"] = {} defs["igTableGcCompactSettings"][1]["funcname"] = "TableGcCompactSettings" -defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3778" +defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3787" defs["igTableGcCompactSettings"][1]["namespace"] = "ImGui" defs["igTableGcCompactSettings"][1]["ov_cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["ret"] = "void" @@ -30761,7 +30869,7 @@ defs["igTableGcCompactTransientBuffers"][1]["call_args"] = "(table)" defs["igTableGcCompactTransientBuffers"][1]["cimguiname"] = "igTableGcCompactTransientBuffers" defs["igTableGcCompactTransientBuffers"][1]["defaults"] = {} defs["igTableGcCompactTransientBuffers"][1]["funcname"] = "TableGcCompactTransientBuffers" -defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3776" +defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3785" defs["igTableGcCompactTransientBuffers"][1]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][1]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TablePtr" defs["igTableGcCompactTransientBuffers"][1]["ret"] = "void" @@ -30778,7 +30886,7 @@ defs["igTableGcCompactTransientBuffers"][2]["call_args"] = "(table)" defs["igTableGcCompactTransientBuffers"][2]["cimguiname"] = "igTableGcCompactTransientBuffers" defs["igTableGcCompactTransientBuffers"][2]["defaults"] = {} defs["igTableGcCompactTransientBuffers"][2]["funcname"] = "TableGcCompactTransientBuffers" -defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3777" +defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3786" defs["igTableGcCompactTransientBuffers"][2]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][2]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TableTempDataPtr" defs["igTableGcCompactTransientBuffers"][2]["ret"] = "void" @@ -30798,7 +30906,7 @@ defs["igTableGetBoundSettings"][1]["call_args"] = "(table)" defs["igTableGetBoundSettings"][1]["cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["defaults"] = {} defs["igTableGetBoundSettings"][1]["funcname"] = "TableGetBoundSettings" -defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3784" +defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3793" defs["igTableGetBoundSettings"][1]["namespace"] = "ImGui" defs["igTableGetBoundSettings"][1]["ov_cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["ret"] = "ImGuiTableSettings*" @@ -30823,7 +30931,7 @@ defs["igTableGetCellBgRect"][1]["call_args"] = "(table,column_n)" defs["igTableGetCellBgRect"][1]["cimguiname"] = "igTableGetCellBgRect" defs["igTableGetCellBgRect"][1]["defaults"] = {} defs["igTableGetCellBgRect"][1]["funcname"] = "TableGetCellBgRect" -defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3769" +defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3778" defs["igTableGetCellBgRect"][1]["namespace"] = "ImGui" defs["igTableGetCellBgRect"][1]["nonUDT"] = 1 defs["igTableGetCellBgRect"][1]["ov_cimguiname"] = "igTableGetCellBgRect" @@ -30840,7 +30948,7 @@ defs["igTableGetColumnCount"][1]["call_args"] = "()" defs["igTableGetColumnCount"][1]["cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["defaults"] = {} defs["igTableGetColumnCount"][1]["funcname"] = "TableGetColumnCount" -defs["igTableGetColumnCount"][1]["location"] = "imgui:839" +defs["igTableGetColumnCount"][1]["location"] = "imgui:843" defs["igTableGetColumnCount"][1]["namespace"] = "ImGui" defs["igTableGetColumnCount"][1]["ov_cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["ret"] = "int" @@ -30860,7 +30968,7 @@ defs["igTableGetColumnFlags"][1]["cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["defaults"] = {} defs["igTableGetColumnFlags"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnFlags"][1]["funcname"] = "TableGetColumnFlags" -defs["igTableGetColumnFlags"][1]["location"] = "imgui:843" +defs["igTableGetColumnFlags"][1]["location"] = "imgui:847" defs["igTableGetColumnFlags"][1]["namespace"] = "ImGui" defs["igTableGetColumnFlags"][1]["ov_cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["ret"] = "ImGuiTableColumnFlags" @@ -30876,7 +30984,7 @@ defs["igTableGetColumnIndex"][1]["call_args"] = "()" defs["igTableGetColumnIndex"][1]["cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["defaults"] = {} defs["igTableGetColumnIndex"][1]["funcname"] = "TableGetColumnIndex" -defs["igTableGetColumnIndex"][1]["location"] = "imgui:840" +defs["igTableGetColumnIndex"][1]["location"] = "imgui:844" defs["igTableGetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableGetColumnIndex"][1]["ov_cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["ret"] = "int" @@ -30896,7 +31004,7 @@ defs["igTableGetColumnName"][1]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][1]["defaults"] = {} defs["igTableGetColumnName"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnName"][1]["funcname"] = "TableGetColumnName" -defs["igTableGetColumnName"][1]["location"] = "imgui:842" +defs["igTableGetColumnName"][1]["location"] = "imgui:846" defs["igTableGetColumnName"][1]["namespace"] = "ImGui" defs["igTableGetColumnName"][1]["ov_cimguiname"] = "igTableGetColumnName_Int" defs["igTableGetColumnName"][1]["ret"] = "const char*" @@ -30916,7 +31024,7 @@ defs["igTableGetColumnName"][2]["call_args"] = "(table,column_n)" defs["igTableGetColumnName"][2]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][2]["defaults"] = {} defs["igTableGetColumnName"][2]["funcname"] = "TableGetColumnName" -defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3770" +defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3779" defs["igTableGetColumnName"][2]["namespace"] = "ImGui" defs["igTableGetColumnName"][2]["ov_cimguiname"] = "igTableGetColumnName_TablePtr" defs["igTableGetColumnName"][2]["ret"] = "const char*" @@ -30936,7 +31044,7 @@ defs["igTableGetColumnNextSortDirection"][1]["call_args"] = "(column)" defs["igTableGetColumnNextSortDirection"][1]["cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["defaults"] = {} defs["igTableGetColumnNextSortDirection"][1]["funcname"] = "TableGetColumnNextSortDirection" -defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3762" +defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3771" defs["igTableGetColumnNextSortDirection"][1]["namespace"] = "ImGui" defs["igTableGetColumnNextSortDirection"][1]["ov_cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["ret"] = "ImGuiSortDirection" @@ -30962,7 +31070,7 @@ defs["igTableGetColumnResizeID"][1]["cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["defaults"] = {} defs["igTableGetColumnResizeID"][1]["defaults"]["instance_no"] = "0" defs["igTableGetColumnResizeID"][1]["funcname"] = "TableGetColumnResizeID" -defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3771" +defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3780" defs["igTableGetColumnResizeID"][1]["namespace"] = "ImGui" defs["igTableGetColumnResizeID"][1]["ov_cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["ret"] = "ImGuiID" @@ -30984,7 +31092,7 @@ defs["igTableGetColumnWidthAuto"][1]["call_args"] = "(table,column)" defs["igTableGetColumnWidthAuto"][1]["cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["defaults"] = {} defs["igTableGetColumnWidthAuto"][1]["funcname"] = "TableGetColumnWidthAuto" -defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3764" +defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3773" defs["igTableGetColumnWidthAuto"][1]["namespace"] = "ImGui" defs["igTableGetColumnWidthAuto"][1]["ov_cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["ret"] = "float" @@ -31000,7 +31108,7 @@ defs["igTableGetHeaderAngledMaxLabelWidth"][1]["call_args"] = "()" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["defaults"] = {} defs["igTableGetHeaderAngledMaxLabelWidth"][1]["funcname"] = "TableGetHeaderAngledMaxLabelWidth" -defs["igTableGetHeaderAngledMaxLabelWidth"][1]["location"] = "imgui_internal:3739" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["location"] = "imgui_internal:3748" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["namespace"] = "ImGui" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ov_cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ret"] = "float" @@ -31016,7 +31124,7 @@ defs["igTableGetHeaderRowHeight"][1]["call_args"] = "()" defs["igTableGetHeaderRowHeight"][1]["cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["defaults"] = {} defs["igTableGetHeaderRowHeight"][1]["funcname"] = "TableGetHeaderRowHeight" -defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3738" +defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3747" defs["igTableGetHeaderRowHeight"][1]["namespace"] = "ImGui" defs["igTableGetHeaderRowHeight"][1]["ov_cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["ret"] = "float" @@ -31032,7 +31140,7 @@ defs["igTableGetHoveredColumn"][1]["call_args"] = "()" defs["igTableGetHoveredColumn"][1]["cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["defaults"] = {} defs["igTableGetHoveredColumn"][1]["funcname"] = "TableGetHoveredColumn" -defs["igTableGetHoveredColumn"][1]["location"] = "imgui:845" +defs["igTableGetHoveredColumn"][1]["location"] = "imgui:849" defs["igTableGetHoveredColumn"][1]["namespace"] = "ImGui" defs["igTableGetHoveredColumn"][1]["ov_cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["ret"] = "int" @@ -31048,7 +31156,7 @@ defs["igTableGetHoveredRow"][1]["call_args"] = "()" defs["igTableGetHoveredRow"][1]["cimguiname"] = "igTableGetHoveredRow" defs["igTableGetHoveredRow"][1]["defaults"] = {} defs["igTableGetHoveredRow"][1]["funcname"] = "TableGetHoveredRow" -defs["igTableGetHoveredRow"][1]["location"] = "imgui_internal:3737" +defs["igTableGetHoveredRow"][1]["location"] = "imgui_internal:3746" defs["igTableGetHoveredRow"][1]["namespace"] = "ImGui" defs["igTableGetHoveredRow"][1]["ov_cimguiname"] = "igTableGetHoveredRow" defs["igTableGetHoveredRow"][1]["ret"] = "int" @@ -31070,7 +31178,7 @@ defs["igTableGetInstanceData"][1]["call_args"] = "(table,instance_no)" defs["igTableGetInstanceData"][1]["cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["defaults"] = {} defs["igTableGetInstanceData"][1]["funcname"] = "TableGetInstanceData" -defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3758" +defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3767" defs["igTableGetInstanceData"][1]["namespace"] = "ImGui" defs["igTableGetInstanceData"][1]["ov_cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["ret"] = "ImGuiTableInstanceData*" @@ -31092,35 +31200,13 @@ defs["igTableGetInstanceID"][1]["call_args"] = "(table,instance_no)" defs["igTableGetInstanceID"][1]["cimguiname"] = "igTableGetInstanceID" defs["igTableGetInstanceID"][1]["defaults"] = {} defs["igTableGetInstanceID"][1]["funcname"] = "TableGetInstanceID" -defs["igTableGetInstanceID"][1]["location"] = "imgui_internal:3759" +defs["igTableGetInstanceID"][1]["location"] = "imgui_internal:3768" defs["igTableGetInstanceID"][1]["namespace"] = "ImGui" defs["igTableGetInstanceID"][1]["ov_cimguiname"] = "igTableGetInstanceID" defs["igTableGetInstanceID"][1]["ret"] = "ImGuiID" defs["igTableGetInstanceID"][1]["signature"] = "(ImGuiTable*,int)" defs["igTableGetInstanceID"][1]["stname"] = "" defs["igTableGetInstanceID"]["(ImGuiTable*,int)"] = defs["igTableGetInstanceID"][1] -defs["igTableGetMaxColumnWidth"] = {} -defs["igTableGetMaxColumnWidth"][1] = {} -defs["igTableGetMaxColumnWidth"][1]["args"] = "(const ImGuiTable* table,int column_n)" -defs["igTableGetMaxColumnWidth"][1]["argsT"] = {} -defs["igTableGetMaxColumnWidth"][1]["argsT"][1] = {} -defs["igTableGetMaxColumnWidth"][1]["argsT"][1]["name"] = "table" -defs["igTableGetMaxColumnWidth"][1]["argsT"][1]["type"] = "const ImGuiTable*" -defs["igTableGetMaxColumnWidth"][1]["argsT"][2] = {} -defs["igTableGetMaxColumnWidth"][1]["argsT"][2]["name"] = "column_n" -defs["igTableGetMaxColumnWidth"][1]["argsT"][2]["type"] = "int" -defs["igTableGetMaxColumnWidth"][1]["argsoriginal"] = "(const ImGuiTable* table,int column_n)" -defs["igTableGetMaxColumnWidth"][1]["call_args"] = "(table,column_n)" -defs["igTableGetMaxColumnWidth"][1]["cimguiname"] = "igTableGetMaxColumnWidth" -defs["igTableGetMaxColumnWidth"][1]["defaults"] = {} -defs["igTableGetMaxColumnWidth"][1]["funcname"] = "TableGetMaxColumnWidth" -defs["igTableGetMaxColumnWidth"][1]["location"] = "imgui_internal:3772" -defs["igTableGetMaxColumnWidth"][1]["namespace"] = "ImGui" -defs["igTableGetMaxColumnWidth"][1]["ov_cimguiname"] = "igTableGetMaxColumnWidth" -defs["igTableGetMaxColumnWidth"][1]["ret"] = "float" -defs["igTableGetMaxColumnWidth"][1]["signature"] = "(const ImGuiTable*,int)" -defs["igTableGetMaxColumnWidth"][1]["stname"] = "" -defs["igTableGetMaxColumnWidth"]["(const ImGuiTable*,int)"] = defs["igTableGetMaxColumnWidth"][1] defs["igTableGetRowIndex"] = {} defs["igTableGetRowIndex"][1] = {} defs["igTableGetRowIndex"][1]["args"] = "()" @@ -31130,7 +31216,7 @@ defs["igTableGetRowIndex"][1]["call_args"] = "()" defs["igTableGetRowIndex"][1]["cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["defaults"] = {} defs["igTableGetRowIndex"][1]["funcname"] = "TableGetRowIndex" -defs["igTableGetRowIndex"][1]["location"] = "imgui:841" +defs["igTableGetRowIndex"][1]["location"] = "imgui:845" defs["igTableGetRowIndex"][1]["namespace"] = "ImGui" defs["igTableGetRowIndex"][1]["ov_cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["ret"] = "int" @@ -31146,7 +31232,7 @@ defs["igTableGetSortSpecs"][1]["call_args"] = "()" defs["igTableGetSortSpecs"][1]["cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["defaults"] = {} defs["igTableGetSortSpecs"][1]["funcname"] = "TableGetSortSpecs" -defs["igTableGetSortSpecs"][1]["location"] = "imgui:838" +defs["igTableGetSortSpecs"][1]["location"] = "imgui:842" defs["igTableGetSortSpecs"][1]["namespace"] = "ImGui" defs["igTableGetSortSpecs"][1]["ov_cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["ret"] = "ImGuiTableSortSpecs*" @@ -31165,7 +31251,7 @@ defs["igTableHeader"][1]["call_args"] = "(label)" defs["igTableHeader"][1]["cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["defaults"] = {} defs["igTableHeader"][1]["funcname"] = "TableHeader" -defs["igTableHeader"][1]["location"] = "imgui:828" +defs["igTableHeader"][1]["location"] = "imgui:832" defs["igTableHeader"][1]["namespace"] = "ImGui" defs["igTableHeader"][1]["ov_cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["ret"] = "void" @@ -31181,7 +31267,7 @@ defs["igTableHeadersRow"][1]["call_args"] = "()" defs["igTableHeadersRow"][1]["cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["defaults"] = {} defs["igTableHeadersRow"][1]["funcname"] = "TableHeadersRow" -defs["igTableHeadersRow"][1]["location"] = "imgui:829" +defs["igTableHeadersRow"][1]["location"] = "imgui:833" defs["igTableHeadersRow"][1]["namespace"] = "ImGui" defs["igTableHeadersRow"][1]["ov_cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["ret"] = "void" @@ -31200,7 +31286,7 @@ defs["igTableLoadSettings"][1]["call_args"] = "(table)" defs["igTableLoadSettings"][1]["cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["defaults"] = {} defs["igTableLoadSettings"][1]["funcname"] = "TableLoadSettings" -defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3781" +defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3790" defs["igTableLoadSettings"][1]["namespace"] = "ImGui" defs["igTableLoadSettings"][1]["ov_cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["ret"] = "void" @@ -31219,7 +31305,7 @@ defs["igTableMergeDrawChannels"][1]["call_args"] = "(table)" defs["igTableMergeDrawChannels"][1]["cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["defaults"] = {} defs["igTableMergeDrawChannels"][1]["funcname"] = "TableMergeDrawChannels" -defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3757" +defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3766" defs["igTableMergeDrawChannels"][1]["namespace"] = "ImGui" defs["igTableMergeDrawChannels"][1]["ov_cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["ret"] = "void" @@ -31235,7 +31321,7 @@ defs["igTableNextColumn"][1]["call_args"] = "()" defs["igTableNextColumn"][1]["cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["defaults"] = {} defs["igTableNextColumn"][1]["funcname"] = "TableNextColumn" -defs["igTableNextColumn"][1]["location"] = "imgui:815" +defs["igTableNextColumn"][1]["location"] = "imgui:819" defs["igTableNextColumn"][1]["namespace"] = "ImGui" defs["igTableNextColumn"][1]["ov_cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["ret"] = "bool" @@ -31259,7 +31345,7 @@ defs["igTableNextRow"][1]["defaults"] = {} defs["igTableNextRow"][1]["defaults"]["min_row_height"] = "0.0f" defs["igTableNextRow"][1]["defaults"]["row_flags"] = "0" defs["igTableNextRow"][1]["funcname"] = "TableNextRow" -defs["igTableNextRow"][1]["location"] = "imgui:814" +defs["igTableNextRow"][1]["location"] = "imgui:818" defs["igTableNextRow"][1]["namespace"] = "ImGui" defs["igTableNextRow"][1]["ov_cimguiname"] = "igTableNextRow" defs["igTableNextRow"][1]["ret"] = "void" @@ -31279,7 +31365,7 @@ defs["igTableOpenContextMenu"][1]["cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["defaults"] = {} defs["igTableOpenContextMenu"][1]["defaults"]["column_n"] = "-1" defs["igTableOpenContextMenu"][1]["funcname"] = "TableOpenContextMenu" -defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3734" +defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3743" defs["igTableOpenContextMenu"][1]["namespace"] = "ImGui" defs["igTableOpenContextMenu"][1]["ov_cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["ret"] = "void" @@ -31295,7 +31381,7 @@ defs["igTablePopBackgroundChannel"][1]["call_args"] = "()" defs["igTablePopBackgroundChannel"][1]["cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["defaults"] = {} defs["igTablePopBackgroundChannel"][1]["funcname"] = "TablePopBackgroundChannel" -defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3741" +defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3750" defs["igTablePopBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePopBackgroundChannel"][1]["ov_cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["ret"] = "void" @@ -31311,7 +31397,7 @@ defs["igTablePushBackgroundChannel"][1]["call_args"] = "()" defs["igTablePushBackgroundChannel"][1]["cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["defaults"] = {} defs["igTablePushBackgroundChannel"][1]["funcname"] = "TablePushBackgroundChannel" -defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3740" +defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3749" defs["igTablePushBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePushBackgroundChannel"][1]["ov_cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["ret"] = "void" @@ -31330,7 +31416,7 @@ defs["igTableRemove"][1]["call_args"] = "(table)" defs["igTableRemove"][1]["cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["defaults"] = {} defs["igTableRemove"][1]["funcname"] = "TableRemove" -defs["igTableRemove"][1]["location"] = "imgui_internal:3775" +defs["igTableRemove"][1]["location"] = "imgui_internal:3784" defs["igTableRemove"][1]["namespace"] = "ImGui" defs["igTableRemove"][1]["ov_cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["ret"] = "void" @@ -31349,7 +31435,7 @@ defs["igTableResetSettings"][1]["call_args"] = "(table)" defs["igTableResetSettings"][1]["cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["defaults"] = {} defs["igTableResetSettings"][1]["funcname"] = "TableResetSettings" -defs["igTableResetSettings"][1]["location"] = "imgui_internal:3783" +defs["igTableResetSettings"][1]["location"] = "imgui_internal:3792" defs["igTableResetSettings"][1]["namespace"] = "ImGui" defs["igTableResetSettings"][1]["ov_cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["ret"] = "void" @@ -31368,7 +31454,7 @@ defs["igTableSaveSettings"][1]["call_args"] = "(table)" defs["igTableSaveSettings"][1]["cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["defaults"] = {} defs["igTableSaveSettings"][1]["funcname"] = "TableSaveSettings" -defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3782" +defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3791" defs["igTableSaveSettings"][1]["namespace"] = "ImGui" defs["igTableSaveSettings"][1]["ov_cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["ret"] = "void" @@ -31394,7 +31480,7 @@ defs["igTableSetBgColor"][1]["cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["defaults"] = {} defs["igTableSetBgColor"][1]["defaults"]["column_n"] = "-1" defs["igTableSetBgColor"][1]["funcname"] = "TableSetBgColor" -defs["igTableSetBgColor"][1]["location"] = "imgui:846" +defs["igTableSetBgColor"][1]["location"] = "imgui:850" defs["igTableSetBgColor"][1]["namespace"] = "ImGui" defs["igTableSetBgColor"][1]["ov_cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["ret"] = "void" @@ -31416,7 +31502,7 @@ defs["igTableSetColumnEnabled"][1]["call_args"] = "(column_n,v)" defs["igTableSetColumnEnabled"][1]["cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["defaults"] = {} defs["igTableSetColumnEnabled"][1]["funcname"] = "TableSetColumnEnabled" -defs["igTableSetColumnEnabled"][1]["location"] = "imgui:844" +defs["igTableSetColumnEnabled"][1]["location"] = "imgui:848" defs["igTableSetColumnEnabled"][1]["namespace"] = "ImGui" defs["igTableSetColumnEnabled"][1]["ov_cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["ret"] = "void" @@ -31435,7 +31521,7 @@ defs["igTableSetColumnIndex"][1]["call_args"] = "(column_n)" defs["igTableSetColumnIndex"][1]["cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["defaults"] = {} defs["igTableSetColumnIndex"][1]["funcname"] = "TableSetColumnIndex" -defs["igTableSetColumnIndex"][1]["location"] = "imgui:816" +defs["igTableSetColumnIndex"][1]["location"] = "imgui:820" defs["igTableSetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableSetColumnIndex"][1]["ov_cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["ret"] = "bool" @@ -31460,7 +31546,7 @@ defs["igTableSetColumnSortDirection"][1]["call_args"] = "(column_n,sort_directio defs["igTableSetColumnSortDirection"][1]["cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["defaults"] = {} defs["igTableSetColumnSortDirection"][1]["funcname"] = "TableSetColumnSortDirection" -defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3736" +defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3745" defs["igTableSetColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableSetColumnSortDirection"][1]["ov_cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["ret"] = "void" @@ -31482,7 +31568,7 @@ defs["igTableSetColumnWidth"][1]["call_args"] = "(column_n,width)" defs["igTableSetColumnWidth"][1]["cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["defaults"] = {} defs["igTableSetColumnWidth"][1]["funcname"] = "TableSetColumnWidth" -defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3735" +defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3744" defs["igTableSetColumnWidth"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidth"][1]["ov_cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["ret"] = "void" @@ -31501,7 +31587,7 @@ defs["igTableSetColumnWidthAutoAll"][1]["call_args"] = "(table)" defs["igTableSetColumnWidthAutoAll"][1]["cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["defaults"] = {} defs["igTableSetColumnWidthAutoAll"][1]["funcname"] = "TableSetColumnWidthAutoAll" -defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3774" +defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3783" defs["igTableSetColumnWidthAutoAll"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoAll"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["ret"] = "void" @@ -31523,7 +31609,7 @@ defs["igTableSetColumnWidthAutoSingle"][1]["call_args"] = "(table,column_n)" defs["igTableSetColumnWidthAutoSingle"][1]["cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["defaults"] = {} defs["igTableSetColumnWidthAutoSingle"][1]["funcname"] = "TableSetColumnWidthAutoSingle" -defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3773" +defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3782" defs["igTableSetColumnWidthAutoSingle"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoSingle"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["ret"] = "void" @@ -31539,7 +31625,7 @@ defs["igTableSettingsAddSettingsHandler"][1]["call_args"] = "()" defs["igTableSettingsAddSettingsHandler"][1]["cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["defaults"] = {} defs["igTableSettingsAddSettingsHandler"][1]["funcname"] = "TableSettingsAddSettingsHandler" -defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3785" +defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3794" defs["igTableSettingsAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igTableSettingsAddSettingsHandler"][1]["ov_cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["ret"] = "void" @@ -31561,7 +31647,7 @@ defs["igTableSettingsCreate"][1]["call_args"] = "(id,columns_count)" defs["igTableSettingsCreate"][1]["cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["defaults"] = {} defs["igTableSettingsCreate"][1]["funcname"] = "TableSettingsCreate" -defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3786" +defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3795" defs["igTableSettingsCreate"][1]["namespace"] = "ImGui" defs["igTableSettingsCreate"][1]["ov_cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["ret"] = "ImGuiTableSettings*" @@ -31580,7 +31666,7 @@ defs["igTableSettingsFindByID"][1]["call_args"] = "(id)" defs["igTableSettingsFindByID"][1]["cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["defaults"] = {} defs["igTableSettingsFindByID"][1]["funcname"] = "TableSettingsFindByID" -defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3787" +defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3796" defs["igTableSettingsFindByID"][1]["namespace"] = "ImGui" defs["igTableSettingsFindByID"][1]["ov_cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["ret"] = "ImGuiTableSettings*" @@ -31611,7 +31697,7 @@ defs["igTableSetupColumn"][1]["defaults"]["flags"] = "0" defs["igTableSetupColumn"][1]["defaults"]["init_width_or_weight"] = "0.0f" defs["igTableSetupColumn"][1]["defaults"]["user_id"] = "0" defs["igTableSetupColumn"][1]["funcname"] = "TableSetupColumn" -defs["igTableSetupColumn"][1]["location"] = "imgui:826" +defs["igTableSetupColumn"][1]["location"] = "imgui:830" defs["igTableSetupColumn"][1]["namespace"] = "ImGui" defs["igTableSetupColumn"][1]["ov_cimguiname"] = "igTableSetupColumn" defs["igTableSetupColumn"][1]["ret"] = "void" @@ -31630,7 +31716,7 @@ defs["igTableSetupDrawChannels"][1]["call_args"] = "(table)" defs["igTableSetupDrawChannels"][1]["cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["defaults"] = {} defs["igTableSetupDrawChannels"][1]["funcname"] = "TableSetupDrawChannels" -defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3750" +defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3759" defs["igTableSetupDrawChannels"][1]["namespace"] = "ImGui" defs["igTableSetupDrawChannels"][1]["ov_cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["ret"] = "void" @@ -31652,7 +31738,7 @@ defs["igTableSetupScrollFreeze"][1]["call_args"] = "(cols,rows)" defs["igTableSetupScrollFreeze"][1]["cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["defaults"] = {} defs["igTableSetupScrollFreeze"][1]["funcname"] = "TableSetupScrollFreeze" -defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:827" +defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:831" defs["igTableSetupScrollFreeze"][1]["namespace"] = "ImGui" defs["igTableSetupScrollFreeze"][1]["ov_cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["ret"] = "void" @@ -31671,7 +31757,7 @@ defs["igTableSortSpecsBuild"][1]["call_args"] = "(table)" defs["igTableSortSpecsBuild"][1]["cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["defaults"] = {} defs["igTableSortSpecsBuild"][1]["funcname"] = "TableSortSpecsBuild" -defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3761" +defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3770" defs["igTableSortSpecsBuild"][1]["namespace"] = "ImGui" defs["igTableSortSpecsBuild"][1]["ov_cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["ret"] = "void" @@ -31690,7 +31776,7 @@ defs["igTableSortSpecsSanitize"][1]["call_args"] = "(table)" defs["igTableSortSpecsSanitize"][1]["cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["defaults"] = {} defs["igTableSortSpecsSanitize"][1]["funcname"] = "TableSortSpecsSanitize" -defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3760" +defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3769" defs["igTableSortSpecsSanitize"][1]["namespace"] = "ImGui" defs["igTableSortSpecsSanitize"][1]["ov_cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["ret"] = "void" @@ -31709,7 +31795,7 @@ defs["igTableUpdateBorders"][1]["call_args"] = "(table)" defs["igTableUpdateBorders"][1]["cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["defaults"] = {} defs["igTableUpdateBorders"][1]["funcname"] = "TableUpdateBorders" -defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3752" +defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3761" defs["igTableUpdateBorders"][1]["namespace"] = "ImGui" defs["igTableUpdateBorders"][1]["ov_cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["ret"] = "void" @@ -31728,7 +31814,7 @@ defs["igTableUpdateColumnsWeightFromWidth"][1]["call_args"] = "(table)" defs["igTableUpdateColumnsWeightFromWidth"][1]["cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["defaults"] = {} defs["igTableUpdateColumnsWeightFromWidth"][1]["funcname"] = "TableUpdateColumnsWeightFromWidth" -defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3753" +defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3762" defs["igTableUpdateColumnsWeightFromWidth"][1]["namespace"] = "ImGui" defs["igTableUpdateColumnsWeightFromWidth"][1]["ov_cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["ret"] = "void" @@ -31747,7 +31833,7 @@ defs["igTableUpdateLayout"][1]["call_args"] = "(table)" defs["igTableUpdateLayout"][1]["cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["defaults"] = {} defs["igTableUpdateLayout"][1]["funcname"] = "TableUpdateLayout" -defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3751" +defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3760" defs["igTableUpdateLayout"][1]["namespace"] = "ImGui" defs["igTableUpdateLayout"][1]["ov_cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["ret"] = "void" @@ -31766,7 +31852,7 @@ defs["igTeleportMousePos"][1]["call_args"] = "(pos)" defs["igTeleportMousePos"][1]["cimguiname"] = "igTeleportMousePos" defs["igTeleportMousePos"][1]["defaults"] = {} defs["igTeleportMousePos"][1]["funcname"] = "TeleportMousePos" -defs["igTeleportMousePos"][1]["location"] = "imgui_internal:3573" +defs["igTeleportMousePos"][1]["location"] = "imgui_internal:3582" defs["igTeleportMousePos"][1]["namespace"] = "ImGui" defs["igTeleportMousePos"][1]["ov_cimguiname"] = "igTeleportMousePos" defs["igTeleportMousePos"][1]["ret"] = "void" @@ -31785,7 +31871,7 @@ defs["igTempInputIsActive"][1]["call_args"] = "(id)" defs["igTempInputIsActive"][1]["cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["defaults"] = {} defs["igTempInputIsActive"][1]["funcname"] = "TempInputIsActive" -defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3892" +defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3901" defs["igTempInputIsActive"][1]["namespace"] = "ImGui" defs["igTempInputIsActive"][1]["ov_cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["ret"] = "bool" @@ -31827,7 +31913,7 @@ defs["igTempInputScalar"][1]["defaults"] = {} defs["igTempInputScalar"][1]["defaults"]["p_clamp_max"] = "NULL" defs["igTempInputScalar"][1]["defaults"]["p_clamp_min"] = "NULL" defs["igTempInputScalar"][1]["funcname"] = "TempInputScalar" -defs["igTempInputScalar"][1]["location"] = "imgui_internal:3891" +defs["igTempInputScalar"][1]["location"] = "imgui_internal:3900" defs["igTempInputScalar"][1]["namespace"] = "ImGui" defs["igTempInputScalar"][1]["ov_cimguiname"] = "igTempInputScalar" defs["igTempInputScalar"][1]["ret"] = "bool" @@ -31861,7 +31947,7 @@ defs["igTempInputText"][1]["call_args"] = "(bb,id,label,buf,buf_size,flags)" defs["igTempInputText"][1]["cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["defaults"] = {} defs["igTempInputText"][1]["funcname"] = "TempInputText" -defs["igTempInputText"][1]["location"] = "imgui_internal:3890" +defs["igTempInputText"][1]["location"] = "imgui_internal:3899" defs["igTempInputText"][1]["namespace"] = "ImGui" defs["igTempInputText"][1]["ov_cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["ret"] = "bool" @@ -31883,7 +31969,7 @@ defs["igTestKeyOwner"][1]["call_args"] = "(key,owner_id)" defs["igTestKeyOwner"][1]["cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["defaults"] = {} defs["igTestKeyOwner"][1]["funcname"] = "TestKeyOwner" -defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3592" +defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3601" defs["igTestKeyOwner"][1]["namespace"] = "ImGui" defs["igTestKeyOwner"][1]["ov_cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["ret"] = "bool" @@ -31905,7 +31991,7 @@ defs["igTestShortcutRouting"][1]["call_args"] = "(key_chord,owner_id)" defs["igTestShortcutRouting"][1]["cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["defaults"] = {} defs["igTestShortcutRouting"][1]["funcname"] = "TestShortcutRouting" -defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3626" +defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3635" defs["igTestShortcutRouting"][1]["namespace"] = "ImGui" defs["igTestShortcutRouting"][1]["ov_cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["ret"] = "bool" @@ -31928,7 +32014,7 @@ defs["igText"][1]["cimguiname"] = "igText" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" -defs["igText"][1]["location"] = "imgui:533" +defs["igText"][1]["location"] = "imgui:537" defs["igText"][1]["namespace"] = "ImGui" defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" @@ -31954,7 +32040,7 @@ defs["igTextColored"][1]["cimguiname"] = "igTextColored" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" -defs["igTextColored"][1]["location"] = "imgui:535" +defs["igTextColored"][1]["location"] = "imgui:539" defs["igTextColored"][1]["namespace"] = "ImGui" defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" @@ -31979,7 +32065,7 @@ defs["igTextColoredV"][1]["call_args"] = "(col,fmt,args)" defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" -defs["igTextColoredV"][1]["location"] = "imgui:536" +defs["igTextColoredV"][1]["location"] = "imgui:540" defs["igTextColoredV"][1]["namespace"] = "ImGui" defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" @@ -32002,7 +32088,7 @@ defs["igTextDisabled"][1]["cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" -defs["igTextDisabled"][1]["location"] = "imgui:537" +defs["igTextDisabled"][1]["location"] = "imgui:541" defs["igTextDisabled"][1]["namespace"] = "ImGui" defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" @@ -32024,7 +32110,7 @@ defs["igTextDisabledV"][1]["call_args"] = "(fmt,args)" defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" -defs["igTextDisabledV"][1]["location"] = "imgui:538" +defs["igTextDisabledV"][1]["location"] = "imgui:542" defs["igTextDisabledV"][1]["namespace"] = "ImGui" defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" @@ -32051,7 +32137,7 @@ defs["igTextEx"][1]["defaults"] = {} defs["igTextEx"][1]["defaults"]["flags"] = "0" defs["igTextEx"][1]["defaults"]["text_end"] = "NULL" defs["igTextEx"][1]["funcname"] = "TextEx" -defs["igTextEx"][1]["location"] = "imgui_internal:3837" +defs["igTextEx"][1]["location"] = "imgui_internal:3846" defs["igTextEx"][1]["namespace"] = "ImGui" defs["igTextEx"][1]["ov_cimguiname"] = "igTextEx" defs["igTextEx"][1]["ret"] = "void" @@ -32070,7 +32156,7 @@ defs["igTextLink"][1]["call_args"] = "(label)" defs["igTextLink"][1]["cimguiname"] = "igTextLink" defs["igTextLink"][1]["defaults"] = {} defs["igTextLink"][1]["funcname"] = "TextLink" -defs["igTextLink"][1]["location"] = "imgui:561" +defs["igTextLink"][1]["location"] = "imgui:565" defs["igTextLink"][1]["namespace"] = "ImGui" defs["igTextLink"][1]["ov_cimguiname"] = "igTextLink" defs["igTextLink"][1]["ret"] = "bool" @@ -32093,7 +32179,7 @@ defs["igTextLinkOpenURL"][1]["cimguiname"] = "igTextLinkOpenURL" defs["igTextLinkOpenURL"][1]["defaults"] = {} defs["igTextLinkOpenURL"][1]["defaults"]["url"] = "NULL" defs["igTextLinkOpenURL"][1]["funcname"] = "TextLinkOpenURL" -defs["igTextLinkOpenURL"][1]["location"] = "imgui:562" +defs["igTextLinkOpenURL"][1]["location"] = "imgui:566" defs["igTextLinkOpenURL"][1]["namespace"] = "ImGui" defs["igTextLinkOpenURL"][1]["ov_cimguiname"] = "igTextLinkOpenURL" defs["igTextLinkOpenURL"][1]["ret"] = "void" @@ -32116,7 +32202,7 @@ defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["defaults"] = {} defs["igTextUnformatted"][1]["defaults"]["text_end"] = "NULL" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" -defs["igTextUnformatted"][1]["location"] = "imgui:532" +defs["igTextUnformatted"][1]["location"] = "imgui:536" defs["igTextUnformatted"][1]["namespace"] = "ImGui" defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" @@ -32138,7 +32224,7 @@ defs["igTextV"][1]["call_args"] = "(fmt,args)" defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" -defs["igTextV"][1]["location"] = "imgui:534" +defs["igTextV"][1]["location"] = "imgui:538" defs["igTextV"][1]["namespace"] = "ImGui" defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" @@ -32161,7 +32247,7 @@ defs["igTextWrapped"][1]["cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" -defs["igTextWrapped"][1]["location"] = "imgui:539" +defs["igTextWrapped"][1]["location"] = "imgui:543" defs["igTextWrapped"][1]["namespace"] = "ImGui" defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" @@ -32183,7 +32269,7 @@ defs["igTextWrappedV"][1]["call_args"] = "(fmt,args)" defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" -defs["igTextWrappedV"][1]["location"] = "imgui:540" +defs["igTextWrappedV"][1]["location"] = "imgui:544" defs["igTextWrappedV"][1]["namespace"] = "ImGui" defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" @@ -32208,7 +32294,7 @@ defs["igTranslateWindowsInViewport"][1]["call_args"] = "(viewport,old_pos,new_po defs["igTranslateWindowsInViewport"][1]["cimguiname"] = "igTranslateWindowsInViewport" defs["igTranslateWindowsInViewport"][1]["defaults"] = {} defs["igTranslateWindowsInViewport"][1]["funcname"] = "TranslateWindowsInViewport" -defs["igTranslateWindowsInViewport"][1]["location"] = "imgui_internal:3408" +defs["igTranslateWindowsInViewport"][1]["location"] = "imgui_internal:3417" defs["igTranslateWindowsInViewport"][1]["namespace"] = "ImGui" defs["igTranslateWindowsInViewport"][1]["ov_cimguiname"] = "igTranslateWindowsInViewport" defs["igTranslateWindowsInViewport"][1]["ret"] = "void" @@ -32227,7 +32313,7 @@ defs["igTreeNode"][1]["call_args"] = "(label)" defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" -defs["igTreeNode"][1]["location"] = "imgui:656" +defs["igTreeNode"][1]["location"] = "imgui:660" defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNode_Str" defs["igTreeNode"][1]["ret"] = "bool" @@ -32251,7 +32337,7 @@ defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" -defs["igTreeNode"][2]["location"] = "imgui:657" +defs["igTreeNode"][2]["location"] = "imgui:661" defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNode_StrStr" defs["igTreeNode"][2]["ret"] = "bool" @@ -32275,7 +32361,7 @@ defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" -defs["igTreeNode"][3]["location"] = "imgui:658" +defs["igTreeNode"][3]["location"] = "imgui:662" defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNode_Ptr" defs["igTreeNode"][3]["ret"] = "bool" @@ -32306,7 +32392,7 @@ defs["igTreeNodeBehavior"][1]["cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["defaults"] = {} defs["igTreeNodeBehavior"][1]["defaults"]["label_end"] = "NULL" defs["igTreeNodeBehavior"][1]["funcname"] = "TreeNodeBehavior" -defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3863" +defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3872" defs["igTreeNodeBehavior"][1]["namespace"] = "ImGui" defs["igTreeNodeBehavior"][1]["ov_cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["ret"] = "bool" @@ -32329,7 +32415,7 @@ defs["igTreeNodeEx"][1]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" -defs["igTreeNodeEx"][1]["location"] = "imgui:661" +defs["igTreeNodeEx"][1]["location"] = "imgui:665" defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeEx_Str" defs["igTreeNodeEx"][1]["ret"] = "bool" @@ -32356,7 +32442,7 @@ defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" -defs["igTreeNodeEx"][2]["location"] = "imgui:662" +defs["igTreeNodeEx"][2]["location"] = "imgui:666" defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeEx_StrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" @@ -32383,7 +32469,7 @@ defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" -defs["igTreeNodeEx"][3]["location"] = "imgui:663" +defs["igTreeNodeEx"][3]["location"] = "imgui:667" defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeEx_Ptr" defs["igTreeNodeEx"][3]["ret"] = "bool" @@ -32413,7 +32499,7 @@ defs["igTreeNodeExV"][1]["call_args"] = "(str_id,flags,fmt,args)" defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][1]["location"] = "imgui:664" +defs["igTreeNodeExV"][1]["location"] = "imgui:668" defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExV_Str" defs["igTreeNodeExV"][1]["ret"] = "bool" @@ -32439,7 +32525,7 @@ defs["igTreeNodeExV"][2]["call_args"] = "(ptr_id,flags,fmt,args)" defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][2]["location"] = "imgui:665" +defs["igTreeNodeExV"][2]["location"] = "imgui:669" defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExV_Ptr" defs["igTreeNodeExV"][2]["ret"] = "bool" @@ -32459,7 +32545,7 @@ defs["igTreeNodeGetOpen"][1]["call_args"] = "(storage_id)" defs["igTreeNodeGetOpen"][1]["cimguiname"] = "igTreeNodeGetOpen" defs["igTreeNodeGetOpen"][1]["defaults"] = {} defs["igTreeNodeGetOpen"][1]["funcname"] = "TreeNodeGetOpen" -defs["igTreeNodeGetOpen"][1]["location"] = "imgui_internal:3865" +defs["igTreeNodeGetOpen"][1]["location"] = "imgui_internal:3874" defs["igTreeNodeGetOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeGetOpen"][1]["ov_cimguiname"] = "igTreeNodeGetOpen" defs["igTreeNodeGetOpen"][1]["ret"] = "bool" @@ -32481,7 +32567,7 @@ defs["igTreeNodeSetOpen"][1]["call_args"] = "(storage_id,open)" defs["igTreeNodeSetOpen"][1]["cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["defaults"] = {} defs["igTreeNodeSetOpen"][1]["funcname"] = "TreeNodeSetOpen" -defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3866" +defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3875" defs["igTreeNodeSetOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeSetOpen"][1]["ov_cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["ret"] = "void" @@ -32503,7 +32589,7 @@ defs["igTreeNodeUpdateNextOpen"][1]["call_args"] = "(storage_id,flags)" defs["igTreeNodeUpdateNextOpen"][1]["cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["defaults"] = {} defs["igTreeNodeUpdateNextOpen"][1]["funcname"] = "TreeNodeUpdateNextOpen" -defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3867" +defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3876" defs["igTreeNodeUpdateNextOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeUpdateNextOpen"][1]["ov_cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["ret"] = "bool" @@ -32528,7 +32614,7 @@ defs["igTreeNodeV"][1]["call_args"] = "(str_id,fmt,args)" defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][1]["location"] = "imgui:659" +defs["igTreeNodeV"][1]["location"] = "imgui:663" defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeV_Str" defs["igTreeNodeV"][1]["ret"] = "bool" @@ -32551,7 +32637,7 @@ defs["igTreeNodeV"][2]["call_args"] = "(ptr_id,fmt,args)" defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][2]["location"] = "imgui:660" +defs["igTreeNodeV"][2]["location"] = "imgui:664" defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeV_Ptr" defs["igTreeNodeV"][2]["ret"] = "bool" @@ -32568,7 +32654,7 @@ defs["igTreePop"][1]["call_args"] = "()" defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" -defs["igTreePop"][1]["location"] = "imgui:668" +defs["igTreePop"][1]["location"] = "imgui:672" defs["igTreePop"][1]["namespace"] = "ImGui" defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" @@ -32587,7 +32673,7 @@ defs["igTreePush"][1]["call_args"] = "(str_id)" defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" -defs["igTreePush"][1]["location"] = "imgui:666" +defs["igTreePush"][1]["location"] = "imgui:670" defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePush_Str" defs["igTreePush"][1]["ret"] = "void" @@ -32604,7 +32690,7 @@ defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["defaults"] = {} defs["igTreePush"][2]["funcname"] = "TreePush" -defs["igTreePush"][2]["location"] = "imgui:667" +defs["igTreePush"][2]["location"] = "imgui:671" defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePush_Ptr" defs["igTreePush"][2]["ret"] = "void" @@ -32624,7 +32710,7 @@ defs["igTreePushOverrideID"][1]["call_args"] = "(id)" defs["igTreePushOverrideID"][1]["cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["defaults"] = {} defs["igTreePushOverrideID"][1]["funcname"] = "TreePushOverrideID" -defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3864" +defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3873" defs["igTreePushOverrideID"][1]["namespace"] = "ImGui" defs["igTreePushOverrideID"][1]["ov_cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["ret"] = "void" @@ -32654,7 +32740,7 @@ defs["igTypingSelectFindBestLeadingMatch"][1]["call_args"] = "(req,items_count,g defs["igTypingSelectFindBestLeadingMatch"][1]["cimguiname"] = "igTypingSelectFindBestLeadingMatch" defs["igTypingSelectFindBestLeadingMatch"][1]["defaults"] = {} defs["igTypingSelectFindBestLeadingMatch"][1]["funcname"] = "TypingSelectFindBestLeadingMatch" -defs["igTypingSelectFindBestLeadingMatch"][1]["location"] = "imgui_internal:3707" +defs["igTypingSelectFindBestLeadingMatch"][1]["location"] = "imgui_internal:3716" defs["igTypingSelectFindBestLeadingMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindBestLeadingMatch"][1]["ov_cimguiname"] = "igTypingSelectFindBestLeadingMatch" defs["igTypingSelectFindBestLeadingMatch"][1]["ret"] = "int" @@ -32687,7 +32773,7 @@ defs["igTypingSelectFindMatch"][1]["call_args"] = "(req,items_count,get_item_nam defs["igTypingSelectFindMatch"][1]["cimguiname"] = "igTypingSelectFindMatch" defs["igTypingSelectFindMatch"][1]["defaults"] = {} defs["igTypingSelectFindMatch"][1]["funcname"] = "TypingSelectFindMatch" -defs["igTypingSelectFindMatch"][1]["location"] = "imgui_internal:3705" +defs["igTypingSelectFindMatch"][1]["location"] = "imgui_internal:3714" defs["igTypingSelectFindMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindMatch"][1]["ov_cimguiname"] = "igTypingSelectFindMatch" defs["igTypingSelectFindMatch"][1]["ret"] = "int" @@ -32720,7 +32806,7 @@ defs["igTypingSelectFindNextSingleCharMatch"][1]["call_args"] = "(req,items_coun defs["igTypingSelectFindNextSingleCharMatch"][1]["cimguiname"] = "igTypingSelectFindNextSingleCharMatch" defs["igTypingSelectFindNextSingleCharMatch"][1]["defaults"] = {} defs["igTypingSelectFindNextSingleCharMatch"][1]["funcname"] = "TypingSelectFindNextSingleCharMatch" -defs["igTypingSelectFindNextSingleCharMatch"][1]["location"] = "imgui_internal:3706" +defs["igTypingSelectFindNextSingleCharMatch"][1]["location"] = "imgui_internal:3715" defs["igTypingSelectFindNextSingleCharMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindNextSingleCharMatch"][1]["ov_cimguiname"] = "igTypingSelectFindNextSingleCharMatch" defs["igTypingSelectFindNextSingleCharMatch"][1]["ret"] = "int" @@ -32740,7 +32826,7 @@ defs["igUnindent"][1]["cimguiname"] = "igUnindent" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" -defs["igUnindent"][1]["location"] = "imgui:501" +defs["igUnindent"][1]["location"] = "imgui:505" defs["igUnindent"][1]["namespace"] = "ImGui" defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" @@ -32756,7 +32842,7 @@ defs["igUpdateHoveredWindowAndCaptureFlags"][1]["call_args"] = "()" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["defaults"] = {} defs["igUpdateHoveredWindowAndCaptureFlags"][1]["funcname"] = "UpdateHoveredWindowAndCaptureFlags" -defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:3395" +defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:3404" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["namespace"] = "ImGui" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ov_cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ret"] = "void" @@ -32775,7 +32861,7 @@ defs["igUpdateInputEvents"][1]["call_args"] = "(trickle_fast_inputs)" defs["igUpdateInputEvents"][1]["cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["defaults"] = {} defs["igUpdateInputEvents"][1]["funcname"] = "UpdateInputEvents" -defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:3394" +defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:3403" defs["igUpdateInputEvents"][1]["namespace"] = "ImGui" defs["igUpdateInputEvents"][1]["ov_cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["ret"] = "void" @@ -32791,7 +32877,7 @@ defs["igUpdateMouseMovingWindowEndFrame"][1]["call_args"] = "()" defs["igUpdateMouseMovingWindowEndFrame"][1]["cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["defaults"] = {} defs["igUpdateMouseMovingWindowEndFrame"][1]["funcname"] = "UpdateMouseMovingWindowEndFrame" -defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:3400" +defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:3409" defs["igUpdateMouseMovingWindowEndFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowEndFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["ret"] = "void" @@ -32807,7 +32893,7 @@ defs["igUpdateMouseMovingWindowNewFrame"][1]["call_args"] = "()" defs["igUpdateMouseMovingWindowNewFrame"][1]["cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["defaults"] = {} defs["igUpdateMouseMovingWindowNewFrame"][1]["funcname"] = "UpdateMouseMovingWindowNewFrame" -defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:3399" +defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:3408" defs["igUpdateMouseMovingWindowNewFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowNewFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["ret"] = "void" @@ -32823,7 +32909,7 @@ defs["igUpdatePlatformWindows"][1]["call_args"] = "()" defs["igUpdatePlatformWindows"][1]["cimguiname"] = "igUpdatePlatformWindows" defs["igUpdatePlatformWindows"][1]["defaults"] = {} defs["igUpdatePlatformWindows"][1]["funcname"] = "UpdatePlatformWindows" -defs["igUpdatePlatformWindows"][1]["location"] = "imgui:1080" +defs["igUpdatePlatformWindows"][1]["location"] = "imgui:1083" defs["igUpdatePlatformWindows"][1]["namespace"] = "ImGui" defs["igUpdatePlatformWindows"][1]["ov_cimguiname"] = "igUpdatePlatformWindows" defs["igUpdatePlatformWindows"][1]["ret"] = "void" @@ -32848,7 +32934,7 @@ defs["igUpdateWindowParentAndRootLinks"][1]["call_args"] = "(window,flags,parent defs["igUpdateWindowParentAndRootLinks"][1]["cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["defaults"] = {} defs["igUpdateWindowParentAndRootLinks"][1]["funcname"] = "UpdateWindowParentAndRootLinks" -defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:3352" +defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:3361" defs["igUpdateWindowParentAndRootLinks"][1]["namespace"] = "ImGui" defs["igUpdateWindowParentAndRootLinks"][1]["ov_cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["ret"] = "void" @@ -32867,7 +32953,7 @@ defs["igUpdateWindowSkipRefresh"][1]["call_args"] = "(window)" defs["igUpdateWindowSkipRefresh"][1]["cimguiname"] = "igUpdateWindowSkipRefresh" defs["igUpdateWindowSkipRefresh"][1]["defaults"] = {} defs["igUpdateWindowSkipRefresh"][1]["funcname"] = "UpdateWindowSkipRefresh" -defs["igUpdateWindowSkipRefresh"][1]["location"] = "imgui_internal:3353" +defs["igUpdateWindowSkipRefresh"][1]["location"] = "imgui_internal:3362" defs["igUpdateWindowSkipRefresh"][1]["namespace"] = "ImGui" defs["igUpdateWindowSkipRefresh"][1]["ov_cimguiname"] = "igUpdateWindowSkipRefresh" defs["igUpdateWindowSkipRefresh"][1]["ret"] = "void" @@ -32906,7 +32992,7 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["flags"] = "0" defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" -defs["igVSliderFloat"][1]["location"] = "imgui:622" +defs["igVSliderFloat"][1]["location"] = "imgui:626" defs["igVSliderFloat"][1]["namespace"] = "ImGui" defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" @@ -32945,7 +33031,7 @@ defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["flags"] = "0" defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" -defs["igVSliderInt"][1]["location"] = "imgui:623" +defs["igVSliderInt"][1]["location"] = "imgui:627" defs["igVSliderInt"][1]["namespace"] = "ImGui" defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" @@ -32987,7 +33073,7 @@ defs["igVSliderScalar"][1]["defaults"] = {} defs["igVSliderScalar"][1]["defaults"]["flags"] = "0" defs["igVSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" -defs["igVSliderScalar"][1]["location"] = "imgui:624" +defs["igVSliderScalar"][1]["location"] = "imgui:628" defs["igVSliderScalar"][1]["namespace"] = "ImGui" defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -33009,7 +33095,7 @@ defs["igValue"][1]["call_args"] = "(prefix,b)" defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" -defs["igValue"][1]["location"] = "imgui:713" +defs["igValue"][1]["location"] = "imgui:717" defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValue_Bool" defs["igValue"][1]["ret"] = "void" @@ -33029,7 +33115,7 @@ defs["igValue"][2]["call_args"] = "(prefix,v)" defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" -defs["igValue"][2]["location"] = "imgui:714" +defs["igValue"][2]["location"] = "imgui:718" defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValue_Int" defs["igValue"][2]["ret"] = "void" @@ -33049,7 +33135,7 @@ defs["igValue"][3]["call_args"] = "(prefix,v)" defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" -defs["igValue"][3]["location"] = "imgui:715" +defs["igValue"][3]["location"] = "imgui:719" defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValue_Uint" defs["igValue"][3]["ret"] = "void" @@ -33073,7 +33159,7 @@ defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["defaults"] = {} defs["igValue"][4]["defaults"]["float_format"] = "NULL" defs["igValue"][4]["funcname"] = "Value" -defs["igValue"][4]["location"] = "imgui:716" +defs["igValue"][4]["location"] = "imgui:720" defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValue_Float" defs["igValue"][4]["ret"] = "void" @@ -33101,7 +33187,7 @@ defs["igWindowPosAbsToRel"][1]["call_args"] = "(window,p)" defs["igWindowPosAbsToRel"][1]["cimguiname"] = "igWindowPosAbsToRel" defs["igWindowPosAbsToRel"][1]["defaults"] = {} defs["igWindowPosAbsToRel"][1]["funcname"] = "WindowPosAbsToRel" -defs["igWindowPosAbsToRel"][1]["location"] = "imgui_internal:3368" +defs["igWindowPosAbsToRel"][1]["location"] = "imgui_internal:3376" defs["igWindowPosAbsToRel"][1]["namespace"] = "ImGui" defs["igWindowPosAbsToRel"][1]["nonUDT"] = 1 defs["igWindowPosAbsToRel"][1]["ov_cimguiname"] = "igWindowPosAbsToRel" @@ -33127,7 +33213,7 @@ defs["igWindowPosRelToAbs"][1]["call_args"] = "(window,p)" defs["igWindowPosRelToAbs"][1]["cimguiname"] = "igWindowPosRelToAbs" defs["igWindowPosRelToAbs"][1]["defaults"] = {} defs["igWindowPosRelToAbs"][1]["funcname"] = "WindowPosRelToAbs" -defs["igWindowPosRelToAbs"][1]["location"] = "imgui_internal:3367" +defs["igWindowPosRelToAbs"][1]["location"] = "imgui_internal:3377" defs["igWindowPosRelToAbs"][1]["namespace"] = "ImGui" defs["igWindowPosRelToAbs"][1]["nonUDT"] = 1 defs["igWindowPosRelToAbs"][1]["ov_cimguiname"] = "igWindowPosRelToAbs" @@ -33153,7 +33239,7 @@ defs["igWindowRectAbsToRel"][1]["call_args"] = "(window,r)" defs["igWindowRectAbsToRel"][1]["cimguiname"] = "igWindowRectAbsToRel" defs["igWindowRectAbsToRel"][1]["defaults"] = {} defs["igWindowRectAbsToRel"][1]["funcname"] = "WindowRectAbsToRel" -defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:3365" +defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:3374" defs["igWindowRectAbsToRel"][1]["namespace"] = "ImGui" defs["igWindowRectAbsToRel"][1]["nonUDT"] = 1 defs["igWindowRectAbsToRel"][1]["ov_cimguiname"] = "igWindowRectAbsToRel" @@ -33179,7 +33265,7 @@ defs["igWindowRectRelToAbs"][1]["call_args"] = "(window,r)" defs["igWindowRectRelToAbs"][1]["cimguiname"] = "igWindowRectRelToAbs" defs["igWindowRectRelToAbs"][1]["defaults"] = {} defs["igWindowRectRelToAbs"][1]["funcname"] = "WindowRectRelToAbs" -defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:3366" +defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:3375" defs["igWindowRectRelToAbs"][1]["namespace"] = "ImGui" defs["igWindowRectRelToAbs"][1]["nonUDT"] = 1 defs["igWindowRectRelToAbs"][1]["ov_cimguiname"] = "igWindowRectRelToAbs" diff --git a/generator/output/impl_definitions.json b/generator/output/impl_definitions.json index 8ae94ef..ac713a3 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -372,6 +372,27 @@ "stname": "" } ], + "ImGui_ImplGlfw_Sleep": [ + { + "args": "(int milliseconds)", + "argsT": [ + { + "name": "milliseconds", + "type": "int" + } + ], + "argsoriginal": "(int milliseconds)", + "call_args": "(milliseconds)", + "cimguiname": "ImGui_ImplGlfw_Sleep", + "defaults": {}, + "funcname": "ImGui_ImplGlfw_Sleep", + "location": "imgui_impl_glfw:65", + "ov_cimguiname": "ImGui_ImplGlfw_Sleep", + "ret": "void", + "signature": "(int)", + "stname": "" + } + ], "ImGui_ImplGlfw_WindowFocusCallback": [ { "args": "(GLFWwindow* window,int focused)", diff --git a/generator/output/impl_definitions.lua b/generator/output/impl_definitions.lua index 2c0901a..828c8f2 100644 --- a/generator/output/impl_definitions.lua +++ b/generator/output/impl_definitions.lua @@ -314,6 +314,24 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["stname"] = "" defs["ImGui_ImplGlfw_Shutdown"]["()"] = defs["ImGui_ImplGlfw_Shutdown"][1] +defs["ImGui_ImplGlfw_Sleep"] = {} +defs["ImGui_ImplGlfw_Sleep"][1] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["args"] = "(int milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1]["name"] = "milliseconds" +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1]["type"] = "int" +defs["ImGui_ImplGlfw_Sleep"][1]["argsoriginal"] = "(int milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["call_args"] = "(milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["cimguiname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["defaults"] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["funcname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["location"] = "imgui_impl_glfw:65" +defs["ImGui_ImplGlfw_Sleep"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["ret"] = "void" +defs["ImGui_ImplGlfw_Sleep"][1]["signature"] = "(int)" +defs["ImGui_ImplGlfw_Sleep"][1]["stname"] = "" +defs["ImGui_ImplGlfw_Sleep"]["(int)"] = defs["ImGui_ImplGlfw_Sleep"][1] defs["ImGui_ImplGlfw_WindowFocusCallback"] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["args"] = "(GLFWwindow* window,int focused)" diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index 61072c0..1e11959 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -344,7 +344,7 @@ }, { "calc_value": 1, - "name": "ImGuiChildFlags_Border", + "name": "ImGuiChildFlags_Borders", "value": "1 << 0" }, { @@ -1311,12 +1311,12 @@ { "calc_value": 196640, "name": "ImGuiDockNodeFlags_NoResizeFlagsMask_", - "value": "ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" + "value": "(int)ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" }, { "calc_value": 260208, "name": "ImGuiDockNodeFlags_LocalFlagsTransferMask_", - "value": "ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" + "value": "(int)ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | (int)ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" }, { "calc_value": 261152, @@ -4623,6 +4623,11 @@ "calc_value": 536870912, "name": "ImGuiTreeNodeFlags_UpsideDownArrow", "value": "1 << 29" + }, + { + "calc_value": 192, + "name": "ImGuiTreeNodeFlags_OpenOnMask_", + "value": "ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_OpenOnArrow" } ], "ImGuiTreeNodeFlags_": [ @@ -5042,201 +5047,201 @@ }, "locations": { "ImBitVector": "imgui_internal:625", - "ImColor": "imgui:2837", - "ImDrawChannel": "imgui:3075", - "ImDrawCmd": "imgui:3034", - "ImDrawCmdHeader": "imgui:3067", + "ImColor": "imgui:2836", + "ImDrawChannel": "imgui:3074", + "ImDrawCmd": "imgui:3033", + "ImDrawCmdHeader": "imgui:3066", "ImDrawData": "imgui:3279", "ImDrawDataBuilder": "imgui_internal:814", - "ImDrawFlags_": "imgui:3101", - "ImDrawList": "imgui:3139", - "ImDrawListFlags_": "imgui:3121", + "ImDrawFlags_": "imgui:3100", + "ImDrawList": "imgui:3138", + "ImDrawListFlags_": "imgui:3120", "ImDrawListSharedData": "imgui_internal:790", - "ImDrawListSplitter": "imgui:3084", - "ImDrawVert": "imgui:3052", + "ImDrawListSplitter": "imgui:3083", + "ImDrawVert": "imgui:3051", "ImFont": "imgui:3502", "ImFontAtlas": "imgui:3398", "ImFontAtlasCustomRect": "imgui:3360", "ImFontAtlasFlags_": "imgui:3373", - "ImFontBuilderIO": "imgui_internal:3976", + "ImFontBuilderIO": "imgui_internal:3985", "ImFontConfig": "imgui:3303", "ImFontGlyph": "imgui:3333", "ImFontGlyphRangesBuilder": "imgui:3345", - "ImGuiActivateFlags_": "imgui_internal:1557", - "ImGuiAxis": "imgui_internal:1035", - "ImGuiBackendFlags_": "imgui:1670", - "ImGuiBoxSelectState": "imgui_internal:1740", + "ImGuiActivateFlags_": "imgui_internal:1558", + "ImGuiAxis": "imgui_internal:1036", + "ImGuiBackendFlags_": "imgui:1678", + "ImGuiBoxSelectState": "imgui_internal:1741", "ImGuiButtonFlagsPrivate_": "imgui_internal:929", - "ImGuiButtonFlags_": "imgui:1803", - "ImGuiChildFlags_": "imgui:1145", - "ImGuiCol_": "imgui:1685", - "ImGuiColorEditFlags_": "imgui:1814", - "ImGuiColorMod": "imgui_internal:1049", + "ImGuiButtonFlags_": "imgui:1811", + "ImGuiChildFlags_": "imgui:1148", + "ImGuiCol_": "imgui:1693", + "ImGuiColorEditFlags_": "imgui:1822", + "ImGuiColorMod": "imgui_internal:1050", "ImGuiComboFlagsPrivate_": "imgui_internal:954", - "ImGuiComboFlags_": "imgui:1282", - "ImGuiComboPreviewData": "imgui_internal:1066", - "ImGuiCond_": "imgui:1916", - "ImGuiConfigFlags_": "imgui:1644", - "ImGuiContext": "imgui_internal:2183", - "ImGuiContextHook": "imgui_internal:2168", - "ImGuiContextHookType": "imgui_internal:2166", - "ImGuiDataAuthority_": "imgui_internal:1850", + "ImGuiComboFlags_": "imgui:1290", + "ImGuiComboPreviewData": "imgui_internal:1067", + "ImGuiCond_": "imgui:1924", + "ImGuiConfigFlags_": "imgui:1652", + "ImGuiContext": "imgui_internal:2190", + "ImGuiContextHook": "imgui_internal:2175", + "ImGuiContextHookType": "imgui_internal:2173", + "ImGuiDataAuthority_": "imgui_internal:1852", "ImGuiDataTypeInfo": "imgui_internal:840", "ImGuiDataTypePrivate_": "imgui_internal:849", "ImGuiDataTypeStorage": "imgui_internal:834", - "ImGuiDataType_": "imgui:1430", + "ImGuiDataType_": "imgui:1438", "ImGuiDataVarInfo": "imgui_internal:826", - "ImGuiDebugAllocEntry": "imgui_internal:2102", - "ImGuiDebugAllocInfo": "imgui_internal:2109", - "ImGuiDebugLogFlags_": "imgui_internal:2082", - "ImGuiDir": "imgui:1447", - "ImGuiDockContext": "imgui_internal:1952", - "ImGuiDockNode": "imgui_internal:1866", - "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1821", - "ImGuiDockNodeFlags_": "imgui:1383", - "ImGuiDockNodeState": "imgui_internal:1857", - "ImGuiDragDropFlags_": "imgui:1402", - "ImGuiFocusRequestFlags_": "imgui_internal:998", - "ImGuiFocusScopeData": "imgui_internal:1637", - "ImGuiFocusedFlags_": "imgui:1329", - "ImGuiGroupData": "imgui_internal:1079", + "ImGuiDebugAllocEntry": "imgui_internal:2109", + "ImGuiDebugAllocInfo": "imgui_internal:2116", + "ImGuiDebugLogFlags_": "imgui_internal:2089", + "ImGuiDir": "imgui:1455", + "ImGuiDockContext": "imgui_internal:1954", + "ImGuiDockNode": "imgui_internal:1868", + "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1822", + "ImGuiDockNodeFlags_": "imgui:1391", + "ImGuiDockNodeState": "imgui_internal:1859", + "ImGuiDragDropFlags_": "imgui:1410", + "ImGuiFocusRequestFlags_": "imgui_internal:999", + "ImGuiFocusScopeData": "imgui_internal:1638", + "ImGuiFocusedFlags_": "imgui:1337", + "ImGuiGroupData": "imgui_internal:1080", "ImGuiHoveredFlagsPrivate_": "imgui_internal:911", - "ImGuiHoveredFlags_": "imgui:1343", - "ImGuiIDStackTool": "imgui_internal:2149", - "ImGuiIO": "imgui:2287", - "ImGuiInputEvent": "imgui_internal:1417", - "ImGuiInputEventAppFocused": "imgui_internal:1415", - "ImGuiInputEventKey": "imgui_internal:1413", - "ImGuiInputEventMouseButton": "imgui_internal:1411", - "ImGuiInputEventMousePos": "imgui_internal:1409", - "ImGuiInputEventMouseViewport": "imgui_internal:1412", - "ImGuiInputEventMouseWheel": "imgui_internal:1410", - "ImGuiInputEventText": "imgui_internal:1414", - "ImGuiInputEventType": "imgui_internal:1385", - "ImGuiInputFlagsPrivate_": "imgui_internal:1484", - "ImGuiInputFlags_": "imgui:1609", - "ImGuiInputSource": "imgui_internal:1398", - "ImGuiInputTextCallbackData": "imgui:2516", - "ImGuiInputTextDeactivatedState": "imgui_internal:1115", + "ImGuiHoveredFlags_": "imgui:1351", + "ImGuiIDStackTool": "imgui_internal:2156", + "ImGuiIO": "imgui:2297", + "ImGuiInputEvent": "imgui_internal:1418", + "ImGuiInputEventAppFocused": "imgui_internal:1416", + "ImGuiInputEventKey": "imgui_internal:1414", + "ImGuiInputEventMouseButton": "imgui_internal:1412", + "ImGuiInputEventMousePos": "imgui_internal:1410", + "ImGuiInputEventMouseViewport": "imgui_internal:1413", + "ImGuiInputEventMouseWheel": "imgui_internal:1411", + "ImGuiInputEventText": "imgui_internal:1415", + "ImGuiInputEventType": "imgui_internal:1386", + "ImGuiInputFlagsPrivate_": "imgui_internal:1485", + "ImGuiInputFlags_": "imgui:1617", + "ImGuiInputSource": "imgui_internal:1399", + "ImGuiInputTextCallbackData": "imgui:2515", + "ImGuiInputTextDeactivatedState": "imgui_internal:1116", "ImGuiInputTextFlagsPrivate_": "imgui_internal:919", - "ImGuiInputTextFlags_": "imgui:1173", - "ImGuiInputTextState": "imgui_internal:1125", + "ImGuiInputTextFlags_": "imgui:1181", + "ImGuiInputTextState": "imgui_internal:1126", "ImGuiItemFlagsPrivate_": "imgui_internal:863", - "ImGuiItemFlags_": "imgui:1161", + "ImGuiItemFlags_": "imgui:1169", "ImGuiItemStatusFlags_": "imgui_internal:885", - "ImGuiKey": "imgui:1476", - "ImGuiKeyData": "imgui:2279", - "ImGuiKeyOwnerData": "imgui_internal:1471", - "ImGuiKeyRoutingData": "imgui_internal:1445", - "ImGuiKeyRoutingTable": "imgui_internal:1459", - "ImGuiLastItemData": "imgui_internal:1261", - "ImGuiLayoutType_": "imgui_internal:1019", - "ImGuiListClipper": "imgui:2745", - "ImGuiListClipperData": "imgui_internal:1541", - "ImGuiListClipperRange": "imgui_internal:1528", - "ImGuiLocEntry": "imgui_internal:2071", - "ImGuiLocKey": "imgui_internal:2054", - "ImGuiLogType": "imgui_internal:1025", - "ImGuiMenuColumns": "imgui_internal:1097", - "ImGuiMetricsConfig": "imgui_internal:2119", - "ImGuiMouseButton_": "imgui:1876", - "ImGuiMouseCursor_": "imgui:1886", - "ImGuiMouseSource": "imgui:1905", - "ImGuiMultiSelectFlags_": "imgui:2895", - "ImGuiMultiSelectIO": "imgui:2922", - "ImGuiMultiSelectState": "imgui_internal:1797", - "ImGuiMultiSelectTempData": "imgui_internal:1772", - "ImGuiNavHighlightFlags_": "imgui_internal:1582", - "ImGuiNavItemData": "imgui_internal:1620", - "ImGuiNavLayer": "imgui_internal:1612", - "ImGuiNavMoveFlags_": "imgui_internal:1590", - "ImGuiNextItemData": "imgui_internal:1241", - "ImGuiNextItemDataFlags_": "imgui_internal:1231", - "ImGuiNextWindowData": "imgui_internal:1202", - "ImGuiNextWindowDataFlags_": "imgui_internal:1183", - "ImGuiOldColumnData": "imgui_internal:1705", - "ImGuiOldColumnFlags_": "imgui_internal:1685", - "ImGuiOldColumns": "imgui_internal:1715", - "ImGuiOnceUponAFrame": "imgui:2616", - "ImGuiPayload": "imgui:2581", - "ImGuiPlatformIO": "imgui:3672", - "ImGuiPlatformImeData": "imgui:3745", - "ImGuiPlatformMonitor": "imgui:3735", - "ImGuiPlotType": "imgui_internal:1042", - "ImGuiPopupData": "imgui_internal:1342", - "ImGuiPopupFlags_": "imgui:1247", - "ImGuiPopupPositionPolicy": "imgui_internal:1334", - "ImGuiPtrOrIndex": "imgui_internal:1321", - "ImGuiScrollFlags_": "imgui_internal:1568", + "ImGuiKey": "imgui:1484", + "ImGuiKeyData": "imgui:2289", + "ImGuiKeyOwnerData": "imgui_internal:1472", + "ImGuiKeyRoutingData": "imgui_internal:1446", + "ImGuiKeyRoutingTable": "imgui_internal:1460", + "ImGuiLastItemData": "imgui_internal:1262", + "ImGuiLayoutType_": "imgui_internal:1020", + "ImGuiListClipper": "imgui:2744", + "ImGuiListClipperData": "imgui_internal:1542", + "ImGuiListClipperRange": "imgui_internal:1529", + "ImGuiLocEntry": "imgui_internal:2078", + "ImGuiLocKey": "imgui_internal:2061", + "ImGuiLogType": "imgui_internal:1026", + "ImGuiMenuColumns": "imgui_internal:1098", + "ImGuiMetricsConfig": "imgui_internal:2126", + "ImGuiMouseButton_": "imgui:1884", + "ImGuiMouseCursor_": "imgui:1894", + "ImGuiMouseSource": "imgui:1913", + "ImGuiMultiSelectFlags_": "imgui:2894", + "ImGuiMultiSelectIO": "imgui:2921", + "ImGuiMultiSelectState": "imgui_internal:1798", + "ImGuiMultiSelectTempData": "imgui_internal:1773", + "ImGuiNavHighlightFlags_": "imgui_internal:1583", + "ImGuiNavItemData": "imgui_internal:1621", + "ImGuiNavLayer": "imgui_internal:1613", + "ImGuiNavMoveFlags_": "imgui_internal:1591", + "ImGuiNextItemData": "imgui_internal:1242", + "ImGuiNextItemDataFlags_": "imgui_internal:1232", + "ImGuiNextWindowData": "imgui_internal:1203", + "ImGuiNextWindowDataFlags_": "imgui_internal:1184", + "ImGuiOldColumnData": "imgui_internal:1706", + "ImGuiOldColumnFlags_": "imgui_internal:1686", + "ImGuiOldColumns": "imgui_internal:1716", + "ImGuiOnceUponAFrame": "imgui:2615", + "ImGuiPayload": "imgui:2580", + "ImGuiPlatformIO": "imgui:3673", + "ImGuiPlatformImeData": "imgui:3772", + "ImGuiPlatformMonitor": "imgui:3762", + "ImGuiPlotType": "imgui_internal:1043", + "ImGuiPopupData": "imgui_internal:1343", + "ImGuiPopupFlags_": "imgui:1255", + "ImGuiPopupPositionPolicy": "imgui_internal:1335", + "ImGuiPtrOrIndex": "imgui_internal:1322", + "ImGuiScrollFlags_": "imgui_internal:1569", "ImGuiSelectableFlagsPrivate_": "imgui_internal:967", - "ImGuiSelectableFlags_": "imgui:1265", - "ImGuiSelectionBasicStorage": "imgui:2968", - "ImGuiSelectionExternalStorage": "imgui:2991", - "ImGuiSelectionRequest": "imgui:2942", - "ImGuiSelectionRequestType": "imgui:2934", - "ImGuiSeparatorFlags_": "imgui_internal:987", - "ImGuiSettingsHandler": "imgui_internal:2034", - "ImGuiShrinkWidthItem": "imgui_internal:1314", - "ImGuiSizeCallbackData": "imgui:2550", + "ImGuiSelectableFlags_": "imgui:1273", + "ImGuiSelectionBasicStorage": "imgui:2967", + "ImGuiSelectionExternalStorage": "imgui:2990", + "ImGuiSelectionRequest": "imgui:2941", + "ImGuiSelectionRequestType": "imgui:2933", + "ImGuiSeparatorFlags_": "imgui_internal:988", + "ImGuiSettingsHandler": "imgui_internal:2041", + "ImGuiShrinkWidthItem": "imgui_internal:1315", + "ImGuiSizeCallbackData": "imgui:2549", "ImGuiSliderFlagsPrivate_": "imgui_internal:960", - "ImGuiSliderFlags_": "imgui:1860", - "ImGuiSortDirection": "imgui:1458", - "ImGuiStackLevelInfo": "imgui_internal:2137", - "ImGuiStackSizes": "imgui_internal:1288", - "ImGuiStorage": "imgui:2688", - "ImGuiStoragePair": "imgui:2671", - "ImGuiStyle": "imgui:2203", - "ImGuiStyleMod": "imgui_internal:1056", - "ImGuiStyleVar_": "imgui:1762", - "ImGuiTabBar": "imgui_internal:3007", - "ImGuiTabBarFlagsPrivate_": "imgui_internal:2970", - "ImGuiTabBarFlags_": "imgui:1297", - "ImGuiTabItem": "imgui_internal:2987", - "ImGuiTabItemFlagsPrivate_": "imgui_internal:2978", - "ImGuiTabItemFlags_": "imgui:1314", - "ImGuiTable": "imgui_internal:3152", - "ImGuiTableBgTarget_": "imgui:2057", - "ImGuiTableCellData": "imgui_internal:3120", - "ImGuiTableColumn": "imgui_internal:3061", - "ImGuiTableColumnFlags_": "imgui:2004", - "ImGuiTableColumnSettings": "imgui_internal:3299", - "ImGuiTableColumnSortSpecs": "imgui:2079", - "ImGuiTableFlags_": "imgui:1951", - "ImGuiTableHeaderData": "imgui_internal:3129", - "ImGuiTableInstanceData": "imgui_internal:3139", - "ImGuiTableRowFlags_": "imgui:2042", - "ImGuiTableSettings": "imgui_internal:3323", - "ImGuiTableSortSpecs": "imgui:2069", - "ImGuiTableTempData": "imgui_internal:3276", - "ImGuiTextBuffer": "imgui:2651", - "ImGuiTextFilter": "imgui:2624", - "ImGuiTextFlags_": "imgui_internal:1005", + "ImGuiSliderFlags_": "imgui:1868", + "ImGuiSortDirection": "imgui:1466", + "ImGuiStackLevelInfo": "imgui_internal:2144", + "ImGuiStackSizes": "imgui_internal:1289", + "ImGuiStorage": "imgui:2687", + "ImGuiStoragePair": "imgui:2670", + "ImGuiStyle": "imgui:2211", + "ImGuiStyleMod": "imgui_internal:1057", + "ImGuiStyleVar_": "imgui:1770", + "ImGuiTabBar": "imgui_internal:3015", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:2978", + "ImGuiTabBarFlags_": "imgui:1305", + "ImGuiTabItem": "imgui_internal:2995", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:2986", + "ImGuiTabItemFlags_": "imgui:1322", + "ImGuiTable": "imgui_internal:3161", + "ImGuiTableBgTarget_": "imgui:2065", + "ImGuiTableCellData": "imgui_internal:3129", + "ImGuiTableColumn": "imgui_internal:3069", + "ImGuiTableColumnFlags_": "imgui:2012", + "ImGuiTableColumnSettings": "imgui_internal:3308", + "ImGuiTableColumnSortSpecs": "imgui:2087", + "ImGuiTableFlags_": "imgui:1959", + "ImGuiTableHeaderData": "imgui_internal:3138", + "ImGuiTableInstanceData": "imgui_internal:3148", + "ImGuiTableRowFlags_": "imgui:2050", + "ImGuiTableSettings": "imgui_internal:3332", + "ImGuiTableSortSpecs": "imgui:2077", + "ImGuiTableTempData": "imgui_internal:3285", + "ImGuiTextBuffer": "imgui:2650", + "ImGuiTextFilter": "imgui:2623", + "ImGuiTextFlags_": "imgui_internal:1006", "ImGuiTextIndex": "imgui_internal:745", - "ImGuiTextRange": "imgui:2634", - "ImGuiTooltipFlags_": "imgui_internal:1011", + "ImGuiTextRange": "imgui:2633", + "ImGuiTooltipFlags_": "imgui_internal:1012", "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:981", - "ImGuiTreeNodeFlags_": "imgui:1212", - "ImGuiTreeNodeStackData": "imgui_internal:1280", - "ImGuiTypingSelectFlags_": "imgui_internal:1648", - "ImGuiTypingSelectRequest": "imgui_internal:1656", - "ImGuiTypingSelectState": "imgui_internal:1667", + "ImGuiTreeNodeFlags_": "imgui:1220", + "ImGuiTreeNodeStackData": "imgui_internal:1281", + "ImGuiTypingSelectFlags_": "imgui_internal:1649", + "ImGuiTypingSelectRequest": "imgui_internal:1657", + "ImGuiTypingSelectState": "imgui_internal:1668", "ImGuiViewport": "imgui:3588", "ImGuiViewportFlags_": "imgui:3560", - "ImGuiViewportP": "imgui_internal:1969", - "ImGuiWindow": "imgui_internal:2819", - "ImGuiWindowClass": "imgui:2565", - "ImGuiWindowDockStyle": "imgui_internal:1947", - "ImGuiWindowDockStyleCol": "imgui_internal:1933", - "ImGuiWindowFlags_": "imgui:1094", - "ImGuiWindowRefreshFlags_": "imgui_internal:1174", - "ImGuiWindowSettings": "imgui_internal:2015", - "ImGuiWindowStackData": "imgui_internal:1306", - "ImGuiWindowTempData": "imgui_internal:2769", + "ImGuiViewportP": "imgui_internal:1971", + "ImGuiWindow": "imgui_internal:2826", + "ImGuiWindowClass": "imgui:2564", + "ImGuiWindowDockStyle": "imgui_internal:1949", + "ImGuiWindowDockStyleCol": "imgui_internal:1935", + "ImGuiWindowFlags_": "imgui:1097", + "ImGuiWindowRefreshFlags_": "imgui_internal:1175", + "ImGuiWindowSettings": "imgui_internal:2022", + "ImGuiWindowStackData": "imgui_internal:1307", + "ImGuiWindowTempData": "imgui_internal:2776", "ImRect": "imgui_internal:547", "ImVec1": "imgui_internal:529", - "ImVec2": "imgui:292", + "ImVec2": "imgui:293", "ImVec2ih": "imgui_internal:537", - "ImVec4": "imgui:305", + "ImVec4": "imgui:306", "STB_TexteditState": "imstb_textedit:321", "StbTexteditRow": "imstb_textedit:368", "StbUndoRecord": "imstb_textedit:303", @@ -7804,34 +7809,6 @@ "name": "BackendLanguageUserData", "type": "void*" }, - { - "name": "GetClipboardTextFn", - "type": "const char*(*)(void* user_data)" - }, - { - "name": "SetClipboardTextFn", - "type": "void(*)(void* user_data,const char* text)" - }, - { - "name": "ClipboardUserData", - "type": "void*" - }, - { - "name": "PlatformOpenInShellFn", - "type": "bool(*)(ImGuiContext* ctx,const char* path)" - }, - { - "name": "PlatformOpenInShellUserData", - "type": "void*" - }, - { - "name": "PlatformSetImeDataFn", - "type": "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" - }, - { - "name": "PlatformLocaleDecimalPoint", - "type": "ImWchar" - }, { "name": "WantCaptureMouse", "type": "bool" @@ -8251,8 +8228,8 @@ "type": "int" }, { - "name": "ScrollX", - "type": "float" + "name": "Scroll", + "type": "ImVec2" }, { "name": "Stb", @@ -9018,6 +8995,38 @@ } ], "ImGuiPlatformIO": [ + { + "name": "Platform_GetClipboardTextFn", + "type": "const char*(*)(ImGuiContext* ctx)" + }, + { + "name": "Platform_SetClipboardTextFn", + "type": "void(*)(ImGuiContext* ctx,const char* text)" + }, + { + "name": "Platform_ClipboardUserData", + "type": "void*" + }, + { + "name": "Platform_OpenInShellFn", + "type": "bool(*)(ImGuiContext* ctx,const char* path)" + }, + { + "name": "Platform_OpenInShellUserData", + "type": "void*" + }, + { + "name": "Platform_SetImeDataFn", + "type": "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" + }, + { + "name": "Platform_ImeUserData", + "type": "void*" + }, + { + "name": "Platform_LocaleDecimalPoint", + "type": "ImWchar" + }, { "name": "Platform_CreateWindow", "type": "void(*)(ImGuiViewport* vp)" @@ -9086,6 +9095,10 @@ "name": "Platform_OnChangedViewport", "type": "void(*)(ImGuiViewport* vp)" }, + { + "name": "Platform_GetWindowWorkAreaInsets", + "type": "ImVec4(*)(ImGuiViewport* vp)" + }, { "name": "Platform_CreateVkSurface", "type": "int(*)(ImGuiViewport* vp,ImU64 vk_inst,const void* vk_allocators,ImU64* out_vk_surface)" @@ -10323,6 +10336,10 @@ "name": "WidthAuto", "type": "float" }, + { + "name": "WidthMax", + "type": "float" + }, { "name": "StretchWeight", "type": "float" @@ -10926,19 +10943,19 @@ "type": "ImVec2" }, { - "name": "WorkOffsetMin", + "name": "WorkInsetMin", "type": "ImVec2" }, { - "name": "WorkOffsetMax", + "name": "WorkInsetMax", "type": "ImVec2" }, { - "name": "BuildWorkOffsetMin", + "name": "BuildWorkInsetMin", "type": "ImVec2" }, { - "name": "BuildWorkOffsetMax", + "name": "BuildWorkInsetMax", "type": "ImVec2" } ], diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index dfa18ba..5caa525 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -271,7 +271,7 @@ defs["enums"]["ImGuiChildFlags_"][1]["name"] = "ImGuiChildFlags_None" defs["enums"]["ImGuiChildFlags_"][1]["value"] = "0" defs["enums"]["ImGuiChildFlags_"][2] = {} defs["enums"]["ImGuiChildFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiChildFlags_"][2]["name"] = "ImGuiChildFlags_Border" +defs["enums"]["ImGuiChildFlags_"][2]["name"] = "ImGuiChildFlags_Borders" defs["enums"]["ImGuiChildFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiChildFlags_"][3] = {} defs["enums"]["ImGuiChildFlags_"][3]["calc_value"] = 2 @@ -1037,11 +1037,11 @@ defs["enums"]["ImGuiDockNodeFlagsPrivate_"][15]["value"] = "~0" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["calc_value"] = 196640 defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["name"] = "ImGuiDockNodeFlags_NoResizeFlagsMask_" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["value"] = "ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["value"] = "(int)ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["calc_value"] = 260208 defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["name"] = "ImGuiDockNodeFlags_LocalFlagsTransferMask_" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["value"] = "ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["value"] = "(int)ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | (int)ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["calc_value"] = 261152 defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["name"] = "ImGuiDockNodeFlags_SavedFlagsMask_" @@ -3655,6 +3655,10 @@ defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2] = {} defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2]["calc_value"] = 536870912 defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2]["name"] = "ImGuiTreeNodeFlags_UpsideDownArrow" defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2]["value"] = "1 << 29" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3] = {} +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3]["calc_value"] = 192 +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3]["name"] = "ImGuiTreeNodeFlags_OpenOnMask_" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3]["value"] = "ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_OpenOnArrow" defs["enums"]["ImGuiTreeNodeFlags_"] = {} defs["enums"]["ImGuiTreeNodeFlags_"][1] = {} defs["enums"]["ImGuiTreeNodeFlags_"][1]["calc_value"] = 0 @@ -3985,201 +3989,201 @@ defs["enumtypes"]["ImGuiMouseSource"] = "int" defs["enumtypes"]["ImGuiSortDirection"] = "ImU8" defs["locations"] = {} defs["locations"]["ImBitVector"] = "imgui_internal:625" -defs["locations"]["ImColor"] = "imgui:2837" -defs["locations"]["ImDrawChannel"] = "imgui:3075" -defs["locations"]["ImDrawCmd"] = "imgui:3034" -defs["locations"]["ImDrawCmdHeader"] = "imgui:3067" +defs["locations"]["ImColor"] = "imgui:2836" +defs["locations"]["ImDrawChannel"] = "imgui:3074" +defs["locations"]["ImDrawCmd"] = "imgui:3033" +defs["locations"]["ImDrawCmdHeader"] = "imgui:3066" defs["locations"]["ImDrawData"] = "imgui:3279" defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:814" -defs["locations"]["ImDrawFlags_"] = "imgui:3101" -defs["locations"]["ImDrawList"] = "imgui:3139" -defs["locations"]["ImDrawListFlags_"] = "imgui:3121" +defs["locations"]["ImDrawFlags_"] = "imgui:3100" +defs["locations"]["ImDrawList"] = "imgui:3138" +defs["locations"]["ImDrawListFlags_"] = "imgui:3120" defs["locations"]["ImDrawListSharedData"] = "imgui_internal:790" -defs["locations"]["ImDrawListSplitter"] = "imgui:3084" -defs["locations"]["ImDrawVert"] = "imgui:3052" +defs["locations"]["ImDrawListSplitter"] = "imgui:3083" +defs["locations"]["ImDrawVert"] = "imgui:3051" defs["locations"]["ImFont"] = "imgui:3502" defs["locations"]["ImFontAtlas"] = "imgui:3398" defs["locations"]["ImFontAtlasCustomRect"] = "imgui:3360" defs["locations"]["ImFontAtlasFlags_"] = "imgui:3373" -defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3976" +defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3985" defs["locations"]["ImFontConfig"] = "imgui:3303" defs["locations"]["ImFontGlyph"] = "imgui:3333" defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3345" -defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1557" -defs["locations"]["ImGuiAxis"] = "imgui_internal:1035" -defs["locations"]["ImGuiBackendFlags_"] = "imgui:1670" -defs["locations"]["ImGuiBoxSelectState"] = "imgui_internal:1740" +defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1558" +defs["locations"]["ImGuiAxis"] = "imgui_internal:1036" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1678" +defs["locations"]["ImGuiBoxSelectState"] = "imgui_internal:1741" defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:929" -defs["locations"]["ImGuiButtonFlags_"] = "imgui:1803" -defs["locations"]["ImGuiChildFlags_"] = "imgui:1145" -defs["locations"]["ImGuiCol_"] = "imgui:1685" -defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1814" -defs["locations"]["ImGuiColorMod"] = "imgui_internal:1049" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1811" +defs["locations"]["ImGuiChildFlags_"] = "imgui:1148" +defs["locations"]["ImGuiCol_"] = "imgui:1693" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1822" +defs["locations"]["ImGuiColorMod"] = "imgui_internal:1050" defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:954" -defs["locations"]["ImGuiComboFlags_"] = "imgui:1282" -defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1066" -defs["locations"]["ImGuiCond_"] = "imgui:1916" -defs["locations"]["ImGuiConfigFlags_"] = "imgui:1644" -defs["locations"]["ImGuiContext"] = "imgui_internal:2183" -defs["locations"]["ImGuiContextHook"] = "imgui_internal:2168" -defs["locations"]["ImGuiContextHookType"] = "imgui_internal:2166" -defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1850" +defs["locations"]["ImGuiComboFlags_"] = "imgui:1290" +defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1067" +defs["locations"]["ImGuiCond_"] = "imgui:1924" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1652" +defs["locations"]["ImGuiContext"] = "imgui_internal:2190" +defs["locations"]["ImGuiContextHook"] = "imgui_internal:2175" +defs["locations"]["ImGuiContextHookType"] = "imgui_internal:2173" +defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1852" defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:840" defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:849" defs["locations"]["ImGuiDataTypeStorage"] = "imgui_internal:834" -defs["locations"]["ImGuiDataType_"] = "imgui:1430" +defs["locations"]["ImGuiDataType_"] = "imgui:1438" defs["locations"]["ImGuiDataVarInfo"] = "imgui_internal:826" -defs["locations"]["ImGuiDebugAllocEntry"] = "imgui_internal:2102" -defs["locations"]["ImGuiDebugAllocInfo"] = "imgui_internal:2109" -defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:2082" -defs["locations"]["ImGuiDir"] = "imgui:1447" -defs["locations"]["ImGuiDockContext"] = "imgui_internal:1952" -defs["locations"]["ImGuiDockNode"] = "imgui_internal:1866" -defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1821" -defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1383" -defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1857" -defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1402" -defs["locations"]["ImGuiFocusRequestFlags_"] = "imgui_internal:998" -defs["locations"]["ImGuiFocusScopeData"] = "imgui_internal:1637" -defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1329" -defs["locations"]["ImGuiGroupData"] = "imgui_internal:1079" +defs["locations"]["ImGuiDebugAllocEntry"] = "imgui_internal:2109" +defs["locations"]["ImGuiDebugAllocInfo"] = "imgui_internal:2116" +defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:2089" +defs["locations"]["ImGuiDir"] = "imgui:1455" +defs["locations"]["ImGuiDockContext"] = "imgui_internal:1954" +defs["locations"]["ImGuiDockNode"] = "imgui_internal:1868" +defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1822" +defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1391" +defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1859" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1410" +defs["locations"]["ImGuiFocusRequestFlags_"] = "imgui_internal:999" +defs["locations"]["ImGuiFocusScopeData"] = "imgui_internal:1638" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1337" +defs["locations"]["ImGuiGroupData"] = "imgui_internal:1080" defs["locations"]["ImGuiHoveredFlagsPrivate_"] = "imgui_internal:911" -defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1343" -defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:2149" -defs["locations"]["ImGuiIO"] = "imgui:2287" -defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1417" -defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1415" -defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1413" -defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1411" -defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1409" -defs["locations"]["ImGuiInputEventMouseViewport"] = "imgui_internal:1412" -defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1410" -defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1414" -defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1385" -defs["locations"]["ImGuiInputFlagsPrivate_"] = "imgui_internal:1484" -defs["locations"]["ImGuiInputFlags_"] = "imgui:1609" -defs["locations"]["ImGuiInputSource"] = "imgui_internal:1398" -defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2516" -defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1115" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1351" +defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:2156" +defs["locations"]["ImGuiIO"] = "imgui:2297" +defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1418" +defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1416" +defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1414" +defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1412" +defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1410" +defs["locations"]["ImGuiInputEventMouseViewport"] = "imgui_internal:1413" +defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1411" +defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1415" +defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1386" +defs["locations"]["ImGuiInputFlagsPrivate_"] = "imgui_internal:1485" +defs["locations"]["ImGuiInputFlags_"] = "imgui:1617" +defs["locations"]["ImGuiInputSource"] = "imgui_internal:1399" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2515" +defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1116" defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:919" -defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1173" -defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1125" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1181" +defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1126" defs["locations"]["ImGuiItemFlagsPrivate_"] = "imgui_internal:863" -defs["locations"]["ImGuiItemFlags_"] = "imgui:1161" +defs["locations"]["ImGuiItemFlags_"] = "imgui:1169" defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:885" -defs["locations"]["ImGuiKey"] = "imgui:1476" -defs["locations"]["ImGuiKeyData"] = "imgui:2279" -defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1471" -defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1445" -defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1459" -defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1261" -defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:1019" -defs["locations"]["ImGuiListClipper"] = "imgui:2745" -defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1541" -defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1528" -defs["locations"]["ImGuiLocEntry"] = "imgui_internal:2071" -defs["locations"]["ImGuiLocKey"] = "imgui_internal:2054" -defs["locations"]["ImGuiLogType"] = "imgui_internal:1025" -defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1097" -defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:2119" -defs["locations"]["ImGuiMouseButton_"] = "imgui:1876" -defs["locations"]["ImGuiMouseCursor_"] = "imgui:1886" -defs["locations"]["ImGuiMouseSource"] = "imgui:1905" -defs["locations"]["ImGuiMultiSelectFlags_"] = "imgui:2895" -defs["locations"]["ImGuiMultiSelectIO"] = "imgui:2922" -defs["locations"]["ImGuiMultiSelectState"] = "imgui_internal:1797" -defs["locations"]["ImGuiMultiSelectTempData"] = "imgui_internal:1772" -defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1582" -defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1620" -defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1612" -defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1590" -defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1241" -defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1231" -defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1202" -defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1183" -defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1705" -defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1685" -defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1715" -defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2616" -defs["locations"]["ImGuiPayload"] = "imgui:2581" -defs["locations"]["ImGuiPlatformIO"] = "imgui:3672" -defs["locations"]["ImGuiPlatformImeData"] = "imgui:3745" -defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3735" -defs["locations"]["ImGuiPlotType"] = "imgui_internal:1042" -defs["locations"]["ImGuiPopupData"] = "imgui_internal:1342" -defs["locations"]["ImGuiPopupFlags_"] = "imgui:1247" -defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:1334" -defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1321" -defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1568" +defs["locations"]["ImGuiKey"] = "imgui:1484" +defs["locations"]["ImGuiKeyData"] = "imgui:2289" +defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1472" +defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1446" +defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1460" +defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1262" +defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:1020" +defs["locations"]["ImGuiListClipper"] = "imgui:2744" +defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1542" +defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1529" +defs["locations"]["ImGuiLocEntry"] = "imgui_internal:2078" +defs["locations"]["ImGuiLocKey"] = "imgui_internal:2061" +defs["locations"]["ImGuiLogType"] = "imgui_internal:1026" +defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1098" +defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:2126" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1884" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1894" +defs["locations"]["ImGuiMouseSource"] = "imgui:1913" +defs["locations"]["ImGuiMultiSelectFlags_"] = "imgui:2894" +defs["locations"]["ImGuiMultiSelectIO"] = "imgui:2921" +defs["locations"]["ImGuiMultiSelectState"] = "imgui_internal:1798" +defs["locations"]["ImGuiMultiSelectTempData"] = "imgui_internal:1773" +defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1583" +defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1621" +defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1613" +defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1591" +defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1242" +defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1232" +defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1203" +defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1184" +defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1706" +defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1686" +defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1716" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2615" +defs["locations"]["ImGuiPayload"] = "imgui:2580" +defs["locations"]["ImGuiPlatformIO"] = "imgui:3673" +defs["locations"]["ImGuiPlatformImeData"] = "imgui:3772" +defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3762" +defs["locations"]["ImGuiPlotType"] = "imgui_internal:1043" +defs["locations"]["ImGuiPopupData"] = "imgui_internal:1343" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:1255" +defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:1335" +defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1322" +defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1569" defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:967" -defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1265" -defs["locations"]["ImGuiSelectionBasicStorage"] = "imgui:2968" -defs["locations"]["ImGuiSelectionExternalStorage"] = "imgui:2991" -defs["locations"]["ImGuiSelectionRequest"] = "imgui:2942" -defs["locations"]["ImGuiSelectionRequestType"] = "imgui:2934" -defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:987" -defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:2034" -defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1314" -defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2550" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1273" +defs["locations"]["ImGuiSelectionBasicStorage"] = "imgui:2967" +defs["locations"]["ImGuiSelectionExternalStorage"] = "imgui:2990" +defs["locations"]["ImGuiSelectionRequest"] = "imgui:2941" +defs["locations"]["ImGuiSelectionRequestType"] = "imgui:2933" +defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:988" +defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:2041" +defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1315" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2549" defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:960" -defs["locations"]["ImGuiSliderFlags_"] = "imgui:1860" -defs["locations"]["ImGuiSortDirection"] = "imgui:1458" -defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:2137" -defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1288" -defs["locations"]["ImGuiStorage"] = "imgui:2688" -defs["locations"]["ImGuiStoragePair"] = "imgui:2671" -defs["locations"]["ImGuiStyle"] = "imgui:2203" -defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1056" -defs["locations"]["ImGuiStyleVar_"] = "imgui:1762" -defs["locations"]["ImGuiTabBar"] = "imgui_internal:3007" -defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2970" -defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1297" -defs["locations"]["ImGuiTabItem"] = "imgui_internal:2987" -defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2978" -defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1314" -defs["locations"]["ImGuiTable"] = "imgui_internal:3152" -defs["locations"]["ImGuiTableBgTarget_"] = "imgui:2057" -defs["locations"]["ImGuiTableCellData"] = "imgui_internal:3120" -defs["locations"]["ImGuiTableColumn"] = "imgui_internal:3061" -defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:2004" -defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:3299" -defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2079" -defs["locations"]["ImGuiTableFlags_"] = "imgui:1951" -defs["locations"]["ImGuiTableHeaderData"] = "imgui_internal:3129" -defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:3139" -defs["locations"]["ImGuiTableRowFlags_"] = "imgui:2042" -defs["locations"]["ImGuiTableSettings"] = "imgui_internal:3323" -defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2069" -defs["locations"]["ImGuiTableTempData"] = "imgui_internal:3276" -defs["locations"]["ImGuiTextBuffer"] = "imgui:2651" -defs["locations"]["ImGuiTextFilter"] = "imgui:2624" -defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:1005" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1868" +defs["locations"]["ImGuiSortDirection"] = "imgui:1466" +defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:2144" +defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1289" +defs["locations"]["ImGuiStorage"] = "imgui:2687" +defs["locations"]["ImGuiStoragePair"] = "imgui:2670" +defs["locations"]["ImGuiStyle"] = "imgui:2211" +defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1057" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1770" +defs["locations"]["ImGuiTabBar"] = "imgui_internal:3015" +defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2978" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1305" +defs["locations"]["ImGuiTabItem"] = "imgui_internal:2995" +defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2986" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1322" +defs["locations"]["ImGuiTable"] = "imgui_internal:3161" +defs["locations"]["ImGuiTableBgTarget_"] = "imgui:2065" +defs["locations"]["ImGuiTableCellData"] = "imgui_internal:3129" +defs["locations"]["ImGuiTableColumn"] = "imgui_internal:3069" +defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:2012" +defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:3308" +defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2087" +defs["locations"]["ImGuiTableFlags_"] = "imgui:1959" +defs["locations"]["ImGuiTableHeaderData"] = "imgui_internal:3138" +defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:3148" +defs["locations"]["ImGuiTableRowFlags_"] = "imgui:2050" +defs["locations"]["ImGuiTableSettings"] = "imgui_internal:3332" +defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2077" +defs["locations"]["ImGuiTableTempData"] = "imgui_internal:3285" +defs["locations"]["ImGuiTextBuffer"] = "imgui:2650" +defs["locations"]["ImGuiTextFilter"] = "imgui:2623" +defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:1006" defs["locations"]["ImGuiTextIndex"] = "imgui_internal:745" -defs["locations"]["ImGuiTextRange"] = "imgui:2634" -defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:1011" +defs["locations"]["ImGuiTextRange"] = "imgui:2633" +defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:1012" defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:981" -defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1212" -defs["locations"]["ImGuiTreeNodeStackData"] = "imgui_internal:1280" -defs["locations"]["ImGuiTypingSelectFlags_"] = "imgui_internal:1648" -defs["locations"]["ImGuiTypingSelectRequest"] = "imgui_internal:1656" -defs["locations"]["ImGuiTypingSelectState"] = "imgui_internal:1667" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1220" +defs["locations"]["ImGuiTreeNodeStackData"] = "imgui_internal:1281" +defs["locations"]["ImGuiTypingSelectFlags_"] = "imgui_internal:1649" +defs["locations"]["ImGuiTypingSelectRequest"] = "imgui_internal:1657" +defs["locations"]["ImGuiTypingSelectState"] = "imgui_internal:1668" defs["locations"]["ImGuiViewport"] = "imgui:3588" defs["locations"]["ImGuiViewportFlags_"] = "imgui:3560" -defs["locations"]["ImGuiViewportP"] = "imgui_internal:1969" -defs["locations"]["ImGuiWindow"] = "imgui_internal:2819" -defs["locations"]["ImGuiWindowClass"] = "imgui:2565" -defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1947" -defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1933" -defs["locations"]["ImGuiWindowFlags_"] = "imgui:1094" -defs["locations"]["ImGuiWindowRefreshFlags_"] = "imgui_internal:1174" -defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:2015" -defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1306" -defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2769" +defs["locations"]["ImGuiViewportP"] = "imgui_internal:1971" +defs["locations"]["ImGuiWindow"] = "imgui_internal:2826" +defs["locations"]["ImGuiWindowClass"] = "imgui:2564" +defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1949" +defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1935" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:1097" +defs["locations"]["ImGuiWindowRefreshFlags_"] = "imgui_internal:1175" +defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:2022" +defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1307" +defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2776" defs["locations"]["ImRect"] = "imgui_internal:547" defs["locations"]["ImVec1"] = "imgui_internal:529" -defs["locations"]["ImVec2"] = "imgui:292" +defs["locations"]["ImVec2"] = "imgui:293" defs["locations"]["ImVec2ih"] = "imgui_internal:537" -defs["locations"]["ImVec4"] = "imgui:305" +defs["locations"]["ImVec4"] = "imgui:306" defs["locations"]["STB_TexteditState"] = "imstb_textedit:321" defs["locations"]["StbTexteditRow"] = "imstb_textedit:368" defs["locations"]["StbUndoRecord"] = "imstb_textedit:303" @@ -6114,192 +6118,171 @@ defs["structs"]["ImGuiIO"][46] = {} defs["structs"]["ImGuiIO"][46]["name"] = "BackendLanguageUserData" defs["structs"]["ImGuiIO"][46]["type"] = "void*" defs["structs"]["ImGuiIO"][47] = {} -defs["structs"]["ImGuiIO"][47]["name"] = "GetClipboardTextFn" -defs["structs"]["ImGuiIO"][47]["type"] = "const char*(*)(void* user_data)" +defs["structs"]["ImGuiIO"][47]["name"] = "WantCaptureMouse" +defs["structs"]["ImGuiIO"][47]["type"] = "bool" defs["structs"]["ImGuiIO"][48] = {} -defs["structs"]["ImGuiIO"][48]["name"] = "SetClipboardTextFn" -defs["structs"]["ImGuiIO"][48]["type"] = "void(*)(void* user_data,const char* text)" +defs["structs"]["ImGuiIO"][48]["name"] = "WantCaptureKeyboard" +defs["structs"]["ImGuiIO"][48]["type"] = "bool" defs["structs"]["ImGuiIO"][49] = {} -defs["structs"]["ImGuiIO"][49]["name"] = "ClipboardUserData" -defs["structs"]["ImGuiIO"][49]["type"] = "void*" +defs["structs"]["ImGuiIO"][49]["name"] = "WantTextInput" +defs["structs"]["ImGuiIO"][49]["type"] = "bool" defs["structs"]["ImGuiIO"][50] = {} -defs["structs"]["ImGuiIO"][50]["name"] = "PlatformOpenInShellFn" -defs["structs"]["ImGuiIO"][50]["type"] = "bool(*)(ImGuiContext* ctx,const char* path)" +defs["structs"]["ImGuiIO"][50]["name"] = "WantSetMousePos" +defs["structs"]["ImGuiIO"][50]["type"] = "bool" defs["structs"]["ImGuiIO"][51] = {} -defs["structs"]["ImGuiIO"][51]["name"] = "PlatformOpenInShellUserData" -defs["structs"]["ImGuiIO"][51]["type"] = "void*" +defs["structs"]["ImGuiIO"][51]["name"] = "WantSaveIniSettings" +defs["structs"]["ImGuiIO"][51]["type"] = "bool" defs["structs"]["ImGuiIO"][52] = {} -defs["structs"]["ImGuiIO"][52]["name"] = "PlatformSetImeDataFn" -defs["structs"]["ImGuiIO"][52]["type"] = "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" +defs["structs"]["ImGuiIO"][52]["name"] = "NavActive" +defs["structs"]["ImGuiIO"][52]["type"] = "bool" defs["structs"]["ImGuiIO"][53] = {} -defs["structs"]["ImGuiIO"][53]["name"] = "PlatformLocaleDecimalPoint" -defs["structs"]["ImGuiIO"][53]["type"] = "ImWchar" +defs["structs"]["ImGuiIO"][53]["name"] = "NavVisible" +defs["structs"]["ImGuiIO"][53]["type"] = "bool" defs["structs"]["ImGuiIO"][54] = {} -defs["structs"]["ImGuiIO"][54]["name"] = "WantCaptureMouse" -defs["structs"]["ImGuiIO"][54]["type"] = "bool" +defs["structs"]["ImGuiIO"][54]["name"] = "Framerate" +defs["structs"]["ImGuiIO"][54]["type"] = "float" defs["structs"]["ImGuiIO"][55] = {} -defs["structs"]["ImGuiIO"][55]["name"] = "WantCaptureKeyboard" -defs["structs"]["ImGuiIO"][55]["type"] = "bool" +defs["structs"]["ImGuiIO"][55]["name"] = "MetricsRenderVertices" +defs["structs"]["ImGuiIO"][55]["type"] = "int" defs["structs"]["ImGuiIO"][56] = {} -defs["structs"]["ImGuiIO"][56]["name"] = "WantTextInput" -defs["structs"]["ImGuiIO"][56]["type"] = "bool" +defs["structs"]["ImGuiIO"][56]["name"] = "MetricsRenderIndices" +defs["structs"]["ImGuiIO"][56]["type"] = "int" defs["structs"]["ImGuiIO"][57] = {} -defs["structs"]["ImGuiIO"][57]["name"] = "WantSetMousePos" -defs["structs"]["ImGuiIO"][57]["type"] = "bool" +defs["structs"]["ImGuiIO"][57]["name"] = "MetricsRenderWindows" +defs["structs"]["ImGuiIO"][57]["type"] = "int" defs["structs"]["ImGuiIO"][58] = {} -defs["structs"]["ImGuiIO"][58]["name"] = "WantSaveIniSettings" -defs["structs"]["ImGuiIO"][58]["type"] = "bool" +defs["structs"]["ImGuiIO"][58]["name"] = "MetricsActiveWindows" +defs["structs"]["ImGuiIO"][58]["type"] = "int" defs["structs"]["ImGuiIO"][59] = {} -defs["structs"]["ImGuiIO"][59]["name"] = "NavActive" -defs["structs"]["ImGuiIO"][59]["type"] = "bool" +defs["structs"]["ImGuiIO"][59]["name"] = "MouseDelta" +defs["structs"]["ImGuiIO"][59]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][60] = {} -defs["structs"]["ImGuiIO"][60]["name"] = "NavVisible" -defs["structs"]["ImGuiIO"][60]["type"] = "bool" +defs["structs"]["ImGuiIO"][60]["name"] = "Ctx" +defs["structs"]["ImGuiIO"][60]["type"] = "ImGuiContext*" defs["structs"]["ImGuiIO"][61] = {} -defs["structs"]["ImGuiIO"][61]["name"] = "Framerate" -defs["structs"]["ImGuiIO"][61]["type"] = "float" +defs["structs"]["ImGuiIO"][61]["name"] = "MousePos" +defs["structs"]["ImGuiIO"][61]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][62] = {} -defs["structs"]["ImGuiIO"][62]["name"] = "MetricsRenderVertices" -defs["structs"]["ImGuiIO"][62]["type"] = "int" +defs["structs"]["ImGuiIO"][62]["name"] = "MouseDown[5]" +defs["structs"]["ImGuiIO"][62]["size"] = 5 +defs["structs"]["ImGuiIO"][62]["type"] = "bool" defs["structs"]["ImGuiIO"][63] = {} -defs["structs"]["ImGuiIO"][63]["name"] = "MetricsRenderIndices" -defs["structs"]["ImGuiIO"][63]["type"] = "int" +defs["structs"]["ImGuiIO"][63]["name"] = "MouseWheel" +defs["structs"]["ImGuiIO"][63]["type"] = "float" defs["structs"]["ImGuiIO"][64] = {} -defs["structs"]["ImGuiIO"][64]["name"] = "MetricsRenderWindows" -defs["structs"]["ImGuiIO"][64]["type"] = "int" +defs["structs"]["ImGuiIO"][64]["name"] = "MouseWheelH" +defs["structs"]["ImGuiIO"][64]["type"] = "float" defs["structs"]["ImGuiIO"][65] = {} -defs["structs"]["ImGuiIO"][65]["name"] = "MetricsActiveWindows" -defs["structs"]["ImGuiIO"][65]["type"] = "int" +defs["structs"]["ImGuiIO"][65]["name"] = "MouseSource" +defs["structs"]["ImGuiIO"][65]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiIO"][66] = {} -defs["structs"]["ImGuiIO"][66]["name"] = "MouseDelta" -defs["structs"]["ImGuiIO"][66]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][66]["name"] = "MouseHoveredViewport" +defs["structs"]["ImGuiIO"][66]["type"] = "ImGuiID" defs["structs"]["ImGuiIO"][67] = {} -defs["structs"]["ImGuiIO"][67]["name"] = "Ctx" -defs["structs"]["ImGuiIO"][67]["type"] = "ImGuiContext*" +defs["structs"]["ImGuiIO"][67]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][67]["type"] = "bool" defs["structs"]["ImGuiIO"][68] = {} -defs["structs"]["ImGuiIO"][68]["name"] = "MousePos" -defs["structs"]["ImGuiIO"][68]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][68]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][68]["type"] = "bool" defs["structs"]["ImGuiIO"][69] = {} -defs["structs"]["ImGuiIO"][69]["name"] = "MouseDown[5]" -defs["structs"]["ImGuiIO"][69]["size"] = 5 +defs["structs"]["ImGuiIO"][69]["name"] = "KeyAlt" defs["structs"]["ImGuiIO"][69]["type"] = "bool" defs["structs"]["ImGuiIO"][70] = {} -defs["structs"]["ImGuiIO"][70]["name"] = "MouseWheel" -defs["structs"]["ImGuiIO"][70]["type"] = "float" +defs["structs"]["ImGuiIO"][70]["name"] = "KeySuper" +defs["structs"]["ImGuiIO"][70]["type"] = "bool" defs["structs"]["ImGuiIO"][71] = {} -defs["structs"]["ImGuiIO"][71]["name"] = "MouseWheelH" -defs["structs"]["ImGuiIO"][71]["type"] = "float" +defs["structs"]["ImGuiIO"][71]["name"] = "KeyMods" +defs["structs"]["ImGuiIO"][71]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiIO"][72] = {} -defs["structs"]["ImGuiIO"][72]["name"] = "MouseSource" -defs["structs"]["ImGuiIO"][72]["type"] = "ImGuiMouseSource" +defs["structs"]["ImGuiIO"][72]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" +defs["structs"]["ImGuiIO"][72]["size"] = 154 +defs["structs"]["ImGuiIO"][72]["type"] = "ImGuiKeyData" defs["structs"]["ImGuiIO"][73] = {} -defs["structs"]["ImGuiIO"][73]["name"] = "MouseHoveredViewport" -defs["structs"]["ImGuiIO"][73]["type"] = "ImGuiID" +defs["structs"]["ImGuiIO"][73]["name"] = "WantCaptureMouseUnlessPopupClose" +defs["structs"]["ImGuiIO"][73]["type"] = "bool" defs["structs"]["ImGuiIO"][74] = {} -defs["structs"]["ImGuiIO"][74]["name"] = "KeyCtrl" -defs["structs"]["ImGuiIO"][74]["type"] = "bool" +defs["structs"]["ImGuiIO"][74]["name"] = "MousePosPrev" +defs["structs"]["ImGuiIO"][74]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][75] = {} -defs["structs"]["ImGuiIO"][75]["name"] = "KeyShift" -defs["structs"]["ImGuiIO"][75]["type"] = "bool" +defs["structs"]["ImGuiIO"][75]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][75]["size"] = 5 +defs["structs"]["ImGuiIO"][75]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][76] = {} -defs["structs"]["ImGuiIO"][76]["name"] = "KeyAlt" -defs["structs"]["ImGuiIO"][76]["type"] = "bool" +defs["structs"]["ImGuiIO"][76]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][76]["size"] = 5 +defs["structs"]["ImGuiIO"][76]["type"] = "double" defs["structs"]["ImGuiIO"][77] = {} -defs["structs"]["ImGuiIO"][77]["name"] = "KeySuper" +defs["structs"]["ImGuiIO"][77]["name"] = "MouseClicked[5]" +defs["structs"]["ImGuiIO"][77]["size"] = 5 defs["structs"]["ImGuiIO"][77]["type"] = "bool" defs["structs"]["ImGuiIO"][78] = {} -defs["structs"]["ImGuiIO"][78]["name"] = "KeyMods" -defs["structs"]["ImGuiIO"][78]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiIO"][78]["name"] = "MouseDoubleClicked[5]" +defs["structs"]["ImGuiIO"][78]["size"] = 5 +defs["structs"]["ImGuiIO"][78]["type"] = "bool" defs["structs"]["ImGuiIO"][79] = {} -defs["structs"]["ImGuiIO"][79]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" -defs["structs"]["ImGuiIO"][79]["size"] = 154 -defs["structs"]["ImGuiIO"][79]["type"] = "ImGuiKeyData" +defs["structs"]["ImGuiIO"][79]["name"] = "MouseClickedCount[5]" +defs["structs"]["ImGuiIO"][79]["size"] = 5 +defs["structs"]["ImGuiIO"][79]["type"] = "ImU16" defs["structs"]["ImGuiIO"][80] = {} -defs["structs"]["ImGuiIO"][80]["name"] = "WantCaptureMouseUnlessPopupClose" -defs["structs"]["ImGuiIO"][80]["type"] = "bool" +defs["structs"]["ImGuiIO"][80]["name"] = "MouseClickedLastCount[5]" +defs["structs"]["ImGuiIO"][80]["size"] = 5 +defs["structs"]["ImGuiIO"][80]["type"] = "ImU16" defs["structs"]["ImGuiIO"][81] = {} -defs["structs"]["ImGuiIO"][81]["name"] = "MousePosPrev" -defs["structs"]["ImGuiIO"][81]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][81]["name"] = "MouseReleased[5]" +defs["structs"]["ImGuiIO"][81]["size"] = 5 +defs["structs"]["ImGuiIO"][81]["type"] = "bool" defs["structs"]["ImGuiIO"][82] = {} -defs["structs"]["ImGuiIO"][82]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][82]["name"] = "MouseDownOwned[5]" defs["structs"]["ImGuiIO"][82]["size"] = 5 -defs["structs"]["ImGuiIO"][82]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][82]["type"] = "bool" defs["structs"]["ImGuiIO"][83] = {} -defs["structs"]["ImGuiIO"][83]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][83]["name"] = "MouseDownOwnedUnlessPopupClose[5]" defs["structs"]["ImGuiIO"][83]["size"] = 5 -defs["structs"]["ImGuiIO"][83]["type"] = "double" +defs["structs"]["ImGuiIO"][83]["type"] = "bool" defs["structs"]["ImGuiIO"][84] = {} -defs["structs"]["ImGuiIO"][84]["name"] = "MouseClicked[5]" -defs["structs"]["ImGuiIO"][84]["size"] = 5 +defs["structs"]["ImGuiIO"][84]["name"] = "MouseWheelRequestAxisSwap" defs["structs"]["ImGuiIO"][84]["type"] = "bool" defs["structs"]["ImGuiIO"][85] = {} -defs["structs"]["ImGuiIO"][85]["name"] = "MouseDoubleClicked[5]" -defs["structs"]["ImGuiIO"][85]["size"] = 5 +defs["structs"]["ImGuiIO"][85]["name"] = "MouseCtrlLeftAsRightClick" defs["structs"]["ImGuiIO"][85]["type"] = "bool" defs["structs"]["ImGuiIO"][86] = {} -defs["structs"]["ImGuiIO"][86]["name"] = "MouseClickedCount[5]" +defs["structs"]["ImGuiIO"][86]["name"] = "MouseDownDuration[5]" defs["structs"]["ImGuiIO"][86]["size"] = 5 -defs["structs"]["ImGuiIO"][86]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][86]["type"] = "float" defs["structs"]["ImGuiIO"][87] = {} -defs["structs"]["ImGuiIO"][87]["name"] = "MouseClickedLastCount[5]" +defs["structs"]["ImGuiIO"][87]["name"] = "MouseDownDurationPrev[5]" defs["structs"]["ImGuiIO"][87]["size"] = 5 -defs["structs"]["ImGuiIO"][87]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][87]["type"] = "float" defs["structs"]["ImGuiIO"][88] = {} -defs["structs"]["ImGuiIO"][88]["name"] = "MouseReleased[5]" +defs["structs"]["ImGuiIO"][88]["name"] = "MouseDragMaxDistanceAbs[5]" defs["structs"]["ImGuiIO"][88]["size"] = 5 -defs["structs"]["ImGuiIO"][88]["type"] = "bool" +defs["structs"]["ImGuiIO"][88]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][89] = {} -defs["structs"]["ImGuiIO"][89]["name"] = "MouseDownOwned[5]" +defs["structs"]["ImGuiIO"][89]["name"] = "MouseDragMaxDistanceSqr[5]" defs["structs"]["ImGuiIO"][89]["size"] = 5 -defs["structs"]["ImGuiIO"][89]["type"] = "bool" +defs["structs"]["ImGuiIO"][89]["type"] = "float" defs["structs"]["ImGuiIO"][90] = {} -defs["structs"]["ImGuiIO"][90]["name"] = "MouseDownOwnedUnlessPopupClose[5]" -defs["structs"]["ImGuiIO"][90]["size"] = 5 -defs["structs"]["ImGuiIO"][90]["type"] = "bool" +defs["structs"]["ImGuiIO"][90]["name"] = "PenPressure" +defs["structs"]["ImGuiIO"][90]["type"] = "float" defs["structs"]["ImGuiIO"][91] = {} -defs["structs"]["ImGuiIO"][91]["name"] = "MouseWheelRequestAxisSwap" +defs["structs"]["ImGuiIO"][91]["name"] = "AppFocusLost" defs["structs"]["ImGuiIO"][91]["type"] = "bool" defs["structs"]["ImGuiIO"][92] = {} -defs["structs"]["ImGuiIO"][92]["name"] = "MouseCtrlLeftAsRightClick" +defs["structs"]["ImGuiIO"][92]["name"] = "AppAcceptingEvents" defs["structs"]["ImGuiIO"][92]["type"] = "bool" defs["structs"]["ImGuiIO"][93] = {} -defs["structs"]["ImGuiIO"][93]["name"] = "MouseDownDuration[5]" -defs["structs"]["ImGuiIO"][93]["size"] = 5 -defs["structs"]["ImGuiIO"][93]["type"] = "float" +defs["structs"]["ImGuiIO"][93]["name"] = "BackendUsingLegacyKeyArrays" +defs["structs"]["ImGuiIO"][93]["type"] = "ImS8" defs["structs"]["ImGuiIO"][94] = {} -defs["structs"]["ImGuiIO"][94]["name"] = "MouseDownDurationPrev[5]" -defs["structs"]["ImGuiIO"][94]["size"] = 5 -defs["structs"]["ImGuiIO"][94]["type"] = "float" +defs["structs"]["ImGuiIO"][94]["name"] = "BackendUsingLegacyNavInputArray" +defs["structs"]["ImGuiIO"][94]["type"] = "bool" defs["structs"]["ImGuiIO"][95] = {} -defs["structs"]["ImGuiIO"][95]["name"] = "MouseDragMaxDistanceAbs[5]" -defs["structs"]["ImGuiIO"][95]["size"] = 5 -defs["structs"]["ImGuiIO"][95]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][95]["name"] = "InputQueueSurrogate" +defs["structs"]["ImGuiIO"][95]["type"] = "ImWchar16" defs["structs"]["ImGuiIO"][96] = {} -defs["structs"]["ImGuiIO"][96]["name"] = "MouseDragMaxDistanceSqr[5]" -defs["structs"]["ImGuiIO"][96]["size"] = 5 -defs["structs"]["ImGuiIO"][96]["type"] = "float" -defs["structs"]["ImGuiIO"][97] = {} -defs["structs"]["ImGuiIO"][97]["name"] = "PenPressure" -defs["structs"]["ImGuiIO"][97]["type"] = "float" -defs["structs"]["ImGuiIO"][98] = {} -defs["structs"]["ImGuiIO"][98]["name"] = "AppFocusLost" -defs["structs"]["ImGuiIO"][98]["type"] = "bool" -defs["structs"]["ImGuiIO"][99] = {} -defs["structs"]["ImGuiIO"][99]["name"] = "AppAcceptingEvents" -defs["structs"]["ImGuiIO"][99]["type"] = "bool" -defs["structs"]["ImGuiIO"][100] = {} -defs["structs"]["ImGuiIO"][100]["name"] = "BackendUsingLegacyKeyArrays" -defs["structs"]["ImGuiIO"][100]["type"] = "ImS8" -defs["structs"]["ImGuiIO"][101] = {} -defs["structs"]["ImGuiIO"][101]["name"] = "BackendUsingLegacyNavInputArray" -defs["structs"]["ImGuiIO"][101]["type"] = "bool" -defs["structs"]["ImGuiIO"][102] = {} -defs["structs"]["ImGuiIO"][102]["name"] = "InputQueueSurrogate" -defs["structs"]["ImGuiIO"][102]["type"] = "ImWchar16" -defs["structs"]["ImGuiIO"][103] = {} -defs["structs"]["ImGuiIO"][103]["name"] = "InputQueueCharacters" -defs["structs"]["ImGuiIO"][103]["template_type"] = "ImWchar" -defs["structs"]["ImGuiIO"][103]["type"] = "ImVector_ImWchar" +defs["structs"]["ImGuiIO"][96]["name"] = "InputQueueCharacters" +defs["structs"]["ImGuiIO"][96]["template_type"] = "ImWchar" +defs["structs"]["ImGuiIO"][96]["type"] = "ImVector_ImWchar" defs["structs"]["ImGuiInputEvent"] = {} defs["structs"]["ImGuiInputEvent"][1] = {} defs["structs"]["ImGuiInputEvent"][1]["name"] = "Type" @@ -6448,8 +6431,8 @@ defs["structs"]["ImGuiInputTextState"][9] = {} defs["structs"]["ImGuiInputTextState"][9]["name"] = "BufCapacityA" defs["structs"]["ImGuiInputTextState"][9]["type"] = "int" defs["structs"]["ImGuiInputTextState"][10] = {} -defs["structs"]["ImGuiInputTextState"][10]["name"] = "ScrollX" -defs["structs"]["ImGuiInputTextState"][10]["type"] = "float" +defs["structs"]["ImGuiInputTextState"][10]["name"] = "Scroll" +defs["structs"]["ImGuiInputTextState"][10]["type"] = "ImVec2" defs["structs"]["ImGuiInputTextState"][11] = {} defs["structs"]["ImGuiInputTextState"][11]["name"] = "Stb" defs["structs"]["ImGuiInputTextState"][11]["type"] = "STB_TexteditState" @@ -7015,82 +6998,109 @@ defs["structs"]["ImGuiPayload"][8]["name"] = "Delivery" defs["structs"]["ImGuiPayload"][8]["type"] = "bool" defs["structs"]["ImGuiPlatformIO"] = {} defs["structs"]["ImGuiPlatformIO"][1] = {} -defs["structs"]["ImGuiPlatformIO"][1]["name"] = "Platform_CreateWindow" -defs["structs"]["ImGuiPlatformIO"][1]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][1]["name"] = "Platform_GetClipboardTextFn" +defs["structs"]["ImGuiPlatformIO"][1]["type"] = "const char*(*)(ImGuiContext* ctx)" defs["structs"]["ImGuiPlatformIO"][2] = {} -defs["structs"]["ImGuiPlatformIO"][2]["name"] = "Platform_DestroyWindow" -defs["structs"]["ImGuiPlatformIO"][2]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][2]["name"] = "Platform_SetClipboardTextFn" +defs["structs"]["ImGuiPlatformIO"][2]["type"] = "void(*)(ImGuiContext* ctx,const char* text)" defs["structs"]["ImGuiPlatformIO"][3] = {} -defs["structs"]["ImGuiPlatformIO"][3]["name"] = "Platform_ShowWindow" -defs["structs"]["ImGuiPlatformIO"][3]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][3]["name"] = "Platform_ClipboardUserData" +defs["structs"]["ImGuiPlatformIO"][3]["type"] = "void*" defs["structs"]["ImGuiPlatformIO"][4] = {} -defs["structs"]["ImGuiPlatformIO"][4]["name"] = "Platform_SetWindowPos" -defs["structs"]["ImGuiPlatformIO"][4]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 pos)" +defs["structs"]["ImGuiPlatformIO"][4]["name"] = "Platform_OpenInShellFn" +defs["structs"]["ImGuiPlatformIO"][4]["type"] = "bool(*)(ImGuiContext* ctx,const char* path)" defs["structs"]["ImGuiPlatformIO"][5] = {} -defs["structs"]["ImGuiPlatformIO"][5]["name"] = "Platform_GetWindowPos" -defs["structs"]["ImGuiPlatformIO"][5]["type"] = "ImVec2(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][5]["name"] = "Platform_OpenInShellUserData" +defs["structs"]["ImGuiPlatformIO"][5]["type"] = "void*" defs["structs"]["ImGuiPlatformIO"][6] = {} -defs["structs"]["ImGuiPlatformIO"][6]["name"] = "Platform_SetWindowSize" -defs["structs"]["ImGuiPlatformIO"][6]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" +defs["structs"]["ImGuiPlatformIO"][6]["name"] = "Platform_SetImeDataFn" +defs["structs"]["ImGuiPlatformIO"][6]["type"] = "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" defs["structs"]["ImGuiPlatformIO"][7] = {} -defs["structs"]["ImGuiPlatformIO"][7]["name"] = "Platform_GetWindowSize" -defs["structs"]["ImGuiPlatformIO"][7]["type"] = "ImVec2(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][7]["name"] = "Platform_ImeUserData" +defs["structs"]["ImGuiPlatformIO"][7]["type"] = "void*" defs["structs"]["ImGuiPlatformIO"][8] = {} -defs["structs"]["ImGuiPlatformIO"][8]["name"] = "Platform_SetWindowFocus" -defs["structs"]["ImGuiPlatformIO"][8]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][8]["name"] = "Platform_LocaleDecimalPoint" +defs["structs"]["ImGuiPlatformIO"][8]["type"] = "ImWchar" defs["structs"]["ImGuiPlatformIO"][9] = {} -defs["structs"]["ImGuiPlatformIO"][9]["name"] = "Platform_GetWindowFocus" -defs["structs"]["ImGuiPlatformIO"][9]["type"] = "bool(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][9]["name"] = "Platform_CreateWindow" +defs["structs"]["ImGuiPlatformIO"][9]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][10] = {} -defs["structs"]["ImGuiPlatformIO"][10]["name"] = "Platform_GetWindowMinimized" -defs["structs"]["ImGuiPlatformIO"][10]["type"] = "bool(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][10]["name"] = "Platform_DestroyWindow" +defs["structs"]["ImGuiPlatformIO"][10]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][11] = {} -defs["structs"]["ImGuiPlatformIO"][11]["name"] = "Platform_SetWindowTitle" -defs["structs"]["ImGuiPlatformIO"][11]["type"] = "void(*)(ImGuiViewport* vp,const char* str)" +defs["structs"]["ImGuiPlatformIO"][11]["name"] = "Platform_ShowWindow" +defs["structs"]["ImGuiPlatformIO"][11]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][12] = {} -defs["structs"]["ImGuiPlatformIO"][12]["name"] = "Platform_SetWindowAlpha" -defs["structs"]["ImGuiPlatformIO"][12]["type"] = "void(*)(ImGuiViewport* vp,float alpha)" +defs["structs"]["ImGuiPlatformIO"][12]["name"] = "Platform_SetWindowPos" +defs["structs"]["ImGuiPlatformIO"][12]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 pos)" defs["structs"]["ImGuiPlatformIO"][13] = {} -defs["structs"]["ImGuiPlatformIO"][13]["name"] = "Platform_UpdateWindow" -defs["structs"]["ImGuiPlatformIO"][13]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][13]["name"] = "Platform_GetWindowPos" +defs["structs"]["ImGuiPlatformIO"][13]["type"] = "ImVec2(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][14] = {} -defs["structs"]["ImGuiPlatformIO"][14]["name"] = "Platform_RenderWindow" -defs["structs"]["ImGuiPlatformIO"][14]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][14]["name"] = "Platform_SetWindowSize" +defs["structs"]["ImGuiPlatformIO"][14]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" defs["structs"]["ImGuiPlatformIO"][15] = {} -defs["structs"]["ImGuiPlatformIO"][15]["name"] = "Platform_SwapBuffers" -defs["structs"]["ImGuiPlatformIO"][15]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][15]["name"] = "Platform_GetWindowSize" +defs["structs"]["ImGuiPlatformIO"][15]["type"] = "ImVec2(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][16] = {} -defs["structs"]["ImGuiPlatformIO"][16]["name"] = "Platform_GetWindowDpiScale" -defs["structs"]["ImGuiPlatformIO"][16]["type"] = "float(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][16]["name"] = "Platform_SetWindowFocus" +defs["structs"]["ImGuiPlatformIO"][16]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][17] = {} -defs["structs"]["ImGuiPlatformIO"][17]["name"] = "Platform_OnChangedViewport" -defs["structs"]["ImGuiPlatformIO"][17]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][17]["name"] = "Platform_GetWindowFocus" +defs["structs"]["ImGuiPlatformIO"][17]["type"] = "bool(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][18] = {} -defs["structs"]["ImGuiPlatformIO"][18]["name"] = "Platform_CreateVkSurface" -defs["structs"]["ImGuiPlatformIO"][18]["type"] = "int(*)(ImGuiViewport* vp,ImU64 vk_inst,const void* vk_allocators,ImU64* out_vk_surface)" +defs["structs"]["ImGuiPlatformIO"][18]["name"] = "Platform_GetWindowMinimized" +defs["structs"]["ImGuiPlatformIO"][18]["type"] = "bool(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][19] = {} -defs["structs"]["ImGuiPlatformIO"][19]["name"] = "Renderer_CreateWindow" -defs["structs"]["ImGuiPlatformIO"][19]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][19]["name"] = "Platform_SetWindowTitle" +defs["structs"]["ImGuiPlatformIO"][19]["type"] = "void(*)(ImGuiViewport* vp,const char* str)" defs["structs"]["ImGuiPlatformIO"][20] = {} -defs["structs"]["ImGuiPlatformIO"][20]["name"] = "Renderer_DestroyWindow" -defs["structs"]["ImGuiPlatformIO"][20]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][20]["name"] = "Platform_SetWindowAlpha" +defs["structs"]["ImGuiPlatformIO"][20]["type"] = "void(*)(ImGuiViewport* vp,float alpha)" defs["structs"]["ImGuiPlatformIO"][21] = {} -defs["structs"]["ImGuiPlatformIO"][21]["name"] = "Renderer_SetWindowSize" -defs["structs"]["ImGuiPlatformIO"][21]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" +defs["structs"]["ImGuiPlatformIO"][21]["name"] = "Platform_UpdateWindow" +defs["structs"]["ImGuiPlatformIO"][21]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][22] = {} -defs["structs"]["ImGuiPlatformIO"][22]["name"] = "Renderer_RenderWindow" +defs["structs"]["ImGuiPlatformIO"][22]["name"] = "Platform_RenderWindow" defs["structs"]["ImGuiPlatformIO"][22]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" defs["structs"]["ImGuiPlatformIO"][23] = {} -defs["structs"]["ImGuiPlatformIO"][23]["name"] = "Renderer_SwapBuffers" +defs["structs"]["ImGuiPlatformIO"][23]["name"] = "Platform_SwapBuffers" defs["structs"]["ImGuiPlatformIO"][23]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" defs["structs"]["ImGuiPlatformIO"][24] = {} -defs["structs"]["ImGuiPlatformIO"][24]["name"] = "Monitors" -defs["structs"]["ImGuiPlatformIO"][24]["template_type"] = "ImGuiPlatformMonitor" -defs["structs"]["ImGuiPlatformIO"][24]["type"] = "ImVector_ImGuiPlatformMonitor" +defs["structs"]["ImGuiPlatformIO"][24]["name"] = "Platform_GetWindowDpiScale" +defs["structs"]["ImGuiPlatformIO"][24]["type"] = "float(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][25] = {} -defs["structs"]["ImGuiPlatformIO"][25]["name"] = "Viewports" -defs["structs"]["ImGuiPlatformIO"][25]["template_type"] = "ImGuiViewport*" -defs["structs"]["ImGuiPlatformIO"][25]["type"] = "ImVector_ImGuiViewportPtr" +defs["structs"]["ImGuiPlatformIO"][25]["name"] = "Platform_OnChangedViewport" +defs["structs"]["ImGuiPlatformIO"][25]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][26] = {} +defs["structs"]["ImGuiPlatformIO"][26]["name"] = "Platform_GetWindowWorkAreaInsets" +defs["structs"]["ImGuiPlatformIO"][26]["type"] = "ImVec4(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][27] = {} +defs["structs"]["ImGuiPlatformIO"][27]["name"] = "Platform_CreateVkSurface" +defs["structs"]["ImGuiPlatformIO"][27]["type"] = "int(*)(ImGuiViewport* vp,ImU64 vk_inst,const void* vk_allocators,ImU64* out_vk_surface)" +defs["structs"]["ImGuiPlatformIO"][28] = {} +defs["structs"]["ImGuiPlatformIO"][28]["name"] = "Renderer_CreateWindow" +defs["structs"]["ImGuiPlatformIO"][28]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][29] = {} +defs["structs"]["ImGuiPlatformIO"][29]["name"] = "Renderer_DestroyWindow" +defs["structs"]["ImGuiPlatformIO"][29]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][30] = {} +defs["structs"]["ImGuiPlatformIO"][30]["name"] = "Renderer_SetWindowSize" +defs["structs"]["ImGuiPlatformIO"][30]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" +defs["structs"]["ImGuiPlatformIO"][31] = {} +defs["structs"]["ImGuiPlatformIO"][31]["name"] = "Renderer_RenderWindow" +defs["structs"]["ImGuiPlatformIO"][31]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][32] = {} +defs["structs"]["ImGuiPlatformIO"][32]["name"] = "Renderer_SwapBuffers" +defs["structs"]["ImGuiPlatformIO"][32]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][33] = {} +defs["structs"]["ImGuiPlatformIO"][33]["name"] = "Monitors" +defs["structs"]["ImGuiPlatformIO"][33]["template_type"] = "ImGuiPlatformMonitor" +defs["structs"]["ImGuiPlatformIO"][33]["type"] = "ImVector_ImGuiPlatformMonitor" +defs["structs"]["ImGuiPlatformIO"][34] = {} +defs["structs"]["ImGuiPlatformIO"][34]["name"] = "Viewports" +defs["structs"]["ImGuiPlatformIO"][34]["template_type"] = "ImGuiViewport*" +defs["structs"]["ImGuiPlatformIO"][34]["type"] = "ImVector_ImGuiViewportPtr" defs["structs"]["ImGuiPlatformImeData"] = {} defs["structs"]["ImGuiPlatformImeData"][1] = {} defs["structs"]["ImGuiPlatformImeData"][1]["name"] = "WantVisible" @@ -7987,113 +7997,116 @@ defs["structs"]["ImGuiTableColumn"][6] = {} defs["structs"]["ImGuiTableColumn"][6]["name"] = "WidthAuto" defs["structs"]["ImGuiTableColumn"][6]["type"] = "float" defs["structs"]["ImGuiTableColumn"][7] = {} -defs["structs"]["ImGuiTableColumn"][7]["name"] = "StretchWeight" +defs["structs"]["ImGuiTableColumn"][7]["name"] = "WidthMax" defs["structs"]["ImGuiTableColumn"][7]["type"] = "float" defs["structs"]["ImGuiTableColumn"][8] = {} -defs["structs"]["ImGuiTableColumn"][8]["name"] = "InitStretchWeightOrWidth" +defs["structs"]["ImGuiTableColumn"][8]["name"] = "StretchWeight" defs["structs"]["ImGuiTableColumn"][8]["type"] = "float" defs["structs"]["ImGuiTableColumn"][9] = {} -defs["structs"]["ImGuiTableColumn"][9]["name"] = "ClipRect" -defs["structs"]["ImGuiTableColumn"][9]["type"] = "ImRect" +defs["structs"]["ImGuiTableColumn"][9]["name"] = "InitStretchWeightOrWidth" +defs["structs"]["ImGuiTableColumn"][9]["type"] = "float" defs["structs"]["ImGuiTableColumn"][10] = {} -defs["structs"]["ImGuiTableColumn"][10]["name"] = "UserID" -defs["structs"]["ImGuiTableColumn"][10]["type"] = "ImGuiID" +defs["structs"]["ImGuiTableColumn"][10]["name"] = "ClipRect" +defs["structs"]["ImGuiTableColumn"][10]["type"] = "ImRect" defs["structs"]["ImGuiTableColumn"][11] = {} -defs["structs"]["ImGuiTableColumn"][11]["name"] = "WorkMinX" -defs["structs"]["ImGuiTableColumn"][11]["type"] = "float" +defs["structs"]["ImGuiTableColumn"][11]["name"] = "UserID" +defs["structs"]["ImGuiTableColumn"][11]["type"] = "ImGuiID" defs["structs"]["ImGuiTableColumn"][12] = {} -defs["structs"]["ImGuiTableColumn"][12]["name"] = "WorkMaxX" +defs["structs"]["ImGuiTableColumn"][12]["name"] = "WorkMinX" defs["structs"]["ImGuiTableColumn"][12]["type"] = "float" defs["structs"]["ImGuiTableColumn"][13] = {} -defs["structs"]["ImGuiTableColumn"][13]["name"] = "ItemWidth" +defs["structs"]["ImGuiTableColumn"][13]["name"] = "WorkMaxX" defs["structs"]["ImGuiTableColumn"][13]["type"] = "float" defs["structs"]["ImGuiTableColumn"][14] = {} -defs["structs"]["ImGuiTableColumn"][14]["name"] = "ContentMaxXFrozen" +defs["structs"]["ImGuiTableColumn"][14]["name"] = "ItemWidth" defs["structs"]["ImGuiTableColumn"][14]["type"] = "float" defs["structs"]["ImGuiTableColumn"][15] = {} -defs["structs"]["ImGuiTableColumn"][15]["name"] = "ContentMaxXUnfrozen" +defs["structs"]["ImGuiTableColumn"][15]["name"] = "ContentMaxXFrozen" defs["structs"]["ImGuiTableColumn"][15]["type"] = "float" defs["structs"]["ImGuiTableColumn"][16] = {} -defs["structs"]["ImGuiTableColumn"][16]["name"] = "ContentMaxXHeadersUsed" +defs["structs"]["ImGuiTableColumn"][16]["name"] = "ContentMaxXUnfrozen" defs["structs"]["ImGuiTableColumn"][16]["type"] = "float" defs["structs"]["ImGuiTableColumn"][17] = {} -defs["structs"]["ImGuiTableColumn"][17]["name"] = "ContentMaxXHeadersIdeal" +defs["structs"]["ImGuiTableColumn"][17]["name"] = "ContentMaxXHeadersUsed" defs["structs"]["ImGuiTableColumn"][17]["type"] = "float" defs["structs"]["ImGuiTableColumn"][18] = {} -defs["structs"]["ImGuiTableColumn"][18]["name"] = "NameOffset" -defs["structs"]["ImGuiTableColumn"][18]["type"] = "ImS16" +defs["structs"]["ImGuiTableColumn"][18]["name"] = "ContentMaxXHeadersIdeal" +defs["structs"]["ImGuiTableColumn"][18]["type"] = "float" defs["structs"]["ImGuiTableColumn"][19] = {} -defs["structs"]["ImGuiTableColumn"][19]["name"] = "DisplayOrder" -defs["structs"]["ImGuiTableColumn"][19]["type"] = "ImGuiTableColumnIdx" +defs["structs"]["ImGuiTableColumn"][19]["name"] = "NameOffset" +defs["structs"]["ImGuiTableColumn"][19]["type"] = "ImS16" defs["structs"]["ImGuiTableColumn"][20] = {} -defs["structs"]["ImGuiTableColumn"][20]["name"] = "IndexWithinEnabledSet" +defs["structs"]["ImGuiTableColumn"][20]["name"] = "DisplayOrder" defs["structs"]["ImGuiTableColumn"][20]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][21] = {} -defs["structs"]["ImGuiTableColumn"][21]["name"] = "PrevEnabledColumn" +defs["structs"]["ImGuiTableColumn"][21]["name"] = "IndexWithinEnabledSet" defs["structs"]["ImGuiTableColumn"][21]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][22] = {} -defs["structs"]["ImGuiTableColumn"][22]["name"] = "NextEnabledColumn" +defs["structs"]["ImGuiTableColumn"][22]["name"] = "PrevEnabledColumn" defs["structs"]["ImGuiTableColumn"][22]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][23] = {} -defs["structs"]["ImGuiTableColumn"][23]["name"] = "SortOrder" +defs["structs"]["ImGuiTableColumn"][23]["name"] = "NextEnabledColumn" defs["structs"]["ImGuiTableColumn"][23]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][24] = {} -defs["structs"]["ImGuiTableColumn"][24]["name"] = "DrawChannelCurrent" -defs["structs"]["ImGuiTableColumn"][24]["type"] = "ImGuiTableDrawChannelIdx" +defs["structs"]["ImGuiTableColumn"][24]["name"] = "SortOrder" +defs["structs"]["ImGuiTableColumn"][24]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][25] = {} -defs["structs"]["ImGuiTableColumn"][25]["name"] = "DrawChannelFrozen" +defs["structs"]["ImGuiTableColumn"][25]["name"] = "DrawChannelCurrent" defs["structs"]["ImGuiTableColumn"][25]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTableColumn"][26] = {} -defs["structs"]["ImGuiTableColumn"][26]["name"] = "DrawChannelUnfrozen" +defs["structs"]["ImGuiTableColumn"][26]["name"] = "DrawChannelFrozen" defs["structs"]["ImGuiTableColumn"][26]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTableColumn"][27] = {} -defs["structs"]["ImGuiTableColumn"][27]["name"] = "IsEnabled" -defs["structs"]["ImGuiTableColumn"][27]["type"] = "bool" +defs["structs"]["ImGuiTableColumn"][27]["name"] = "DrawChannelUnfrozen" +defs["structs"]["ImGuiTableColumn"][27]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTableColumn"][28] = {} -defs["structs"]["ImGuiTableColumn"][28]["name"] = "IsUserEnabled" +defs["structs"]["ImGuiTableColumn"][28]["name"] = "IsEnabled" defs["structs"]["ImGuiTableColumn"][28]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][29] = {} -defs["structs"]["ImGuiTableColumn"][29]["name"] = "IsUserEnabledNextFrame" +defs["structs"]["ImGuiTableColumn"][29]["name"] = "IsUserEnabled" defs["structs"]["ImGuiTableColumn"][29]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][30] = {} -defs["structs"]["ImGuiTableColumn"][30]["name"] = "IsVisibleX" +defs["structs"]["ImGuiTableColumn"][30]["name"] = "IsUserEnabledNextFrame" defs["structs"]["ImGuiTableColumn"][30]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][31] = {} -defs["structs"]["ImGuiTableColumn"][31]["name"] = "IsVisibleY" +defs["structs"]["ImGuiTableColumn"][31]["name"] = "IsVisibleX" defs["structs"]["ImGuiTableColumn"][31]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][32] = {} -defs["structs"]["ImGuiTableColumn"][32]["name"] = "IsRequestOutput" +defs["structs"]["ImGuiTableColumn"][32]["name"] = "IsVisibleY" defs["structs"]["ImGuiTableColumn"][32]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][33] = {} -defs["structs"]["ImGuiTableColumn"][33]["name"] = "IsSkipItems" +defs["structs"]["ImGuiTableColumn"][33]["name"] = "IsRequestOutput" defs["structs"]["ImGuiTableColumn"][33]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][34] = {} -defs["structs"]["ImGuiTableColumn"][34]["name"] = "IsPreserveWidthAuto" +defs["structs"]["ImGuiTableColumn"][34]["name"] = "IsSkipItems" defs["structs"]["ImGuiTableColumn"][34]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][35] = {} -defs["structs"]["ImGuiTableColumn"][35]["name"] = "NavLayerCurrent" -defs["structs"]["ImGuiTableColumn"][35]["type"] = "ImS8" +defs["structs"]["ImGuiTableColumn"][35]["name"] = "IsPreserveWidthAuto" +defs["structs"]["ImGuiTableColumn"][35]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][36] = {} -defs["structs"]["ImGuiTableColumn"][36]["name"] = "AutoFitQueue" -defs["structs"]["ImGuiTableColumn"][36]["type"] = "ImU8" +defs["structs"]["ImGuiTableColumn"][36]["name"] = "NavLayerCurrent" +defs["structs"]["ImGuiTableColumn"][36]["type"] = "ImS8" defs["structs"]["ImGuiTableColumn"][37] = {} -defs["structs"]["ImGuiTableColumn"][37]["name"] = "CannotSkipItemsQueue" +defs["structs"]["ImGuiTableColumn"][37]["name"] = "AutoFitQueue" defs["structs"]["ImGuiTableColumn"][37]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][38] = {} -defs["structs"]["ImGuiTableColumn"][38]["bitfield"] = "2" -defs["structs"]["ImGuiTableColumn"][38]["name"] = "SortDirection" +defs["structs"]["ImGuiTableColumn"][38]["name"] = "CannotSkipItemsQueue" defs["structs"]["ImGuiTableColumn"][38]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][39] = {} defs["structs"]["ImGuiTableColumn"][39]["bitfield"] = "2" -defs["structs"]["ImGuiTableColumn"][39]["name"] = "SortDirectionsAvailCount" +defs["structs"]["ImGuiTableColumn"][39]["name"] = "SortDirection" defs["structs"]["ImGuiTableColumn"][39]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][40] = {} -defs["structs"]["ImGuiTableColumn"][40]["bitfield"] = "4" -defs["structs"]["ImGuiTableColumn"][40]["name"] = "SortDirectionsAvailMask" +defs["structs"]["ImGuiTableColumn"][40]["bitfield"] = "2" +defs["structs"]["ImGuiTableColumn"][40]["name"] = "SortDirectionsAvailCount" defs["structs"]["ImGuiTableColumn"][40]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][41] = {} -defs["structs"]["ImGuiTableColumn"][41]["name"] = "SortDirectionsAvailList" +defs["structs"]["ImGuiTableColumn"][41]["bitfield"] = "4" +defs["structs"]["ImGuiTableColumn"][41]["name"] = "SortDirectionsAvailMask" defs["structs"]["ImGuiTableColumn"][41]["type"] = "ImU8" +defs["structs"]["ImGuiTableColumn"][42] = {} +defs["structs"]["ImGuiTableColumn"][42]["name"] = "SortDirectionsAvailList" +defs["structs"]["ImGuiTableColumn"][42]["type"] = "ImU8" defs["structs"]["ImGuiTableColumnSettings"] = {} defs["structs"]["ImGuiTableColumnSettings"][1] = {} defs["structs"]["ImGuiTableColumnSettings"][1]["name"] = "WidthOrWeight" @@ -8434,16 +8447,16 @@ defs["structs"]["ImGuiViewportP"][18] = {} defs["structs"]["ImGuiViewportP"][18]["name"] = "LastRendererSize" defs["structs"]["ImGuiViewportP"][18]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][19] = {} -defs["structs"]["ImGuiViewportP"][19]["name"] = "WorkOffsetMin" +defs["structs"]["ImGuiViewportP"][19]["name"] = "WorkInsetMin" defs["structs"]["ImGuiViewportP"][19]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][20] = {} -defs["structs"]["ImGuiViewportP"][20]["name"] = "WorkOffsetMax" +defs["structs"]["ImGuiViewportP"][20]["name"] = "WorkInsetMax" defs["structs"]["ImGuiViewportP"][20]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][21] = {} -defs["structs"]["ImGuiViewportP"][21]["name"] = "BuildWorkOffsetMin" +defs["structs"]["ImGuiViewportP"][21]["name"] = "BuildWorkInsetMin" defs["structs"]["ImGuiViewportP"][21]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][22] = {} -defs["structs"]["ImGuiViewportP"][22]["name"] = "BuildWorkOffsetMax" +defs["structs"]["ImGuiViewportP"][22]["name"] = "BuildWorkInsetMax" defs["structs"]["ImGuiViewportP"][22]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"] = {} defs["structs"]["ImGuiWindow"][1] = {} diff --git a/imgui b/imgui index 139e99c..f63c95a 160000 --- a/imgui +++ b/imgui @@ -1 +1 @@ -Subproject commit 139e99ca37a3e127c87690202faec005cd892d36 +Subproject commit f63c95a076a401721ceaf21f30d4f12e8c40cb2c