From a21aa1d6132f05e600d9f261fcc0f8cda0775e73 Mon Sep 17 00:00:00 2001 From: Victor Bombi Date: Fri, 24 Dec 2021 11:34:47 +0100 Subject: [PATCH] pull imgui 1.86 and generate --- README.md | 2 +- cimgui.cpp | 104 +- cimgui.h | 102 +- generator/output/definitions.json | 2242 ++++++++++++++--------- generator/output/definitions.lua | 2186 +++++++++++++--------- generator/output/structs_and_enums.json | 425 +++-- generator/output/structs_and_enums.lua | 1235 +++++++------ generator/output/typedefs_dict.json | 2 + generator/output/typedefs_dict.lua | 2 + imgui | 2 +- 10 files changed, 3687 insertions(+), 2615 deletions(-) diff --git a/README.md b/README.md index c441a915..b503bd68 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ History: Initially cimgui was developed by Stephan Dilly as hand-written code but lately turned into an auto-generated version by sonoro1234 in order to keep up with imgui more easily (letting the user select the desired branch and commit) Notes: -* currently this wrapper is based on version [1.85 of Dear ImGui with internal api] +* currently this wrapper is based on version [1.86 of Dear ImGui with internal api] * only functions, structs and enums from imgui.h (an optionally imgui_internal.h) are wrapped. * if you are interested in imgui backends you should look [LuaJIT-ImGui](https://github.com/sonoro1234/LuaJIT-ImGui) project. * All naming is algorithmic except for those names that were coded in cimgui_overloads table (https://github.com/cimgui/cimgui/blob/master/generator/generator.lua#L60). In the official version this table is empty. diff --git a/cimgui.cpp b/cimgui.cpp index 541f5a24..0e2e44ad 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.85" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.86" from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //docking branch @@ -1441,10 +1441,6 @@ CIMGUI_API ImGuiStorage* igGetStateStorage() { return ImGui::GetStateStorage(); } -CIMGUI_API void igCalcListClipping(int items_count,float items_height,int* out_items_display_start,int* out_items_display_end) -{ - return ImGui::CalcListClipping(items_count,items_height,out_items_display_start,out_items_display_end); -} CIMGUI_API bool igBeginChildFrame(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags) { return ImGui::BeginChildFrame(id,size,flags); @@ -1513,6 +1509,10 @@ CIMGUI_API bool igIsMouseDoubleClicked(ImGuiMouseButton button) { return ImGui::IsMouseDoubleClicked(button); } +CIMGUI_API int igGetMouseClickedCount(ImGuiMouseButton button) +{ + return ImGui::GetMouseClickedCount(button); +} CIMGUI_API bool igIsMouseHoveringRect(const ImVec2 r_min,const ImVec2 r_max,bool clip) { return ImGui::IsMouseHoveringRect(r_min,r_max,clip); @@ -1941,6 +1941,10 @@ CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self) { return self->Step(); } +CIMGUI_API void ImGuiListClipper_ForceDisplayRangeByIndices(ImGuiListClipper* self,int item_min,int item_max) +{ + return self->ForceDisplayRangeByIndices(item_min,item_max); +} CIMGUI_API ImColor* ImColor_ImColor_Nil(void) { return IM_NEW(ImColor)(); @@ -2577,6 +2581,10 @@ CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImU32 seed) { return ImHashStr(data,data_size,seed); } +CIMGUI_API void igImQsort(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*)) +{ + return ImQsort(base,count,size_of_element,compare_func); +} CIMGUI_API ImU32 igImAlphaBlendColors(ImU32 col_a,ImU32 col_b) { return ImAlphaBlendColors(col_a,col_b); @@ -2845,6 +2853,10 @@ CIMGUI_API void igImMul(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs) { *pOut = ImMul(lhs,rhs); } +CIMGUI_API bool igImIsFloatAboveGuaranteedIntegerPrecision(float f) +{ + return ImIsFloatAboveGuaranteedIntegerPrecision(f); +} CIMGUI_API void igImBezierCubicCalc(ImVec2 *pOut,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,float t) { *pOut = ImBezierCubicCalc(p1,p2,p3,p4,t); @@ -3265,6 +3277,26 @@ CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(int index) { return IM_NEW(ImGuiPtrOrIndex)(index); } +CIMGUI_API ImGuiListClipperRange ImGuiListClipperRange_FromIndices(int min,int max) +{ + return ImGuiListClipperRange::FromIndices(min,max); +} +CIMGUI_API ImGuiListClipperRange ImGuiListClipperRange_FromPositions(float y1,float y2,int off_min,int off_max) +{ + return ImGuiListClipperRange::FromPositions(y1,y2,off_min,off_max); +} +CIMGUI_API ImGuiListClipperData* ImGuiListClipperData_ImGuiListClipperData(void) +{ + return IM_NEW(ImGuiListClipperData)(); +} +CIMGUI_API void ImGuiListClipperData_destroy(ImGuiListClipperData* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiListClipperData_Reset(ImGuiListClipperData* self,ImGuiListClipper* clipper) +{ + return self->Reset(clipper); +} CIMGUI_API ImGuiNavItemData* ImGuiNavItemData_ImGuiNavItemData(void) { return IM_NEW(ImGuiNavItemData)(); @@ -3609,6 +3641,10 @@ CIMGUI_API bool igIsWindowChildOf(ImGuiWindow* window,ImGuiWindow* potential_par { return ImGui::IsWindowChildOf(window,potential_parent,popup_hierarchy,dock_hierarchy); } +CIMGUI_API bool igIsWindowWithinBeginStackOf(ImGuiWindow* window,ImGuiWindow* potential_parent) +{ + return ImGui::IsWindowWithinBeginStackOf(window,potential_parent); +} CIMGUI_API bool igIsWindowAbove(ImGuiWindow* potential_above,ImGuiWindow* potential_below) { return ImGui::IsWindowAbove(potential_above,potential_below); @@ -3633,6 +3669,14 @@ CIMGUI_API void igSetWindowHitTestHole(ImGuiWindow* window,const ImVec2 pos,cons { return ImGui::SetWindowHitTestHole(window,pos,size); } +CIMGUI_API void igWindowRectAbsToRel(ImRect *pOut,ImGuiWindow* window,const ImRect r) +{ + *pOut = ImGui::WindowRectAbsToRel(window,r); +} +CIMGUI_API void igWindowRectRelToAbs(ImRect *pOut,ImGuiWindow* window,const ImRect r) +{ + *pOut = ImGui::WindowRectRelToAbs(window,r); +} CIMGUI_API void igFocusWindow(ImGuiWindow* window) { return ImGui::FocusWindow(window); @@ -3653,6 +3697,18 @@ CIMGUI_API void igBringWindowToDisplayBack(ImGuiWindow* window) { return ImGui::BringWindowToDisplayBack(window); } +CIMGUI_API void igBringWindowToDisplayBehind(ImGuiWindow* window,ImGuiWindow* above_window) +{ + return ImGui::BringWindowToDisplayBehind(window,above_window); +} +CIMGUI_API int igFindWindowDisplayIndex(ImGuiWindow* window) +{ + return ImGui::FindWindowDisplayIndex(window); +} +CIMGUI_API ImGuiWindow* igFindBottomMostVisibleWindowWithinBeginStack(ImGuiWindow* window) +{ + return ImGui::FindBottomMostVisibleWindowWithinBeginStack(window); +} CIMGUI_API void igSetCurrentFont(ImFont* font) { return ImGui::SetCurrentFont(font); @@ -3861,10 +3917,6 @@ CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id) { return ImGui::ItemHoverable(bb,id); } -CIMGUI_API void igItemInputable(ImGuiWindow* window,ImGuiID id) -{ - return ImGui::ItemInputable(window,id); -} CIMGUI_API bool igIsClippedEx(const ImRect bb,ImGuiID id) { return ImGui::IsClippedEx(bb,id); @@ -3949,9 +4001,9 @@ CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_flags) { return ImGui::BeginPopupEx(id,extra_flags); } -CIMGUI_API void igBeginTooltipEx(ImGuiWindowFlags extra_flags,ImGuiTooltipFlags tooltip_flags) +CIMGUI_API void igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags) { - return ImGui::BeginTooltipEx(extra_flags,tooltip_flags); + return ImGui::BeginTooltipEx(tooltip_flags,extra_window_flags); } CIMGUI_API void igGetPopupAllowedExtentRect(ImRect *pOut,ImGuiWindow* window) { @@ -3961,6 +4013,10 @@ CIMGUI_API ImGuiWindow* igGetTopMostPopupModal() { return ImGui::GetTopMostPopupModal(); } +CIMGUI_API ImGuiWindow* igGetTopMostAndVisiblePopupModal() +{ + return ImGui::GetTopMostAndVisiblePopupModal(); +} CIMGUI_API void igFindBestWindowPosForPopup(ImVec2 *pOut,ImGuiWindow* window) { *pOut = ImGui::FindBestWindowPosForPopup(window); @@ -4013,9 +4069,9 @@ CIMGUI_API void igNavMoveRequestForward(ImGuiDir move_dir,ImGuiDir clip_dir,ImGu { return ImGui::NavMoveRequestForward(move_dir,clip_dir,move_flags,scroll_flags); } -CIMGUI_API void igNavMoveRequestResolveWithLastItem() +CIMGUI_API void igNavMoveRequestResolveWithLastItem(ImGuiNavItemData* result) { - return ImGui::NavMoveRequestResolveWithLastItem(); + return ImGui::NavMoveRequestResolveWithLastItem(result); } CIMGUI_API void igNavMoveRequestCancel() { @@ -4129,6 +4185,10 @@ CIMGUI_API void igDockContextNewFrameUpdateDocking(ImGuiContext* ctx) { return ImGui::DockContextNewFrameUpdateDocking(ctx); } +CIMGUI_API void igDockContextEndFrame(ImGuiContext* ctx) +{ + return ImGui::DockContextEndFrame(ctx); +} CIMGUI_API ImGuiID igDockContextGenNodeID(ImGuiContext* ctx) { return ImGui::DockContextGenNodeID(ctx); @@ -4161,6 +4221,10 @@ CIMGUI_API ImGuiDockNode* igDockNodeGetRootNode(ImGuiDockNode* node) { return ImGui::DockNodeGetRootNode(node); } +CIMGUI_API bool igDockNodeIsInHierarchyOf(ImGuiDockNode* node,ImGuiDockNode* parent) +{ + return ImGui::DockNodeIsInHierarchyOf(node,parent); +} CIMGUI_API int igDockNodeGetDepth(const ImGuiDockNode* node) { return ImGui::DockNodeGetDepth(node); @@ -4605,6 +4669,10 @@ CIMGUI_API void igRenderRectFilledWithHole(ImDrawList* draw_list,ImRect outer,Im { return ImGui::RenderRectFilledWithHole(draw_list,outer,inner,col,rounding); } +CIMGUI_API ImDrawFlags igCalcRoundingFlagsForRectInRect(const ImRect r_in,const ImRect r_outer,float threshold) +{ + return ImGui::CalcRoundingFlagsForRectInRect(r_in,r_outer,threshold); +} CIMGUI_API void igTextEx(const char* text,const char* text_end,ImGuiTextFlags flags) { return ImGui::TextEx(text,text_end,flags); @@ -4629,7 +4697,7 @@ CIMGUI_API void igScrollbar(ImGuiAxis axis) { return ImGui::Scrollbar(axis); } -CIMGUI_API bool igScrollbarEx(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* p_scroll_v,float avail_v,float contents_v,ImDrawFlags flags) +CIMGUI_API bool igScrollbarEx(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags flags) { return ImGui::ScrollbarEx(bb,id,axis,p_scroll_v,avail_v,contents_v,flags); } @@ -4677,9 +4745,9 @@ CIMGUI_API bool igSliderBehavior(const ImRect bb,ImGuiID id,ImGuiDataType data_t { return ImGui::SliderBehavior(bb,id,data_type,p_v,p_min,p_max,format,flags,out_grab_bb); } -CIMGUI_API bool igSplitterBehavior(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend,float hover_visibility_delay) +CIMGUI_API bool igSplitterBehavior(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend,float hover_visibility_delay,ImU32 bg_col) { - return ImGui::SplitterBehavior(bb,id,axis,size1,size2,min_size1,min_size2,hover_extend,hover_visibility_delay); + return ImGui::SplitterBehavior(bb,id,axis,size1,size2,min_size1,min_size2,hover_extend,hover_visibility_delay,bg_col); } CIMGUI_API bool igTreeNodeBehavior(ImGuiID id,ImGuiTreeNodeFlags flags,const char* label,const char* label_end) { @@ -4845,6 +4913,10 @@ CIMGUI_API void igDebugNodeWindowsList(ImVector_ImGuiWindowPtr* windows,const ch { return ImGui::DebugNodeWindowsList(windows,label); } +CIMGUI_API void igDebugNodeWindowsListByBeginStackParent(ImGuiWindow** windows,int windows_size,ImGuiWindow* parent_in_begin_stack) +{ + return ImGui::DebugNodeWindowsListByBeginStackParent(windows,windows_size,parent_in_begin_stack); +} CIMGUI_API void igDebugNodeViewport(ImGuiViewportP* viewport) { return ImGui::DebugNodeViewport(viewport); diff --git a/cimgui.h b/cimgui.h index 73c74013..4bb21ee2 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.85" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.86" from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //docking branch #ifndef CIMGUI_INCLUDED @@ -46,6 +46,8 @@ typedef struct ImGuiStackTool ImGuiStackTool; typedef struct ImGuiStackLevelInfo ImGuiStackLevelInfo; typedef struct ImGuiViewportP ImGuiViewportP; typedef struct ImGuiWindowDockStyle ImGuiWindowDockStyle; +typedef struct ImGuiListClipperData ImGuiListClipperData; +typedef struct ImGuiListClipperRange ImGuiListClipperRange; typedef struct ImGuiPtrOrIndex ImGuiPtrOrIndex; typedef struct ImGuiShrinkWidthItem ImGuiShrinkWidthItem; typedef struct ImGuiWindowStackData ImGuiWindowStackData; @@ -297,6 +299,8 @@ typedef struct ImVector_ImGuiDockRequest {int Size;int Capacity;ImGuiDockRequest typedef struct ImVector_ImGuiGroupData {int Size;int Capacity;ImGuiGroupData* Data;} ImVector_ImGuiGroupData; typedef struct ImVector_ImGuiID {int Size;int Capacity;ImGuiID* Data;} ImVector_ImGuiID; typedef struct ImVector_ImGuiItemFlags {int Size;int Capacity;ImGuiItemFlags* Data;} ImVector_ImGuiItemFlags; +typedef struct ImVector_ImGuiListClipperData {int Size;int Capacity;ImGuiListClipperData* Data;} ImVector_ImGuiListClipperData; +typedef struct ImVector_ImGuiListClipperRange {int Size;int Capacity;ImGuiListClipperRange* Data;} ImVector_ImGuiListClipperRange; typedef struct ImVector_ImGuiOldColumnData {int Size;int Capacity;ImGuiOldColumnData* Data;} ImVector_ImGuiOldColumnData; typedef struct ImVector_ImGuiOldColumns {int Size;int Capacity;ImGuiOldColumns* Data;} ImVector_ImGuiOldColumns; typedef struct ImVector_ImGuiPlatformMonitor {int Size;int Capacity;ImGuiPlatformMonitor* Data;} ImVector_ImGuiPlatformMonitor; @@ -973,10 +977,11 @@ struct ImGuiIO double MouseClickedTime[5]; bool MouseClicked[5]; bool MouseDoubleClicked[5]; + ImU16 MouseClickedCount[5]; + ImU16 MouseClickedLastCount[5]; bool MouseReleased[5]; bool MouseDownOwned[5]; bool MouseDownOwnedUnlessPopupClose[5]; - bool MouseDownWasDoubleClick[5]; float MouseDownDuration[5]; float MouseDownDurationPrev[5]; ImVec2 MouseDragMaxDistanceAbs[5]; @@ -1084,10 +1089,9 @@ struct ImGuiListClipper int DisplayStart; int DisplayEnd; int ItemsCount; - int StepNo; - int ItemsFrozen; float ItemsHeight; float StartPosY; + void* TempData; }; struct ImColor { @@ -1614,8 +1618,6 @@ struct ImGuiInputTextState bool SelectedAllMouseLock; bool Edited; ImGuiInputTextFlags Flags; - ImGuiInputTextCallback UserCallback; - void* UserCallbackData; }; struct ImGuiPopupData { @@ -1714,6 +1716,22 @@ struct ImGuiPtrOrIndex void* Ptr; int Index; }; +struct ImGuiListClipperRange +{ + int Min; + int Max; + bool PosToIndexConvert; + ImS8 PosToIndexOffsetMin; + ImS8 PosToIndexOffsetMax; +}; +struct ImGuiListClipperData +{ + ImGuiListClipper* ListClipper; + float LossynessOffset; + int StepNo; + int ItemsFrozen; + ImVector_ImGuiListClipperRange Ranges; +}; typedef enum { ImGuiActivateFlags_None = 0, ImGuiActivateFlags_PreferInput = 1 << 0, @@ -1741,9 +1759,10 @@ typedef enum { }ImGuiNavHighlightFlags_; typedef enum { ImGuiNavDirSourceFlags_None = 0, - ImGuiNavDirSourceFlags_Keyboard = 1 << 0, - ImGuiNavDirSourceFlags_PadDPad = 1 << 1, - ImGuiNavDirSourceFlags_PadLStick = 1 << 2 + ImGuiNavDirSourceFlags_RawKeyboard = 1 << 0, + ImGuiNavDirSourceFlags_Keyboard = 1 << 1, + ImGuiNavDirSourceFlags_PadDPad = 1 << 2, + ImGuiNavDirSourceFlags_PadLStick = 1 << 3 }ImGuiNavDirSourceFlags_; typedef enum { ImGuiNavMoveFlags_None = 0, @@ -1756,9 +1775,10 @@ typedef enum { ImGuiNavMoveFlags_ScrollToEdgeY = 1 << 6, ImGuiNavMoveFlags_Forwarded = 1 << 7, ImGuiNavMoveFlags_DebugNoResult = 1 << 8, - ImGuiNavMoveFlags_Tabbing = 1 << 9, - ImGuiNavMoveFlags_Activate = 1 << 10, - ImGuiNavMoveFlags_DontSetNavHighlight = 1 << 11 + ImGuiNavMoveFlags_FocusApi = 1 << 9, + ImGuiNavMoveFlags_Tabbing = 1 << 10, + ImGuiNavMoveFlags_Activate = 1 << 11, + ImGuiNavMoveFlags_DontSetNavHighlight = 1 << 12 }ImGuiNavMoveFlags_; typedef enum { ImGuiNavLayer_Main = 0, @@ -1858,6 +1878,7 @@ struct ImGuiDockNode ImVec2 SizeRef; ImGuiAxis SplitAxis; ImGuiWindowClass WindowClass; + ImU32 LastBgColor; ImGuiWindow* HostWindow; ImGuiWindow* VisibleWindow; ImGuiDockNode* CentralNode; @@ -1874,6 +1895,7 @@ struct ImGuiDockNode ImGuiDataAuthority AuthorityForViewport :3; bool IsVisible :1; bool IsFocused :1; + bool IsBgDrawnThisFrame :1; bool HasCloseButton :1; bool HasWindowMenuButton :1; bool HasCentralNodeChild :1; @@ -1882,7 +1904,6 @@ struct ImGuiDockNode bool WantMouseMove :1; bool WantHiddenTabBarUpdate :1; bool WantHiddenTabBarToggle :1; - bool MarkedForPosSizeWrite :1; }; typedef enum { ImGuiWindowDockStyleCol_Text, @@ -2072,6 +2093,7 @@ struct ImGuiContext ImVector_ImGuiGroupData GroupStack; ImVector_ImGuiPopupData OpenPopupStack; ImVector_ImGuiPopupData BeginPopupStack; + int BeginMenuCount; ImVector_ImGuiViewportPPtr Viewports; float CurrentDpiScale; ImGuiViewportP* CurrentViewport; @@ -2088,7 +2110,6 @@ struct ImGuiContext ImGuiID NavActivatePressedId; ImGuiID NavActivateInputId; ImGuiActivateFlags NavActivateFlags; - ImGuiID NavJustTabbedId; ImGuiID NavJustMovedToId; ImGuiID NavJustMovedToFocusScopeId; ImGuiKeyModFlags NavJustMovedToKeyMods; @@ -2096,7 +2117,6 @@ struct ImGuiContext ImGuiActivateFlags NavNextActivateFlags; ImGuiInputSource NavInputSource; ImGuiNavLayer NavLayer; - int NavIdTabCounter; bool NavIdIsAlive; bool NavMousePosDirty; bool NavDisableHighlight; @@ -2116,22 +2136,20 @@ struct ImGuiContext ImGuiDir NavMoveDirForDebug; ImGuiDir NavMoveClipDir; ImRect NavScoringRect; + ImRect NavScoringNoClipRect; int NavScoringDebugCount; - int NavTabbingInputableRemaining; + int NavTabbingDir; + int NavTabbingCounter; ImGuiNavItemData NavMoveResultLocal; ImGuiNavItemData NavMoveResultLocalVisible; ImGuiNavItemData NavMoveResultOther; + ImGuiNavItemData NavTabbingResultFirst; ImGuiWindow* NavWindowingTarget; ImGuiWindow* NavWindowingTargetAnim; ImGuiWindow* NavWindowingListWindow; float NavWindowingTimer; float NavWindowingHighlightAlpha; bool NavWindowingToggleLayer; - ImGuiWindow* TabFocusRequestCurrWindow; - ImGuiWindow* TabFocusRequestNextWindow; - int TabFocusRequestCurrCounterTabStop; - int TabFocusRequestNextCounterTabStop; - bool TabFocusPressed; float DimBgRatio; ImGuiMouseCursor MouseCursor; bool DragDropActive; @@ -2151,10 +2169,12 @@ struct ImGuiContext ImGuiID DragDropHoldJustPressedId; ImVector_unsigned_char DragDropPayloadBufHeap; unsigned char DragDropPayloadBufLocal[16]; + int ClipperTempDataStacked; + ImVector_ImGuiListClipperData ClipperTempData; ImGuiTable* CurrentTable; - int CurrentTableStackIdx; + int TablesTempDataStacked; + ImVector_ImGuiTableTempData TablesTempData; ImPool_ImGuiTable Tables; - ImVector_ImGuiTableTempData TablesTempDataStack; ImVector_float TablesLastTimeActive; ImVector_ImDrawChannel DrawChannelsTempMergeBuffer; ImGuiTabBar* CurrentTabBar; @@ -2234,6 +2254,7 @@ struct ImGuiWindowTempData ImVec1 Indent; ImVec1 ColumnsOffset; ImVec1 GroupOffset; + ImVec2 CursorStartPosLossyness; ImGuiNavLayer NavLayerCurrent; short NavLayersActiveMask; short NavLayersActiveMaskNext; @@ -2251,7 +2272,6 @@ struct ImGuiWindowTempData int CurrentTableIdx; ImGuiLayoutType LayoutType; ImGuiLayoutType ParentLayoutType; - int FocusCounterTabStop; float ItemWidth; float TextWrapPos; ImVector_float ItemWidthStack; @@ -2296,6 +2316,7 @@ struct ImGuiWindow bool Appearing; bool Hidden; bool IsFallbackWindow; + bool IsExplicitChild; bool HasCloseButton; signed char ResizeBorderHeld; short BeginCount; @@ -2340,6 +2361,7 @@ struct ImGuiWindow ImDrawList* DrawList; ImDrawList DrawListInst; ImGuiWindow* ParentWindow; + ImGuiWindow* ParentWindowInBeginStack; ImGuiWindow* RootWindow; ImGuiWindow* RootWindowPopupTree; ImGuiWindow* RootWindowDockTree; @@ -2656,6 +2678,8 @@ typedef ImVector ImVector_ImGuiDockRequest; typedef ImVector ImVector_ImGuiGroupData; typedef ImVector ImVector_ImGuiID; typedef ImVector ImVector_ImGuiItemFlags; +typedef ImVector ImVector_ImGuiListClipperData; +typedef ImVector ImVector_ImGuiListClipperRange; typedef ImVector ImVector_ImGuiOldColumnData; typedef ImVector ImVector_ImGuiOldColumns; typedef ImVector ImVector_ImGuiPlatformMonitor; @@ -3032,7 +3056,6 @@ CIMGUI_API ImDrawListSharedData* igGetDrawListSharedData(void); CIMGUI_API const char* igGetStyleColorName(ImGuiCol idx); CIMGUI_API void igSetStateStorage(ImGuiStorage* storage); CIMGUI_API ImGuiStorage* igGetStateStorage(void); -CIMGUI_API void igCalcListClipping(int items_count,float items_height,int* out_items_display_start,int* out_items_display_end); CIMGUI_API bool igBeginChildFrame(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags); CIMGUI_API void igEndChildFrame(void); CIMGUI_API void igCalcTextSize(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width); @@ -3050,6 +3073,7 @@ CIMGUI_API bool igIsMouseDown(ImGuiMouseButton button); CIMGUI_API bool igIsMouseClicked(ImGuiMouseButton button,bool repeat); CIMGUI_API bool igIsMouseReleased(ImGuiMouseButton button); CIMGUI_API bool igIsMouseDoubleClicked(ImGuiMouseButton button); +CIMGUI_API int igGetMouseClickedCount(ImGuiMouseButton button); CIMGUI_API bool igIsMouseHoveringRect(const ImVec2 r_min,const ImVec2 r_max,bool clip); CIMGUI_API bool igIsMousePosValid(const ImVec2* mouse_pos); CIMGUI_API bool igIsAnyMouseDown(void); @@ -3157,6 +3181,7 @@ CIMGUI_API void ImGuiListClipper_destroy(ImGuiListClipper* self); CIMGUI_API void ImGuiListClipper_Begin(ImGuiListClipper* self,int items_count,float items_height); CIMGUI_API void ImGuiListClipper_End(ImGuiListClipper* self); CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self); +CIMGUI_API void ImGuiListClipper_ForceDisplayRangeByIndices(ImGuiListClipper* self,int item_min,int item_max); CIMGUI_API ImColor* ImColor_ImColor_Nil(void); CIMGUI_API void ImColor_destroy(ImColor* self); CIMGUI_API ImColor* ImColor_ImColor_Int(int r,int g,int b,int a); @@ -3316,6 +3341,7 @@ CIMGUI_API ImGuiPlatformMonitor* ImGuiPlatformMonitor_ImGuiPlatformMonitor(void) CIMGUI_API void ImGuiPlatformMonitor_destroy(ImGuiPlatformMonitor* self); CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImU32 seed); CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImU32 seed); +CIMGUI_API void igImQsort(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*)); CIMGUI_API ImU32 igImAlphaBlendColors(ImU32 col_a,ImU32 col_b); CIMGUI_API bool igImIsPowerOfTwo_Int(int v); CIMGUI_API bool igImIsPowerOfTwo_U64(ImU64 v); @@ -3382,6 +3408,7 @@ CIMGUI_API float igImDot(const ImVec2 a,const ImVec2 b); CIMGUI_API void igImRotate(ImVec2 *pOut,const ImVec2 v,float cos_a,float sin_a); CIMGUI_API float igImLinearSweep(float current,float target,float speed); CIMGUI_API void igImMul(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs); +CIMGUI_API bool igImIsFloatAboveGuaranteedIntegerPrecision(float f); CIMGUI_API void igImBezierCubicCalc(ImVec2 *pOut,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,float t); CIMGUI_API void igImBezierCubicClosestPoint(ImVec2 *pOut,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,const ImVec2 p,int num_segments); CIMGUI_API void igImBezierCubicClosestPointCasteljau(ImVec2 *pOut,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,const ImVec2 p,float tess_tol); @@ -3487,6 +3514,11 @@ CIMGUI_API void ImGuiStackSizes_CompareWithCurrentState(ImGuiStackSizes* self); CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr(void* ptr); CIMGUI_API void ImGuiPtrOrIndex_destroy(ImGuiPtrOrIndex* self); CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(int index); +CIMGUI_API ImGuiListClipperRange ImGuiListClipperRange_FromIndices(int min,int max); +CIMGUI_API ImGuiListClipperRange ImGuiListClipperRange_FromPositions(float y1,float y2,int off_min,int off_max); +CIMGUI_API ImGuiListClipperData* ImGuiListClipperData_ImGuiListClipperData(void); +CIMGUI_API void ImGuiListClipperData_destroy(ImGuiListClipperData* self); +CIMGUI_API void ImGuiListClipperData_Reset(ImGuiListClipperData* self,ImGuiListClipper* clipper); CIMGUI_API ImGuiNavItemData* ImGuiNavItemData_ImGuiNavItemData(void); CIMGUI_API void ImGuiNavItemData_destroy(ImGuiNavItemData* self); CIMGUI_API void ImGuiNavItemData_Clear(ImGuiNavItemData* self); @@ -3573,17 +3605,23 @@ CIMGUI_API ImGuiWindow* igFindWindowByName(const char* name); CIMGUI_API void igUpdateWindowParentAndRootLinks(ImGuiWindow* window,ImGuiWindowFlags flags,ImGuiWindow* parent_window); CIMGUI_API void igCalcWindowNextAutoFitSize(ImVec2 *pOut,ImGuiWindow* window); CIMGUI_API bool igIsWindowChildOf(ImGuiWindow* window,ImGuiWindow* potential_parent,bool popup_hierarchy,bool dock_hierarchy); +CIMGUI_API bool igIsWindowWithinBeginStackOf(ImGuiWindow* window,ImGuiWindow* potential_parent); CIMGUI_API bool igIsWindowAbove(ImGuiWindow* potential_above,ImGuiWindow* potential_below); CIMGUI_API bool igIsWindowNavFocusable(ImGuiWindow* window); CIMGUI_API void igSetWindowPos_WindowPtr(ImGuiWindow* window,const ImVec2 pos,ImGuiCond cond); CIMGUI_API void igSetWindowSize_WindowPtr(ImGuiWindow* window,const ImVec2 size,ImGuiCond cond); CIMGUI_API void igSetWindowCollapsed_WindowPtr(ImGuiWindow* window,bool collapsed,ImGuiCond cond); CIMGUI_API void igSetWindowHitTestHole(ImGuiWindow* window,const ImVec2 pos,const ImVec2 size); +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 igFocusWindow(ImGuiWindow* window); CIMGUI_API void igFocusTopMostWindowUnderOne(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window); CIMGUI_API void igBringWindowToFocusFront(ImGuiWindow* window); CIMGUI_API void igBringWindowToDisplayFront(ImGuiWindow* window); CIMGUI_API void igBringWindowToDisplayBack(ImGuiWindow* window); +CIMGUI_API void igBringWindowToDisplayBehind(ImGuiWindow* window,ImGuiWindow* above_window); +CIMGUI_API int igFindWindowDisplayIndex(ImGuiWindow* window); +CIMGUI_API ImGuiWindow* igFindBottomMostVisibleWindowWithinBeginStack(ImGuiWindow* window); CIMGUI_API void igSetCurrentFont(ImFont* font); CIMGUI_API ImFont* igGetDefaultFont(void); CIMGUI_API ImDrawList* igGetForegroundDrawList_WindowPtr(ImGuiWindow* window); @@ -3636,7 +3674,6 @@ CIMGUI_API void igItemSize_Vec2(const ImVec2 size,float text_baseline_y); CIMGUI_API void igItemSize_Rect(const ImRect bb,float text_baseline_y); CIMGUI_API bool igItemAdd(const ImRect bb,ImGuiID id,const ImRect* nav_bb,ImGuiItemFlags extra_flags); CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id); -CIMGUI_API void igItemInputable(ImGuiWindow* window,ImGuiID id); CIMGUI_API bool igIsClippedEx(const ImRect bb,ImGuiID id); CIMGUI_API void igSetLastItemData(ImGuiID item_id,ImGuiItemFlags in_flags,ImGuiItemStatusFlags status_flags,const ImRect item_rect); CIMGUI_API void igCalcItemSize(ImVec2 *pOut,ImVec2 size,float default_w,float default_h); @@ -3658,9 +3695,10 @@ CIMGUI_API void igClosePopupsOverWindow(ImGuiWindow* ref_window,bool restore_foc CIMGUI_API void igClosePopupsExceptModals(void); CIMGUI_API bool igIsPopupOpen_ID(ImGuiID id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_flags); -CIMGUI_API void igBeginTooltipEx(ImGuiWindowFlags extra_flags,ImGuiTooltipFlags tooltip_flags); +CIMGUI_API void igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags); CIMGUI_API void igGetPopupAllowedExtentRect(ImRect *pOut,ImGuiWindow* window); CIMGUI_API ImGuiWindow* igGetTopMostPopupModal(void); +CIMGUI_API ImGuiWindow* igGetTopMostAndVisiblePopupModal(void); CIMGUI_API void igFindBestWindowPosForPopup(ImVec2 *pOut,ImGuiWindow* window); CIMGUI_API void igFindBestWindowPosForPopupEx(ImVec2 *pOut,const ImVec2 ref_pos,const ImVec2 size,ImGuiDir* last_dir,const ImRect r_outer,const ImRect r_avoid,ImGuiPopupPositionPolicy policy); CIMGUI_API bool igBeginViewportSideBar(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags); @@ -3674,7 +3712,7 @@ CIMGUI_API void igNavInitRequestApplyResult(void); CIMGUI_API bool igNavMoveRequestButNoResultYet(void); CIMGUI_API void igNavMoveRequestSubmit(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags,ImGuiScrollFlags scroll_flags); CIMGUI_API void igNavMoveRequestForward(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags,ImGuiScrollFlags scroll_flags); -CIMGUI_API void igNavMoveRequestResolveWithLastItem(void); +CIMGUI_API void igNavMoveRequestResolveWithLastItem(ImGuiNavItemData* result); CIMGUI_API void igNavMoveRequestCancel(void); CIMGUI_API void igNavMoveRequestApplyResult(void); CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlags move_flags); @@ -3703,6 +3741,7 @@ CIMGUI_API void igDockContextClearNodes(ImGuiContext* ctx,ImGuiID root_id,bool c CIMGUI_API void igDockContextRebuildNodes(ImGuiContext* ctx); CIMGUI_API void igDockContextNewFrameUpdateUndocking(ImGuiContext* ctx); CIMGUI_API void igDockContextNewFrameUpdateDocking(ImGuiContext* ctx); +CIMGUI_API void igDockContextEndFrame(ImGuiContext* ctx); CIMGUI_API ImGuiID igDockContextGenNodeID(ImGuiContext* ctx); CIMGUI_API void igDockContextQueueDock(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer); CIMGUI_API void igDockContextQueueUndockWindow(ImGuiContext* ctx,ImGuiWindow* window); @@ -3711,6 +3750,7 @@ CIMGUI_API bool igDockContextCalcDropPosForDocking(ImGuiWindow* target,ImGuiDock CIMGUI_API bool igDockNodeBeginAmendTabBar(ImGuiDockNode* node); CIMGUI_API void igDockNodeEndAmendTabBar(void); CIMGUI_API ImGuiDockNode* igDockNodeGetRootNode(ImGuiDockNode* node); +CIMGUI_API bool igDockNodeIsInHierarchyOf(ImGuiDockNode* node,ImGuiDockNode* parent); CIMGUI_API int igDockNodeGetDepth(const ImGuiDockNode* node); CIMGUI_API ImGuiID igDockNodeGetWindowMenuButtonId(const ImGuiDockNode* node); CIMGUI_API ImGuiDockNode* igGetWindowDockNode(void); @@ -3822,13 +3862,14 @@ CIMGUI_API void igRenderArrowPointingAt(ImDrawList* draw_list,ImVec2 pos,ImVec2 CIMGUI_API void igRenderArrowDockMenu(ImDrawList* draw_list,ImVec2 p_min,float sz,ImU32 col); CIMGUI_API void igRenderRectFilledRangeH(ImDrawList* draw_list,const ImRect rect,ImU32 col,float x_start_norm,float x_end_norm,float rounding); CIMGUI_API void igRenderRectFilledWithHole(ImDrawList* draw_list,ImRect outer,ImRect inner,ImU32 col,float rounding); +CIMGUI_API ImDrawFlags igCalcRoundingFlagsForRectInRect(const ImRect r_in,const ImRect r_outer,float threshold); CIMGUI_API void igTextEx(const char* text,const char* text_end,ImGuiTextFlags flags); CIMGUI_API bool igButtonEx(const char* label,const ImVec2 size_arg,ImGuiButtonFlags flags); CIMGUI_API bool igCloseButton(ImGuiID id,const ImVec2 pos); CIMGUI_API bool igCollapseButton(ImGuiID id,const ImVec2 pos,ImGuiDockNode* dock_node); CIMGUI_API bool igArrowButtonEx(const char* str_id,ImGuiDir dir,ImVec2 size_arg,ImGuiButtonFlags flags); CIMGUI_API void igScrollbar(ImGuiAxis axis); -CIMGUI_API bool igScrollbarEx(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* p_scroll_v,float avail_v,float contents_v,ImDrawFlags flags); +CIMGUI_API bool igScrollbarEx(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags flags); CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec2 padding,const ImVec4 bg_col,const ImVec4 tint_col); CIMGUI_API void igGetWindowScrollbarRect(ImRect *pOut,ImGuiWindow* window,ImGuiAxis axis); CIMGUI_API ImGuiID igGetWindowScrollbarID(ImGuiWindow* window,ImGuiAxis axis); @@ -3840,7 +3881,7 @@ CIMGUI_API bool igCheckboxFlags_U64Ptr(const char* label,ImU64* flags,ImU64 flag CIMGUI_API bool igButtonBehavior(const ImRect bb,ImGuiID id,bool* out_hovered,bool* out_held,ImGuiButtonFlags flags); CIMGUI_API bool igDragBehavior(ImGuiID id,ImGuiDataType data_type,void* p_v,float v_speed,const void* p_min,const void* p_max,const char* format,ImGuiSliderFlags flags); CIMGUI_API bool igSliderBehavior(const ImRect bb,ImGuiID id,ImGuiDataType data_type,void* p_v,const void* p_min,const void* p_max,const char* format,ImGuiSliderFlags flags,ImRect* out_grab_bb); -CIMGUI_API bool igSplitterBehavior(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend,float hover_visibility_delay); +CIMGUI_API bool igSplitterBehavior(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend,float hover_visibility_delay,ImU32 bg_col); CIMGUI_API bool igTreeNodeBehavior(ImGuiID id,ImGuiTreeNodeFlags flags,const char* label,const char* label_end); CIMGUI_API bool igTreeNodeBehaviorIsOpen(ImGuiID id,ImGuiTreeNodeFlags flags); CIMGUI_API void igTreePushOverrideID(ImGuiID id); @@ -3882,6 +3923,7 @@ CIMGUI_API void igDebugNodeTableSettings(ImGuiTableSettings* settings); CIMGUI_API void igDebugNodeWindow(ImGuiWindow* window,const char* label); CIMGUI_API void igDebugNodeWindowSettings(ImGuiWindowSettings* settings); CIMGUI_API void igDebugNodeWindowsList(ImVector_ImGuiWindowPtr* windows,const char* label); +CIMGUI_API void igDebugNodeWindowsListByBeginStackParent(ImGuiWindow** windows,int windows_size,ImGuiWindow* parent_in_begin_stack); CIMGUI_API void igDebugNodeViewport(ImGuiViewportP* viewport); CIMGUI_API void igDebugRenderViewportThumbnail(ImDrawList* draw_list,ImGuiViewportP* viewport,const ImRect bb); CIMGUI_API const ImFontBuilderIO* igImFontAtlasGetBuilderForStbTruetype(void); diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 7372729f..97b25d3a 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -13,7 +13,7 @@ "cimguiname": "ImBitArray_ClearAllBits", "defaults": {}, "funcname": "ClearAllBits", - "location": "imgui_internal:549", + "location": "imgui_internal:560", "ov_cimguiname": "ImBitArray_ClearAllBits", "ret": "void", "signature": "()", @@ -39,7 +39,7 @@ "cimguiname": "ImBitArray_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:553", + "location": "imgui_internal:564", "ov_cimguiname": "ImBitArray_ClearBit", "ret": "void", "signature": "(int)", @@ -57,7 +57,7 @@ "constructor": true, "defaults": {}, "funcname": "ImBitArray", - "location": "imgui_internal:548", + "location": "imgui_internal:559", "ov_cimguiname": "ImBitArray_ImBitArray", "signature": "()", "stname": "ImBitArray", @@ -78,7 +78,7 @@ "cimguiname": "ImBitArray_SetAllBits", "defaults": {}, "funcname": "SetAllBits", - "location": "imgui_internal:550", + "location": "imgui_internal:561", "ov_cimguiname": "ImBitArray_SetAllBits", "ret": "void", "signature": "()", @@ -104,7 +104,7 @@ "cimguiname": "ImBitArray_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:552", + "location": "imgui_internal:563", "ov_cimguiname": "ImBitArray_SetBit", "ret": "void", "signature": "(int)", @@ -134,7 +134,7 @@ "cimguiname": "ImBitArray_SetBitRange", "defaults": {}, "funcname": "SetBitRange", - "location": "imgui_internal:554", + "location": "imgui_internal:565", "ov_cimguiname": "ImBitArray_SetBitRange", "ret": "void", "signature": "(int,int)", @@ -160,7 +160,7 @@ "cimguiname": "ImBitArray_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:551", + "location": "imgui_internal:562", "ov_cimguiname": "ImBitArray_TestBit", "ret": "bool", "signature": "(int)const", @@ -202,7 +202,7 @@ "cimguiname": "ImBitVector_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:563", + "location": "imgui_internal:574", "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -227,7 +227,7 @@ "cimguiname": "ImBitVector_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:566", + "location": "imgui_internal:577", "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -252,7 +252,7 @@ "cimguiname": "ImBitVector_Create", "defaults": {}, "funcname": "Create", - "location": "imgui_internal:562", + "location": "imgui_internal:573", "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -277,7 +277,7 @@ "cimguiname": "ImBitVector_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:565", + "location": "imgui_internal:576", "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -302,7 +302,7 @@ "cimguiname": "ImBitVector_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:564", + "location": "imgui_internal:575", "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -327,7 +327,7 @@ "cimguiname": "ImChunkStream_alloc_chunk", "defaults": {}, "funcname": "alloc_chunk", - "location": "imgui_internal:669", + "location": "imgui_internal:680", "ov_cimguiname": "ImChunkStream_alloc_chunk", "ret": "T*", "signature": "(size_t)", @@ -349,7 +349,7 @@ "cimguiname": "ImChunkStream_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:670", + "location": "imgui_internal:681", "ov_cimguiname": "ImChunkStream_begin", "ret": "T*", "signature": "()", @@ -375,7 +375,7 @@ "cimguiname": "ImChunkStream_chunk_size", "defaults": {}, "funcname": "chunk_size", - "location": "imgui_internal:672", + "location": "imgui_internal:683", "ov_cimguiname": "ImChunkStream_chunk_size", "ret": "int", "signature": "(const T*)", @@ -397,7 +397,7 @@ "cimguiname": "ImChunkStream_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:666", + "location": "imgui_internal:677", "ov_cimguiname": "ImChunkStream_clear", "ret": "void", "signature": "()", @@ -419,7 +419,7 @@ "cimguiname": "ImChunkStream_empty", "defaults": {}, "funcname": "empty", - "location": "imgui_internal:667", + "location": "imgui_internal:678", "ov_cimguiname": "ImChunkStream_empty", "ret": "bool", "signature": "()const", @@ -441,7 +441,7 @@ "cimguiname": "ImChunkStream_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:673", + "location": "imgui_internal:684", "ov_cimguiname": "ImChunkStream_end", "ret": "T*", "signature": "()", @@ -467,7 +467,7 @@ "cimguiname": "ImChunkStream_next_chunk", "defaults": {}, "funcname": "next_chunk", - "location": "imgui_internal:671", + "location": "imgui_internal:682", "ov_cimguiname": "ImChunkStream_next_chunk", "ret": "T*", "signature": "(T*)", @@ -493,7 +493,7 @@ "cimguiname": "ImChunkStream_offset_from_ptr", "defaults": {}, "funcname": "offset_from_ptr", - "location": "imgui_internal:674", + "location": "imgui_internal:685", "ov_cimguiname": "ImChunkStream_offset_from_ptr", "ret": "int", "signature": "(const T*)", @@ -519,7 +519,7 @@ "cimguiname": "ImChunkStream_ptr_from_offset", "defaults": {}, "funcname": "ptr_from_offset", - "location": "imgui_internal:675", + "location": "imgui_internal:686", "ov_cimguiname": "ImChunkStream_ptr_from_offset", "ret": "T*", "signature": "(int)", @@ -541,7 +541,7 @@ "cimguiname": "ImChunkStream_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:668", + "location": "imgui_internal:679", "ov_cimguiname": "ImChunkStream_size", "ret": "int", "signature": "()const", @@ -568,7 +568,7 @@ "cimguiname": "ImChunkStream_swap", "defaults": {}, "funcname": "swap", - "location": "imgui_internal:676", + "location": "imgui_internal:687", "ov_cimguiname": "ImChunkStream_swap", "ret": "void", "signature": "(ImChunkStream*)", @@ -609,7 +609,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:2358", + "location": "imgui:2361", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -627,7 +627,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2348", + "location": "imgui:2351", "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -660,7 +660,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:2349", + "location": "imgui:2352", "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -679,7 +679,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2350", + "location": "imgui:2353", "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -712,7 +712,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:2351", + "location": "imgui:2354", "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -731,7 +731,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2352", + "location": "imgui:2355", "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -769,7 +769,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:2357", + "location": "imgui:2360", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -809,7 +809,7 @@ "cimguiname": "ImDrawCmd_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:2406", + "location": "imgui:2409", "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -826,7 +826,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:2403", + "location": "imgui:2406", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -865,7 +865,7 @@ "cimguiname": "ImDrawDataBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:736", + "location": "imgui_internal:747", "ov_cimguiname": "ImDrawDataBuilder_Clear", "ret": "void", "signature": "()", @@ -886,7 +886,7 @@ "cimguiname": "ImDrawDataBuilder_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:737", + "location": "imgui_internal:748", "ov_cimguiname": "ImDrawDataBuilder_ClearFreeMemory", "ret": "void", "signature": "()", @@ -907,7 +907,7 @@ "cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", "defaults": {}, "funcname": "FlattenIntoSingleLayer", - "location": "imgui_internal:739", + "location": "imgui_internal:750", "ov_cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", "ret": "void", "signature": "()", @@ -928,7 +928,7 @@ "cimguiname": "ImDrawDataBuilder_GetDrawListCount", "defaults": {}, "funcname": "GetDrawListCount", - "location": "imgui_internal:738", + "location": "imgui_internal:749", "ov_cimguiname": "ImDrawDataBuilder_GetDrawListCount", "ret": "int", "signature": "()const", @@ -949,7 +949,7 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2638", + "location": "imgui:2641", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -970,7 +970,7 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui:2639", + "location": "imgui:2642", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -987,7 +987,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", - "location": "imgui:2637", + "location": "imgui:2640", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -1011,7 +1011,7 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui:2640", + "location": "imgui:2643", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -1047,7 +1047,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSharedData", - "location": "imgui_internal:728", + "location": "imgui_internal:739", "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "signature": "()", "stname": "ImDrawListSharedData" @@ -1071,7 +1071,7 @@ "cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "defaults": {}, "funcname": "SetCircleTessellationMaxError", - "location": "imgui_internal:729", + "location": "imgui_internal:740", "ov_cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "ret": "void", "signature": "(float)", @@ -1111,7 +1111,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2451", + "location": "imgui:2454", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -1132,7 +1132,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:2452", + "location": "imgui:2455", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -1149,7 +1149,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:2449", + "location": "imgui:2452", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -1173,7 +1173,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:2454", + "location": "imgui:2457", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -1202,7 +1202,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:2455", + "location": "imgui:2458", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1231,7 +1231,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:2453", + "location": "imgui:2456", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1251,7 +1251,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2450", + "location": "imgui:2453", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -1303,7 +1303,7 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", - "location": "imgui:2553", + "location": "imgui:2556", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1350,7 +1350,7 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", - "location": "imgui:2554", + "location": "imgui:2557", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1379,7 +1379,7 @@ "cimguiname": "ImDrawList_AddCallback", "defaults": {}, "funcname": "AddCallback", - "location": "imgui:2577", + "location": "imgui:2580", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -1423,7 +1423,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:2545", + "location": "imgui:2548", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1462,7 +1462,7 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:2546", + "location": "imgui:2549", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1495,7 +1495,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:2552", + "location": "imgui:2555", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1516,7 +1516,7 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui:2578", + "location": "imgui:2581", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -1565,7 +1565,7 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:2560", + "location": "imgui:2563", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1632,7 +1632,7 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:2561", + "location": "imgui:2564", "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)", @@ -1687,7 +1687,7 @@ "flags": "0" }, "funcname": "AddImageRounded", - "location": "imgui:2562", + "location": "imgui:2565", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1726,7 +1726,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:2537", + "location": "imgui:2540", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1769,7 +1769,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:2547", + "location": "imgui:2550", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1806,7 +1806,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:2548", + "location": "imgui:2551", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1847,7 +1847,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", - "location": "imgui:2551", + "location": "imgui:2554", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -1894,7 +1894,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:2541", + "location": "imgui:2544", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1935,7 +1935,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:2542", + "location": "imgui:2545", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1984,7 +1984,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:2538", + "location": "imgui:2541", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -2028,7 +2028,7 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", - "location": "imgui:2539", + "location": "imgui:2542", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -2073,7 +2073,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:2540", + "location": "imgui:2543", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -2112,7 +2112,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2549", + "location": "imgui:2552", "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -2167,7 +2167,7 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:2550", + "location": "imgui:2553", "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -2210,7 +2210,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:2543", + "location": "imgui:2546", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2247,7 +2247,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:2544", + "location": "imgui:2547", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2268,7 +2268,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui:2588", + "location": "imgui:2591", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -2293,7 +2293,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui:2589", + "location": "imgui:2592", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2318,7 +2318,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui:2587", + "location": "imgui:2590", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2339,7 +2339,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", - "location": "imgui:2579", + "location": "imgui:2582", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2364,7 +2364,7 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:2529", + "location": "imgui:2532", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -2390,7 +2390,7 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:2528", + "location": "imgui:2531", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -2413,7 +2413,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:2520", + "location": "imgui:2523", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(const ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2455,7 +2455,7 @@ "num_segments": "0" }, "funcname": "PathArcTo", - "location": "imgui:2570", + "location": "imgui:2573", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2492,7 +2492,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:2571", + "location": "imgui:2574", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2531,7 +2531,7 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", - "location": "imgui:2572", + "location": "imgui:2575", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2566,7 +2566,7 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", - "location": "imgui:2573", + "location": "imgui:2576", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -2587,7 +2587,7 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:2565", + "location": "imgui:2568", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -2612,7 +2612,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:2568", + "location": "imgui:2571", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2637,7 +2637,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:2566", + "location": "imgui:2569", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2662,7 +2662,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:2567", + "location": "imgui:2570", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2702,7 +2702,7 @@ "rounding": "0.0f" }, "funcname": "PathRect", - "location": "imgui:2574", + "location": "imgui:2577", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2738,7 +2738,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:2569", + "location": "imgui:2572", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -2759,7 +2759,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:2525", + "location": "imgui:2528", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2780,7 +2780,7 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": {}, "funcname": "PopTextureID", - "location": "imgui:2527", + "location": "imgui:2530", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -2837,7 +2837,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui:2598", + "location": "imgui:2601", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2870,7 +2870,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", - "location": "imgui:2596", + "location": "imgui:2599", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2911,7 +2911,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui:2597", + "location": "imgui:2600", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2940,7 +2940,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", - "location": "imgui:2594", + "location": "imgui:2597", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -2969,7 +2969,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui:2595", + "location": "imgui:2598", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -3002,7 +3002,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", - "location": "imgui:2601", + "location": "imgui:2604", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3027,7 +3027,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui:2600", + "location": "imgui:2603", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -3060,7 +3060,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui:2599", + "location": "imgui:2602", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3095,7 +3095,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:2523", + "location": "imgui:2526", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(ImVec2,ImVec2,bool)", @@ -3116,7 +3116,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:2524", + "location": "imgui:2527", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -3141,7 +3141,7 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": {}, "funcname": "PushTextureID", - "location": "imgui:2526", + "location": "imgui:2529", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -3166,7 +3166,7 @@ "cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", - "location": "imgui:2616", + "location": "imgui:2619", "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -3187,7 +3187,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:2610", + "location": "imgui:2613", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -3208,7 +3208,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:2613", + "location": "imgui:2616", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -3229,7 +3229,7 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": {}, "funcname": "_OnChangedTextureID", - "location": "imgui:2614", + "location": "imgui:2617", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -3250,7 +3250,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:2615", + "location": "imgui:2618", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -3291,7 +3291,7 @@ "cimguiname": "ImDrawList__PathArcToFastEx", "defaults": {}, "funcname": "_PathArcToFastEx", - "location": "imgui:2617", + "location": "imgui:2620", "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -3332,7 +3332,7 @@ "cimguiname": "ImDrawList__PathArcToN", "defaults": {}, "funcname": "_PathArcToN", - "location": "imgui:2618", + "location": "imgui:2621", "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -3353,7 +3353,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:2611", + "location": "imgui:2614", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -3374,7 +3374,7 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:2609", + "location": "imgui:2612", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", @@ -3395,7 +3395,7 @@ "cimguiname": "ImDrawList__TryMergeDrawCmds", "defaults": {}, "funcname": "_TryMergeDrawCmds", - "location": "imgui:2612", + "location": "imgui:2615", "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -3415,7 +3415,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2522", + "location": "imgui:2525", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -3433,7 +3433,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasCustomRect", - "location": "imgui:2711", + "location": "imgui:2714", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -3453,7 +3453,7 @@ "cimguiname": "ImFontAtlasCustomRect_IsPacked", "defaults": {}, "funcname": "IsPacked", - "location": "imgui:2712", + "location": "imgui:2715", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -3519,7 +3519,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", - "location": "imgui:2795", + "location": "imgui:2798", "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -3548,7 +3548,7 @@ "cimguiname": "ImFontAtlas_AddCustomRectRegular", "defaults": {}, "funcname": "AddCustomRectRegular", - "location": "imgui:2794", + "location": "imgui:2797", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -3573,7 +3573,7 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", - "location": "imgui:2745", + "location": "imgui:2748", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3600,7 +3600,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui:2746", + "location": "imgui:2749", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3640,7 +3640,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", - "location": "imgui:2747", + "location": "imgui:2750", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3680,7 +3680,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui:2750", + "location": "imgui:2753", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3724,7 +3724,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui:2749", + "location": "imgui:2752", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3768,7 +3768,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui:2748", + "location": "imgui:2751", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3789,7 +3789,7 @@ "cimguiname": "ImFontAtlas_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2761", + "location": "imgui:2764", "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -3822,7 +3822,7 @@ "cimguiname": "ImFontAtlas_CalcCustomRectUV", "defaults": {}, "funcname": "CalcCustomRectUV", - "location": "imgui:2799", + "location": "imgui:2802", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -3843,7 +3843,7 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2754", + "location": "imgui:2757", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -3864,7 +3864,7 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", - "location": "imgui:2753", + "location": "imgui:2756", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -3885,7 +3885,7 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", - "location": "imgui:2751", + "location": "imgui:2754", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -3906,7 +3906,7 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", - "location": "imgui:2752", + "location": "imgui:2755", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -3931,7 +3931,7 @@ "cimguiname": "ImFontAtlas_GetCustomRectByIndex", "defaults": {}, "funcname": "GetCustomRectByIndex", - "location": "imgui:2796", + "location": "imgui:2799", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -3952,7 +3952,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "defaults": {}, "funcname": "GetGlyphRangesChineseFull", - "location": "imgui:2777", + "location": "imgui:2780", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -3973,7 +3973,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", - "location": "imgui:2778", + "location": "imgui:2781", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -3994,7 +3994,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "defaults": {}, "funcname": "GetGlyphRangesCyrillic", - "location": "imgui:2779", + "location": "imgui:2782", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -4015,7 +4015,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui:2774", + "location": "imgui:2777", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -4036,7 +4036,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "defaults": {}, "funcname": "GetGlyphRangesJapanese", - "location": "imgui:2776", + "location": "imgui:2779", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -4057,7 +4057,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "defaults": {}, "funcname": "GetGlyphRangesKorean", - "location": "imgui:2775", + "location": "imgui:2778", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -4078,7 +4078,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesThai", "defaults": {}, "funcname": "GetGlyphRangesThai", - "location": "imgui:2780", + "location": "imgui:2783", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -4099,7 +4099,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "defaults": {}, "funcname": "GetGlyphRangesVietnamese", - "location": "imgui:2781", + "location": "imgui:2784", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -4140,7 +4140,7 @@ "cimguiname": "ImFontAtlas_GetMouseCursorTexData", "defaults": {}, "funcname": "GetMouseCursorTexData", - "location": "imgui:2800", + "location": "imgui:2803", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -4179,7 +4179,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", - "location": "imgui:2762", + "location": "imgui:2765", "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4218,7 +4218,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", - "location": "imgui:2763", + "location": "imgui:2766", "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4235,7 +4235,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui:2743", + "location": "imgui:2746", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -4255,7 +4255,7 @@ "cimguiname": "ImFontAtlas_IsBuilt", "defaults": {}, "funcname": "IsBuilt", - "location": "imgui:2764", + "location": "imgui:2767", "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -4280,7 +4280,7 @@ "cimguiname": "ImFontAtlas_SetTexID", "defaults": {}, "funcname": "SetTexID", - "location": "imgui:2765", + "location": "imgui:2768", "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -4300,7 +4300,7 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2744", + "location": "imgui:2747", "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -4318,7 +4318,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui:2671", + "location": "imgui:2674", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -4361,7 +4361,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", - "location": "imgui:2696", + "location": "imgui:2699", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -4386,7 +4386,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", - "location": "imgui:2698", + "location": "imgui:2701", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -4417,7 +4417,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2697", + "location": "imgui:2700", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -4442,7 +4442,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", - "location": "imgui:2699", + "location": "imgui:2702", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -4463,7 +4463,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2693", + "location": "imgui:2696", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4488,7 +4488,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", - "location": "imgui:2694", + "location": "imgui:2697", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4505,7 +4505,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui:2692", + "location": "imgui:2695", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4529,7 +4529,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui:2695", + "location": "imgui:2698", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4613,7 +4613,7 @@ "cimguiname": "ImFont_AddGlyph", "defaults": {}, "funcname": "AddGlyph", - "location": "imgui:2888", + "location": "imgui:2891", "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", @@ -4648,7 +4648,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", - "location": "imgui:2889", + "location": "imgui:2892", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -4669,7 +4669,7 @@ "cimguiname": "ImFont_BuildLookupTable", "defaults": {}, "funcname": "BuildLookupTable", - "location": "imgui:2885", + "location": "imgui:2888", "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -4721,7 +4721,7 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui:2879", + "location": "imgui:2882", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -4759,7 +4759,7 @@ "cimguiname": "ImFont_CalcWordWrapPositionA", "defaults": {}, "funcname": "CalcWordWrapPositionA", - "location": "imgui:2880", + "location": "imgui:2883", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)const", @@ -4780,7 +4780,7 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:2886", + "location": "imgui:2889", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -4805,7 +4805,7 @@ "cimguiname": "ImFont_FindGlyph", "defaults": {}, "funcname": "FindGlyph", - "location": "imgui:2871", + "location": "imgui:2874", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4830,7 +4830,7 @@ "cimguiname": "ImFont_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui:2872", + "location": "imgui:2875", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4855,7 +4855,7 @@ "cimguiname": "ImFont_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui:2873", + "location": "imgui:2876", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)const", @@ -4876,7 +4876,7 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", - "location": "imgui:2875", + "location": "imgui:2878", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -4901,7 +4901,7 @@ "cimguiname": "ImFont_GrowIndex", "defaults": {}, "funcname": "GrowIndex", - "location": "imgui:2887", + "location": "imgui:2890", "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -4918,7 +4918,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", - "location": "imgui:2869", + "location": "imgui:2872", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -4946,7 +4946,7 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui:2891", + "location": "imgui:2894", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -4967,7 +4967,7 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", - "location": "imgui:2874", + "location": "imgui:2877", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -5008,7 +5008,7 @@ "cimguiname": "ImFont_RenderChar", "defaults": {}, "funcname": "RenderChar", - "location": "imgui:2881", + "location": "imgui:2884", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const", @@ -5068,7 +5068,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui:2882", + "location": "imgui:2885", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", @@ -5097,7 +5097,7 @@ "cimguiname": "ImFont_SetGlyphVisible", "defaults": {}, "funcname": "SetGlyphVisible", - "location": "imgui:2890", + "location": "imgui:2893", "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -5117,7 +5117,7 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2870", + "location": "imgui:2873", "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -5135,7 +5135,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiComboPreviewData", - "location": "imgui_internal:979", + "location": "imgui_internal:990", "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", "signature": "()", "stname": "ImGuiComboPreviewData" @@ -5170,7 +5170,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContextHook", - "location": "imgui_internal:1622", + "location": "imgui_internal:1663", "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5210,7 +5210,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", - "location": "imgui_internal:1901", + "location": "imgui_internal:1941", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5245,7 +5245,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockContext", - "location": "imgui_internal:1467", + "location": "imgui_internal:1508", "ov_cimguiname": "ImGuiDockContext_ImGuiDockContext", "signature": "()", "stname": "ImGuiDockContext" @@ -5285,7 +5285,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockNode", - "location": "imgui_internal:1424", + "location": "imgui_internal:1465", "ov_cimguiname": "ImGuiDockNode_ImGuiDockNode", "signature": "(ImGuiID)", "stname": "ImGuiDockNode" @@ -5305,7 +5305,7 @@ "cimguiname": "ImGuiDockNode_IsCentralNode", "defaults": {}, "funcname": "IsCentralNode", - "location": "imgui_internal:1429", + "location": "imgui_internal:1470", "ov_cimguiname": "ImGuiDockNode_IsCentralNode", "ret": "bool", "signature": "()const", @@ -5326,7 +5326,7 @@ "cimguiname": "ImGuiDockNode_IsDockSpace", "defaults": {}, "funcname": "IsDockSpace", - "location": "imgui_internal:1427", + "location": "imgui_internal:1468", "ov_cimguiname": "ImGuiDockNode_IsDockSpace", "ret": "bool", "signature": "()const", @@ -5347,7 +5347,7 @@ "cimguiname": "ImGuiDockNode_IsEmpty", "defaults": {}, "funcname": "IsEmpty", - "location": "imgui_internal:1434", + "location": "imgui_internal:1475", "ov_cimguiname": "ImGuiDockNode_IsEmpty", "ret": "bool", "signature": "()const", @@ -5368,7 +5368,7 @@ "cimguiname": "ImGuiDockNode_IsFloatingNode", "defaults": {}, "funcname": "IsFloatingNode", - "location": "imgui_internal:1428", + "location": "imgui_internal:1469", "ov_cimguiname": "ImGuiDockNode_IsFloatingNode", "ret": "bool", "signature": "()const", @@ -5389,7 +5389,7 @@ "cimguiname": "ImGuiDockNode_IsHiddenTabBar", "defaults": {}, "funcname": "IsHiddenTabBar", - "location": "imgui_internal:1430", + "location": "imgui_internal:1471", "ov_cimguiname": "ImGuiDockNode_IsHiddenTabBar", "ret": "bool", "signature": "()const", @@ -5410,7 +5410,7 @@ "cimguiname": "ImGuiDockNode_IsLeafNode", "defaults": {}, "funcname": "IsLeafNode", - "location": "imgui_internal:1433", + "location": "imgui_internal:1474", "ov_cimguiname": "ImGuiDockNode_IsLeafNode", "ret": "bool", "signature": "()const", @@ -5431,7 +5431,7 @@ "cimguiname": "ImGuiDockNode_IsNoTabBar", "defaults": {}, "funcname": "IsNoTabBar", - "location": "imgui_internal:1431", + "location": "imgui_internal:1472", "ov_cimguiname": "ImGuiDockNode_IsNoTabBar", "ret": "bool", "signature": "()const", @@ -5452,7 +5452,7 @@ "cimguiname": "ImGuiDockNode_IsRootNode", "defaults": {}, "funcname": "IsRootNode", - "location": "imgui_internal:1426", + "location": "imgui_internal:1467", "ov_cimguiname": "ImGuiDockNode_IsRootNode", "ret": "bool", "signature": "()const", @@ -5473,7 +5473,7 @@ "cimguiname": "ImGuiDockNode_IsSplitNode", "defaults": {}, "funcname": "IsSplitNode", - "location": "imgui_internal:1432", + "location": "imgui_internal:1473", "ov_cimguiname": "ImGuiDockNode_IsSplitNode", "ret": "bool", "signature": "()const", @@ -5498,7 +5498,7 @@ "cimguiname": "ImGuiDockNode_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:1435", + "location": "imgui_internal:1476", "nonUDT": 1, "ov_cimguiname": "ImGuiDockNode_Rect", "ret": "void", @@ -5524,7 +5524,7 @@ "cimguiname": "ImGuiDockNode_SetLocalFlags", "defaults": {}, "funcname": "SetLocalFlags", - "location": "imgui_internal:1437", + "location": "imgui_internal:1478", "ov_cimguiname": "ImGuiDockNode_SetLocalFlags", "ret": "void", "signature": "(ImGuiDockNodeFlags)", @@ -5545,7 +5545,7 @@ "cimguiname": "ImGuiDockNode_UpdateMergedFlags", "defaults": {}, "funcname": "UpdateMergedFlags", - "location": "imgui_internal:1438", + "location": "imgui_internal:1479", "ov_cimguiname": "ImGuiDockNode_UpdateMergedFlags", "ret": "void", "signature": "()", @@ -5565,7 +5565,7 @@ "cimguiname": "ImGuiDockNode_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1425", + "location": "imgui_internal:1466", "ov_cimguiname": "ImGuiDockNode_destroy", "realdestructor": true, "ret": "void", @@ -5725,7 +5725,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:2037", + "location": "imgui:2038", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -5764,7 +5764,7 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui:2078", + "location": "imgui:2079", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -5793,7 +5793,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:2075", + "location": "imgui:2076", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -5814,7 +5814,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:2079", + "location": "imgui:2080", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -5831,7 +5831,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:2074", + "location": "imgui:2075", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -5865,7 +5865,7 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:2076", + "location": "imgui:2077", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -5886,7 +5886,7 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui:2077", + "location": "imgui:2078", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -5926,7 +5926,7 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1039", + "location": "imgui_internal:1048", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -5947,7 +5947,7 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui_internal:1048", + "location": "imgui_internal:1057", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -5968,7 +5968,7 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": {}, "funcname": "ClearText", - "location": "imgui_internal:1038", + "location": "imgui_internal:1047", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -5989,7 +5989,7 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", - "location": "imgui_internal:1045", + "location": "imgui_internal:1054", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -6010,7 +6010,7 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", - "location": "imgui_internal:1046", + "location": "imgui_internal:1055", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -6031,7 +6031,7 @@ "cimguiname": "ImGuiInputTextState_GetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui_internal:1049", + "location": "imgui_internal:1058", "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", "ret": "int", "signature": "()const", @@ -6052,7 +6052,7 @@ "cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "defaults": {}, "funcname": "GetRedoAvailCount", - "location": "imgui_internal:1041", + "location": "imgui_internal:1050", "ov_cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "ret": "int", "signature": "()const", @@ -6073,7 +6073,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionEnd", "defaults": {}, "funcname": "GetSelectionEnd", - "location": "imgui_internal:1051", + "location": "imgui_internal:1060", "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", @@ -6094,7 +6094,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionStart", "defaults": {}, "funcname": "GetSelectionStart", - "location": "imgui_internal:1050", + "location": "imgui_internal:1059", "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", "ret": "int", "signature": "()const", @@ -6115,7 +6115,7 @@ "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "defaults": {}, "funcname": "GetUndoAvailCount", - "location": "imgui_internal:1040", + "location": "imgui_internal:1049", "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "ret": "int", "signature": "()const", @@ -6136,7 +6136,7 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui_internal:1047", + "location": "imgui_internal:1056", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -6153,7 +6153,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextState", - "location": "imgui_internal:1037", + "location": "imgui_internal:1046", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "signature": "()", "stname": "ImGuiInputTextState" @@ -6177,7 +6177,7 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": {}, "funcname": "OnKeyPressed", - "location": "imgui_internal:1042", + "location": "imgui_internal:1051", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", @@ -6198,7 +6198,7 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui_internal:1052", + "location": "imgui_internal:1061", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -6234,7 +6234,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiLastItemData", - "location": "imgui_internal:1142", + "location": "imgui_internal:1151", "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", "stname": "ImGuiLastItemData" @@ -6259,6 +6259,126 @@ "stname": "ImGuiLastItemData" } ], + "ImGuiListClipperData_ImGuiListClipperData": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiListClipperData_ImGuiListClipperData", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiListClipperData", + "location": "imgui_internal:1219", + "ov_cimguiname": "ImGuiListClipperData_ImGuiListClipperData", + "signature": "()", + "stname": "ImGuiListClipperData" + } + ], + "ImGuiListClipperData_Reset": [ + { + "args": "(ImGuiListClipperData* self,ImGuiListClipper* clipper)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipperData*" + }, + { + "name": "clipper", + "type": "ImGuiListClipper*" + } + ], + "argsoriginal": "(ImGuiListClipper* clipper)", + "call_args": "(clipper)", + "cimguiname": "ImGuiListClipperData_Reset", + "defaults": {}, + "funcname": "Reset", + "location": "imgui_internal:1220", + "ov_cimguiname": "ImGuiListClipperData_Reset", + "ret": "void", + "signature": "(ImGuiListClipper*)", + "stname": "ImGuiListClipperData" + } + ], + "ImGuiListClipperData_destroy": [ + { + "args": "(ImGuiListClipperData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipperData*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiListClipperData_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiListClipperData_destroy", + "ret": "void", + "signature": "(ImGuiListClipperData*)", + "stname": "ImGuiListClipperData" + } + ], + "ImGuiListClipperRange_FromIndices": [ + { + "args": "(int min,int max)", + "argsT": [ + { + "name": "min", + "type": "int" + }, + { + "name": "max", + "type": "int" + } + ], + "argsoriginal": "(int min,int max)", + "call_args": "(min,max)", + "cimguiname": "ImGuiListClipperRange_FromIndices", + "defaults": {}, + "funcname": "FromIndices", + "is_static_function": true, + "location": "imgui_internal:1206", + "ov_cimguiname": "ImGuiListClipperRange_FromIndices", + "ret": "ImGuiListClipperRange", + "signature": "(int,int)", + "stname": "ImGuiListClipperRange" + } + ], + "ImGuiListClipperRange_FromPositions": [ + { + "args": "(float y1,float y2,int off_min,int off_max)", + "argsT": [ + { + "name": "y1", + "type": "float" + }, + { + "name": "y2", + "type": "float" + }, + { + "name": "off_min", + "type": "int" + }, + { + "name": "off_max", + "type": "int" + } + ], + "argsoriginal": "(float y1,float y2,int off_min,int off_max)", + "call_args": "(y1,y2,off_min,off_max)", + "cimguiname": "ImGuiListClipperRange_FromPositions", + "defaults": {}, + "funcname": "FromPositions", + "is_static_function": true, + "location": "imgui_internal:1207", + "ov_cimguiname": "ImGuiListClipperRange_FromPositions", + "ret": "ImGuiListClipperRange", + "signature": "(float,float,int,int)", + "stname": "ImGuiListClipperRange" + } + ], "ImGuiListClipper_Begin": [ { "args": "(ImGuiListClipper* self,int items_count,float items_height)", @@ -6311,6 +6431,35 @@ "stname": "ImGuiListClipper" } ], + "ImGuiListClipper_ForceDisplayRangeByIndices": [ + { + "args": "(ImGuiListClipper* self,int item_min,int item_max)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_min", + "type": "int" + }, + { + "name": "item_max", + "type": "int" + } + ], + "argsoriginal": "(int item_min,int item_max)", + "call_args": "(item_min,item_max)", + "cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", + "defaults": {}, + "funcname": "ForceDisplayRangeByIndices", + "location": "imgui:2317", + "ov_cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", + "ret": "void", + "signature": "(int,int)", + "stname": "ImGuiListClipper" + } + ], "ImGuiListClipper_ImGuiListClipper": [ { "args": "()", @@ -6321,7 +6470,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:2307", + "location": "imgui:2310", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" @@ -6361,7 +6510,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2308", + "location": "imgui:2311", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -6387,7 +6536,7 @@ "cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "defaults": {}, "funcname": "CalcNextTotalWidth", - "location": "imgui_internal:1013", + "location": "imgui_internal:1024", "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "ret": "void", "signature": "(bool)", @@ -6424,7 +6573,7 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", - "location": "imgui_internal:1012", + "location": "imgui_internal:1023", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float,float)", @@ -6441,7 +6590,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", - "location": "imgui_internal:1010", + "location": "imgui_internal:1021", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -6469,7 +6618,7 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", - "location": "imgui_internal:1011", + "location": "imgui_internal:1022", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(float,bool)", @@ -6505,7 +6654,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMetricsConfig", - "location": "imgui_internal:1572", + "location": "imgui_internal:1613", "ov_cimguiname": "ImGuiMetricsConfig_ImGuiMetricsConfig", "signature": "()", "stname": "ImGuiMetricsConfig" @@ -6544,7 +6693,7 @@ "cimguiname": "ImGuiNavItemData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1265", + "location": "imgui_internal:1305", "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", @@ -6561,7 +6710,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNavItemData", - "location": "imgui_internal:1264", + "location": "imgui_internal:1304", "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", "stname": "ImGuiNavItemData" @@ -6600,7 +6749,7 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1129", + "location": "imgui_internal:1138", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -6617,7 +6766,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", - "location": "imgui_internal:1128", + "location": "imgui_internal:1137", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -6656,7 +6805,7 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1110", + "location": "imgui_internal:1119", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -6673,7 +6822,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", - "location": "imgui_internal:1109", + "location": "imgui_internal:1118", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -6708,7 +6857,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumnData", - "location": "imgui_internal:1300", + "location": "imgui_internal:1340", "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -6743,7 +6892,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumns", - "location": "imgui_internal:1321", + "location": "imgui_internal:1361", "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -6778,7 +6927,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:2175", + "location": "imgui:2176", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -6817,7 +6966,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2129", + "location": "imgui:2130", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -6834,7 +6983,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:2128", + "location": "imgui:2129", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -6858,7 +7007,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:2130", + "location": "imgui:2131", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -6879,7 +7028,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:2132", + "location": "imgui:2133", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -6900,7 +7049,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:2131", + "location": "imgui:2132", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -6936,7 +7085,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformIO", - "location": "imgui:3065", + "location": "imgui:3068", "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", "signature": "()", "stname": "ImGuiPlatformIO" @@ -6971,7 +7120,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformMonitor", - "location": "imgui:3075", + "location": "imgui:3078", "ov_cimguiname": "ImGuiPlatformMonitor_ImGuiPlatformMonitor", "signature": "()", "stname": "ImGuiPlatformMonitor" @@ -7006,7 +7155,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", - "location": "imgui_internal:1066", + "location": "imgui_internal:1075", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -7046,7 +7195,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1181", + "location": "imgui_internal:1190", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -7065,7 +7214,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1182", + "location": "imgui_internal:1191", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -7100,7 +7249,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", - "location": "imgui_internal:1553", + "location": "imgui_internal:1594", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -7135,7 +7284,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackLevelInfo", - "location": "imgui_internal:1593", + "location": "imgui_internal:1634", "ov_cimguiname": "ImGuiStackLevelInfo_ImGuiStackLevelInfo", "signature": "()", "stname": "ImGuiStackLevelInfo" @@ -7174,7 +7323,7 @@ "cimguiname": "ImGuiStackSizes_CompareWithCurrentState", "defaults": {}, "funcname": "CompareWithCurrentState", - "location": "imgui_internal:1159", + "location": "imgui_internal:1168", "ov_cimguiname": "ImGuiStackSizes_CompareWithCurrentState", "ret": "void", "signature": "()", @@ -7191,7 +7340,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackSizes", - "location": "imgui_internal:1157", + "location": "imgui_internal:1166", "ov_cimguiname": "ImGuiStackSizes_ImGuiStackSizes", "signature": "()", "stname": "ImGuiStackSizes" @@ -7211,7 +7360,7 @@ "cimguiname": "ImGuiStackSizes_SetToCurrentState", "defaults": {}, "funcname": "SetToCurrentState", - "location": "imgui_internal:1158", + "location": "imgui_internal:1167", "ov_cimguiname": "ImGuiStackSizes_SetToCurrentState", "ret": "void", "signature": "()", @@ -7247,7 +7396,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackTool", - "location": "imgui_internal:1604", + "location": "imgui_internal:1645", "ov_cimguiname": "ImGuiStackTool_ImGuiStackTool", "signature": "()", "stname": "ImGuiStackTool" @@ -7291,7 +7440,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2242", + "location": "imgui:2243", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" @@ -7314,7 +7463,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2243", + "location": "imgui:2244", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" @@ -7337,7 +7486,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2244", + "location": "imgui:2245", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -7376,7 +7525,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:2275", + "location": "imgui:2276", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -7397,7 +7546,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2252", + "location": "imgui:2253", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -7428,7 +7577,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:2255", + "location": "imgui:2256", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -7459,7 +7608,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:2267", + "location": "imgui:2268", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -7490,7 +7639,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:2257", + "location": "imgui:2258", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -7521,7 +7670,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:2268", + "location": "imgui:2269", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -7552,7 +7701,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:2253", + "location": "imgui:2254", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -7583,7 +7732,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:2266", + "location": "imgui:2267", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -7608,7 +7757,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:2259", + "location": "imgui:2260", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -7639,7 +7788,7 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:2269", + "location": "imgui:2270", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -7664,7 +7813,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:2272", + "location": "imgui:2273", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -7693,7 +7842,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:2256", + "location": "imgui:2257", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -7722,7 +7871,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:2258", + "location": "imgui:2259", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -7751,7 +7900,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:2254", + "location": "imgui:2255", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -7780,7 +7929,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:2260", + "location": "imgui:2261", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -7806,7 +7955,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:964", + "location": "imgui_internal:975", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Int", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -7829,7 +7978,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:965", + "location": "imgui_internal:976", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Float", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -7852,7 +8001,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:966", + "location": "imgui_internal:977", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Vec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -7955,7 +8104,7 @@ "cimguiname": "ImGuiTabBar_GetTabName", "defaults": {}, "funcname": "GetTabName", - "location": "imgui_internal:2330", + "location": "imgui_internal:2370", "ov_cimguiname": "ImGuiTabBar_GetTabName", "ret": "const char*", "signature": "(const ImGuiTabItem*)const", @@ -7980,7 +8129,7 @@ "cimguiname": "ImGuiTabBar_GetTabOrder", "defaults": {}, "funcname": "GetTabOrder", - "location": "imgui_internal:2329", + "location": "imgui_internal:2369", "ov_cimguiname": "ImGuiTabBar_GetTabOrder", "ret": "int", "signature": "(const ImGuiTabItem*)const", @@ -7997,7 +8146,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", - "location": "imgui_internal:2328", + "location": "imgui_internal:2368", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -8032,7 +8181,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", - "location": "imgui_internal:2290", + "location": "imgui_internal:2330", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -8067,7 +8216,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSettings", - "location": "imgui_internal:2566", + "location": "imgui_internal:2606", "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -8102,7 +8251,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:2143", + "location": "imgui:2144", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -8137,7 +8286,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumn", - "location": "imgui_internal:2399", + "location": "imgui_internal:2439", "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -8176,7 +8325,7 @@ "cimguiname": "ImGuiTableSettings_GetColumnSettings", "defaults": {}, "funcname": "GetColumnSettings", - "location": "imgui_internal:2589", + "location": "imgui_internal:2629", "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -8193,7 +8342,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSettings", - "location": "imgui_internal:2588", + "location": "imgui_internal:2628", "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -8228,7 +8377,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:2156", + "location": "imgui:2157", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -8263,7 +8412,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableTempData", - "location": "imgui_internal:2551", + "location": "imgui_internal:2591", "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", "signature": "()", "stname": "ImGuiTableTempData" @@ -8298,7 +8447,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTable", - "location": "imgui_internal:2527", + "location": "imgui_internal:2567", "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -8317,7 +8466,7 @@ "cimguiname": "ImGuiTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2528", + "location": "imgui_internal:2568", "ov_cimguiname": "ImGuiTable_destroy", "realdestructor": true, "ret": "void", @@ -8335,7 +8484,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:2213", + "location": "imgui:2214", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -8365,7 +8514,7 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:2222", + "location": "imgui:2223", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -8395,7 +8544,7 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:2223", + "location": "imgui:2224", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -8425,7 +8574,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:2224", + "location": "imgui:2225", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -8446,7 +8595,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2215", + "location": "imgui:2216", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -8467,7 +8616,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:2221", + "location": "imgui:2222", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -8488,7 +8637,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2219", + "location": "imgui:2220", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -8528,7 +8677,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2218", + "location": "imgui:2219", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -8549,7 +8698,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:2216", + "location": "imgui:2217", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -8574,7 +8723,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2220", + "location": "imgui:2221", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -8595,7 +8744,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:2217", + "location": "imgui:2218", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -8616,7 +8765,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2186", + "location": "imgui:2187", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -8637,7 +8786,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2187", + "location": "imgui:2188", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -8669,7 +8818,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:2184", + "location": "imgui:2185", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -8693,7 +8842,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:2183", + "location": "imgui:2184", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -8713,7 +8862,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:2188", + "location": "imgui:2189", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -8744,7 +8893,7 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:2185", + "location": "imgui:2186", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -8780,7 +8929,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2196", + "location": "imgui:2197", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -8803,7 +8952,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2197", + "location": "imgui:2198", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -8842,7 +8991,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2198", + "location": "imgui:2199", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -8871,7 +9020,7 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:2199", + "location": "imgui:2200", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -8900,7 +9049,7 @@ "cimguiname": "ImGuiViewportP_CalcWorkRectPos", "defaults": {}, "funcname": "CalcWorkRectPos", - "location": "imgui_internal:1507", + "location": "imgui_internal:1548", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", "ret": "void", @@ -8934,7 +9083,7 @@ "cimguiname": "ImGuiViewportP_CalcWorkRectSize", "defaults": {}, "funcname": "CalcWorkRectSize", - "location": "imgui_internal:1508", + "location": "imgui_internal:1549", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", "ret": "void", @@ -8956,7 +9105,7 @@ "cimguiname": "ImGuiViewportP_ClearRequestFlags", "defaults": {}, "funcname": "ClearRequestFlags", - "location": "imgui_internal:1504", + "location": "imgui_internal:1545", "ov_cimguiname": "ImGuiViewportP_ClearRequestFlags", "ret": "void", "signature": "()", @@ -8981,7 +9130,7 @@ "cimguiname": "ImGuiViewportP_GetBuildWorkRect", "defaults": {}, "funcname": "GetBuildWorkRect", - "location": "imgui_internal:1514", + "location": "imgui_internal:1555", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", "ret": "void", @@ -9007,7 +9156,7 @@ "cimguiname": "ImGuiViewportP_GetMainRect", "defaults": {}, "funcname": "GetMainRect", - "location": "imgui_internal:1512", + "location": "imgui_internal:1553", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "void", @@ -9033,7 +9182,7 @@ "cimguiname": "ImGuiViewportP_GetWorkRect", "defaults": {}, "funcname": "GetWorkRect", - "location": "imgui_internal:1513", + "location": "imgui_internal:1554", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "void", @@ -9051,7 +9200,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewportP", - "location": "imgui_internal:1502", + "location": "imgui_internal:1543", "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -9071,7 +9220,7 @@ "cimguiname": "ImGuiViewportP_UpdateWorkRect", "defaults": {}, "funcname": "UpdateWorkRect", - "location": "imgui_internal:1509", + "location": "imgui_internal:1550", "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -9091,7 +9240,7 @@ "cimguiname": "ImGuiViewportP_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1503", + "location": "imgui_internal:1544", "ov_cimguiname": "ImGuiViewportP_destroy", "realdestructor": true, "ret": "void", @@ -9117,7 +9266,7 @@ "cimguiname": "ImGuiViewport_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui:2952", + "location": "imgui:2955", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "void", @@ -9143,7 +9292,7 @@ "cimguiname": "ImGuiViewport_GetWorkCenter", "defaults": {}, "funcname": "GetWorkCenter", - "location": "imgui:2953", + "location": "imgui:2956", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "void", @@ -9161,7 +9310,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", - "location": "imgui:2948", + "location": "imgui:2951", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -9180,7 +9329,7 @@ "cimguiname": "ImGuiViewport_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2949", + "location": "imgui:2952", "ov_cimguiname": "ImGuiViewport_destroy", "realdestructor": true, "ret": "void", @@ -9198,7 +9347,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowClass", - "location": "imgui:2110", + "location": "imgui:2111", "ov_cimguiname": "ImGuiWindowClass_ImGuiWindowClass", "signature": "()", "stname": "ImGuiWindowClass" @@ -9237,7 +9386,7 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", - "location": "imgui_internal:1538", + "location": "imgui_internal:1579", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -9254,7 +9403,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", - "location": "imgui_internal:1537", + "location": "imgui_internal:1578", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -9293,7 +9442,7 @@ "cimguiname": "ImGuiWindow_CalcFontSize", "defaults": {}, "funcname": "CalcFontSize", - "location": "imgui_internal:2245", + "location": "imgui_internal:2285", "ov_cimguiname": "ImGuiWindow_CalcFontSize", "ret": "float", "signature": "()const", @@ -9324,7 +9473,7 @@ "str_end": "NULL" }, "funcname": "GetID", - "location": "imgui_internal:2235", + "location": "imgui_internal:2275", "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -9347,7 +9496,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2236", + "location": "imgui_internal:2276", "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -9370,7 +9519,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2237", + "location": "imgui_internal:2277", "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", @@ -9395,7 +9544,7 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", - "location": "imgui_internal:2241", + "location": "imgui_internal:2281", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -9426,7 +9575,7 @@ "str_end": "NULL" }, "funcname": "GetIDNoKeepAlive", - "location": "imgui_internal:2238", + "location": "imgui_internal:2278", "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAlive_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -9449,7 +9598,7 @@ "cimguiname": "ImGuiWindow_GetIDNoKeepAlive", "defaults": {}, "funcname": "GetIDNoKeepAlive", - "location": "imgui_internal:2239", + "location": "imgui_internal:2279", "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAlive_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -9472,7 +9621,7 @@ "cimguiname": "ImGuiWindow_GetIDNoKeepAlive", "defaults": {}, "funcname": "GetIDNoKeepAlive", - "location": "imgui_internal:2240", + "location": "imgui_internal:2280", "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAlive_Int", "ret": "ImGuiID", "signature": "(int)", @@ -9498,7 +9647,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", - "location": "imgui_internal:2231", + "location": "imgui_internal:2271", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -9518,7 +9667,7 @@ "cimguiname": "ImGuiWindow_MenuBarHeight", "defaults": {}, "funcname": "MenuBarHeight", - "location": "imgui_internal:2248", + "location": "imgui_internal:2288", "ov_cimguiname": "ImGuiWindow_MenuBarHeight", "ret": "float", "signature": "()const", @@ -9543,7 +9692,7 @@ "cimguiname": "ImGuiWindow_MenuBarRect", "defaults": {}, "funcname": "MenuBarRect", - "location": "imgui_internal:2249", + "location": "imgui_internal:2289", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "void", @@ -9569,7 +9718,7 @@ "cimguiname": "ImGuiWindow_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:2244", + "location": "imgui_internal:2284", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "void", @@ -9591,7 +9740,7 @@ "cimguiname": "ImGuiWindow_TitleBarHeight", "defaults": {}, "funcname": "TitleBarHeight", - "location": "imgui_internal:2246", + "location": "imgui_internal:2286", "ov_cimguiname": "ImGuiWindow_TitleBarHeight", "ret": "float", "signature": "()const", @@ -9616,7 +9765,7 @@ "cimguiname": "ImGuiWindow_TitleBarRect", "defaults": {}, "funcname": "TitleBarRect", - "location": "imgui_internal:2247", + "location": "imgui_internal:2287", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "void", @@ -9637,7 +9786,7 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2233", + "location": "imgui_internal:2273", "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -9659,7 +9808,7 @@ "cimguiname": "ImPool_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:640", + "location": "imgui_internal:651", "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -9681,7 +9830,7 @@ "cimguiname": "ImPool_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:639", + "location": "imgui_internal:650", "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -9707,7 +9856,7 @@ "cimguiname": "ImPool_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:638", + "location": "imgui_internal:649", "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -9729,7 +9878,7 @@ "cimguiname": "ImPool_GetAliveCount", "defaults": {}, "funcname": "GetAliveCount", - "location": "imgui_internal:647", + "location": "imgui_internal:658", "ov_cimguiname": "ImPool_GetAliveCount", "ret": "int", "signature": "()const", @@ -9751,7 +9900,7 @@ "cimguiname": "ImPool_GetBufSize", "defaults": {}, "funcname": "GetBufSize", - "location": "imgui_internal:648", + "location": "imgui_internal:659", "ov_cimguiname": "ImPool_GetBufSize", "ret": "int", "signature": "()const", @@ -9777,7 +9926,7 @@ "cimguiname": "ImPool_GetByIndex", "defaults": {}, "funcname": "GetByIndex", - "location": "imgui_internal:635", + "location": "imgui_internal:646", "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -9803,7 +9952,7 @@ "cimguiname": "ImPool_GetByKey", "defaults": {}, "funcname": "GetByKey", - "location": "imgui_internal:634", + "location": "imgui_internal:645", "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -9829,7 +9978,7 @@ "cimguiname": "ImPool_GetIndex", "defaults": {}, "funcname": "GetIndex", - "location": "imgui_internal:636", + "location": "imgui_internal:647", "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -9851,7 +10000,7 @@ "cimguiname": "ImPool_GetMapSize", "defaults": {}, "funcname": "GetMapSize", - "location": "imgui_internal:649", + "location": "imgui_internal:660", "ov_cimguiname": "ImPool_GetMapSize", "ret": "int", "signature": "()const", @@ -9877,7 +10026,7 @@ "cimguiname": "ImPool_GetOrAddByKey", "defaults": {}, "funcname": "GetOrAddByKey", - "location": "imgui_internal:637", + "location": "imgui_internal:648", "ov_cimguiname": "ImPool_GetOrAddByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -9895,7 +10044,7 @@ "constructor": true, "defaults": {}, "funcname": "ImPool", - "location": "imgui_internal:632", + "location": "imgui_internal:643", "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -9924,7 +10073,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:641", + "location": "imgui_internal:652", "ov_cimguiname": "ImPool_Remove_TPtr", "ret": "void", "signature": "(ImGuiID,const T*)", @@ -9952,7 +10101,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:642", + "location": "imgui_internal:653", "ov_cimguiname": "ImPool_Remove_PoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", @@ -9978,7 +10127,7 @@ "cimguiname": "ImPool_Reserve", "defaults": {}, "funcname": "Reserve", - "location": "imgui_internal:643", + "location": "imgui_internal:654", "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -10004,7 +10153,7 @@ "cimguiname": "ImPool_TryGetMapData", "defaults": {}, "funcname": "TryGetMapData", - "location": "imgui_internal:650", + "location": "imgui_internal:661", "ov_cimguiname": "ImPool_TryGetMapData", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10025,7 +10174,7 @@ "cimguiname": "ImPool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:633", + "location": "imgui_internal:644", "ov_cimguiname": "ImPool_destroy", "realdestructor": true, "ret": "void", @@ -10052,7 +10201,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:510", + "location": "imgui_internal:521", "ov_cimguiname": "ImRect_Add_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10075,7 +10224,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:511", + "location": "imgui_internal:522", "ov_cimguiname": "ImRect_Add_Rect", "ret": "void", "signature": "(const ImRect)", @@ -10100,7 +10249,7 @@ "cimguiname": "ImRect_ClipWith", "defaults": {}, "funcname": "ClipWith", - "location": "imgui_internal:517", + "location": "imgui_internal:528", "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -10125,7 +10274,7 @@ "cimguiname": "ImRect_ClipWithFull", "defaults": {}, "funcname": "ClipWithFull", - "location": "imgui_internal:518", + "location": "imgui_internal:529", "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -10150,7 +10299,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:507", + "location": "imgui_internal:518", "ov_cimguiname": "ImRect_Contains_Vec2", "ret": "bool", "signature": "(const ImVec2)const", @@ -10173,7 +10322,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:508", + "location": "imgui_internal:519", "ov_cimguiname": "ImRect_Contains_Rect", "ret": "bool", "signature": "(const ImRect)const", @@ -10198,7 +10347,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:512", + "location": "imgui_internal:523", "ov_cimguiname": "ImRect_Expand_Float", "ret": "void", "signature": "(const float)", @@ -10221,7 +10370,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:513", + "location": "imgui_internal:524", "ov_cimguiname": "ImRect_Expand_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10242,7 +10391,7 @@ "cimguiname": "ImRect_Floor", "defaults": {}, "funcname": "Floor", - "location": "imgui_internal:519", + "location": "imgui_internal:530", "ov_cimguiname": "ImRect_Floor", "ret": "void", "signature": "()", @@ -10263,7 +10412,7 @@ "cimguiname": "ImRect_GetArea", "defaults": {}, "funcname": "GetArea", - "location": "imgui_internal:502", + "location": "imgui_internal:513", "ov_cimguiname": "ImRect_GetArea", "ret": "float", "signature": "()const", @@ -10288,7 +10437,7 @@ "cimguiname": "ImRect_GetBL", "defaults": {}, "funcname": "GetBL", - "location": "imgui_internal:505", + "location": "imgui_internal:516", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "void", @@ -10314,7 +10463,7 @@ "cimguiname": "ImRect_GetBR", "defaults": {}, "funcname": "GetBR", - "location": "imgui_internal:506", + "location": "imgui_internal:517", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "void", @@ -10340,7 +10489,7 @@ "cimguiname": "ImRect_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui_internal:498", + "location": "imgui_internal:509", "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "void", @@ -10362,7 +10511,7 @@ "cimguiname": "ImRect_GetHeight", "defaults": {}, "funcname": "GetHeight", - "location": "imgui_internal:501", + "location": "imgui_internal:512", "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -10387,7 +10536,7 @@ "cimguiname": "ImRect_GetSize", "defaults": {}, "funcname": "GetSize", - "location": "imgui_internal:499", + "location": "imgui_internal:510", "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "void", @@ -10413,7 +10562,7 @@ "cimguiname": "ImRect_GetTL", "defaults": {}, "funcname": "GetTL", - "location": "imgui_internal:503", + "location": "imgui_internal:514", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "void", @@ -10439,7 +10588,7 @@ "cimguiname": "ImRect_GetTR", "defaults": {}, "funcname": "GetTR", - "location": "imgui_internal:504", + "location": "imgui_internal:515", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "void", @@ -10461,7 +10610,7 @@ "cimguiname": "ImRect_GetWidth", "defaults": {}, "funcname": "GetWidth", - "location": "imgui_internal:500", + "location": "imgui_internal:511", "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -10478,7 +10627,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:493", + "location": "imgui_internal:504", "ov_cimguiname": "ImRect_ImRect_Nil", "signature": "()", "stname": "ImRect" @@ -10501,7 +10650,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:494", + "location": "imgui_internal:505", "ov_cimguiname": "ImRect_ImRect_Vec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" @@ -10520,7 +10669,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:495", + "location": "imgui_internal:506", "ov_cimguiname": "ImRect_ImRect_Vec4", "signature": "(const ImVec4)", "stname": "ImRect" @@ -10551,7 +10700,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:496", + "location": "imgui_internal:507", "ov_cimguiname": "ImRect_ImRect_Float", "signature": "(float,float,float,float)", "stname": "ImRect" @@ -10571,7 +10720,7 @@ "cimguiname": "ImRect_IsInverted", "defaults": {}, "funcname": "IsInverted", - "location": "imgui_internal:520", + "location": "imgui_internal:531", "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -10596,7 +10745,7 @@ "cimguiname": "ImRect_Overlaps", "defaults": {}, "funcname": "Overlaps", - "location": "imgui_internal:509", + "location": "imgui_internal:520", "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -10621,7 +10770,7 @@ "cimguiname": "ImRect_ToVec4", "defaults": {}, "funcname": "ToVec4", - "location": "imgui_internal:521", + "location": "imgui_internal:532", "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "void", @@ -10647,7 +10796,7 @@ "cimguiname": "ImRect_Translate", "defaults": {}, "funcname": "Translate", - "location": "imgui_internal:514", + "location": "imgui_internal:525", "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -10672,7 +10821,7 @@ "cimguiname": "ImRect_TranslateX", "defaults": {}, "funcname": "TranslateX", - "location": "imgui_internal:515", + "location": "imgui_internal:526", "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -10697,7 +10846,7 @@ "cimguiname": "ImRect_TranslateY", "defaults": {}, "funcname": "TranslateY", - "location": "imgui_internal:516", + "location": "imgui_internal:527", "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -10737,7 +10886,7 @@ "cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "defaults": {}, "funcname": "GetArenaSizeInBytes", - "location": "imgui_internal:612", + "location": "imgui_internal:623", "ov_cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "ret": "int", "signature": "()", @@ -10763,7 +10912,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "defaults": {}, "funcname": "GetSpanPtrBegin", - "location": "imgui_internal:614", + "location": "imgui_internal:625", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "ret": "void*", "signature": "(int)", @@ -10789,7 +10938,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "defaults": {}, "funcname": "GetSpanPtrEnd", - "location": "imgui_internal:615", + "location": "imgui_internal:626", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "ret": "void*", "signature": "(int)", @@ -10807,7 +10956,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpanAllocator", - "location": "imgui_internal:610", + "location": "imgui_internal:621", "ov_cimguiname": "ImSpanAllocator_ImSpanAllocator", "signature": "()", "stname": "ImSpanAllocator", @@ -10842,7 +10991,7 @@ "a": "4" }, "funcname": "Reserve", - "location": "imgui_internal:611", + "location": "imgui_internal:622", "ov_cimguiname": "ImSpanAllocator_Reserve", "ret": "void", "signature": "(int,size_t,int)", @@ -10868,7 +11017,7 @@ "cimguiname": "ImSpanAllocator_SetArenaBasePtr", "defaults": {}, "funcname": "SetArenaBasePtr", - "location": "imgui_internal:613", + "location": "imgui_internal:624", "ov_cimguiname": "ImSpanAllocator_SetArenaBasePtr", "ret": "void", "signature": "(void*)", @@ -10906,7 +11055,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:578", + "location": "imgui_internal:589", "ov_cimguiname": "ImSpan_ImSpan_Nil", "signature": "()", "stname": "ImSpan", @@ -10930,7 +11079,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:579", + "location": "imgui_internal:590", "ov_cimguiname": "ImSpan_ImSpan_TPtrInt", "signature": "(T*,int)", "stname": "ImSpan", @@ -10954,7 +11103,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:580", + "location": "imgui_internal:591", "ov_cimguiname": "ImSpan_ImSpan_TPtrTPtr", "signature": "(T*,T*)", "stname": "ImSpan", @@ -10975,7 +11124,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:589", + "location": "imgui_internal:600", "ov_cimguiname": "ImSpan_begin_Nil", "ret": "T*", "signature": "()", @@ -10995,7 +11144,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:590", + "location": "imgui_internal:601", "ov_cimguiname": "ImSpan_begin__const", "ret": "const T*", "signature": "()const", @@ -11037,7 +11186,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:591", + "location": "imgui_internal:602", "ov_cimguiname": "ImSpan_end_Nil", "ret": "T*", "signature": "()", @@ -11057,7 +11206,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:592", + "location": "imgui_internal:603", "ov_cimguiname": "ImSpan_end__const", "ret": "const T*", "signature": "()const", @@ -11083,7 +11232,7 @@ "cimguiname": "ImSpan_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui_internal:595", + "location": "imgui_internal:606", "ov_cimguiname": "ImSpan_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -11113,7 +11262,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:582", + "location": "imgui_internal:593", "ov_cimguiname": "ImSpan_set_Int", "ret": "void", "signature": "(T*,int)", @@ -11141,7 +11290,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:583", + "location": "imgui_internal:594", "ov_cimguiname": "ImSpan_set_TPtr", "ret": "void", "signature": "(T*,T*)", @@ -11163,7 +11312,7 @@ "cimguiname": "ImSpan_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:584", + "location": "imgui_internal:595", "ov_cimguiname": "ImSpan_size", "ret": "int", "signature": "()const", @@ -11185,7 +11334,7 @@ "cimguiname": "ImSpan_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui_internal:585", + "location": "imgui_internal:596", "ov_cimguiname": "ImSpan_size_in_bytes", "ret": "int", "signature": "()const", @@ -11203,7 +11352,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:473", + "location": "imgui_internal:484", "ov_cimguiname": "ImVec1_ImVec1_Nil", "signature": "()", "stname": "ImVec1" @@ -11222,7 +11371,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:474", + "location": "imgui_internal:485", "ov_cimguiname": "ImVec1_ImVec1_Float", "signature": "(float)", "stname": "ImVec1" @@ -11315,7 +11464,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:481", + "location": "imgui_internal:492", "ov_cimguiname": "ImVec2ih_ImVec2ih_Nil", "signature": "()", "stname": "ImVec2ih" @@ -11338,7 +11487,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:482", + "location": "imgui_internal:493", "ov_cimguiname": "ImVec2ih_ImVec2ih_short", "signature": "(short,short)", "stname": "ImVec2ih" @@ -11357,7 +11506,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:483", + "location": "imgui_internal:494", "ov_cimguiname": "ImVec2ih_ImVec2ih_Vec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" @@ -12394,7 +12543,7 @@ "cimguiname": "igActivateItem", "defaults": {}, "funcname": "ActivateItem", - "location": "imgui_internal:2766", + "location": "imgui_internal:2812", "namespace": "ImGui", "ov_cimguiname": "igActivateItem", "ret": "void", @@ -12420,7 +12569,7 @@ "cimguiname": "igAddContextHook", "defaults": {}, "funcname": "AddContextHook", - "location": "imgui_internal:2642", + "location": "imgui_internal:2688", "namespace": "ImGui", "ov_cimguiname": "igAddContextHook", "ret": "ImGuiID", @@ -12499,7 +12648,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "imgui_internal:2957", + "location": "imgui_internal:3006", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -12644,7 +12793,7 @@ "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", - "location": "imgui_internal:2730", + "location": "imgui_internal:2775", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", @@ -12676,7 +12825,7 @@ "flags": "0" }, "funcname": "BeginChildFrame", - "location": "imgui:906", + "location": "imgui:905", "namespace": "ImGui", "ov_cimguiname": "igBeginChildFrame", "ret": "bool", @@ -12708,7 +12857,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "imgui_internal:2846", + "location": "imgui_internal:2894", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -12770,7 +12919,7 @@ "cimguiname": "igBeginComboPopup", "defaults": {}, "funcname": "BeginComboPopup", - "location": "imgui_internal:2749", + "location": "imgui_internal:2795", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPopup", "ret": "bool", @@ -12787,7 +12936,7 @@ "cimguiname": "igBeginComboPreview", "defaults": {}, "funcname": "BeginComboPreview", - "location": "imgui_internal:2750", + "location": "imgui_internal:2796", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPreview", "ret": "bool", @@ -12833,7 +12982,7 @@ "cimguiname": "igBeginDockableDragDropSource", "defaults": {}, "funcname": "BeginDockableDragDropSource", - "location": "imgui_internal:2811", + "location": "imgui_internal:2859", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropSource", "ret": "void", @@ -12855,7 +13004,7 @@ "cimguiname": "igBeginDockableDragDropTarget", "defaults": {}, "funcname": "BeginDockableDragDropTarget", - "location": "imgui_internal:2812", + "location": "imgui_internal:2860", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropTarget", "ret": "void", @@ -12881,7 +13030,7 @@ "cimguiname": "igBeginDocked", "defaults": {}, "funcname": "BeginDocked", - "location": "imgui_internal:2810", + "location": "imgui_internal:2858", "namespace": "ImGui", "ov_cimguiname": "igBeginDocked", "ret": "void", @@ -12948,7 +13097,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", - "location": "imgui_internal:2840", + "location": "imgui_internal:2888", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -13087,7 +13236,7 @@ "enabled": "true" }, "funcname": "BeginMenuEx", - "location": "imgui_internal:2745", + "location": "imgui_internal:2791", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuEx", "ret": "bool", @@ -13228,7 +13377,7 @@ "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", - "location": "imgui_internal:2736", + "location": "imgui_internal:2781", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -13323,7 +13472,7 @@ "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", - "location": "imgui_internal:2908", + "location": "imgui_internal:2956", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", @@ -13444,7 +13593,7 @@ "outer_size": "ImVec2(0,0)" }, "funcname": "BeginTableEx", - "location": "imgui_internal:2868", + "location": "imgui_internal:2916", "namespace": "ImGui", "ov_cimguiname": "igBeginTableEx", "ret": "bool", @@ -13471,27 +13620,27 @@ ], "igBeginTooltipEx": [ { - "args": "(ImGuiWindowFlags extra_flags,ImGuiTooltipFlags tooltip_flags)", + "args": "(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags)", "argsT": [ - { - "name": "extra_flags", - "type": "ImGuiWindowFlags" - }, { "name": "tooltip_flags", "type": "ImGuiTooltipFlags" + }, + { + "name": "extra_window_flags", + "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(ImGuiWindowFlags extra_flags,ImGuiTooltipFlags tooltip_flags)", - "call_args": "(extra_flags,tooltip_flags)", + "argsoriginal": "(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags)", + "call_args": "(tooltip_flags,extra_window_flags)", "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", - "location": "imgui_internal:2737", + "location": "imgui_internal:2782", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", "ret": "void", - "signature": "(ImGuiWindowFlags,ImGuiTooltipFlags)", + "signature": "(ImGuiTooltipFlags,ImGuiWindowFlags)", "stname": "" } ], @@ -13525,7 +13674,7 @@ "cimguiname": "igBeginViewportSideBar", "defaults": {}, "funcname": "BeginViewportSideBar", - "location": "imgui_internal:2744", + "location": "imgui_internal:2790", "namespace": "ImGui", "ov_cimguiname": "igBeginViewportSideBar", "ret": "bool", @@ -13547,7 +13696,7 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", - "location": "imgui_internal:2623", + "location": "imgui_internal:2666", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -13555,6 +13704,32 @@ "stname": "" } ], + "igBringWindowToDisplayBehind": [ + { + "args": "(ImGuiWindow* window,ImGuiWindow* above_window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "above_window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiWindow* above_window)", + "call_args": "(window,above_window)", + "cimguiname": "igBringWindowToDisplayBehind", + "defaults": {}, + "funcname": "BringWindowToDisplayBehind", + "location": "imgui_internal:2667", + "namespace": "ImGui", + "ov_cimguiname": "igBringWindowToDisplayBehind", + "ret": "void", + "signature": "(ImGuiWindow*,ImGuiWindow*)", + "stname": "" + } + ], "igBringWindowToDisplayFront": [ { "args": "(ImGuiWindow* window)", @@ -13569,7 +13744,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", - "location": "imgui_internal:2622", + "location": "imgui_internal:2665", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -13591,7 +13766,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", - "location": "imgui_internal:2621", + "location": "imgui_internal:2664", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -13729,7 +13904,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "imgui_internal:2970", + "location": "imgui_internal:3019", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -13762,7 +13937,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "imgui_internal:2954", + "location": "imgui_internal:3003", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -13796,7 +13971,7 @@ "cimguiname": "igCalcItemSize", "defaults": {}, "funcname": "CalcItemSize", - "location": "imgui_internal:2701", + "location": "imgui_internal:2746", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -13822,37 +13997,33 @@ "stname": "" } ], - "igCalcListClipping": [ + "igCalcRoundingFlagsForRectInRect": [ { - "args": "(int items_count,float items_height,int* out_items_display_start,int* out_items_display_end)", + "args": "(const ImRect r_in,const ImRect r_outer,float threshold)", "argsT": [ { - "name": "items_count", - "type": "int" - }, - { - "name": "items_height", - "type": "float" + "name": "r_in", + "type": "const ImRect" }, { - "name": "out_items_display_start", - "type": "int*" + "name": "r_outer", + "type": "const ImRect" }, { - "name": "out_items_display_end", - "type": "int*" + "name": "threshold", + "type": "float" } ], - "argsoriginal": "(int items_count,float items_height,int* out_items_display_start,int* out_items_display_end)", - "call_args": "(items_count,items_height,out_items_display_start,out_items_display_end)", - "cimguiname": "igCalcListClipping", + "argsoriginal": "(const ImRect& r_in,const ImRect& r_outer,float threshold)", + "call_args": "(r_in,r_outer,threshold)", + "cimguiname": "igCalcRoundingFlagsForRectInRect", "defaults": {}, - "funcname": "CalcListClipping", - "location": "imgui:905", + "funcname": "CalcRoundingFlagsForRectInRect", + "location": "imgui_internal:2993", "namespace": "ImGui", - "ov_cimguiname": "igCalcListClipping", - "ret": "void", - "signature": "(int,float,int*,int*)", + "ov_cimguiname": "igCalcRoundingFlagsForRectInRect", + "ret": "ImDrawFlags", + "signature": "(const ImRect,const ImRect,float)", "stname": "" } ], @@ -13890,7 +14061,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:910", + "location": "imgui:909", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -13925,7 +14096,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", - "location": "imgui_internal:2765", + "location": "imgui_internal:2811", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -13951,7 +14122,7 @@ "cimguiname": "igCalcWindowNextAutoFitSize", "defaults": {}, "funcname": "CalcWindowNextAutoFitSize", - "location": "imgui_internal:2609", + "location": "imgui_internal:2649", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowNextAutoFitSize", @@ -13978,7 +14149,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", - "location": "imgui_internal:2702", + "location": "imgui_internal:2747", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -14004,7 +14175,7 @@ "cimguiname": "igCallContextHooks", "defaults": {}, "funcname": "CallContextHooks", - "location": "imgui_internal:2644", + "location": "imgui_internal:2690", "namespace": "ImGui", "ov_cimguiname": "igCallContextHooks", "ret": "void", @@ -14028,7 +14199,7 @@ "want_capture_keyboard_value": "true" }, "funcname": "CaptureKeyboardFromApp", - "location": "imgui:926", + "location": "imgui:925", "namespace": "ImGui", "ov_cimguiname": "igCaptureKeyboardFromApp", "ret": "void", @@ -14164,7 +14335,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:2966", + "location": "imgui_internal:3015", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_S64Ptr", "ret": "bool", @@ -14192,7 +14363,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:2967", + "location": "imgui_internal:3016", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_U64Ptr", "ret": "bool", @@ -14209,7 +14380,7 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", - "location": "imgui_internal:2685", + "location": "imgui_internal:2731", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -14226,7 +14397,7 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", - "location": "imgui_internal:2841", + "location": "imgui_internal:2889", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -14243,7 +14414,7 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", - "location": "imgui_internal:2656", + "location": "imgui_internal:2702", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -14269,7 +14440,7 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", - "location": "imgui_internal:2955", + "location": "imgui_internal:3004", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -14312,7 +14483,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", - "location": "imgui_internal:2732", + "location": "imgui_internal:2777", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -14329,7 +14500,7 @@ "cimguiname": "igClosePopupsExceptModals", "defaults": {}, "funcname": "ClosePopupsExceptModals", - "location": "imgui_internal:2734", + "location": "imgui_internal:2779", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsExceptModals", "ret": "void", @@ -14355,7 +14526,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", - "location": "imgui_internal:2733", + "location": "imgui_internal:2778", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -14385,7 +14556,7 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", - "location": "imgui_internal:2956", + "location": "imgui_internal:3005", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -14502,7 +14673,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:914", + "location": "imgui:913", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -14547,7 +14718,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:916", + "location": "imgui:915", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -14592,7 +14763,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:915", + "location": "imgui:914", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -14618,7 +14789,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:913", + "location": "imgui:912", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -14709,7 +14880,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", - "location": "imgui_internal:3005", + "location": "imgui_internal:3054", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -14804,7 +14975,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", - "location": "imgui_internal:3006", + "location": "imgui_internal:3055", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -14834,7 +15005,7 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", - "location": "imgui_internal:3004", + "location": "imgui_internal:3053", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -15032,7 +15203,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", - "location": "imgui_internal:2657", + "location": "imgui_internal:2703", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -15070,7 +15241,7 @@ "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", - "location": "imgui_internal:2991", + "location": "imgui_internal:3040", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -15108,7 +15279,7 @@ "cimguiname": "igDataTypeApplyOpFromText", "defaults": {}, "funcname": "DataTypeApplyOpFromText", - "location": "imgui_internal:2992", + "location": "imgui_internal:3041", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOpFromText", "ret": "bool", @@ -15142,7 +15313,7 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", - "location": "imgui_internal:2994", + "location": "imgui_internal:3043", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -15172,7 +15343,7 @@ "cimguiname": "igDataTypeCompare", "defaults": {}, "funcname": "DataTypeCompare", - "location": "imgui_internal:2993", + "location": "imgui_internal:3042", "namespace": "ImGui", "ov_cimguiname": "igDataTypeCompare", "ret": "int", @@ -15210,7 +15381,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", - "location": "imgui_internal:2990", + "location": "imgui_internal:3039", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -15232,7 +15403,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", - "location": "imgui_internal:2989", + "location": "imgui_internal:3038", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -15302,7 +15473,7 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "imgui_internal:3023", + "location": "imgui_internal:3072", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -15336,7 +15507,7 @@ "cimguiname": "igDebugHookIdInfo", "defaults": {}, "funcname": "DebugHookIdInfo", - "location": "imgui_internal:3027", + "location": "imgui_internal:3076", "namespace": "ImGui", "ov_cimguiname": "igDebugHookIdInfo", "ret": "void", @@ -15358,7 +15529,7 @@ "cimguiname": "igDebugNodeColumns", "defaults": {}, "funcname": "DebugNodeColumns", - "location": "imgui_internal:3028", + "location": "imgui_internal:3077", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeColumns", "ret": "void", @@ -15384,7 +15555,7 @@ "cimguiname": "igDebugNodeDockNode", "defaults": {}, "funcname": "DebugNodeDockNode", - "location": "imgui_internal:3029", + "location": "imgui_internal:3078", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDockNode", "ret": "void", @@ -15422,7 +15593,7 @@ "cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "defaults": {}, "funcname": "DebugNodeDrawCmdShowMeshAndBoundingBox", - "location": "imgui_internal:3031", + "location": "imgui_internal:3080", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "ret": "void", @@ -15456,7 +15627,7 @@ "cimguiname": "igDebugNodeDrawList", "defaults": {}, "funcname": "DebugNodeDrawList", - "location": "imgui_internal:3030", + "location": "imgui_internal:3079", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawList", "ret": "void", @@ -15478,7 +15649,7 @@ "cimguiname": "igDebugNodeFont", "defaults": {}, "funcname": "DebugNodeFont", - "location": "imgui_internal:3032", + "location": "imgui_internal:3081", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFont", "ret": "void", @@ -15504,7 +15675,7 @@ "cimguiname": "igDebugNodeStorage", "defaults": {}, "funcname": "DebugNodeStorage", - "location": "imgui_internal:3033", + "location": "imgui_internal:3082", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeStorage", "ret": "void", @@ -15530,7 +15701,7 @@ "cimguiname": "igDebugNodeTabBar", "defaults": {}, "funcname": "DebugNodeTabBar", - "location": "imgui_internal:3034", + "location": "imgui_internal:3083", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTabBar", "ret": "void", @@ -15552,7 +15723,7 @@ "cimguiname": "igDebugNodeTable", "defaults": {}, "funcname": "DebugNodeTable", - "location": "imgui_internal:3035", + "location": "imgui_internal:3084", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTable", "ret": "void", @@ -15574,7 +15745,7 @@ "cimguiname": "igDebugNodeTableSettings", "defaults": {}, "funcname": "DebugNodeTableSettings", - "location": "imgui_internal:3036", + "location": "imgui_internal:3085", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTableSettings", "ret": "void", @@ -15596,7 +15767,7 @@ "cimguiname": "igDebugNodeViewport", "defaults": {}, "funcname": "DebugNodeViewport", - "location": "imgui_internal:3040", + "location": "imgui_internal:3090", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeViewport", "ret": "void", @@ -15622,7 +15793,7 @@ "cimguiname": "igDebugNodeWindow", "defaults": {}, "funcname": "DebugNodeWindow", - "location": "imgui_internal:3037", + "location": "imgui_internal:3086", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindow", "ret": "void", @@ -15644,7 +15815,7 @@ "cimguiname": "igDebugNodeWindowSettings", "defaults": {}, "funcname": "DebugNodeWindowSettings", - "location": "imgui_internal:3038", + "location": "imgui_internal:3087", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowSettings", "ret": "void", @@ -15670,7 +15841,7 @@ "cimguiname": "igDebugNodeWindowsList", "defaults": {}, "funcname": "DebugNodeWindowsList", - "location": "imgui_internal:3039", + "location": "imgui_internal:3088", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsList", "ret": "void", @@ -15678,6 +15849,36 @@ "stname": "" } ], + "igDebugNodeWindowsListByBeginStackParent": [ + { + "args": "(ImGuiWindow** windows,int windows_size,ImGuiWindow* parent_in_begin_stack)", + "argsT": [ + { + "name": "windows", + "type": "ImGuiWindow**" + }, + { + "name": "windows_size", + "type": "int" + }, + { + "name": "parent_in_begin_stack", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow** windows,int windows_size,ImGuiWindow* parent_in_begin_stack)", + "call_args": "(windows,windows_size,parent_in_begin_stack)", + "cimguiname": "igDebugNodeWindowsListByBeginStackParent", + "defaults": {}, + "funcname": "DebugNodeWindowsListByBeginStackParent", + "location": "imgui_internal:3089", + "namespace": "ImGui", + "ov_cimguiname": "igDebugNodeWindowsListByBeginStackParent", + "ret": "void", + "signature": "(ImGuiWindow**,int,ImGuiWindow*)", + "stname": "" + } + ], "igDebugRenderViewportThumbnail": [ { "args": "(ImDrawList* draw_list,ImGuiViewportP* viewport,const ImRect bb)", @@ -15700,7 +15901,7 @@ "cimguiname": "igDebugRenderViewportThumbnail", "defaults": {}, "funcname": "DebugRenderViewportThumbnail", - "location": "imgui_internal:3041", + "location": "imgui_internal:3091", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderViewportThumbnail", "ret": "void", @@ -15717,7 +15918,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", - "location": "imgui_internal:3024", + "location": "imgui_internal:3073", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -15763,7 +15964,7 @@ "cimguiname": "igDestroyPlatformWindow", "defaults": {}, "funcname": "DestroyPlatformWindow", - "location": "imgui_internal:2649", + "location": "imgui_internal:2695", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindow", "ret": "void", @@ -15809,7 +16010,7 @@ "node_id": "0" }, "funcname": "DockBuilderAddNode", - "location": "imgui_internal:2827", + "location": "imgui_internal:2875", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderAddNode", "ret": "ImGuiID", @@ -15839,7 +16040,7 @@ "cimguiname": "igDockBuilderCopyDockSpace", "defaults": {}, "funcname": "DockBuilderCopyDockSpace", - "location": "imgui_internal:2834", + "location": "imgui_internal:2882", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyDockSpace", "ret": "void", @@ -15869,7 +16070,7 @@ "cimguiname": "igDockBuilderCopyNode", "defaults": {}, "funcname": "DockBuilderCopyNode", - "location": "imgui_internal:2835", + "location": "imgui_internal:2883", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyNode", "ret": "void", @@ -15895,7 +16096,7 @@ "cimguiname": "igDockBuilderCopyWindowSettings", "defaults": {}, "funcname": "DockBuilderCopyWindowSettings", - "location": "imgui_internal:2836", + "location": "imgui_internal:2884", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyWindowSettings", "ret": "void", @@ -15921,7 +16122,7 @@ "cimguiname": "igDockBuilderDockWindow", "defaults": {}, "funcname": "DockBuilderDockWindow", - "location": "imgui_internal:2824", + "location": "imgui_internal:2872", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderDockWindow", "ret": "void", @@ -15943,7 +16144,7 @@ "cimguiname": "igDockBuilderFinish", "defaults": {}, "funcname": "DockBuilderFinish", - "location": "imgui_internal:2837", + "location": "imgui_internal:2885", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderFinish", "ret": "void", @@ -15965,7 +16166,7 @@ "cimguiname": "igDockBuilderGetCentralNode", "defaults": {}, "funcname": "DockBuilderGetCentralNode", - "location": "imgui_internal:2826", + "location": "imgui_internal:2874", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetCentralNode", "ret": "ImGuiDockNode*", @@ -15987,7 +16188,7 @@ "cimguiname": "igDockBuilderGetNode", "defaults": {}, "funcname": "DockBuilderGetNode", - "location": "imgui_internal:2825", + "location": "imgui_internal:2873", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetNode", "ret": "ImGuiDockNode*", @@ -16009,7 +16210,7 @@ "cimguiname": "igDockBuilderRemoveNode", "defaults": {}, "funcname": "DockBuilderRemoveNode", - "location": "imgui_internal:2828", + "location": "imgui_internal:2876", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNode", "ret": "void", @@ -16031,7 +16232,7 @@ "cimguiname": "igDockBuilderRemoveNodeChildNodes", "defaults": {}, "funcname": "DockBuilderRemoveNodeChildNodes", - "location": "imgui_internal:2830", + "location": "imgui_internal:2878", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeChildNodes", "ret": "void", @@ -16059,7 +16260,7 @@ "clear_settings_refs": "true" }, "funcname": "DockBuilderRemoveNodeDockedWindows", - "location": "imgui_internal:2829", + "location": "imgui_internal:2877", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeDockedWindows", "ret": "void", @@ -16085,7 +16286,7 @@ "cimguiname": "igDockBuilderSetNodePos", "defaults": {}, "funcname": "DockBuilderSetNodePos", - "location": "imgui_internal:2831", + "location": "imgui_internal:2879", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodePos", "ret": "void", @@ -16111,7 +16312,7 @@ "cimguiname": "igDockBuilderSetNodeSize", "defaults": {}, "funcname": "DockBuilderSetNodeSize", - "location": "imgui_internal:2832", + "location": "imgui_internal:2880", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodeSize", "ret": "void", @@ -16149,7 +16350,7 @@ "cimguiname": "igDockBuilderSplitNode", "defaults": {}, "funcname": "DockBuilderSplitNode", - "location": "imgui_internal:2833", + "location": "imgui_internal:2881", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSplitNode", "ret": "ImGuiID", @@ -16191,7 +16392,7 @@ "cimguiname": "igDockContextCalcDropPosForDocking", "defaults": {}, "funcname": "DockContextCalcDropPosForDocking", - "location": "imgui_internal:2802", + "location": "imgui_internal:2849", "namespace": "ImGui", "ov_cimguiname": "igDockContextCalcDropPosForDocking", "ret": "bool", @@ -16221,7 +16422,7 @@ "cimguiname": "igDockContextClearNodes", "defaults": {}, "funcname": "DockContextClearNodes", - "location": "imgui_internal:2794", + "location": "imgui_internal:2840", "namespace": "ImGui", "ov_cimguiname": "igDockContextClearNodes", "ret": "void", @@ -16229,6 +16430,28 @@ "stname": "" } ], + "igDockContextEndFrame": [ + { + "args": "(ImGuiContext* ctx)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + } + ], + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "igDockContextEndFrame", + "defaults": {}, + "funcname": "DockContextEndFrame", + "location": "imgui_internal:2844", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextEndFrame", + "ret": "void", + "signature": "(ImGuiContext*)", + "stname": "" + } + ], "igDockContextGenNodeID": [ { "args": "(ImGuiContext* ctx)", @@ -16243,7 +16466,7 @@ "cimguiname": "igDockContextGenNodeID", "defaults": {}, "funcname": "DockContextGenNodeID", - "location": "imgui_internal:2798", + "location": "imgui_internal:2845", "namespace": "ImGui", "ov_cimguiname": "igDockContextGenNodeID", "ret": "ImGuiID", @@ -16265,7 +16488,7 @@ "cimguiname": "igDockContextInitialize", "defaults": {}, "funcname": "DockContextInitialize", - "location": "imgui_internal:2792", + "location": "imgui_internal:2838", "namespace": "ImGui", "ov_cimguiname": "igDockContextInitialize", "ret": "void", @@ -16287,7 +16510,7 @@ "cimguiname": "igDockContextNewFrameUpdateDocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateDocking", - "location": "imgui_internal:2797", + "location": "imgui_internal:2843", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateDocking", "ret": "void", @@ -16309,7 +16532,7 @@ "cimguiname": "igDockContextNewFrameUpdateUndocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateUndocking", - "location": "imgui_internal:2796", + "location": "imgui_internal:2842", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateUndocking", "ret": "void", @@ -16355,7 +16578,7 @@ "cimguiname": "igDockContextQueueDock", "defaults": {}, "funcname": "DockContextQueueDock", - "location": "imgui_internal:2799", + "location": "imgui_internal:2846", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueDock", "ret": "void", @@ -16381,7 +16604,7 @@ "cimguiname": "igDockContextQueueUndockNode", "defaults": {}, "funcname": "DockContextQueueUndockNode", - "location": "imgui_internal:2801", + "location": "imgui_internal:2848", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockNode", "ret": "void", @@ -16407,7 +16630,7 @@ "cimguiname": "igDockContextQueueUndockWindow", "defaults": {}, "funcname": "DockContextQueueUndockWindow", - "location": "imgui_internal:2800", + "location": "imgui_internal:2847", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockWindow", "ret": "void", @@ -16429,7 +16652,7 @@ "cimguiname": "igDockContextRebuildNodes", "defaults": {}, "funcname": "DockContextRebuildNodes", - "location": "imgui_internal:2795", + "location": "imgui_internal:2841", "namespace": "ImGui", "ov_cimguiname": "igDockContextRebuildNodes", "ret": "void", @@ -16451,7 +16674,7 @@ "cimguiname": "igDockContextShutdown", "defaults": {}, "funcname": "DockContextShutdown", - "location": "imgui_internal:2793", + "location": "imgui_internal:2839", "namespace": "ImGui", "ov_cimguiname": "igDockContextShutdown", "ret": "void", @@ -16473,7 +16696,7 @@ "cimguiname": "igDockNodeBeginAmendTabBar", "defaults": {}, "funcname": "DockNodeBeginAmendTabBar", - "location": "imgui_internal:2803", + "location": "imgui_internal:2850", "namespace": "ImGui", "ov_cimguiname": "igDockNodeBeginAmendTabBar", "ret": "bool", @@ -16490,7 +16713,7 @@ "cimguiname": "igDockNodeEndAmendTabBar", "defaults": {}, "funcname": "DockNodeEndAmendTabBar", - "location": "imgui_internal:2804", + "location": "imgui_internal:2851", "namespace": "ImGui", "ov_cimguiname": "igDockNodeEndAmendTabBar", "ret": "void", @@ -16512,7 +16735,7 @@ "cimguiname": "igDockNodeGetDepth", "defaults": {}, "funcname": "DockNodeGetDepth", - "location": "imgui_internal:2806", + "location": "imgui_internal:2854", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetDepth", "ret": "int", @@ -16534,7 +16757,7 @@ "cimguiname": "igDockNodeGetRootNode", "defaults": {}, "funcname": "DockNodeGetRootNode", - "location": "imgui_internal:2805", + "location": "imgui_internal:2852", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetRootNode", "ret": "ImGuiDockNode*", @@ -16556,7 +16779,7 @@ "cimguiname": "igDockNodeGetWindowMenuButtonId", "defaults": {}, "funcname": "DockNodeGetWindowMenuButtonId", - "location": "imgui_internal:2807", + "location": "imgui_internal:2855", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetWindowMenuButtonId", "ret": "ImGuiID", @@ -16564,6 +16787,32 @@ "stname": "" } ], + "igDockNodeIsInHierarchyOf": [ + { + "args": "(ImGuiDockNode* node,ImGuiDockNode* parent)", + "argsT": [ + { + "name": "node", + "type": "ImGuiDockNode*" + }, + { + "name": "parent", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "(ImGuiDockNode* node,ImGuiDockNode* parent)", + "call_args": "(node,parent)", + "cimguiname": "igDockNodeIsInHierarchyOf", + "defaults": {}, + "funcname": "DockNodeIsInHierarchyOf", + "location": "imgui_internal:2853", + "namespace": "ImGui", + "ov_cimguiname": "igDockNodeIsInHierarchyOf", + "ret": "bool", + "signature": "(ImGuiDockNode*,ImGuiDockNode*)", + "stname": "" + } + ], "igDockSpace": [ { "args": "(ImGuiID id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", @@ -16678,7 +16927,7 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", - "location": "imgui_internal:2971", + "location": "imgui_internal:3020", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -17405,7 +17654,7 @@ "cimguiname": "igEndChildFrame", "defaults": {}, "funcname": "EndChildFrame", - "location": "imgui:907", + "location": "imgui:906", "namespace": "ImGui", "ov_cimguiname": "igEndChildFrame", "ret": "void", @@ -17422,7 +17671,7 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", - "location": "imgui_internal:2847", + "location": "imgui_internal:2895", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -17456,7 +17705,7 @@ "cimguiname": "igEndComboPreview", "defaults": {}, "funcname": "EndComboPreview", - "location": "imgui_internal:2751", + "location": "imgui_internal:2797", "namespace": "ImGui", "ov_cimguiname": "igEndComboPreview", "ret": "void", @@ -17722,7 +17971,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndFrameRecover", - "location": "imgui_internal:3021", + "location": "imgui_internal:3070", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndFrameRecover", "ret": "void", @@ -17750,7 +17999,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndWindowRecover", - "location": "imgui_internal:3022", + "location": "imgui_internal:3071", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndWindowRecover", "ret": "void", @@ -17776,7 +18025,7 @@ "cimguiname": "igFindBestWindowPosForPopup", "defaults": {}, "funcname": "FindBestWindowPosForPopup", - "location": "imgui_internal:2740", + "location": "imgui_internal:2786", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -17823,7 +18072,7 @@ "cimguiname": "igFindBestWindowPosForPopupEx", "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", - "location": "imgui_internal:2741", + "location": "imgui_internal:2787", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -17832,6 +18081,28 @@ "stname": "" } ], + "igFindBottomMostVisibleWindowWithinBeginStack": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", + "defaults": {}, + "funcname": "FindBottomMostVisibleWindowWithinBeginStack", + "location": "imgui_internal:2669", + "namespace": "ImGui", + "ov_cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", + "ret": "ImGuiWindow*", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], "igFindOrCreateColumns": [ { "args": "(ImGuiWindow* window,ImGuiID id)", @@ -17850,7 +18121,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", - "location": "imgui_internal:2852", + "location": "imgui_internal:2900", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiOldColumns*", @@ -17872,7 +18143,7 @@ "cimguiname": "igFindOrCreateWindowSettings", "defaults": {}, "funcname": "FindOrCreateWindowSettings", - "location": "imgui_internal:2659", + "location": "imgui_internal:2705", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateWindowSettings", "ret": "ImGuiWindowSettings*", @@ -17900,7 +18171,7 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "imgui_internal:2934", + "location": "imgui_internal:2982", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -17922,7 +18193,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", - "location": "imgui_internal:2660", + "location": "imgui_internal:2706", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -17988,7 +18259,7 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", - "location": "imgui_internal:2606", + "location": "imgui_internal:2646", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -18010,7 +18281,7 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", - "location": "imgui_internal:2607", + "location": "imgui_internal:2647", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -18018,6 +18289,28 @@ "stname": "" } ], + "igFindWindowDisplayIndex": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igFindWindowDisplayIndex", + "defaults": {}, + "funcname": "FindWindowDisplayIndex", + "location": "imgui_internal:2668", + "namespace": "ImGui", + "ov_cimguiname": "igFindWindowDisplayIndex", + "ret": "int", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], "igFindWindowSettings": [ { "args": "(ImGuiID id)", @@ -18032,7 +18325,7 @@ "cimguiname": "igFindWindowSettings", "defaults": {}, "funcname": "FindWindowSettings", - "location": "imgui_internal:2658", + "location": "imgui_internal:2704", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettings", "ret": "ImGuiWindowSettings*", @@ -18058,7 +18351,7 @@ "cimguiname": "igFocusTopMostWindowUnderOne", "defaults": {}, "funcname": "FocusTopMostWindowUnderOne", - "location": "imgui_internal:2620", + "location": "imgui_internal:2663", "namespace": "ImGui", "ov_cimguiname": "igFocusTopMostWindowUnderOne", "ret": "void", @@ -18080,7 +18373,7 @@ "cimguiname": "igFocusWindow", "defaults": {}, "funcname": "FocusWindow", - "location": "imgui_internal:2619", + "location": "imgui_internal:2662", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", @@ -18102,7 +18395,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", - "location": "imgui_internal:3018", + "location": "imgui_internal:3067", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -18119,7 +18412,7 @@ "cimguiname": "igGcCompactTransientMiscBuffers", "defaults": {}, "funcname": "GcCompactTransientMiscBuffers", - "location": "imgui_internal:3016", + "location": "imgui_internal:3065", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientMiscBuffers", "ret": "void", @@ -18141,7 +18434,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", - "location": "imgui_internal:3017", + "location": "imgui_internal:3066", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -18158,7 +18451,7 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", - "location": "imgui_internal:2681", + "location": "imgui_internal:2727", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -18353,7 +18646,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", - "location": "imgui_internal:2854", + "location": "imgui_internal:2902", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -18403,7 +18696,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", - "location": "imgui_internal:2853", + "location": "imgui_internal:2901", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -18470,7 +18763,7 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", - "location": "imgui_internal:2851", + "location": "imgui_internal:2899", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -18538,7 +18831,7 @@ "cimguiname": "igGetContentRegionMaxAbs", "defaults": {}, "funcname": "GetContentRegionMaxAbs", - "location": "imgui_internal:2705", + "location": "imgui_internal:2750", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMaxAbs", @@ -18573,7 +18866,7 @@ "cimguiname": "igGetCurrentTable", "defaults": {}, "funcname": "GetCurrentTable", - "location": "imgui_internal:2866", + "location": "imgui_internal:2914", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTable", "ret": "ImGuiTable*", @@ -18590,7 +18883,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", - "location": "imgui_internal:2605", + "location": "imgui_internal:2645", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -18607,7 +18900,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", - "location": "imgui_internal:2604", + "location": "imgui_internal:2644", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -18727,7 +19020,7 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", - "location": "imgui_internal:2627", + "location": "imgui_internal:2673", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -18795,7 +19088,7 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", - "location": "imgui_internal:2682", + "location": "imgui_internal:2728", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -18812,7 +19105,7 @@ "cimguiname": "igGetFocusScope", "defaults": {}, "funcname": "GetFocusScope", - "location": "imgui_internal:2775", + "location": "imgui_internal:2821", "namespace": "ImGui", "ov_cimguiname": "igGetFocusScope", "ret": "ImGuiID", @@ -18829,7 +19122,7 @@ "cimguiname": "igGetFocusedFocusScope", "defaults": {}, "funcname": "GetFocusedFocusScope", - "location": "imgui_internal:2774", + "location": "imgui_internal:2820", "namespace": "ImGui", "ov_cimguiname": "igGetFocusedFocusScope", "ret": "ImGuiID", @@ -18943,7 +19236,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:2628", + "location": "imgui_internal:2674", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_WindowPtr", "ret": "ImDrawList*", @@ -19011,7 +19304,7 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", - "location": "imgui_internal:2686", + "location": "imgui_internal:2732", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -19107,7 +19400,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:2691", + "location": "imgui_internal:2737", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed", "ret": "ImGuiID", @@ -19147,7 +19440,7 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", - "location": "imgui_internal:3001", + "location": "imgui_internal:3050", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -19164,7 +19457,7 @@ "cimguiname": "igGetItemFlags", "defaults": {}, "funcname": "GetItemFlags", - "location": "imgui_internal:2680", + "location": "imgui_internal:2726", "namespace": "ImGui", "ov_cimguiname": "igGetItemFlags", "ret": "ImGuiItemFlags", @@ -19181,7 +19474,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui_internal:2678", + "location": "imgui_internal:2724", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -19267,7 +19560,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", - "location": "imgui_internal:2679", + "location": "imgui_internal:2725", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -19289,7 +19582,7 @@ "cimguiname": "igGetKeyIndex", "defaults": {}, "funcname": "GetKeyIndex", - "location": "imgui:921", + "location": "imgui:920", "namespace": "ImGui", "ov_cimguiname": "igGetKeyIndex", "ret": "int", @@ -19319,7 +19612,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:925", + "location": "imgui:924", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -19353,7 +19646,7 @@ "cimguiname": "igGetMergedKeyModFlags", "defaults": {}, "funcname": "GetMergedKeyModFlags", - "location": "imgui_internal:2788", + "location": "imgui_internal:2834", "namespace": "ImGui", "ov_cimguiname": "igGetMergedKeyModFlags", "ret": "ImGuiKeyModFlags", @@ -19361,6 +19654,28 @@ "stname": "" } ], + "igGetMouseClickedCount": [ + { + "args": "(ImGuiMouseButton button)", + "argsT": [ + { + "name": "button", + "type": "ImGuiMouseButton" + } + ], + "argsoriginal": "(ImGuiMouseButton button)", + "call_args": "(button)", + "cimguiname": "igGetMouseClickedCount", + "defaults": {}, + "funcname": "GetMouseClickedCount", + "location": "imgui:935", + "namespace": "ImGui", + "ov_cimguiname": "igGetMouseClickedCount", + "ret": "int", + "signature": "(ImGuiMouseButton)", + "stname": "" + } + ], "igGetMouseCursor": [ { "args": "()", @@ -19476,7 +19791,7 @@ "cimguiname": "igGetNavInputAmount", "defaults": {}, "funcname": "GetNavInputAmount", - "location": "imgui_internal:2763", + "location": "imgui_internal:2809", "namespace": "ImGui", "ov_cimguiname": "igGetNavInputAmount", "ret": "float", @@ -19517,7 +19832,7 @@ "slow_factor": "0.0f" }, "funcname": "GetNavInputAmount2d", - "location": "imgui_internal:2764", + "location": "imgui_internal:2810", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetNavInputAmount2d", @@ -19562,7 +19877,7 @@ "cimguiname": "igGetPopupAllowedExtentRect", "defaults": {}, "funcname": "GetPopupAllowedExtentRect", - "location": "imgui_internal:2738", + "location": "imgui_internal:2783", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetPopupAllowedExtentRect", @@ -19770,6 +20085,23 @@ "stname": "" } ], + "igGetTopMostAndVisiblePopupModal": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetTopMostAndVisiblePopupModal", + "defaults": {}, + "funcname": "GetTopMostAndVisiblePopupModal", + "location": "imgui_internal:2785", + "namespace": "ImGui", + "ov_cimguiname": "igGetTopMostAndVisiblePopupModal", + "ret": "ImGuiWindow*", + "signature": "()", + "stname": "" + } + ], "igGetTopMostPopupModal": [ { "args": "()", @@ -19779,7 +20111,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", - "location": "imgui_internal:2739", + "location": "imgui_internal:2784", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -19835,7 +20167,7 @@ "cimguiname": "igGetViewportPlatformMonitor", "defaults": {}, "funcname": "GetViewportPlatformMonitor", - "location": "imgui_internal:2651", + "location": "imgui_internal:2697", "namespace": "ImGui", "ov_cimguiname": "igGetViewportPlatformMonitor", "ret": "const ImGuiPlatformMonitor*", @@ -19857,7 +20189,7 @@ "cimguiname": "igGetWindowAlwaysWantOwnTabBar", "defaults": {}, "funcname": "GetWindowAlwaysWantOwnTabBar", - "location": "imgui_internal:2809", + "location": "imgui_internal:2857", "namespace": "ImGui", "ov_cimguiname": "igGetWindowAlwaysWantOwnTabBar", "ret": "bool", @@ -19937,7 +20269,7 @@ "cimguiname": "igGetWindowDockNode", "defaults": {}, "funcname": "GetWindowDockNode", - "location": "imgui_internal:2808", + "location": "imgui_internal:2856", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockNode", "ret": "ImGuiDockNode*", @@ -20037,7 +20369,7 @@ "cimguiname": "igGetWindowResizeBorderID", "defaults": {}, "funcname": "GetWindowResizeBorderID", - "location": "imgui_internal:2964", + "location": "imgui_internal:3013", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeBorderID", "ret": "ImGuiID", @@ -20063,7 +20395,7 @@ "cimguiname": "igGetWindowResizeCornerID", "defaults": {}, "funcname": "GetWindowResizeCornerID", - "location": "imgui_internal:2963", + "location": "imgui_internal:3012", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeCornerID", "ret": "ImGuiID", @@ -20089,7 +20421,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", - "location": "imgui_internal:2962", + "location": "imgui_internal:3011", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -20119,7 +20451,7 @@ "cimguiname": "igGetWindowScrollbarRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", - "location": "imgui_internal:2961", + "location": "imgui_internal:3010", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -20199,7 +20531,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:413", + "location": "imgui_internal:423", "ov_cimguiname": "igImAbs_Int", "ret": "int", "signature": "(int)", @@ -20218,7 +20550,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:414", + "location": "imgui_internal:424", "ov_cimguiname": "igImAbs_Float", "ret": "float", "signature": "(float)", @@ -20237,7 +20569,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:415", + "location": "imgui_internal:425", "ov_cimguiname": "igImAbs_double", "ret": "double", "signature": "(double)", @@ -20262,7 +20594,7 @@ "cimguiname": "igImAlphaBlendColors", "defaults": {}, "funcname": "ImAlphaBlendColors", - "location": "imgui_internal:312", + "location": "imgui_internal:322", "ov_cimguiname": "igImAlphaBlendColors", "ret": "ImU32", "signature": "(ImU32,ImU32)", @@ -20303,7 +20635,7 @@ "cimguiname": "igImBezierCubicCalc", "defaults": {}, "funcname": "ImBezierCubicCalc", - "location": "imgui_internal:456", + "location": "imgui_internal:467", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicCalc", "ret": "void", @@ -20349,7 +20681,7 @@ "cimguiname": "igImBezierCubicClosestPoint", "defaults": {}, "funcname": "ImBezierCubicClosestPoint", - "location": "imgui_internal:457", + "location": "imgui_internal:468", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPoint", "ret": "void", @@ -20395,7 +20727,7 @@ "cimguiname": "igImBezierCubicClosestPointCasteljau", "defaults": {}, "funcname": "ImBezierCubicClosestPointCasteljau", - "location": "imgui_internal:458", + "location": "imgui_internal:469", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPointCasteljau", "ret": "void", @@ -20433,7 +20765,7 @@ "cimguiname": "igImBezierQuadraticCalc", "defaults": {}, "funcname": "ImBezierQuadraticCalc", - "location": "imgui_internal:459", + "location": "imgui_internal:470", "nonUDT": 1, "ov_cimguiname": "igImBezierQuadraticCalc", "ret": "void", @@ -20459,7 +20791,7 @@ "cimguiname": "igImBitArrayClearBit", "defaults": {}, "funcname": "ImBitArrayClearBit", - "location": "imgui_internal:527", + "location": "imgui_internal:538", "ov_cimguiname": "igImBitArrayClearBit", "ret": "void", "signature": "(ImU32*,int)", @@ -20484,7 +20816,7 @@ "cimguiname": "igImBitArraySetBit", "defaults": {}, "funcname": "ImBitArraySetBit", - "location": "imgui_internal:528", + "location": "imgui_internal:539", "ov_cimguiname": "igImBitArraySetBit", "ret": "void", "signature": "(ImU32*,int)", @@ -20513,7 +20845,7 @@ "cimguiname": "igImBitArraySetBitRange", "defaults": {}, "funcname": "ImBitArraySetBitRange", - "location": "imgui_internal:529", + "location": "imgui_internal:540", "ov_cimguiname": "igImBitArraySetBitRange", "ret": "void", "signature": "(ImU32*,int,int)", @@ -20538,7 +20870,7 @@ "cimguiname": "igImBitArrayTestBit", "defaults": {}, "funcname": "ImBitArrayTestBit", - "location": "imgui_internal:526", + "location": "imgui_internal:537", "ov_cimguiname": "igImBitArrayTestBit", "ret": "bool", "signature": "(const ImU32*,int)", @@ -20559,7 +20891,7 @@ "cimguiname": "igImCharIsBlankA", "defaults": {}, "funcname": "ImCharIsBlankA", - "location": "imgui_internal:338", + "location": "imgui_internal:348", "ov_cimguiname": "igImCharIsBlankA", "ret": "bool", "signature": "(char)", @@ -20580,7 +20912,7 @@ "cimguiname": "igImCharIsBlankW", "defaults": {}, "funcname": "ImCharIsBlankW", - "location": "imgui_internal:339", + "location": "imgui_internal:349", "ov_cimguiname": "igImCharIsBlankW", "ret": "bool", "signature": "(unsigned int)", @@ -20613,7 +20945,7 @@ "cimguiname": "igImClamp", "defaults": {}, "funcname": "ImClamp", - "location": "imgui_internal:437", + "location": "imgui_internal:447", "nonUDT": 1, "ov_cimguiname": "igImClamp", "ret": "void", @@ -20639,7 +20971,7 @@ "cimguiname": "igImDot", "defaults": {}, "funcname": "ImDot", - "location": "imgui_internal:449", + "location": "imgui_internal:459", "ov_cimguiname": "igImDot", "ret": "float", "signature": "(const ImVec2,const ImVec2)", @@ -20660,7 +20992,7 @@ "cimguiname": "igImFileClose", "defaults": {}, "funcname": "ImFileClose", - "location": "imgui_internal:386", + "location": "imgui_internal:396", "ov_cimguiname": "igImFileClose", "ret": "bool", "signature": "(ImFileHandle)", @@ -20681,7 +21013,7 @@ "cimguiname": "igImFileGetSize", "defaults": {}, "funcname": "ImFileGetSize", - "location": "imgui_internal:387", + "location": "imgui_internal:397", "ov_cimguiname": "igImFileGetSize", "ret": "ImU64", "signature": "(ImFileHandle)", @@ -20717,7 +21049,7 @@ "padding_bytes": "0" }, "funcname": "ImFileLoadToMemory", - "location": "imgui_internal:393", + "location": "imgui_internal:403", "ov_cimguiname": "igImFileLoadToMemory", "ret": "void*", "signature": "(const char*,const char*,size_t*,int)", @@ -20742,7 +21074,7 @@ "cimguiname": "igImFileOpen", "defaults": {}, "funcname": "ImFileOpen", - "location": "imgui_internal:385", + "location": "imgui_internal:395", "ov_cimguiname": "igImFileOpen", "ret": "ImFileHandle", "signature": "(const char*,const char*)", @@ -20775,7 +21107,7 @@ "cimguiname": "igImFileRead", "defaults": {}, "funcname": "ImFileRead", - "location": "imgui_internal:388", + "location": "imgui_internal:398", "ov_cimguiname": "igImFileRead", "ret": "ImU64", "signature": "(void*,ImU64,ImU64,ImFileHandle)", @@ -20808,7 +21140,7 @@ "cimguiname": "igImFileWrite", "defaults": {}, "funcname": "ImFileWrite", - "location": "imgui_internal:389", + "location": "imgui_internal:399", "ov_cimguiname": "igImFileWrite", "ret": "ImU64", "signature": "(const void*,ImU64,ImU64,ImFileHandle)", @@ -20829,7 +21161,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:445", + "location": "imgui_internal:455", "ov_cimguiname": "igImFloor_Float", "ret": "float", "signature": "(float)", @@ -20852,7 +21184,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:447", + "location": "imgui_internal:457", "nonUDT": 1, "ov_cimguiname": "igImFloor_Vec2", "ret": "void", @@ -20874,7 +21206,7 @@ "cimguiname": "igImFloorSigned", "defaults": {}, "funcname": "ImFloorSigned", - "location": "imgui_internal:446", + "location": "imgui_internal:456", "ov_cimguiname": "igImFloorSigned", "ret": "float", "signature": "(float)", @@ -20895,7 +21227,7 @@ "cimguiname": "igImFontAtlasBuildFinish", "defaults": {}, "funcname": "ImFontAtlasBuildFinish", - "location": "imgui_internal:3061", + "location": "imgui_internal:3111", "ov_cimguiname": "igImFontAtlasBuildFinish", "ret": "void", "signature": "(ImFontAtlas*)", @@ -20916,7 +21248,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", - "location": "imgui_internal:3058", + "location": "imgui_internal:3108", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -20941,7 +21273,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", - "location": "imgui_internal:3064", + "location": "imgui_internal:3114", "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "ret": "void", "signature": "(unsigned char[256],float)", @@ -20986,7 +21318,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", - "location": "imgui_internal:3065", + "location": "imgui_internal:3115", "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "ret": "void", "signature": "(const unsigned char[256],unsigned char*,int,int,int,int,int)", @@ -21011,7 +21343,7 @@ "cimguiname": "igImFontAtlasBuildPackCustomRects", "defaults": {}, "funcname": "ImFontAtlasBuildPackCustomRects", - "location": "imgui_internal:3060", + "location": "imgui_internal:3110", "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", "ret": "void", "signature": "(ImFontAtlas*,void*)", @@ -21060,7 +21392,7 @@ "cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender32bppRectFromString", - "location": "imgui_internal:3063", + "location": "imgui_internal:3113", "ov_cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)", @@ -21109,7 +21441,7 @@ "cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender8bppRectFromString", - "location": "imgui_internal:3062", + "location": "imgui_internal:3112", "ov_cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)", @@ -21146,7 +21478,7 @@ "cimguiname": "igImFontAtlasBuildSetupFont", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFont", - "location": "imgui_internal:3059", + "location": "imgui_internal:3109", "ov_cimguiname": "igImFontAtlasBuildSetupFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)", @@ -21162,7 +21494,7 @@ "cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "defaults": {}, "funcname": "ImFontAtlasGetBuilderForStbTruetype", - "location": "imgui_internal:3057", + "location": "imgui_internal:3107", "ov_cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "ret": "const ImFontBuilderIO*", "signature": "()", @@ -21196,7 +21528,7 @@ "defaults": {}, "funcname": "ImFormatString", "isvararg": "...)", - "location": "imgui_internal:332", + "location": "imgui_internal:342", "ov_cimguiname": "igImFormatString", "ret": "int", "signature": "(char*,size_t,const char*,...)", @@ -21229,7 +21561,7 @@ "cimguiname": "igImFormatStringV", "defaults": {}, "funcname": "ImFormatStringV", - "location": "imgui_internal:333", + "location": "imgui_internal:343", "ov_cimguiname": "igImFormatStringV", "ret": "int", "signature": "(char*,size_t,const char*,va_list)", @@ -21254,7 +21586,7 @@ "cimguiname": "igImGetDirQuadrantFromDelta", "defaults": {}, "funcname": "ImGetDirQuadrantFromDelta", - "location": "imgui_internal:465", + "location": "imgui_internal:476", "ov_cimguiname": "igImGetDirQuadrantFromDelta", "ret": "ImGuiDir", "signature": "(float,float)", @@ -21285,7 +21617,7 @@ "seed": "0" }, "funcname": "ImHashData", - "location": "imgui_internal:302", + "location": "imgui_internal:310", "ov_cimguiname": "igImHashData", "ret": "ImGuiID", "signature": "(const void*,size_t,ImU32)", @@ -21317,7 +21649,7 @@ "seed": "0" }, "funcname": "ImHashStr", - "location": "imgui_internal:303", + "location": "imgui_internal:311", "ov_cimguiname": "igImHashStr", "ret": "ImGuiID", "signature": "(const char*,size_t,ImU32)", @@ -21342,13 +21674,34 @@ "cimguiname": "igImInvLength", "defaults": {}, "funcname": "ImInvLength", - "location": "imgui_internal:444", + "location": "imgui_internal:454", "ov_cimguiname": "igImInvLength", "ret": "float", "signature": "(const ImVec2,float)", "stname": "" } ], + "igImIsFloatAboveGuaranteedIntegerPrecision": [ + { + "args": "(float f)", + "argsT": [ + { + "name": "f", + "type": "float" + } + ], + "argsoriginal": "(float f)", + "call_args": "(f)", + "cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", + "defaults": {}, + "funcname": "ImIsFloatAboveGuaranteedIntegerPrecision", + "location": "imgui_internal:463", + "ov_cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", + "ret": "bool", + "signature": "(float)", + "stname": "" + } + ], "igImIsPowerOfTwo": [ { "args": "(int v)", @@ -21363,7 +21716,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:315", + "location": "imgui_internal:325", "ov_cimguiname": "igImIsPowerOfTwo_Int", "ret": "bool", "signature": "(int)", @@ -21382,7 +21735,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:316", + "location": "imgui_internal:326", "ov_cimguiname": "igImIsPowerOfTwo_U64", "ret": "bool", "signature": "(ImU64)", @@ -21403,7 +21756,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:442", + "location": "imgui_internal:452", "ov_cimguiname": "igImLengthSqr_Vec2", "ret": "float", "signature": "(const ImVec2)", @@ -21422,7 +21775,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:443", + "location": "imgui_internal:453", "ov_cimguiname": "igImLengthSqr_Vec4", "ret": "float", "signature": "(const ImVec4)", @@ -21455,7 +21808,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:438", + "location": "imgui_internal:448", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Float", "ret": "void", @@ -21487,7 +21840,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:439", + "location": "imgui_internal:449", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Vec2", "ret": "void", @@ -21519,7 +21872,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:440", + "location": "imgui_internal:450", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec4", "ret": "void", @@ -21553,7 +21906,7 @@ "cimguiname": "igImLineClosestPoint", "defaults": {}, "funcname": "ImLineClosestPoint", - "location": "imgui_internal:460", + "location": "imgui_internal:471", "nonUDT": 1, "ov_cimguiname": "igImLineClosestPoint", "ret": "void", @@ -21583,7 +21936,7 @@ "cimguiname": "igImLinearSweep", "defaults": {}, "funcname": "ImLinearSweep", - "location": "imgui_internal:451", + "location": "imgui_internal:461", "ov_cimguiname": "igImLinearSweep", "ret": "float", "signature": "(float,float,float)", @@ -21604,7 +21957,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:411", + "location": "imgui_internal:421", "ov_cimguiname": "igImLog_Float", "ret": "float", "signature": "(float)", @@ -21623,7 +21976,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:412", + "location": "imgui_internal:422", "ov_cimguiname": "igImLog_double", "ret": "double", "signature": "(double)", @@ -21652,7 +22005,7 @@ "cimguiname": "igImMax", "defaults": {}, "funcname": "ImMax", - "location": "imgui_internal:436", + "location": "imgui_internal:446", "nonUDT": 1, "ov_cimguiname": "igImMax", "ret": "void", @@ -21682,7 +22035,7 @@ "cimguiname": "igImMin", "defaults": {}, "funcname": "ImMin", - "location": "imgui_internal:435", + "location": "imgui_internal:445", "nonUDT": 1, "ov_cimguiname": "igImMin", "ret": "void", @@ -21708,7 +22061,7 @@ "cimguiname": "igImModPositive", "defaults": {}, "funcname": "ImModPositive", - "location": "imgui_internal:448", + "location": "imgui_internal:458", "ov_cimguiname": "igImModPositive", "ret": "int", "signature": "(int,int)", @@ -21737,7 +22090,7 @@ "cimguiname": "igImMul", "defaults": {}, "funcname": "ImMul", - "location": "imgui_internal:452", + "location": "imgui_internal:462", "nonUDT": 1, "ov_cimguiname": "igImMul", "ret": "void", @@ -21759,7 +22112,7 @@ "cimguiname": "igImParseFormatFindEnd", "defaults": {}, "funcname": "ImParseFormatFindEnd", - "location": "imgui_internal:335", + "location": "imgui_internal:345", "ov_cimguiname": "igImParseFormatFindEnd", "ret": "const char*", "signature": "(const char*)", @@ -21780,7 +22133,7 @@ "cimguiname": "igImParseFormatFindStart", "defaults": {}, "funcname": "ImParseFormatFindStart", - "location": "imgui_internal:334", + "location": "imgui_internal:344", "ov_cimguiname": "igImParseFormatFindStart", "ret": "const char*", "signature": "(const char*)", @@ -21805,7 +22158,7 @@ "cimguiname": "igImParseFormatPrecision", "defaults": {}, "funcname": "ImParseFormatPrecision", - "location": "imgui_internal:337", + "location": "imgui_internal:347", "ov_cimguiname": "igImParseFormatPrecision", "ret": "int", "signature": "(const char*,int)", @@ -21834,7 +22187,7 @@ "cimguiname": "igImParseFormatTrimDecorations", "defaults": {}, "funcname": "ImParseFormatTrimDecorations", - "location": "imgui_internal:336", + "location": "imgui_internal:346", "ov_cimguiname": "igImParseFormatTrimDecorations", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -21859,7 +22212,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:409", + "location": "imgui_internal:419", "ov_cimguiname": "igImPow_Float", "ret": "float", "signature": "(float,float)", @@ -21882,13 +22235,48 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:410", + "location": "imgui_internal:420", "ov_cimguiname": "igImPow_double", "ret": "double", "signature": "(double,double)", "stname": "" } ], + "igImQsort": [ + { + "args": "(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*))", + "argsT": [ + { + "name": "base", + "type": "void*" + }, + { + "name": "count", + "type": "size_t" + }, + { + "name": "size_of_element", + "type": "size_t" + }, + { + "name": "compare_func", + "ret": "int", + "signature": "(void const*,void const*)", + "type": "int(*)(void const*,void const*)" + } + ], + "argsoriginal": "(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*))", + "call_args": "(base,count,size_of_element,compare_func)", + "cimguiname": "igImQsort", + "defaults": {}, + "funcname": "ImQsort", + "location": "imgui_internal:318", + "ov_cimguiname": "igImQsort", + "ret": "void", + "signature": "(void*,size_t,size_t,int(*)(void const*,void const*))", + "stname": "" + } + ], "igImRotate": [ { "args": "(ImVec2 *pOut,const ImVec2 v,float cos_a,float sin_a)", @@ -21915,7 +22303,7 @@ "cimguiname": "igImRotate", "defaults": {}, "funcname": "ImRotate", - "location": "imgui_internal:450", + "location": "imgui_internal:460", "nonUDT": 1, "ov_cimguiname": "igImRotate", "ret": "void", @@ -21937,7 +22325,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:419", + "location": "imgui_internal:429", "ov_cimguiname": "igImRsqrt_Float", "ret": "float", "signature": "(float)", @@ -21956,7 +22344,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:423", + "location": "imgui_internal:433", "ov_cimguiname": "igImRsqrt_double", "ret": "double", "signature": "(double)", @@ -21977,7 +22365,7 @@ "cimguiname": "igImSaturate", "defaults": {}, "funcname": "ImSaturate", - "location": "imgui_internal:441", + "location": "imgui_internal:451", "ov_cimguiname": "igImSaturate", "ret": "float", "signature": "(float)", @@ -21998,7 +22386,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:416", + "location": "imgui_internal:426", "ov_cimguiname": "igImSign_Float", "ret": "float", "signature": "(float)", @@ -22017,7 +22405,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:417", + "location": "imgui_internal:427", "ov_cimguiname": "igImSign_double", "ret": "double", "signature": "(double)", @@ -22038,7 +22426,7 @@ "cimguiname": "igImStrSkipBlank", "defaults": {}, "funcname": "ImStrSkipBlank", - "location": "imgui_internal:331", + "location": "imgui_internal:341", "ov_cimguiname": "igImStrSkipBlank", "ret": "const char*", "signature": "(const char*)", @@ -22059,7 +22447,7 @@ "cimguiname": "igImStrTrimBlanks", "defaults": {}, "funcname": "ImStrTrimBlanks", - "location": "imgui_internal:330", + "location": "imgui_internal:340", "ov_cimguiname": "igImStrTrimBlanks", "ret": "void", "signature": "(char*)", @@ -22084,7 +22472,7 @@ "cimguiname": "igImStrbolW", "defaults": {}, "funcname": "ImStrbolW", - "location": "imgui_internal:328", + "location": "imgui_internal:338", "ov_cimguiname": "igImStrbolW", "ret": "const ImWchar*", "signature": "(const ImWchar*,const ImWchar*)", @@ -22113,7 +22501,7 @@ "cimguiname": "igImStrchrRange", "defaults": {}, "funcname": "ImStrchrRange", - "location": "imgui_internal:325", + "location": "imgui_internal:335", "ov_cimguiname": "igImStrchrRange", "ret": "const char*", "signature": "(const char*,const char*,char)", @@ -22134,7 +22522,7 @@ "cimguiname": "igImStrdup", "defaults": {}, "funcname": "ImStrdup", - "location": "imgui_internal:323", + "location": "imgui_internal:333", "ov_cimguiname": "igImStrdup", "ret": "char*", "signature": "(const char*)", @@ -22163,7 +22551,7 @@ "cimguiname": "igImStrdupcpy", "defaults": {}, "funcname": "ImStrdupcpy", - "location": "imgui_internal:324", + "location": "imgui_internal:334", "ov_cimguiname": "igImStrdupcpy", "ret": "char*", "signature": "(char*,size_t*,const char*)", @@ -22188,7 +22576,7 @@ "cimguiname": "igImStreolRange", "defaults": {}, "funcname": "ImStreolRange", - "location": "imgui_internal:327", + "location": "imgui_internal:337", "ov_cimguiname": "igImStreolRange", "ret": "const char*", "signature": "(const char*,const char*)", @@ -22213,7 +22601,7 @@ "cimguiname": "igImStricmp", "defaults": {}, "funcname": "ImStricmp", - "location": "imgui_internal:320", + "location": "imgui_internal:330", "ov_cimguiname": "igImStricmp", "ret": "int", "signature": "(const char*,const char*)", @@ -22246,7 +22634,7 @@ "cimguiname": "igImStristr", "defaults": {}, "funcname": "ImStristr", - "location": "imgui_internal:329", + "location": "imgui_internal:339", "ov_cimguiname": "igImStristr", "ret": "const char*", "signature": "(const char*,const char*,const char*,const char*)", @@ -22267,7 +22655,7 @@ "cimguiname": "igImStrlenW", "defaults": {}, "funcname": "ImStrlenW", - "location": "imgui_internal:326", + "location": "imgui_internal:336", "ov_cimguiname": "igImStrlenW", "ret": "int", "signature": "(const ImWchar*)", @@ -22296,7 +22684,7 @@ "cimguiname": "igImStrncpy", "defaults": {}, "funcname": "ImStrncpy", - "location": "imgui_internal:322", + "location": "imgui_internal:332", "ov_cimguiname": "igImStrncpy", "ret": "void", "signature": "(char*,const char*,size_t)", @@ -22325,7 +22713,7 @@ "cimguiname": "igImStrnicmp", "defaults": {}, "funcname": "ImStrnicmp", - "location": "imgui_internal:321", + "location": "imgui_internal:331", "ov_cimguiname": "igImStrnicmp", "ret": "int", "signature": "(const char*,const char*,size_t)", @@ -22354,7 +22742,7 @@ "cimguiname": "igImTextCharFromUtf8", "defaults": {}, "funcname": "ImTextCharFromUtf8", - "location": "imgui_internal:344", + "location": "imgui_internal:354", "ov_cimguiname": "igImTextCharFromUtf8", "ret": "int", "signature": "(unsigned int*,const char*,const char*)", @@ -22379,7 +22767,7 @@ "cimguiname": "igImTextCharToUtf8", "defaults": {}, "funcname": "ImTextCharToUtf8", - "location": "imgui_internal:342", + "location": "imgui_internal:352", "ov_cimguiname": "igImTextCharToUtf8", "ret": "const char*", "signature": "(char[5],unsigned int)", @@ -22404,7 +22792,7 @@ "cimguiname": "igImTextCountCharsFromUtf8", "defaults": {}, "funcname": "ImTextCountCharsFromUtf8", - "location": "imgui_internal:346", + "location": "imgui_internal:356", "ov_cimguiname": "igImTextCountCharsFromUtf8", "ret": "int", "signature": "(const char*,const char*)", @@ -22429,7 +22817,7 @@ "cimguiname": "igImTextCountUtf8BytesFromChar", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromChar", - "location": "imgui_internal:347", + "location": "imgui_internal:357", "ov_cimguiname": "igImTextCountUtf8BytesFromChar", "ret": "int", "signature": "(const char*,const char*)", @@ -22454,7 +22842,7 @@ "cimguiname": "igImTextCountUtf8BytesFromStr", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromStr", - "location": "imgui_internal:348", + "location": "imgui_internal:358", "ov_cimguiname": "igImTextCountUtf8BytesFromStr", "ret": "int", "signature": "(const ImWchar*,const ImWchar*)", @@ -22493,7 +22881,7 @@ "in_remaining": "NULL" }, "funcname": "ImTextStrFromUtf8", - "location": "imgui_internal:345", + "location": "imgui_internal:355", "ov_cimguiname": "igImTextStrFromUtf8", "ret": "int", "signature": "(ImWchar*,int,const char*,const char*,const char**)", @@ -22526,7 +22914,7 @@ "cimguiname": "igImTextStrToUtf8", "defaults": {}, "funcname": "ImTextStrToUtf8", - "location": "imgui_internal:343", + "location": "imgui_internal:353", "ov_cimguiname": "igImTextStrToUtf8", "ret": "int", "signature": "(char*,int,const ImWchar*,const ImWchar*)", @@ -22555,7 +22943,7 @@ "cimguiname": "igImTriangleArea", "defaults": {}, "funcname": "ImTriangleArea", - "location": "imgui_internal:464", + "location": "imgui_internal:475", "ov_cimguiname": "igImTriangleArea", "ret": "float", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -22603,7 +22991,7 @@ "cimguiname": "igImTriangleBarycentricCoords", "defaults": {}, "funcname": "ImTriangleBarycentricCoords", - "location": "imgui_internal:463", + "location": "imgui_internal:474", "ov_cimguiname": "igImTriangleBarycentricCoords", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -22640,7 +23028,7 @@ "cimguiname": "igImTriangleClosestPoint", "defaults": {}, "funcname": "ImTriangleClosestPoint", - "location": "imgui_internal:462", + "location": "imgui_internal:473", "nonUDT": 1, "ov_cimguiname": "igImTriangleClosestPoint", "ret": "void", @@ -22674,7 +23062,7 @@ "cimguiname": "igImTriangleContainsPoint", "defaults": {}, "funcname": "ImTriangleContainsPoint", - "location": "imgui_internal:461", + "location": "imgui_internal:472", "ov_cimguiname": "igImTriangleContainsPoint", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", @@ -22695,7 +23083,7 @@ "cimguiname": "igImUpperPowerOfTwo", "defaults": {}, "funcname": "ImUpperPowerOfTwo", - "location": "imgui_internal:317", + "location": "imgui_internal:327", "ov_cimguiname": "igImUpperPowerOfTwo", "ret": "int", "signature": "(int)", @@ -22843,7 +23231,7 @@ "cimguiname": "igImageButtonEx", "defaults": {}, "funcname": "ImageButtonEx", - "location": "imgui_internal:2960", + "location": "imgui_internal:3009", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", @@ -22889,7 +23277,7 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", - "location": "imgui_internal:2631", + "location": "imgui_internal:2677", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -23437,7 +23825,7 @@ "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "imgui_internal:2997", + "location": "imgui_internal:3046", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -23592,7 +23980,7 @@ "cimguiname": "igIsActiveIdUsingKey", "defaults": {}, "funcname": "IsActiveIdUsingKey", - "location": "imgui_internal:2783", + "location": "imgui_internal:2829", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingKey", "ret": "bool", @@ -23614,7 +24002,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", - "location": "imgui_internal:2781", + "location": "imgui_internal:2827", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -23636,7 +24024,7 @@ "cimguiname": "igIsActiveIdUsingNavInput", "defaults": {}, "funcname": "IsActiveIdUsingNavInput", - "location": "imgui_internal:2782", + "location": "imgui_internal:2828", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavInput", "ret": "bool", @@ -23730,7 +24118,7 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", - "location": "imgui_internal:2699", + "location": "imgui_internal:2744", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -23747,7 +24135,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", - "location": "imgui_internal:2842", + "location": "imgui_internal:2890", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -23931,7 +24319,7 @@ "cimguiname": "igIsItemToggledSelection", "defaults": {}, "funcname": "IsItemToggledSelection", - "location": "imgui_internal:2704", + "location": "imgui_internal:2749", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -23970,7 +24358,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:922", + "location": "imgui:921", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown", "ret": "bool", @@ -23998,7 +24386,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:923", + "location": "imgui:922", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed", "ret": "bool", @@ -24026,7 +24414,7 @@ "repeat": "true" }, "funcname": "IsKeyPressedMap", - "location": "imgui_internal:2785", + "location": "imgui_internal:2831", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressedMap", "ret": "bool", @@ -24048,7 +24436,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:924", + "location": "imgui:923", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased", "ret": "bool", @@ -24076,7 +24464,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:933", + "location": "imgui:932", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked", "ret": "bool", @@ -24098,7 +24486,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:935", + "location": "imgui:934", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked", "ret": "bool", @@ -24120,7 +24508,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:932", + "location": "imgui:931", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown", "ret": "bool", @@ -24148,7 +24536,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "imgui_internal:2784", + "location": "imgui_internal:2830", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -24254,7 +24642,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:934", + "location": "imgui:933", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased", "ret": "bool", @@ -24276,7 +24664,7 @@ "cimguiname": "igIsNavInputDown", "defaults": {}, "funcname": "IsNavInputDown", - "location": "imgui_internal:2786", + "location": "imgui_internal:2832", "namespace": "ImGui", "ov_cimguiname": "igIsNavInputDown", "ret": "bool", @@ -24302,7 +24690,7 @@ "cimguiname": "igIsNavInputTest", "defaults": {}, "funcname": "IsNavInputTest", - "location": "imgui_internal:2787", + "location": "imgui_internal:2833", "namespace": "ImGui", "ov_cimguiname": "igIsNavInputTest", "ret": "bool", @@ -24354,7 +24742,7 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", - "location": "imgui_internal:2735", + "location": "imgui_internal:2780", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_ID", "ret": "bool", @@ -24426,7 +24814,7 @@ "cimguiname": "igIsWindowAbove", "defaults": {}, "funcname": "IsWindowAbove", - "location": "imgui_internal:2611", + "location": "imgui_internal:2652", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAbove", "ret": "bool", @@ -24477,7 +24865,7 @@ "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", - "location": "imgui_internal:2610", + "location": "imgui_internal:2650", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -24581,7 +24969,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", - "location": "imgui_internal:2612", + "location": "imgui_internal:2653", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -24589,6 +24977,32 @@ "stname": "" } ], + "igIsWindowWithinBeginStackOf": [ + { + "args": "(ImGuiWindow* window,ImGuiWindow* potential_parent)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "potential_parent", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiWindow* potential_parent)", + "call_args": "(window,potential_parent)", + "cimguiname": "igIsWindowWithinBeginStackOf", + "defaults": {}, + "funcname": "IsWindowWithinBeginStackOf", + "location": "imgui_internal:2651", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowWithinBeginStackOf", + "ret": "bool", + "signature": "(ImGuiWindow*,ImGuiWindow*)", + "stname": "" + } + ], "igItemAdd": [ { "args": "(const ImRect bb,ImGuiID id,const ImRect* nav_bb,ImGuiItemFlags extra_flags)", @@ -24618,7 +25032,7 @@ "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "imgui_internal:2696", + "location": "imgui_internal:2742", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -24644,7 +25058,7 @@ "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", - "location": "imgui_internal:2697", + "location": "imgui_internal:2743", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", @@ -24652,32 +25066,6 @@ "stname": "" } ], - "igItemInputable": [ - { - "args": "(ImGuiWindow* window,ImGuiID id)", - "argsT": [ - { - "name": "window", - "type": "ImGuiWindow*" - }, - { - "name": "id", - "type": "ImGuiID" - } - ], - "argsoriginal": "(ImGuiWindow* window,ImGuiID id)", - "call_args": "(window,id)", - "cimguiname": "igItemInputable", - "defaults": {}, - "funcname": "ItemInputable", - "location": "imgui_internal:2698", - "namespace": "ImGui", - "ov_cimguiname": "igItemInputable", - "ret": "void", - "signature": "(ImGuiWindow*,ImGuiID)", - "stname": "" - } - ], "igItemSize": [ { "args": "(const ImVec2 size,float text_baseline_y)", @@ -24698,7 +25086,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:2694", + "location": "imgui_internal:2740", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Vec2", "ret": "void", @@ -24724,7 +25112,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:2695", + "location": "imgui_internal:2741", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Rect", "ret": "void", @@ -24746,7 +25134,7 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", - "location": "imgui_internal:2688", + "location": "imgui_internal:2734", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -24967,7 +25355,7 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", - "location": "imgui_internal:2724", + "location": "imgui_internal:2769", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -25033,7 +25421,7 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "imgui_internal:2726", + "location": "imgui_internal:2771", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -25059,7 +25447,7 @@ "cimguiname": "igLogSetNextTextDecoration", "defaults": {}, "funcname": "LogSetNextTextDecoration", - "location": "imgui_internal:2727", + "location": "imgui_internal:2772", "namespace": "ImGui", "ov_cimguiname": "igLogSetNextTextDecoration", "ret": "void", @@ -25137,7 +25525,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "imgui_internal:2725", + "location": "imgui_internal:2770", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -25231,7 +25619,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:2654", + "location": "imgui_internal:2700", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_Nil", "ret": "void", @@ -25251,7 +25639,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:2655", + "location": "imgui_internal:2701", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_WindowPtr", "ret": "void", @@ -25273,7 +25661,7 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", - "location": "imgui_internal:2689", + "location": "imgui_internal:2735", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -25431,7 +25819,7 @@ "shortcut": "NULL" }, "funcname": "MenuItemEx", - "location": "imgui_internal:2746", + "location": "imgui_internal:2792", "namespace": "ImGui", "ov_cimguiname": "igMenuItemEx", "ret": "bool", @@ -25448,7 +25836,7 @@ "cimguiname": "igNavInitRequestApplyResult", "defaults": {}, "funcname": "NavInitRequestApplyResult", - "location": "imgui_internal:2755", + "location": "imgui_internal:2801", "namespace": "ImGui", "ov_cimguiname": "igNavInitRequestApplyResult", "ret": "void", @@ -25474,7 +25862,7 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", - "location": "imgui_internal:2754", + "location": "imgui_internal:2800", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -25491,7 +25879,7 @@ "cimguiname": "igNavMoveRequestApplyResult", "defaults": {}, "funcname": "NavMoveRequestApplyResult", - "location": "imgui_internal:2761", + "location": "imgui_internal:2807", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestApplyResult", "ret": "void", @@ -25508,7 +25896,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", - "location": "imgui_internal:2756", + "location": "imgui_internal:2802", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -25525,7 +25913,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", - "location": "imgui_internal:2760", + "location": "imgui_internal:2806", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -25559,7 +25947,7 @@ "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", - "location": "imgui_internal:2758", + "location": "imgui_internal:2804", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -25569,18 +25957,23 @@ ], "igNavMoveRequestResolveWithLastItem": [ { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", + "args": "(ImGuiNavItemData* result)", + "argsT": [ + { + "name": "result", + "type": "ImGuiNavItemData*" + } + ], + "argsoriginal": "(ImGuiNavItemData* result)", + "call_args": "(result)", "cimguiname": "igNavMoveRequestResolveWithLastItem", "defaults": {}, "funcname": "NavMoveRequestResolveWithLastItem", - "location": "imgui_internal:2759", + "location": "imgui_internal:2805", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithLastItem", "ret": "void", - "signature": "()", + "signature": "(ImGuiNavItemData*)", "stname": "" } ], @@ -25610,7 +26003,7 @@ "cimguiname": "igNavMoveRequestSubmit", "defaults": {}, "funcname": "NavMoveRequestSubmit", - "location": "imgui_internal:2757", + "location": "imgui_internal:2803", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestSubmit", "ret": "void", @@ -25636,7 +26029,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", - "location": "imgui_internal:2762", + "location": "imgui_internal:2808", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -25769,7 +26162,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "imgui_internal:2731", + "location": "imgui_internal:2776", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -25858,7 +26251,7 @@ "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", - "location": "imgui_internal:3009", + "location": "imgui_internal:3058", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", @@ -26168,7 +26561,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", - "location": "imgui_internal:2850", + "location": "imgui_internal:2898", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -26185,7 +26578,7 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", - "location": "imgui_internal:2773", + "location": "imgui_internal:2819", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -26236,7 +26629,7 @@ "cimguiname": "igPopItemFlag", "defaults": {}, "funcname": "PopItemFlag", - "location": "imgui_internal:2710", + "location": "imgui_internal:2755", "namespace": "ImGui", "ov_cimguiname": "igPopItemFlag", "ret": "void", @@ -26447,7 +26840,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", - "location": "imgui_internal:2848", + "location": "imgui_internal:2896", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -26464,7 +26857,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", - "location": "imgui_internal:2849", + "location": "imgui_internal:2897", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -26486,7 +26879,7 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", - "location": "imgui_internal:2772", + "location": "imgui_internal:2818", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -26620,7 +27013,7 @@ "cimguiname": "igPushItemFlag", "defaults": {}, "funcname": "PushItemFlag", - "location": "imgui_internal:2709", + "location": "imgui_internal:2754", "namespace": "ImGui", "ov_cimguiname": "igPushItemFlag", "ret": "void", @@ -26668,7 +27061,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", - "location": "imgui_internal:2703", + "location": "imgui_internal:2748", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -26690,7 +27083,7 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", - "location": "imgui_internal:2690", + "location": "imgui_internal:2736", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -26894,7 +27287,7 @@ "cimguiname": "igRemoveContextHook", "defaults": {}, "funcname": "RemoveContextHook", - "location": "imgui_internal:2643", + "location": "imgui_internal:2689", "namespace": "ImGui", "ov_cimguiname": "igRemoveContextHook", "ret": "void", @@ -26951,7 +27344,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "imgui_internal:2937", + "location": "imgui_internal:2985", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -26985,7 +27378,7 @@ "cimguiname": "igRenderArrowDockMenu", "defaults": {}, "funcname": "RenderArrowDockMenu", - "location": "imgui_internal:2942", + "location": "imgui_internal:2990", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowDockMenu", "ret": "void", @@ -27023,7 +27416,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", - "location": "imgui_internal:2941", + "location": "imgui_internal:2989", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -27053,7 +27446,7 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", - "location": "imgui_internal:2938", + "location": "imgui_internal:2986", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -27087,7 +27480,7 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", - "location": "imgui_internal:2939", + "location": "imgui_internal:2987", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -27140,7 +27533,7 @@ "rounding": "0.0f" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "imgui_internal:2932", + "location": "imgui_internal:2980", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -27181,7 +27574,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "imgui_internal:2930", + "location": "imgui_internal:2978", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -27213,7 +27606,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "imgui_internal:2931", + "location": "imgui_internal:2979", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -27259,7 +27652,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", - "location": "imgui_internal:2940", + "location": "imgui_internal:2988", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -27291,7 +27684,7 @@ "flags": "ImGuiNavHighlightFlags_TypeDefault" }, "funcname": "RenderNavHighlight", - "location": "imgui_internal:2933", + "location": "imgui_internal:2981", "namespace": "ImGui", "ov_cimguiname": "igRenderNavHighlight", "ret": "void", @@ -27362,7 +27755,7 @@ "cimguiname": "igRenderRectFilledRangeH", "defaults": {}, "funcname": "RenderRectFilledRangeH", - "location": "imgui_internal:2943", + "location": "imgui_internal:2991", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledRangeH", "ret": "void", @@ -27400,7 +27793,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", - "location": "imgui_internal:2944", + "location": "imgui_internal:2992", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -27437,7 +27830,7 @@ "text_end": "NULL" }, "funcname": "RenderText", - "location": "imgui_internal:2925", + "location": "imgui_internal:2973", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -27486,7 +27879,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "imgui_internal:2927", + "location": "imgui_internal:2975", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -27539,7 +27932,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "imgui_internal:2928", + "location": "imgui_internal:2976", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -27589,7 +27982,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", - "location": "imgui_internal:2929", + "location": "imgui_internal:2977", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -27623,7 +28016,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", - "location": "imgui_internal:2926", + "location": "imgui_internal:2974", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -27748,7 +28141,7 @@ "cimguiname": "igScaleWindowsInViewport", "defaults": {}, "funcname": "ScaleWindowsInViewport", - "location": "imgui_internal:2648", + "location": "imgui_internal:2694", "namespace": "ImGui", "ov_cimguiname": "igScaleWindowsInViewport", "ret": "void", @@ -27774,7 +28167,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", - "location": "imgui_internal:2674", + "location": "imgui_internal:2720", "namespace": "ImGui", "ov_cimguiname": "igScrollToBringRectIntoView", "ret": "void", @@ -27798,7 +28191,7 @@ "flags": "0" }, "funcname": "ScrollToItem", - "location": "imgui_internal:2670", + "location": "imgui_internal:2716", "namespace": "ImGui", "ov_cimguiname": "igScrollToItem", "ret": "void", @@ -27830,7 +28223,7 @@ "flags": "0" }, "funcname": "ScrollToRect", - "location": "imgui_internal:2671", + "location": "imgui_internal:2717", "namespace": "ImGui", "ov_cimguiname": "igScrollToRect", "ret": "void", @@ -27866,7 +28259,7 @@ "flags": "0" }, "funcname": "ScrollToRectEx", - "location": "imgui_internal:2672", + "location": "imgui_internal:2718", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToRectEx", @@ -27889,7 +28282,7 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", - "location": "imgui_internal:2958", + "location": "imgui_internal:3007", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -27899,7 +28292,7 @@ ], "igScrollbarEx": [ { - "args": "(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* p_scroll_v,float avail_v,float contents_v,ImDrawFlags flags)", + "args": "(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags flags)", "argsT": [ { "name": "bb", @@ -27915,31 +28308,31 @@ }, { "name": "p_scroll_v", - "type": "float*" + "type": "ImS64*" }, { "name": "avail_v", - "type": "float" + "type": "ImS64" }, { "name": "contents_v", - "type": "float" + "type": "ImS64" }, { "name": "flags", "type": "ImDrawFlags" } ], - "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,float* p_scroll_v,float avail_v,float contents_v,ImDrawFlags flags)", + "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags flags)", "call_args": "(bb,id,axis,p_scroll_v,avail_v,contents_v,flags)", "cimguiname": "igScrollbarEx", "defaults": {}, "funcname": "ScrollbarEx", - "location": "imgui_internal:2959", + "location": "imgui_internal:3008", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", - "signature": "(const ImRect,ImGuiID,ImGuiAxis,float*,float,float,ImDrawFlags)", + "signature": "(const ImRect,ImGuiID,ImGuiAxis,ImS64*,ImS64,ImS64,ImDrawFlags)", "stname": "" } ], @@ -28047,7 +28440,7 @@ "cimguiname": "igSeparatorEx", "defaults": {}, "funcname": "SeparatorEx", - "location": "imgui_internal:2965", + "location": "imgui_internal:3014", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", @@ -28073,7 +28466,7 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", - "location": "imgui_internal:2683", + "location": "imgui_internal:2729", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -28090,7 +28483,7 @@ "cimguiname": "igSetActiveIdUsingNavAndKeys", "defaults": {}, "funcname": "SetActiveIdUsingNavAndKeys", - "location": "imgui_internal:2780", + "location": "imgui_internal:2826", "namespace": "ImGui", "ov_cimguiname": "igSetActiveIdUsingNavAndKeys", "ret": "void", @@ -28262,7 +28655,7 @@ "cimguiname": "igSetCurrentFont", "defaults": {}, "funcname": "SetCurrentFont", - "location": "imgui_internal:2626", + "location": "imgui_internal:2672", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -28288,7 +28681,7 @@ "cimguiname": "igSetCurrentViewport", "defaults": {}, "funcname": "SetCurrentViewport", - "location": "imgui_internal:2650", + "location": "imgui_internal:2696", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentViewport", "ret": "void", @@ -28438,7 +28831,7 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", - "location": "imgui_internal:2684", + "location": "imgui_internal:2730", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -28460,7 +28853,7 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", - "location": "imgui_internal:2687", + "location": "imgui_internal:2733", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -28511,7 +28904,7 @@ "cimguiname": "igSetItemUsingMouseWheel", "defaults": {}, "funcname": "SetItemUsingMouseWheel", - "location": "imgui_internal:2779", + "location": "imgui_internal:2825", "namespace": "ImGui", "ov_cimguiname": "igSetItemUsingMouseWheel", "ret": "void", @@ -28569,7 +28962,7 @@ "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", - "location": "imgui_internal:2700", + "location": "imgui_internal:2745", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -28625,7 +29018,7 @@ "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", - "location": "imgui_internal:2767", + "location": "imgui_internal:2813", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -28869,7 +29262,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", - "location": "imgui_internal:2663", + "location": "imgui_internal:2709", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -29012,7 +29405,7 @@ "cimguiname": "igSetScrollFromPosX", "defaults": {}, "funcname": "SetScrollFromPosX", - "location": "imgui_internal:2666", + "location": "imgui_internal:2712", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_WindowPtr", "ret": "void", @@ -29068,7 +29461,7 @@ "cimguiname": "igSetScrollFromPosY", "defaults": {}, "funcname": "SetScrollFromPosY", - "location": "imgui_internal:2667", + "location": "imgui_internal:2713", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_WindowPtr", "ret": "void", @@ -29162,7 +29555,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui_internal:2664", + "location": "imgui_internal:2710", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_WindowPtr", "ret": "void", @@ -29208,7 +29601,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui_internal:2665", + "location": "imgui_internal:2711", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_WindowPtr", "ret": "void", @@ -29331,7 +29724,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "imgui_internal:2845", + "location": "imgui_internal:2893", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -29419,7 +29812,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui_internal:2615", + "location": "imgui_internal:2656", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_WindowPtr", "ret": "void", @@ -29449,7 +29842,7 @@ "cimguiname": "igSetWindowDock", "defaults": {}, "funcname": "SetWindowDock", - "location": "imgui_internal:2813", + "location": "imgui_internal:2861", "namespace": "ImGui", "ov_cimguiname": "igSetWindowDock", "ret": "void", @@ -29538,7 +29931,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", - "location": "imgui_internal:2616", + "location": "imgui_internal:2657", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -29626,7 +30019,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui_internal:2613", + "location": "imgui_internal:2654", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_WindowPtr", "ret": "void", @@ -29714,7 +30107,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui_internal:2614", + "location": "imgui_internal:2655", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_WindowPtr", "ret": "void", @@ -29760,7 +30153,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "imgui_internal:3012", + "location": "imgui_internal:3061", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -29810,7 +30203,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", - "location": "imgui_internal:3013", + "location": "imgui_internal:3062", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -29880,7 +30273,7 @@ "cimguiname": "igShowFontAtlas", "defaults": {}, "funcname": "ShowFontAtlas", - "location": "imgui_internal:3026", + "location": "imgui_internal:3075", "namespace": "ImGui", "ov_cimguiname": "igShowFontAtlas", "ret": "void", @@ -30043,7 +30436,7 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", - "location": "imgui_internal:2706", + "location": "imgui_internal:2751", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -30065,7 +30458,7 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", - "location": "imgui_internal:2632", + "location": "imgui_internal:2678", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -30166,7 +30559,7 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", - "location": "imgui_internal:2972", + "location": "imgui_internal:3021", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -30677,7 +31070,7 @@ ], "igSplitterBehavior": [ { - "args": "(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend,float hover_visibility_delay)", + "args": "(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend,float hover_visibility_delay,ImU32 bg_col)", "argsT": [ { "name": "bb", @@ -30714,21 +31107,26 @@ { "name": "hover_visibility_delay", "type": "float" + }, + { + "name": "bg_col", + "type": "ImU32" } ], - "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend=0.0f,float hover_visibility_delay=0.0f)", - "call_args": "(bb,id,axis,size1,size2,min_size1,min_size2,hover_extend,hover_visibility_delay)", + "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend=0.0f,float hover_visibility_delay=0.0f,ImU32 bg_col=0)", + "call_args": "(bb,id,axis,size1,size2,min_size1,min_size2,hover_extend,hover_visibility_delay,bg_col)", "cimguiname": "igSplitterBehavior", "defaults": { + "bg_col": "0", "hover_extend": "0.0f", "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "imgui_internal:2973", + "location": "imgui_internal:3022", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", - "signature": "(const ImRect,ImGuiID,ImGuiAxis,float*,float*,float,float,float,float)", + "signature": "(const ImRect,ImGuiID,ImGuiAxis,float*,float*,float,float,float,float,ImU32)", "stname": "" } ], @@ -30746,7 +31144,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", - "location": "imgui_internal:2636", + "location": "imgui_internal:2682", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -30776,7 +31174,7 @@ "cimguiname": "igStartMouseMovingWindowOrNode", "defaults": {}, "funcname": "StartMouseMovingWindowOrNode", - "location": "imgui_internal:2637", + "location": "imgui_internal:2683", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindowOrNode", "ret": "void", @@ -30878,7 +31276,7 @@ "cimguiname": "igTabBarAddTab", "defaults": {}, "funcname": "TabBarAddTab", - "location": "imgui_internal:2911", + "location": "imgui_internal:2959", "namespace": "ImGui", "ov_cimguiname": "igTabBarAddTab", "ret": "void", @@ -30904,7 +31302,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", - "location": "imgui_internal:2913", + "location": "imgui_internal:2961", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -30926,7 +31324,7 @@ "cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "defaults": {}, "funcname": "TabBarFindMostRecentlySelectedTabForActiveWindow", - "location": "imgui_internal:2910", + "location": "imgui_internal:2958", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "ret": "ImGuiTabItem*", @@ -30952,7 +31350,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", - "location": "imgui_internal:2909", + "location": "imgui_internal:2957", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -30974,7 +31372,7 @@ "cimguiname": "igTabBarProcessReorder", "defaults": {}, "funcname": "TabBarProcessReorder", - "location": "imgui_internal:2916", + "location": "imgui_internal:2964", "namespace": "ImGui", "ov_cimguiname": "igTabBarProcessReorder", "ret": "bool", @@ -31004,7 +31402,7 @@ "cimguiname": "igTabBarQueueReorder", "defaults": {}, "funcname": "TabBarQueueReorder", - "location": "imgui_internal:2914", + "location": "imgui_internal:2962", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", @@ -31034,7 +31432,7 @@ "cimguiname": "igTabBarQueueReorderFromMousePos", "defaults": {}, "funcname": "TabBarQueueReorderFromMousePos", - "location": "imgui_internal:2915", + "location": "imgui_internal:2963", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorderFromMousePos", "ret": "void", @@ -31060,7 +31458,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", - "location": "imgui_internal:2912", + "location": "imgui_internal:2960", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -31094,7 +31492,7 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", - "location": "imgui_internal:2919", + "location": "imgui_internal:2967", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -31152,7 +31550,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:2918", + "location": "imgui_internal:2966", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize", @@ -31191,7 +31589,7 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", - "location": "imgui_internal:2917", + "location": "imgui_internal:2965", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -31249,7 +31647,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", - "location": "imgui_internal:2920", + "location": "imgui_internal:2968", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "void", @@ -31271,7 +31669,7 @@ "cimguiname": "igTableBeginApplyRequests", "defaults": {}, "funcname": "TableBeginApplyRequests", - "location": "imgui_internal:2870", + "location": "imgui_internal:2918", "namespace": "ImGui", "ov_cimguiname": "igTableBeginApplyRequests", "ret": "void", @@ -31297,7 +31695,7 @@ "cimguiname": "igTableBeginCell", "defaults": {}, "funcname": "TableBeginCell", - "location": "imgui_internal:2885", + "location": "imgui_internal:2933", "namespace": "ImGui", "ov_cimguiname": "igTableBeginCell", "ret": "void", @@ -31323,7 +31721,7 @@ "cimguiname": "igTableBeginInitMemory", "defaults": {}, "funcname": "TableBeginInitMemory", - "location": "imgui_internal:2869", + "location": "imgui_internal:2917", "namespace": "ImGui", "ov_cimguiname": "igTableBeginInitMemory", "ret": "void", @@ -31345,7 +31743,7 @@ "cimguiname": "igTableBeginRow", "defaults": {}, "funcname": "TableBeginRow", - "location": "imgui_internal:2883", + "location": "imgui_internal:2931", "namespace": "ImGui", "ov_cimguiname": "igTableBeginRow", "ret": "void", @@ -31367,7 +31765,7 @@ "cimguiname": "igTableDrawBorders", "defaults": {}, "funcname": "TableDrawBorders", - "location": "imgui_internal:2875", + "location": "imgui_internal:2923", "namespace": "ImGui", "ov_cimguiname": "igTableDrawBorders", "ret": "void", @@ -31389,7 +31787,7 @@ "cimguiname": "igTableDrawContextMenu", "defaults": {}, "funcname": "TableDrawContextMenu", - "location": "imgui_internal:2876", + "location": "imgui_internal:2924", "namespace": "ImGui", "ov_cimguiname": "igTableDrawContextMenu", "ret": "void", @@ -31411,7 +31809,7 @@ "cimguiname": "igTableEndCell", "defaults": {}, "funcname": "TableEndCell", - "location": "imgui_internal:2886", + "location": "imgui_internal:2934", "namespace": "ImGui", "ov_cimguiname": "igTableEndCell", "ret": "void", @@ -31433,7 +31831,7 @@ "cimguiname": "igTableEndRow", "defaults": {}, "funcname": "TableEndRow", - "location": "imgui_internal:2884", + "location": "imgui_internal:2932", "namespace": "ImGui", "ov_cimguiname": "igTableEndRow", "ret": "void", @@ -31455,7 +31853,7 @@ "cimguiname": "igTableFindByID", "defaults": {}, "funcname": "TableFindByID", - "location": "imgui_internal:2867", + "location": "imgui_internal:2915", "namespace": "ImGui", "ov_cimguiname": "igTableFindByID", "ret": "ImGuiTable*", @@ -31481,7 +31879,7 @@ "cimguiname": "igTableFixColumnSortDirection", "defaults": {}, "funcname": "TableFixColumnSortDirection", - "location": "imgui_internal:2881", + "location": "imgui_internal:2929", "namespace": "ImGui", "ov_cimguiname": "igTableFixColumnSortDirection", "ret": "void", @@ -31498,7 +31896,7 @@ "cimguiname": "igTableGcCompactSettings", "defaults": {}, "funcname": "TableGcCompactSettings", - "location": "imgui_internal:2896", + "location": "imgui_internal:2944", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactSettings", "ret": "void", @@ -31520,7 +31918,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:2894", + "location": "imgui_internal:2942", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TablePtr", "ret": "void", @@ -31540,7 +31938,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:2895", + "location": "imgui_internal:2943", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TableTempDataPtr", "ret": "void", @@ -31562,7 +31960,7 @@ "cimguiname": "igTableGetBoundSettings", "defaults": {}, "funcname": "TableGetBoundSettings", - "location": "imgui_internal:2902", + "location": "imgui_internal:2950", "namespace": "ImGui", "ov_cimguiname": "igTableGetBoundSettings", "ret": "ImGuiTableSettings*", @@ -31592,7 +31990,7 @@ "cimguiname": "igTableGetCellBgRect", "defaults": {}, "funcname": "TableGetCellBgRect", - "location": "imgui_internal:2887", + "location": "imgui_internal:2935", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTableGetCellBgRect", @@ -31699,7 +32097,7 @@ "cimguiname": "igTableGetColumnName", "defaults": {}, "funcname": "TableGetColumnName", - "location": "imgui_internal:2888", + "location": "imgui_internal:2936", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_TablePtr", "ret": "const char*", @@ -31721,7 +32119,7 @@ "cimguiname": "igTableGetColumnNextSortDirection", "defaults": {}, "funcname": "TableGetColumnNextSortDirection", - "location": "imgui_internal:2880", + "location": "imgui_internal:2928", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnNextSortDirection", "ret": "ImGuiSortDirection", @@ -31753,7 +32151,7 @@ "instance_no": "0" }, "funcname": "TableGetColumnResizeID", - "location": "imgui_internal:2889", + "location": "imgui_internal:2937", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnResizeID", "ret": "ImGuiID", @@ -31779,7 +32177,7 @@ "cimguiname": "igTableGetColumnWidthAuto", "defaults": {}, "funcname": "TableGetColumnWidthAuto", - "location": "imgui_internal:2882", + "location": "imgui_internal:2930", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnWidthAuto", "ret": "float", @@ -31796,7 +32194,7 @@ "cimguiname": "igTableGetHeaderRowHeight", "defaults": {}, "funcname": "TableGetHeaderRowHeight", - "location": "imgui_internal:2861", + "location": "imgui_internal:2909", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderRowHeight", "ret": "float", @@ -31813,7 +32211,7 @@ "cimguiname": "igTableGetHoveredColumn", "defaults": {}, "funcname": "TableGetHoveredColumn", - "location": "imgui_internal:2860", + "location": "imgui_internal:2908", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredColumn", "ret": "int", @@ -31839,7 +32237,7 @@ "cimguiname": "igTableGetMaxColumnWidth", "defaults": {}, "funcname": "TableGetMaxColumnWidth", - "location": "imgui_internal:2890", + "location": "imgui_internal:2938", "namespace": "ImGui", "ov_cimguiname": "igTableGetMaxColumnWidth", "ret": "float", @@ -31934,7 +32332,7 @@ "cimguiname": "igTableLoadSettings", "defaults": {}, "funcname": "TableLoadSettings", - "location": "imgui_internal:2899", + "location": "imgui_internal:2947", "namespace": "ImGui", "ov_cimguiname": "igTableLoadSettings", "ret": "void", @@ -31956,7 +32354,7 @@ "cimguiname": "igTableMergeDrawChannels", "defaults": {}, "funcname": "TableMergeDrawChannels", - "location": "imgui_internal:2877", + "location": "imgui_internal:2925", "namespace": "ImGui", "ov_cimguiname": "igTableMergeDrawChannels", "ret": "void", @@ -32026,7 +32424,7 @@ "column_n": "-1" }, "funcname": "TableOpenContextMenu", - "location": "imgui_internal:2857", + "location": "imgui_internal:2905", "namespace": "ImGui", "ov_cimguiname": "igTableOpenContextMenu", "ret": "void", @@ -32043,7 +32441,7 @@ "cimguiname": "igTablePopBackgroundChannel", "defaults": {}, "funcname": "TablePopBackgroundChannel", - "location": "imgui_internal:2863", + "location": "imgui_internal:2911", "namespace": "ImGui", "ov_cimguiname": "igTablePopBackgroundChannel", "ret": "void", @@ -32060,7 +32458,7 @@ "cimguiname": "igTablePushBackgroundChannel", "defaults": {}, "funcname": "TablePushBackgroundChannel", - "location": "imgui_internal:2862", + "location": "imgui_internal:2910", "namespace": "ImGui", "ov_cimguiname": "igTablePushBackgroundChannel", "ret": "void", @@ -32082,7 +32480,7 @@ "cimguiname": "igTableRemove", "defaults": {}, "funcname": "TableRemove", - "location": "imgui_internal:2893", + "location": "imgui_internal:2941", "namespace": "ImGui", "ov_cimguiname": "igTableRemove", "ret": "void", @@ -32104,7 +32502,7 @@ "cimguiname": "igTableResetSettings", "defaults": {}, "funcname": "TableResetSettings", - "location": "imgui_internal:2901", + "location": "imgui_internal:2949", "namespace": "ImGui", "ov_cimguiname": "igTableResetSettings", "ret": "void", @@ -32126,7 +32524,7 @@ "cimguiname": "igTableSaveSettings", "defaults": {}, "funcname": "TableSaveSettings", - "location": "imgui_internal:2900", + "location": "imgui_internal:2948", "namespace": "ImGui", "ov_cimguiname": "igTableSaveSettings", "ret": "void", @@ -32236,7 +32634,7 @@ "cimguiname": "igTableSetColumnSortDirection", "defaults": {}, "funcname": "TableSetColumnSortDirection", - "location": "imgui_internal:2859", + "location": "imgui_internal:2907", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnSortDirection", "ret": "void", @@ -32262,7 +32660,7 @@ "cimguiname": "igTableSetColumnWidth", "defaults": {}, "funcname": "TableSetColumnWidth", - "location": "imgui_internal:2858", + "location": "imgui_internal:2906", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidth", "ret": "void", @@ -32284,7 +32682,7 @@ "cimguiname": "igTableSetColumnWidthAutoAll", "defaults": {}, "funcname": "TableSetColumnWidthAutoAll", - "location": "imgui_internal:2892", + "location": "imgui_internal:2940", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoAll", "ret": "void", @@ -32310,7 +32708,7 @@ "cimguiname": "igTableSetColumnWidthAutoSingle", "defaults": {}, "funcname": "TableSetColumnWidthAutoSingle", - "location": "imgui_internal:2891", + "location": "imgui_internal:2939", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoSingle", "ret": "void", @@ -32336,7 +32734,7 @@ "cimguiname": "igTableSettingsCreate", "defaults": {}, "funcname": "TableSettingsCreate", - "location": "imgui_internal:2904", + "location": "imgui_internal:2952", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsCreate", "ret": "ImGuiTableSettings*", @@ -32358,7 +32756,7 @@ "cimguiname": "igTableSettingsFindByID", "defaults": {}, "funcname": "TableSettingsFindByID", - "location": "imgui_internal:2905", + "location": "imgui_internal:2953", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsFindByID", "ret": "ImGuiTableSettings*", @@ -32380,7 +32778,7 @@ "cimguiname": "igTableSettingsInstallHandler", "defaults": {}, "funcname": "TableSettingsInstallHandler", - "location": "imgui_internal:2903", + "location": "imgui_internal:2951", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsInstallHandler", "ret": "void", @@ -32440,7 +32838,7 @@ "cimguiname": "igTableSetupDrawChannels", "defaults": {}, "funcname": "TableSetupDrawChannels", - "location": "imgui_internal:2871", + "location": "imgui_internal:2919", "namespace": "ImGui", "ov_cimguiname": "igTableSetupDrawChannels", "ret": "void", @@ -32488,7 +32886,7 @@ "cimguiname": "igTableSortSpecsBuild", "defaults": {}, "funcname": "TableSortSpecsBuild", - "location": "imgui_internal:2879", + "location": "imgui_internal:2927", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsBuild", "ret": "void", @@ -32510,7 +32908,7 @@ "cimguiname": "igTableSortSpecsSanitize", "defaults": {}, "funcname": "TableSortSpecsSanitize", - "location": "imgui_internal:2878", + "location": "imgui_internal:2926", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsSanitize", "ret": "void", @@ -32532,7 +32930,7 @@ "cimguiname": "igTableUpdateBorders", "defaults": {}, "funcname": "TableUpdateBorders", - "location": "imgui_internal:2873", + "location": "imgui_internal:2921", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateBorders", "ret": "void", @@ -32554,7 +32952,7 @@ "cimguiname": "igTableUpdateColumnsWeightFromWidth", "defaults": {}, "funcname": "TableUpdateColumnsWeightFromWidth", - "location": "imgui_internal:2874", + "location": "imgui_internal:2922", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateColumnsWeightFromWidth", "ret": "void", @@ -32576,7 +32974,7 @@ "cimguiname": "igTableUpdateLayout", "defaults": {}, "funcname": "TableUpdateLayout", - "location": "imgui_internal:2872", + "location": "imgui_internal:2920", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateLayout", "ret": "void", @@ -32598,7 +32996,7 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", - "location": "imgui_internal:3000", + "location": "imgui_internal:3049", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -32651,7 +33049,7 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "imgui_internal:2999", + "location": "imgui_internal:3048", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -32693,7 +33091,7 @@ "cimguiname": "igTempInputText", "defaults": {}, "funcname": "TempInputText", - "location": "imgui_internal:2998", + "location": "imgui_internal:3047", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -32867,7 +33265,7 @@ "text_end": "NULL" }, "funcname": "TextEx", - "location": "imgui_internal:2953", + "location": "imgui_internal:3002", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -33004,7 +33402,7 @@ "cimguiname": "igTranslateWindowsInViewport", "defaults": {}, "funcname": "TranslateWindowsInViewport", - "location": "imgui_internal:2647", + "location": "imgui_internal:2693", "namespace": "ImGui", "ov_cimguiname": "igTranslateWindowsInViewport", "ret": "void", @@ -33120,7 +33518,7 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "imgui_internal:2974", + "location": "imgui_internal:3023", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -33148,7 +33546,7 @@ "flags": "0" }, "funcname": "TreeNodeBehaviorIsOpen", - "location": "imgui_internal:2975", + "location": "imgui_internal:3024", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehaviorIsOpen", "ret": "bool", @@ -33449,7 +33847,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", - "location": "imgui_internal:2976", + "location": "imgui_internal:3025", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -33490,7 +33888,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "imgui_internal:2635", + "location": "imgui_internal:2681", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -33507,7 +33905,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "imgui_internal:2639", + "location": "imgui_internal:2685", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -33524,7 +33922,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "imgui_internal:2638", + "location": "imgui_internal:2684", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -33571,7 +33969,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", - "location": "imgui_internal:2608", + "location": "imgui_internal:2648", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -33833,5 +34231,67 @@ "signature": "(const char*,float,const char*)", "stname": "" } + ], + "igWindowRectAbsToRel": [ + { + "args": "(ImRect *pOut,ImGuiWindow* window,const ImRect r)", + "argsT": [ + { + "name": "pOut", + "type": "ImRect*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "r", + "type": "const ImRect" + } + ], + "argsoriginal": "(ImGuiWindow* window,const ImRect& r)", + "call_args": "(window,r)", + "cimguiname": "igWindowRectAbsToRel", + "defaults": {}, + "funcname": "WindowRectAbsToRel", + "location": "imgui_internal:2658", + "namespace": "ImGui", + "nonUDT": 1, + "ov_cimguiname": "igWindowRectAbsToRel", + "ret": "void", + "signature": "(ImGuiWindow*,const ImRect)", + "stname": "" + } + ], + "igWindowRectRelToAbs": [ + { + "args": "(ImRect *pOut,ImGuiWindow* window,const ImRect r)", + "argsT": [ + { + "name": "pOut", + "type": "ImRect*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "r", + "type": "const ImRect" + } + ], + "argsoriginal": "(ImGuiWindow* window,const ImRect& r)", + "call_args": "(window,r)", + "cimguiname": "igWindowRectRelToAbs", + "defaults": {}, + "funcname": "WindowRectRelToAbs", + "location": "imgui_internal:2659", + "namespace": "ImGui", + "nonUDT": 1, + "ov_cimguiname": "igWindowRectRelToAbs", + "ret": "void", + "signature": "(ImGuiWindow*,const ImRect)", + "stname": "" + } ] } \ No newline at end of file diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index fbe98fb2..cec431d4 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -11,7 +11,7 @@ defs["ImBitArray_ClearAllBits"][1]["call_args"] = "()" defs["ImBitArray_ClearAllBits"][1]["cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["defaults"] = {} defs["ImBitArray_ClearAllBits"][1]["funcname"] = "ClearAllBits" -defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:549" +defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:560" defs["ImBitArray_ClearAllBits"][1]["ov_cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["ret"] = "void" defs["ImBitArray_ClearAllBits"][1]["signature"] = "()" @@ -33,7 +33,7 @@ defs["ImBitArray_ClearBit"][1]["call_args"] = "(n)" defs["ImBitArray_ClearBit"][1]["cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["defaults"] = {} defs["ImBitArray_ClearBit"][1]["funcname"] = "ClearBit" -defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:553" +defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:564" defs["ImBitArray_ClearBit"][1]["ov_cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["ret"] = "void" defs["ImBitArray_ClearBit"][1]["signature"] = "(int)" @@ -50,7 +50,7 @@ defs["ImBitArray_ImBitArray"][1]["cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["constructor"] = true defs["ImBitArray_ImBitArray"][1]["defaults"] = {} defs["ImBitArray_ImBitArray"][1]["funcname"] = "ImBitArray" -defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:548" +defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:559" defs["ImBitArray_ImBitArray"][1]["ov_cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["signature"] = "()" defs["ImBitArray_ImBitArray"][1]["stname"] = "ImBitArray" @@ -68,7 +68,7 @@ defs["ImBitArray_SetAllBits"][1]["call_args"] = "()" defs["ImBitArray_SetAllBits"][1]["cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["defaults"] = {} defs["ImBitArray_SetAllBits"][1]["funcname"] = "SetAllBits" -defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:550" +defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:561" defs["ImBitArray_SetAllBits"][1]["ov_cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["ret"] = "void" defs["ImBitArray_SetAllBits"][1]["signature"] = "()" @@ -90,7 +90,7 @@ defs["ImBitArray_SetBit"][1]["call_args"] = "(n)" defs["ImBitArray_SetBit"][1]["cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["defaults"] = {} defs["ImBitArray_SetBit"][1]["funcname"] = "SetBit" -defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:552" +defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:563" defs["ImBitArray_SetBit"][1]["ov_cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["ret"] = "void" defs["ImBitArray_SetBit"][1]["signature"] = "(int)" @@ -115,7 +115,7 @@ defs["ImBitArray_SetBitRange"][1]["call_args"] = "(n,n2)" defs["ImBitArray_SetBitRange"][1]["cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["defaults"] = {} defs["ImBitArray_SetBitRange"][1]["funcname"] = "SetBitRange" -defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:554" +defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:565" defs["ImBitArray_SetBitRange"][1]["ov_cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["ret"] = "void" defs["ImBitArray_SetBitRange"][1]["signature"] = "(int,int)" @@ -137,7 +137,7 @@ defs["ImBitArray_TestBit"][1]["call_args"] = "(n)" defs["ImBitArray_TestBit"][1]["cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["defaults"] = {} defs["ImBitArray_TestBit"][1]["funcname"] = "TestBit" -defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:551" +defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:562" defs["ImBitArray_TestBit"][1]["ov_cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["ret"] = "bool" defs["ImBitArray_TestBit"][1]["signature"] = "(int)const" @@ -173,7 +173,7 @@ defs["ImBitVector_Clear"][1]["call_args"] = "()" defs["ImBitVector_Clear"][1]["cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["defaults"] = {} defs["ImBitVector_Clear"][1]["funcname"] = "Clear" -defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:563" +defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:574" defs["ImBitVector_Clear"][1]["ov_cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["ret"] = "void" defs["ImBitVector_Clear"][1]["signature"] = "()" @@ -194,7 +194,7 @@ defs["ImBitVector_ClearBit"][1]["call_args"] = "(n)" defs["ImBitVector_ClearBit"][1]["cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["defaults"] = {} defs["ImBitVector_ClearBit"][1]["funcname"] = "ClearBit" -defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:566" +defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:577" defs["ImBitVector_ClearBit"][1]["ov_cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["ret"] = "void" defs["ImBitVector_ClearBit"][1]["signature"] = "(int)" @@ -215,7 +215,7 @@ defs["ImBitVector_Create"][1]["call_args"] = "(sz)" defs["ImBitVector_Create"][1]["cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["defaults"] = {} defs["ImBitVector_Create"][1]["funcname"] = "Create" -defs["ImBitVector_Create"][1]["location"] = "imgui_internal:562" +defs["ImBitVector_Create"][1]["location"] = "imgui_internal:573" defs["ImBitVector_Create"][1]["ov_cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["ret"] = "void" defs["ImBitVector_Create"][1]["signature"] = "(int)" @@ -236,7 +236,7 @@ defs["ImBitVector_SetBit"][1]["call_args"] = "(n)" defs["ImBitVector_SetBit"][1]["cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["defaults"] = {} defs["ImBitVector_SetBit"][1]["funcname"] = "SetBit" -defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:565" +defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:576" defs["ImBitVector_SetBit"][1]["ov_cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["ret"] = "void" defs["ImBitVector_SetBit"][1]["signature"] = "(int)" @@ -257,7 +257,7 @@ defs["ImBitVector_TestBit"][1]["call_args"] = "(n)" defs["ImBitVector_TestBit"][1]["cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["defaults"] = {} defs["ImBitVector_TestBit"][1]["funcname"] = "TestBit" -defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:564" +defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:575" defs["ImBitVector_TestBit"][1]["ov_cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["ret"] = "bool" defs["ImBitVector_TestBit"][1]["signature"] = "(int)const" @@ -278,7 +278,7 @@ defs["ImChunkStream_alloc_chunk"][1]["call_args"] = "(sz)" defs["ImChunkStream_alloc_chunk"][1]["cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["defaults"] = {} defs["ImChunkStream_alloc_chunk"][1]["funcname"] = "alloc_chunk" -defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:669" +defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:680" defs["ImChunkStream_alloc_chunk"][1]["ov_cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["ret"] = "T*" defs["ImChunkStream_alloc_chunk"][1]["signature"] = "(size_t)" @@ -297,7 +297,7 @@ defs["ImChunkStream_begin"][1]["call_args"] = "()" defs["ImChunkStream_begin"][1]["cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["defaults"] = {} defs["ImChunkStream_begin"][1]["funcname"] = "begin" -defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:670" +defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:681" defs["ImChunkStream_begin"][1]["ov_cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["ret"] = "T*" defs["ImChunkStream_begin"][1]["signature"] = "()" @@ -319,7 +319,7 @@ defs["ImChunkStream_chunk_size"][1]["call_args"] = "(p)" defs["ImChunkStream_chunk_size"][1]["cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["defaults"] = {} defs["ImChunkStream_chunk_size"][1]["funcname"] = "chunk_size" -defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:672" +defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:683" defs["ImChunkStream_chunk_size"][1]["ov_cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["ret"] = "int" defs["ImChunkStream_chunk_size"][1]["signature"] = "(const T*)" @@ -338,7 +338,7 @@ defs["ImChunkStream_clear"][1]["call_args"] = "()" defs["ImChunkStream_clear"][1]["cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["defaults"] = {} defs["ImChunkStream_clear"][1]["funcname"] = "clear" -defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:666" +defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:677" defs["ImChunkStream_clear"][1]["ov_cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["ret"] = "void" defs["ImChunkStream_clear"][1]["signature"] = "()" @@ -357,7 +357,7 @@ defs["ImChunkStream_empty"][1]["call_args"] = "()" defs["ImChunkStream_empty"][1]["cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["defaults"] = {} defs["ImChunkStream_empty"][1]["funcname"] = "empty" -defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:667" +defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:678" defs["ImChunkStream_empty"][1]["ov_cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["ret"] = "bool" defs["ImChunkStream_empty"][1]["signature"] = "()const" @@ -376,7 +376,7 @@ defs["ImChunkStream_end"][1]["call_args"] = "()" defs["ImChunkStream_end"][1]["cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["defaults"] = {} defs["ImChunkStream_end"][1]["funcname"] = "end" -defs["ImChunkStream_end"][1]["location"] = "imgui_internal:673" +defs["ImChunkStream_end"][1]["location"] = "imgui_internal:684" defs["ImChunkStream_end"][1]["ov_cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["ret"] = "T*" defs["ImChunkStream_end"][1]["signature"] = "()" @@ -398,7 +398,7 @@ defs["ImChunkStream_next_chunk"][1]["call_args"] = "(p)" defs["ImChunkStream_next_chunk"][1]["cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["defaults"] = {} defs["ImChunkStream_next_chunk"][1]["funcname"] = "next_chunk" -defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:671" +defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:682" defs["ImChunkStream_next_chunk"][1]["ov_cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["ret"] = "T*" defs["ImChunkStream_next_chunk"][1]["signature"] = "(T*)" @@ -420,7 +420,7 @@ defs["ImChunkStream_offset_from_ptr"][1]["call_args"] = "(p)" defs["ImChunkStream_offset_from_ptr"][1]["cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["defaults"] = {} defs["ImChunkStream_offset_from_ptr"][1]["funcname"] = "offset_from_ptr" -defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:674" +defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:685" defs["ImChunkStream_offset_from_ptr"][1]["ov_cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["ret"] = "int" defs["ImChunkStream_offset_from_ptr"][1]["signature"] = "(const T*)" @@ -442,7 +442,7 @@ defs["ImChunkStream_ptr_from_offset"][1]["call_args"] = "(off)" defs["ImChunkStream_ptr_from_offset"][1]["cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["defaults"] = {} defs["ImChunkStream_ptr_from_offset"][1]["funcname"] = "ptr_from_offset" -defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:675" +defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:686" defs["ImChunkStream_ptr_from_offset"][1]["ov_cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["ret"] = "T*" defs["ImChunkStream_ptr_from_offset"][1]["signature"] = "(int)" @@ -461,7 +461,7 @@ defs["ImChunkStream_size"][1]["call_args"] = "()" defs["ImChunkStream_size"][1]["cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["defaults"] = {} defs["ImChunkStream_size"][1]["funcname"] = "size" -defs["ImChunkStream_size"][1]["location"] = "imgui_internal:668" +defs["ImChunkStream_size"][1]["location"] = "imgui_internal:679" defs["ImChunkStream_size"][1]["ov_cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["ret"] = "int" defs["ImChunkStream_size"][1]["signature"] = "()const" @@ -484,7 +484,7 @@ defs["ImChunkStream_swap"][1]["call_args"] = "(*rhs)" defs["ImChunkStream_swap"][1]["cimguiname"] = "ImChunkStream_swap" defs["ImChunkStream_swap"][1]["defaults"] = {} defs["ImChunkStream_swap"][1]["funcname"] = "swap" -defs["ImChunkStream_swap"][1]["location"] = "imgui_internal:676" +defs["ImChunkStream_swap"][1]["location"] = "imgui_internal:687" defs["ImChunkStream_swap"][1]["ov_cimguiname"] = "ImChunkStream_swap" defs["ImChunkStream_swap"][1]["ret"] = "void" defs["ImChunkStream_swap"][1]["signature"] = "(ImChunkStream*)" @@ -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:2358" +defs["ImColor_HSV"][1]["location"] = "imgui:2361" 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:2348" +defs["ImColor_ImColor"][1]["location"] = "imgui:2351" 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"] = "255" defs["ImColor_ImColor"][2]["funcname"] = "ImColor" -defs["ImColor_ImColor"][2]["location"] = "imgui:2349" +defs["ImColor_ImColor"][2]["location"] = "imgui:2352" defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColor_Int" defs["ImColor_ImColor"][2]["signature"] = "(int,int,int,int)" 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:2350" +defs["ImColor_ImColor"][3]["location"] = "imgui:2353" defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColor_U32" defs["ImColor_ImColor"][3]["signature"] = "(ImU32)" 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"] = "1.0f" defs["ImColor_ImColor"][4]["funcname"] = "ImColor" -defs["ImColor_ImColor"][4]["location"] = "imgui:2351" +defs["ImColor_ImColor"][4]["location"] = "imgui:2354" defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColor_Float" defs["ImColor_ImColor"][4]["signature"] = "(float,float,float,float)" 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:2352" +defs["ImColor_ImColor"][5]["location"] = "imgui:2355" defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColor_Vec4" defs["ImColor_ImColor"][5]["signature"] = "(const ImVec4)" 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:2357" +defs["ImColor_SetHSV"][1]["location"] = "imgui:2360" 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:2406" +defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2409" 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:2403" +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2406" defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -735,7 +735,7 @@ defs["ImDrawDataBuilder_Clear"][1]["call_args"] = "()" defs["ImDrawDataBuilder_Clear"][1]["cimguiname"] = "ImDrawDataBuilder_Clear" defs["ImDrawDataBuilder_Clear"][1]["defaults"] = {} defs["ImDrawDataBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImDrawDataBuilder_Clear"][1]["location"] = "imgui_internal:736" +defs["ImDrawDataBuilder_Clear"][1]["location"] = "imgui_internal:747" defs["ImDrawDataBuilder_Clear"][1]["ov_cimguiname"] = "ImDrawDataBuilder_Clear" defs["ImDrawDataBuilder_Clear"][1]["ret"] = "void" defs["ImDrawDataBuilder_Clear"][1]["signature"] = "()" @@ -753,7 +753,7 @@ defs["ImDrawDataBuilder_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawDataBuilder_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["location"] = "imgui_internal:737" +defs["ImDrawDataBuilder_ClearFreeMemory"][1]["location"] = "imgui_internal:748" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["signature"] = "()" @@ -771,7 +771,7 @@ defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["call_args"] = "()" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["defaults"] = {} defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["funcname"] = "FlattenIntoSingleLayer" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["location"] = "imgui_internal:739" +defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["location"] = "imgui_internal:750" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ov_cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ret"] = "void" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["signature"] = "()" @@ -789,7 +789,7 @@ defs["ImDrawDataBuilder_GetDrawListCount"][1]["call_args"] = "()" defs["ImDrawDataBuilder_GetDrawListCount"][1]["cimguiname"] = "ImDrawDataBuilder_GetDrawListCount" defs["ImDrawDataBuilder_GetDrawListCount"][1]["defaults"] = {} defs["ImDrawDataBuilder_GetDrawListCount"][1]["funcname"] = "GetDrawListCount" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["location"] = "imgui_internal:738" +defs["ImDrawDataBuilder_GetDrawListCount"][1]["location"] = "imgui_internal:749" defs["ImDrawDataBuilder_GetDrawListCount"][1]["ov_cimguiname"] = "ImDrawDataBuilder_GetDrawListCount" defs["ImDrawDataBuilder_GetDrawListCount"][1]["ret"] = "int" defs["ImDrawDataBuilder_GetDrawListCount"][1]["signature"] = "()const" @@ -807,7 +807,7 @@ defs["ImDrawData_Clear"][1]["call_args"] = "()" defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" -defs["ImDrawData_Clear"][1]["location"] = "imgui:2638" +defs["ImDrawData_Clear"][1]["location"] = "imgui:2641" defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" @@ -825,7 +825,7 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["call_args"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" -defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2639" +defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2642" defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" @@ -841,7 +841,7 @@ defs["ImDrawData_ImDrawData"][1]["cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" -defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2637" +defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2640" defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" @@ -861,7 +861,7 @@ defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" -defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2640" +defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2643" defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" @@ -893,7 +893,7 @@ defs["ImDrawListSharedData_ImDrawListSharedData"][1]["cimguiname"] = "ImDrawList defs["ImDrawListSharedData_ImDrawListSharedData"][1]["constructor"] = true defs["ImDrawListSharedData_ImDrawListSharedData"][1]["defaults"] = {} defs["ImDrawListSharedData_ImDrawListSharedData"][1]["funcname"] = "ImDrawListSharedData" -defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:728" +defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:739" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["ov_cimguiname"] = "ImDrawListSharedData_ImDrawListSharedData" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["signature"] = "()" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["stname"] = "ImDrawListSharedData" @@ -913,7 +913,7 @@ defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["call_args"] = "(m defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["cimguiname"] = "ImDrawListSharedData_SetCircleTessellationMaxError" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["defaults"] = {} defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["funcname"] = "SetCircleTessellationMaxError" -defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["location"] = "imgui_internal:729" +defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["location"] = "imgui_internal:740" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ov_cimguiname"] = "ImDrawListSharedData_SetCircleTessellationMaxError" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ret"] = "void" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["signature"] = "(float)" @@ -947,7 +947,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:2451" +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2454" defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -965,7 +965,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:2452" +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2455" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -981,7 +981,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:2449" +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2452" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -1001,7 +1001,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:2454" +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2457" defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -1025,7 +1025,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:2455" +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2458" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -1049,7 +1049,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:2453" +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2456" defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -1066,7 +1066,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:2450" +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2453" defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" @@ -1107,7 +1107,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:2553" +defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:2556" 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)" @@ -1144,7 +1144,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:2554" +defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:2557" 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)" @@ -1168,7 +1168,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:2577" +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2580" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" @@ -1203,7 +1203,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:2545" +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2548" 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)" @@ -1234,7 +1234,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:2546" +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2549" defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1261,7 +1261,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:2552" +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2555" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1279,7 +1279,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:2578" +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2581" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" @@ -1318,7 +1318,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:2560" +defs["ImDrawList_AddImage"][1]["location"] = "imgui:2563" 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)" @@ -1371,7 +1371,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:2561" +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2564" 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)" @@ -1414,7 +1414,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:2562" +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2565" 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)" @@ -1445,7 +1445,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:2537" +defs["ImDrawList_AddLine"][1]["location"] = "imgui:2540" 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)" @@ -1479,7 +1479,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:2547" +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2550" 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)" @@ -1509,7 +1509,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:2548" +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2551" defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1542,7 +1542,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:2551" +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2554" 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)" @@ -1579,7 +1579,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:2541" +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2544" 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)" @@ -1612,7 +1612,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:2542" +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2545" 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)" @@ -1651,7 +1651,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:2538" +defs["ImDrawList_AddRect"][1]["location"] = "imgui:2541" 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)" @@ -1686,7 +1686,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:2539" +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2542" 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)" @@ -1722,7 +1722,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:2540" +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2543" 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)" @@ -1753,7 +1753,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:2549" +defs["ImDrawList_AddText"][1]["location"] = "imgui:2552" 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*)" @@ -1796,7 +1796,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:2550" +defs["ImDrawList_AddText"][2]["location"] = "imgui:2553" 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*)" @@ -1831,7 +1831,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:2543" +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2546" 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)" @@ -1861,7 +1861,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:2544" +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2547" 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)" @@ -1879,7 +1879,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:2588" +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2591" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1900,7 +1900,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:2589" +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2592" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -1921,7 +1921,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:2587" +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2590" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -1939,7 +1939,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:2579" +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2582" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -1960,7 +1960,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:2529" +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2532" defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -1982,7 +1982,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:2528" +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2531" defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -2002,7 +2002,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:2520" +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2523" defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(const ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" @@ -2035,7 +2035,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:2570" +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2573" 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)" @@ -2065,7 +2065,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:2571" +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2574" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -2096,7 +2096,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:2572" +defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:2575" 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)" @@ -2124,7 +2124,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:2573" +defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:2576" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierQuadraticCurveTo" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,int)" @@ -2142,7 +2142,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:2565" +defs["ImDrawList_PathClear"][1]["location"] = "imgui:2568" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" @@ -2163,7 +2163,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:2568" +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2571" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -2184,7 +2184,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:2566" +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2569" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -2205,7 +2205,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:2567" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2570" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -2237,7 +2237,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:2574" +defs["ImDrawList_PathRect"][1]["location"] = "imgui:2577" 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)" @@ -2266,7 +2266,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:2569" +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2572" defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,ImDrawFlags,float)" @@ -2284,7 +2284,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:2525" +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2528" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -2302,7 +2302,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:2527" +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2530" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -2347,7 +2347,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:2598" +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2601" 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)" @@ -2374,7 +2374,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:2596" +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2599" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2407,7 +2407,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:2597" +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2600" 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)" @@ -2431,7 +2431,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:2594" +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2597" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -2455,7 +2455,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:2595" +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2598" defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -2482,7 +2482,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:2601" +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2604" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2503,7 +2503,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:2600" +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2603" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -2530,7 +2530,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:2599" +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2602" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2558,7 +2558,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:2523" +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2526" defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(ImVec2,ImVec2,bool)" @@ -2576,7 +2576,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:2524" +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2527" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -2597,7 +2597,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:2526" +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2529" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -2618,7 +2618,7 @@ defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["call_args"] = "(radius)" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["defaults"] = {} defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["funcname"] = "_CalcCircleAutoSegmentCount" -defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:2616" +defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:2619" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ov_cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ret"] = "int" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["signature"] = "(float)const" @@ -2636,7 +2636,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:2610" +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2613" defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -2654,7 +2654,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:2613" +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2616" defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -2672,7 +2672,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:2614" +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2617" defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -2690,7 +2690,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:2615" +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2618" defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -2723,7 +2723,7 @@ defs["ImDrawList__PathArcToFastEx"][1]["call_args"] = "(center,radius,a_min_samp defs["ImDrawList__PathArcToFastEx"][1]["cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["defaults"] = {} defs["ImDrawList__PathArcToFastEx"][1]["funcname"] = "_PathArcToFastEx" -defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:2617" +defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:2620" defs["ImDrawList__PathArcToFastEx"][1]["ov_cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["ret"] = "void" defs["ImDrawList__PathArcToFastEx"][1]["signature"] = "(const ImVec2,float,int,int,int)" @@ -2756,7 +2756,7 @@ defs["ImDrawList__PathArcToN"][1]["call_args"] = "(center,radius,a_min,a_max,num defs["ImDrawList__PathArcToN"][1]["cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["defaults"] = {} defs["ImDrawList__PathArcToN"][1]["funcname"] = "_PathArcToN" -defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:2618" +defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:2621" defs["ImDrawList__PathArcToN"][1]["ov_cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["ret"] = "void" defs["ImDrawList__PathArcToN"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2774,7 +2774,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:2611" +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2614" defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2792,7 +2792,7 @@ 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:2609" +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2612" defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" @@ -2810,7 +2810,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:2612" +defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:2615" defs["ImDrawList__TryMergeDrawCmds"][1]["ov_cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["ret"] = "void" defs["ImDrawList__TryMergeDrawCmds"][1]["signature"] = "()" @@ -2827,7 +2827,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:2522" +defs["ImDrawList_destroy"][1]["location"] = "imgui:2525" defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" @@ -2844,7 +2844,7 @@ defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["cimguiname"] = "ImFontAt defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["constructor"] = true defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["funcname"] = "ImFontAtlasCustomRect" -defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2711" +defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2714" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_ImFontAtlasCustomRect" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["signature"] = "()" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["stname"] = "ImFontAtlasCustomRect" @@ -2861,7 +2861,7 @@ defs["ImFontAtlasCustomRect_IsPacked"][1]["call_args"] = "()" defs["ImFontAtlasCustomRect_IsPacked"][1]["cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_IsPacked"][1]["funcname"] = "IsPacked" -defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2712" +defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2715" defs["ImFontAtlasCustomRect_IsPacked"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["ret"] = "bool" defs["ImFontAtlasCustomRect_IsPacked"][1]["signature"] = "()const" @@ -2914,7 +2914,7 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["cimguiname"] = "ImFontAtlas_AddCu defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" -defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2795" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2798" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" @@ -2938,7 +2938,7 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["call_args"] = "(width,height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" -defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2794" +defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2797" defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(int,int)" @@ -2959,7 +2959,7 @@ defs["ImFontAtlas_AddFont"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" -defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2745" +defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2748" defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" @@ -2981,7 +2981,7 @@ defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefaul defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" -defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2746" +defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2749" defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -3013,7 +3013,7 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2747" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2750" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -3045,7 +3045,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2750" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2753" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -3080,7 +3080,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2749" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2752" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -3115,7 +3115,7 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2748" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2751" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -3133,7 +3133,7 @@ defs["ImFontAtlas_Build"][1]["call_args"] = "()" defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" -defs["ImFontAtlas_Build"][1]["location"] = "imgui:2761" +defs["ImFontAtlas_Build"][1]["location"] = "imgui:2764" defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" @@ -3160,7 +3160,7 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["call_args"] = "(rect,out_uv_min,out_uv_ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" -defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2799" +defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2802" defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const" @@ -3178,7 +3178,7 @@ defs["ImFontAtlas_Clear"][1]["call_args"] = "()" defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" -defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2754" +defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2757" defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" @@ -3196,7 +3196,7 @@ defs["ImFontAtlas_ClearFonts"][1]["call_args"] = "()" defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" -defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2753" +defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2756" defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" @@ -3214,7 +3214,7 @@ defs["ImFontAtlas_ClearInputData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" -defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2751" +defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2754" defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" @@ -3232,7 +3232,7 @@ defs["ImFontAtlas_ClearTexData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" -defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2752" +defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2755" defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" @@ -3253,7 +3253,7 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["call_args"] = "(index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" -defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2796" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2799" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "ImFontAtlasCustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" @@ -3271,7 +3271,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" -defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2777" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2780" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" @@ -3289,7 +3289,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" -defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2778" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2781" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" @@ -3307,7 +3307,7 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" -defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2779" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2782" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" @@ -3325,7 +3325,7 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" -defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:2774" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:2777" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" @@ -3343,7 +3343,7 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" -defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:2776" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:2779" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" @@ -3361,7 +3361,7 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" -defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:2775" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:2778" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" @@ -3379,7 +3379,7 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" -defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:2780" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:2783" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" @@ -3397,7 +3397,7 @@ defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["funcname"] = "GetGlyphRangesVietnamese" -defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:2781" +defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:2784" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["signature"] = "()" @@ -3430,7 +3430,7 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["call_args"] = "(cursor,out_offset, defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" -defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:2800" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:2803" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" @@ -3461,7 +3461,7 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:2762" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:2765" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3492,7 +3492,7 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:2763" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:2766" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3508,7 +3508,7 @@ defs["ImFontAtlas_ImFontAtlas"][1]["cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" -defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:2743" +defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:2746" defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" @@ -3525,7 +3525,7 @@ defs["ImFontAtlas_IsBuilt"][1]["call_args"] = "()" defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" -defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:2764" +defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:2767" defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()const" @@ -3546,7 +3546,7 @@ defs["ImFontAtlas_SetTexID"][1]["call_args"] = "(id)" defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" -defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:2765" +defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:2768" defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" @@ -3563,7 +3563,7 @@ defs["ImFontAtlas_destroy"][1]["call_args"] = "(self)" defs["ImFontAtlas_destroy"][1]["cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["defaults"] = {} defs["ImFontAtlas_destroy"][1]["destructor"] = true -defs["ImFontAtlas_destroy"][1]["location"] = "imgui:2744" +defs["ImFontAtlas_destroy"][1]["location"] = "imgui:2747" defs["ImFontAtlas_destroy"][1]["ov_cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["realdestructor"] = true defs["ImFontAtlas_destroy"][1]["ret"] = "void" @@ -3580,7 +3580,7 @@ defs["ImFontConfig_ImFontConfig"][1]["cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" -defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2671" +defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2674" defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" @@ -3616,7 +3616,7 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["call_args"] = "(c)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" -defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2696" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2699" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" @@ -3637,7 +3637,7 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["call_args"] = "(ranges)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" -defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2698" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2701" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" @@ -3662,7 +3662,7 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBu defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" -defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2697" +defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2700" defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -3683,7 +3683,7 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["call_args"] = "(out_ranges)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" -defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2699" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2702" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" @@ -3701,7 +3701,7 @@ defs["ImFontGlyphRangesBuilder_Clear"][1]["call_args"] = "()" defs["ImFontGlyphRangesBuilder_Clear"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2693" +defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2696" defs["ImFontGlyphRangesBuilder_Clear"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_Clear"][1]["signature"] = "()" @@ -3722,7 +3722,7 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" -defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2694" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2697" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(size_t)const" @@ -3738,7 +3738,7 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["cimguiname"] = "Im defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" -defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2692" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2695" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -3758,7 +3758,7 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" -defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2695" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2698" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(size_t)" @@ -3825,7 +3825,7 @@ defs["ImFont_AddGlyph"][1]["call_args"] = "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,ad defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" -defs["ImFont_AddGlyph"][1]["location"] = "imgui:2888" +defs["ImFont_AddGlyph"][1]["location"] = "imgui:2891" defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" defs["ImFont_AddGlyph"][1]["signature"] = "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" @@ -3853,7 +3853,7 @@ defs["ImFont_AddRemapChar"][1]["cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" -defs["ImFont_AddRemapChar"][1]["location"] = "imgui:2889" +defs["ImFont_AddRemapChar"][1]["location"] = "imgui:2892" defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" @@ -3871,7 +3871,7 @@ defs["ImFont_BuildLookupTable"][1]["call_args"] = "()" defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" -defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:2885" +defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:2888" defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" @@ -3912,7 +3912,7 @@ defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" -defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:2879" +defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:2882" defs["ImFont_CalcTextSizeA"][1]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "void" @@ -3943,7 +3943,7 @@ defs["ImFont_CalcWordWrapPositionA"][1]["call_args"] = "(scale,text,text_end,wra defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" -defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:2880" +defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:2883" defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)const" @@ -3961,7 +3961,7 @@ defs["ImFont_ClearOutputData"][1]["call_args"] = "()" defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" -defs["ImFont_ClearOutputData"][1]["location"] = "imgui:2886" +defs["ImFont_ClearOutputData"][1]["location"] = "imgui:2889" defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" @@ -3982,7 +3982,7 @@ defs["ImFont_FindGlyph"][1]["call_args"] = "(c)" defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" -defs["ImFont_FindGlyph"][1]["location"] = "imgui:2871" +defs["ImFont_FindGlyph"][1]["location"] = "imgui:2874" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)const" @@ -4003,7 +4003,7 @@ defs["ImFont_FindGlyphNoFallback"][1]["call_args"] = "(c)" defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" -defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:2872" +defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:2875" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)const" @@ -4024,7 +4024,7 @@ defs["ImFont_GetCharAdvance"][1]["call_args"] = "(c)" defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" -defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:2873" +defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:2876" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)const" @@ -4042,7 +4042,7 @@ defs["ImFont_GetDebugName"][1]["call_args"] = "()" defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" -defs["ImFont_GetDebugName"][1]["location"] = "imgui:2875" +defs["ImFont_GetDebugName"][1]["location"] = "imgui:2878" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()const" @@ -4063,7 +4063,7 @@ defs["ImFont_GrowIndex"][1]["call_args"] = "(new_size)" defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" -defs["ImFont_GrowIndex"][1]["location"] = "imgui:2887" +defs["ImFont_GrowIndex"][1]["location"] = "imgui:2890" defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" @@ -4079,7 +4079,7 @@ defs["ImFont_ImFont"][1]["cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" -defs["ImFont_ImFont"][1]["location"] = "imgui:2869" +defs["ImFont_ImFont"][1]["location"] = "imgui:2872" defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" @@ -4102,7 +4102,7 @@ defs["ImFont_IsGlyphRangeUnused"][1]["call_args"] = "(c_begin,c_last)" defs["ImFont_IsGlyphRangeUnused"][1]["cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["defaults"] = {} defs["ImFont_IsGlyphRangeUnused"][1]["funcname"] = "IsGlyphRangeUnused" -defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:2891" +defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:2894" defs["ImFont_IsGlyphRangeUnused"][1]["ov_cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["ret"] = "bool" defs["ImFont_IsGlyphRangeUnused"][1]["signature"] = "(unsigned int,unsigned int)" @@ -4120,7 +4120,7 @@ defs["ImFont_IsLoaded"][1]["call_args"] = "()" defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" -defs["ImFont_IsLoaded"][1]["location"] = "imgui:2874" +defs["ImFont_IsLoaded"][1]["location"] = "imgui:2877" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()const" @@ -4153,7 +4153,7 @@ defs["ImFont_RenderChar"][1]["call_args"] = "(draw_list,size,pos,col,c)" defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" -defs["ImFont_RenderChar"][1]["location"] = "imgui:2881" +defs["ImFont_RenderChar"][1]["location"] = "imgui:2884" defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const" @@ -4200,7 +4200,7 @@ defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" -defs["ImFont_RenderText"][1]["location"] = "imgui:2882" +defs["ImFont_RenderText"][1]["location"] = "imgui:2885" defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const" @@ -4224,7 +4224,7 @@ defs["ImFont_SetGlyphVisible"][1]["call_args"] = "(c,visible)" defs["ImFont_SetGlyphVisible"][1]["cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["defaults"] = {} defs["ImFont_SetGlyphVisible"][1]["funcname"] = "SetGlyphVisible" -defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:2890" +defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:2893" defs["ImFont_SetGlyphVisible"][1]["ov_cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["ret"] = "void" defs["ImFont_SetGlyphVisible"][1]["signature"] = "(ImWchar,bool)" @@ -4241,7 +4241,7 @@ defs["ImFont_destroy"][1]["call_args"] = "(self)" defs["ImFont_destroy"][1]["cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["defaults"] = {} defs["ImFont_destroy"][1]["destructor"] = true -defs["ImFont_destroy"][1]["location"] = "imgui:2870" +defs["ImFont_destroy"][1]["location"] = "imgui:2873" defs["ImFont_destroy"][1]["ov_cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["realdestructor"] = true defs["ImFont_destroy"][1]["ret"] = "void" @@ -4258,7 +4258,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:979" +defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:990" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["ov_cimguiname"] = "ImGuiComboPreviewData_ImGuiComboPreviewData" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["signature"] = "()" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["stname"] = "ImGuiComboPreviewData" @@ -4289,7 +4289,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:1622" +defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:1663" defs["ImGuiContextHook_ImGuiContextHook"][1]["ov_cimguiname"] = "ImGuiContextHook_ImGuiContextHook" defs["ImGuiContextHook_ImGuiContextHook"][1]["signature"] = "()" defs["ImGuiContextHook_ImGuiContextHook"][1]["stname"] = "ImGuiContextHook" @@ -4323,7 +4323,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:1901" +defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:1941" defs["ImGuiContext_ImGuiContext"][1]["ov_cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["signature"] = "(ImFontAtlas*)" defs["ImGuiContext_ImGuiContext"][1]["stname"] = "ImGuiContext" @@ -4354,7 +4354,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:1467" +defs["ImGuiDockContext_ImGuiDockContext"][1]["location"] = "imgui_internal:1508" defs["ImGuiDockContext_ImGuiDockContext"][1]["ov_cimguiname"] = "ImGuiDockContext_ImGuiDockContext" defs["ImGuiDockContext_ImGuiDockContext"][1]["signature"] = "()" defs["ImGuiDockContext_ImGuiDockContext"][1]["stname"] = "ImGuiDockContext" @@ -4388,7 +4388,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:1424" +defs["ImGuiDockNode_ImGuiDockNode"][1]["location"] = "imgui_internal:1465" defs["ImGuiDockNode_ImGuiDockNode"][1]["ov_cimguiname"] = "ImGuiDockNode_ImGuiDockNode" defs["ImGuiDockNode_ImGuiDockNode"][1]["signature"] = "(ImGuiID)" defs["ImGuiDockNode_ImGuiDockNode"][1]["stname"] = "ImGuiDockNode" @@ -4405,7 +4405,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:1429" +defs["ImGuiDockNode_IsCentralNode"][1]["location"] = "imgui_internal:1470" defs["ImGuiDockNode_IsCentralNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsCentralNode" defs["ImGuiDockNode_IsCentralNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsCentralNode"][1]["signature"] = "()const" @@ -4423,7 +4423,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:1427" +defs["ImGuiDockNode_IsDockSpace"][1]["location"] = "imgui_internal:1468" defs["ImGuiDockNode_IsDockSpace"][1]["ov_cimguiname"] = "ImGuiDockNode_IsDockSpace" defs["ImGuiDockNode_IsDockSpace"][1]["ret"] = "bool" defs["ImGuiDockNode_IsDockSpace"][1]["signature"] = "()const" @@ -4441,7 +4441,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:1434" +defs["ImGuiDockNode_IsEmpty"][1]["location"] = "imgui_internal:1475" defs["ImGuiDockNode_IsEmpty"][1]["ov_cimguiname"] = "ImGuiDockNode_IsEmpty" defs["ImGuiDockNode_IsEmpty"][1]["ret"] = "bool" defs["ImGuiDockNode_IsEmpty"][1]["signature"] = "()const" @@ -4459,7 +4459,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:1428" +defs["ImGuiDockNode_IsFloatingNode"][1]["location"] = "imgui_internal:1469" defs["ImGuiDockNode_IsFloatingNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsFloatingNode" defs["ImGuiDockNode_IsFloatingNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsFloatingNode"][1]["signature"] = "()const" @@ -4477,7 +4477,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:1430" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["location"] = "imgui_internal:1471" defs["ImGuiDockNode_IsHiddenTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsHiddenTabBar" defs["ImGuiDockNode_IsHiddenTabBar"][1]["ret"] = "bool" defs["ImGuiDockNode_IsHiddenTabBar"][1]["signature"] = "()const" @@ -4495,7 +4495,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:1433" +defs["ImGuiDockNode_IsLeafNode"][1]["location"] = "imgui_internal:1474" defs["ImGuiDockNode_IsLeafNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsLeafNode" defs["ImGuiDockNode_IsLeafNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsLeafNode"][1]["signature"] = "()const" @@ -4513,7 +4513,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:1431" +defs["ImGuiDockNode_IsNoTabBar"][1]["location"] = "imgui_internal:1472" defs["ImGuiDockNode_IsNoTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsNoTabBar" defs["ImGuiDockNode_IsNoTabBar"][1]["ret"] = "bool" defs["ImGuiDockNode_IsNoTabBar"][1]["signature"] = "()const" @@ -4531,7 +4531,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:1426" +defs["ImGuiDockNode_IsRootNode"][1]["location"] = "imgui_internal:1467" defs["ImGuiDockNode_IsRootNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsRootNode" defs["ImGuiDockNode_IsRootNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsRootNode"][1]["signature"] = "()const" @@ -4549,7 +4549,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:1432" +defs["ImGuiDockNode_IsSplitNode"][1]["location"] = "imgui_internal:1473" defs["ImGuiDockNode_IsSplitNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsSplitNode" defs["ImGuiDockNode_IsSplitNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsSplitNode"][1]["signature"] = "()const" @@ -4570,7 +4570,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:1435" +defs["ImGuiDockNode_Rect"][1]["location"] = "imgui_internal:1476" defs["ImGuiDockNode_Rect"][1]["nonUDT"] = 1 defs["ImGuiDockNode_Rect"][1]["ov_cimguiname"] = "ImGuiDockNode_Rect" defs["ImGuiDockNode_Rect"][1]["ret"] = "void" @@ -4592,7 +4592,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:1437" +defs["ImGuiDockNode_SetLocalFlags"][1]["location"] = "imgui_internal:1478" defs["ImGuiDockNode_SetLocalFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_SetLocalFlags" defs["ImGuiDockNode_SetLocalFlags"][1]["ret"] = "void" defs["ImGuiDockNode_SetLocalFlags"][1]["signature"] = "(ImGuiDockNodeFlags)" @@ -4610,7 +4610,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:1438" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["location"] = "imgui_internal:1479" defs["ImGuiDockNode_UpdateMergedFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_UpdateMergedFlags" defs["ImGuiDockNode_UpdateMergedFlags"][1]["ret"] = "void" defs["ImGuiDockNode_UpdateMergedFlags"][1]["signature"] = "()" @@ -4627,7 +4627,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:1425" +defs["ImGuiDockNode_destroy"][1]["location"] = "imgui_internal:1466" defs["ImGuiDockNode_destroy"][1]["ov_cimguiname"] = "ImGuiDockNode_destroy" defs["ImGuiDockNode_destroy"][1]["realdestructor"] = true defs["ImGuiDockNode_destroy"][1]["ret"] = "void" @@ -4764,7 +4764,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:2037" +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2038" defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -4797,7 +4797,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:2078" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2079" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["signature"] = "()" @@ -4821,7 +4821,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:2075" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2076" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -4839,7 +4839,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:2079" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2080" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -4855,7 +4855,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:2074" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2075" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -4882,7 +4882,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:2076" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2077" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" @@ -4900,7 +4900,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:2077" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2078" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_SelectAll"][1]["signature"] = "()" @@ -4934,7 +4934,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:1039" +defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1048" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearFreeMemory"][1]["signature"] = "()" @@ -4952,7 +4952,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:1048" +defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1057" defs["ImGuiInputTextState_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearSelection"][1]["signature"] = "()" @@ -4970,7 +4970,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:1038" +defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1047" defs["ImGuiInputTextState_ClearText"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearText"][1]["signature"] = "()" @@ -4988,7 +4988,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:1045" +defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1054" defs["ImGuiInputTextState_CursorAnimReset"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorAnimReset"][1]["signature"] = "()" @@ -5006,7 +5006,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:1046" +defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1055" defs["ImGuiInputTextState_CursorClamp"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorClamp"][1]["signature"] = "()" @@ -5024,7 +5024,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:1049" +defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1058" defs["ImGuiInputTextState_GetCursorPos"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["ret"] = "int" defs["ImGuiInputTextState_GetCursorPos"][1]["signature"] = "()const" @@ -5042,7 +5042,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:1041" +defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "imgui_internal:1050" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["signature"] = "()const" @@ -5060,7 +5060,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:1051" +defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1060" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionEnd"][1]["signature"] = "()const" @@ -5078,7 +5078,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:1050" +defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1059" defs["ImGuiInputTextState_GetSelectionStart"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionStart"][1]["signature"] = "()const" @@ -5096,7 +5096,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:1040" +defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "imgui_internal:1049" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["signature"] = "()const" @@ -5114,7 +5114,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:1047" +defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1056" defs["ImGuiInputTextState_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextState_HasSelection"][1]["signature"] = "()const" @@ -5130,7 +5130,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:1037" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1046" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["ov_cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["stname"] = "ImGuiInputTextState" @@ -5150,7 +5150,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:1042" +defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1051" defs["ImGuiInputTextState_OnKeyPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["ret"] = "void" defs["ImGuiInputTextState_OnKeyPressed"][1]["signature"] = "(int)" @@ -5168,7 +5168,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:1052" +defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1061" defs["ImGuiInputTextState_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_SelectAll"][1]["signature"] = "()" @@ -5200,7 +5200,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:1142" +defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1151" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["ov_cimguiname"] = "ImGuiLastItemData_ImGuiLastItemData" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["signature"] = "()" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["stname"] = "ImGuiLastItemData" @@ -5221,6 +5221,108 @@ defs["ImGuiLastItemData_destroy"][1]["ret"] = "void" defs["ImGuiLastItemData_destroy"][1]["signature"] = "(ImGuiLastItemData*)" defs["ImGuiLastItemData_destroy"][1]["stname"] = "ImGuiLastItemData" defs["ImGuiLastItemData_destroy"]["(ImGuiLastItemData*)"] = defs["ImGuiLastItemData_destroy"][1] +defs["ImGuiListClipperData_ImGuiListClipperData"] = {} +defs["ImGuiListClipperData_ImGuiListClipperData"][1] = {} +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["args"] = "()" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["argsT"] = {} +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["argsoriginal"] = "()" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["call_args"] = "()" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["cimguiname"] = "ImGuiListClipperData_ImGuiListClipperData" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["constructor"] = true +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["defaults"] = {} +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["funcname"] = "ImGuiListClipperData" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1219" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["ov_cimguiname"] = "ImGuiListClipperData_ImGuiListClipperData" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["signature"] = "()" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["stname"] = "ImGuiListClipperData" +defs["ImGuiListClipperData_ImGuiListClipperData"]["()"] = defs["ImGuiListClipperData_ImGuiListClipperData"][1] +defs["ImGuiListClipperData_Reset"] = {} +defs["ImGuiListClipperData_Reset"][1] = {} +defs["ImGuiListClipperData_Reset"][1]["args"] = "(ImGuiListClipperData* self,ImGuiListClipper* clipper)" +defs["ImGuiListClipperData_Reset"][1]["argsT"] = {} +defs["ImGuiListClipperData_Reset"][1]["argsT"][1] = {} +defs["ImGuiListClipperData_Reset"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipperData_Reset"][1]["argsT"][1]["type"] = "ImGuiListClipperData*" +defs["ImGuiListClipperData_Reset"][1]["argsT"][2] = {} +defs["ImGuiListClipperData_Reset"][1]["argsT"][2]["name"] = "clipper" +defs["ImGuiListClipperData_Reset"][1]["argsT"][2]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipperData_Reset"][1]["argsoriginal"] = "(ImGuiListClipper* clipper)" +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:1220" +defs["ImGuiListClipperData_Reset"][1]["ov_cimguiname"] = "ImGuiListClipperData_Reset" +defs["ImGuiListClipperData_Reset"][1]["ret"] = "void" +defs["ImGuiListClipperData_Reset"][1]["signature"] = "(ImGuiListClipper*)" +defs["ImGuiListClipperData_Reset"][1]["stname"] = "ImGuiListClipperData" +defs["ImGuiListClipperData_Reset"]["(ImGuiListClipper*)"] = defs["ImGuiListClipperData_Reset"][1] +defs["ImGuiListClipperData_destroy"] = {} +defs["ImGuiListClipperData_destroy"][1] = {} +defs["ImGuiListClipperData_destroy"][1]["args"] = "(ImGuiListClipperData* self)" +defs["ImGuiListClipperData_destroy"][1]["argsT"] = {} +defs["ImGuiListClipperData_destroy"][1]["argsT"][1] = {} +defs["ImGuiListClipperData_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipperData_destroy"][1]["argsT"][1]["type"] = "ImGuiListClipperData*" +defs["ImGuiListClipperData_destroy"][1]["call_args"] = "(self)" +defs["ImGuiListClipperData_destroy"][1]["cimguiname"] = "ImGuiListClipperData_destroy" +defs["ImGuiListClipperData_destroy"][1]["defaults"] = {} +defs["ImGuiListClipperData_destroy"][1]["destructor"] = true +defs["ImGuiListClipperData_destroy"][1]["ov_cimguiname"] = "ImGuiListClipperData_destroy" +defs["ImGuiListClipperData_destroy"][1]["ret"] = "void" +defs["ImGuiListClipperData_destroy"][1]["signature"] = "(ImGuiListClipperData*)" +defs["ImGuiListClipperData_destroy"][1]["stname"] = "ImGuiListClipperData" +defs["ImGuiListClipperData_destroy"]["(ImGuiListClipperData*)"] = defs["ImGuiListClipperData_destroy"][1] +defs["ImGuiListClipperRange_FromIndices"] = {} +defs["ImGuiListClipperRange_FromIndices"][1] = {} +defs["ImGuiListClipperRange_FromIndices"][1]["args"] = "(int min,int max)" +defs["ImGuiListClipperRange_FromIndices"][1]["argsT"] = {} +defs["ImGuiListClipperRange_FromIndices"][1]["argsT"][1] = {} +defs["ImGuiListClipperRange_FromIndices"][1]["argsT"][1]["name"] = "min" +defs["ImGuiListClipperRange_FromIndices"][1]["argsT"][1]["type"] = "int" +defs["ImGuiListClipperRange_FromIndices"][1]["argsT"][2] = {} +defs["ImGuiListClipperRange_FromIndices"][1]["argsT"][2]["name"] = "max" +defs["ImGuiListClipperRange_FromIndices"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipperRange_FromIndices"][1]["argsoriginal"] = "(int min,int max)" +defs["ImGuiListClipperRange_FromIndices"][1]["call_args"] = "(min,max)" +defs["ImGuiListClipperRange_FromIndices"][1]["cimguiname"] = "ImGuiListClipperRange_FromIndices" +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:1206" +defs["ImGuiListClipperRange_FromIndices"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromIndices" +defs["ImGuiListClipperRange_FromIndices"][1]["ret"] = "ImGuiListClipperRange" +defs["ImGuiListClipperRange_FromIndices"][1]["signature"] = "(int,int)" +defs["ImGuiListClipperRange_FromIndices"][1]["stname"] = "ImGuiListClipperRange" +defs["ImGuiListClipperRange_FromIndices"]["(int,int)"] = defs["ImGuiListClipperRange_FromIndices"][1] +defs["ImGuiListClipperRange_FromPositions"] = {} +defs["ImGuiListClipperRange_FromPositions"][1] = {} +defs["ImGuiListClipperRange_FromPositions"][1]["args"] = "(float y1,float y2,int off_min,int off_max)" +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"] = {} +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][1] = {} +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][1]["name"] = "y1" +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][1]["type"] = "float" +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][2] = {} +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][2]["name"] = "y2" +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][2]["type"] = "float" +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][3] = {} +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][3]["name"] = "off_min" +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][3]["type"] = "int" +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][4] = {} +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][4]["name"] = "off_max" +defs["ImGuiListClipperRange_FromPositions"][1]["argsT"][4]["type"] = "int" +defs["ImGuiListClipperRange_FromPositions"][1]["argsoriginal"] = "(float y1,float y2,int off_min,int off_max)" +defs["ImGuiListClipperRange_FromPositions"][1]["call_args"] = "(y1,y2,off_min,off_max)" +defs["ImGuiListClipperRange_FromPositions"][1]["cimguiname"] = "ImGuiListClipperRange_FromPositions" +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:1207" +defs["ImGuiListClipperRange_FromPositions"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromPositions" +defs["ImGuiListClipperRange_FromPositions"][1]["ret"] = "ImGuiListClipperRange" +defs["ImGuiListClipperRange_FromPositions"][1]["signature"] = "(float,float,int,int)" +defs["ImGuiListClipperRange_FromPositions"][1]["stname"] = "ImGuiListClipperRange" +defs["ImGuiListClipperRange_FromPositions"]["(float,float,int,int)"] = defs["ImGuiListClipperRange_FromPositions"][1] defs["ImGuiListClipper_Begin"] = {} defs["ImGuiListClipper_Begin"][1] = {} defs["ImGuiListClipper_Begin"][1]["args"] = "(ImGuiListClipper* self,int items_count,float items_height)" @@ -5264,6 +5366,30 @@ defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" defs["ImGuiListClipper_End"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_End"]["()"] = defs["ImGuiListClipper_End"][1] +defs["ImGuiListClipper_ForceDisplayRangeByIndices"] = {} +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1] = {} +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["args"] = "(ImGuiListClipper* self,int item_min,int item_max)" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"] = {} +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1] = {} +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2] = {} +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2]["name"] = "item_min" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3] = {} +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3]["name"] = "item_max" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3]["type"] = "int" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsoriginal"] = "(int item_min,int item_max)" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["call_args"] = "(item_min,item_max)" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["defaults"] = {} +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["funcname"] = "ForceDisplayRangeByIndices" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["location"] = "imgui:2317" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ov_cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ret"] = "void" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["signature"] = "(int,int)" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"]["(int,int)"] = defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1] defs["ImGuiListClipper_ImGuiListClipper"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["args"] = "()" @@ -5274,7 +5400,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:2307" +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2310" defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" @@ -5308,7 +5434,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:2308" +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2311" defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" @@ -5330,7 +5456,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:1013" +defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1024" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ov_cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ret"] = "void" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["signature"] = "(bool)" @@ -5360,7 +5486,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:1012" +defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1023" defs["ImGuiMenuColumns_DeclColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["ret"] = "float" defs["ImGuiMenuColumns_DeclColumns"][1]["signature"] = "(float,float,float,float)" @@ -5376,7 +5502,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:1010" +defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1021" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_ImGuiMenuColumns" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["signature"] = "()" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["stname"] = "ImGuiMenuColumns" @@ -5399,7 +5525,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:1011" +defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1022" defs["ImGuiMenuColumns_Update"][1]["ov_cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["ret"] = "void" defs["ImGuiMenuColumns_Update"][1]["signature"] = "(float,bool)" @@ -5431,7 +5557,7 @@ defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["cimguiname"] = "ImGuiMetricsCo defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["constructor"] = true defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["defaults"] = {} defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["funcname"] = "ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["location"] = "imgui_internal:1572" +defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["location"] = "imgui_internal:1613" defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["ov_cimguiname"] = "ImGuiMetricsConfig_ImGuiMetricsConfig" defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["signature"] = "()" defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["stname"] = "ImGuiMetricsConfig" @@ -5464,7 +5590,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:1265" +defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1305" defs["ImGuiNavItemData_Clear"][1]["ov_cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["ret"] = "void" defs["ImGuiNavItemData_Clear"][1]["signature"] = "()" @@ -5480,7 +5606,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:1264" +defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1304" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["ov_cimguiname"] = "ImGuiNavItemData_ImGuiNavItemData" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["signature"] = "()" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["stname"] = "ImGuiNavItemData" @@ -5513,7 +5639,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:1129" +defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1138" defs["ImGuiNextItemData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextItemData_ClearFlags"][1]["signature"] = "()" @@ -5529,7 +5655,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:1128" +defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1137" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["ov_cimguiname"] = "ImGuiNextItemData_ImGuiNextItemData" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["signature"] = "()" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["stname"] = "ImGuiNextItemData" @@ -5562,7 +5688,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:1110" +defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1119" defs["ImGuiNextWindowData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextWindowData_ClearFlags"][1]["signature"] = "()" @@ -5578,7 +5704,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:1109" +defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1118" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ImGuiNextWindowData" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["signature"] = "()" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["stname"] = "ImGuiNextWindowData" @@ -5609,7 +5735,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:1300" +defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1340" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["ov_cimguiname"] = "ImGuiOldColumnData_ImGuiOldColumnData" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["signature"] = "()" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["stname"] = "ImGuiOldColumnData" @@ -5640,7 +5766,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:1321" +defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1361" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["ov_cimguiname"] = "ImGuiOldColumns_ImGuiOldColumns" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["signature"] = "()" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["stname"] = "ImGuiOldColumns" @@ -5671,7 +5797,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:2175" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2176" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -5704,7 +5830,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:2129" +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2130" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -5720,7 +5846,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:2128" +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2129" defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -5740,7 +5866,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:2130" +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2131" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -5758,7 +5884,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:2132" +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2133" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -5776,7 +5902,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:2131" +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2132" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -5808,7 +5934,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:3065" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3068" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["ov_cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["signature"] = "()" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["stname"] = "ImGuiPlatformIO" @@ -5839,7 +5965,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:3075" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["location"] = "imgui:3078" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["ov_cimguiname"] = "ImGuiPlatformMonitor_ImGuiPlatformMonitor" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["signature"] = "()" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["stname"] = "ImGuiPlatformMonitor" @@ -5870,7 +5996,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:1066" +defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1075" defs["ImGuiPopupData_ImGuiPopupData"][1]["ov_cimguiname"] = "ImGuiPopupData_ImGuiPopupData" defs["ImGuiPopupData_ImGuiPopupData"][1]["signature"] = "()" defs["ImGuiPopupData_ImGuiPopupData"][1]["stname"] = "ImGuiPopupData" @@ -5904,7 +6030,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:1181" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1190" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["signature"] = "(void*)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["stname"] = "ImGuiPtrOrIndex" @@ -5920,7 +6046,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:1182" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1191" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["signature"] = "(int)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["stname"] = "ImGuiPtrOrIndex" @@ -5952,7 +6078,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:1553" +defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:1594" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["ov_cimguiname"] = "ImGuiSettingsHandler_ImGuiSettingsHandler" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["signature"] = "()" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["stname"] = "ImGuiSettingsHandler" @@ -5983,7 +6109,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:1593" +defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:1634" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["ov_cimguiname"] = "ImGuiStackLevelInfo_ImGuiStackLevelInfo" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["signature"] = "()" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["stname"] = "ImGuiStackLevelInfo" @@ -6016,7 +6142,7 @@ defs["ImGuiStackSizes_CompareWithCurrentState"][1]["call_args"] = "()" defs["ImGuiStackSizes_CompareWithCurrentState"][1]["cimguiname"] = "ImGuiStackSizes_CompareWithCurrentState" defs["ImGuiStackSizes_CompareWithCurrentState"][1]["defaults"] = {} defs["ImGuiStackSizes_CompareWithCurrentState"][1]["funcname"] = "CompareWithCurrentState" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["location"] = "imgui_internal:1159" +defs["ImGuiStackSizes_CompareWithCurrentState"][1]["location"] = "imgui_internal:1168" defs["ImGuiStackSizes_CompareWithCurrentState"][1]["ov_cimguiname"] = "ImGuiStackSizes_CompareWithCurrentState" defs["ImGuiStackSizes_CompareWithCurrentState"][1]["ret"] = "void" defs["ImGuiStackSizes_CompareWithCurrentState"][1]["signature"] = "()" @@ -6032,7 +6158,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:1157" +defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1166" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["ov_cimguiname"] = "ImGuiStackSizes_ImGuiStackSizes" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["signature"] = "()" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["stname"] = "ImGuiStackSizes" @@ -6049,7 +6175,7 @@ defs["ImGuiStackSizes_SetToCurrentState"][1]["call_args"] = "()" defs["ImGuiStackSizes_SetToCurrentState"][1]["cimguiname"] = "ImGuiStackSizes_SetToCurrentState" defs["ImGuiStackSizes_SetToCurrentState"][1]["defaults"] = {} defs["ImGuiStackSizes_SetToCurrentState"][1]["funcname"] = "SetToCurrentState" -defs["ImGuiStackSizes_SetToCurrentState"][1]["location"] = "imgui_internal:1158" +defs["ImGuiStackSizes_SetToCurrentState"][1]["location"] = "imgui_internal:1167" defs["ImGuiStackSizes_SetToCurrentState"][1]["ov_cimguiname"] = "ImGuiStackSizes_SetToCurrentState" defs["ImGuiStackSizes_SetToCurrentState"][1]["ret"] = "void" defs["ImGuiStackSizes_SetToCurrentState"][1]["signature"] = "()" @@ -6081,7 +6207,7 @@ defs["ImGuiStackTool_ImGuiStackTool"][1]["cimguiname"] = "ImGuiStackTool_ImGuiSt defs["ImGuiStackTool_ImGuiStackTool"][1]["constructor"] = true defs["ImGuiStackTool_ImGuiStackTool"][1]["defaults"] = {} defs["ImGuiStackTool_ImGuiStackTool"][1]["funcname"] = "ImGuiStackTool" -defs["ImGuiStackTool_ImGuiStackTool"][1]["location"] = "imgui_internal:1604" +defs["ImGuiStackTool_ImGuiStackTool"][1]["location"] = "imgui_internal:1645" defs["ImGuiStackTool_ImGuiStackTool"][1]["ov_cimguiname"] = "ImGuiStackTool_ImGuiStackTool" defs["ImGuiStackTool_ImGuiStackTool"][1]["signature"] = "()" defs["ImGuiStackTool_ImGuiStackTool"][1]["stname"] = "ImGuiStackTool" @@ -6118,7 +6244,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:2242" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2243" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Int" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" @@ -6137,7 +6263,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:2243" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2244" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Float" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" @@ -6156,7 +6282,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:2244" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2245" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Ptr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -6191,7 +6317,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:2275" +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2276" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -6209,7 +6335,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:2252" +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2253" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -6234,7 +6360,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:2255" +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2256" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -6259,7 +6385,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:2267" +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2268" defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -6284,7 +6410,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:2257" +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2258" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -6309,7 +6435,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:2268" +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2269" defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -6334,7 +6460,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:2253" +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2254" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -6359,7 +6485,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:2266" +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2267" defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -6380,7 +6506,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:2259" +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2260" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -6405,7 +6531,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:2269" +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2270" defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -6426,7 +6552,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:2272" +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2273" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -6450,7 +6576,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:2256" +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2257" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -6474,7 +6600,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:2258" +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2259" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -6498,7 +6624,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:2254" +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2255" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -6522,7 +6648,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:2260" +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2261" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -6544,7 +6670,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:964" +defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:975" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Int" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["signature"] = "(ImGuiStyleVar,int)" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["stname"] = "ImGuiStyleMod" @@ -6563,7 +6689,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:965" +defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:976" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Float" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["signature"] = "(ImGuiStyleVar,float)" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["stname"] = "ImGuiStyleMod" @@ -6582,7 +6708,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:966" +defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:977" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Vec2" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["signature"] = "(ImGuiStyleVar,ImVec2)" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["stname"] = "ImGuiStyleMod" @@ -6672,7 +6798,7 @@ defs["ImGuiTabBar_GetTabName"][1]["call_args"] = "(tab)" defs["ImGuiTabBar_GetTabName"][1]["cimguiname"] = "ImGuiTabBar_GetTabName" defs["ImGuiTabBar_GetTabName"][1]["defaults"] = {} defs["ImGuiTabBar_GetTabName"][1]["funcname"] = "GetTabName" -defs["ImGuiTabBar_GetTabName"][1]["location"] = "imgui_internal:2330" +defs["ImGuiTabBar_GetTabName"][1]["location"] = "imgui_internal:2370" defs["ImGuiTabBar_GetTabName"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabName" defs["ImGuiTabBar_GetTabName"][1]["ret"] = "const char*" defs["ImGuiTabBar_GetTabName"][1]["signature"] = "(const ImGuiTabItem*)const" @@ -6693,7 +6819,7 @@ defs["ImGuiTabBar_GetTabOrder"][1]["call_args"] = "(tab)" defs["ImGuiTabBar_GetTabOrder"][1]["cimguiname"] = "ImGuiTabBar_GetTabOrder" defs["ImGuiTabBar_GetTabOrder"][1]["defaults"] = {} defs["ImGuiTabBar_GetTabOrder"][1]["funcname"] = "GetTabOrder" -defs["ImGuiTabBar_GetTabOrder"][1]["location"] = "imgui_internal:2329" +defs["ImGuiTabBar_GetTabOrder"][1]["location"] = "imgui_internal:2369" defs["ImGuiTabBar_GetTabOrder"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabOrder" defs["ImGuiTabBar_GetTabOrder"][1]["ret"] = "int" defs["ImGuiTabBar_GetTabOrder"][1]["signature"] = "(const ImGuiTabItem*)const" @@ -6709,7 +6835,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:2328" +defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:2368" defs["ImGuiTabBar_ImGuiTabBar"][1]["ov_cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["signature"] = "()" defs["ImGuiTabBar_ImGuiTabBar"][1]["stname"] = "ImGuiTabBar" @@ -6740,7 +6866,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:2290" +defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:2330" defs["ImGuiTabItem_ImGuiTabItem"][1]["ov_cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["signature"] = "()" defs["ImGuiTabItem_ImGuiTabItem"][1]["stname"] = "ImGuiTabItem" @@ -6771,7 +6897,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:2566" +defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:2606" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableColumnSettings_ImGuiTableColumnSettings" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["signature"] = "()" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["stname"] = "ImGuiTableColumnSettings" @@ -6802,7 +6928,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:2143" +defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2144" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["signature"] = "()" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["stname"] = "ImGuiTableColumnSortSpecs" @@ -6833,7 +6959,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:2399" +defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:2439" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["ov_cimguiname"] = "ImGuiTableColumn_ImGuiTableColumn" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["signature"] = "()" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["stname"] = "ImGuiTableColumn" @@ -6866,7 +6992,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:2589" +defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:2629" defs["ImGuiTableSettings_GetColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["ret"] = "ImGuiTableColumnSettings*" defs["ImGuiTableSettings_GetColumnSettings"][1]["signature"] = "()" @@ -6882,7 +7008,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:2588" +defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:2628" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_ImGuiTableSettings" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["signature"] = "()" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["stname"] = "ImGuiTableSettings" @@ -6913,7 +7039,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:2156" +defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2157" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableSortSpecs_ImGuiTableSortSpecs" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["signature"] = "()" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["stname"] = "ImGuiTableSortSpecs" @@ -6944,7 +7070,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:2551" +defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:2591" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["ov_cimguiname"] = "ImGuiTableTempData_ImGuiTableTempData" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["signature"] = "()" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["stname"] = "ImGuiTableTempData" @@ -6975,7 +7101,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:2527" +defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:2567" defs["ImGuiTable_ImGuiTable"][1]["ov_cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["signature"] = "()" defs["ImGuiTable_ImGuiTable"][1]["stname"] = "ImGuiTable" @@ -6991,7 +7117,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:2528" +defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:2568" defs["ImGuiTable_destroy"][1]["ov_cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["realdestructor"] = true defs["ImGuiTable_destroy"][1]["ret"] = "void" @@ -7008,7 +7134,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:2213" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2214" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -7032,7 +7158,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:2222" +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2223" defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -7057,7 +7183,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:2223" +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2224" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -7082,7 +7208,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:2224" +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2225" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -7100,7 +7226,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:2215" +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2216" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -7118,7 +7244,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:2221" +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2222" 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" @@ -7136,7 +7262,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:2219" +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2220" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -7170,7 +7296,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:2218" +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2219" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -7188,7 +7314,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:2216" +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2217" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -7209,7 +7335,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:2220" +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2221" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -7227,7 +7353,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:2217" +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2218" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -7245,7 +7371,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:2186" +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2187" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -7263,7 +7389,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:2187" +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2188" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -7289,7 +7415,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:2184" +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2185" defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -7309,7 +7435,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:2183" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2184" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -7326,7 +7452,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:2188" +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2189" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -7351,7 +7477,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:2185" +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2186" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -7383,7 +7509,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:2196" +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2197" defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Nil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -7402,7 +7528,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:2197" +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2198" defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Str" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -7436,7 +7562,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:2198" +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2199" defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -7460,7 +7586,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:2199" +defs["ImGuiTextRange_split"][1]["location"] = "imgui:2200" defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" @@ -7484,7 +7610,7 @@ defs["ImGuiViewportP_CalcWorkRectPos"][1]["call_args"] = "(off_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:1507" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1548" defs["ImGuiViewportP_CalcWorkRectPos"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectPos"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["ret"] = "void" @@ -7512,7 +7638,7 @@ defs["ImGuiViewportP_CalcWorkRectSize"][1]["call_args"] = "(off_min,off_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:1508" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1549" defs["ImGuiViewportP_CalcWorkRectSize"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectSize"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["ret"] = "void" @@ -7531,7 +7657,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:1504" +defs["ImGuiViewportP_ClearRequestFlags"][1]["location"] = "imgui_internal:1545" defs["ImGuiViewportP_ClearRequestFlags"][1]["ov_cimguiname"] = "ImGuiViewportP_ClearRequestFlags" defs["ImGuiViewportP_ClearRequestFlags"][1]["ret"] = "void" defs["ImGuiViewportP_ClearRequestFlags"][1]["signature"] = "()" @@ -7552,7 +7678,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:1514" +defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:1555" defs["ImGuiViewportP_GetBuildWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetBuildWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["ret"] = "void" @@ -7574,7 +7700,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:1512" +defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:1553" defs["ImGuiViewportP_GetMainRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetMainRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["ret"] = "void" @@ -7596,7 +7722,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:1513" +defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:1554" defs["ImGuiViewportP_GetWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["ret"] = "void" @@ -7613,7 +7739,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:1502" +defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1543" defs["ImGuiViewportP_ImGuiViewportP"][1]["ov_cimguiname"] = "ImGuiViewportP_ImGuiViewportP" defs["ImGuiViewportP_ImGuiViewportP"][1]["signature"] = "()" defs["ImGuiViewportP_ImGuiViewportP"][1]["stname"] = "ImGuiViewportP" @@ -7630,7 +7756,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:1509" +defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:1550" defs["ImGuiViewportP_UpdateWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["ret"] = "void" defs["ImGuiViewportP_UpdateWorkRect"][1]["signature"] = "()" @@ -7647,7 +7773,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:1503" +defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1544" defs["ImGuiViewportP_destroy"][1]["ov_cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["realdestructor"] = true defs["ImGuiViewportP_destroy"][1]["ret"] = "void" @@ -7669,7 +7795,7 @@ defs["ImGuiViewport_GetCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetCenter"][1]["cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetCenter"][1]["funcname"] = "GetCenter" -defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:2952" +defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:2955" defs["ImGuiViewport_GetCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["ret"] = "void" @@ -7691,7 +7817,7 @@ defs["ImGuiViewport_GetWorkCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetWorkCenter"][1]["cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetWorkCenter"][1]["funcname"] = "GetWorkCenter" -defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:2953" +defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:2956" defs["ImGuiViewport_GetWorkCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetWorkCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["ret"] = "void" @@ -7708,7 +7834,7 @@ defs["ImGuiViewport_ImGuiViewport"][1]["cimguiname"] = "ImGuiViewport_ImGuiViewp defs["ImGuiViewport_ImGuiViewport"][1]["constructor"] = true defs["ImGuiViewport_ImGuiViewport"][1]["defaults"] = {} defs["ImGuiViewport_ImGuiViewport"][1]["funcname"] = "ImGuiViewport" -defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:2948" +defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:2951" defs["ImGuiViewport_ImGuiViewport"][1]["ov_cimguiname"] = "ImGuiViewport_ImGuiViewport" defs["ImGuiViewport_ImGuiViewport"][1]["signature"] = "()" defs["ImGuiViewport_ImGuiViewport"][1]["stname"] = "ImGuiViewport" @@ -7724,7 +7850,7 @@ defs["ImGuiViewport_destroy"][1]["call_args"] = "(self)" defs["ImGuiViewport_destroy"][1]["cimguiname"] = "ImGuiViewport_destroy" defs["ImGuiViewport_destroy"][1]["defaults"] = {} defs["ImGuiViewport_destroy"][1]["destructor"] = true -defs["ImGuiViewport_destroy"][1]["location"] = "imgui:2949" +defs["ImGuiViewport_destroy"][1]["location"] = "imgui:2952" defs["ImGuiViewport_destroy"][1]["ov_cimguiname"] = "ImGuiViewport_destroy" defs["ImGuiViewport_destroy"][1]["realdestructor"] = true defs["ImGuiViewport_destroy"][1]["ret"] = "void" @@ -7741,7 +7867,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:2110" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["location"] = "imgui:2111" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["ov_cimguiname"] = "ImGuiWindowClass_ImGuiWindowClass" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["signature"] = "()" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["stname"] = "ImGuiWindowClass" @@ -7774,7 +7900,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:1538" +defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:1579" defs["ImGuiWindowSettings_GetName"][1]["ov_cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["ret"] = "char*" defs["ImGuiWindowSettings_GetName"][1]["signature"] = "()" @@ -7790,7 +7916,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:1537" +defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:1578" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["ov_cimguiname"] = "ImGuiWindowSettings_ImGuiWindowSettings" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["signature"] = "()" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["stname"] = "ImGuiWindowSettings" @@ -7823,7 +7949,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:2245" +defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2285" defs["ImGuiWindow_CalcFontSize"][1]["ov_cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["ret"] = "float" defs["ImGuiWindow_CalcFontSize"][1]["signature"] = "()const" @@ -7848,7 +7974,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:2235" +defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2275" defs["ImGuiWindow_GetID"][1]["ov_cimguiname"] = "ImGuiWindow_GetID_Str" defs["ImGuiWindow_GetID"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][1]["signature"] = "(const char*,const char*)" @@ -7867,7 +7993,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:2236" +defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2276" defs["ImGuiWindow_GetID"][2]["ov_cimguiname"] = "ImGuiWindow_GetID_Ptr" defs["ImGuiWindow_GetID"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][2]["signature"] = "(const void*)" @@ -7886,7 +8012,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:2237" +defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2277" defs["ImGuiWindow_GetID"][3]["ov_cimguiname"] = "ImGuiWindow_GetID_Int" defs["ImGuiWindow_GetID"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][3]["signature"] = "(int)" @@ -7909,7 +8035,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:2241" +defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2281" defs["ImGuiWindow_GetIDFromRectangle"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDFromRectangle"][1]["signature"] = "(const ImRect)" @@ -7934,7 +8060,7 @@ defs["ImGuiWindow_GetIDNoKeepAlive"][1]["cimguiname"] = "ImGuiWindow_GetIDNoKeep defs["ImGuiWindow_GetIDNoKeepAlive"][1]["defaults"] = {} defs["ImGuiWindow_GetIDNoKeepAlive"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["funcname"] = "GetIDNoKeepAlive" -defs["ImGuiWindow_GetIDNoKeepAlive"][1]["location"] = "imgui_internal:2238" +defs["ImGuiWindow_GetIDNoKeepAlive"][1]["location"] = "imgui_internal:2278" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDNoKeepAlive_Str" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["signature"] = "(const char*,const char*)" @@ -7953,7 +8079,7 @@ defs["ImGuiWindow_GetIDNoKeepAlive"][2]["call_args"] = "(ptr)" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["cimguiname"] = "ImGuiWindow_GetIDNoKeepAlive" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["defaults"] = {} defs["ImGuiWindow_GetIDNoKeepAlive"][2]["funcname"] = "GetIDNoKeepAlive" -defs["ImGuiWindow_GetIDNoKeepAlive"][2]["location"] = "imgui_internal:2239" +defs["ImGuiWindow_GetIDNoKeepAlive"][2]["location"] = "imgui_internal:2279" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["ov_cimguiname"] = "ImGuiWindow_GetIDNoKeepAlive_Ptr" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["signature"] = "(const void*)" @@ -7972,7 +8098,7 @@ defs["ImGuiWindow_GetIDNoKeepAlive"][3]["call_args"] = "(n)" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["cimguiname"] = "ImGuiWindow_GetIDNoKeepAlive" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["defaults"] = {} defs["ImGuiWindow_GetIDNoKeepAlive"][3]["funcname"] = "GetIDNoKeepAlive" -defs["ImGuiWindow_GetIDNoKeepAlive"][3]["location"] = "imgui_internal:2240" +defs["ImGuiWindow_GetIDNoKeepAlive"][3]["location"] = "imgui_internal:2280" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["ov_cimguiname"] = "ImGuiWindow_GetIDNoKeepAlive_Int" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["signature"] = "(int)" @@ -7996,7 +8122,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:2231" +defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2271" defs["ImGuiWindow_ImGuiWindow"][1]["ov_cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["signature"] = "(ImGuiContext*,const char*)" defs["ImGuiWindow_ImGuiWindow"][1]["stname"] = "ImGuiWindow" @@ -8013,7 +8139,7 @@ defs["ImGuiWindow_MenuBarHeight"][1]["call_args"] = "()" defs["ImGuiWindow_MenuBarHeight"][1]["cimguiname"] = "ImGuiWindow_MenuBarHeight" defs["ImGuiWindow_MenuBarHeight"][1]["defaults"] = {} defs["ImGuiWindow_MenuBarHeight"][1]["funcname"] = "MenuBarHeight" -defs["ImGuiWindow_MenuBarHeight"][1]["location"] = "imgui_internal:2248" +defs["ImGuiWindow_MenuBarHeight"][1]["location"] = "imgui_internal:2288" defs["ImGuiWindow_MenuBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarHeight" defs["ImGuiWindow_MenuBarHeight"][1]["ret"] = "float" defs["ImGuiWindow_MenuBarHeight"][1]["signature"] = "()const" @@ -8034,7 +8160,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:2249" +defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2289" defs["ImGuiWindow_MenuBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_MenuBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["ret"] = "void" @@ -8056,7 +8182,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:2244" +defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2284" defs["ImGuiWindow_Rect"][1]["nonUDT"] = 1 defs["ImGuiWindow_Rect"][1]["ov_cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["ret"] = "void" @@ -8075,7 +8201,7 @@ defs["ImGuiWindow_TitleBarHeight"][1]["call_args"] = "()" defs["ImGuiWindow_TitleBarHeight"][1]["cimguiname"] = "ImGuiWindow_TitleBarHeight" defs["ImGuiWindow_TitleBarHeight"][1]["defaults"] = {} defs["ImGuiWindow_TitleBarHeight"][1]["funcname"] = "TitleBarHeight" -defs["ImGuiWindow_TitleBarHeight"][1]["location"] = "imgui_internal:2246" +defs["ImGuiWindow_TitleBarHeight"][1]["location"] = "imgui_internal:2286" defs["ImGuiWindow_TitleBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarHeight" defs["ImGuiWindow_TitleBarHeight"][1]["ret"] = "float" defs["ImGuiWindow_TitleBarHeight"][1]["signature"] = "()const" @@ -8096,7 +8222,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:2247" +defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2287" defs["ImGuiWindow_TitleBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_TitleBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["ret"] = "void" @@ -8114,7 +8240,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:2233" +defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2273" defs["ImGuiWindow_destroy"][1]["ov_cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["realdestructor"] = true defs["ImGuiWindow_destroy"][1]["ret"] = "void" @@ -8133,7 +8259,7 @@ defs["ImPool_Add"][1]["call_args"] = "()" defs["ImPool_Add"][1]["cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["defaults"] = {} defs["ImPool_Add"][1]["funcname"] = "Add" -defs["ImPool_Add"][1]["location"] = "imgui_internal:640" +defs["ImPool_Add"][1]["location"] = "imgui_internal:651" defs["ImPool_Add"][1]["ov_cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["ret"] = "T*" defs["ImPool_Add"][1]["signature"] = "()" @@ -8152,7 +8278,7 @@ defs["ImPool_Clear"][1]["call_args"] = "()" defs["ImPool_Clear"][1]["cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["defaults"] = {} defs["ImPool_Clear"][1]["funcname"] = "Clear" -defs["ImPool_Clear"][1]["location"] = "imgui_internal:639" +defs["ImPool_Clear"][1]["location"] = "imgui_internal:650" defs["ImPool_Clear"][1]["ov_cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["ret"] = "void" defs["ImPool_Clear"][1]["signature"] = "()" @@ -8174,7 +8300,7 @@ defs["ImPool_Contains"][1]["call_args"] = "(p)" defs["ImPool_Contains"][1]["cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["defaults"] = {} defs["ImPool_Contains"][1]["funcname"] = "Contains" -defs["ImPool_Contains"][1]["location"] = "imgui_internal:638" +defs["ImPool_Contains"][1]["location"] = "imgui_internal:649" defs["ImPool_Contains"][1]["ov_cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["ret"] = "bool" defs["ImPool_Contains"][1]["signature"] = "(const T*)const" @@ -8193,7 +8319,7 @@ defs["ImPool_GetAliveCount"][1]["call_args"] = "()" defs["ImPool_GetAliveCount"][1]["cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["defaults"] = {} defs["ImPool_GetAliveCount"][1]["funcname"] = "GetAliveCount" -defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:647" +defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:658" defs["ImPool_GetAliveCount"][1]["ov_cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["ret"] = "int" defs["ImPool_GetAliveCount"][1]["signature"] = "()const" @@ -8212,7 +8338,7 @@ defs["ImPool_GetBufSize"][1]["call_args"] = "()" defs["ImPool_GetBufSize"][1]["cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["defaults"] = {} defs["ImPool_GetBufSize"][1]["funcname"] = "GetBufSize" -defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:648" +defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:659" defs["ImPool_GetBufSize"][1]["ov_cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["ret"] = "int" defs["ImPool_GetBufSize"][1]["signature"] = "()const" @@ -8234,7 +8360,7 @@ defs["ImPool_GetByIndex"][1]["call_args"] = "(n)" defs["ImPool_GetByIndex"][1]["cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["defaults"] = {} defs["ImPool_GetByIndex"][1]["funcname"] = "GetByIndex" -defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:635" +defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:646" defs["ImPool_GetByIndex"][1]["ov_cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["ret"] = "T*" defs["ImPool_GetByIndex"][1]["signature"] = "(ImPoolIdx)" @@ -8256,7 +8382,7 @@ defs["ImPool_GetByKey"][1]["call_args"] = "(key)" defs["ImPool_GetByKey"][1]["cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["defaults"] = {} defs["ImPool_GetByKey"][1]["funcname"] = "GetByKey" -defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:634" +defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:645" defs["ImPool_GetByKey"][1]["ov_cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["ret"] = "T*" defs["ImPool_GetByKey"][1]["signature"] = "(ImGuiID)" @@ -8278,7 +8404,7 @@ defs["ImPool_GetIndex"][1]["call_args"] = "(p)" defs["ImPool_GetIndex"][1]["cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["defaults"] = {} defs["ImPool_GetIndex"][1]["funcname"] = "GetIndex" -defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:636" +defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:647" defs["ImPool_GetIndex"][1]["ov_cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["ret"] = "ImPoolIdx" defs["ImPool_GetIndex"][1]["signature"] = "(const T*)const" @@ -8297,7 +8423,7 @@ defs["ImPool_GetMapSize"][1]["call_args"] = "()" defs["ImPool_GetMapSize"][1]["cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["defaults"] = {} defs["ImPool_GetMapSize"][1]["funcname"] = "GetMapSize" -defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:649" +defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:660" defs["ImPool_GetMapSize"][1]["ov_cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["ret"] = "int" defs["ImPool_GetMapSize"][1]["signature"] = "()const" @@ -8319,7 +8445,7 @@ defs["ImPool_GetOrAddByKey"][1]["call_args"] = "(key)" defs["ImPool_GetOrAddByKey"][1]["cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["defaults"] = {} defs["ImPool_GetOrAddByKey"][1]["funcname"] = "GetOrAddByKey" -defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:637" +defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:648" defs["ImPool_GetOrAddByKey"][1]["ov_cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["ret"] = "T*" defs["ImPool_GetOrAddByKey"][1]["signature"] = "(ImGuiID)" @@ -8336,7 +8462,7 @@ defs["ImPool_ImPool"][1]["cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["constructor"] = true defs["ImPool_ImPool"][1]["defaults"] = {} defs["ImPool_ImPool"][1]["funcname"] = "ImPool" -defs["ImPool_ImPool"][1]["location"] = "imgui_internal:632" +defs["ImPool_ImPool"][1]["location"] = "imgui_internal:643" defs["ImPool_ImPool"][1]["ov_cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["signature"] = "()" defs["ImPool_ImPool"][1]["stname"] = "ImPool" @@ -8360,7 +8486,7 @@ defs["ImPool_Remove"][1]["call_args"] = "(key,p)" defs["ImPool_Remove"][1]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][1]["defaults"] = {} defs["ImPool_Remove"][1]["funcname"] = "Remove" -defs["ImPool_Remove"][1]["location"] = "imgui_internal:641" +defs["ImPool_Remove"][1]["location"] = "imgui_internal:652" defs["ImPool_Remove"][1]["ov_cimguiname"] = "ImPool_Remove_TPtr" defs["ImPool_Remove"][1]["ret"] = "void" defs["ImPool_Remove"][1]["signature"] = "(ImGuiID,const T*)" @@ -8383,7 +8509,7 @@ defs["ImPool_Remove"][2]["call_args"] = "(key,idx)" defs["ImPool_Remove"][2]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][2]["defaults"] = {} defs["ImPool_Remove"][2]["funcname"] = "Remove" -defs["ImPool_Remove"][2]["location"] = "imgui_internal:642" +defs["ImPool_Remove"][2]["location"] = "imgui_internal:653" defs["ImPool_Remove"][2]["ov_cimguiname"] = "ImPool_Remove_PoolIdx" defs["ImPool_Remove"][2]["ret"] = "void" defs["ImPool_Remove"][2]["signature"] = "(ImGuiID,ImPoolIdx)" @@ -8406,7 +8532,7 @@ defs["ImPool_Reserve"][1]["call_args"] = "(capacity)" defs["ImPool_Reserve"][1]["cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["defaults"] = {} defs["ImPool_Reserve"][1]["funcname"] = "Reserve" -defs["ImPool_Reserve"][1]["location"] = "imgui_internal:643" +defs["ImPool_Reserve"][1]["location"] = "imgui_internal:654" defs["ImPool_Reserve"][1]["ov_cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["ret"] = "void" defs["ImPool_Reserve"][1]["signature"] = "(int)" @@ -8428,7 +8554,7 @@ defs["ImPool_TryGetMapData"][1]["call_args"] = "(n)" defs["ImPool_TryGetMapData"][1]["cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["defaults"] = {} defs["ImPool_TryGetMapData"][1]["funcname"] = "TryGetMapData" -defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:650" +defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:661" defs["ImPool_TryGetMapData"][1]["ov_cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["ret"] = "T*" defs["ImPool_TryGetMapData"][1]["signature"] = "(ImPoolIdx)" @@ -8446,7 +8572,7 @@ defs["ImPool_destroy"][1]["call_args"] = "(self)" defs["ImPool_destroy"][1]["cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["defaults"] = {} defs["ImPool_destroy"][1]["destructor"] = true -defs["ImPool_destroy"][1]["location"] = "imgui_internal:633" +defs["ImPool_destroy"][1]["location"] = "imgui_internal:644" defs["ImPool_destroy"][1]["ov_cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["realdestructor"] = true defs["ImPool_destroy"][1]["ret"] = "void" @@ -8469,7 +8595,7 @@ defs["ImRect_Add"][1]["call_args"] = "(p)" defs["ImRect_Add"][1]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][1]["defaults"] = {} defs["ImRect_Add"][1]["funcname"] = "Add" -defs["ImRect_Add"][1]["location"] = "imgui_internal:510" +defs["ImRect_Add"][1]["location"] = "imgui_internal:521" defs["ImRect_Add"][1]["ov_cimguiname"] = "ImRect_Add_Vec2" defs["ImRect_Add"][1]["ret"] = "void" defs["ImRect_Add"][1]["signature"] = "(const ImVec2)" @@ -8488,7 +8614,7 @@ defs["ImRect_Add"][2]["call_args"] = "(r)" defs["ImRect_Add"][2]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][2]["defaults"] = {} defs["ImRect_Add"][2]["funcname"] = "Add" -defs["ImRect_Add"][2]["location"] = "imgui_internal:511" +defs["ImRect_Add"][2]["location"] = "imgui_internal:522" defs["ImRect_Add"][2]["ov_cimguiname"] = "ImRect_Add_Rect" defs["ImRect_Add"][2]["ret"] = "void" defs["ImRect_Add"][2]["signature"] = "(const ImRect)" @@ -8510,7 +8636,7 @@ defs["ImRect_ClipWith"][1]["call_args"] = "(r)" defs["ImRect_ClipWith"][1]["cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["defaults"] = {} defs["ImRect_ClipWith"][1]["funcname"] = "ClipWith" -defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:517" +defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:528" defs["ImRect_ClipWith"][1]["ov_cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["ret"] = "void" defs["ImRect_ClipWith"][1]["signature"] = "(const ImRect)" @@ -8531,7 +8657,7 @@ defs["ImRect_ClipWithFull"][1]["call_args"] = "(r)" defs["ImRect_ClipWithFull"][1]["cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["defaults"] = {} defs["ImRect_ClipWithFull"][1]["funcname"] = "ClipWithFull" -defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:518" +defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:529" defs["ImRect_ClipWithFull"][1]["ov_cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["ret"] = "void" defs["ImRect_ClipWithFull"][1]["signature"] = "(const ImRect)" @@ -8552,7 +8678,7 @@ defs["ImRect_Contains"][1]["call_args"] = "(p)" defs["ImRect_Contains"][1]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][1]["defaults"] = {} defs["ImRect_Contains"][1]["funcname"] = "Contains" -defs["ImRect_Contains"][1]["location"] = "imgui_internal:507" +defs["ImRect_Contains"][1]["location"] = "imgui_internal:518" defs["ImRect_Contains"][1]["ov_cimguiname"] = "ImRect_Contains_Vec2" defs["ImRect_Contains"][1]["ret"] = "bool" defs["ImRect_Contains"][1]["signature"] = "(const ImVec2)const" @@ -8571,7 +8697,7 @@ defs["ImRect_Contains"][2]["call_args"] = "(r)" defs["ImRect_Contains"][2]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][2]["defaults"] = {} defs["ImRect_Contains"][2]["funcname"] = "Contains" -defs["ImRect_Contains"][2]["location"] = "imgui_internal:508" +defs["ImRect_Contains"][2]["location"] = "imgui_internal:519" defs["ImRect_Contains"][2]["ov_cimguiname"] = "ImRect_Contains_Rect" defs["ImRect_Contains"][2]["ret"] = "bool" defs["ImRect_Contains"][2]["signature"] = "(const ImRect)const" @@ -8593,7 +8719,7 @@ defs["ImRect_Expand"][1]["call_args"] = "(amount)" defs["ImRect_Expand"][1]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][1]["defaults"] = {} defs["ImRect_Expand"][1]["funcname"] = "Expand" -defs["ImRect_Expand"][1]["location"] = "imgui_internal:512" +defs["ImRect_Expand"][1]["location"] = "imgui_internal:523" defs["ImRect_Expand"][1]["ov_cimguiname"] = "ImRect_Expand_Float" defs["ImRect_Expand"][1]["ret"] = "void" defs["ImRect_Expand"][1]["signature"] = "(const float)" @@ -8612,7 +8738,7 @@ defs["ImRect_Expand"][2]["call_args"] = "(amount)" defs["ImRect_Expand"][2]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][2]["defaults"] = {} defs["ImRect_Expand"][2]["funcname"] = "Expand" -defs["ImRect_Expand"][2]["location"] = "imgui_internal:513" +defs["ImRect_Expand"][2]["location"] = "imgui_internal:524" defs["ImRect_Expand"][2]["ov_cimguiname"] = "ImRect_Expand_Vec2" defs["ImRect_Expand"][2]["ret"] = "void" defs["ImRect_Expand"][2]["signature"] = "(const ImVec2)" @@ -8631,7 +8757,7 @@ defs["ImRect_Floor"][1]["call_args"] = "()" defs["ImRect_Floor"][1]["cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["defaults"] = {} defs["ImRect_Floor"][1]["funcname"] = "Floor" -defs["ImRect_Floor"][1]["location"] = "imgui_internal:519" +defs["ImRect_Floor"][1]["location"] = "imgui_internal:530" defs["ImRect_Floor"][1]["ov_cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["ret"] = "void" defs["ImRect_Floor"][1]["signature"] = "()" @@ -8649,7 +8775,7 @@ defs["ImRect_GetArea"][1]["call_args"] = "()" defs["ImRect_GetArea"][1]["cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["defaults"] = {} defs["ImRect_GetArea"][1]["funcname"] = "GetArea" -defs["ImRect_GetArea"][1]["location"] = "imgui_internal:502" +defs["ImRect_GetArea"][1]["location"] = "imgui_internal:513" defs["ImRect_GetArea"][1]["ov_cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["ret"] = "float" defs["ImRect_GetArea"][1]["signature"] = "()const" @@ -8670,7 +8796,7 @@ defs["ImRect_GetBL"][1]["call_args"] = "()" defs["ImRect_GetBL"][1]["cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["defaults"] = {} defs["ImRect_GetBL"][1]["funcname"] = "GetBL" -defs["ImRect_GetBL"][1]["location"] = "imgui_internal:505" +defs["ImRect_GetBL"][1]["location"] = "imgui_internal:516" defs["ImRect_GetBL"][1]["nonUDT"] = 1 defs["ImRect_GetBL"][1]["ov_cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["ret"] = "void" @@ -8692,7 +8818,7 @@ defs["ImRect_GetBR"][1]["call_args"] = "()" defs["ImRect_GetBR"][1]["cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["defaults"] = {} defs["ImRect_GetBR"][1]["funcname"] = "GetBR" -defs["ImRect_GetBR"][1]["location"] = "imgui_internal:506" +defs["ImRect_GetBR"][1]["location"] = "imgui_internal:517" defs["ImRect_GetBR"][1]["nonUDT"] = 1 defs["ImRect_GetBR"][1]["ov_cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["ret"] = "void" @@ -8714,7 +8840,7 @@ defs["ImRect_GetCenter"][1]["call_args"] = "()" defs["ImRect_GetCenter"][1]["cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["defaults"] = {} defs["ImRect_GetCenter"][1]["funcname"] = "GetCenter" -defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:498" +defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:509" defs["ImRect_GetCenter"][1]["nonUDT"] = 1 defs["ImRect_GetCenter"][1]["ov_cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["ret"] = "void" @@ -8733,7 +8859,7 @@ defs["ImRect_GetHeight"][1]["call_args"] = "()" defs["ImRect_GetHeight"][1]["cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["defaults"] = {} defs["ImRect_GetHeight"][1]["funcname"] = "GetHeight" -defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:501" +defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:512" defs["ImRect_GetHeight"][1]["ov_cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["ret"] = "float" defs["ImRect_GetHeight"][1]["signature"] = "()const" @@ -8754,7 +8880,7 @@ defs["ImRect_GetSize"][1]["call_args"] = "()" defs["ImRect_GetSize"][1]["cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["defaults"] = {} defs["ImRect_GetSize"][1]["funcname"] = "GetSize" -defs["ImRect_GetSize"][1]["location"] = "imgui_internal:499" +defs["ImRect_GetSize"][1]["location"] = "imgui_internal:510" defs["ImRect_GetSize"][1]["nonUDT"] = 1 defs["ImRect_GetSize"][1]["ov_cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["ret"] = "void" @@ -8776,7 +8902,7 @@ defs["ImRect_GetTL"][1]["call_args"] = "()" defs["ImRect_GetTL"][1]["cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["defaults"] = {} defs["ImRect_GetTL"][1]["funcname"] = "GetTL" -defs["ImRect_GetTL"][1]["location"] = "imgui_internal:503" +defs["ImRect_GetTL"][1]["location"] = "imgui_internal:514" defs["ImRect_GetTL"][1]["nonUDT"] = 1 defs["ImRect_GetTL"][1]["ov_cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["ret"] = "void" @@ -8798,7 +8924,7 @@ defs["ImRect_GetTR"][1]["call_args"] = "()" defs["ImRect_GetTR"][1]["cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["defaults"] = {} defs["ImRect_GetTR"][1]["funcname"] = "GetTR" -defs["ImRect_GetTR"][1]["location"] = "imgui_internal:504" +defs["ImRect_GetTR"][1]["location"] = "imgui_internal:515" defs["ImRect_GetTR"][1]["nonUDT"] = 1 defs["ImRect_GetTR"][1]["ov_cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["ret"] = "void" @@ -8817,7 +8943,7 @@ defs["ImRect_GetWidth"][1]["call_args"] = "()" defs["ImRect_GetWidth"][1]["cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["defaults"] = {} defs["ImRect_GetWidth"][1]["funcname"] = "GetWidth" -defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:500" +defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:511" defs["ImRect_GetWidth"][1]["ov_cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["ret"] = "float" defs["ImRect_GetWidth"][1]["signature"] = "()const" @@ -8833,7 +8959,7 @@ defs["ImRect_ImRect"][1]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][1]["constructor"] = true defs["ImRect_ImRect"][1]["defaults"] = {} defs["ImRect_ImRect"][1]["funcname"] = "ImRect" -defs["ImRect_ImRect"][1]["location"] = "imgui_internal:493" +defs["ImRect_ImRect"][1]["location"] = "imgui_internal:504" defs["ImRect_ImRect"][1]["ov_cimguiname"] = "ImRect_ImRect_Nil" defs["ImRect_ImRect"][1]["signature"] = "()" defs["ImRect_ImRect"][1]["stname"] = "ImRect" @@ -8852,7 +8978,7 @@ defs["ImRect_ImRect"][2]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][2]["constructor"] = true defs["ImRect_ImRect"][2]["defaults"] = {} defs["ImRect_ImRect"][2]["funcname"] = "ImRect" -defs["ImRect_ImRect"][2]["location"] = "imgui_internal:494" +defs["ImRect_ImRect"][2]["location"] = "imgui_internal:505" defs["ImRect_ImRect"][2]["ov_cimguiname"] = "ImRect_ImRect_Vec2" defs["ImRect_ImRect"][2]["signature"] = "(const ImVec2,const ImVec2)" defs["ImRect_ImRect"][2]["stname"] = "ImRect" @@ -8868,7 +8994,7 @@ defs["ImRect_ImRect"][3]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][3]["constructor"] = true defs["ImRect_ImRect"][3]["defaults"] = {} defs["ImRect_ImRect"][3]["funcname"] = "ImRect" -defs["ImRect_ImRect"][3]["location"] = "imgui_internal:495" +defs["ImRect_ImRect"][3]["location"] = "imgui_internal:506" defs["ImRect_ImRect"][3]["ov_cimguiname"] = "ImRect_ImRect_Vec4" defs["ImRect_ImRect"][3]["signature"] = "(const ImVec4)" defs["ImRect_ImRect"][3]["stname"] = "ImRect" @@ -8893,7 +9019,7 @@ defs["ImRect_ImRect"][4]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][4]["constructor"] = true defs["ImRect_ImRect"][4]["defaults"] = {} defs["ImRect_ImRect"][4]["funcname"] = "ImRect" -defs["ImRect_ImRect"][4]["location"] = "imgui_internal:496" +defs["ImRect_ImRect"][4]["location"] = "imgui_internal:507" defs["ImRect_ImRect"][4]["ov_cimguiname"] = "ImRect_ImRect_Float" defs["ImRect_ImRect"][4]["signature"] = "(float,float,float,float)" defs["ImRect_ImRect"][4]["stname"] = "ImRect" @@ -8913,7 +9039,7 @@ defs["ImRect_IsInverted"][1]["call_args"] = "()" defs["ImRect_IsInverted"][1]["cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["defaults"] = {} defs["ImRect_IsInverted"][1]["funcname"] = "IsInverted" -defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:520" +defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:531" defs["ImRect_IsInverted"][1]["ov_cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["ret"] = "bool" defs["ImRect_IsInverted"][1]["signature"] = "()const" @@ -8934,7 +9060,7 @@ defs["ImRect_Overlaps"][1]["call_args"] = "(r)" defs["ImRect_Overlaps"][1]["cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["defaults"] = {} defs["ImRect_Overlaps"][1]["funcname"] = "Overlaps" -defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:509" +defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:520" defs["ImRect_Overlaps"][1]["ov_cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["ret"] = "bool" defs["ImRect_Overlaps"][1]["signature"] = "(const ImRect)const" @@ -8955,7 +9081,7 @@ defs["ImRect_ToVec4"][1]["call_args"] = "()" defs["ImRect_ToVec4"][1]["cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["defaults"] = {} defs["ImRect_ToVec4"][1]["funcname"] = "ToVec4" -defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:521" +defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:532" defs["ImRect_ToVec4"][1]["nonUDT"] = 1 defs["ImRect_ToVec4"][1]["ov_cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["ret"] = "void" @@ -8977,7 +9103,7 @@ defs["ImRect_Translate"][1]["call_args"] = "(d)" defs["ImRect_Translate"][1]["cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["defaults"] = {} defs["ImRect_Translate"][1]["funcname"] = "Translate" -defs["ImRect_Translate"][1]["location"] = "imgui_internal:514" +defs["ImRect_Translate"][1]["location"] = "imgui_internal:525" defs["ImRect_Translate"][1]["ov_cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["ret"] = "void" defs["ImRect_Translate"][1]["signature"] = "(const ImVec2)" @@ -8998,7 +9124,7 @@ defs["ImRect_TranslateX"][1]["call_args"] = "(dx)" defs["ImRect_TranslateX"][1]["cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["defaults"] = {} defs["ImRect_TranslateX"][1]["funcname"] = "TranslateX" -defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:515" +defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:526" defs["ImRect_TranslateX"][1]["ov_cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["ret"] = "void" defs["ImRect_TranslateX"][1]["signature"] = "(float)" @@ -9019,7 +9145,7 @@ defs["ImRect_TranslateY"][1]["call_args"] = "(dy)" defs["ImRect_TranslateY"][1]["cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["defaults"] = {} defs["ImRect_TranslateY"][1]["funcname"] = "TranslateY" -defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:516" +defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:527" defs["ImRect_TranslateY"][1]["ov_cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["ret"] = "void" defs["ImRect_TranslateY"][1]["signature"] = "(float)" @@ -9053,7 +9179,7 @@ defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["call_args"] = "()" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["defaults"] = {} defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["funcname"] = "GetArenaSizeInBytes" -defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:612" +defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:623" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ov_cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ret"] = "int" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["signature"] = "()" @@ -9075,7 +9201,7 @@ defs["ImSpanAllocator_GetSpanPtrBegin"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrBegin"][1]["funcname"] = "GetSpanPtrBegin" -defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:614" +defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:625" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["signature"] = "(int)" @@ -9097,7 +9223,7 @@ defs["ImSpanAllocator_GetSpanPtrEnd"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrEnd"][1]["funcname"] = "GetSpanPtrEnd" -defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:615" +defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:626" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["signature"] = "(int)" @@ -9114,7 +9240,7 @@ defs["ImSpanAllocator_ImSpanAllocator"][1]["cimguiname"] = "ImSpanAllocator_ImSp defs["ImSpanAllocator_ImSpanAllocator"][1]["constructor"] = true defs["ImSpanAllocator_ImSpanAllocator"][1]["defaults"] = {} defs["ImSpanAllocator_ImSpanAllocator"][1]["funcname"] = "ImSpanAllocator" -defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:610" +defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:621" defs["ImSpanAllocator_ImSpanAllocator"][1]["ov_cimguiname"] = "ImSpanAllocator_ImSpanAllocator" defs["ImSpanAllocator_ImSpanAllocator"][1]["signature"] = "()" defs["ImSpanAllocator_ImSpanAllocator"][1]["stname"] = "ImSpanAllocator" @@ -9142,7 +9268,7 @@ defs["ImSpanAllocator_Reserve"][1]["cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["defaults"] = {} defs["ImSpanAllocator_Reserve"][1]["defaults"]["a"] = "4" defs["ImSpanAllocator_Reserve"][1]["funcname"] = "Reserve" -defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:611" +defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:622" defs["ImSpanAllocator_Reserve"][1]["ov_cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["ret"] = "void" defs["ImSpanAllocator_Reserve"][1]["signature"] = "(int,size_t,int)" @@ -9164,7 +9290,7 @@ defs["ImSpanAllocator_SetArenaBasePtr"][1]["call_args"] = "(base_ptr)" defs["ImSpanAllocator_SetArenaBasePtr"][1]["cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["defaults"] = {} defs["ImSpanAllocator_SetArenaBasePtr"][1]["funcname"] = "SetArenaBasePtr" -defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:613" +defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:624" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ov_cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ret"] = "void" defs["ImSpanAllocator_SetArenaBasePtr"][1]["signature"] = "(void*)" @@ -9198,7 +9324,7 @@ defs["ImSpan_ImSpan"][1]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][1]["constructor"] = true defs["ImSpan_ImSpan"][1]["defaults"] = {} defs["ImSpan_ImSpan"][1]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:578" +defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:589" defs["ImSpan_ImSpan"][1]["ov_cimguiname"] = "ImSpan_ImSpan_Nil" defs["ImSpan_ImSpan"][1]["signature"] = "()" defs["ImSpan_ImSpan"][1]["stname"] = "ImSpan" @@ -9218,7 +9344,7 @@ defs["ImSpan_ImSpan"][2]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][2]["constructor"] = true defs["ImSpan_ImSpan"][2]["defaults"] = {} defs["ImSpan_ImSpan"][2]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:579" +defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:590" defs["ImSpan_ImSpan"][2]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrInt" defs["ImSpan_ImSpan"][2]["signature"] = "(T*,int)" defs["ImSpan_ImSpan"][2]["stname"] = "ImSpan" @@ -9238,7 +9364,7 @@ defs["ImSpan_ImSpan"][3]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][3]["constructor"] = true defs["ImSpan_ImSpan"][3]["defaults"] = {} defs["ImSpan_ImSpan"][3]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:580" +defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:591" defs["ImSpan_ImSpan"][3]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrTPtr" defs["ImSpan_ImSpan"][3]["signature"] = "(T*,T*)" defs["ImSpan_ImSpan"][3]["stname"] = "ImSpan" @@ -9258,7 +9384,7 @@ defs["ImSpan_begin"][1]["call_args"] = "()" defs["ImSpan_begin"][1]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][1]["defaults"] = {} defs["ImSpan_begin"][1]["funcname"] = "begin" -defs["ImSpan_begin"][1]["location"] = "imgui_internal:589" +defs["ImSpan_begin"][1]["location"] = "imgui_internal:600" defs["ImSpan_begin"][1]["ov_cimguiname"] = "ImSpan_begin_Nil" defs["ImSpan_begin"][1]["ret"] = "T*" defs["ImSpan_begin"][1]["signature"] = "()" @@ -9275,7 +9401,7 @@ defs["ImSpan_begin"][2]["call_args"] = "()" defs["ImSpan_begin"][2]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][2]["defaults"] = {} defs["ImSpan_begin"][2]["funcname"] = "begin" -defs["ImSpan_begin"][2]["location"] = "imgui_internal:590" +defs["ImSpan_begin"][2]["location"] = "imgui_internal:601" defs["ImSpan_begin"][2]["ov_cimguiname"] = "ImSpan_begin__const" defs["ImSpan_begin"][2]["ret"] = "const T*" defs["ImSpan_begin"][2]["signature"] = "()const" @@ -9312,7 +9438,7 @@ defs["ImSpan_end"][1]["call_args"] = "()" defs["ImSpan_end"][1]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][1]["defaults"] = {} defs["ImSpan_end"][1]["funcname"] = "end" -defs["ImSpan_end"][1]["location"] = "imgui_internal:591" +defs["ImSpan_end"][1]["location"] = "imgui_internal:602" defs["ImSpan_end"][1]["ov_cimguiname"] = "ImSpan_end_Nil" defs["ImSpan_end"][1]["ret"] = "T*" defs["ImSpan_end"][1]["signature"] = "()" @@ -9329,7 +9455,7 @@ defs["ImSpan_end"][2]["call_args"] = "()" defs["ImSpan_end"][2]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][2]["defaults"] = {} defs["ImSpan_end"][2]["funcname"] = "end" -defs["ImSpan_end"][2]["location"] = "imgui_internal:592" +defs["ImSpan_end"][2]["location"] = "imgui_internal:603" defs["ImSpan_end"][2]["ov_cimguiname"] = "ImSpan_end__const" defs["ImSpan_end"][2]["ret"] = "const T*" defs["ImSpan_end"][2]["signature"] = "()const" @@ -9352,7 +9478,7 @@ defs["ImSpan_index_from_ptr"][1]["call_args"] = "(it)" defs["ImSpan_index_from_ptr"][1]["cimguiname"] = "ImSpan_index_from_ptr" defs["ImSpan_index_from_ptr"][1]["defaults"] = {} defs["ImSpan_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:595" +defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:606" defs["ImSpan_index_from_ptr"][1]["ov_cimguiname"] = "ImSpan_index_from_ptr" defs["ImSpan_index_from_ptr"][1]["ret"] = "int" defs["ImSpan_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -9377,7 +9503,7 @@ defs["ImSpan_set"][1]["call_args"] = "(data,size)" defs["ImSpan_set"][1]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][1]["defaults"] = {} defs["ImSpan_set"][1]["funcname"] = "set" -defs["ImSpan_set"][1]["location"] = "imgui_internal:582" +defs["ImSpan_set"][1]["location"] = "imgui_internal:593" defs["ImSpan_set"][1]["ov_cimguiname"] = "ImSpan_set_Int" defs["ImSpan_set"][1]["ret"] = "void" defs["ImSpan_set"][1]["signature"] = "(T*,int)" @@ -9400,7 +9526,7 @@ defs["ImSpan_set"][2]["call_args"] = "(data,data_end)" defs["ImSpan_set"][2]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][2]["defaults"] = {} defs["ImSpan_set"][2]["funcname"] = "set" -defs["ImSpan_set"][2]["location"] = "imgui_internal:583" +defs["ImSpan_set"][2]["location"] = "imgui_internal:594" defs["ImSpan_set"][2]["ov_cimguiname"] = "ImSpan_set_TPtr" defs["ImSpan_set"][2]["ret"] = "void" defs["ImSpan_set"][2]["signature"] = "(T*,T*)" @@ -9420,7 +9546,7 @@ defs["ImSpan_size"][1]["call_args"] = "()" defs["ImSpan_size"][1]["cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["defaults"] = {} defs["ImSpan_size"][1]["funcname"] = "size" -defs["ImSpan_size"][1]["location"] = "imgui_internal:584" +defs["ImSpan_size"][1]["location"] = "imgui_internal:595" defs["ImSpan_size"][1]["ov_cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["ret"] = "int" defs["ImSpan_size"][1]["signature"] = "()const" @@ -9439,7 +9565,7 @@ defs["ImSpan_size_in_bytes"][1]["call_args"] = "()" defs["ImSpan_size_in_bytes"][1]["cimguiname"] = "ImSpan_size_in_bytes" defs["ImSpan_size_in_bytes"][1]["defaults"] = {} defs["ImSpan_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:585" +defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:596" defs["ImSpan_size_in_bytes"][1]["ov_cimguiname"] = "ImSpan_size_in_bytes" defs["ImSpan_size_in_bytes"][1]["ret"] = "int" defs["ImSpan_size_in_bytes"][1]["signature"] = "()const" @@ -9456,7 +9582,7 @@ defs["ImVec1_ImVec1"][1]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][1]["constructor"] = true defs["ImVec1_ImVec1"][1]["defaults"] = {} defs["ImVec1_ImVec1"][1]["funcname"] = "ImVec1" -defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:473" +defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:484" defs["ImVec1_ImVec1"][1]["ov_cimguiname"] = "ImVec1_ImVec1_Nil" defs["ImVec1_ImVec1"][1]["signature"] = "()" defs["ImVec1_ImVec1"][1]["stname"] = "ImVec1" @@ -9472,7 +9598,7 @@ defs["ImVec1_ImVec1"][2]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][2]["constructor"] = true defs["ImVec1_ImVec1"][2]["defaults"] = {} defs["ImVec1_ImVec1"][2]["funcname"] = "ImVec1" -defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:474" +defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:485" defs["ImVec1_ImVec1"][2]["ov_cimguiname"] = "ImVec1_ImVec1_Float" defs["ImVec1_ImVec1"][2]["signature"] = "(float)" defs["ImVec1_ImVec1"][2]["stname"] = "ImVec1" @@ -9555,7 +9681,7 @@ defs["ImVec2ih_ImVec2ih"][1]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][1]["constructor"] = true defs["ImVec2ih_ImVec2ih"][1]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][1]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:481" +defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:492" defs["ImVec2ih_ImVec2ih"][1]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Nil" defs["ImVec2ih_ImVec2ih"][1]["signature"] = "()" defs["ImVec2ih_ImVec2ih"][1]["stname"] = "ImVec2ih" @@ -9574,7 +9700,7 @@ defs["ImVec2ih_ImVec2ih"][2]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][2]["constructor"] = true defs["ImVec2ih_ImVec2ih"][2]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][2]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:482" +defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:493" defs["ImVec2ih_ImVec2ih"][2]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_short" defs["ImVec2ih_ImVec2ih"][2]["signature"] = "(short,short)" defs["ImVec2ih_ImVec2ih"][2]["stname"] = "ImVec2ih" @@ -9590,7 +9716,7 @@ defs["ImVec2ih_ImVec2ih"][3]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][3]["constructor"] = true defs["ImVec2ih_ImVec2ih"][3]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][3]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:483" +defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:494" defs["ImVec2ih_ImVec2ih"][3]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Vec2" defs["ImVec2ih_ImVec2ih"][3]["signature"] = "(const ImVec2)" defs["ImVec2ih_ImVec2ih"][3]["stname"] = "ImVec2ih" @@ -10484,7 +10610,7 @@ defs["igActivateItem"][1]["call_args"] = "(id)" defs["igActivateItem"][1]["cimguiname"] = "igActivateItem" defs["igActivateItem"][1]["defaults"] = {} defs["igActivateItem"][1]["funcname"] = "ActivateItem" -defs["igActivateItem"][1]["location"] = "imgui_internal:2766" +defs["igActivateItem"][1]["location"] = "imgui_internal:2812" defs["igActivateItem"][1]["namespace"] = "ImGui" defs["igActivateItem"][1]["ov_cimguiname"] = "igActivateItem" defs["igActivateItem"][1]["ret"] = "void" @@ -10506,7 +10632,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:2642" +defs["igAddContextHook"][1]["location"] = "imgui_internal:2688" defs["igAddContextHook"][1]["namespace"] = "ImGui" defs["igAddContextHook"][1]["ov_cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["ret"] = "ImGuiID" @@ -10573,7 +10699,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:2957" +defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3006" defs["igArrowButtonEx"][1]["namespace"] = "ImGui" defs["igArrowButtonEx"][1]["ov_cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["ret"] = "bool" @@ -10692,7 +10818,7 @@ defs["igBeginChildEx"][1]["call_args"] = "(name,id,size_arg,border,flags)" defs["igBeginChildEx"][1]["cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["defaults"] = {} defs["igBeginChildEx"][1]["funcname"] = "BeginChildEx" -defs["igBeginChildEx"][1]["location"] = "imgui_internal:2730" +defs["igBeginChildEx"][1]["location"] = "imgui_internal:2775" defs["igBeginChildEx"][1]["namespace"] = "ImGui" defs["igBeginChildEx"][1]["ov_cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["ret"] = "bool" @@ -10718,7 +10844,7 @@ defs["igBeginChildFrame"][1]["cimguiname"] = "igBeginChildFrame" defs["igBeginChildFrame"][1]["defaults"] = {} defs["igBeginChildFrame"][1]["defaults"]["flags"] = "0" defs["igBeginChildFrame"][1]["funcname"] = "BeginChildFrame" -defs["igBeginChildFrame"][1]["location"] = "imgui:906" +defs["igBeginChildFrame"][1]["location"] = "imgui:905" defs["igBeginChildFrame"][1]["namespace"] = "ImGui" defs["igBeginChildFrame"][1]["ov_cimguiname"] = "igBeginChildFrame" defs["igBeginChildFrame"][1]["ret"] = "bool" @@ -10744,7 +10870,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:2846" +defs["igBeginColumns"][1]["location"] = "imgui_internal:2894" defs["igBeginColumns"][1]["namespace"] = "ImGui" defs["igBeginColumns"][1]["ov_cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["ret"] = "void" @@ -10795,7 +10921,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:2749" +defs["igBeginComboPopup"][1]["location"] = "imgui_internal:2795" defs["igBeginComboPopup"][1]["namespace"] = "ImGui" defs["igBeginComboPopup"][1]["ov_cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["ret"] = "bool" @@ -10811,7 +10937,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:2750" +defs["igBeginComboPreview"][1]["location"] = "imgui_internal:2796" defs["igBeginComboPreview"][1]["namespace"] = "ImGui" defs["igBeginComboPreview"][1]["ov_cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["ret"] = "bool" @@ -10850,7 +10976,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:2811" +defs["igBeginDockableDragDropSource"][1]["location"] = "imgui_internal:2859" defs["igBeginDockableDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDockableDragDropSource"][1]["ov_cimguiname"] = "igBeginDockableDragDropSource" defs["igBeginDockableDragDropSource"][1]["ret"] = "void" @@ -10869,7 +10995,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:2812" +defs["igBeginDockableDragDropTarget"][1]["location"] = "imgui_internal:2860" defs["igBeginDockableDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDockableDragDropTarget"][1]["ov_cimguiname"] = "igBeginDockableDragDropTarget" defs["igBeginDockableDragDropTarget"][1]["ret"] = "void" @@ -10891,7 +11017,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:2810" +defs["igBeginDocked"][1]["location"] = "imgui_internal:2858" defs["igBeginDocked"][1]["namespace"] = "ImGui" defs["igBeginDocked"][1]["ov_cimguiname"] = "igBeginDocked" defs["igBeginDocked"][1]["ret"] = "void" @@ -10949,7 +11075,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:2840" +defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:2888" defs["igBeginDragDropTargetCustom"][1]["namespace"] = "ImGui" defs["igBeginDragDropTargetCustom"][1]["ov_cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["ret"] = "bool" @@ -11069,7 +11195,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:2745" +defs["igBeginMenuEx"][1]["location"] = "imgui_internal:2791" defs["igBeginMenuEx"][1]["namespace"] = "ImGui" defs["igBeginMenuEx"][1]["ov_cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["ret"] = "bool" @@ -11186,7 +11312,7 @@ defs["igBeginPopupEx"][1]["call_args"] = "(id,extra_flags)" defs["igBeginPopupEx"][1]["cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["defaults"] = {} defs["igBeginPopupEx"][1]["funcname"] = "BeginPopupEx" -defs["igBeginPopupEx"][1]["location"] = "imgui_internal:2736" +defs["igBeginPopupEx"][1]["location"] = "imgui_internal:2781" defs["igBeginPopupEx"][1]["namespace"] = "ImGui" defs["igBeginPopupEx"][1]["ov_cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["ret"] = "bool" @@ -11264,7 +11390,7 @@ defs["igBeginTabBarEx"][1]["call_args"] = "(tab_bar,bb,flags,dock_node)" defs["igBeginTabBarEx"][1]["cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["defaults"] = {} defs["igBeginTabBarEx"][1]["funcname"] = "BeginTabBarEx" -defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:2908" +defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:2956" defs["igBeginTabBarEx"][1]["namespace"] = "ImGui" defs["igBeginTabBarEx"][1]["ov_cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["ret"] = "bool" @@ -11362,7 +11488,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:2868" +defs["igBeginTableEx"][1]["location"] = "imgui_internal:2916" defs["igBeginTableEx"][1]["namespace"] = "ImGui" defs["igBeginTableEx"][1]["ov_cimguiname"] = "igBeginTableEx" defs["igBeginTableEx"][1]["ret"] = "bool" @@ -11387,26 +11513,26 @@ defs["igBeginTooltip"][1]["stname"] = "" defs["igBeginTooltip"]["()"] = defs["igBeginTooltip"][1] defs["igBeginTooltipEx"] = {} defs["igBeginTooltipEx"][1] = {} -defs["igBeginTooltipEx"][1]["args"] = "(ImGuiWindowFlags extra_flags,ImGuiTooltipFlags tooltip_flags)" +defs["igBeginTooltipEx"][1]["args"] = "(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags)" defs["igBeginTooltipEx"][1]["argsT"] = {} defs["igBeginTooltipEx"][1]["argsT"][1] = {} -defs["igBeginTooltipEx"][1]["argsT"][1]["name"] = "extra_flags" -defs["igBeginTooltipEx"][1]["argsT"][1]["type"] = "ImGuiWindowFlags" +defs["igBeginTooltipEx"][1]["argsT"][1]["name"] = "tooltip_flags" +defs["igBeginTooltipEx"][1]["argsT"][1]["type"] = "ImGuiTooltipFlags" defs["igBeginTooltipEx"][1]["argsT"][2] = {} -defs["igBeginTooltipEx"][1]["argsT"][2]["name"] = "tooltip_flags" -defs["igBeginTooltipEx"][1]["argsT"][2]["type"] = "ImGuiTooltipFlags" -defs["igBeginTooltipEx"][1]["argsoriginal"] = "(ImGuiWindowFlags extra_flags,ImGuiTooltipFlags tooltip_flags)" -defs["igBeginTooltipEx"][1]["call_args"] = "(extra_flags,tooltip_flags)" +defs["igBeginTooltipEx"][1]["argsT"][2]["name"] = "extra_window_flags" +defs["igBeginTooltipEx"][1]["argsT"][2]["type"] = "ImGuiWindowFlags" +defs["igBeginTooltipEx"][1]["argsoriginal"] = "(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags)" +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:2737" +defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:2782" defs["igBeginTooltipEx"][1]["namespace"] = "ImGui" defs["igBeginTooltipEx"][1]["ov_cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["ret"] = "void" -defs["igBeginTooltipEx"][1]["signature"] = "(ImGuiWindowFlags,ImGuiTooltipFlags)" +defs["igBeginTooltipEx"][1]["signature"] = "(ImGuiTooltipFlags,ImGuiWindowFlags)" defs["igBeginTooltipEx"][1]["stname"] = "" -defs["igBeginTooltipEx"]["(ImGuiWindowFlags,ImGuiTooltipFlags)"] = defs["igBeginTooltipEx"][1] +defs["igBeginTooltipEx"]["(ImGuiTooltipFlags,ImGuiWindowFlags)"] = defs["igBeginTooltipEx"][1] defs["igBeginViewportSideBar"] = {} defs["igBeginViewportSideBar"][1] = {} defs["igBeginViewportSideBar"][1]["args"] = "(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags)" @@ -11431,7 +11557,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:2744" +defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:2790" defs["igBeginViewportSideBar"][1]["namespace"] = "ImGui" defs["igBeginViewportSideBar"][1]["ov_cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["ret"] = "bool" @@ -11450,13 +11576,35 @@ 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:2623" +defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:2666" defs["igBringWindowToDisplayBack"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBack"][1]["ov_cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["ret"] = "void" defs["igBringWindowToDisplayBack"][1]["signature"] = "(ImGuiWindow*)" defs["igBringWindowToDisplayBack"][1]["stname"] = "" defs["igBringWindowToDisplayBack"]["(ImGuiWindow*)"] = defs["igBringWindowToDisplayBack"][1] +defs["igBringWindowToDisplayBehind"] = {} +defs["igBringWindowToDisplayBehind"][1] = {} +defs["igBringWindowToDisplayBehind"][1]["args"] = "(ImGuiWindow* window,ImGuiWindow* above_window)" +defs["igBringWindowToDisplayBehind"][1]["argsT"] = {} +defs["igBringWindowToDisplayBehind"][1]["argsT"][1] = {} +defs["igBringWindowToDisplayBehind"][1]["argsT"][1]["name"] = "window" +defs["igBringWindowToDisplayBehind"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igBringWindowToDisplayBehind"][1]["argsT"][2] = {} +defs["igBringWindowToDisplayBehind"][1]["argsT"][2]["name"] = "above_window" +defs["igBringWindowToDisplayBehind"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igBringWindowToDisplayBehind"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiWindow* above_window)" +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:2667" +defs["igBringWindowToDisplayBehind"][1]["namespace"] = "ImGui" +defs["igBringWindowToDisplayBehind"][1]["ov_cimguiname"] = "igBringWindowToDisplayBehind" +defs["igBringWindowToDisplayBehind"][1]["ret"] = "void" +defs["igBringWindowToDisplayBehind"][1]["signature"] = "(ImGuiWindow*,ImGuiWindow*)" +defs["igBringWindowToDisplayBehind"][1]["stname"] = "" +defs["igBringWindowToDisplayBehind"]["(ImGuiWindow*,ImGuiWindow*)"] = defs["igBringWindowToDisplayBehind"][1] defs["igBringWindowToDisplayFront"] = {} defs["igBringWindowToDisplayFront"][1] = {} defs["igBringWindowToDisplayFront"][1]["args"] = "(ImGuiWindow* window)" @@ -11469,7 +11617,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:2622" +defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:2665" defs["igBringWindowToDisplayFront"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayFront"][1]["ov_cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["ret"] = "void" @@ -11488,7 +11636,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:2621" +defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:2664" defs["igBringWindowToFocusFront"][1]["namespace"] = "ImGui" defs["igBringWindowToFocusFront"][1]["ov_cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["ret"] = "void" @@ -11604,7 +11752,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:2970" +defs["igButtonBehavior"][1]["location"] = "imgui_internal:3019" defs["igButtonBehavior"][1]["namespace"] = "ImGui" defs["igButtonBehavior"][1]["ov_cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["ret"] = "bool" @@ -11631,7 +11779,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:2954" +defs["igButtonEx"][1]["location"] = "imgui_internal:3003" defs["igButtonEx"][1]["namespace"] = "ImGui" defs["igButtonEx"][1]["ov_cimguiname"] = "igButtonEx" defs["igButtonEx"][1]["ret"] = "bool" @@ -11659,7 +11807,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:2701" +defs["igCalcItemSize"][1]["location"] = "imgui_internal:2746" defs["igCalcItemSize"][1]["namespace"] = "ImGui" defs["igCalcItemSize"][1]["nonUDT"] = 1 defs["igCalcItemSize"][1]["ov_cimguiname"] = "igCalcItemSize" @@ -11683,34 +11831,31 @@ defs["igCalcItemWidth"][1]["ret"] = "float" defs["igCalcItemWidth"][1]["signature"] = "()" defs["igCalcItemWidth"][1]["stname"] = "" defs["igCalcItemWidth"]["()"] = defs["igCalcItemWidth"][1] -defs["igCalcListClipping"] = {} -defs["igCalcListClipping"][1] = {} -defs["igCalcListClipping"][1]["args"] = "(int items_count,float items_height,int* out_items_display_start,int* out_items_display_end)" -defs["igCalcListClipping"][1]["argsT"] = {} -defs["igCalcListClipping"][1]["argsT"][1] = {} -defs["igCalcListClipping"][1]["argsT"][1]["name"] = "items_count" -defs["igCalcListClipping"][1]["argsT"][1]["type"] = "int" -defs["igCalcListClipping"][1]["argsT"][2] = {} -defs["igCalcListClipping"][1]["argsT"][2]["name"] = "items_height" -defs["igCalcListClipping"][1]["argsT"][2]["type"] = "float" -defs["igCalcListClipping"][1]["argsT"][3] = {} -defs["igCalcListClipping"][1]["argsT"][3]["name"] = "out_items_display_start" -defs["igCalcListClipping"][1]["argsT"][3]["type"] = "int*" -defs["igCalcListClipping"][1]["argsT"][4] = {} -defs["igCalcListClipping"][1]["argsT"][4]["name"] = "out_items_display_end" -defs["igCalcListClipping"][1]["argsT"][4]["type"] = "int*" -defs["igCalcListClipping"][1]["argsoriginal"] = "(int items_count,float items_height,int* out_items_display_start,int* out_items_display_end)" -defs["igCalcListClipping"][1]["call_args"] = "(items_count,items_height,out_items_display_start,out_items_display_end)" -defs["igCalcListClipping"][1]["cimguiname"] = "igCalcListClipping" -defs["igCalcListClipping"][1]["defaults"] = {} -defs["igCalcListClipping"][1]["funcname"] = "CalcListClipping" -defs["igCalcListClipping"][1]["location"] = "imgui:905" -defs["igCalcListClipping"][1]["namespace"] = "ImGui" -defs["igCalcListClipping"][1]["ov_cimguiname"] = "igCalcListClipping" -defs["igCalcListClipping"][1]["ret"] = "void" -defs["igCalcListClipping"][1]["signature"] = "(int,float,int*,int*)" -defs["igCalcListClipping"][1]["stname"] = "" -defs["igCalcListClipping"]["(int,float,int*,int*)"] = defs["igCalcListClipping"][1] +defs["igCalcRoundingFlagsForRectInRect"] = {} +defs["igCalcRoundingFlagsForRectInRect"][1] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["args"] = "(const ImRect r_in,const ImRect r_outer,float threshold)" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][1] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][1]["name"] = "r_in" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][1]["type"] = "const ImRect" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][2] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][2]["name"] = "r_outer" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][2]["type"] = "const ImRect" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][3] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][3]["name"] = "threshold" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsT"][3]["type"] = "float" +defs["igCalcRoundingFlagsForRectInRect"][1]["argsoriginal"] = "(const ImRect& r_in,const ImRect& r_outer,float threshold)" +defs["igCalcRoundingFlagsForRectInRect"][1]["call_args"] = "(r_in,r_outer,threshold)" +defs["igCalcRoundingFlagsForRectInRect"][1]["cimguiname"] = "igCalcRoundingFlagsForRectInRect" +defs["igCalcRoundingFlagsForRectInRect"][1]["defaults"] = {} +defs["igCalcRoundingFlagsForRectInRect"][1]["funcname"] = "CalcRoundingFlagsForRectInRect" +defs["igCalcRoundingFlagsForRectInRect"][1]["location"] = "imgui_internal:2993" +defs["igCalcRoundingFlagsForRectInRect"][1]["namespace"] = "ImGui" +defs["igCalcRoundingFlagsForRectInRect"][1]["ov_cimguiname"] = "igCalcRoundingFlagsForRectInRect" +defs["igCalcRoundingFlagsForRectInRect"][1]["ret"] = "ImDrawFlags" +defs["igCalcRoundingFlagsForRectInRect"][1]["signature"] = "(const ImRect,const ImRect,float)" +defs["igCalcRoundingFlagsForRectInRect"][1]["stname"] = "" +defs["igCalcRoundingFlagsForRectInRect"]["(const ImRect,const ImRect,float)"] = defs["igCalcRoundingFlagsForRectInRect"][1] defs["igCalcTextSize"] = {} defs["igCalcTextSize"][1] = {} defs["igCalcTextSize"][1]["args"] = "(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width)" @@ -11738,7 +11883,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:910" +defs["igCalcTextSize"][1]["location"] = "imgui:909" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -11767,7 +11912,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:2765" +defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:2811" defs["igCalcTypematicRepeatAmount"][1]["namespace"] = "ImGui" defs["igCalcTypematicRepeatAmount"][1]["ov_cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["ret"] = "int" @@ -11789,7 +11934,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:2609" +defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:2649" defs["igCalcWindowNextAutoFitSize"][1]["namespace"] = "ImGui" defs["igCalcWindowNextAutoFitSize"][1]["nonUDT"] = 1 defs["igCalcWindowNextAutoFitSize"][1]["ov_cimguiname"] = "igCalcWindowNextAutoFitSize" @@ -11812,7 +11957,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:2702" +defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:2747" defs["igCalcWrapWidthForPos"][1]["namespace"] = "ImGui" defs["igCalcWrapWidthForPos"][1]["ov_cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["ret"] = "float" @@ -11834,7 +11979,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:2644" +defs["igCallContextHooks"][1]["location"] = "imgui_internal:2690" defs["igCallContextHooks"][1]["namespace"] = "ImGui" defs["igCallContextHooks"][1]["ov_cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["ret"] = "void" @@ -11854,7 +11999,7 @@ defs["igCaptureKeyboardFromApp"][1]["cimguiname"] = "igCaptureKeyboardFromApp" defs["igCaptureKeyboardFromApp"][1]["defaults"] = {} defs["igCaptureKeyboardFromApp"][1]["defaults"]["want_capture_keyboard_value"] = "true" defs["igCaptureKeyboardFromApp"][1]["funcname"] = "CaptureKeyboardFromApp" -defs["igCaptureKeyboardFromApp"][1]["location"] = "imgui:926" +defs["igCaptureKeyboardFromApp"][1]["location"] = "imgui:925" defs["igCaptureKeyboardFromApp"][1]["namespace"] = "ImGui" defs["igCaptureKeyboardFromApp"][1]["ov_cimguiname"] = "igCaptureKeyboardFromApp" defs["igCaptureKeyboardFromApp"][1]["ret"] = "void" @@ -11967,7 +12112,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:2966" +defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3015" defs["igCheckboxFlags"][3]["namespace"] = "ImGui" defs["igCheckboxFlags"][3]["ov_cimguiname"] = "igCheckboxFlags_S64Ptr" defs["igCheckboxFlags"][3]["ret"] = "bool" @@ -11990,7 +12135,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:2967" +defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3016" defs["igCheckboxFlags"][4]["namespace"] = "ImGui" defs["igCheckboxFlags"][4]["ov_cimguiname"] = "igCheckboxFlags_U64Ptr" defs["igCheckboxFlags"][4]["ret"] = "bool" @@ -12009,7 +12154,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:2685" +defs["igClearActiveID"][1]["location"] = "imgui_internal:2731" defs["igClearActiveID"][1]["namespace"] = "ImGui" defs["igClearActiveID"][1]["ov_cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["ret"] = "void" @@ -12025,7 +12170,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:2841" +defs["igClearDragDrop"][1]["location"] = "imgui_internal:2889" defs["igClearDragDrop"][1]["namespace"] = "ImGui" defs["igClearDragDrop"][1]["ov_cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["ret"] = "void" @@ -12041,7 +12186,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:2656" +defs["igClearIniSettings"][1]["location"] = "imgui_internal:2702" defs["igClearIniSettings"][1]["namespace"] = "ImGui" defs["igClearIniSettings"][1]["ov_cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["ret"] = "void" @@ -12063,7 +12208,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:2955" +defs["igCloseButton"][1]["location"] = "imgui_internal:3004" defs["igCloseButton"][1]["namespace"] = "ImGui" defs["igCloseButton"][1]["ov_cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["ret"] = "bool" @@ -12101,7 +12246,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:2732" +defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:2777" defs["igClosePopupToLevel"][1]["namespace"] = "ImGui" defs["igClosePopupToLevel"][1]["ov_cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["ret"] = "void" @@ -12117,7 +12262,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:2734" +defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:2779" defs["igClosePopupsExceptModals"][1]["namespace"] = "ImGui" defs["igClosePopupsExceptModals"][1]["ov_cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["ret"] = "void" @@ -12139,7 +12284,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:2733" +defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:2778" defs["igClosePopupsOverWindow"][1]["namespace"] = "ImGui" defs["igClosePopupsOverWindow"][1]["ov_cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["ret"] = "void" @@ -12164,7 +12309,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:2956" +defs["igCollapseButton"][1]["location"] = "imgui_internal:3005" defs["igCollapseButton"][1]["namespace"] = "ImGui" defs["igCollapseButton"][1]["ov_cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["ret"] = "bool" @@ -12261,7 +12406,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:914" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:913" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -12298,7 +12443,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:916" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:915" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -12335,7 +12480,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:915" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:914" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -12357,7 +12502,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:913" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:912" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -12432,7 +12577,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:3005" +defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3054" defs["igColorEditOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorEditOptionsPopup"][1]["ov_cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["ret"] = "void" @@ -12510,7 +12655,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:3006" +defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3055" defs["igColorPickerOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorPickerOptionsPopup"][1]["ov_cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["ret"] = "void" @@ -12535,7 +12680,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:3004" +defs["igColorTooltip"][1]["location"] = "imgui_internal:3053" defs["igColorTooltip"][1]["namespace"] = "ImGui" defs["igColorTooltip"][1]["ov_cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["ret"] = "void" @@ -12698,7 +12843,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:2657" +defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:2703" defs["igCreateNewWindowSettings"][1]["namespace"] = "ImGui" defs["igCreateNewWindowSettings"][1]["ov_cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -12729,7 +12874,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:2991" +defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3040" defs["igDataTypeApplyOp"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOp"][1]["ov_cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["ret"] = "void" @@ -12760,7 +12905,7 @@ defs["igDataTypeApplyOpFromText"][1]["call_args"] = "(buf,initial_value_buf,data defs["igDataTypeApplyOpFromText"][1]["cimguiname"] = "igDataTypeApplyOpFromText" defs["igDataTypeApplyOpFromText"][1]["defaults"] = {} defs["igDataTypeApplyOpFromText"][1]["funcname"] = "DataTypeApplyOpFromText" -defs["igDataTypeApplyOpFromText"][1]["location"] = "imgui_internal:2992" +defs["igDataTypeApplyOpFromText"][1]["location"] = "imgui_internal:3041" defs["igDataTypeApplyOpFromText"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOpFromText"][1]["ov_cimguiname"] = "igDataTypeApplyOpFromText" defs["igDataTypeApplyOpFromText"][1]["ret"] = "bool" @@ -12788,7 +12933,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:2994" +defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3043" defs["igDataTypeClamp"][1]["namespace"] = "ImGui" defs["igDataTypeClamp"][1]["ov_cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["ret"] = "bool" @@ -12813,7 +12958,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:2993" +defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3042" defs["igDataTypeCompare"][1]["namespace"] = "ImGui" defs["igDataTypeCompare"][1]["ov_cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["ret"] = "int" @@ -12844,7 +12989,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:2990" +defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3039" defs["igDataTypeFormatString"][1]["namespace"] = "ImGui" defs["igDataTypeFormatString"][1]["ov_cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["ret"] = "int" @@ -12863,7 +13008,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:2989" +defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3038" defs["igDataTypeGetInfo"][1]["namespace"] = "ImGui" defs["igDataTypeGetInfo"][1]["ov_cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["ret"] = "const ImGuiDataTypeInfo*" @@ -12920,7 +13065,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:3023" +defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3072" defs["igDebugDrawItemRect"][1]["namespace"] = "ImGui" defs["igDebugDrawItemRect"][1]["ov_cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["ret"] = "void" @@ -12948,7 +13093,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:3027" +defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3076" defs["igDebugHookIdInfo"][1]["namespace"] = "ImGui" defs["igDebugHookIdInfo"][1]["ov_cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["ret"] = "void" @@ -12967,7 +13112,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:3028" +defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3077" defs["igDebugNodeColumns"][1]["namespace"] = "ImGui" defs["igDebugNodeColumns"][1]["ov_cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["ret"] = "void" @@ -12989,7 +13134,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:3029" +defs["igDebugNodeDockNode"][1]["location"] = "imgui_internal:3078" defs["igDebugNodeDockNode"][1]["namespace"] = "ImGui" defs["igDebugNodeDockNode"][1]["ov_cimguiname"] = "igDebugNodeDockNode" defs["igDebugNodeDockNode"][1]["ret"] = "void" @@ -13020,7 +13165,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:3031" +defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3080" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ov_cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ret"] = "void" @@ -13048,7 +13193,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:3030" +defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3079" defs["igDebugNodeDrawList"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawList"][1]["ov_cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["ret"] = "void" @@ -13067,7 +13212,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:3032" +defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3081" defs["igDebugNodeFont"][1]["namespace"] = "ImGui" defs["igDebugNodeFont"][1]["ov_cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["ret"] = "void" @@ -13089,7 +13234,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:3033" +defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3082" defs["igDebugNodeStorage"][1]["namespace"] = "ImGui" defs["igDebugNodeStorage"][1]["ov_cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["ret"] = "void" @@ -13111,7 +13256,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:3034" +defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3083" defs["igDebugNodeTabBar"][1]["namespace"] = "ImGui" defs["igDebugNodeTabBar"][1]["ov_cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["ret"] = "void" @@ -13130,7 +13275,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:3035" +defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3084" defs["igDebugNodeTable"][1]["namespace"] = "ImGui" defs["igDebugNodeTable"][1]["ov_cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["ret"] = "void" @@ -13149,7 +13294,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:3036" +defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3085" defs["igDebugNodeTableSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeTableSettings"][1]["ov_cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["ret"] = "void" @@ -13168,7 +13313,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:3040" +defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3090" defs["igDebugNodeViewport"][1]["namespace"] = "ImGui" defs["igDebugNodeViewport"][1]["ov_cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["ret"] = "void" @@ -13190,7 +13335,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:3037" +defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3086" defs["igDebugNodeWindow"][1]["namespace"] = "ImGui" defs["igDebugNodeWindow"][1]["ov_cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["ret"] = "void" @@ -13209,7 +13354,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:3038" +defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3087" defs["igDebugNodeWindowSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowSettings"][1]["ov_cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["ret"] = "void" @@ -13231,13 +13376,38 @@ 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:3039" +defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3088" defs["igDebugNodeWindowsList"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsList"][1]["ov_cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["ret"] = "void" defs["igDebugNodeWindowsList"][1]["signature"] = "(ImVector_ImGuiWindowPtr*,const char*)" defs["igDebugNodeWindowsList"][1]["stname"] = "" defs["igDebugNodeWindowsList"]["(ImVector_ImGuiWindowPtr*,const char*)"] = defs["igDebugNodeWindowsList"][1] +defs["igDebugNodeWindowsListByBeginStackParent"] = {} +defs["igDebugNodeWindowsListByBeginStackParent"][1] = {} +defs["igDebugNodeWindowsListByBeginStackParent"][1]["args"] = "(ImGuiWindow** windows,int windows_size,ImGuiWindow* parent_in_begin_stack)" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["argsT"] = {} +defs["igDebugNodeWindowsListByBeginStackParent"][1]["argsT"][1] = {} +defs["igDebugNodeWindowsListByBeginStackParent"][1]["argsT"][1]["name"] = "windows" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["argsT"][1]["type"] = "ImGuiWindow**" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["argsT"][2] = {} +defs["igDebugNodeWindowsListByBeginStackParent"][1]["argsT"][2]["name"] = "windows_size" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["argsT"][2]["type"] = "int" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["argsT"][3] = {} +defs["igDebugNodeWindowsListByBeginStackParent"][1]["argsT"][3]["name"] = "parent_in_begin_stack" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["argsT"][3]["type"] = "ImGuiWindow*" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["argsoriginal"] = "(ImGuiWindow** windows,int windows_size,ImGuiWindow* parent_in_begin_stack)" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["call_args"] = "(windows,windows_size,parent_in_begin_stack)" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["defaults"] = {} +defs["igDebugNodeWindowsListByBeginStackParent"][1]["funcname"] = "DebugNodeWindowsListByBeginStackParent" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3089" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["namespace"] = "ImGui" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["ov_cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["ret"] = "void" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["signature"] = "(ImGuiWindow**,int,ImGuiWindow*)" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["stname"] = "" +defs["igDebugNodeWindowsListByBeginStackParent"]["(ImGuiWindow**,int,ImGuiWindow*)"] = defs["igDebugNodeWindowsListByBeginStackParent"][1] defs["igDebugRenderViewportThumbnail"] = {} defs["igDebugRenderViewportThumbnail"][1] = {} defs["igDebugRenderViewportThumbnail"][1]["args"] = "(ImDrawList* draw_list,ImGuiViewportP* viewport,const ImRect bb)" @@ -13256,7 +13426,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:3041" +defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3091" defs["igDebugRenderViewportThumbnail"][1]["namespace"] = "ImGui" defs["igDebugRenderViewportThumbnail"][1]["ov_cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["ret"] = "void" @@ -13272,7 +13442,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_internal:3024" +defs["igDebugStartItemPicker"][1]["location"] = "imgui_internal:3073" defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["ret"] = "void" @@ -13311,7 +13481,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:2649" +defs["igDestroyPlatformWindow"][1]["location"] = "imgui_internal:2695" defs["igDestroyPlatformWindow"][1]["namespace"] = "ImGui" defs["igDestroyPlatformWindow"][1]["ov_cimguiname"] = "igDestroyPlatformWindow" defs["igDestroyPlatformWindow"][1]["ret"] = "void" @@ -13351,7 +13521,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:2827" +defs["igDockBuilderAddNode"][1]["location"] = "imgui_internal:2875" defs["igDockBuilderAddNode"][1]["namespace"] = "ImGui" defs["igDockBuilderAddNode"][1]["ov_cimguiname"] = "igDockBuilderAddNode" defs["igDockBuilderAddNode"][1]["ret"] = "ImGuiID" @@ -13376,7 +13546,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:2834" +defs["igDockBuilderCopyDockSpace"][1]["location"] = "imgui_internal:2882" defs["igDockBuilderCopyDockSpace"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyDockSpace"][1]["ov_cimguiname"] = "igDockBuilderCopyDockSpace" defs["igDockBuilderCopyDockSpace"][1]["ret"] = "void" @@ -13401,7 +13571,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:2835" +defs["igDockBuilderCopyNode"][1]["location"] = "imgui_internal:2883" defs["igDockBuilderCopyNode"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyNode"][1]["ov_cimguiname"] = "igDockBuilderCopyNode" defs["igDockBuilderCopyNode"][1]["ret"] = "void" @@ -13423,7 +13593,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:2836" +defs["igDockBuilderCopyWindowSettings"][1]["location"] = "imgui_internal:2884" defs["igDockBuilderCopyWindowSettings"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyWindowSettings"][1]["ov_cimguiname"] = "igDockBuilderCopyWindowSettings" defs["igDockBuilderCopyWindowSettings"][1]["ret"] = "void" @@ -13445,7 +13615,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:2824" +defs["igDockBuilderDockWindow"][1]["location"] = "imgui_internal:2872" defs["igDockBuilderDockWindow"][1]["namespace"] = "ImGui" defs["igDockBuilderDockWindow"][1]["ov_cimguiname"] = "igDockBuilderDockWindow" defs["igDockBuilderDockWindow"][1]["ret"] = "void" @@ -13464,7 +13634,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:2837" +defs["igDockBuilderFinish"][1]["location"] = "imgui_internal:2885" defs["igDockBuilderFinish"][1]["namespace"] = "ImGui" defs["igDockBuilderFinish"][1]["ov_cimguiname"] = "igDockBuilderFinish" defs["igDockBuilderFinish"][1]["ret"] = "void" @@ -13483,7 +13653,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:2826" +defs["igDockBuilderGetCentralNode"][1]["location"] = "imgui_internal:2874" defs["igDockBuilderGetCentralNode"][1]["namespace"] = "ImGui" defs["igDockBuilderGetCentralNode"][1]["ov_cimguiname"] = "igDockBuilderGetCentralNode" defs["igDockBuilderGetCentralNode"][1]["ret"] = "ImGuiDockNode*" @@ -13502,7 +13672,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:2825" +defs["igDockBuilderGetNode"][1]["location"] = "imgui_internal:2873" defs["igDockBuilderGetNode"][1]["namespace"] = "ImGui" defs["igDockBuilderGetNode"][1]["ov_cimguiname"] = "igDockBuilderGetNode" defs["igDockBuilderGetNode"][1]["ret"] = "ImGuiDockNode*" @@ -13521,7 +13691,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:2828" +defs["igDockBuilderRemoveNode"][1]["location"] = "imgui_internal:2876" defs["igDockBuilderRemoveNode"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNode"][1]["ov_cimguiname"] = "igDockBuilderRemoveNode" defs["igDockBuilderRemoveNode"][1]["ret"] = "void" @@ -13540,7 +13710,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:2830" +defs["igDockBuilderRemoveNodeChildNodes"][1]["location"] = "imgui_internal:2878" defs["igDockBuilderRemoveNodeChildNodes"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNodeChildNodes"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeChildNodes" defs["igDockBuilderRemoveNodeChildNodes"][1]["ret"] = "void" @@ -13563,7 +13733,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:2829" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["location"] = "imgui_internal:2877" defs["igDockBuilderRemoveNodeDockedWindows"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNodeDockedWindows"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeDockedWindows" defs["igDockBuilderRemoveNodeDockedWindows"][1]["ret"] = "void" @@ -13585,7 +13755,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:2831" +defs["igDockBuilderSetNodePos"][1]["location"] = "imgui_internal:2879" defs["igDockBuilderSetNodePos"][1]["namespace"] = "ImGui" defs["igDockBuilderSetNodePos"][1]["ov_cimguiname"] = "igDockBuilderSetNodePos" defs["igDockBuilderSetNodePos"][1]["ret"] = "void" @@ -13607,7 +13777,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:2832" +defs["igDockBuilderSetNodeSize"][1]["location"] = "imgui_internal:2880" defs["igDockBuilderSetNodeSize"][1]["namespace"] = "ImGui" defs["igDockBuilderSetNodeSize"][1]["ov_cimguiname"] = "igDockBuilderSetNodeSize" defs["igDockBuilderSetNodeSize"][1]["ret"] = "void" @@ -13638,7 +13808,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:2833" +defs["igDockBuilderSplitNode"][1]["location"] = "imgui_internal:2881" defs["igDockBuilderSplitNode"][1]["namespace"] = "ImGui" defs["igDockBuilderSplitNode"][1]["ov_cimguiname"] = "igDockBuilderSplitNode" defs["igDockBuilderSplitNode"][1]["ret"] = "ImGuiID" @@ -13672,7 +13842,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:2802" +defs["igDockContextCalcDropPosForDocking"][1]["location"] = "imgui_internal:2849" defs["igDockContextCalcDropPosForDocking"][1]["namespace"] = "ImGui" defs["igDockContextCalcDropPosForDocking"][1]["ov_cimguiname"] = "igDockContextCalcDropPosForDocking" defs["igDockContextCalcDropPosForDocking"][1]["ret"] = "bool" @@ -13697,13 +13867,32 @@ 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:2794" +defs["igDockContextClearNodes"][1]["location"] = "imgui_internal:2840" defs["igDockContextClearNodes"][1]["namespace"] = "ImGui" defs["igDockContextClearNodes"][1]["ov_cimguiname"] = "igDockContextClearNodes" defs["igDockContextClearNodes"][1]["ret"] = "void" defs["igDockContextClearNodes"][1]["signature"] = "(ImGuiContext*,ImGuiID,bool)" defs["igDockContextClearNodes"][1]["stname"] = "" defs["igDockContextClearNodes"]["(ImGuiContext*,ImGuiID,bool)"] = defs["igDockContextClearNodes"][1] +defs["igDockContextEndFrame"] = {} +defs["igDockContextEndFrame"][1] = {} +defs["igDockContextEndFrame"][1]["args"] = "(ImGuiContext* ctx)" +defs["igDockContextEndFrame"][1]["argsT"] = {} +defs["igDockContextEndFrame"][1]["argsT"][1] = {} +defs["igDockContextEndFrame"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextEndFrame"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextEndFrame"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +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:2844" +defs["igDockContextEndFrame"][1]["namespace"] = "ImGui" +defs["igDockContextEndFrame"][1]["ov_cimguiname"] = "igDockContextEndFrame" +defs["igDockContextEndFrame"][1]["ret"] = "void" +defs["igDockContextEndFrame"][1]["signature"] = "(ImGuiContext*)" +defs["igDockContextEndFrame"][1]["stname"] = "" +defs["igDockContextEndFrame"]["(ImGuiContext*)"] = defs["igDockContextEndFrame"][1] defs["igDockContextGenNodeID"] = {} defs["igDockContextGenNodeID"][1] = {} defs["igDockContextGenNodeID"][1]["args"] = "(ImGuiContext* ctx)" @@ -13716,7 +13905,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:2798" +defs["igDockContextGenNodeID"][1]["location"] = "imgui_internal:2845" defs["igDockContextGenNodeID"][1]["namespace"] = "ImGui" defs["igDockContextGenNodeID"][1]["ov_cimguiname"] = "igDockContextGenNodeID" defs["igDockContextGenNodeID"][1]["ret"] = "ImGuiID" @@ -13735,7 +13924,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:2792" +defs["igDockContextInitialize"][1]["location"] = "imgui_internal:2838" defs["igDockContextInitialize"][1]["namespace"] = "ImGui" defs["igDockContextInitialize"][1]["ov_cimguiname"] = "igDockContextInitialize" defs["igDockContextInitialize"][1]["ret"] = "void" @@ -13754,7 +13943,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:2797" +defs["igDockContextNewFrameUpdateDocking"][1]["location"] = "imgui_internal:2843" defs["igDockContextNewFrameUpdateDocking"][1]["namespace"] = "ImGui" defs["igDockContextNewFrameUpdateDocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateDocking" defs["igDockContextNewFrameUpdateDocking"][1]["ret"] = "void" @@ -13773,7 +13962,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:2796" +defs["igDockContextNewFrameUpdateUndocking"][1]["location"] = "imgui_internal:2842" defs["igDockContextNewFrameUpdateUndocking"][1]["namespace"] = "ImGui" defs["igDockContextNewFrameUpdateUndocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateUndocking" defs["igDockContextNewFrameUpdateUndocking"][1]["ret"] = "void" @@ -13810,7 +13999,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:2799" +defs["igDockContextQueueDock"][1]["location"] = "imgui_internal:2846" defs["igDockContextQueueDock"][1]["namespace"] = "ImGui" defs["igDockContextQueueDock"][1]["ov_cimguiname"] = "igDockContextQueueDock" defs["igDockContextQueueDock"][1]["ret"] = "void" @@ -13832,7 +14021,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:2801" +defs["igDockContextQueueUndockNode"][1]["location"] = "imgui_internal:2848" defs["igDockContextQueueUndockNode"][1]["namespace"] = "ImGui" defs["igDockContextQueueUndockNode"][1]["ov_cimguiname"] = "igDockContextQueueUndockNode" defs["igDockContextQueueUndockNode"][1]["ret"] = "void" @@ -13854,7 +14043,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:2800" +defs["igDockContextQueueUndockWindow"][1]["location"] = "imgui_internal:2847" defs["igDockContextQueueUndockWindow"][1]["namespace"] = "ImGui" defs["igDockContextQueueUndockWindow"][1]["ov_cimguiname"] = "igDockContextQueueUndockWindow" defs["igDockContextQueueUndockWindow"][1]["ret"] = "void" @@ -13873,7 +14062,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:2795" +defs["igDockContextRebuildNodes"][1]["location"] = "imgui_internal:2841" defs["igDockContextRebuildNodes"][1]["namespace"] = "ImGui" defs["igDockContextRebuildNodes"][1]["ov_cimguiname"] = "igDockContextRebuildNodes" defs["igDockContextRebuildNodes"][1]["ret"] = "void" @@ -13892,7 +14081,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:2793" +defs["igDockContextShutdown"][1]["location"] = "imgui_internal:2839" defs["igDockContextShutdown"][1]["namespace"] = "ImGui" defs["igDockContextShutdown"][1]["ov_cimguiname"] = "igDockContextShutdown" defs["igDockContextShutdown"][1]["ret"] = "void" @@ -13911,7 +14100,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:2803" +defs["igDockNodeBeginAmendTabBar"][1]["location"] = "imgui_internal:2850" defs["igDockNodeBeginAmendTabBar"][1]["namespace"] = "ImGui" defs["igDockNodeBeginAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeBeginAmendTabBar" defs["igDockNodeBeginAmendTabBar"][1]["ret"] = "bool" @@ -13927,7 +14116,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:2804" +defs["igDockNodeEndAmendTabBar"][1]["location"] = "imgui_internal:2851" defs["igDockNodeEndAmendTabBar"][1]["namespace"] = "ImGui" defs["igDockNodeEndAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeEndAmendTabBar" defs["igDockNodeEndAmendTabBar"][1]["ret"] = "void" @@ -13946,7 +14135,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:2806" +defs["igDockNodeGetDepth"][1]["location"] = "imgui_internal:2854" defs["igDockNodeGetDepth"][1]["namespace"] = "ImGui" defs["igDockNodeGetDepth"][1]["ov_cimguiname"] = "igDockNodeGetDepth" defs["igDockNodeGetDepth"][1]["ret"] = "int" @@ -13965,7 +14154,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:2805" +defs["igDockNodeGetRootNode"][1]["location"] = "imgui_internal:2852" defs["igDockNodeGetRootNode"][1]["namespace"] = "ImGui" defs["igDockNodeGetRootNode"][1]["ov_cimguiname"] = "igDockNodeGetRootNode" defs["igDockNodeGetRootNode"][1]["ret"] = "ImGuiDockNode*" @@ -13984,13 +14173,35 @@ 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:2807" +defs["igDockNodeGetWindowMenuButtonId"][1]["location"] = "imgui_internal:2855" defs["igDockNodeGetWindowMenuButtonId"][1]["namespace"] = "ImGui" defs["igDockNodeGetWindowMenuButtonId"][1]["ov_cimguiname"] = "igDockNodeGetWindowMenuButtonId" defs["igDockNodeGetWindowMenuButtonId"][1]["ret"] = "ImGuiID" defs["igDockNodeGetWindowMenuButtonId"][1]["signature"] = "(const ImGuiDockNode*)" defs["igDockNodeGetWindowMenuButtonId"][1]["stname"] = "" defs["igDockNodeGetWindowMenuButtonId"]["(const ImGuiDockNode*)"] = defs["igDockNodeGetWindowMenuButtonId"][1] +defs["igDockNodeIsInHierarchyOf"] = {} +defs["igDockNodeIsInHierarchyOf"][1] = {} +defs["igDockNodeIsInHierarchyOf"][1]["args"] = "(ImGuiDockNode* node,ImGuiDockNode* parent)" +defs["igDockNodeIsInHierarchyOf"][1]["argsT"] = {} +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][1] = {} +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][1]["name"] = "node" +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][1]["type"] = "ImGuiDockNode*" +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][2] = {} +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][2]["name"] = "parent" +defs["igDockNodeIsInHierarchyOf"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["igDockNodeIsInHierarchyOf"][1]["argsoriginal"] = "(ImGuiDockNode* node,ImGuiDockNode* parent)" +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:2853" +defs["igDockNodeIsInHierarchyOf"][1]["namespace"] = "ImGui" +defs["igDockNodeIsInHierarchyOf"][1]["ov_cimguiname"] = "igDockNodeIsInHierarchyOf" +defs["igDockNodeIsInHierarchyOf"][1]["ret"] = "bool" +defs["igDockNodeIsInHierarchyOf"][1]["signature"] = "(ImGuiDockNode*,ImGuiDockNode*)" +defs["igDockNodeIsInHierarchyOf"][1]["stname"] = "" +defs["igDockNodeIsInHierarchyOf"]["(ImGuiDockNode*,ImGuiDockNode*)"] = defs["igDockNodeIsInHierarchyOf"][1] defs["igDockSpace"] = {} defs["igDockSpace"][1] = {} defs["igDockSpace"][1]["args"] = "(ImGuiID id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)" @@ -14083,7 +14294,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:2971" +defs["igDragBehavior"][1]["location"] = "imgui_internal:3020" defs["igDragBehavior"][1]["namespace"] = "ImGui" defs["igDragBehavior"][1]["ov_cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["ret"] = "bool" @@ -14677,7 +14888,7 @@ defs["igEndChildFrame"][1]["call_args"] = "()" defs["igEndChildFrame"][1]["cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["defaults"] = {} defs["igEndChildFrame"][1]["funcname"] = "EndChildFrame" -defs["igEndChildFrame"][1]["location"] = "imgui:907" +defs["igEndChildFrame"][1]["location"] = "imgui:906" defs["igEndChildFrame"][1]["namespace"] = "ImGui" defs["igEndChildFrame"][1]["ov_cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["ret"] = "void" @@ -14693,7 +14904,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:2847" +defs["igEndColumns"][1]["location"] = "imgui_internal:2895" defs["igEndColumns"][1]["namespace"] = "ImGui" defs["igEndColumns"][1]["ov_cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["ret"] = "void" @@ -14725,7 +14936,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:2751" +defs["igEndComboPreview"][1]["location"] = "imgui_internal:2797" defs["igEndComboPreview"][1]["namespace"] = "ImGui" defs["igEndComboPreview"][1]["ov_cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["ret"] = "void" @@ -14972,7 +15183,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:3021" +defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3070" defs["igErrorCheckEndFrameRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndFrameRecover"][1]["ov_cimguiname"] = "igErrorCheckEndFrameRecover" defs["igErrorCheckEndFrameRecover"][1]["ret"] = "void" @@ -14995,7 +15206,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:3022" +defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3071" defs["igErrorCheckEndWindowRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndWindowRecover"][1]["ov_cimguiname"] = "igErrorCheckEndWindowRecover" defs["igErrorCheckEndWindowRecover"][1]["ret"] = "void" @@ -15017,7 +15228,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:2740" +defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:2786" defs["igFindBestWindowPosForPopup"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopup"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopup"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopup" @@ -15055,7 +15266,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:2741" +defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:2787" defs["igFindBestWindowPosForPopupEx"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopupEx"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopupEx"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopupEx" @@ -15063,6 +15274,25 @@ defs["igFindBestWindowPosForPopupEx"][1]["ret"] = "void" defs["igFindBestWindowPosForPopupEx"][1]["signature"] = "(const ImVec2,const ImVec2,ImGuiDir*,const ImRect,const ImRect,ImGuiPopupPositionPolicy)" defs["igFindBestWindowPosForPopupEx"][1]["stname"] = "" defs["igFindBestWindowPosForPopupEx"]["(const ImVec2,const ImVec2,ImGuiDir*,const ImRect,const ImRect,ImGuiPopupPositionPolicy)"] = defs["igFindBestWindowPosForPopupEx"][1] +defs["igFindBottomMostVisibleWindowWithinBeginStack"] = {} +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1] = {} +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["args"] = "(ImGuiWindow* window)" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["argsT"] = {} +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["argsT"][1] = {} +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["argsT"][1]["name"] = "window" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["argsoriginal"] = "(ImGuiWindow* window)" +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:2669" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["namespace"] = "ImGui" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ov_cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ret"] = "ImGuiWindow*" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["signature"] = "(ImGuiWindow*)" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["stname"] = "" +defs["igFindBottomMostVisibleWindowWithinBeginStack"]["(ImGuiWindow*)"] = defs["igFindBottomMostVisibleWindowWithinBeginStack"][1] defs["igFindOrCreateColumns"] = {} defs["igFindOrCreateColumns"][1] = {} defs["igFindOrCreateColumns"][1]["args"] = "(ImGuiWindow* window,ImGuiID id)" @@ -15078,7 +15308,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:2852" +defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:2900" defs["igFindOrCreateColumns"][1]["namespace"] = "ImGui" defs["igFindOrCreateColumns"][1]["ov_cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["ret"] = "ImGuiOldColumns*" @@ -15097,7 +15327,7 @@ defs["igFindOrCreateWindowSettings"][1]["call_args"] = "(name)" defs["igFindOrCreateWindowSettings"][1]["cimguiname"] = "igFindOrCreateWindowSettings" defs["igFindOrCreateWindowSettings"][1]["defaults"] = {} defs["igFindOrCreateWindowSettings"][1]["funcname"] = "FindOrCreateWindowSettings" -defs["igFindOrCreateWindowSettings"][1]["location"] = "imgui_internal:2659" +defs["igFindOrCreateWindowSettings"][1]["location"] = "imgui_internal:2705" defs["igFindOrCreateWindowSettings"][1]["namespace"] = "ImGui" defs["igFindOrCreateWindowSettings"][1]["ov_cimguiname"] = "igFindOrCreateWindowSettings" defs["igFindOrCreateWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -15120,7 +15350,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:2934" +defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:2982" defs["igFindRenderedTextEnd"][1]["namespace"] = "ImGui" defs["igFindRenderedTextEnd"][1]["ov_cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["ret"] = "const char*" @@ -15139,7 +15369,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:2660" +defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:2706" defs["igFindSettingsHandler"][1]["namespace"] = "ImGui" defs["igFindSettingsHandler"][1]["ov_cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["ret"] = "ImGuiSettingsHandler*" @@ -15196,7 +15426,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:2606" +defs["igFindWindowByID"][1]["location"] = "imgui_internal:2646" defs["igFindWindowByID"][1]["namespace"] = "ImGui" defs["igFindWindowByID"][1]["ov_cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["ret"] = "ImGuiWindow*" @@ -15215,13 +15445,32 @@ 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:2607" +defs["igFindWindowByName"][1]["location"] = "imgui_internal:2647" defs["igFindWindowByName"][1]["namespace"] = "ImGui" defs["igFindWindowByName"][1]["ov_cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["ret"] = "ImGuiWindow*" defs["igFindWindowByName"][1]["signature"] = "(const char*)" defs["igFindWindowByName"][1]["stname"] = "" defs["igFindWindowByName"]["(const char*)"] = defs["igFindWindowByName"][1] +defs["igFindWindowDisplayIndex"] = {} +defs["igFindWindowDisplayIndex"][1] = {} +defs["igFindWindowDisplayIndex"][1]["args"] = "(ImGuiWindow* window)" +defs["igFindWindowDisplayIndex"][1]["argsT"] = {} +defs["igFindWindowDisplayIndex"][1]["argsT"][1] = {} +defs["igFindWindowDisplayIndex"][1]["argsT"][1]["name"] = "window" +defs["igFindWindowDisplayIndex"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igFindWindowDisplayIndex"][1]["argsoriginal"] = "(ImGuiWindow* window)" +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:2668" +defs["igFindWindowDisplayIndex"][1]["namespace"] = "ImGui" +defs["igFindWindowDisplayIndex"][1]["ov_cimguiname"] = "igFindWindowDisplayIndex" +defs["igFindWindowDisplayIndex"][1]["ret"] = "int" +defs["igFindWindowDisplayIndex"][1]["signature"] = "(ImGuiWindow*)" +defs["igFindWindowDisplayIndex"][1]["stname"] = "" +defs["igFindWindowDisplayIndex"]["(ImGuiWindow*)"] = defs["igFindWindowDisplayIndex"][1] defs["igFindWindowSettings"] = {} defs["igFindWindowSettings"][1] = {} defs["igFindWindowSettings"][1]["args"] = "(ImGuiID id)" @@ -15234,7 +15483,7 @@ defs["igFindWindowSettings"][1]["call_args"] = "(id)" defs["igFindWindowSettings"][1]["cimguiname"] = "igFindWindowSettings" defs["igFindWindowSettings"][1]["defaults"] = {} defs["igFindWindowSettings"][1]["funcname"] = "FindWindowSettings" -defs["igFindWindowSettings"][1]["location"] = "imgui_internal:2658" +defs["igFindWindowSettings"][1]["location"] = "imgui_internal:2704" defs["igFindWindowSettings"][1]["namespace"] = "ImGui" defs["igFindWindowSettings"][1]["ov_cimguiname"] = "igFindWindowSettings" defs["igFindWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -15256,7 +15505,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:2620" +defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:2663" defs["igFocusTopMostWindowUnderOne"][1]["namespace"] = "ImGui" defs["igFocusTopMostWindowUnderOne"][1]["ov_cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["ret"] = "void" @@ -15275,7 +15524,7 @@ defs["igFocusWindow"][1]["call_args"] = "(window)" defs["igFocusWindow"][1]["cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["defaults"] = {} defs["igFocusWindow"][1]["funcname"] = "FocusWindow" -defs["igFocusWindow"][1]["location"] = "imgui_internal:2619" +defs["igFocusWindow"][1]["location"] = "imgui_internal:2662" defs["igFocusWindow"][1]["namespace"] = "ImGui" defs["igFocusWindow"][1]["ov_cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["ret"] = "void" @@ -15294,7 +15543,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:3018" +defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3067" defs["igGcAwakeTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcAwakeTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["ret"] = "void" @@ -15310,7 +15559,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:3016" +defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3065" defs["igGcCompactTransientMiscBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientMiscBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["ret"] = "void" @@ -15329,7 +15578,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:3017" +defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3066" defs["igGcCompactTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["ret"] = "void" @@ -15345,7 +15594,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:2681" +defs["igGetActiveID"][1]["location"] = "imgui_internal:2727" defs["igGetActiveID"][1]["namespace"] = "ImGui" defs["igGetActiveID"][1]["ov_cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["ret"] = "ImGuiID" @@ -15517,7 +15766,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:2854" +defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:2902" defs["igGetColumnNormFromOffset"][1]["namespace"] = "ImGui" defs["igGetColumnNormFromOffset"][1]["ov_cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["ret"] = "float" @@ -15559,7 +15808,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:2853" +defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:2901" defs["igGetColumnOffsetFromNorm"][1]["namespace"] = "ImGui" defs["igGetColumnOffsetFromNorm"][1]["ov_cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["ret"] = "float" @@ -15617,7 +15866,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:2851" +defs["igGetColumnsID"][1]["location"] = "imgui_internal:2899" defs["igGetColumnsID"][1]["namespace"] = "ImGui" defs["igGetColumnsID"][1]["ov_cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["ret"] = "ImGuiID" @@ -15676,7 +15925,7 @@ defs["igGetContentRegionMaxAbs"][1]["call_args"] = "()" defs["igGetContentRegionMaxAbs"][1]["cimguiname"] = "igGetContentRegionMaxAbs" defs["igGetContentRegionMaxAbs"][1]["defaults"] = {} defs["igGetContentRegionMaxAbs"][1]["funcname"] = "GetContentRegionMaxAbs" -defs["igGetContentRegionMaxAbs"][1]["location"] = "imgui_internal:2705" +defs["igGetContentRegionMaxAbs"][1]["location"] = "imgui_internal:2750" defs["igGetContentRegionMaxAbs"][1]["namespace"] = "ImGui" defs["igGetContentRegionMaxAbs"][1]["nonUDT"] = 1 defs["igGetContentRegionMaxAbs"][1]["ov_cimguiname"] = "igGetContentRegionMaxAbs" @@ -15709,7 +15958,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:2866" +defs["igGetCurrentTable"][1]["location"] = "imgui_internal:2914" defs["igGetCurrentTable"][1]["namespace"] = "ImGui" defs["igGetCurrentTable"][1]["ov_cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["ret"] = "ImGuiTable*" @@ -15725,7 +15974,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:2605" +defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:2645" defs["igGetCurrentWindow"][1]["namespace"] = "ImGui" defs["igGetCurrentWindow"][1]["ov_cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["ret"] = "ImGuiWindow*" @@ -15741,7 +15990,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:2604" +defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:2644" defs["igGetCurrentWindowRead"][1]["namespace"] = "ImGui" defs["igGetCurrentWindowRead"][1]["ov_cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["ret"] = "ImGuiWindow*" @@ -15849,7 +16098,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:2627" +defs["igGetDefaultFont"][1]["location"] = "imgui_internal:2673" defs["igGetDefaultFont"][1]["namespace"] = "ImGui" defs["igGetDefaultFont"][1]["ov_cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["ret"] = "ImFont*" @@ -15913,7 +16162,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:2682" +defs["igGetFocusID"][1]["location"] = "imgui_internal:2728" defs["igGetFocusID"][1]["namespace"] = "ImGui" defs["igGetFocusID"][1]["ov_cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["ret"] = "ImGuiID" @@ -15929,7 +16178,7 @@ defs["igGetFocusScope"][1]["call_args"] = "()" defs["igGetFocusScope"][1]["cimguiname"] = "igGetFocusScope" defs["igGetFocusScope"][1]["defaults"] = {} defs["igGetFocusScope"][1]["funcname"] = "GetFocusScope" -defs["igGetFocusScope"][1]["location"] = "imgui_internal:2775" +defs["igGetFocusScope"][1]["location"] = "imgui_internal:2821" defs["igGetFocusScope"][1]["namespace"] = "ImGui" defs["igGetFocusScope"][1]["ov_cimguiname"] = "igGetFocusScope" defs["igGetFocusScope"][1]["ret"] = "ImGuiID" @@ -15945,7 +16194,7 @@ defs["igGetFocusedFocusScope"][1]["call_args"] = "()" defs["igGetFocusedFocusScope"][1]["cimguiname"] = "igGetFocusedFocusScope" defs["igGetFocusedFocusScope"][1]["defaults"] = {} defs["igGetFocusedFocusScope"][1]["funcname"] = "GetFocusedFocusScope" -defs["igGetFocusedFocusScope"][1]["location"] = "imgui_internal:2774" +defs["igGetFocusedFocusScope"][1]["location"] = "imgui_internal:2820" defs["igGetFocusedFocusScope"][1]["namespace"] = "ImGui" defs["igGetFocusedFocusScope"][1]["ov_cimguiname"] = "igGetFocusedFocusScope" defs["igGetFocusedFocusScope"][1]["ret"] = "ImGuiID" @@ -16047,7 +16296,7 @@ defs["igGetForegroundDrawList"][3]["call_args"] = "(window)" defs["igGetForegroundDrawList"][3]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][3]["defaults"] = {} defs["igGetForegroundDrawList"][3]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][3]["location"] = "imgui_internal:2628" +defs["igGetForegroundDrawList"][3]["location"] = "imgui_internal:2674" defs["igGetForegroundDrawList"][3]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][3]["ov_cimguiname"] = "igGetForegroundDrawList_WindowPtr" defs["igGetForegroundDrawList"][3]["ret"] = "ImDrawList*" @@ -16113,7 +16362,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:2686" +defs["igGetHoveredID"][1]["location"] = "imgui_internal:2732" defs["igGetHoveredID"][1]["namespace"] = "ImGui" defs["igGetHoveredID"][1]["ov_cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["ret"] = "ImGuiID" @@ -16196,7 +16445,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:2691" +defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:2737" defs["igGetIDWithSeed"][1]["namespace"] = "ImGui" defs["igGetIDWithSeed"][1]["ov_cimguiname"] = "igGetIDWithSeed" defs["igGetIDWithSeed"][1]["ret"] = "ImGuiID" @@ -16232,7 +16481,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:3001" +defs["igGetInputTextState"][1]["location"] = "imgui_internal:3050" defs["igGetInputTextState"][1]["namespace"] = "ImGui" defs["igGetInputTextState"][1]["ov_cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["ret"] = "ImGuiInputTextState*" @@ -16248,7 +16497,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:2680" +defs["igGetItemFlags"][1]["location"] = "imgui_internal:2726" defs["igGetItemFlags"][1]["namespace"] = "ImGui" defs["igGetItemFlags"][1]["ov_cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["ret"] = "ImGuiItemFlags" @@ -16264,7 +16513,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_internal:2678" +defs["igGetItemID"][1]["location"] = "imgui_internal:2724" defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -16340,7 +16589,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:2679" +defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:2725" defs["igGetItemStatusFlags"][1]["namespace"] = "ImGui" defs["igGetItemStatusFlags"][1]["ov_cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["ret"] = "ImGuiItemStatusFlags" @@ -16359,7 +16608,7 @@ defs["igGetKeyIndex"][1]["call_args"] = "(imgui_key)" defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["defaults"] = {} defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" -defs["igGetKeyIndex"][1]["location"] = "imgui:921" +defs["igGetKeyIndex"][1]["location"] = "imgui:920" defs["igGetKeyIndex"][1]["namespace"] = "ImGui" defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["ret"] = "int" @@ -16384,7 +16633,7 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key_index,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui:925" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:924" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -16416,13 +16665,32 @@ defs["igGetMergedKeyModFlags"][1]["call_args"] = "()" defs["igGetMergedKeyModFlags"][1]["cimguiname"] = "igGetMergedKeyModFlags" defs["igGetMergedKeyModFlags"][1]["defaults"] = {} defs["igGetMergedKeyModFlags"][1]["funcname"] = "GetMergedKeyModFlags" -defs["igGetMergedKeyModFlags"][1]["location"] = "imgui_internal:2788" +defs["igGetMergedKeyModFlags"][1]["location"] = "imgui_internal:2834" defs["igGetMergedKeyModFlags"][1]["namespace"] = "ImGui" defs["igGetMergedKeyModFlags"][1]["ov_cimguiname"] = "igGetMergedKeyModFlags" defs["igGetMergedKeyModFlags"][1]["ret"] = "ImGuiKeyModFlags" defs["igGetMergedKeyModFlags"][1]["signature"] = "()" defs["igGetMergedKeyModFlags"][1]["stname"] = "" defs["igGetMergedKeyModFlags"]["()"] = defs["igGetMergedKeyModFlags"][1] +defs["igGetMouseClickedCount"] = {} +defs["igGetMouseClickedCount"][1] = {} +defs["igGetMouseClickedCount"][1]["args"] = "(ImGuiMouseButton button)" +defs["igGetMouseClickedCount"][1]["argsT"] = {} +defs["igGetMouseClickedCount"][1]["argsT"][1] = {} +defs["igGetMouseClickedCount"][1]["argsT"][1]["name"] = "button" +defs["igGetMouseClickedCount"][1]["argsT"][1]["type"] = "ImGuiMouseButton" +defs["igGetMouseClickedCount"][1]["argsoriginal"] = "(ImGuiMouseButton button)" +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:935" +defs["igGetMouseClickedCount"][1]["namespace"] = "ImGui" +defs["igGetMouseClickedCount"][1]["ov_cimguiname"] = "igGetMouseClickedCount" +defs["igGetMouseClickedCount"][1]["ret"] = "int" +defs["igGetMouseClickedCount"][1]["signature"] = "(ImGuiMouseButton)" +defs["igGetMouseClickedCount"][1]["stname"] = "" +defs["igGetMouseClickedCount"]["(ImGuiMouseButton)"] = defs["igGetMouseClickedCount"][1] defs["igGetMouseCursor"] = {} defs["igGetMouseCursor"][1] = {} defs["igGetMouseCursor"][1]["args"] = "()" @@ -16522,7 +16790,7 @@ defs["igGetNavInputAmount"][1]["call_args"] = "(n,mode)" defs["igGetNavInputAmount"][1]["cimguiname"] = "igGetNavInputAmount" defs["igGetNavInputAmount"][1]["defaults"] = {} defs["igGetNavInputAmount"][1]["funcname"] = "GetNavInputAmount" -defs["igGetNavInputAmount"][1]["location"] = "imgui_internal:2763" +defs["igGetNavInputAmount"][1]["location"] = "imgui_internal:2809" defs["igGetNavInputAmount"][1]["namespace"] = "ImGui" defs["igGetNavInputAmount"][1]["ov_cimguiname"] = "igGetNavInputAmount" defs["igGetNavInputAmount"][1]["ret"] = "float" @@ -16555,7 +16823,7 @@ defs["igGetNavInputAmount2d"][1]["defaults"] = {} defs["igGetNavInputAmount2d"][1]["defaults"]["fast_factor"] = "0.0f" defs["igGetNavInputAmount2d"][1]["defaults"]["slow_factor"] = "0.0f" defs["igGetNavInputAmount2d"][1]["funcname"] = "GetNavInputAmount2d" -defs["igGetNavInputAmount2d"][1]["location"] = "imgui_internal:2764" +defs["igGetNavInputAmount2d"][1]["location"] = "imgui_internal:2810" defs["igGetNavInputAmount2d"][1]["namespace"] = "ImGui" defs["igGetNavInputAmount2d"][1]["nonUDT"] = 1 defs["igGetNavInputAmount2d"][1]["ov_cimguiname"] = "igGetNavInputAmount2d" @@ -16595,7 +16863,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:2738" +defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:2783" defs["igGetPopupAllowedExtentRect"][1]["namespace"] = "ImGui" defs["igGetPopupAllowedExtentRect"][1]["nonUDT"] = 1 defs["igGetPopupAllowedExtentRect"][1]["ov_cimguiname"] = "igGetPopupAllowedExtentRect" @@ -16787,6 +17055,22 @@ defs["igGetTime"][1]["ret"] = "double" defs["igGetTime"][1]["signature"] = "()" defs["igGetTime"][1]["stname"] = "" defs["igGetTime"]["()"] = defs["igGetTime"][1] +defs["igGetTopMostAndVisiblePopupModal"] = {} +defs["igGetTopMostAndVisiblePopupModal"][1] = {} +defs["igGetTopMostAndVisiblePopupModal"][1]["args"] = "()" +defs["igGetTopMostAndVisiblePopupModal"][1]["argsT"] = {} +defs["igGetTopMostAndVisiblePopupModal"][1]["argsoriginal"] = "()" +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:2785" +defs["igGetTopMostAndVisiblePopupModal"][1]["namespace"] = "ImGui" +defs["igGetTopMostAndVisiblePopupModal"][1]["ov_cimguiname"] = "igGetTopMostAndVisiblePopupModal" +defs["igGetTopMostAndVisiblePopupModal"][1]["ret"] = "ImGuiWindow*" +defs["igGetTopMostAndVisiblePopupModal"][1]["signature"] = "()" +defs["igGetTopMostAndVisiblePopupModal"][1]["stname"] = "" +defs["igGetTopMostAndVisiblePopupModal"]["()"] = defs["igGetTopMostAndVisiblePopupModal"][1] defs["igGetTopMostPopupModal"] = {} defs["igGetTopMostPopupModal"][1] = {} defs["igGetTopMostPopupModal"][1]["args"] = "()" @@ -16796,7 +17080,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:2739" +defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:2784" defs["igGetTopMostPopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostPopupModal"][1]["ov_cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["ret"] = "ImGuiWindow*" @@ -16847,7 +17131,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:2651" +defs["igGetViewportPlatformMonitor"][1]["location"] = "imgui_internal:2697" defs["igGetViewportPlatformMonitor"][1]["namespace"] = "ImGui" defs["igGetViewportPlatformMonitor"][1]["ov_cimguiname"] = "igGetViewportPlatformMonitor" defs["igGetViewportPlatformMonitor"][1]["ret"] = "const ImGuiPlatformMonitor*" @@ -16866,7 +17150,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:2809" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["location"] = "imgui_internal:2857" defs["igGetWindowAlwaysWantOwnTabBar"][1]["namespace"] = "ImGui" defs["igGetWindowAlwaysWantOwnTabBar"][1]["ov_cimguiname"] = "igGetWindowAlwaysWantOwnTabBar" defs["igGetWindowAlwaysWantOwnTabBar"][1]["ret"] = "bool" @@ -16938,7 +17222,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:2808" +defs["igGetWindowDockNode"][1]["location"] = "imgui_internal:2856" defs["igGetWindowDockNode"][1]["namespace"] = "ImGui" defs["igGetWindowDockNode"][1]["ov_cimguiname"] = "igGetWindowDockNode" defs["igGetWindowDockNode"][1]["ret"] = "ImGuiDockNode*" @@ -17028,7 +17312,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:2964" +defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3013" defs["igGetWindowResizeBorderID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeBorderID"][1]["ov_cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["ret"] = "ImGuiID" @@ -17050,7 +17334,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:2963" +defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3012" defs["igGetWindowResizeCornerID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeCornerID"][1]["ov_cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["ret"] = "ImGuiID" @@ -17072,7 +17356,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:2962" +defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3011" defs["igGetWindowScrollbarID"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarID"][1]["ov_cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["ret"] = "ImGuiID" @@ -17097,7 +17381,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:2961" +defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3010" defs["igGetWindowScrollbarRect"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarRect"][1]["nonUDT"] = 1 defs["igGetWindowScrollbarRect"][1]["ov_cimguiname"] = "igGetWindowScrollbarRect" @@ -17169,7 +17453,7 @@ defs["igImAbs"][1]["call_args"] = "(x)" defs["igImAbs"][1]["cimguiname"] = "igImAbs" defs["igImAbs"][1]["defaults"] = {} defs["igImAbs"][1]["funcname"] = "ImAbs" -defs["igImAbs"][1]["location"] = "imgui_internal:413" +defs["igImAbs"][1]["location"] = "imgui_internal:423" defs["igImAbs"][1]["ov_cimguiname"] = "igImAbs_Int" defs["igImAbs"][1]["ret"] = "int" defs["igImAbs"][1]["signature"] = "(int)" @@ -17185,7 +17469,7 @@ defs["igImAbs"][2]["call_args"] = "(x)" defs["igImAbs"][2]["cimguiname"] = "igImAbs" defs["igImAbs"][2]["defaults"] = {} defs["igImAbs"][2]["funcname"] = "ImAbs" -defs["igImAbs"][2]["location"] = "imgui_internal:414" +defs["igImAbs"][2]["location"] = "imgui_internal:424" defs["igImAbs"][2]["ov_cimguiname"] = "igImAbs_Float" defs["igImAbs"][2]["ret"] = "float" defs["igImAbs"][2]["signature"] = "(float)" @@ -17201,7 +17485,7 @@ defs["igImAbs"][3]["call_args"] = "(x)" defs["igImAbs"][3]["cimguiname"] = "igImAbs" defs["igImAbs"][3]["defaults"] = {} defs["igImAbs"][3]["funcname"] = "ImAbs" -defs["igImAbs"][3]["location"] = "imgui_internal:415" +defs["igImAbs"][3]["location"] = "imgui_internal:425" defs["igImAbs"][3]["ov_cimguiname"] = "igImAbs_double" defs["igImAbs"][3]["ret"] = "double" defs["igImAbs"][3]["signature"] = "(double)" @@ -17224,7 +17508,7 @@ defs["igImAlphaBlendColors"][1]["call_args"] = "(col_a,col_b)" defs["igImAlphaBlendColors"][1]["cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["defaults"] = {} defs["igImAlphaBlendColors"][1]["funcname"] = "ImAlphaBlendColors" -defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:312" +defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:322" defs["igImAlphaBlendColors"][1]["ov_cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["ret"] = "ImU32" defs["igImAlphaBlendColors"][1]["signature"] = "(ImU32,ImU32)" @@ -17257,7 +17541,7 @@ defs["igImBezierCubicCalc"][1]["call_args"] = "(p1,p2,p3,p4,t)" defs["igImBezierCubicCalc"][1]["cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["defaults"] = {} defs["igImBezierCubicCalc"][1]["funcname"] = "ImBezierCubicCalc" -defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:456" +defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:467" defs["igImBezierCubicCalc"][1]["nonUDT"] = 1 defs["igImBezierCubicCalc"][1]["ov_cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["ret"] = "void" @@ -17294,7 +17578,7 @@ defs["igImBezierCubicClosestPoint"][1]["call_args"] = "(p1,p2,p3,p4,p,num_segmen defs["igImBezierCubicClosestPoint"][1]["cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["defaults"] = {} defs["igImBezierCubicClosestPoint"][1]["funcname"] = "ImBezierCubicClosestPoint" -defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:457" +defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:468" defs["igImBezierCubicClosestPoint"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPoint"][1]["ov_cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["ret"] = "void" @@ -17331,7 +17615,7 @@ defs["igImBezierCubicClosestPointCasteljau"][1]["call_args"] = "(p1,p2,p3,p4,p,t defs["igImBezierCubicClosestPointCasteljau"][1]["cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["defaults"] = {} defs["igImBezierCubicClosestPointCasteljau"][1]["funcname"] = "ImBezierCubicClosestPointCasteljau" -defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:458" +defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:469" defs["igImBezierCubicClosestPointCasteljau"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPointCasteljau"][1]["ov_cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["ret"] = "void" @@ -17362,7 +17646,7 @@ defs["igImBezierQuadraticCalc"][1]["call_args"] = "(p1,p2,p3,t)" defs["igImBezierQuadraticCalc"][1]["cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["defaults"] = {} defs["igImBezierQuadraticCalc"][1]["funcname"] = "ImBezierQuadraticCalc" -defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:459" +defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:470" defs["igImBezierQuadraticCalc"][1]["nonUDT"] = 1 defs["igImBezierQuadraticCalc"][1]["ov_cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["ret"] = "void" @@ -17384,7 +17668,7 @@ defs["igImBitArrayClearBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayClearBit"][1]["cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["defaults"] = {} defs["igImBitArrayClearBit"][1]["funcname"] = "ImBitArrayClearBit" -defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:527" +defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:538" defs["igImBitArrayClearBit"][1]["ov_cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["ret"] = "void" defs["igImBitArrayClearBit"][1]["signature"] = "(ImU32*,int)" @@ -17405,7 +17689,7 @@ defs["igImBitArraySetBit"][1]["call_args"] = "(arr,n)" defs["igImBitArraySetBit"][1]["cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["defaults"] = {} defs["igImBitArraySetBit"][1]["funcname"] = "ImBitArraySetBit" -defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:528" +defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:539" defs["igImBitArraySetBit"][1]["ov_cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["ret"] = "void" defs["igImBitArraySetBit"][1]["signature"] = "(ImU32*,int)" @@ -17429,7 +17713,7 @@ defs["igImBitArraySetBitRange"][1]["call_args"] = "(arr,n,n2)" defs["igImBitArraySetBitRange"][1]["cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["defaults"] = {} defs["igImBitArraySetBitRange"][1]["funcname"] = "ImBitArraySetBitRange" -defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:529" +defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:540" defs["igImBitArraySetBitRange"][1]["ov_cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["ret"] = "void" defs["igImBitArraySetBitRange"][1]["signature"] = "(ImU32*,int,int)" @@ -17450,7 +17734,7 @@ defs["igImBitArrayTestBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayTestBit"][1]["cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["defaults"] = {} defs["igImBitArrayTestBit"][1]["funcname"] = "ImBitArrayTestBit" -defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:526" +defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:537" defs["igImBitArrayTestBit"][1]["ov_cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["ret"] = "bool" defs["igImBitArrayTestBit"][1]["signature"] = "(const ImU32*,int)" @@ -17468,7 +17752,7 @@ defs["igImCharIsBlankA"][1]["call_args"] = "(c)" defs["igImCharIsBlankA"][1]["cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["defaults"] = {} defs["igImCharIsBlankA"][1]["funcname"] = "ImCharIsBlankA" -defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:338" +defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:348" defs["igImCharIsBlankA"][1]["ov_cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["ret"] = "bool" defs["igImCharIsBlankA"][1]["signature"] = "(char)" @@ -17486,7 +17770,7 @@ defs["igImCharIsBlankW"][1]["call_args"] = "(c)" defs["igImCharIsBlankW"][1]["cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["defaults"] = {} defs["igImCharIsBlankW"][1]["funcname"] = "ImCharIsBlankW" -defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:339" +defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:349" defs["igImCharIsBlankW"][1]["ov_cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["ret"] = "bool" defs["igImCharIsBlankW"][1]["signature"] = "(unsigned int)" @@ -17513,7 +17797,7 @@ defs["igImClamp"][1]["call_args"] = "(v,mn,mx)" defs["igImClamp"][1]["cimguiname"] = "igImClamp" defs["igImClamp"][1]["defaults"] = {} defs["igImClamp"][1]["funcname"] = "ImClamp" -defs["igImClamp"][1]["location"] = "imgui_internal:437" +defs["igImClamp"][1]["location"] = "imgui_internal:447" defs["igImClamp"][1]["nonUDT"] = 1 defs["igImClamp"][1]["ov_cimguiname"] = "igImClamp" defs["igImClamp"][1]["ret"] = "void" @@ -17535,7 +17819,7 @@ defs["igImDot"][1]["call_args"] = "(a,b)" defs["igImDot"][1]["cimguiname"] = "igImDot" defs["igImDot"][1]["defaults"] = {} defs["igImDot"][1]["funcname"] = "ImDot" -defs["igImDot"][1]["location"] = "imgui_internal:449" +defs["igImDot"][1]["location"] = "imgui_internal:459" defs["igImDot"][1]["ov_cimguiname"] = "igImDot" defs["igImDot"][1]["ret"] = "float" defs["igImDot"][1]["signature"] = "(const ImVec2,const ImVec2)" @@ -17553,7 +17837,7 @@ defs["igImFileClose"][1]["call_args"] = "(file)" defs["igImFileClose"][1]["cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["defaults"] = {} defs["igImFileClose"][1]["funcname"] = "ImFileClose" -defs["igImFileClose"][1]["location"] = "imgui_internal:386" +defs["igImFileClose"][1]["location"] = "imgui_internal:396" defs["igImFileClose"][1]["ov_cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["ret"] = "bool" defs["igImFileClose"][1]["signature"] = "(ImFileHandle)" @@ -17571,7 +17855,7 @@ defs["igImFileGetSize"][1]["call_args"] = "(file)" defs["igImFileGetSize"][1]["cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["defaults"] = {} defs["igImFileGetSize"][1]["funcname"] = "ImFileGetSize" -defs["igImFileGetSize"][1]["location"] = "imgui_internal:387" +defs["igImFileGetSize"][1]["location"] = "imgui_internal:397" defs["igImFileGetSize"][1]["ov_cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["ret"] = "ImU64" defs["igImFileGetSize"][1]["signature"] = "(ImFileHandle)" @@ -17600,7 +17884,7 @@ defs["igImFileLoadToMemory"][1]["defaults"] = {} defs["igImFileLoadToMemory"][1]["defaults"]["out_file_size"] = "NULL" defs["igImFileLoadToMemory"][1]["defaults"]["padding_bytes"] = "0" defs["igImFileLoadToMemory"][1]["funcname"] = "ImFileLoadToMemory" -defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:393" +defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:403" defs["igImFileLoadToMemory"][1]["ov_cimguiname"] = "igImFileLoadToMemory" defs["igImFileLoadToMemory"][1]["ret"] = "void*" defs["igImFileLoadToMemory"][1]["signature"] = "(const char*,const char*,size_t*,int)" @@ -17621,7 +17905,7 @@ defs["igImFileOpen"][1]["call_args"] = "(filename,mode)" defs["igImFileOpen"][1]["cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["defaults"] = {} defs["igImFileOpen"][1]["funcname"] = "ImFileOpen" -defs["igImFileOpen"][1]["location"] = "imgui_internal:385" +defs["igImFileOpen"][1]["location"] = "imgui_internal:395" defs["igImFileOpen"][1]["ov_cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["ret"] = "ImFileHandle" defs["igImFileOpen"][1]["signature"] = "(const char*,const char*)" @@ -17648,7 +17932,7 @@ defs["igImFileRead"][1]["call_args"] = "(data,size,count,file)" defs["igImFileRead"][1]["cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["defaults"] = {} defs["igImFileRead"][1]["funcname"] = "ImFileRead" -defs["igImFileRead"][1]["location"] = "imgui_internal:388" +defs["igImFileRead"][1]["location"] = "imgui_internal:398" defs["igImFileRead"][1]["ov_cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["ret"] = "ImU64" defs["igImFileRead"][1]["signature"] = "(void*,ImU64,ImU64,ImFileHandle)" @@ -17675,7 +17959,7 @@ defs["igImFileWrite"][1]["call_args"] = "(data,size,count,file)" defs["igImFileWrite"][1]["cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["defaults"] = {} defs["igImFileWrite"][1]["funcname"] = "ImFileWrite" -defs["igImFileWrite"][1]["location"] = "imgui_internal:389" +defs["igImFileWrite"][1]["location"] = "imgui_internal:399" defs["igImFileWrite"][1]["ov_cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["ret"] = "ImU64" defs["igImFileWrite"][1]["signature"] = "(const void*,ImU64,ImU64,ImFileHandle)" @@ -17693,7 +17977,7 @@ defs["igImFloor"][1]["call_args"] = "(f)" defs["igImFloor"][1]["cimguiname"] = "igImFloor" defs["igImFloor"][1]["defaults"] = {} defs["igImFloor"][1]["funcname"] = "ImFloor" -defs["igImFloor"][1]["location"] = "imgui_internal:445" +defs["igImFloor"][1]["location"] = "imgui_internal:455" defs["igImFloor"][1]["ov_cimguiname"] = "igImFloor_Float" defs["igImFloor"][1]["ret"] = "float" defs["igImFloor"][1]["signature"] = "(float)" @@ -17712,7 +17996,7 @@ defs["igImFloor"][2]["call_args"] = "(v)" defs["igImFloor"][2]["cimguiname"] = "igImFloor" defs["igImFloor"][2]["defaults"] = {} defs["igImFloor"][2]["funcname"] = "ImFloor" -defs["igImFloor"][2]["location"] = "imgui_internal:447" +defs["igImFloor"][2]["location"] = "imgui_internal:457" defs["igImFloor"][2]["nonUDT"] = 1 defs["igImFloor"][2]["ov_cimguiname"] = "igImFloor_Vec2" defs["igImFloor"][2]["ret"] = "void" @@ -17732,7 +18016,7 @@ defs["igImFloorSigned"][1]["call_args"] = "(f)" defs["igImFloorSigned"][1]["cimguiname"] = "igImFloorSigned" defs["igImFloorSigned"][1]["defaults"] = {} defs["igImFloorSigned"][1]["funcname"] = "ImFloorSigned" -defs["igImFloorSigned"][1]["location"] = "imgui_internal:446" +defs["igImFloorSigned"][1]["location"] = "imgui_internal:456" defs["igImFloorSigned"][1]["ov_cimguiname"] = "igImFloorSigned" defs["igImFloorSigned"][1]["ret"] = "float" defs["igImFloorSigned"][1]["signature"] = "(float)" @@ -17750,7 +18034,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:3061" +defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3111" defs["igImFontAtlasBuildFinish"][1]["ov_cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["ret"] = "void" defs["igImFontAtlasBuildFinish"][1]["signature"] = "(ImFontAtlas*)" @@ -17768,7 +18052,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:3058" +defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3108" defs["igImFontAtlasBuildInit"][1]["ov_cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["ret"] = "void" defs["igImFontAtlasBuildInit"][1]["signature"] = "(ImFontAtlas*)" @@ -17789,7 +18073,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:3064" +defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:3114" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["signature"] = "(unsigned char[256],float)" @@ -17825,7 +18109,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:3065" +defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:3115" 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)" @@ -17846,7 +18130,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:3060" +defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3110" defs["igImFontAtlasBuildPackCustomRects"][1]["ov_cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["ret"] = "void" defs["igImFontAtlasBuildPackCustomRects"][1]["signature"] = "(ImFontAtlas*,void*)" @@ -17885,7 +18169,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:3063" +defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3113" 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)" @@ -17924,7 +18208,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:3062" +defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3112" 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)" @@ -17954,7 +18238,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:3059" +defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3109" defs["igImFontAtlasBuildSetupFont"][1]["ov_cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["ret"] = "void" defs["igImFontAtlasBuildSetupFont"][1]["signature"] = "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)" @@ -17969,7 +18253,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:3057" +defs["igImFontAtlasGetBuilderForStbTruetype"][1]["location"] = "imgui_internal:3107" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ov_cimguiname"] = "igImFontAtlasGetBuilderForStbTruetype" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ret"] = "const ImFontBuilderIO*" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["signature"] = "()" @@ -17997,7 +18281,7 @@ defs["igImFormatString"][1]["cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["defaults"] = {} defs["igImFormatString"][1]["funcname"] = "ImFormatString" defs["igImFormatString"][1]["isvararg"] = "...)" -defs["igImFormatString"][1]["location"] = "imgui_internal:332" +defs["igImFormatString"][1]["location"] = "imgui_internal:342" defs["igImFormatString"][1]["ov_cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["ret"] = "int" defs["igImFormatString"][1]["signature"] = "(char*,size_t,const char*,...)" @@ -18024,7 +18308,7 @@ defs["igImFormatStringV"][1]["call_args"] = "(buf,buf_size,fmt,args)" defs["igImFormatStringV"][1]["cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["defaults"] = {} defs["igImFormatStringV"][1]["funcname"] = "ImFormatStringV" -defs["igImFormatStringV"][1]["location"] = "imgui_internal:333" +defs["igImFormatStringV"][1]["location"] = "imgui_internal:343" defs["igImFormatStringV"][1]["ov_cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["ret"] = "int" defs["igImFormatStringV"][1]["signature"] = "(char*,size_t,const char*,va_list)" @@ -18045,7 +18329,7 @@ defs["igImGetDirQuadrantFromDelta"][1]["call_args"] = "(dx,dy)" defs["igImGetDirQuadrantFromDelta"][1]["cimguiname"] = "igImGetDirQuadrantFromDelta" defs["igImGetDirQuadrantFromDelta"][1]["defaults"] = {} defs["igImGetDirQuadrantFromDelta"][1]["funcname"] = "ImGetDirQuadrantFromDelta" -defs["igImGetDirQuadrantFromDelta"][1]["location"] = "imgui_internal:465" +defs["igImGetDirQuadrantFromDelta"][1]["location"] = "imgui_internal:476" defs["igImGetDirQuadrantFromDelta"][1]["ov_cimguiname"] = "igImGetDirQuadrantFromDelta" defs["igImGetDirQuadrantFromDelta"][1]["ret"] = "ImGuiDir" defs["igImGetDirQuadrantFromDelta"][1]["signature"] = "(float,float)" @@ -18070,7 +18354,7 @@ defs["igImHashData"][1]["cimguiname"] = "igImHashData" defs["igImHashData"][1]["defaults"] = {} defs["igImHashData"][1]["defaults"]["seed"] = "0" defs["igImHashData"][1]["funcname"] = "ImHashData" -defs["igImHashData"][1]["location"] = "imgui_internal:302" +defs["igImHashData"][1]["location"] = "imgui_internal:310" defs["igImHashData"][1]["ov_cimguiname"] = "igImHashData" defs["igImHashData"][1]["ret"] = "ImGuiID" defs["igImHashData"][1]["signature"] = "(const void*,size_t,ImU32)" @@ -18096,7 +18380,7 @@ defs["igImHashStr"][1]["defaults"] = {} defs["igImHashStr"][1]["defaults"]["data_size"] = "0" defs["igImHashStr"][1]["defaults"]["seed"] = "0" defs["igImHashStr"][1]["funcname"] = "ImHashStr" -defs["igImHashStr"][1]["location"] = "imgui_internal:303" +defs["igImHashStr"][1]["location"] = "imgui_internal:311" defs["igImHashStr"][1]["ov_cimguiname"] = "igImHashStr" defs["igImHashStr"][1]["ret"] = "ImGuiID" defs["igImHashStr"][1]["signature"] = "(const char*,size_t,ImU32)" @@ -18117,12 +18401,30 @@ defs["igImInvLength"][1]["call_args"] = "(lhs,fail_value)" defs["igImInvLength"][1]["cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["defaults"] = {} defs["igImInvLength"][1]["funcname"] = "ImInvLength" -defs["igImInvLength"][1]["location"] = "imgui_internal:444" +defs["igImInvLength"][1]["location"] = "imgui_internal:454" defs["igImInvLength"][1]["ov_cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["ret"] = "float" defs["igImInvLength"][1]["signature"] = "(const ImVec2,float)" defs["igImInvLength"][1]["stname"] = "" defs["igImInvLength"]["(const ImVec2,float)"] = defs["igImInvLength"][1] +defs["igImIsFloatAboveGuaranteedIntegerPrecision"] = {} +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1] = {} +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["args"] = "(float f)" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["argsT"] = {} +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["argsT"][1] = {} +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["argsT"][1]["name"] = "f" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["argsT"][1]["type"] = "float" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["argsoriginal"] = "(float f)" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["call_args"] = "(f)" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["defaults"] = {} +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["funcname"] = "ImIsFloatAboveGuaranteedIntegerPrecision" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["location"] = "imgui_internal:463" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ov_cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ret"] = "bool" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["signature"] = "(float)" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["stname"] = "" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"]["(float)"] = defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1] defs["igImIsPowerOfTwo"] = {} defs["igImIsPowerOfTwo"][1] = {} defs["igImIsPowerOfTwo"][1]["args"] = "(int v)" @@ -18135,7 +18437,7 @@ defs["igImIsPowerOfTwo"][1]["call_args"] = "(v)" defs["igImIsPowerOfTwo"][1]["cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][1]["defaults"] = {} defs["igImIsPowerOfTwo"][1]["funcname"] = "ImIsPowerOfTwo" -defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:315" +defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:325" defs["igImIsPowerOfTwo"][1]["ov_cimguiname"] = "igImIsPowerOfTwo_Int" defs["igImIsPowerOfTwo"][1]["ret"] = "bool" defs["igImIsPowerOfTwo"][1]["signature"] = "(int)" @@ -18151,7 +18453,7 @@ defs["igImIsPowerOfTwo"][2]["call_args"] = "(v)" defs["igImIsPowerOfTwo"][2]["cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][2]["defaults"] = {} defs["igImIsPowerOfTwo"][2]["funcname"] = "ImIsPowerOfTwo" -defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:316" +defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:326" defs["igImIsPowerOfTwo"][2]["ov_cimguiname"] = "igImIsPowerOfTwo_U64" defs["igImIsPowerOfTwo"][2]["ret"] = "bool" defs["igImIsPowerOfTwo"][2]["signature"] = "(ImU64)" @@ -18170,7 +18472,7 @@ defs["igImLengthSqr"][1]["call_args"] = "(lhs)" defs["igImLengthSqr"][1]["cimguiname"] = "igImLengthSqr" defs["igImLengthSqr"][1]["defaults"] = {} defs["igImLengthSqr"][1]["funcname"] = "ImLengthSqr" -defs["igImLengthSqr"][1]["location"] = "imgui_internal:442" +defs["igImLengthSqr"][1]["location"] = "imgui_internal:452" defs["igImLengthSqr"][1]["ov_cimguiname"] = "igImLengthSqr_Vec2" defs["igImLengthSqr"][1]["ret"] = "float" defs["igImLengthSqr"][1]["signature"] = "(const ImVec2)" @@ -18186,7 +18488,7 @@ defs["igImLengthSqr"][2]["call_args"] = "(lhs)" defs["igImLengthSqr"][2]["cimguiname"] = "igImLengthSqr" defs["igImLengthSqr"][2]["defaults"] = {} defs["igImLengthSqr"][2]["funcname"] = "ImLengthSqr" -defs["igImLengthSqr"][2]["location"] = "imgui_internal:443" +defs["igImLengthSqr"][2]["location"] = "imgui_internal:453" defs["igImLengthSqr"][2]["ov_cimguiname"] = "igImLengthSqr_Vec4" defs["igImLengthSqr"][2]["ret"] = "float" defs["igImLengthSqr"][2]["signature"] = "(const ImVec4)" @@ -18214,7 +18516,7 @@ defs["igImLerp"][1]["call_args"] = "(a,b,t)" defs["igImLerp"][1]["cimguiname"] = "igImLerp" defs["igImLerp"][1]["defaults"] = {} defs["igImLerp"][1]["funcname"] = "ImLerp" -defs["igImLerp"][1]["location"] = "imgui_internal:438" +defs["igImLerp"][1]["location"] = "imgui_internal:448" defs["igImLerp"][1]["nonUDT"] = 1 defs["igImLerp"][1]["ov_cimguiname"] = "igImLerp_Vec2Float" defs["igImLerp"][1]["ret"] = "void" @@ -18240,7 +18542,7 @@ defs["igImLerp"][2]["call_args"] = "(a,b,t)" defs["igImLerp"][2]["cimguiname"] = "igImLerp" defs["igImLerp"][2]["defaults"] = {} defs["igImLerp"][2]["funcname"] = "ImLerp" -defs["igImLerp"][2]["location"] = "imgui_internal:439" +defs["igImLerp"][2]["location"] = "imgui_internal:449" defs["igImLerp"][2]["nonUDT"] = 1 defs["igImLerp"][2]["ov_cimguiname"] = "igImLerp_Vec2Vec2" defs["igImLerp"][2]["ret"] = "void" @@ -18266,7 +18568,7 @@ defs["igImLerp"][3]["call_args"] = "(a,b,t)" defs["igImLerp"][3]["cimguiname"] = "igImLerp" defs["igImLerp"][3]["defaults"] = {} defs["igImLerp"][3]["funcname"] = "ImLerp" -defs["igImLerp"][3]["location"] = "imgui_internal:440" +defs["igImLerp"][3]["location"] = "imgui_internal:450" defs["igImLerp"][3]["nonUDT"] = 1 defs["igImLerp"][3]["ov_cimguiname"] = "igImLerp_Vec4" defs["igImLerp"][3]["ret"] = "void" @@ -18296,7 +18598,7 @@ defs["igImLineClosestPoint"][1]["call_args"] = "(a,b,p)" defs["igImLineClosestPoint"][1]["cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["defaults"] = {} defs["igImLineClosestPoint"][1]["funcname"] = "ImLineClosestPoint" -defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:460" +defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:471" defs["igImLineClosestPoint"][1]["nonUDT"] = 1 defs["igImLineClosestPoint"][1]["ov_cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["ret"] = "void" @@ -18321,7 +18623,7 @@ defs["igImLinearSweep"][1]["call_args"] = "(current,target,speed)" defs["igImLinearSweep"][1]["cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["defaults"] = {} defs["igImLinearSweep"][1]["funcname"] = "ImLinearSweep" -defs["igImLinearSweep"][1]["location"] = "imgui_internal:451" +defs["igImLinearSweep"][1]["location"] = "imgui_internal:461" defs["igImLinearSweep"][1]["ov_cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["ret"] = "float" defs["igImLinearSweep"][1]["signature"] = "(float,float,float)" @@ -18339,7 +18641,7 @@ defs["igImLog"][1]["call_args"] = "(x)" defs["igImLog"][1]["cimguiname"] = "igImLog" defs["igImLog"][1]["defaults"] = {} defs["igImLog"][1]["funcname"] = "ImLog" -defs["igImLog"][1]["location"] = "imgui_internal:411" +defs["igImLog"][1]["location"] = "imgui_internal:421" defs["igImLog"][1]["ov_cimguiname"] = "igImLog_Float" defs["igImLog"][1]["ret"] = "float" defs["igImLog"][1]["signature"] = "(float)" @@ -18355,7 +18657,7 @@ defs["igImLog"][2]["call_args"] = "(x)" defs["igImLog"][2]["cimguiname"] = "igImLog" defs["igImLog"][2]["defaults"] = {} defs["igImLog"][2]["funcname"] = "ImLog" -defs["igImLog"][2]["location"] = "imgui_internal:412" +defs["igImLog"][2]["location"] = "imgui_internal:422" defs["igImLog"][2]["ov_cimguiname"] = "igImLog_double" defs["igImLog"][2]["ret"] = "double" defs["igImLog"][2]["signature"] = "(double)" @@ -18380,7 +18682,7 @@ defs["igImMax"][1]["call_args"] = "(lhs,rhs)" defs["igImMax"][1]["cimguiname"] = "igImMax" defs["igImMax"][1]["defaults"] = {} defs["igImMax"][1]["funcname"] = "ImMax" -defs["igImMax"][1]["location"] = "imgui_internal:436" +defs["igImMax"][1]["location"] = "imgui_internal:446" defs["igImMax"][1]["nonUDT"] = 1 defs["igImMax"][1]["ov_cimguiname"] = "igImMax" defs["igImMax"][1]["ret"] = "void" @@ -18405,7 +18707,7 @@ defs["igImMin"][1]["call_args"] = "(lhs,rhs)" defs["igImMin"][1]["cimguiname"] = "igImMin" defs["igImMin"][1]["defaults"] = {} defs["igImMin"][1]["funcname"] = "ImMin" -defs["igImMin"][1]["location"] = "imgui_internal:435" +defs["igImMin"][1]["location"] = "imgui_internal:445" defs["igImMin"][1]["nonUDT"] = 1 defs["igImMin"][1]["ov_cimguiname"] = "igImMin" defs["igImMin"][1]["ret"] = "void" @@ -18427,7 +18729,7 @@ defs["igImModPositive"][1]["call_args"] = "(a,b)" defs["igImModPositive"][1]["cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["defaults"] = {} defs["igImModPositive"][1]["funcname"] = "ImModPositive" -defs["igImModPositive"][1]["location"] = "imgui_internal:448" +defs["igImModPositive"][1]["location"] = "imgui_internal:458" defs["igImModPositive"][1]["ov_cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["ret"] = "int" defs["igImModPositive"][1]["signature"] = "(int,int)" @@ -18451,7 +18753,7 @@ defs["igImMul"][1]["call_args"] = "(lhs,rhs)" defs["igImMul"][1]["cimguiname"] = "igImMul" defs["igImMul"][1]["defaults"] = {} defs["igImMul"][1]["funcname"] = "ImMul" -defs["igImMul"][1]["location"] = "imgui_internal:452" +defs["igImMul"][1]["location"] = "imgui_internal:462" defs["igImMul"][1]["nonUDT"] = 1 defs["igImMul"][1]["ov_cimguiname"] = "igImMul" defs["igImMul"][1]["ret"] = "void" @@ -18470,7 +18772,7 @@ defs["igImParseFormatFindEnd"][1]["call_args"] = "(format)" defs["igImParseFormatFindEnd"][1]["cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["defaults"] = {} defs["igImParseFormatFindEnd"][1]["funcname"] = "ImParseFormatFindEnd" -defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:335" +defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:345" defs["igImParseFormatFindEnd"][1]["ov_cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["ret"] = "const char*" defs["igImParseFormatFindEnd"][1]["signature"] = "(const char*)" @@ -18488,7 +18790,7 @@ defs["igImParseFormatFindStart"][1]["call_args"] = "(format)" defs["igImParseFormatFindStart"][1]["cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["defaults"] = {} defs["igImParseFormatFindStart"][1]["funcname"] = "ImParseFormatFindStart" -defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:334" +defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:344" defs["igImParseFormatFindStart"][1]["ov_cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["ret"] = "const char*" defs["igImParseFormatFindStart"][1]["signature"] = "(const char*)" @@ -18509,7 +18811,7 @@ defs["igImParseFormatPrecision"][1]["call_args"] = "(format,default_value)" defs["igImParseFormatPrecision"][1]["cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["defaults"] = {} defs["igImParseFormatPrecision"][1]["funcname"] = "ImParseFormatPrecision" -defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:337" +defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:347" defs["igImParseFormatPrecision"][1]["ov_cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["ret"] = "int" defs["igImParseFormatPrecision"][1]["signature"] = "(const char*,int)" @@ -18533,7 +18835,7 @@ defs["igImParseFormatTrimDecorations"][1]["call_args"] = "(format,buf,buf_size)" defs["igImParseFormatTrimDecorations"][1]["cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["defaults"] = {} defs["igImParseFormatTrimDecorations"][1]["funcname"] = "ImParseFormatTrimDecorations" -defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:336" +defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:346" defs["igImParseFormatTrimDecorations"][1]["ov_cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["ret"] = "const char*" defs["igImParseFormatTrimDecorations"][1]["signature"] = "(const char*,char*,size_t)" @@ -18554,7 +18856,7 @@ defs["igImPow"][1]["call_args"] = "(x,y)" defs["igImPow"][1]["cimguiname"] = "igImPow" defs["igImPow"][1]["defaults"] = {} defs["igImPow"][1]["funcname"] = "ImPow" -defs["igImPow"][1]["location"] = "imgui_internal:409" +defs["igImPow"][1]["location"] = "imgui_internal:419" defs["igImPow"][1]["ov_cimguiname"] = "igImPow_Float" defs["igImPow"][1]["ret"] = "float" defs["igImPow"][1]["signature"] = "(float,float)" @@ -18573,13 +18875,42 @@ defs["igImPow"][2]["call_args"] = "(x,y)" defs["igImPow"][2]["cimguiname"] = "igImPow" defs["igImPow"][2]["defaults"] = {} defs["igImPow"][2]["funcname"] = "ImPow" -defs["igImPow"][2]["location"] = "imgui_internal:410" +defs["igImPow"][2]["location"] = "imgui_internal:420" defs["igImPow"][2]["ov_cimguiname"] = "igImPow_double" defs["igImPow"][2]["ret"] = "double" defs["igImPow"][2]["signature"] = "(double,double)" defs["igImPow"][2]["stname"] = "" defs["igImPow"]["(double,double)"] = defs["igImPow"][2] defs["igImPow"]["(float,float)"] = defs["igImPow"][1] +defs["igImQsort"] = {} +defs["igImQsort"][1] = {} +defs["igImQsort"][1]["args"] = "(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*))" +defs["igImQsort"][1]["argsT"] = {} +defs["igImQsort"][1]["argsT"][1] = {} +defs["igImQsort"][1]["argsT"][1]["name"] = "base" +defs["igImQsort"][1]["argsT"][1]["type"] = "void*" +defs["igImQsort"][1]["argsT"][2] = {} +defs["igImQsort"][1]["argsT"][2]["name"] = "count" +defs["igImQsort"][1]["argsT"][2]["type"] = "size_t" +defs["igImQsort"][1]["argsT"][3] = {} +defs["igImQsort"][1]["argsT"][3]["name"] = "size_of_element" +defs["igImQsort"][1]["argsT"][3]["type"] = "size_t" +defs["igImQsort"][1]["argsT"][4] = {} +defs["igImQsort"][1]["argsT"][4]["name"] = "compare_func" +defs["igImQsort"][1]["argsT"][4]["ret"] = "int" +defs["igImQsort"][1]["argsT"][4]["signature"] = "(void const*,void const*)" +defs["igImQsort"][1]["argsT"][4]["type"] = "int(*)(void const*,void const*)" +defs["igImQsort"][1]["argsoriginal"] = "(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*))" +defs["igImQsort"][1]["call_args"] = "(base,count,size_of_element,compare_func)" +defs["igImQsort"][1]["cimguiname"] = "igImQsort" +defs["igImQsort"][1]["defaults"] = {} +defs["igImQsort"][1]["funcname"] = "ImQsort" +defs["igImQsort"][1]["location"] = "imgui_internal:318" +defs["igImQsort"][1]["ov_cimguiname"] = "igImQsort" +defs["igImQsort"][1]["ret"] = "void" +defs["igImQsort"][1]["signature"] = "(void*,size_t,size_t,int(*)(void const*,void const*))" +defs["igImQsort"][1]["stname"] = "" +defs["igImQsort"]["(void*,size_t,size_t,int(*)(void const*,void const*))"] = defs["igImQsort"][1] defs["igImRotate"] = {} defs["igImRotate"][1] = {} defs["igImRotate"][1]["args"] = "(ImVec2 *pOut,const ImVec2 v,float cos_a,float sin_a)" @@ -18601,7 +18932,7 @@ defs["igImRotate"][1]["call_args"] = "(v,cos_a,sin_a)" defs["igImRotate"][1]["cimguiname"] = "igImRotate" defs["igImRotate"][1]["defaults"] = {} defs["igImRotate"][1]["funcname"] = "ImRotate" -defs["igImRotate"][1]["location"] = "imgui_internal:450" +defs["igImRotate"][1]["location"] = "imgui_internal:460" defs["igImRotate"][1]["nonUDT"] = 1 defs["igImRotate"][1]["ov_cimguiname"] = "igImRotate" defs["igImRotate"][1]["ret"] = "void" @@ -18620,7 +18951,7 @@ defs["igImRsqrt"][1]["call_args"] = "(x)" defs["igImRsqrt"][1]["cimguiname"] = "igImRsqrt" defs["igImRsqrt"][1]["defaults"] = {} defs["igImRsqrt"][1]["funcname"] = "ImRsqrt" -defs["igImRsqrt"][1]["location"] = "imgui_internal:419" +defs["igImRsqrt"][1]["location"] = "imgui_internal:429" defs["igImRsqrt"][1]["ov_cimguiname"] = "igImRsqrt_Float" defs["igImRsqrt"][1]["ret"] = "float" defs["igImRsqrt"][1]["signature"] = "(float)" @@ -18636,7 +18967,7 @@ defs["igImRsqrt"][2]["call_args"] = "(x)" defs["igImRsqrt"][2]["cimguiname"] = "igImRsqrt" defs["igImRsqrt"][2]["defaults"] = {} defs["igImRsqrt"][2]["funcname"] = "ImRsqrt" -defs["igImRsqrt"][2]["location"] = "imgui_internal:423" +defs["igImRsqrt"][2]["location"] = "imgui_internal:433" defs["igImRsqrt"][2]["ov_cimguiname"] = "igImRsqrt_double" defs["igImRsqrt"][2]["ret"] = "double" defs["igImRsqrt"][2]["signature"] = "(double)" @@ -18655,7 +18986,7 @@ defs["igImSaturate"][1]["call_args"] = "(f)" defs["igImSaturate"][1]["cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["defaults"] = {} defs["igImSaturate"][1]["funcname"] = "ImSaturate" -defs["igImSaturate"][1]["location"] = "imgui_internal:441" +defs["igImSaturate"][1]["location"] = "imgui_internal:451" defs["igImSaturate"][1]["ov_cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["ret"] = "float" defs["igImSaturate"][1]["signature"] = "(float)" @@ -18673,7 +19004,7 @@ defs["igImSign"][1]["call_args"] = "(x)" defs["igImSign"][1]["cimguiname"] = "igImSign" defs["igImSign"][1]["defaults"] = {} defs["igImSign"][1]["funcname"] = "ImSign" -defs["igImSign"][1]["location"] = "imgui_internal:416" +defs["igImSign"][1]["location"] = "imgui_internal:426" defs["igImSign"][1]["ov_cimguiname"] = "igImSign_Float" defs["igImSign"][1]["ret"] = "float" defs["igImSign"][1]["signature"] = "(float)" @@ -18689,7 +19020,7 @@ defs["igImSign"][2]["call_args"] = "(x)" defs["igImSign"][2]["cimguiname"] = "igImSign" defs["igImSign"][2]["defaults"] = {} defs["igImSign"][2]["funcname"] = "ImSign" -defs["igImSign"][2]["location"] = "imgui_internal:417" +defs["igImSign"][2]["location"] = "imgui_internal:427" defs["igImSign"][2]["ov_cimguiname"] = "igImSign_double" defs["igImSign"][2]["ret"] = "double" defs["igImSign"][2]["signature"] = "(double)" @@ -18708,7 +19039,7 @@ defs["igImStrSkipBlank"][1]["call_args"] = "(str)" defs["igImStrSkipBlank"][1]["cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["defaults"] = {} defs["igImStrSkipBlank"][1]["funcname"] = "ImStrSkipBlank" -defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:331" +defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:341" defs["igImStrSkipBlank"][1]["ov_cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["ret"] = "const char*" defs["igImStrSkipBlank"][1]["signature"] = "(const char*)" @@ -18726,7 +19057,7 @@ defs["igImStrTrimBlanks"][1]["call_args"] = "(str)" defs["igImStrTrimBlanks"][1]["cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["defaults"] = {} defs["igImStrTrimBlanks"][1]["funcname"] = "ImStrTrimBlanks" -defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:330" +defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:340" defs["igImStrTrimBlanks"][1]["ov_cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["ret"] = "void" defs["igImStrTrimBlanks"][1]["signature"] = "(char*)" @@ -18747,7 +19078,7 @@ defs["igImStrbolW"][1]["call_args"] = "(buf_mid_line,buf_begin)" defs["igImStrbolW"][1]["cimguiname"] = "igImStrbolW" defs["igImStrbolW"][1]["defaults"] = {} defs["igImStrbolW"][1]["funcname"] = "ImStrbolW" -defs["igImStrbolW"][1]["location"] = "imgui_internal:328" +defs["igImStrbolW"][1]["location"] = "imgui_internal:338" defs["igImStrbolW"][1]["ov_cimguiname"] = "igImStrbolW" defs["igImStrbolW"][1]["ret"] = "const ImWchar*" defs["igImStrbolW"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -18771,7 +19102,7 @@ defs["igImStrchrRange"][1]["call_args"] = "(str_begin,str_end,c)" defs["igImStrchrRange"][1]["cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["defaults"] = {} defs["igImStrchrRange"][1]["funcname"] = "ImStrchrRange" -defs["igImStrchrRange"][1]["location"] = "imgui_internal:325" +defs["igImStrchrRange"][1]["location"] = "imgui_internal:335" defs["igImStrchrRange"][1]["ov_cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["ret"] = "const char*" defs["igImStrchrRange"][1]["signature"] = "(const char*,const char*,char)" @@ -18789,7 +19120,7 @@ defs["igImStrdup"][1]["call_args"] = "(str)" defs["igImStrdup"][1]["cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["defaults"] = {} defs["igImStrdup"][1]["funcname"] = "ImStrdup" -defs["igImStrdup"][1]["location"] = "imgui_internal:323" +defs["igImStrdup"][1]["location"] = "imgui_internal:333" defs["igImStrdup"][1]["ov_cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["ret"] = "char*" defs["igImStrdup"][1]["signature"] = "(const char*)" @@ -18813,7 +19144,7 @@ defs["igImStrdupcpy"][1]["call_args"] = "(dst,p_dst_size,str)" defs["igImStrdupcpy"][1]["cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["defaults"] = {} defs["igImStrdupcpy"][1]["funcname"] = "ImStrdupcpy" -defs["igImStrdupcpy"][1]["location"] = "imgui_internal:324" +defs["igImStrdupcpy"][1]["location"] = "imgui_internal:334" defs["igImStrdupcpy"][1]["ov_cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["ret"] = "char*" defs["igImStrdupcpy"][1]["signature"] = "(char*,size_t*,const char*)" @@ -18834,7 +19165,7 @@ defs["igImStreolRange"][1]["call_args"] = "(str,str_end)" defs["igImStreolRange"][1]["cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["defaults"] = {} defs["igImStreolRange"][1]["funcname"] = "ImStreolRange" -defs["igImStreolRange"][1]["location"] = "imgui_internal:327" +defs["igImStreolRange"][1]["location"] = "imgui_internal:337" defs["igImStreolRange"][1]["ov_cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["ret"] = "const char*" defs["igImStreolRange"][1]["signature"] = "(const char*,const char*)" @@ -18855,7 +19186,7 @@ defs["igImStricmp"][1]["call_args"] = "(str1,str2)" defs["igImStricmp"][1]["cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["defaults"] = {} defs["igImStricmp"][1]["funcname"] = "ImStricmp" -defs["igImStricmp"][1]["location"] = "imgui_internal:320" +defs["igImStricmp"][1]["location"] = "imgui_internal:330" defs["igImStricmp"][1]["ov_cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["ret"] = "int" defs["igImStricmp"][1]["signature"] = "(const char*,const char*)" @@ -18882,7 +19213,7 @@ defs["igImStristr"][1]["call_args"] = "(haystack,haystack_end,needle,needle_end) defs["igImStristr"][1]["cimguiname"] = "igImStristr" defs["igImStristr"][1]["defaults"] = {} defs["igImStristr"][1]["funcname"] = "ImStristr" -defs["igImStristr"][1]["location"] = "imgui_internal:329" +defs["igImStristr"][1]["location"] = "imgui_internal:339" defs["igImStristr"][1]["ov_cimguiname"] = "igImStristr" defs["igImStristr"][1]["ret"] = "const char*" defs["igImStristr"][1]["signature"] = "(const char*,const char*,const char*,const char*)" @@ -18900,7 +19231,7 @@ defs["igImStrlenW"][1]["call_args"] = "(str)" defs["igImStrlenW"][1]["cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["defaults"] = {} defs["igImStrlenW"][1]["funcname"] = "ImStrlenW" -defs["igImStrlenW"][1]["location"] = "imgui_internal:326" +defs["igImStrlenW"][1]["location"] = "imgui_internal:336" defs["igImStrlenW"][1]["ov_cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["ret"] = "int" defs["igImStrlenW"][1]["signature"] = "(const ImWchar*)" @@ -18924,7 +19255,7 @@ defs["igImStrncpy"][1]["call_args"] = "(dst,src,count)" defs["igImStrncpy"][1]["cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["defaults"] = {} defs["igImStrncpy"][1]["funcname"] = "ImStrncpy" -defs["igImStrncpy"][1]["location"] = "imgui_internal:322" +defs["igImStrncpy"][1]["location"] = "imgui_internal:332" defs["igImStrncpy"][1]["ov_cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["ret"] = "void" defs["igImStrncpy"][1]["signature"] = "(char*,const char*,size_t)" @@ -18948,7 +19279,7 @@ defs["igImStrnicmp"][1]["call_args"] = "(str1,str2,count)" defs["igImStrnicmp"][1]["cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["defaults"] = {} defs["igImStrnicmp"][1]["funcname"] = "ImStrnicmp" -defs["igImStrnicmp"][1]["location"] = "imgui_internal:321" +defs["igImStrnicmp"][1]["location"] = "imgui_internal:331" defs["igImStrnicmp"][1]["ov_cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["ret"] = "int" defs["igImStrnicmp"][1]["signature"] = "(const char*,const char*,size_t)" @@ -18972,7 +19303,7 @@ defs["igImTextCharFromUtf8"][1]["call_args"] = "(out_char,in_text,in_text_end)" defs["igImTextCharFromUtf8"][1]["cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["defaults"] = {} defs["igImTextCharFromUtf8"][1]["funcname"] = "ImTextCharFromUtf8" -defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:344" +defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:354" defs["igImTextCharFromUtf8"][1]["ov_cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["ret"] = "int" defs["igImTextCharFromUtf8"][1]["signature"] = "(unsigned int*,const char*,const char*)" @@ -18993,7 +19324,7 @@ defs["igImTextCharToUtf8"][1]["call_args"] = "(out_buf,c)" defs["igImTextCharToUtf8"][1]["cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["defaults"] = {} defs["igImTextCharToUtf8"][1]["funcname"] = "ImTextCharToUtf8" -defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:342" +defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:352" defs["igImTextCharToUtf8"][1]["ov_cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["ret"] = "const char*" defs["igImTextCharToUtf8"][1]["signature"] = "(char[5],unsigned int)" @@ -19014,7 +19345,7 @@ defs["igImTextCountCharsFromUtf8"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountCharsFromUtf8"][1]["cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["defaults"] = {} defs["igImTextCountCharsFromUtf8"][1]["funcname"] = "ImTextCountCharsFromUtf8" -defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:346" +defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:356" defs["igImTextCountCharsFromUtf8"][1]["ov_cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["ret"] = "int" defs["igImTextCountCharsFromUtf8"][1]["signature"] = "(const char*,const char*)" @@ -19035,7 +19366,7 @@ defs["igImTextCountUtf8BytesFromChar"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountUtf8BytesFromChar"][1]["cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["defaults"] = {} defs["igImTextCountUtf8BytesFromChar"][1]["funcname"] = "ImTextCountUtf8BytesFromChar" -defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:347" +defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:357" defs["igImTextCountUtf8BytesFromChar"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromChar"][1]["signature"] = "(const char*,const char*)" @@ -19056,7 +19387,7 @@ defs["igImTextCountUtf8BytesFromStr"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountUtf8BytesFromStr"][1]["cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["defaults"] = {} defs["igImTextCountUtf8BytesFromStr"][1]["funcname"] = "ImTextCountUtf8BytesFromStr" -defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:348" +defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:358" defs["igImTextCountUtf8BytesFromStr"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromStr"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -19087,7 +19418,7 @@ defs["igImTextStrFromUtf8"][1]["cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["defaults"] = {} defs["igImTextStrFromUtf8"][1]["defaults"]["in_remaining"] = "NULL" defs["igImTextStrFromUtf8"][1]["funcname"] = "ImTextStrFromUtf8" -defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:345" +defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:355" defs["igImTextStrFromUtf8"][1]["ov_cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["ret"] = "int" defs["igImTextStrFromUtf8"][1]["signature"] = "(ImWchar*,int,const char*,const char*,const char**)" @@ -19114,7 +19445,7 @@ defs["igImTextStrToUtf8"][1]["call_args"] = "(out_buf,out_buf_size,in_text,in_te defs["igImTextStrToUtf8"][1]["cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["defaults"] = {} defs["igImTextStrToUtf8"][1]["funcname"] = "ImTextStrToUtf8" -defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:343" +defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:353" defs["igImTextStrToUtf8"][1]["ov_cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["ret"] = "int" defs["igImTextStrToUtf8"][1]["signature"] = "(char*,int,const ImWchar*,const ImWchar*)" @@ -19138,7 +19469,7 @@ defs["igImTriangleArea"][1]["call_args"] = "(a,b,c)" defs["igImTriangleArea"][1]["cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["defaults"] = {} defs["igImTriangleArea"][1]["funcname"] = "ImTriangleArea" -defs["igImTriangleArea"][1]["location"] = "imgui_internal:464" +defs["igImTriangleArea"][1]["location"] = "imgui_internal:475" defs["igImTriangleArea"][1]["ov_cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["ret"] = "float" defs["igImTriangleArea"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" @@ -19177,7 +19508,7 @@ defs["igImTriangleBarycentricCoords"][1]["call_args"] = "(a,b,c,p,*out_u,*out_v, defs["igImTriangleBarycentricCoords"][1]["cimguiname"] = "igImTriangleBarycentricCoords" defs["igImTriangleBarycentricCoords"][1]["defaults"] = {} defs["igImTriangleBarycentricCoords"][1]["funcname"] = "ImTriangleBarycentricCoords" -defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:463" +defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:474" defs["igImTriangleBarycentricCoords"][1]["ov_cimguiname"] = "igImTriangleBarycentricCoords" defs["igImTriangleBarycentricCoords"][1]["ret"] = "void" defs["igImTriangleBarycentricCoords"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)" @@ -19207,7 +19538,7 @@ defs["igImTriangleClosestPoint"][1]["call_args"] = "(a,b,c,p)" defs["igImTriangleClosestPoint"][1]["cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["defaults"] = {} defs["igImTriangleClosestPoint"][1]["funcname"] = "ImTriangleClosestPoint" -defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:462" +defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:473" defs["igImTriangleClosestPoint"][1]["nonUDT"] = 1 defs["igImTriangleClosestPoint"][1]["ov_cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["ret"] = "void" @@ -19235,7 +19566,7 @@ defs["igImTriangleContainsPoint"][1]["call_args"] = "(a,b,c,p)" defs["igImTriangleContainsPoint"][1]["cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["defaults"] = {} defs["igImTriangleContainsPoint"][1]["funcname"] = "ImTriangleContainsPoint" -defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:461" +defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:472" defs["igImTriangleContainsPoint"][1]["ov_cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["ret"] = "bool" defs["igImTriangleContainsPoint"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)" @@ -19253,7 +19584,7 @@ defs["igImUpperPowerOfTwo"][1]["call_args"] = "(v)" defs["igImUpperPowerOfTwo"][1]["cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["defaults"] = {} defs["igImUpperPowerOfTwo"][1]["funcname"] = "ImUpperPowerOfTwo" -defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:317" +defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:327" defs["igImUpperPowerOfTwo"][1]["ov_cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["ret"] = "int" defs["igImUpperPowerOfTwo"][1]["signature"] = "(int)" @@ -19372,7 +19703,7 @@ defs["igImageButtonEx"][1]["call_args"] = "(id,texture_id,size,uv0,uv1,padding,b defs["igImageButtonEx"][1]["cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["defaults"] = {} defs["igImageButtonEx"][1]["funcname"] = "ImageButtonEx" -defs["igImageButtonEx"][1]["location"] = "imgui_internal:2960" +defs["igImageButtonEx"][1]["location"] = "imgui_internal:3009" defs["igImageButtonEx"][1]["namespace"] = "ImGui" defs["igImageButtonEx"][1]["ov_cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["ret"] = "bool" @@ -19411,7 +19742,7 @@ defs["igInitialize"][1]["call_args"] = "(context)" defs["igInitialize"][1]["cimguiname"] = "igInitialize" defs["igInitialize"][1]["defaults"] = {} defs["igInitialize"][1]["funcname"] = "Initialize" -defs["igInitialize"][1]["location"] = "imgui_internal:2631" +defs["igInitialize"][1]["location"] = "imgui_internal:2677" defs["igInitialize"][1]["namespace"] = "ImGui" defs["igInitialize"][1]["ov_cimguiname"] = "igInitialize" defs["igInitialize"][1]["ret"] = "void" @@ -19853,7 +20184,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:2997" +defs["igInputTextEx"][1]["location"] = "imgui_internal:3046" defs["igInputTextEx"][1]["namespace"] = "ImGui" defs["igInputTextEx"][1]["ov_cimguiname"] = "igInputTextEx" defs["igInputTextEx"][1]["ret"] = "bool" @@ -19979,7 +20310,7 @@ defs["igIsActiveIdUsingKey"][1]["call_args"] = "(key)" defs["igIsActiveIdUsingKey"][1]["cimguiname"] = "igIsActiveIdUsingKey" defs["igIsActiveIdUsingKey"][1]["defaults"] = {} defs["igIsActiveIdUsingKey"][1]["funcname"] = "IsActiveIdUsingKey" -defs["igIsActiveIdUsingKey"][1]["location"] = "imgui_internal:2783" +defs["igIsActiveIdUsingKey"][1]["location"] = "imgui_internal:2829" defs["igIsActiveIdUsingKey"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingKey"][1]["ov_cimguiname"] = "igIsActiveIdUsingKey" defs["igIsActiveIdUsingKey"][1]["ret"] = "bool" @@ -19998,7 +20329,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:2781" +defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:2827" defs["igIsActiveIdUsingNavDir"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavDir"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["ret"] = "bool" @@ -20017,7 +20348,7 @@ defs["igIsActiveIdUsingNavInput"][1]["call_args"] = "(input)" defs["igIsActiveIdUsingNavInput"][1]["cimguiname"] = "igIsActiveIdUsingNavInput" defs["igIsActiveIdUsingNavInput"][1]["defaults"] = {} defs["igIsActiveIdUsingNavInput"][1]["funcname"] = "IsActiveIdUsingNavInput" -defs["igIsActiveIdUsingNavInput"][1]["location"] = "imgui_internal:2782" +defs["igIsActiveIdUsingNavInput"][1]["location"] = "imgui_internal:2828" defs["igIsActiveIdUsingNavInput"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavInput"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavInput" defs["igIsActiveIdUsingNavInput"][1]["ret"] = "bool" @@ -20103,7 +20434,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:2699" +defs["igIsClippedEx"][1]["location"] = "imgui_internal:2744" defs["igIsClippedEx"][1]["namespace"] = "ImGui" defs["igIsClippedEx"][1]["ov_cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["ret"] = "bool" @@ -20119,7 +20450,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:2842" +defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:2890" defs["igIsDragDropPayloadBeingAccepted"][1]["namespace"] = "ImGui" defs["igIsDragDropPayloadBeingAccepted"][1]["ov_cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["ret"] = "bool" @@ -20287,7 +20618,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_internal:2704" +defs["igIsItemToggledSelection"][1]["location"] = "imgui_internal:2749" defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["ret"] = "bool" @@ -20322,7 +20653,7 @@ defs["igIsKeyDown"][1]["call_args"] = "(user_key_index)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui:922" +defs["igIsKeyDown"][1]["location"] = "imgui:921" defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -20345,7 +20676,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:923" +defs["igIsKeyPressed"][1]["location"] = "imgui:922" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["ret"] = "bool" @@ -20368,7 +20699,7 @@ defs["igIsKeyPressedMap"][1]["cimguiname"] = "igIsKeyPressedMap" defs["igIsKeyPressedMap"][1]["defaults"] = {} defs["igIsKeyPressedMap"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressedMap"][1]["funcname"] = "IsKeyPressedMap" -defs["igIsKeyPressedMap"][1]["location"] = "imgui_internal:2785" +defs["igIsKeyPressedMap"][1]["location"] = "imgui_internal:2831" defs["igIsKeyPressedMap"][1]["namespace"] = "ImGui" defs["igIsKeyPressedMap"][1]["ov_cimguiname"] = "igIsKeyPressedMap" defs["igIsKeyPressedMap"][1]["ret"] = "bool" @@ -20387,7 +20718,7 @@ defs["igIsKeyReleased"][1]["call_args"] = "(user_key_index)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui:924" +defs["igIsKeyReleased"][1]["location"] = "imgui:923" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -20410,7 +20741,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:933" +defs["igIsMouseClicked"][1]["location"] = "imgui:932" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["ret"] = "bool" @@ -20429,7 +20760,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:935" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:934" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" @@ -20448,7 +20779,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:932" +defs["igIsMouseDown"][1]["location"] = "imgui:931" defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -20471,7 +20802,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:2784" +defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:2830" defs["igIsMouseDragPastThreshold"][1]["namespace"] = "ImGui" defs["igIsMouseDragPastThreshold"][1]["ov_cimguiname"] = "igIsMouseDragPastThreshold" defs["igIsMouseDragPastThreshold"][1]["ret"] = "bool" @@ -20559,7 +20890,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:934" +defs["igIsMouseReleased"][1]["location"] = "imgui:933" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -20578,7 +20909,7 @@ defs["igIsNavInputDown"][1]["call_args"] = "(n)" defs["igIsNavInputDown"][1]["cimguiname"] = "igIsNavInputDown" defs["igIsNavInputDown"][1]["defaults"] = {} defs["igIsNavInputDown"][1]["funcname"] = "IsNavInputDown" -defs["igIsNavInputDown"][1]["location"] = "imgui_internal:2786" +defs["igIsNavInputDown"][1]["location"] = "imgui_internal:2832" defs["igIsNavInputDown"][1]["namespace"] = "ImGui" defs["igIsNavInputDown"][1]["ov_cimguiname"] = "igIsNavInputDown" defs["igIsNavInputDown"][1]["ret"] = "bool" @@ -20600,7 +20931,7 @@ defs["igIsNavInputTest"][1]["call_args"] = "(n,rm)" defs["igIsNavInputTest"][1]["cimguiname"] = "igIsNavInputTest" defs["igIsNavInputTest"][1]["defaults"] = {} defs["igIsNavInputTest"][1]["funcname"] = "IsNavInputTest" -defs["igIsNavInputTest"][1]["location"] = "imgui_internal:2787" +defs["igIsNavInputTest"][1]["location"] = "imgui_internal:2833" defs["igIsNavInputTest"][1]["namespace"] = "ImGui" defs["igIsNavInputTest"][1]["ov_cimguiname"] = "igIsNavInputTest" defs["igIsNavInputTest"][1]["ret"] = "bool" @@ -20643,7 +20974,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:2735" +defs["igIsPopupOpen"][2]["location"] = "imgui_internal:2780" defs["igIsPopupOpen"][2]["namespace"] = "ImGui" defs["igIsPopupOpen"][2]["ov_cimguiname"] = "igIsPopupOpen_ID" defs["igIsPopupOpen"][2]["ret"] = "bool" @@ -20706,7 +21037,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:2611" +defs["igIsWindowAbove"][1]["location"] = "imgui_internal:2652" defs["igIsWindowAbove"][1]["namespace"] = "ImGui" defs["igIsWindowAbove"][1]["ov_cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["ret"] = "bool" @@ -20750,7 +21081,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:2610" +defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:2650" defs["igIsWindowChildOf"][1]["namespace"] = "ImGui" defs["igIsWindowChildOf"][1]["ov_cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["ret"] = "bool" @@ -20841,13 +21172,35 @@ 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:2612" +defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:2653" defs["igIsWindowNavFocusable"][1]["namespace"] = "ImGui" defs["igIsWindowNavFocusable"][1]["ov_cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["ret"] = "bool" defs["igIsWindowNavFocusable"][1]["signature"] = "(ImGuiWindow*)" defs["igIsWindowNavFocusable"][1]["stname"] = "" defs["igIsWindowNavFocusable"]["(ImGuiWindow*)"] = defs["igIsWindowNavFocusable"][1] +defs["igIsWindowWithinBeginStackOf"] = {} +defs["igIsWindowWithinBeginStackOf"][1] = {} +defs["igIsWindowWithinBeginStackOf"][1]["args"] = "(ImGuiWindow* window,ImGuiWindow* potential_parent)" +defs["igIsWindowWithinBeginStackOf"][1]["argsT"] = {} +defs["igIsWindowWithinBeginStackOf"][1]["argsT"][1] = {} +defs["igIsWindowWithinBeginStackOf"][1]["argsT"][1]["name"] = "window" +defs["igIsWindowWithinBeginStackOf"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igIsWindowWithinBeginStackOf"][1]["argsT"][2] = {} +defs["igIsWindowWithinBeginStackOf"][1]["argsT"][2]["name"] = "potential_parent" +defs["igIsWindowWithinBeginStackOf"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igIsWindowWithinBeginStackOf"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiWindow* potential_parent)" +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:2651" +defs["igIsWindowWithinBeginStackOf"][1]["namespace"] = "ImGui" +defs["igIsWindowWithinBeginStackOf"][1]["ov_cimguiname"] = "igIsWindowWithinBeginStackOf" +defs["igIsWindowWithinBeginStackOf"][1]["ret"] = "bool" +defs["igIsWindowWithinBeginStackOf"][1]["signature"] = "(ImGuiWindow*,ImGuiWindow*)" +defs["igIsWindowWithinBeginStackOf"][1]["stname"] = "" +defs["igIsWindowWithinBeginStackOf"]["(ImGuiWindow*,ImGuiWindow*)"] = defs["igIsWindowWithinBeginStackOf"][1] defs["igItemAdd"] = {} defs["igItemAdd"][1] = {} defs["igItemAdd"][1]["args"] = "(const ImRect bb,ImGuiID id,const ImRect* nav_bb,ImGuiItemFlags extra_flags)" @@ -20871,7 +21224,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:2696" +defs["igItemAdd"][1]["location"] = "imgui_internal:2742" defs["igItemAdd"][1]["namespace"] = "ImGui" defs["igItemAdd"][1]["ov_cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["ret"] = "bool" @@ -20893,35 +21246,13 @@ defs["igItemHoverable"][1]["call_args"] = "(bb,id)" defs["igItemHoverable"][1]["cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["defaults"] = {} defs["igItemHoverable"][1]["funcname"] = "ItemHoverable" -defs["igItemHoverable"][1]["location"] = "imgui_internal:2697" +defs["igItemHoverable"][1]["location"] = "imgui_internal:2743" defs["igItemHoverable"][1]["namespace"] = "ImGui" defs["igItemHoverable"][1]["ov_cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["ret"] = "bool" defs["igItemHoverable"][1]["signature"] = "(const ImRect,ImGuiID)" defs["igItemHoverable"][1]["stname"] = "" defs["igItemHoverable"]["(const ImRect,ImGuiID)"] = defs["igItemHoverable"][1] -defs["igItemInputable"] = {} -defs["igItemInputable"][1] = {} -defs["igItemInputable"][1]["args"] = "(ImGuiWindow* window,ImGuiID id)" -defs["igItemInputable"][1]["argsT"] = {} -defs["igItemInputable"][1]["argsT"][1] = {} -defs["igItemInputable"][1]["argsT"][1]["name"] = "window" -defs["igItemInputable"][1]["argsT"][1]["type"] = "ImGuiWindow*" -defs["igItemInputable"][1]["argsT"][2] = {} -defs["igItemInputable"][1]["argsT"][2]["name"] = "id" -defs["igItemInputable"][1]["argsT"][2]["type"] = "ImGuiID" -defs["igItemInputable"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiID id)" -defs["igItemInputable"][1]["call_args"] = "(window,id)" -defs["igItemInputable"][1]["cimguiname"] = "igItemInputable" -defs["igItemInputable"][1]["defaults"] = {} -defs["igItemInputable"][1]["funcname"] = "ItemInputable" -defs["igItemInputable"][1]["location"] = "imgui_internal:2698" -defs["igItemInputable"][1]["namespace"] = "ImGui" -defs["igItemInputable"][1]["ov_cimguiname"] = "igItemInputable" -defs["igItemInputable"][1]["ret"] = "void" -defs["igItemInputable"][1]["signature"] = "(ImGuiWindow*,ImGuiID)" -defs["igItemInputable"][1]["stname"] = "" -defs["igItemInputable"]["(ImGuiWindow*,ImGuiID)"] = defs["igItemInputable"][1] defs["igItemSize"] = {} defs["igItemSize"][1] = {} defs["igItemSize"][1]["args"] = "(const ImVec2 size,float text_baseline_y)" @@ -20938,7 +21269,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:2694" +defs["igItemSize"][1]["location"] = "imgui_internal:2740" defs["igItemSize"][1]["namespace"] = "ImGui" defs["igItemSize"][1]["ov_cimguiname"] = "igItemSize_Vec2" defs["igItemSize"][1]["ret"] = "void" @@ -20959,7 +21290,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:2695" +defs["igItemSize"][2]["location"] = "imgui_internal:2741" defs["igItemSize"][2]["namespace"] = "ImGui" defs["igItemSize"][2]["ov_cimguiname"] = "igItemSize_Rect" defs["igItemSize"][2]["ret"] = "void" @@ -20979,7 +21310,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:2688" +defs["igKeepAliveID"][1]["location"] = "imgui_internal:2734" defs["igKeepAliveID"][1]["namespace"] = "ImGui" defs["igKeepAliveID"][1]["ov_cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["ret"] = "void" @@ -21162,7 +21493,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:2724" +defs["igLogBegin"][1]["location"] = "imgui_internal:2769" defs["igLogBegin"][1]["namespace"] = "ImGui" defs["igLogBegin"][1]["ov_cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["ret"] = "void" @@ -21220,7 +21551,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:2726" +defs["igLogRenderedText"][1]["location"] = "imgui_internal:2771" defs["igLogRenderedText"][1]["namespace"] = "ImGui" defs["igLogRenderedText"][1]["ov_cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["ret"] = "void" @@ -21242,7 +21573,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:2727" +defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:2772" defs["igLogSetNextTextDecoration"][1]["namespace"] = "ImGui" defs["igLogSetNextTextDecoration"][1]["ov_cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["ret"] = "void" @@ -21308,7 +21639,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:2725" +defs["igLogToBuffer"][1]["location"] = "imgui_internal:2770" defs["igLogToBuffer"][1]["namespace"] = "ImGui" defs["igLogToBuffer"][1]["ov_cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["ret"] = "void" @@ -21388,7 +21719,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:2654" +defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:2700" defs["igMarkIniSettingsDirty"][1]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][1]["ov_cimguiname"] = "igMarkIniSettingsDirty_Nil" defs["igMarkIniSettingsDirty"][1]["ret"] = "void" @@ -21405,7 +21736,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:2655" +defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:2701" defs["igMarkIniSettingsDirty"][2]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][2]["ov_cimguiname"] = "igMarkIniSettingsDirty_WindowPtr" defs["igMarkIniSettingsDirty"][2]["ret"] = "void" @@ -21425,7 +21756,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:2689" +defs["igMarkItemEdited"][1]["location"] = "imgui_internal:2735" defs["igMarkItemEdited"][1]["namespace"] = "ImGui" defs["igMarkItemEdited"][1]["ov_cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["ret"] = "void" @@ -21556,7 +21887,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:2746" +defs["igMenuItemEx"][1]["location"] = "imgui_internal:2792" defs["igMenuItemEx"][1]["namespace"] = "ImGui" defs["igMenuItemEx"][1]["ov_cimguiname"] = "igMenuItemEx" defs["igMenuItemEx"][1]["ret"] = "bool" @@ -21572,7 +21903,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:2755" +defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:2801" defs["igNavInitRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavInitRequestApplyResult"][1]["ov_cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["ret"] = "void" @@ -21594,7 +21925,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:2754" +defs["igNavInitWindow"][1]["location"] = "imgui_internal:2800" defs["igNavInitWindow"][1]["namespace"] = "ImGui" defs["igNavInitWindow"][1]["ov_cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["ret"] = "void" @@ -21610,7 +21941,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:2761" +defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:2807" defs["igNavMoveRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavMoveRequestApplyResult"][1]["ov_cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["ret"] = "void" @@ -21626,7 +21957,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:2756" +defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:2802" defs["igNavMoveRequestButNoResultYet"][1]["namespace"] = "ImGui" defs["igNavMoveRequestButNoResultYet"][1]["ov_cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["ret"] = "bool" @@ -21642,7 +21973,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:2760" +defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:2806" defs["igNavMoveRequestCancel"][1]["namespace"] = "ImGui" defs["igNavMoveRequestCancel"][1]["ov_cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["ret"] = "void" @@ -21670,7 +22001,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:2758" +defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:2804" defs["igNavMoveRequestForward"][1]["namespace"] = "ImGui" defs["igNavMoveRequestForward"][1]["ov_cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["ret"] = "void" @@ -21679,20 +22010,23 @@ defs["igNavMoveRequestForward"][1]["stname"] = "" defs["igNavMoveRequestForward"]["(ImGuiDir,ImGuiDir,ImGuiNavMoveFlags,ImGuiScrollFlags)"] = defs["igNavMoveRequestForward"][1] defs["igNavMoveRequestResolveWithLastItem"] = {} defs["igNavMoveRequestResolveWithLastItem"][1] = {} -defs["igNavMoveRequestResolveWithLastItem"][1]["args"] = "()" +defs["igNavMoveRequestResolveWithLastItem"][1]["args"] = "(ImGuiNavItemData* result)" defs["igNavMoveRequestResolveWithLastItem"][1]["argsT"] = {} -defs["igNavMoveRequestResolveWithLastItem"][1]["argsoriginal"] = "()" -defs["igNavMoveRequestResolveWithLastItem"][1]["call_args"] = "()" +defs["igNavMoveRequestResolveWithLastItem"][1]["argsT"][1] = {} +defs["igNavMoveRequestResolveWithLastItem"][1]["argsT"][1]["name"] = "result" +defs["igNavMoveRequestResolveWithLastItem"][1]["argsT"][1]["type"] = "ImGuiNavItemData*" +defs["igNavMoveRequestResolveWithLastItem"][1]["argsoriginal"] = "(ImGuiNavItemData* result)" +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:2759" +defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:2805" defs["igNavMoveRequestResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithLastItem"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["ret"] = "void" -defs["igNavMoveRequestResolveWithLastItem"][1]["signature"] = "()" +defs["igNavMoveRequestResolveWithLastItem"][1]["signature"] = "(ImGuiNavItemData*)" defs["igNavMoveRequestResolveWithLastItem"][1]["stname"] = "" -defs["igNavMoveRequestResolveWithLastItem"]["()"] = defs["igNavMoveRequestResolveWithLastItem"][1] +defs["igNavMoveRequestResolveWithLastItem"]["(ImGuiNavItemData*)"] = defs["igNavMoveRequestResolveWithLastItem"][1] defs["igNavMoveRequestSubmit"] = {} defs["igNavMoveRequestSubmit"][1] = {} defs["igNavMoveRequestSubmit"][1]["args"] = "(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags,ImGuiScrollFlags scroll_flags)" @@ -21714,7 +22048,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:2757" +defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:2803" defs["igNavMoveRequestSubmit"][1]["namespace"] = "ImGui" defs["igNavMoveRequestSubmit"][1]["ov_cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["ret"] = "void" @@ -21736,7 +22070,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:2762" +defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:2808" defs["igNavMoveRequestTryWrapping"][1]["namespace"] = "ImGui" defs["igNavMoveRequestTryWrapping"][1]["ov_cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["ret"] = "void" @@ -21852,7 +22186,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:2731" +defs["igOpenPopupEx"][1]["location"] = "imgui_internal:2776" defs["igOpenPopupEx"][1]["namespace"] = "ImGui" defs["igOpenPopupEx"][1]["ov_cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["ret"] = "void" @@ -21924,7 +22258,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:3009" +defs["igPlotEx"][1]["location"] = "imgui_internal:3058" defs["igPlotEx"][1]["namespace"] = "ImGui" defs["igPlotEx"][1]["ov_cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["ret"] = "int" @@ -22184,7 +22518,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:2850" +defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:2898" defs["igPopColumnsBackground"][1]["namespace"] = "ImGui" defs["igPopColumnsBackground"][1]["ov_cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["ret"] = "void" @@ -22200,7 +22534,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:2773" +defs["igPopFocusScope"][1]["location"] = "imgui_internal:2819" defs["igPopFocusScope"][1]["namespace"] = "ImGui" defs["igPopFocusScope"][1]["ov_cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["ret"] = "void" @@ -22248,7 +22582,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_internal:2710" +defs["igPopItemFlag"][1]["location"] = "imgui_internal:2755" defs["igPopItemFlag"][1]["namespace"] = "ImGui" defs["igPopItemFlag"][1]["ov_cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["ret"] = "void" @@ -22429,7 +22763,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:2848" +defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:2896" defs["igPushColumnClipRect"][1]["namespace"] = "ImGui" defs["igPushColumnClipRect"][1]["ov_cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["ret"] = "void" @@ -22445,7 +22779,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:2849" +defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:2897" defs["igPushColumnsBackground"][1]["namespace"] = "ImGui" defs["igPushColumnsBackground"][1]["ov_cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["ret"] = "void" @@ -22464,7 +22798,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:2772" +defs["igPushFocusScope"][1]["location"] = "imgui_internal:2818" defs["igPushFocusScope"][1]["namespace"] = "ImGui" defs["igPushFocusScope"][1]["ov_cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["ret"] = "void" @@ -22581,7 +22915,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_internal:2709" +defs["igPushItemFlag"][1]["location"] = "imgui_internal:2754" defs["igPushItemFlag"][1]["namespace"] = "ImGui" defs["igPushItemFlag"][1]["ov_cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["ret"] = "void" @@ -22622,7 +22956,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:2703" +defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:2748" defs["igPushMultiItemsWidths"][1]["namespace"] = "ImGui" defs["igPushMultiItemsWidths"][1]["ov_cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["ret"] = "void" @@ -22641,7 +22975,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:2690" +defs["igPushOverrideID"][1]["location"] = "imgui_internal:2736" defs["igPushOverrideID"][1]["namespace"] = "ImGui" defs["igPushOverrideID"][1]["ov_cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["ret"] = "void" @@ -22815,7 +23149,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:2643" +defs["igRemoveContextHook"][1]["location"] = "imgui_internal:2689" defs["igRemoveContextHook"][1]["namespace"] = "ImGui" defs["igRemoveContextHook"][1]["ov_cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["ret"] = "void" @@ -22863,7 +23197,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:2937" +defs["igRenderArrow"][1]["location"] = "imgui_internal:2985" defs["igRenderArrow"][1]["namespace"] = "ImGui" defs["igRenderArrow"][1]["ov_cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["ret"] = "void" @@ -22891,7 +23225,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:2942" +defs["igRenderArrowDockMenu"][1]["location"] = "imgui_internal:2990" defs["igRenderArrowDockMenu"][1]["namespace"] = "ImGui" defs["igRenderArrowDockMenu"][1]["ov_cimguiname"] = "igRenderArrowDockMenu" defs["igRenderArrowDockMenu"][1]["ret"] = "void" @@ -22922,7 +23256,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:2941" +defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:2989" defs["igRenderArrowPointingAt"][1]["namespace"] = "ImGui" defs["igRenderArrowPointingAt"][1]["ov_cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["ret"] = "void" @@ -22947,7 +23281,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:2938" +defs["igRenderBullet"][1]["location"] = "imgui_internal:2986" defs["igRenderBullet"][1]["namespace"] = "ImGui" defs["igRenderBullet"][1]["ov_cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["ret"] = "void" @@ -22975,7 +23309,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:2939" +defs["igRenderCheckMark"][1]["location"] = "imgui_internal:2987" defs["igRenderCheckMark"][1]["namespace"] = "ImGui" defs["igRenderCheckMark"][1]["ov_cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["ret"] = "void" @@ -23017,7 +23351,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:2932" +defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:2980" defs["igRenderColorRectWithAlphaCheckerboard"][1]["namespace"] = "ImGui" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ov_cimguiname"] = "igRenderColorRectWithAlphaCheckerboard" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ret"] = "void" @@ -23050,7 +23384,7 @@ defs["igRenderFrame"][1]["defaults"] = {} defs["igRenderFrame"][1]["defaults"]["border"] = "true" defs["igRenderFrame"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrame"][1]["funcname"] = "RenderFrame" -defs["igRenderFrame"][1]["location"] = "imgui_internal:2930" +defs["igRenderFrame"][1]["location"] = "imgui_internal:2978" defs["igRenderFrame"][1]["namespace"] = "ImGui" defs["igRenderFrame"][1]["ov_cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["ret"] = "void" @@ -23076,7 +23410,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:2931" +defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:2979" defs["igRenderFrameBorder"][1]["namespace"] = "ImGui" defs["igRenderFrameBorder"][1]["ov_cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["ret"] = "void" @@ -23113,7 +23447,7 @@ defs["igRenderMouseCursor"][1]["call_args"] = "(draw_list,pos,scale,mouse_cursor defs["igRenderMouseCursor"][1]["cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["defaults"] = {} defs["igRenderMouseCursor"][1]["funcname"] = "RenderMouseCursor" -defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:2940" +defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:2988" defs["igRenderMouseCursor"][1]["namespace"] = "ImGui" defs["igRenderMouseCursor"][1]["ov_cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["ret"] = "void" @@ -23139,7 +23473,7 @@ defs["igRenderNavHighlight"][1]["cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["defaults"] = {} defs["igRenderNavHighlight"][1]["defaults"]["flags"] = "ImGuiNavHighlightFlags_TypeDefault" defs["igRenderNavHighlight"][1]["funcname"] = "RenderNavHighlight" -defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:2933" +defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:2981" defs["igRenderNavHighlight"][1]["namespace"] = "ImGui" defs["igRenderNavHighlight"][1]["ov_cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["ret"] = "void" @@ -23197,7 +23531,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:2943" +defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:2991" defs["igRenderRectFilledRangeH"][1]["namespace"] = "ImGui" defs["igRenderRectFilledRangeH"][1]["ov_cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["ret"] = "void" @@ -23228,7 +23562,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:2944" +defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:2992" defs["igRenderRectFilledWithHole"][1]["namespace"] = "ImGui" defs["igRenderRectFilledWithHole"][1]["ov_cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["ret"] = "void" @@ -23258,7 +23592,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:2925" +defs["igRenderText"][1]["location"] = "imgui_internal:2973" defs["igRenderText"][1]["namespace"] = "ImGui" defs["igRenderText"][1]["ov_cimguiname"] = "igRenderText" defs["igRenderText"][1]["ret"] = "void" @@ -23297,7 +23631,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:2927" +defs["igRenderTextClipped"][1]["location"] = "imgui_internal:2975" defs["igRenderTextClipped"][1]["namespace"] = "ImGui" defs["igRenderTextClipped"][1]["ov_cimguiname"] = "igRenderTextClipped" defs["igRenderTextClipped"][1]["ret"] = "void" @@ -23339,7 +23673,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:2928" +defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:2976" defs["igRenderTextClippedEx"][1]["namespace"] = "ImGui" defs["igRenderTextClippedEx"][1]["ov_cimguiname"] = "igRenderTextClippedEx" defs["igRenderTextClippedEx"][1]["ret"] = "void" @@ -23379,7 +23713,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:2929" +defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:2977" defs["igRenderTextEllipsis"][1]["namespace"] = "ImGui" defs["igRenderTextEllipsis"][1]["ov_cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["ret"] = "void" @@ -23407,7 +23741,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:2926" +defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:2974" defs["igRenderTextWrapped"][1]["namespace"] = "ImGui" defs["igRenderTextWrapped"][1]["ov_cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["ret"] = "void" @@ -23512,7 +23846,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:2648" +defs["igScaleWindowsInViewport"][1]["location"] = "imgui_internal:2694" defs["igScaleWindowsInViewport"][1]["namespace"] = "ImGui" defs["igScaleWindowsInViewport"][1]["ov_cimguiname"] = "igScaleWindowsInViewport" defs["igScaleWindowsInViewport"][1]["ret"] = "void" @@ -23534,7 +23868,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:2674" +defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:2720" defs["igScrollToBringRectIntoView"][1]["namespace"] = "ImGui" defs["igScrollToBringRectIntoView"][1]["ov_cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["ret"] = "void" @@ -23554,7 +23888,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:2670" +defs["igScrollToItem"][1]["location"] = "imgui_internal:2716" defs["igScrollToItem"][1]["namespace"] = "ImGui" defs["igScrollToItem"][1]["ov_cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["ret"] = "void" @@ -23580,7 +23914,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:2671" +defs["igScrollToRect"][1]["location"] = "imgui_internal:2717" defs["igScrollToRect"][1]["namespace"] = "ImGui" defs["igScrollToRect"][1]["ov_cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["ret"] = "void" @@ -23609,7 +23943,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:2672" +defs["igScrollToRectEx"][1]["location"] = "imgui_internal:2718" defs["igScrollToRectEx"][1]["namespace"] = "ImGui" defs["igScrollToRectEx"][1]["nonUDT"] = 1 defs["igScrollToRectEx"][1]["ov_cimguiname"] = "igScrollToRectEx" @@ -23629,7 +23963,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:2958" +defs["igScrollbar"][1]["location"] = "imgui_internal:3007" defs["igScrollbar"][1]["namespace"] = "ImGui" defs["igScrollbar"][1]["ov_cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["ret"] = "void" @@ -23638,7 +23972,7 @@ defs["igScrollbar"][1]["stname"] = "" defs["igScrollbar"]["(ImGuiAxis)"] = defs["igScrollbar"][1] defs["igScrollbarEx"] = {} defs["igScrollbarEx"][1] = {} -defs["igScrollbarEx"][1]["args"] = "(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* p_scroll_v,float avail_v,float contents_v,ImDrawFlags flags)" +defs["igScrollbarEx"][1]["args"] = "(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags flags)" defs["igScrollbarEx"][1]["argsT"] = {} defs["igScrollbarEx"][1]["argsT"][1] = {} defs["igScrollbarEx"][1]["argsT"][1]["name"] = "bb" @@ -23651,28 +23985,28 @@ defs["igScrollbarEx"][1]["argsT"][3]["name"] = "axis" defs["igScrollbarEx"][1]["argsT"][3]["type"] = "ImGuiAxis" defs["igScrollbarEx"][1]["argsT"][4] = {} defs["igScrollbarEx"][1]["argsT"][4]["name"] = "p_scroll_v" -defs["igScrollbarEx"][1]["argsT"][4]["type"] = "float*" +defs["igScrollbarEx"][1]["argsT"][4]["type"] = "ImS64*" defs["igScrollbarEx"][1]["argsT"][5] = {} defs["igScrollbarEx"][1]["argsT"][5]["name"] = "avail_v" -defs["igScrollbarEx"][1]["argsT"][5]["type"] = "float" +defs["igScrollbarEx"][1]["argsT"][5]["type"] = "ImS64" defs["igScrollbarEx"][1]["argsT"][6] = {} defs["igScrollbarEx"][1]["argsT"][6]["name"] = "contents_v" -defs["igScrollbarEx"][1]["argsT"][6]["type"] = "float" +defs["igScrollbarEx"][1]["argsT"][6]["type"] = "ImS64" defs["igScrollbarEx"][1]["argsT"][7] = {} defs["igScrollbarEx"][1]["argsT"][7]["name"] = "flags" defs["igScrollbarEx"][1]["argsT"][7]["type"] = "ImDrawFlags" -defs["igScrollbarEx"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,float* p_scroll_v,float avail_v,float contents_v,ImDrawFlags flags)" +defs["igScrollbarEx"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags flags)" defs["igScrollbarEx"][1]["call_args"] = "(bb,id,axis,p_scroll_v,avail_v,contents_v,flags)" defs["igScrollbarEx"][1]["cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["defaults"] = {} defs["igScrollbarEx"][1]["funcname"] = "ScrollbarEx" -defs["igScrollbarEx"][1]["location"] = "imgui_internal:2959" +defs["igScrollbarEx"][1]["location"] = "imgui_internal:3008" defs["igScrollbarEx"][1]["namespace"] = "ImGui" defs["igScrollbarEx"][1]["ov_cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["ret"] = "bool" -defs["igScrollbarEx"][1]["signature"] = "(const ImRect,ImGuiID,ImGuiAxis,float*,float,float,ImDrawFlags)" +defs["igScrollbarEx"][1]["signature"] = "(const ImRect,ImGuiID,ImGuiAxis,ImS64*,ImS64,ImS64,ImDrawFlags)" defs["igScrollbarEx"][1]["stname"] = "" -defs["igScrollbarEx"]["(const ImRect,ImGuiID,ImGuiAxis,float*,float,float,ImDrawFlags)"] = defs["igScrollbarEx"][1] +defs["igScrollbarEx"]["(const ImRect,ImGuiID,ImGuiAxis,ImS64*,ImS64,ImS64,ImDrawFlags)"] = defs["igScrollbarEx"][1] defs["igSelectable"] = {} defs["igSelectable"][1] = {} defs["igSelectable"][1]["args"] = "(const char* label,bool selected,ImGuiSelectableFlags flags,const ImVec2 size)" @@ -23761,7 +24095,7 @@ defs["igSeparatorEx"][1]["call_args"] = "(flags)" defs["igSeparatorEx"][1]["cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["defaults"] = {} defs["igSeparatorEx"][1]["funcname"] = "SeparatorEx" -defs["igSeparatorEx"][1]["location"] = "imgui_internal:2965" +defs["igSeparatorEx"][1]["location"] = "imgui_internal:3014" defs["igSeparatorEx"][1]["namespace"] = "ImGui" defs["igSeparatorEx"][1]["ov_cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["ret"] = "void" @@ -23783,7 +24117,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:2683" +defs["igSetActiveID"][1]["location"] = "imgui_internal:2729" defs["igSetActiveID"][1]["namespace"] = "ImGui" defs["igSetActiveID"][1]["ov_cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["ret"] = "void" @@ -23799,7 +24133,7 @@ defs["igSetActiveIdUsingNavAndKeys"][1]["call_args"] = "()" defs["igSetActiveIdUsingNavAndKeys"][1]["cimguiname"] = "igSetActiveIdUsingNavAndKeys" defs["igSetActiveIdUsingNavAndKeys"][1]["defaults"] = {} defs["igSetActiveIdUsingNavAndKeys"][1]["funcname"] = "SetActiveIdUsingNavAndKeys" -defs["igSetActiveIdUsingNavAndKeys"][1]["location"] = "imgui_internal:2780" +defs["igSetActiveIdUsingNavAndKeys"][1]["location"] = "imgui_internal:2826" defs["igSetActiveIdUsingNavAndKeys"][1]["namespace"] = "ImGui" defs["igSetActiveIdUsingNavAndKeys"][1]["ov_cimguiname"] = "igSetActiveIdUsingNavAndKeys" defs["igSetActiveIdUsingNavAndKeys"][1]["ret"] = "void" @@ -23945,7 +24279,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:2626" +defs["igSetCurrentFont"][1]["location"] = "imgui_internal:2672" defs["igSetCurrentFont"][1]["namespace"] = "ImGui" defs["igSetCurrentFont"][1]["ov_cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["ret"] = "void" @@ -23967,7 +24301,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:2650" +defs["igSetCurrentViewport"][1]["location"] = "imgui_internal:2696" defs["igSetCurrentViewport"][1]["namespace"] = "ImGui" defs["igSetCurrentViewport"][1]["ov_cimguiname"] = "igSetCurrentViewport" defs["igSetCurrentViewport"][1]["ret"] = "void" @@ -24094,7 +24428,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:2684" +defs["igSetFocusID"][1]["location"] = "imgui_internal:2730" defs["igSetFocusID"][1]["namespace"] = "ImGui" defs["igSetFocusID"][1]["ov_cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["ret"] = "void" @@ -24113,7 +24447,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:2687" +defs["igSetHoveredID"][1]["location"] = "imgui_internal:2733" defs["igSetHoveredID"][1]["namespace"] = "ImGui" defs["igSetHoveredID"][1]["ov_cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["ret"] = "void" @@ -24161,7 +24495,7 @@ defs["igSetItemUsingMouseWheel"][1]["call_args"] = "()" defs["igSetItemUsingMouseWheel"][1]["cimguiname"] = "igSetItemUsingMouseWheel" defs["igSetItemUsingMouseWheel"][1]["defaults"] = {} defs["igSetItemUsingMouseWheel"][1]["funcname"] = "SetItemUsingMouseWheel" -defs["igSetItemUsingMouseWheel"][1]["location"] = "imgui_internal:2779" +defs["igSetItemUsingMouseWheel"][1]["location"] = "imgui_internal:2825" defs["igSetItemUsingMouseWheel"][1]["namespace"] = "ImGui" defs["igSetItemUsingMouseWheel"][1]["ov_cimguiname"] = "igSetItemUsingMouseWheel" defs["igSetItemUsingMouseWheel"][1]["ret"] = "void" @@ -24209,7 +24543,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:2700" +defs["igSetLastItemData"][1]["location"] = "imgui_internal:2745" defs["igSetLastItemData"][1]["namespace"] = "ImGui" defs["igSetLastItemData"][1]["ov_cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["ret"] = "void" @@ -24256,7 +24590,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:2767" +defs["igSetNavID"][1]["location"] = "imgui_internal:2813" defs["igSetNavID"][1]["namespace"] = "ImGui" defs["igSetNavID"][1]["ov_cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["ret"] = "void" @@ -24463,7 +24797,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_internal:2663" +defs["igSetNextWindowScroll"][1]["location"] = "imgui_internal:2709" defs["igSetNextWindowScroll"][1]["namespace"] = "ImGui" defs["igSetNextWindowScroll"][1]["ov_cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["ret"] = "void" @@ -24581,7 +24915,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:2666" +defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:2712" defs["igSetScrollFromPosX"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][2]["ov_cimguiname"] = "igSetScrollFromPosX_WindowPtr" defs["igSetScrollFromPosX"][2]["ret"] = "void" @@ -24628,7 +24962,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:2667" +defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:2713" defs["igSetScrollFromPosY"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][2]["ov_cimguiname"] = "igSetScrollFromPosY_WindowPtr" defs["igSetScrollFromPosY"][2]["ret"] = "void" @@ -24708,7 +25042,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:2664" +defs["igSetScrollX"][2]["location"] = "imgui_internal:2710" defs["igSetScrollX"][2]["namespace"] = "ImGui" defs["igSetScrollX"][2]["ov_cimguiname"] = "igSetScrollX_WindowPtr" defs["igSetScrollX"][2]["ret"] = "void" @@ -24748,7 +25082,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:2665" +defs["igSetScrollY"][2]["location"] = "imgui_internal:2711" defs["igSetScrollY"][2]["namespace"] = "ImGui" defs["igSetScrollY"][2]["ov_cimguiname"] = "igSetScrollY_WindowPtr" defs["igSetScrollY"][2]["ret"] = "void" @@ -24854,7 +25188,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:2845" +defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:2893" defs["igSetWindowClipRectBeforeSetChannel"][1]["namespace"] = "ImGui" defs["igSetWindowClipRectBeforeSetChannel"][1]["ov_cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["ret"] = "void" @@ -24925,7 +25259,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:2615" +defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:2656" defs["igSetWindowCollapsed"][3]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][3]["ov_cimguiname"] = "igSetWindowCollapsed_WindowPtr" defs["igSetWindowCollapsed"][3]["ret"] = "void" @@ -24952,7 +25286,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:2813" +defs["igSetWindowDock"][1]["location"] = "imgui_internal:2861" defs["igSetWindowDock"][1]["namespace"] = "ImGui" defs["igSetWindowDock"][1]["ov_cimguiname"] = "igSetWindowDock" defs["igSetWindowDock"][1]["ret"] = "void" @@ -25030,7 +25364,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:2616" +defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:2657" defs["igSetWindowHitTestHole"][1]["namespace"] = "ImGui" defs["igSetWindowHitTestHole"][1]["ov_cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["ret"] = "void" @@ -25101,7 +25435,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:2613" +defs["igSetWindowPos"][3]["location"] = "imgui_internal:2654" defs["igSetWindowPos"][3]["namespace"] = "ImGui" defs["igSetWindowPos"][3]["ov_cimguiname"] = "igSetWindowPos_WindowPtr" defs["igSetWindowPos"][3]["ret"] = "void" @@ -25174,7 +25508,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:2614" +defs["igSetWindowSize"][3]["location"] = "imgui_internal:2655" defs["igSetWindowSize"][3]["namespace"] = "ImGui" defs["igSetWindowSize"][3]["ov_cimguiname"] = "igSetWindowSize_WindowPtr" defs["igSetWindowSize"][3]["ret"] = "void" @@ -25213,7 +25547,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:3012" +defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3061" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ov_cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ret"] = "void" @@ -25253,7 +25587,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:3013" +defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3062" defs["igShadeVertsLinearUV"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearUV"][1]["ov_cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["ret"] = "void" @@ -25312,7 +25646,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:3026" +defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3075" defs["igShowFontAtlas"][1]["namespace"] = "ImGui" defs["igShowFontAtlas"][1]["ov_cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["ret"] = "void" @@ -25451,7 +25785,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:2706" +defs["igShrinkWidths"][1]["location"] = "imgui_internal:2751" defs["igShrinkWidths"][1]["namespace"] = "ImGui" defs["igShrinkWidths"][1]["ov_cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["ret"] = "void" @@ -25470,7 +25804,7 @@ defs["igShutdown"][1]["call_args"] = "(context)" defs["igShutdown"][1]["cimguiname"] = "igShutdown" defs["igShutdown"][1]["defaults"] = {} defs["igShutdown"][1]["funcname"] = "Shutdown" -defs["igShutdown"][1]["location"] = "imgui_internal:2632" +defs["igShutdown"][1]["location"] = "imgui_internal:2678" defs["igShutdown"][1]["namespace"] = "ImGui" defs["igShutdown"][1]["ov_cimguiname"] = "igShutdown" defs["igShutdown"][1]["ret"] = "void" @@ -25551,7 +25885,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:2972" +defs["igSliderBehavior"][1]["location"] = "imgui_internal:3021" defs["igSliderBehavior"][1]["namespace"] = "ImGui" defs["igSliderBehavior"][1]["ov_cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["ret"] = "bool" @@ -25964,7 +26298,7 @@ defs["igSpacing"][1]["stname"] = "" defs["igSpacing"]["()"] = defs["igSpacing"][1] defs["igSplitterBehavior"] = {} defs["igSplitterBehavior"][1] = {} -defs["igSplitterBehavior"][1]["args"] = "(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend,float hover_visibility_delay)" +defs["igSplitterBehavior"][1]["args"] = "(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend,float hover_visibility_delay,ImU32 bg_col)" defs["igSplitterBehavior"][1]["argsT"] = {} defs["igSplitterBehavior"][1]["argsT"][1] = {} defs["igSplitterBehavior"][1]["argsT"][1]["name"] = "bb" @@ -25993,20 +26327,24 @@ defs["igSplitterBehavior"][1]["argsT"][8]["type"] = "float" defs["igSplitterBehavior"][1]["argsT"][9] = {} defs["igSplitterBehavior"][1]["argsT"][9]["name"] = "hover_visibility_delay" defs["igSplitterBehavior"][1]["argsT"][9]["type"] = "float" -defs["igSplitterBehavior"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend=0.0f,float hover_visibility_delay=0.0f)" -defs["igSplitterBehavior"][1]["call_args"] = "(bb,id,axis,size1,size2,min_size1,min_size2,hover_extend,hover_visibility_delay)" +defs["igSplitterBehavior"][1]["argsT"][10] = {} +defs["igSplitterBehavior"][1]["argsT"][10]["name"] = "bg_col" +defs["igSplitterBehavior"][1]["argsT"][10]["type"] = "ImU32" +defs["igSplitterBehavior"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend=0.0f,float hover_visibility_delay=0.0f,ImU32 bg_col=0)" +defs["igSplitterBehavior"][1]["call_args"] = "(bb,id,axis,size1,size2,min_size1,min_size2,hover_extend,hover_visibility_delay,bg_col)" defs["igSplitterBehavior"][1]["cimguiname"] = "igSplitterBehavior" defs["igSplitterBehavior"][1]["defaults"] = {} +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:2973" +defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3022" defs["igSplitterBehavior"][1]["namespace"] = "ImGui" defs["igSplitterBehavior"][1]["ov_cimguiname"] = "igSplitterBehavior" defs["igSplitterBehavior"][1]["ret"] = "bool" -defs["igSplitterBehavior"][1]["signature"] = "(const ImRect,ImGuiID,ImGuiAxis,float*,float*,float,float,float,float)" +defs["igSplitterBehavior"][1]["signature"] = "(const ImRect,ImGuiID,ImGuiAxis,float*,float*,float,float,float,float,ImU32)" defs["igSplitterBehavior"][1]["stname"] = "" -defs["igSplitterBehavior"]["(const ImRect,ImGuiID,ImGuiAxis,float*,float*,float,float,float,float)"] = defs["igSplitterBehavior"][1] +defs["igSplitterBehavior"]["(const ImRect,ImGuiID,ImGuiAxis,float*,float*,float,float,float,float,ImU32)"] = defs["igSplitterBehavior"][1] defs["igStartMouseMovingWindow"] = {} defs["igStartMouseMovingWindow"][1] = {} defs["igStartMouseMovingWindow"][1]["args"] = "(ImGuiWindow* window)" @@ -26019,7 +26357,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:2636" +defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:2682" defs["igStartMouseMovingWindow"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindow"][1]["ov_cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["ret"] = "void" @@ -26044,7 +26382,7 @@ defs["igStartMouseMovingWindowOrNode"][1]["call_args"] = "(window,node,undock_fl defs["igStartMouseMovingWindowOrNode"][1]["cimguiname"] = "igStartMouseMovingWindowOrNode" defs["igStartMouseMovingWindowOrNode"][1]["defaults"] = {} defs["igStartMouseMovingWindowOrNode"][1]["funcname"] = "StartMouseMovingWindowOrNode" -defs["igStartMouseMovingWindowOrNode"][1]["location"] = "imgui_internal:2637" +defs["igStartMouseMovingWindowOrNode"][1]["location"] = "imgui_internal:2683" defs["igStartMouseMovingWindowOrNode"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindowOrNode"][1]["ov_cimguiname"] = "igStartMouseMovingWindowOrNode" defs["igStartMouseMovingWindowOrNode"][1]["ret"] = "void" @@ -26129,7 +26467,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:2911" +defs["igTabBarAddTab"][1]["location"] = "imgui_internal:2959" defs["igTabBarAddTab"][1]["namespace"] = "ImGui" defs["igTabBarAddTab"][1]["ov_cimguiname"] = "igTabBarAddTab" defs["igTabBarAddTab"][1]["ret"] = "void" @@ -26151,7 +26489,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:2913" +defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:2961" defs["igTabBarCloseTab"][1]["namespace"] = "ImGui" defs["igTabBarCloseTab"][1]["ov_cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["ret"] = "void" @@ -26170,7 +26508,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:2910" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["location"] = "imgui_internal:2958" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["namespace"] = "ImGui" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ov_cimguiname"] = "igTabBarFindMostRecentlySelectedTabForActiveWindow" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ret"] = "ImGuiTabItem*" @@ -26192,7 +26530,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:2909" +defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:2957" defs["igTabBarFindTabByID"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByID"][1]["ov_cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["ret"] = "ImGuiTabItem*" @@ -26211,7 +26549,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:2916" +defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:2964" defs["igTabBarProcessReorder"][1]["namespace"] = "ImGui" defs["igTabBarProcessReorder"][1]["ov_cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["ret"] = "bool" @@ -26236,7 +26574,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:2914" +defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:2962" defs["igTabBarQueueReorder"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorder"][1]["ov_cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["ret"] = "void" @@ -26261,7 +26599,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:2915" +defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:2963" defs["igTabBarQueueReorderFromMousePos"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorderFromMousePos"][1]["ov_cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["ret"] = "void" @@ -26283,7 +26621,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:2912" +defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:2960" defs["igTabBarRemoveTab"][1]["namespace"] = "ImGui" defs["igTabBarRemoveTab"][1]["ov_cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["ret"] = "void" @@ -26311,7 +26649,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:2919" +defs["igTabItemBackground"][1]["location"] = "imgui_internal:2967" defs["igTabItemBackground"][1]["namespace"] = "ImGui" defs["igTabItemBackground"][1]["ov_cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["ret"] = "void" @@ -26359,7 +26697,7 @@ defs["igTabItemCalcSize"][1]["call_args"] = "(label,has_close_button)" defs["igTabItemCalcSize"][1]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][1]["defaults"] = {} defs["igTabItemCalcSize"][1]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:2918" +defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:2966" defs["igTabItemCalcSize"][1]["namespace"] = "ImGui" defs["igTabItemCalcSize"][1]["nonUDT"] = 1 defs["igTabItemCalcSize"][1]["ov_cimguiname"] = "igTabItemCalcSize" @@ -26391,7 +26729,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:2917" +defs["igTabItemEx"][1]["location"] = "imgui_internal:2965" defs["igTabItemEx"][1]["namespace"] = "ImGui" defs["igTabItemEx"][1]["ov_cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["ret"] = "bool" @@ -26437,7 +26775,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:2920" +defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:2968" defs["igTabItemLabelAndCloseButton"][1]["namespace"] = "ImGui" defs["igTabItemLabelAndCloseButton"][1]["ov_cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["ret"] = "void" @@ -26456,7 +26794,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:2870" +defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:2918" defs["igTableBeginApplyRequests"][1]["namespace"] = "ImGui" defs["igTableBeginApplyRequests"][1]["ov_cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["ret"] = "void" @@ -26478,7 +26816,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:2885" +defs["igTableBeginCell"][1]["location"] = "imgui_internal:2933" defs["igTableBeginCell"][1]["namespace"] = "ImGui" defs["igTableBeginCell"][1]["ov_cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["ret"] = "void" @@ -26500,7 +26838,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:2869" +defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:2917" defs["igTableBeginInitMemory"][1]["namespace"] = "ImGui" defs["igTableBeginInitMemory"][1]["ov_cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["ret"] = "void" @@ -26519,7 +26857,7 @@ 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:2883" +defs["igTableBeginRow"][1]["location"] = "imgui_internal:2931" defs["igTableBeginRow"][1]["namespace"] = "ImGui" defs["igTableBeginRow"][1]["ov_cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["ret"] = "void" @@ -26538,7 +26876,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:2875" +defs["igTableDrawBorders"][1]["location"] = "imgui_internal:2923" defs["igTableDrawBorders"][1]["namespace"] = "ImGui" defs["igTableDrawBorders"][1]["ov_cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["ret"] = "void" @@ -26557,7 +26895,7 @@ defs["igTableDrawContextMenu"][1]["call_args"] = "(table)" defs["igTableDrawContextMenu"][1]["cimguiname"] = "igTableDrawContextMenu" defs["igTableDrawContextMenu"][1]["defaults"] = {} defs["igTableDrawContextMenu"][1]["funcname"] = "TableDrawContextMenu" -defs["igTableDrawContextMenu"][1]["location"] = "imgui_internal:2876" +defs["igTableDrawContextMenu"][1]["location"] = "imgui_internal:2924" defs["igTableDrawContextMenu"][1]["namespace"] = "ImGui" defs["igTableDrawContextMenu"][1]["ov_cimguiname"] = "igTableDrawContextMenu" defs["igTableDrawContextMenu"][1]["ret"] = "void" @@ -26576,7 +26914,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:2886" +defs["igTableEndCell"][1]["location"] = "imgui_internal:2934" defs["igTableEndCell"][1]["namespace"] = "ImGui" defs["igTableEndCell"][1]["ov_cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["ret"] = "void" @@ -26595,7 +26933,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:2884" +defs["igTableEndRow"][1]["location"] = "imgui_internal:2932" defs["igTableEndRow"][1]["namespace"] = "ImGui" defs["igTableEndRow"][1]["ov_cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["ret"] = "void" @@ -26614,7 +26952,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:2867" +defs["igTableFindByID"][1]["location"] = "imgui_internal:2915" defs["igTableFindByID"][1]["namespace"] = "ImGui" defs["igTableFindByID"][1]["ov_cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["ret"] = "ImGuiTable*" @@ -26636,7 +26974,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:2881" +defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:2929" defs["igTableFixColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableFixColumnSortDirection"][1]["ov_cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["ret"] = "void" @@ -26652,7 +26990,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:2896" +defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:2944" defs["igTableGcCompactSettings"][1]["namespace"] = "ImGui" defs["igTableGcCompactSettings"][1]["ov_cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["ret"] = "void" @@ -26671,7 +27009,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:2894" +defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:2942" defs["igTableGcCompactTransientBuffers"][1]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][1]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TablePtr" defs["igTableGcCompactTransientBuffers"][1]["ret"] = "void" @@ -26688,7 +27026,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:2895" +defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:2943" defs["igTableGcCompactTransientBuffers"][2]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][2]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TableTempDataPtr" defs["igTableGcCompactTransientBuffers"][2]["ret"] = "void" @@ -26708,7 +27046,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:2902" +defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:2950" defs["igTableGetBoundSettings"][1]["namespace"] = "ImGui" defs["igTableGetBoundSettings"][1]["ov_cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["ret"] = "ImGuiTableSettings*" @@ -26733,7 +27071,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:2887" +defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:2935" defs["igTableGetCellBgRect"][1]["namespace"] = "ImGui" defs["igTableGetCellBgRect"][1]["nonUDT"] = 1 defs["igTableGetCellBgRect"][1]["ov_cimguiname"] = "igTableGetCellBgRect" @@ -26826,7 +27164,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:2888" +defs["igTableGetColumnName"][2]["location"] = "imgui_internal:2936" defs["igTableGetColumnName"][2]["namespace"] = "ImGui" defs["igTableGetColumnName"][2]["ov_cimguiname"] = "igTableGetColumnName_TablePtr" defs["igTableGetColumnName"][2]["ret"] = "const char*" @@ -26846,7 +27184,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:2880" +defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:2928" defs["igTableGetColumnNextSortDirection"][1]["namespace"] = "ImGui" defs["igTableGetColumnNextSortDirection"][1]["ov_cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["ret"] = "ImGuiSortDirection" @@ -26872,7 +27210,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:2889" +defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:2937" defs["igTableGetColumnResizeID"][1]["namespace"] = "ImGui" defs["igTableGetColumnResizeID"][1]["ov_cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["ret"] = "ImGuiID" @@ -26894,7 +27232,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:2882" +defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:2930" defs["igTableGetColumnWidthAuto"][1]["namespace"] = "ImGui" defs["igTableGetColumnWidthAuto"][1]["ov_cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["ret"] = "float" @@ -26910,7 +27248,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:2861" +defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:2909" defs["igTableGetHeaderRowHeight"][1]["namespace"] = "ImGui" defs["igTableGetHeaderRowHeight"][1]["ov_cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["ret"] = "float" @@ -26926,7 +27264,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_internal:2860" +defs["igTableGetHoveredColumn"][1]["location"] = "imgui_internal:2908" defs["igTableGetHoveredColumn"][1]["namespace"] = "ImGui" defs["igTableGetHoveredColumn"][1]["ov_cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["ret"] = "int" @@ -26948,7 +27286,7 @@ 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:2890" +defs["igTableGetMaxColumnWidth"][1]["location"] = "imgui_internal:2938" defs["igTableGetMaxColumnWidth"][1]["namespace"] = "ImGui" defs["igTableGetMaxColumnWidth"][1]["ov_cimguiname"] = "igTableGetMaxColumnWidth" defs["igTableGetMaxColumnWidth"][1]["ret"] = "float" @@ -27034,7 +27372,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:2899" +defs["igTableLoadSettings"][1]["location"] = "imgui_internal:2947" defs["igTableLoadSettings"][1]["namespace"] = "ImGui" defs["igTableLoadSettings"][1]["ov_cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["ret"] = "void" @@ -27053,7 +27391,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:2877" +defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:2925" defs["igTableMergeDrawChannels"][1]["namespace"] = "ImGui" defs["igTableMergeDrawChannels"][1]["ov_cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["ret"] = "void" @@ -27113,7 +27451,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:2857" +defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:2905" defs["igTableOpenContextMenu"][1]["namespace"] = "ImGui" defs["igTableOpenContextMenu"][1]["ov_cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["ret"] = "void" @@ -27129,7 +27467,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:2863" +defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:2911" defs["igTablePopBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePopBackgroundChannel"][1]["ov_cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["ret"] = "void" @@ -27145,7 +27483,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:2862" +defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:2910" defs["igTablePushBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePushBackgroundChannel"][1]["ov_cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["ret"] = "void" @@ -27164,7 +27502,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:2893" +defs["igTableRemove"][1]["location"] = "imgui_internal:2941" defs["igTableRemove"][1]["namespace"] = "ImGui" defs["igTableRemove"][1]["ov_cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["ret"] = "void" @@ -27183,7 +27521,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:2901" +defs["igTableResetSettings"][1]["location"] = "imgui_internal:2949" defs["igTableResetSettings"][1]["namespace"] = "ImGui" defs["igTableResetSettings"][1]["ov_cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["ret"] = "void" @@ -27202,7 +27540,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:2900" +defs["igTableSaveSettings"][1]["location"] = "imgui_internal:2948" defs["igTableSaveSettings"][1]["namespace"] = "ImGui" defs["igTableSaveSettings"][1]["ov_cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["ret"] = "void" @@ -27294,7 +27632,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:2859" +defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:2907" defs["igTableSetColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableSetColumnSortDirection"][1]["ov_cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["ret"] = "void" @@ -27316,7 +27654,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:2858" +defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:2906" defs["igTableSetColumnWidth"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidth"][1]["ov_cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["ret"] = "void" @@ -27335,7 +27673,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:2892" +defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:2940" defs["igTableSetColumnWidthAutoAll"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoAll"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["ret"] = "void" @@ -27357,7 +27695,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:2891" +defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:2939" defs["igTableSetColumnWidthAutoSingle"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoSingle"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["ret"] = "void" @@ -27379,7 +27717,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:2904" +defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:2952" defs["igTableSettingsCreate"][1]["namespace"] = "ImGui" defs["igTableSettingsCreate"][1]["ov_cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["ret"] = "ImGuiTableSettings*" @@ -27398,7 +27736,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:2905" +defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:2953" defs["igTableSettingsFindByID"][1]["namespace"] = "ImGui" defs["igTableSettingsFindByID"][1]["ov_cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["ret"] = "ImGuiTableSettings*" @@ -27417,7 +27755,7 @@ defs["igTableSettingsInstallHandler"][1]["call_args"] = "(context)" defs["igTableSettingsInstallHandler"][1]["cimguiname"] = "igTableSettingsInstallHandler" defs["igTableSettingsInstallHandler"][1]["defaults"] = {} defs["igTableSettingsInstallHandler"][1]["funcname"] = "TableSettingsInstallHandler" -defs["igTableSettingsInstallHandler"][1]["location"] = "imgui_internal:2903" +defs["igTableSettingsInstallHandler"][1]["location"] = "imgui_internal:2951" defs["igTableSettingsInstallHandler"][1]["namespace"] = "ImGui" defs["igTableSettingsInstallHandler"][1]["ov_cimguiname"] = "igTableSettingsInstallHandler" defs["igTableSettingsInstallHandler"][1]["ret"] = "void" @@ -27467,7 +27805,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:2871" +defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:2919" defs["igTableSetupDrawChannels"][1]["namespace"] = "ImGui" defs["igTableSetupDrawChannels"][1]["ov_cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["ret"] = "void" @@ -27508,7 +27846,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:2879" +defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:2927" defs["igTableSortSpecsBuild"][1]["namespace"] = "ImGui" defs["igTableSortSpecsBuild"][1]["ov_cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["ret"] = "void" @@ -27527,7 +27865,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:2878" +defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:2926" defs["igTableSortSpecsSanitize"][1]["namespace"] = "ImGui" defs["igTableSortSpecsSanitize"][1]["ov_cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["ret"] = "void" @@ -27546,7 +27884,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:2873" +defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:2921" defs["igTableUpdateBorders"][1]["namespace"] = "ImGui" defs["igTableUpdateBorders"][1]["ov_cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["ret"] = "void" @@ -27565,7 +27903,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:2874" +defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:2922" defs["igTableUpdateColumnsWeightFromWidth"][1]["namespace"] = "ImGui" defs["igTableUpdateColumnsWeightFromWidth"][1]["ov_cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["ret"] = "void" @@ -27584,7 +27922,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:2872" +defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:2920" defs["igTableUpdateLayout"][1]["namespace"] = "ImGui" defs["igTableUpdateLayout"][1]["ov_cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["ret"] = "void" @@ -27603,7 +27941,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:3000" +defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3049" defs["igTempInputIsActive"][1]["namespace"] = "ImGui" defs["igTempInputIsActive"][1]["ov_cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["ret"] = "bool" @@ -27645,7 +27983,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:2999" +defs["igTempInputScalar"][1]["location"] = "imgui_internal:3048" defs["igTempInputScalar"][1]["namespace"] = "ImGui" defs["igTempInputScalar"][1]["ov_cimguiname"] = "igTempInputScalar" defs["igTempInputScalar"][1]["ret"] = "bool" @@ -27679,7 +28017,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:2998" +defs["igTempInputText"][1]["location"] = "imgui_internal:3047" defs["igTempInputText"][1]["namespace"] = "ImGui" defs["igTempInputText"][1]["ov_cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["ret"] = "bool" @@ -27825,7 +28163,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:2953" +defs["igTextEx"][1]["location"] = "imgui_internal:3002" defs["igTextEx"][1]["namespace"] = "ImGui" defs["igTextEx"][1]["ov_cimguiname"] = "igTextEx" defs["igTextEx"][1]["ret"] = "void" @@ -27940,7 +28278,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:2647" +defs["igTranslateWindowsInViewport"][1]["location"] = "imgui_internal:2693" defs["igTranslateWindowsInViewport"][1]["namespace"] = "ImGui" defs["igTranslateWindowsInViewport"][1]["ov_cimguiname"] = "igTranslateWindowsInViewport" defs["igTranslateWindowsInViewport"][1]["ret"] = "void" @@ -28038,7 +28376,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:2974" +defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3023" defs["igTreeNodeBehavior"][1]["namespace"] = "ImGui" defs["igTreeNodeBehavior"][1]["ov_cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["ret"] = "bool" @@ -28061,7 +28399,7 @@ defs["igTreeNodeBehaviorIsOpen"][1]["cimguiname"] = "igTreeNodeBehaviorIsOpen" defs["igTreeNodeBehaviorIsOpen"][1]["defaults"] = {} defs["igTreeNodeBehaviorIsOpen"][1]["defaults"]["flags"] = "0" defs["igTreeNodeBehaviorIsOpen"][1]["funcname"] = "TreeNodeBehaviorIsOpen" -defs["igTreeNodeBehaviorIsOpen"][1]["location"] = "imgui_internal:2975" +defs["igTreeNodeBehaviorIsOpen"][1]["location"] = "imgui_internal:3024" defs["igTreeNodeBehaviorIsOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeBehaviorIsOpen"][1]["ov_cimguiname"] = "igTreeNodeBehaviorIsOpen" defs["igTreeNodeBehaviorIsOpen"][1]["ret"] = "bool" @@ -28317,7 +28655,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:2976" +defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3025" defs["igTreePushOverrideID"][1]["namespace"] = "ImGui" defs["igTreePushOverrideID"][1]["ov_cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["ret"] = "void" @@ -28353,7 +28691,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:2635" +defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:2681" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["namespace"] = "ImGui" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ov_cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ret"] = "void" @@ -28369,7 +28707,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:2639" +defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:2685" defs["igUpdateMouseMovingWindowEndFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowEndFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["ret"] = "void" @@ -28385,7 +28723,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:2638" +defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:2684" defs["igUpdateMouseMovingWindowNewFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowNewFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["ret"] = "void" @@ -28426,7 +28764,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:2608" +defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:2648" defs["igUpdateWindowParentAndRootLinks"][1]["namespace"] = "ImGui" defs["igUpdateWindowParentAndRootLinks"][1]["ov_cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["ret"] = "void" @@ -28642,5 +28980,57 @@ defs["igValue"]["(const char*,bool)"] = defs["igValue"][1] defs["igValue"]["(const char*,float,const char*)"] = defs["igValue"][4] defs["igValue"]["(const char*,int)"] = defs["igValue"][2] defs["igValue"]["(const char*,unsigned int)"] = defs["igValue"][3] +defs["igWindowRectAbsToRel"] = {} +defs["igWindowRectAbsToRel"][1] = {} +defs["igWindowRectAbsToRel"][1]["args"] = "(ImRect *pOut,ImGuiWindow* window,const ImRect r)" +defs["igWindowRectAbsToRel"][1]["argsT"] = {} +defs["igWindowRectAbsToRel"][1]["argsT"][1] = {} +defs["igWindowRectAbsToRel"][1]["argsT"][1]["name"] = "pOut" +defs["igWindowRectAbsToRel"][1]["argsT"][1]["type"] = "ImRect*" +defs["igWindowRectAbsToRel"][1]["argsT"][2] = {} +defs["igWindowRectAbsToRel"][1]["argsT"][2]["name"] = "window" +defs["igWindowRectAbsToRel"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igWindowRectAbsToRel"][1]["argsT"][3] = {} +defs["igWindowRectAbsToRel"][1]["argsT"][3]["name"] = "r" +defs["igWindowRectAbsToRel"][1]["argsT"][3]["type"] = "const ImRect" +defs["igWindowRectAbsToRel"][1]["argsoriginal"] = "(ImGuiWindow* window,const ImRect& r)" +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:2658" +defs["igWindowRectAbsToRel"][1]["namespace"] = "ImGui" +defs["igWindowRectAbsToRel"][1]["nonUDT"] = 1 +defs["igWindowRectAbsToRel"][1]["ov_cimguiname"] = "igWindowRectAbsToRel" +defs["igWindowRectAbsToRel"][1]["ret"] = "void" +defs["igWindowRectAbsToRel"][1]["signature"] = "(ImGuiWindow*,const ImRect)" +defs["igWindowRectAbsToRel"][1]["stname"] = "" +defs["igWindowRectAbsToRel"]["(ImGuiWindow*,const ImRect)"] = defs["igWindowRectAbsToRel"][1] +defs["igWindowRectRelToAbs"] = {} +defs["igWindowRectRelToAbs"][1] = {} +defs["igWindowRectRelToAbs"][1]["args"] = "(ImRect *pOut,ImGuiWindow* window,const ImRect r)" +defs["igWindowRectRelToAbs"][1]["argsT"] = {} +defs["igWindowRectRelToAbs"][1]["argsT"][1] = {} +defs["igWindowRectRelToAbs"][1]["argsT"][1]["name"] = "pOut" +defs["igWindowRectRelToAbs"][1]["argsT"][1]["type"] = "ImRect*" +defs["igWindowRectRelToAbs"][1]["argsT"][2] = {} +defs["igWindowRectRelToAbs"][1]["argsT"][2]["name"] = "window" +defs["igWindowRectRelToAbs"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igWindowRectRelToAbs"][1]["argsT"][3] = {} +defs["igWindowRectRelToAbs"][1]["argsT"][3]["name"] = "r" +defs["igWindowRectRelToAbs"][1]["argsT"][3]["type"] = "const ImRect" +defs["igWindowRectRelToAbs"][1]["argsoriginal"] = "(ImGuiWindow* window,const ImRect& r)" +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:2659" +defs["igWindowRectRelToAbs"][1]["namespace"] = "ImGui" +defs["igWindowRectRelToAbs"][1]["nonUDT"] = 1 +defs["igWindowRectRelToAbs"][1]["ov_cimguiname"] = "igWindowRectRelToAbs" +defs["igWindowRectRelToAbs"][1]["ret"] = "void" +defs["igWindowRectRelToAbs"][1]["signature"] = "(ImGuiWindow*,const ImRect)" +defs["igWindowRectRelToAbs"][1]["stname"] = "" +defs["igWindowRectRelToAbs"]["(ImGuiWindow*,const ImRect)"] = defs["igWindowRectRelToAbs"][1] return defs \ No newline at end of file diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index 2a158a4e..eb106207 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -1942,18 +1942,23 @@ }, { "calc_value": 1, - "name": "ImGuiNavDirSourceFlags_Keyboard", + "name": "ImGuiNavDirSourceFlags_RawKeyboard", "value": "1 << 0" }, { "calc_value": 2, - "name": "ImGuiNavDirSourceFlags_PadDPad", + "name": "ImGuiNavDirSourceFlags_Keyboard", "value": "1 << 1" }, { "calc_value": 4, - "name": "ImGuiNavDirSourceFlags_PadLStick", + "name": "ImGuiNavDirSourceFlags_PadDPad", "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiNavDirSourceFlags_PadLStick", + "value": "1 << 3" } ], "ImGuiNavHighlightFlags_": [ @@ -2165,18 +2170,23 @@ }, { "calc_value": 512, - "name": "ImGuiNavMoveFlags_Tabbing", + "name": "ImGuiNavMoveFlags_FocusApi", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiNavMoveFlags_Activate", + "name": "ImGuiNavMoveFlags_Tabbing", "value": "1 << 10" }, { "calc_value": 2048, - "name": "ImGuiNavMoveFlags_DontSetNavHighlight", + "name": "ImGuiNavMoveFlags_Activate", "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiNavMoveFlags_DontSetNavHighlight", + "value": "1 << 12" } ], "ImGuiNextItemDataFlags_": [ @@ -3605,157 +3615,159 @@ }, "enumtypes": [], "locations": { - "ImBitVector": "imgui_internal:559", - "ImColor": "imgui:2344", - "ImDrawChannel": "imgui:2434", - "ImDrawCmd": "imgui:2393", - "ImDrawCmdHeader": "imgui:2426", - "ImDrawData": "imgui:2624", - "ImDrawDataBuilder": "imgui_internal:732", - "ImDrawFlags_": "imgui:2460", - "ImDrawList": "imgui:2498", - "ImDrawListFlags_": "imgui:2480", - "ImDrawListSharedData": "imgui_internal:712", - "ImDrawListSplitter": "imgui:2443", - "ImDrawVert": "imgui:2411", - "ImFont": "imgui:2843", - "ImFontAtlas": "imgui:2741", - "ImFontAtlasCustomRect": "imgui:2703", - "ImFontAtlasFlags_": "imgui:2716", - "ImFontBuilderIO": "imgui_internal:3051", - "ImFontConfig": "imgui:2647", - "ImFontGlyph": "imgui:2676", - "ImFontGlyphRangesBuilder": "imgui:2688", - "ImGuiActivateFlags_": "imgui_internal:1189", - "ImGuiAxis": "imgui_internal:888", + "ImBitVector": "imgui_internal:570", + "ImColor": "imgui:2347", + "ImDrawChannel": "imgui:2437", + "ImDrawCmd": "imgui:2396", + "ImDrawCmdHeader": "imgui:2429", + "ImDrawData": "imgui:2627", + "ImDrawDataBuilder": "imgui_internal:743", + "ImDrawFlags_": "imgui:2463", + "ImDrawList": "imgui:2501", + "ImDrawListFlags_": "imgui:2483", + "ImDrawListSharedData": "imgui_internal:723", + "ImDrawListSplitter": "imgui:2446", + "ImDrawVert": "imgui:2414", + "ImFont": "imgui:2846", + "ImFontAtlas": "imgui:2744", + "ImFontAtlasCustomRect": "imgui:2706", + "ImFontAtlasFlags_": "imgui:2719", + "ImFontBuilderIO": "imgui_internal:3101", + "ImFontConfig": "imgui:2650", + "ImFontGlyph": "imgui:2679", + "ImFontGlyphRangesBuilder": "imgui:2691", + "ImGuiActivateFlags_": "imgui_internal:1227", + "ImGuiAxis": "imgui_internal:899", "ImGuiBackendFlags_": "imgui:1512", - "ImGuiButtonFlagsPrivate_": "imgui_internal:795", + "ImGuiButtonFlagsPrivate_": "imgui_internal:806", "ImGuiButtonFlags_": "imgui:1626", "ImGuiCol_": "imgui:1527", "ImGuiColorEditFlags_": "imgui:1639", - "ImGuiColorMod": "imgui_internal:953", - "ImGuiComboFlagsPrivate_": "imgui_internal:818", + "ImGuiColorMod": "imgui_internal:964", + "ImGuiComboFlagsPrivate_": "imgui_internal:829", "ImGuiComboFlags_": "imgui:1122", - "ImGuiComboPreviewData": "imgui_internal:970", + "ImGuiComboPreviewData": "imgui_internal:981", "ImGuiCond_": "imgui:1731", "ImGuiConfigFlags_": "imgui:1487", - "ImGuiContext": "imgui_internal:1629", - "ImGuiContextHook": "imgui_internal:1614", - "ImGuiContextHookType": "imgui_internal:1612", - "ImGuiDataAuthority_": "imgui_internal:1364", - "ImGuiDataTypeInfo": "imgui_internal:936", - "ImGuiDataTypePrivate_": "imgui_internal:945", - "ImGuiDataTypeTempStorage": "imgui_internal:930", + "ImGuiContext": "imgui_internal:1670", + "ImGuiContextHook": "imgui_internal:1655", + "ImGuiContextHookType": "imgui_internal:1653", + "ImGuiDataAuthority_": "imgui_internal:1404", + "ImGuiDataTypeInfo": "imgui_internal:947", + "ImGuiDataTypePrivate_": "imgui_internal:956", + "ImGuiDataTypeTempStorage": "imgui_internal:941", "ImGuiDataType_": "imgui:1380", "ImGuiDir_": "imgui:1396", - "ImGuiDockContext": "imgui_internal:1461", - "ImGuiDockNode": "imgui_internal:1380", - "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1339", + "ImGuiDockContext": "imgui_internal:1502", + "ImGuiDockNode": "imgui_internal:1420", + "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1379", "ImGuiDockNodeFlags_": "imgui:1345", - "ImGuiDockNodeState": "imgui_internal:1371", + "ImGuiDockNodeState": "imgui_internal:1411", "ImGuiDragDropFlags_": "imgui:1358", "ImGuiFocusedFlags_": "imgui:1311", - "ImGuiGroupData": "imgui_internal:983", + "ImGuiGroupData": "imgui_internal:994", "ImGuiHoveredFlags_": "imgui:1325", "ImGuiIO": "imgui:1897", - "ImGuiInputReadMode": "imgui_internal:913", - "ImGuiInputSource": "imgui_internal:901", - "ImGuiInputTextCallbackData": "imgui:2053", - "ImGuiInputTextFlagsPrivate_": "imgui_internal:786", + "ImGuiInputReadMode": "imgui_internal:924", + "ImGuiInputSource": "imgui_internal:912", + "ImGuiInputTextCallbackData": "imgui:2054", + "ImGuiInputTextFlagsPrivate_": "imgui_internal:797", "ImGuiInputTextFlags_": "imgui:1035", - "ImGuiInputTextState": "imgui_internal:1018", - "ImGuiItemFlags_": "imgui_internal:748", - "ImGuiItemStatusFlags_": "imgui_internal:763", + "ImGuiInputTextState": "imgui_internal:1029", + "ImGuiItemFlags_": "imgui_internal:759", + "ImGuiItemStatusFlags_": "imgui_internal:774", "ImGuiKeyModFlags_": "imgui:1443", "ImGuiKey_": "imgui:1415", - "ImGuiLastItemData": "imgui_internal:1133", - "ImGuiLayoutType_": "imgui_internal:872", - "ImGuiListClipper": "imgui:2295", - "ImGuiLogType": "imgui_internal:878", - "ImGuiMenuColumns": "imgui_internal:999", - "ImGuiMetricsConfig": "imgui_internal:1560", + "ImGuiLastItemData": "imgui_internal:1142", + "ImGuiLayoutType_": "imgui_internal:883", + "ImGuiListClipper": "imgui:2299", + "ImGuiListClipperData": "imgui_internal:1211", + "ImGuiListClipperRange": "imgui_internal:1198", + "ImGuiLogType": "imgui_internal:889", + "ImGuiMenuColumns": "imgui_internal:1010", + "ImGuiMetricsConfig": "imgui_internal:1601", "ImGuiMouseButton_": "imgui:1703", "ImGuiMouseCursor_": "imgui:1713", - "ImGuiNavDirSourceFlags_": "imgui_internal:1221", - "ImGuiNavHighlightFlags_": "imgui_internal:1212", + "ImGuiNavDirSourceFlags_": "imgui_internal:1259", + "ImGuiNavHighlightFlags_": "imgui_internal:1250", "ImGuiNavInput_": "imgui:1456", - "ImGuiNavItemData": "imgui_internal:1253", - "ImGuiNavLayer": "imgui_internal:1246", - "ImGuiNavMoveFlags_": "imgui_internal:1229", - "ImGuiNextItemData": "imgui_internal:1120", - "ImGuiNextItemDataFlags_": "imgui_internal:1113", - "ImGuiNextWindowData": "imgui_internal:1086", - "ImGuiNextWindowDataFlags_": "imgui_internal:1069", - "ImGuiOldColumnData": "imgui_internal:1293", - "ImGuiOldColumnFlags_": "imgui_internal:1273", - "ImGuiOldColumns": "imgui_internal:1303", - "ImGuiOnceUponAFrame": "imgui:2173", - "ImGuiPayload": "imgui:2114", - "ImGuiPlatformIO": "imgui:3006", - "ImGuiPlatformMonitor": "imgui:3070", - "ImGuiPlotType": "imgui_internal:895", - "ImGuiPopupData": "imgui_internal:1056", + "ImGuiNavItemData": "imgui_internal:1293", + "ImGuiNavLayer": "imgui_internal:1286", + "ImGuiNavMoveFlags_": "imgui_internal:1268", + "ImGuiNextItemData": "imgui_internal:1129", + "ImGuiNextItemDataFlags_": "imgui_internal:1122", + "ImGuiNextWindowData": "imgui_internal:1095", + "ImGuiNextWindowDataFlags_": "imgui_internal:1078", + "ImGuiOldColumnData": "imgui_internal:1333", + "ImGuiOldColumnFlags_": "imgui_internal:1313", + "ImGuiOldColumns": "imgui_internal:1343", + "ImGuiOnceUponAFrame": "imgui:2174", + "ImGuiPayload": "imgui:2115", + "ImGuiPlatformIO": "imgui:3009", + "ImGuiPlatformMonitor": "imgui:3073", + "ImGuiPlotType": "imgui_internal:906", + "ImGuiPopupData": "imgui_internal:1065", "ImGuiPopupFlags_": "imgui:1095", - "ImGuiPopupPositionPolicy": "imgui_internal:923", - "ImGuiPtrOrIndex": "imgui_internal:1176", - "ImGuiScrollFlags_": "imgui_internal:1198", - "ImGuiSelectableFlagsPrivate_": "imgui_internal:831", + "ImGuiPopupPositionPolicy": "imgui_internal:934", + "ImGuiPtrOrIndex": "imgui_internal:1185", + "ImGuiScrollFlags_": "imgui_internal:1236", + "ImGuiSelectableFlagsPrivate_": "imgui_internal:842", "ImGuiSelectableFlags_": "imgui:1111", - "ImGuiSeparatorFlags_": "imgui_internal:850", - "ImGuiSettingsHandler": "imgui_internal:1541", - "ImGuiShrinkWidthItem": "imgui_internal:1170", - "ImGuiSizeCallbackData": "imgui:2084", - "ImGuiSliderFlagsPrivate_": "imgui_internal:824", + "ImGuiSeparatorFlags_": "imgui_internal:861", + "ImGuiSettingsHandler": "imgui_internal:1582", + "ImGuiShrinkWidthItem": "imgui_internal:1179", + "ImGuiSizeCallbackData": "imgui:2085", + "ImGuiSliderFlagsPrivate_": "imgui_internal:835", "ImGuiSliderFlags_": "imgui:1686", "ImGuiSortDirection_": "imgui:1407", - "ImGuiStackLevelInfo": "imgui_internal:1586", - "ImGuiStackSizes": "imgui_internal:1145", - "ImGuiStackTool": "imgui_internal:1597", - "ImGuiStorage": "imgui:2235", - "ImGuiStoragePair": "imgui:2238", + "ImGuiStackLevelInfo": "imgui_internal:1627", + "ImGuiStackSizes": "imgui_internal:1154", + "ImGuiStackTool": "imgui_internal:1638", + "ImGuiStorage": "imgui:2236", + "ImGuiStoragePair": "imgui:2239", "ImGuiStyle": "imgui:1842", - "ImGuiStyleMod": "imgui_internal:960", + "ImGuiStyleMod": "imgui_internal:971", "ImGuiStyleVar_": "imgui:1594", - "ImGuiTabBar": "imgui_internal:2294", - "ImGuiTabBarFlagsPrivate_": "imgui_internal:2257", + "ImGuiTabBar": "imgui_internal:2334", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:2297", "ImGuiTabBarFlags_": "imgui:1136", - "ImGuiTabItem": "imgui_internal:2275", - "ImGuiTabItemFlagsPrivate_": "imgui_internal:2265", + "ImGuiTabItem": "imgui_internal:2315", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:2305", "ImGuiTabItemFlags_": "imgui:1152", - "ImGuiTable": "imgui_internal:2421", + "ImGuiTable": "imgui_internal:2461", "ImGuiTableBgTarget_": "imgui:1302", - "ImGuiTableCellData": "imgui_internal:2414", - "ImGuiTableColumn": "imgui_internal:2355", + "ImGuiTableCellData": "imgui_internal:2454", + "ImGuiTableColumn": "imgui_internal:2395", "ImGuiTableColumnFlags_": "imgui:1245", - "ImGuiTableColumnSettings": "imgui_internal:2555", - "ImGuiTableColumnSortSpecs": "imgui:2136", + "ImGuiTableColumnSettings": "imgui_internal:2595", + "ImGuiTableColumnSortSpecs": "imgui:2137", "ImGuiTableFlags_": "imgui:1188", "ImGuiTableRowFlags_": "imgui:1287", - "ImGuiTableSettings": "imgui_internal:2579", - "ImGuiTableSortSpecs": "imgui:2150", - "ImGuiTableTempData": "imgui_internal:2534", - "ImGuiTextBuffer": "imgui:2208", - "ImGuiTextFilter": "imgui:2181", - "ImGuiTextFlags_": "imgui_internal:858", - "ImGuiTextRange": "imgui:2191", - "ImGuiTooltipFlags_": "imgui_internal:864", - "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:845", + "ImGuiTableSettings": "imgui_internal:2619", + "ImGuiTableSortSpecs": "imgui:2151", + "ImGuiTableTempData": "imgui_internal:2574", + "ImGuiTextBuffer": "imgui:2209", + "ImGuiTextFilter": "imgui:2182", + "ImGuiTextFlags_": "imgui_internal:869", + "ImGuiTextRange": "imgui:2192", + "ImGuiTooltipFlags_": "imgui_internal:875", + "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:856", "ImGuiTreeNodeFlags_": "imgui:1066", - "ImGuiViewport": "imgui:2924", - "ImGuiViewportFlags_": "imgui:2899", - "ImGuiViewportP": "imgui_internal:1478", - "ImGuiWindow": "imgui_internal:2115", - "ImGuiWindowClass": "imgui:2099", - "ImGuiWindowDockStyle": "imgui_internal:1456", - "ImGuiWindowDockStyleCol": "imgui_internal:1445", + "ImGuiViewport": "imgui:2927", + "ImGuiViewportFlags_": "imgui:2902", + "ImGuiViewportP": "imgui_internal:1519", + "ImGuiWindow": "imgui_internal:2153", + "ImGuiWindowClass": "imgui:2100", + "ImGuiWindowDockStyle": "imgui_internal:1497", + "ImGuiWindowDockStyleCol": "imgui_internal:1486", "ImGuiWindowFlags_": "imgui:992", - "ImGuiWindowSettings": "imgui_internal:1524", - "ImGuiWindowStackData": "imgui_internal:1163", - "ImGuiWindowTempData": "imgui_internal:2068", - "ImRect": "imgui_internal:488", - "ImVec1": "imgui_internal:470", + "ImGuiWindowSettings": "imgui_internal:1565", + "ImGuiWindowStackData": "imgui_internal:1172", + "ImGuiWindowTempData": "imgui_internal:2106", + "ImRect": "imgui_internal:499", + "ImVec1": "imgui_internal:481", "ImVec2": "imgui:266", - "ImVec2ih": "imgui_internal:478", + "ImVec2ih": "imgui_internal:489", "ImVec4": "imgui:279", "STB_TexteditState": "imstb_textedit:317", "StbTexteditRow": "imstb_textedit:364", @@ -4743,6 +4755,10 @@ "template_type": "ImGuiPopupData", "type": "ImVector_ImGuiPopupData" }, + { + "name": "BeginMenuCount", + "type": "int" + }, { "name": "Viewports", "template_type": "ImGuiViewportP*", @@ -4808,10 +4824,6 @@ "name": "NavActivateFlags", "type": "ImGuiActivateFlags" }, - { - "name": "NavJustTabbedId", - "type": "ImGuiID" - }, { "name": "NavJustMovedToId", "type": "ImGuiID" @@ -4840,10 +4852,6 @@ "name": "NavLayer", "type": "ImGuiNavLayer" }, - { - "name": "NavIdTabCounter", - "type": "int" - }, { "name": "NavIdIsAlive", "type": "bool" @@ -4920,12 +4928,20 @@ "name": "NavScoringRect", "type": "ImRect" }, + { + "name": "NavScoringNoClipRect", + "type": "ImRect" + }, { "name": "NavScoringDebugCount", "type": "int" }, { - "name": "NavTabbingInputableRemaining", + "name": "NavTabbingDir", + "type": "int" + }, + { + "name": "NavTabbingCounter", "type": "int" }, { @@ -4940,6 +4956,10 @@ "name": "NavMoveResultOther", "type": "ImGuiNavItemData" }, + { + "name": "NavTabbingResultFirst", + "type": "ImGuiNavItemData" + }, { "name": "NavWindowingTarget", "type": "ImGuiWindow*" @@ -4964,26 +4984,6 @@ "name": "NavWindowingToggleLayer", "type": "bool" }, - { - "name": "TabFocusRequestCurrWindow", - "type": "ImGuiWindow*" - }, - { - "name": "TabFocusRequestNextWindow", - "type": "ImGuiWindow*" - }, - { - "name": "TabFocusRequestCurrCounterTabStop", - "type": "int" - }, - { - "name": "TabFocusRequestNextCounterTabStop", - "type": "int" - }, - { - "name": "TabFocusPressed", - "type": "bool" - }, { "name": "DimBgRatio", "type": "float" @@ -5062,24 +5062,33 @@ "size": 16, "type": "unsigned char" }, + { + "name": "ClipperTempDataStacked", + "type": "int" + }, + { + "name": "ClipperTempData", + "template_type": "ImGuiListClipperData", + "type": "ImVector_ImGuiListClipperData" + }, { "name": "CurrentTable", "type": "ImGuiTable*" }, { - "name": "CurrentTableStackIdx", + "name": "TablesTempDataStacked", "type": "int" }, + { + "name": "TablesTempData", + "template_type": "ImGuiTableTempData", + "type": "ImVector_ImGuiTableTempData" + }, { "name": "Tables", "template_type": "ImGuiTable", "type": "ImPool_ImGuiTable" }, - { - "name": "TablesTempDataStack", - "template_type": "ImGuiTableTempData", - "type": "ImVector_ImGuiTableTempData" - }, { "name": "TablesLastTimeActive", "template_type": "float", @@ -5480,6 +5489,10 @@ "name": "WindowClass", "type": "ImGuiWindowClass" }, + { + "name": "LastBgColor", + "type": "ImU32" + }, { "name": "HostWindow", "type": "ImGuiWindow*" @@ -5549,6 +5562,11 @@ "name": "IsFocused", "type": "bool" }, + { + "bitfield": "1", + "name": "IsBgDrawnThisFrame", + "type": "bool" + }, { "bitfield": "1", "name": "HasCloseButton", @@ -5588,11 +5606,6 @@ "bitfield": "1", "name": "WantHiddenTabBarToggle", "type": "bool" - }, - { - "bitfield": "1", - "name": "MarkedForPosSizeWrite", - "type": "bool" } ], "ImGuiGroupData": [ @@ -5951,22 +5964,27 @@ "type": "bool" }, { - "name": "MouseReleased[5]", + "name": "MouseClickedCount[5]", "size": 5, - "type": "bool" + "type": "ImU16" }, { - "name": "MouseDownOwned[5]", + "name": "MouseClickedLastCount[5]", + "size": 5, + "type": "ImU16" + }, + { + "name": "MouseReleased[5]", "size": 5, "type": "bool" }, { - "name": "MouseDownOwnedUnlessPopupClose[5]", + "name": "MouseDownOwned[5]", "size": 5, "type": "bool" }, { - "name": "MouseDownWasDoubleClick[5]", + "name": "MouseDownOwnedUnlessPopupClose[5]", "size": 5, "type": "bool" }, @@ -6141,14 +6159,6 @@ { "name": "Flags", "type": "ImGuiInputTextFlags" - }, - { - "name": "UserCallback", - "type": "ImGuiInputTextCallback" - }, - { - "name": "UserCallbackData", - "type": "void*" } ], "ImGuiLastItemData": [ @@ -6190,6 +6200,28 @@ "name": "ItemsCount", "type": "int" }, + { + "name": "ItemsHeight", + "type": "float" + }, + { + "name": "StartPosY", + "type": "float" + }, + { + "name": "TempData", + "type": "void*" + } + ], + "ImGuiListClipperData": [ + { + "name": "ListClipper", + "type": "ImGuiListClipper*" + }, + { + "name": "LossynessOffset", + "type": "float" + }, { "name": "StepNo", "type": "int" @@ -6199,12 +6231,31 @@ "type": "int" }, { - "name": "ItemsHeight", - "type": "float" + "name": "Ranges", + "template_type": "ImGuiListClipperRange", + "type": "ImVector_ImGuiListClipperRange" + } + ], + "ImGuiListClipperRange": [ + { + "name": "Min", + "type": "int" }, { - "name": "StartPosY", - "type": "float" + "name": "Max", + "type": "int" + }, + { + "name": "PosToIndexConvert", + "type": "bool" + }, + { + "name": "PosToIndexOffsetMin", + "type": "ImS8" + }, + { + "name": "PosToIndexOffsetMax", + "type": "ImS8" } ], "ImGuiMenuColumns": [ @@ -8325,6 +8376,10 @@ "name": "IsFallbackWindow", "type": "bool" }, + { + "name": "IsExplicitChild", + "type": "bool" + }, { "name": "HasCloseButton", "type": "bool" @@ -8511,6 +8566,10 @@ "name": "ParentWindow", "type": "ImGuiWindow*" }, + { + "name": "ParentWindowInBeginStack", + "type": "ImGuiWindow*" + }, { "name": "RootWindow", "type": "ImGuiWindow*" @@ -8752,6 +8811,10 @@ "name": "GroupOffset", "type": "ImVec1" }, + { + "name": "CursorStartPosLossyness", + "type": "ImVec2" + }, { "name": "NavLayerCurrent", "type": "ImGuiNavLayer" @@ -8821,10 +8884,6 @@ "name": "ParentLayoutType", "type": "ImGuiLayoutType" }, - { - "name": "FocusCounterTabStop", - "type": "int" - }, { "name": "ItemWidth", "type": "float" diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index 2e97cd8c..aee395c7 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -1532,16 +1532,20 @@ defs["enums"]["ImGuiNavDirSourceFlags_"][1]["name"] = "ImGuiNavDirSourceFlags_No defs["enums"]["ImGuiNavDirSourceFlags_"][1]["value"] = "0" defs["enums"]["ImGuiNavDirSourceFlags_"][2] = {} defs["enums"]["ImGuiNavDirSourceFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiNavDirSourceFlags_"][2]["name"] = "ImGuiNavDirSourceFlags_Keyboard" +defs["enums"]["ImGuiNavDirSourceFlags_"][2]["name"] = "ImGuiNavDirSourceFlags_RawKeyboard" defs["enums"]["ImGuiNavDirSourceFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiNavDirSourceFlags_"][3] = {} defs["enums"]["ImGuiNavDirSourceFlags_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiNavDirSourceFlags_"][3]["name"] = "ImGuiNavDirSourceFlags_PadDPad" +defs["enums"]["ImGuiNavDirSourceFlags_"][3]["name"] = "ImGuiNavDirSourceFlags_Keyboard" defs["enums"]["ImGuiNavDirSourceFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiNavDirSourceFlags_"][4] = {} defs["enums"]["ImGuiNavDirSourceFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiNavDirSourceFlags_"][4]["name"] = "ImGuiNavDirSourceFlags_PadLStick" +defs["enums"]["ImGuiNavDirSourceFlags_"][4]["name"] = "ImGuiNavDirSourceFlags_PadDPad" defs["enums"]["ImGuiNavDirSourceFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiNavDirSourceFlags_"][5] = {} +defs["enums"]["ImGuiNavDirSourceFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiNavDirSourceFlags_"][5]["name"] = "ImGuiNavDirSourceFlags_PadLStick" +defs["enums"]["ImGuiNavDirSourceFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiNavHighlightFlags_"] = {} defs["enums"]["ImGuiNavHighlightFlags_"][1] = {} defs["enums"]["ImGuiNavHighlightFlags_"][1]["calc_value"] = 0 @@ -1708,16 +1712,20 @@ defs["enums"]["ImGuiNavMoveFlags_"][10]["name"] = "ImGuiNavMoveFlags_DebugNoResu defs["enums"]["ImGuiNavMoveFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiNavMoveFlags_"][11] = {} defs["enums"]["ImGuiNavMoveFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiNavMoveFlags_"][11]["name"] = "ImGuiNavMoveFlags_Tabbing" +defs["enums"]["ImGuiNavMoveFlags_"][11]["name"] = "ImGuiNavMoveFlags_FocusApi" defs["enums"]["ImGuiNavMoveFlags_"][11]["value"] = "1 << 9" defs["enums"]["ImGuiNavMoveFlags_"][12] = {} defs["enums"]["ImGuiNavMoveFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiNavMoveFlags_"][12]["name"] = "ImGuiNavMoveFlags_Activate" +defs["enums"]["ImGuiNavMoveFlags_"][12]["name"] = "ImGuiNavMoveFlags_Tabbing" defs["enums"]["ImGuiNavMoveFlags_"][12]["value"] = "1 << 10" defs["enums"]["ImGuiNavMoveFlags_"][13] = {} defs["enums"]["ImGuiNavMoveFlags_"][13]["calc_value"] = 2048 -defs["enums"]["ImGuiNavMoveFlags_"][13]["name"] = "ImGuiNavMoveFlags_DontSetNavHighlight" +defs["enums"]["ImGuiNavMoveFlags_"][13]["name"] = "ImGuiNavMoveFlags_Activate" defs["enums"]["ImGuiNavMoveFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiNavMoveFlags_"][14] = {} +defs["enums"]["ImGuiNavMoveFlags_"][14]["calc_value"] = 4096 +defs["enums"]["ImGuiNavMoveFlags_"][14]["name"] = "ImGuiNavMoveFlags_DontSetNavHighlight" +defs["enums"]["ImGuiNavMoveFlags_"][14]["value"] = "1 << 12" defs["enums"]["ImGuiNextItemDataFlags_"] = {} defs["enums"]["ImGuiNextItemDataFlags_"][1] = {} defs["enums"]["ImGuiNextItemDataFlags_"][1]["calc_value"] = 0 @@ -2841,157 +2849,159 @@ defs["enums"]["ImGuiWindowFlags_"][32]["name"] = "ImGuiWindowFlags_DockNodeHost" defs["enums"]["ImGuiWindowFlags_"][32]["value"] = "1 << 29" defs["enumtypes"] = {} defs["locations"] = {} -defs["locations"]["ImBitVector"] = "imgui_internal:559" -defs["locations"]["ImColor"] = "imgui:2344" -defs["locations"]["ImDrawChannel"] = "imgui:2434" -defs["locations"]["ImDrawCmd"] = "imgui:2393" -defs["locations"]["ImDrawCmdHeader"] = "imgui:2426" -defs["locations"]["ImDrawData"] = "imgui:2624" -defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:732" -defs["locations"]["ImDrawFlags_"] = "imgui:2460" -defs["locations"]["ImDrawList"] = "imgui:2498" -defs["locations"]["ImDrawListFlags_"] = "imgui:2480" -defs["locations"]["ImDrawListSharedData"] = "imgui_internal:712" -defs["locations"]["ImDrawListSplitter"] = "imgui:2443" -defs["locations"]["ImDrawVert"] = "imgui:2411" -defs["locations"]["ImFont"] = "imgui:2843" -defs["locations"]["ImFontAtlas"] = "imgui:2741" -defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2703" -defs["locations"]["ImFontAtlasFlags_"] = "imgui:2716" -defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3051" -defs["locations"]["ImFontConfig"] = "imgui:2647" -defs["locations"]["ImFontGlyph"] = "imgui:2676" -defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2688" -defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1189" -defs["locations"]["ImGuiAxis"] = "imgui_internal:888" +defs["locations"]["ImBitVector"] = "imgui_internal:570" +defs["locations"]["ImColor"] = "imgui:2347" +defs["locations"]["ImDrawChannel"] = "imgui:2437" +defs["locations"]["ImDrawCmd"] = "imgui:2396" +defs["locations"]["ImDrawCmdHeader"] = "imgui:2429" +defs["locations"]["ImDrawData"] = "imgui:2627" +defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:743" +defs["locations"]["ImDrawFlags_"] = "imgui:2463" +defs["locations"]["ImDrawList"] = "imgui:2501" +defs["locations"]["ImDrawListFlags_"] = "imgui:2483" +defs["locations"]["ImDrawListSharedData"] = "imgui_internal:723" +defs["locations"]["ImDrawListSplitter"] = "imgui:2446" +defs["locations"]["ImDrawVert"] = "imgui:2414" +defs["locations"]["ImFont"] = "imgui:2846" +defs["locations"]["ImFontAtlas"] = "imgui:2744" +defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2706" +defs["locations"]["ImFontAtlasFlags_"] = "imgui:2719" +defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3101" +defs["locations"]["ImFontConfig"] = "imgui:2650" +defs["locations"]["ImFontGlyph"] = "imgui:2679" +defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2691" +defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1227" +defs["locations"]["ImGuiAxis"] = "imgui_internal:899" defs["locations"]["ImGuiBackendFlags_"] = "imgui:1512" -defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:795" +defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:806" defs["locations"]["ImGuiButtonFlags_"] = "imgui:1626" defs["locations"]["ImGuiCol_"] = "imgui:1527" defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1639" -defs["locations"]["ImGuiColorMod"] = "imgui_internal:953" -defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:818" +defs["locations"]["ImGuiColorMod"] = "imgui_internal:964" +defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:829" defs["locations"]["ImGuiComboFlags_"] = "imgui:1122" -defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:970" +defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:981" defs["locations"]["ImGuiCond_"] = "imgui:1731" defs["locations"]["ImGuiConfigFlags_"] = "imgui:1487" -defs["locations"]["ImGuiContext"] = "imgui_internal:1629" -defs["locations"]["ImGuiContextHook"] = "imgui_internal:1614" -defs["locations"]["ImGuiContextHookType"] = "imgui_internal:1612" -defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1364" -defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:936" -defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:945" -defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:930" +defs["locations"]["ImGuiContext"] = "imgui_internal:1670" +defs["locations"]["ImGuiContextHook"] = "imgui_internal:1655" +defs["locations"]["ImGuiContextHookType"] = "imgui_internal:1653" +defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1404" +defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:947" +defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:956" +defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:941" defs["locations"]["ImGuiDataType_"] = "imgui:1380" defs["locations"]["ImGuiDir_"] = "imgui:1396" -defs["locations"]["ImGuiDockContext"] = "imgui_internal:1461" -defs["locations"]["ImGuiDockNode"] = "imgui_internal:1380" -defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1339" +defs["locations"]["ImGuiDockContext"] = "imgui_internal:1502" +defs["locations"]["ImGuiDockNode"] = "imgui_internal:1420" +defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1379" defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1345" -defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1371" +defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1411" defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1358" defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1311" -defs["locations"]["ImGuiGroupData"] = "imgui_internal:983" +defs["locations"]["ImGuiGroupData"] = "imgui_internal:994" defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1325" defs["locations"]["ImGuiIO"] = "imgui:1897" -defs["locations"]["ImGuiInputReadMode"] = "imgui_internal:913" -defs["locations"]["ImGuiInputSource"] = "imgui_internal:901" -defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2053" -defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:786" +defs["locations"]["ImGuiInputReadMode"] = "imgui_internal:924" +defs["locations"]["ImGuiInputSource"] = "imgui_internal:912" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2054" +defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:797" defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1035" -defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1018" -defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:748" -defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:763" +defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1029" +defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:759" +defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:774" defs["locations"]["ImGuiKeyModFlags_"] = "imgui:1443" defs["locations"]["ImGuiKey_"] = "imgui:1415" -defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1133" -defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:872" -defs["locations"]["ImGuiListClipper"] = "imgui:2295" -defs["locations"]["ImGuiLogType"] = "imgui_internal:878" -defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:999" -defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:1560" +defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1142" +defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:883" +defs["locations"]["ImGuiListClipper"] = "imgui:2299" +defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1211" +defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1198" +defs["locations"]["ImGuiLogType"] = "imgui_internal:889" +defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1010" +defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:1601" defs["locations"]["ImGuiMouseButton_"] = "imgui:1703" defs["locations"]["ImGuiMouseCursor_"] = "imgui:1713" -defs["locations"]["ImGuiNavDirSourceFlags_"] = "imgui_internal:1221" -defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1212" +defs["locations"]["ImGuiNavDirSourceFlags_"] = "imgui_internal:1259" +defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1250" defs["locations"]["ImGuiNavInput_"] = "imgui:1456" -defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1253" -defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1246" -defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1229" -defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1120" -defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1113" -defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1086" -defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1069" -defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1293" -defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1273" -defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1303" -defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2173" -defs["locations"]["ImGuiPayload"] = "imgui:2114" -defs["locations"]["ImGuiPlatformIO"] = "imgui:3006" -defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3070" -defs["locations"]["ImGuiPlotType"] = "imgui_internal:895" -defs["locations"]["ImGuiPopupData"] = "imgui_internal:1056" +defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1293" +defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1286" +defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1268" +defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1129" +defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1122" +defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1095" +defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1078" +defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1333" +defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1313" +defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1343" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2174" +defs["locations"]["ImGuiPayload"] = "imgui:2115" +defs["locations"]["ImGuiPlatformIO"] = "imgui:3009" +defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3073" +defs["locations"]["ImGuiPlotType"] = "imgui_internal:906" +defs["locations"]["ImGuiPopupData"] = "imgui_internal:1065" defs["locations"]["ImGuiPopupFlags_"] = "imgui:1095" -defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:923" -defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1176" -defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1198" -defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:831" +defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:934" +defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1185" +defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1236" +defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:842" defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1111" -defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:850" -defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1541" -defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1170" -defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2084" -defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:824" +defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:861" +defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1582" +defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1179" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2085" +defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:835" defs["locations"]["ImGuiSliderFlags_"] = "imgui:1686" defs["locations"]["ImGuiSortDirection_"] = "imgui:1407" -defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:1586" -defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1145" -defs["locations"]["ImGuiStackTool"] = "imgui_internal:1597" -defs["locations"]["ImGuiStorage"] = "imgui:2235" -defs["locations"]["ImGuiStoragePair"] = "imgui:2238" +defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:1627" +defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1154" +defs["locations"]["ImGuiStackTool"] = "imgui_internal:1638" +defs["locations"]["ImGuiStorage"] = "imgui:2236" +defs["locations"]["ImGuiStoragePair"] = "imgui:2239" defs["locations"]["ImGuiStyle"] = "imgui:1842" -defs["locations"]["ImGuiStyleMod"] = "imgui_internal:960" +defs["locations"]["ImGuiStyleMod"] = "imgui_internal:971" defs["locations"]["ImGuiStyleVar_"] = "imgui:1594" -defs["locations"]["ImGuiTabBar"] = "imgui_internal:2294" -defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2257" +defs["locations"]["ImGuiTabBar"] = "imgui_internal:2334" +defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2297" defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1136" -defs["locations"]["ImGuiTabItem"] = "imgui_internal:2275" -defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2265" +defs["locations"]["ImGuiTabItem"] = "imgui_internal:2315" +defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2305" defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1152" -defs["locations"]["ImGuiTable"] = "imgui_internal:2421" +defs["locations"]["ImGuiTable"] = "imgui_internal:2461" defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1302" -defs["locations"]["ImGuiTableCellData"] = "imgui_internal:2414" -defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2355" +defs["locations"]["ImGuiTableCellData"] = "imgui_internal:2454" +defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2395" defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1245" -defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:2555" -defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2136" +defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:2595" +defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2137" defs["locations"]["ImGuiTableFlags_"] = "imgui:1188" defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1287" -defs["locations"]["ImGuiTableSettings"] = "imgui_internal:2579" -defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2150" -defs["locations"]["ImGuiTableTempData"] = "imgui_internal:2534" -defs["locations"]["ImGuiTextBuffer"] = "imgui:2208" -defs["locations"]["ImGuiTextFilter"] = "imgui:2181" -defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:858" -defs["locations"]["ImGuiTextRange"] = "imgui:2191" -defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:864" -defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:845" +defs["locations"]["ImGuiTableSettings"] = "imgui_internal:2619" +defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2151" +defs["locations"]["ImGuiTableTempData"] = "imgui_internal:2574" +defs["locations"]["ImGuiTextBuffer"] = "imgui:2209" +defs["locations"]["ImGuiTextFilter"] = "imgui:2182" +defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:869" +defs["locations"]["ImGuiTextRange"] = "imgui:2192" +defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:875" +defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:856" defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1066" -defs["locations"]["ImGuiViewport"] = "imgui:2924" -defs["locations"]["ImGuiViewportFlags_"] = "imgui:2899" -defs["locations"]["ImGuiViewportP"] = "imgui_internal:1478" -defs["locations"]["ImGuiWindow"] = "imgui_internal:2115" -defs["locations"]["ImGuiWindowClass"] = "imgui:2099" -defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1456" -defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1445" +defs["locations"]["ImGuiViewport"] = "imgui:2927" +defs["locations"]["ImGuiViewportFlags_"] = "imgui:2902" +defs["locations"]["ImGuiViewportP"] = "imgui_internal:1519" +defs["locations"]["ImGuiWindow"] = "imgui_internal:2153" +defs["locations"]["ImGuiWindowClass"] = "imgui:2100" +defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1497" +defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1486" defs["locations"]["ImGuiWindowFlags_"] = "imgui:992" -defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1524" -defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1163" -defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2068" -defs["locations"]["ImRect"] = "imgui_internal:488" -defs["locations"]["ImVec1"] = "imgui_internal:470" +defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1565" +defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1172" +defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2106" +defs["locations"]["ImRect"] = "imgui_internal:499" +defs["locations"]["ImVec1"] = "imgui_internal:481" defs["locations"]["ImVec2"] = "imgui:266" -defs["locations"]["ImVec2ih"] = "imgui_internal:478" +defs["locations"]["ImVec2ih"] = "imgui_internal:489" defs["locations"]["ImVec4"] = "imgui:279" defs["locations"]["STB_TexteditState"] = "imstb_textedit:317" defs["locations"]["StbTexteditRow"] = "imstb_textedit:364" @@ -3734,57 +3744,57 @@ defs["structs"]["ImGuiContext"][81]["name"] = "BeginPopupStack" defs["structs"]["ImGuiContext"][81]["template_type"] = "ImGuiPopupData" defs["structs"]["ImGuiContext"][81]["type"] = "ImVector_ImGuiPopupData" defs["structs"]["ImGuiContext"][82] = {} -defs["structs"]["ImGuiContext"][82]["name"] = "Viewports" -defs["structs"]["ImGuiContext"][82]["template_type"] = "ImGuiViewportP*" -defs["structs"]["ImGuiContext"][82]["type"] = "ImVector_ImGuiViewportPPtr" +defs["structs"]["ImGuiContext"][82]["name"] = "BeginMenuCount" +defs["structs"]["ImGuiContext"][82]["type"] = "int" defs["structs"]["ImGuiContext"][83] = {} -defs["structs"]["ImGuiContext"][83]["name"] = "CurrentDpiScale" -defs["structs"]["ImGuiContext"][83]["type"] = "float" +defs["structs"]["ImGuiContext"][83]["name"] = "Viewports" +defs["structs"]["ImGuiContext"][83]["template_type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][83]["type"] = "ImVector_ImGuiViewportPPtr" defs["structs"]["ImGuiContext"][84] = {} -defs["structs"]["ImGuiContext"][84]["name"] = "CurrentViewport" -defs["structs"]["ImGuiContext"][84]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][84]["name"] = "CurrentDpiScale" +defs["structs"]["ImGuiContext"][84]["type"] = "float" defs["structs"]["ImGuiContext"][85] = {} -defs["structs"]["ImGuiContext"][85]["name"] = "MouseViewport" +defs["structs"]["ImGuiContext"][85]["name"] = "CurrentViewport" defs["structs"]["ImGuiContext"][85]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiContext"][86] = {} -defs["structs"]["ImGuiContext"][86]["name"] = "MouseLastHoveredViewport" +defs["structs"]["ImGuiContext"][86]["name"] = "MouseViewport" defs["structs"]["ImGuiContext"][86]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiContext"][87] = {} -defs["structs"]["ImGuiContext"][87]["name"] = "PlatformLastFocusedViewportId" -defs["structs"]["ImGuiContext"][87]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][87]["name"] = "MouseLastHoveredViewport" +defs["structs"]["ImGuiContext"][87]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiContext"][88] = {} -defs["structs"]["ImGuiContext"][88]["name"] = "FallbackMonitor" -defs["structs"]["ImGuiContext"][88]["type"] = "ImGuiPlatformMonitor" +defs["structs"]["ImGuiContext"][88]["name"] = "PlatformLastFocusedViewportId" +defs["structs"]["ImGuiContext"][88]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][89] = {} -defs["structs"]["ImGuiContext"][89]["name"] = "ViewportFrontMostStampCount" -defs["structs"]["ImGuiContext"][89]["type"] = "int" +defs["structs"]["ImGuiContext"][89]["name"] = "FallbackMonitor" +defs["structs"]["ImGuiContext"][89]["type"] = "ImGuiPlatformMonitor" defs["structs"]["ImGuiContext"][90] = {} -defs["structs"]["ImGuiContext"][90]["name"] = "NavWindow" -defs["structs"]["ImGuiContext"][90]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][90]["name"] = "ViewportFrontMostStampCount" +defs["structs"]["ImGuiContext"][90]["type"] = "int" defs["structs"]["ImGuiContext"][91] = {} -defs["structs"]["ImGuiContext"][91]["name"] = "NavId" -defs["structs"]["ImGuiContext"][91]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][91]["name"] = "NavWindow" +defs["structs"]["ImGuiContext"][91]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][92] = {} -defs["structs"]["ImGuiContext"][92]["name"] = "NavFocusScopeId" +defs["structs"]["ImGuiContext"][92]["name"] = "NavId" defs["structs"]["ImGuiContext"][92]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][93] = {} -defs["structs"]["ImGuiContext"][93]["name"] = "NavActivateId" +defs["structs"]["ImGuiContext"][93]["name"] = "NavFocusScopeId" defs["structs"]["ImGuiContext"][93]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][94] = {} -defs["structs"]["ImGuiContext"][94]["name"] = "NavActivateDownId" +defs["structs"]["ImGuiContext"][94]["name"] = "NavActivateId" defs["structs"]["ImGuiContext"][94]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][95] = {} -defs["structs"]["ImGuiContext"][95]["name"] = "NavActivatePressedId" +defs["structs"]["ImGuiContext"][95]["name"] = "NavActivateDownId" defs["structs"]["ImGuiContext"][95]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][96] = {} -defs["structs"]["ImGuiContext"][96]["name"] = "NavActivateInputId" +defs["structs"]["ImGuiContext"][96]["name"] = "NavActivatePressedId" defs["structs"]["ImGuiContext"][96]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][97] = {} -defs["structs"]["ImGuiContext"][97]["name"] = "NavActivateFlags" -defs["structs"]["ImGuiContext"][97]["type"] = "ImGuiActivateFlags" +defs["structs"]["ImGuiContext"][97]["name"] = "NavActivateInputId" +defs["structs"]["ImGuiContext"][97]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][98] = {} -defs["structs"]["ImGuiContext"][98]["name"] = "NavJustTabbedId" -defs["structs"]["ImGuiContext"][98]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][98]["name"] = "NavActivateFlags" +defs["structs"]["ImGuiContext"][98]["type"] = "ImGuiActivateFlags" defs["structs"]["ImGuiContext"][99] = {} defs["structs"]["ImGuiContext"][99]["name"] = "NavJustMovedToId" defs["structs"]["ImGuiContext"][99]["type"] = "ImGuiID" @@ -3807,391 +3817,389 @@ defs["structs"]["ImGuiContext"][105] = {} defs["structs"]["ImGuiContext"][105]["name"] = "NavLayer" defs["structs"]["ImGuiContext"][105]["type"] = "ImGuiNavLayer" defs["structs"]["ImGuiContext"][106] = {} -defs["structs"]["ImGuiContext"][106]["name"] = "NavIdTabCounter" -defs["structs"]["ImGuiContext"][106]["type"] = "int" +defs["structs"]["ImGuiContext"][106]["name"] = "NavIdIsAlive" +defs["structs"]["ImGuiContext"][106]["type"] = "bool" defs["structs"]["ImGuiContext"][107] = {} -defs["structs"]["ImGuiContext"][107]["name"] = "NavIdIsAlive" +defs["structs"]["ImGuiContext"][107]["name"] = "NavMousePosDirty" defs["structs"]["ImGuiContext"][107]["type"] = "bool" defs["structs"]["ImGuiContext"][108] = {} -defs["structs"]["ImGuiContext"][108]["name"] = "NavMousePosDirty" +defs["structs"]["ImGuiContext"][108]["name"] = "NavDisableHighlight" defs["structs"]["ImGuiContext"][108]["type"] = "bool" defs["structs"]["ImGuiContext"][109] = {} -defs["structs"]["ImGuiContext"][109]["name"] = "NavDisableHighlight" +defs["structs"]["ImGuiContext"][109]["name"] = "NavDisableMouseHover" defs["structs"]["ImGuiContext"][109]["type"] = "bool" defs["structs"]["ImGuiContext"][110] = {} -defs["structs"]["ImGuiContext"][110]["name"] = "NavDisableMouseHover" +defs["structs"]["ImGuiContext"][110]["name"] = "NavAnyRequest" defs["structs"]["ImGuiContext"][110]["type"] = "bool" defs["structs"]["ImGuiContext"][111] = {} -defs["structs"]["ImGuiContext"][111]["name"] = "NavAnyRequest" +defs["structs"]["ImGuiContext"][111]["name"] = "NavInitRequest" defs["structs"]["ImGuiContext"][111]["type"] = "bool" defs["structs"]["ImGuiContext"][112] = {} -defs["structs"]["ImGuiContext"][112]["name"] = "NavInitRequest" +defs["structs"]["ImGuiContext"][112]["name"] = "NavInitRequestFromMove" defs["structs"]["ImGuiContext"][112]["type"] = "bool" defs["structs"]["ImGuiContext"][113] = {} -defs["structs"]["ImGuiContext"][113]["name"] = "NavInitRequestFromMove" -defs["structs"]["ImGuiContext"][113]["type"] = "bool" +defs["structs"]["ImGuiContext"][113]["name"] = "NavInitResultId" +defs["structs"]["ImGuiContext"][113]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][114] = {} -defs["structs"]["ImGuiContext"][114]["name"] = "NavInitResultId" -defs["structs"]["ImGuiContext"][114]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][114]["name"] = "NavInitResultRectRel" +defs["structs"]["ImGuiContext"][114]["type"] = "ImRect" defs["structs"]["ImGuiContext"][115] = {} -defs["structs"]["ImGuiContext"][115]["name"] = "NavInitResultRectRel" -defs["structs"]["ImGuiContext"][115]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][115]["name"] = "NavMoveSubmitted" +defs["structs"]["ImGuiContext"][115]["type"] = "bool" defs["structs"]["ImGuiContext"][116] = {} -defs["structs"]["ImGuiContext"][116]["name"] = "NavMoveSubmitted" +defs["structs"]["ImGuiContext"][116]["name"] = "NavMoveScoringItems" defs["structs"]["ImGuiContext"][116]["type"] = "bool" defs["structs"]["ImGuiContext"][117] = {} -defs["structs"]["ImGuiContext"][117]["name"] = "NavMoveScoringItems" +defs["structs"]["ImGuiContext"][117]["name"] = "NavMoveForwardToNextFrame" defs["structs"]["ImGuiContext"][117]["type"] = "bool" defs["structs"]["ImGuiContext"][118] = {} -defs["structs"]["ImGuiContext"][118]["name"] = "NavMoveForwardToNextFrame" -defs["structs"]["ImGuiContext"][118]["type"] = "bool" +defs["structs"]["ImGuiContext"][118]["name"] = "NavMoveFlags" +defs["structs"]["ImGuiContext"][118]["type"] = "ImGuiNavMoveFlags" defs["structs"]["ImGuiContext"][119] = {} -defs["structs"]["ImGuiContext"][119]["name"] = "NavMoveFlags" -defs["structs"]["ImGuiContext"][119]["type"] = "ImGuiNavMoveFlags" +defs["structs"]["ImGuiContext"][119]["name"] = "NavMoveScrollFlags" +defs["structs"]["ImGuiContext"][119]["type"] = "ImGuiScrollFlags" defs["structs"]["ImGuiContext"][120] = {} -defs["structs"]["ImGuiContext"][120]["name"] = "NavMoveScrollFlags" -defs["structs"]["ImGuiContext"][120]["type"] = "ImGuiScrollFlags" +defs["structs"]["ImGuiContext"][120]["name"] = "NavMoveKeyMods" +defs["structs"]["ImGuiContext"][120]["type"] = "ImGuiKeyModFlags" defs["structs"]["ImGuiContext"][121] = {} -defs["structs"]["ImGuiContext"][121]["name"] = "NavMoveKeyMods" -defs["structs"]["ImGuiContext"][121]["type"] = "ImGuiKeyModFlags" +defs["structs"]["ImGuiContext"][121]["name"] = "NavMoveDir" +defs["structs"]["ImGuiContext"][121]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][122] = {} -defs["structs"]["ImGuiContext"][122]["name"] = "NavMoveDir" +defs["structs"]["ImGuiContext"][122]["name"] = "NavMoveDirForDebug" defs["structs"]["ImGuiContext"][122]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][123] = {} -defs["structs"]["ImGuiContext"][123]["name"] = "NavMoveDirForDebug" +defs["structs"]["ImGuiContext"][123]["name"] = "NavMoveClipDir" defs["structs"]["ImGuiContext"][123]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][124] = {} -defs["structs"]["ImGuiContext"][124]["name"] = "NavMoveClipDir" -defs["structs"]["ImGuiContext"][124]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][124]["name"] = "NavScoringRect" +defs["structs"]["ImGuiContext"][124]["type"] = "ImRect" defs["structs"]["ImGuiContext"][125] = {} -defs["structs"]["ImGuiContext"][125]["name"] = "NavScoringRect" +defs["structs"]["ImGuiContext"][125]["name"] = "NavScoringNoClipRect" defs["structs"]["ImGuiContext"][125]["type"] = "ImRect" defs["structs"]["ImGuiContext"][126] = {} defs["structs"]["ImGuiContext"][126]["name"] = "NavScoringDebugCount" defs["structs"]["ImGuiContext"][126]["type"] = "int" defs["structs"]["ImGuiContext"][127] = {} -defs["structs"]["ImGuiContext"][127]["name"] = "NavTabbingInputableRemaining" +defs["structs"]["ImGuiContext"][127]["name"] = "NavTabbingDir" defs["structs"]["ImGuiContext"][127]["type"] = "int" defs["structs"]["ImGuiContext"][128] = {} -defs["structs"]["ImGuiContext"][128]["name"] = "NavMoveResultLocal" -defs["structs"]["ImGuiContext"][128]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][128]["name"] = "NavTabbingCounter" +defs["structs"]["ImGuiContext"][128]["type"] = "int" defs["structs"]["ImGuiContext"][129] = {} -defs["structs"]["ImGuiContext"][129]["name"] = "NavMoveResultLocalVisible" +defs["structs"]["ImGuiContext"][129]["name"] = "NavMoveResultLocal" defs["structs"]["ImGuiContext"][129]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][130] = {} -defs["structs"]["ImGuiContext"][130]["name"] = "NavMoveResultOther" +defs["structs"]["ImGuiContext"][130]["name"] = "NavMoveResultLocalVisible" defs["structs"]["ImGuiContext"][130]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][131] = {} -defs["structs"]["ImGuiContext"][131]["name"] = "NavWindowingTarget" -defs["structs"]["ImGuiContext"][131]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][131]["name"] = "NavMoveResultOther" +defs["structs"]["ImGuiContext"][131]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][132] = {} -defs["structs"]["ImGuiContext"][132]["name"] = "NavWindowingTargetAnim" -defs["structs"]["ImGuiContext"][132]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][132]["name"] = "NavTabbingResultFirst" +defs["structs"]["ImGuiContext"][132]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][133] = {} -defs["structs"]["ImGuiContext"][133]["name"] = "NavWindowingListWindow" +defs["structs"]["ImGuiContext"][133]["name"] = "NavWindowingTarget" defs["structs"]["ImGuiContext"][133]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][134] = {} -defs["structs"]["ImGuiContext"][134]["name"] = "NavWindowingTimer" -defs["structs"]["ImGuiContext"][134]["type"] = "float" +defs["structs"]["ImGuiContext"][134]["name"] = "NavWindowingTargetAnim" +defs["structs"]["ImGuiContext"][134]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][135] = {} -defs["structs"]["ImGuiContext"][135]["name"] = "NavWindowingHighlightAlpha" -defs["structs"]["ImGuiContext"][135]["type"] = "float" +defs["structs"]["ImGuiContext"][135]["name"] = "NavWindowingListWindow" +defs["structs"]["ImGuiContext"][135]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][136] = {} -defs["structs"]["ImGuiContext"][136]["name"] = "NavWindowingToggleLayer" -defs["structs"]["ImGuiContext"][136]["type"] = "bool" +defs["structs"]["ImGuiContext"][136]["name"] = "NavWindowingTimer" +defs["structs"]["ImGuiContext"][136]["type"] = "float" defs["structs"]["ImGuiContext"][137] = {} -defs["structs"]["ImGuiContext"][137]["name"] = "TabFocusRequestCurrWindow" -defs["structs"]["ImGuiContext"][137]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][137]["name"] = "NavWindowingHighlightAlpha" +defs["structs"]["ImGuiContext"][137]["type"] = "float" defs["structs"]["ImGuiContext"][138] = {} -defs["structs"]["ImGuiContext"][138]["name"] = "TabFocusRequestNextWindow" -defs["structs"]["ImGuiContext"][138]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][138]["name"] = "NavWindowingToggleLayer" +defs["structs"]["ImGuiContext"][138]["type"] = "bool" defs["structs"]["ImGuiContext"][139] = {} -defs["structs"]["ImGuiContext"][139]["name"] = "TabFocusRequestCurrCounterTabStop" -defs["structs"]["ImGuiContext"][139]["type"] = "int" +defs["structs"]["ImGuiContext"][139]["name"] = "DimBgRatio" +defs["structs"]["ImGuiContext"][139]["type"] = "float" defs["structs"]["ImGuiContext"][140] = {} -defs["structs"]["ImGuiContext"][140]["name"] = "TabFocusRequestNextCounterTabStop" -defs["structs"]["ImGuiContext"][140]["type"] = "int" +defs["structs"]["ImGuiContext"][140]["name"] = "MouseCursor" +defs["structs"]["ImGuiContext"][140]["type"] = "ImGuiMouseCursor" defs["structs"]["ImGuiContext"][141] = {} -defs["structs"]["ImGuiContext"][141]["name"] = "TabFocusPressed" +defs["structs"]["ImGuiContext"][141]["name"] = "DragDropActive" defs["structs"]["ImGuiContext"][141]["type"] = "bool" defs["structs"]["ImGuiContext"][142] = {} -defs["structs"]["ImGuiContext"][142]["name"] = "DimBgRatio" -defs["structs"]["ImGuiContext"][142]["type"] = "float" +defs["structs"]["ImGuiContext"][142]["name"] = "DragDropWithinSource" +defs["structs"]["ImGuiContext"][142]["type"] = "bool" defs["structs"]["ImGuiContext"][143] = {} -defs["structs"]["ImGuiContext"][143]["name"] = "MouseCursor" -defs["structs"]["ImGuiContext"][143]["type"] = "ImGuiMouseCursor" +defs["structs"]["ImGuiContext"][143]["name"] = "DragDropWithinTarget" +defs["structs"]["ImGuiContext"][143]["type"] = "bool" defs["structs"]["ImGuiContext"][144] = {} -defs["structs"]["ImGuiContext"][144]["name"] = "DragDropActive" -defs["structs"]["ImGuiContext"][144]["type"] = "bool" +defs["structs"]["ImGuiContext"][144]["name"] = "DragDropSourceFlags" +defs["structs"]["ImGuiContext"][144]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][145] = {} -defs["structs"]["ImGuiContext"][145]["name"] = "DragDropWithinSource" -defs["structs"]["ImGuiContext"][145]["type"] = "bool" +defs["structs"]["ImGuiContext"][145]["name"] = "DragDropSourceFrameCount" +defs["structs"]["ImGuiContext"][145]["type"] = "int" defs["structs"]["ImGuiContext"][146] = {} -defs["structs"]["ImGuiContext"][146]["name"] = "DragDropWithinTarget" -defs["structs"]["ImGuiContext"][146]["type"] = "bool" +defs["structs"]["ImGuiContext"][146]["name"] = "DragDropMouseButton" +defs["structs"]["ImGuiContext"][146]["type"] = "int" defs["structs"]["ImGuiContext"][147] = {} -defs["structs"]["ImGuiContext"][147]["name"] = "DragDropSourceFlags" -defs["structs"]["ImGuiContext"][147]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][147]["name"] = "DragDropPayload" +defs["structs"]["ImGuiContext"][147]["type"] = "ImGuiPayload" defs["structs"]["ImGuiContext"][148] = {} -defs["structs"]["ImGuiContext"][148]["name"] = "DragDropSourceFrameCount" -defs["structs"]["ImGuiContext"][148]["type"] = "int" +defs["structs"]["ImGuiContext"][148]["name"] = "DragDropTargetRect" +defs["structs"]["ImGuiContext"][148]["type"] = "ImRect" defs["structs"]["ImGuiContext"][149] = {} -defs["structs"]["ImGuiContext"][149]["name"] = "DragDropMouseButton" -defs["structs"]["ImGuiContext"][149]["type"] = "int" +defs["structs"]["ImGuiContext"][149]["name"] = "DragDropTargetId" +defs["structs"]["ImGuiContext"][149]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][150] = {} -defs["structs"]["ImGuiContext"][150]["name"] = "DragDropPayload" -defs["structs"]["ImGuiContext"][150]["type"] = "ImGuiPayload" +defs["structs"]["ImGuiContext"][150]["name"] = "DragDropAcceptFlags" +defs["structs"]["ImGuiContext"][150]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][151] = {} -defs["structs"]["ImGuiContext"][151]["name"] = "DragDropTargetRect" -defs["structs"]["ImGuiContext"][151]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][151]["name"] = "DragDropAcceptIdCurrRectSurface" +defs["structs"]["ImGuiContext"][151]["type"] = "float" defs["structs"]["ImGuiContext"][152] = {} -defs["structs"]["ImGuiContext"][152]["name"] = "DragDropTargetId" +defs["structs"]["ImGuiContext"][152]["name"] = "DragDropAcceptIdCurr" defs["structs"]["ImGuiContext"][152]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][153] = {} -defs["structs"]["ImGuiContext"][153]["name"] = "DragDropAcceptFlags" -defs["structs"]["ImGuiContext"][153]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][153]["name"] = "DragDropAcceptIdPrev" +defs["structs"]["ImGuiContext"][153]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][154] = {} -defs["structs"]["ImGuiContext"][154]["name"] = "DragDropAcceptIdCurrRectSurface" -defs["structs"]["ImGuiContext"][154]["type"] = "float" +defs["structs"]["ImGuiContext"][154]["name"] = "DragDropAcceptFrameCount" +defs["structs"]["ImGuiContext"][154]["type"] = "int" defs["structs"]["ImGuiContext"][155] = {} -defs["structs"]["ImGuiContext"][155]["name"] = "DragDropAcceptIdCurr" +defs["structs"]["ImGuiContext"][155]["name"] = "DragDropHoldJustPressedId" defs["structs"]["ImGuiContext"][155]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][156] = {} -defs["structs"]["ImGuiContext"][156]["name"] = "DragDropAcceptIdPrev" -defs["structs"]["ImGuiContext"][156]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][156]["name"] = "DragDropPayloadBufHeap" +defs["structs"]["ImGuiContext"][156]["template_type"] = "unsigned char" +defs["structs"]["ImGuiContext"][156]["type"] = "ImVector_unsigned_char" defs["structs"]["ImGuiContext"][157] = {} -defs["structs"]["ImGuiContext"][157]["name"] = "DragDropAcceptFrameCount" -defs["structs"]["ImGuiContext"][157]["type"] = "int" +defs["structs"]["ImGuiContext"][157]["name"] = "DragDropPayloadBufLocal[16]" +defs["structs"]["ImGuiContext"][157]["size"] = 16 +defs["structs"]["ImGuiContext"][157]["type"] = "unsigned char" defs["structs"]["ImGuiContext"][158] = {} -defs["structs"]["ImGuiContext"][158]["name"] = "DragDropHoldJustPressedId" -defs["structs"]["ImGuiContext"][158]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][158]["name"] = "ClipperTempDataStacked" +defs["structs"]["ImGuiContext"][158]["type"] = "int" defs["structs"]["ImGuiContext"][159] = {} -defs["structs"]["ImGuiContext"][159]["name"] = "DragDropPayloadBufHeap" -defs["structs"]["ImGuiContext"][159]["template_type"] = "unsigned char" -defs["structs"]["ImGuiContext"][159]["type"] = "ImVector_unsigned_char" +defs["structs"]["ImGuiContext"][159]["name"] = "ClipperTempData" +defs["structs"]["ImGuiContext"][159]["template_type"] = "ImGuiListClipperData" +defs["structs"]["ImGuiContext"][159]["type"] = "ImVector_ImGuiListClipperData" defs["structs"]["ImGuiContext"][160] = {} -defs["structs"]["ImGuiContext"][160]["name"] = "DragDropPayloadBufLocal[16]" -defs["structs"]["ImGuiContext"][160]["size"] = 16 -defs["structs"]["ImGuiContext"][160]["type"] = "unsigned char" +defs["structs"]["ImGuiContext"][160]["name"] = "CurrentTable" +defs["structs"]["ImGuiContext"][160]["type"] = "ImGuiTable*" defs["structs"]["ImGuiContext"][161] = {} -defs["structs"]["ImGuiContext"][161]["name"] = "CurrentTable" -defs["structs"]["ImGuiContext"][161]["type"] = "ImGuiTable*" +defs["structs"]["ImGuiContext"][161]["name"] = "TablesTempDataStacked" +defs["structs"]["ImGuiContext"][161]["type"] = "int" defs["structs"]["ImGuiContext"][162] = {} -defs["structs"]["ImGuiContext"][162]["name"] = "CurrentTableStackIdx" -defs["structs"]["ImGuiContext"][162]["type"] = "int" +defs["structs"]["ImGuiContext"][162]["name"] = "TablesTempData" +defs["structs"]["ImGuiContext"][162]["template_type"] = "ImGuiTableTempData" +defs["structs"]["ImGuiContext"][162]["type"] = "ImVector_ImGuiTableTempData" defs["structs"]["ImGuiContext"][163] = {} defs["structs"]["ImGuiContext"][163]["name"] = "Tables" defs["structs"]["ImGuiContext"][163]["template_type"] = "ImGuiTable" defs["structs"]["ImGuiContext"][163]["type"] = "ImPool_ImGuiTable" defs["structs"]["ImGuiContext"][164] = {} -defs["structs"]["ImGuiContext"][164]["name"] = "TablesTempDataStack" -defs["structs"]["ImGuiContext"][164]["template_type"] = "ImGuiTableTempData" -defs["structs"]["ImGuiContext"][164]["type"] = "ImVector_ImGuiTableTempData" +defs["structs"]["ImGuiContext"][164]["name"] = "TablesLastTimeActive" +defs["structs"]["ImGuiContext"][164]["template_type"] = "float" +defs["structs"]["ImGuiContext"][164]["type"] = "ImVector_float" defs["structs"]["ImGuiContext"][165] = {} -defs["structs"]["ImGuiContext"][165]["name"] = "TablesLastTimeActive" -defs["structs"]["ImGuiContext"][165]["template_type"] = "float" -defs["structs"]["ImGuiContext"][165]["type"] = "ImVector_float" +defs["structs"]["ImGuiContext"][165]["name"] = "DrawChannelsTempMergeBuffer" +defs["structs"]["ImGuiContext"][165]["template_type"] = "ImDrawChannel" +defs["structs"]["ImGuiContext"][165]["type"] = "ImVector_ImDrawChannel" defs["structs"]["ImGuiContext"][166] = {} -defs["structs"]["ImGuiContext"][166]["name"] = "DrawChannelsTempMergeBuffer" -defs["structs"]["ImGuiContext"][166]["template_type"] = "ImDrawChannel" -defs["structs"]["ImGuiContext"][166]["type"] = "ImVector_ImDrawChannel" +defs["structs"]["ImGuiContext"][166]["name"] = "CurrentTabBar" +defs["structs"]["ImGuiContext"][166]["type"] = "ImGuiTabBar*" defs["structs"]["ImGuiContext"][167] = {} -defs["structs"]["ImGuiContext"][167]["name"] = "CurrentTabBar" -defs["structs"]["ImGuiContext"][167]["type"] = "ImGuiTabBar*" +defs["structs"]["ImGuiContext"][167]["name"] = "TabBars" +defs["structs"]["ImGuiContext"][167]["template_type"] = "ImGuiTabBar" +defs["structs"]["ImGuiContext"][167]["type"] = "ImPool_ImGuiTabBar" defs["structs"]["ImGuiContext"][168] = {} -defs["structs"]["ImGuiContext"][168]["name"] = "TabBars" -defs["structs"]["ImGuiContext"][168]["template_type"] = "ImGuiTabBar" -defs["structs"]["ImGuiContext"][168]["type"] = "ImPool_ImGuiTabBar" +defs["structs"]["ImGuiContext"][168]["name"] = "CurrentTabBarStack" +defs["structs"]["ImGuiContext"][168]["template_type"] = "ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][168]["type"] = "ImVector_ImGuiPtrOrIndex" defs["structs"]["ImGuiContext"][169] = {} -defs["structs"]["ImGuiContext"][169]["name"] = "CurrentTabBarStack" -defs["structs"]["ImGuiContext"][169]["template_type"] = "ImGuiPtrOrIndex" -defs["structs"]["ImGuiContext"][169]["type"] = "ImVector_ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][169]["name"] = "ShrinkWidthBuffer" +defs["structs"]["ImGuiContext"][169]["template_type"] = "ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][169]["type"] = "ImVector_ImGuiShrinkWidthItem" defs["structs"]["ImGuiContext"][170] = {} -defs["structs"]["ImGuiContext"][170]["name"] = "ShrinkWidthBuffer" -defs["structs"]["ImGuiContext"][170]["template_type"] = "ImGuiShrinkWidthItem" -defs["structs"]["ImGuiContext"][170]["type"] = "ImVector_ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][170]["name"] = "MouseLastValidPos" +defs["structs"]["ImGuiContext"][170]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][171] = {} -defs["structs"]["ImGuiContext"][171]["name"] = "MouseLastValidPos" -defs["structs"]["ImGuiContext"][171]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][171]["name"] = "InputTextState" +defs["structs"]["ImGuiContext"][171]["type"] = "ImGuiInputTextState" defs["structs"]["ImGuiContext"][172] = {} -defs["structs"]["ImGuiContext"][172]["name"] = "InputTextState" -defs["structs"]["ImGuiContext"][172]["type"] = "ImGuiInputTextState" +defs["structs"]["ImGuiContext"][172]["name"] = "InputTextPasswordFont" +defs["structs"]["ImGuiContext"][172]["type"] = "ImFont" defs["structs"]["ImGuiContext"][173] = {} -defs["structs"]["ImGuiContext"][173]["name"] = "InputTextPasswordFont" -defs["structs"]["ImGuiContext"][173]["type"] = "ImFont" +defs["structs"]["ImGuiContext"][173]["name"] = "TempInputId" +defs["structs"]["ImGuiContext"][173]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][174] = {} -defs["structs"]["ImGuiContext"][174]["name"] = "TempInputId" -defs["structs"]["ImGuiContext"][174]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][174]["name"] = "ColorEditOptions" +defs["structs"]["ImGuiContext"][174]["type"] = "ImGuiColorEditFlags" defs["structs"]["ImGuiContext"][175] = {} -defs["structs"]["ImGuiContext"][175]["name"] = "ColorEditOptions" -defs["structs"]["ImGuiContext"][175]["type"] = "ImGuiColorEditFlags" +defs["structs"]["ImGuiContext"][175]["name"] = "ColorEditLastHue" +defs["structs"]["ImGuiContext"][175]["type"] = "float" defs["structs"]["ImGuiContext"][176] = {} -defs["structs"]["ImGuiContext"][176]["name"] = "ColorEditLastHue" +defs["structs"]["ImGuiContext"][176]["name"] = "ColorEditLastSat" defs["structs"]["ImGuiContext"][176]["type"] = "float" defs["structs"]["ImGuiContext"][177] = {} -defs["structs"]["ImGuiContext"][177]["name"] = "ColorEditLastSat" -defs["structs"]["ImGuiContext"][177]["type"] = "float" +defs["structs"]["ImGuiContext"][177]["name"] = "ColorEditLastColor" +defs["structs"]["ImGuiContext"][177]["type"] = "ImU32" defs["structs"]["ImGuiContext"][178] = {} -defs["structs"]["ImGuiContext"][178]["name"] = "ColorEditLastColor" -defs["structs"]["ImGuiContext"][178]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][178]["name"] = "ColorPickerRef" +defs["structs"]["ImGuiContext"][178]["type"] = "ImVec4" defs["structs"]["ImGuiContext"][179] = {} -defs["structs"]["ImGuiContext"][179]["name"] = "ColorPickerRef" -defs["structs"]["ImGuiContext"][179]["type"] = "ImVec4" +defs["structs"]["ImGuiContext"][179]["name"] = "ComboPreviewData" +defs["structs"]["ImGuiContext"][179]["type"] = "ImGuiComboPreviewData" defs["structs"]["ImGuiContext"][180] = {} -defs["structs"]["ImGuiContext"][180]["name"] = "ComboPreviewData" -defs["structs"]["ImGuiContext"][180]["type"] = "ImGuiComboPreviewData" +defs["structs"]["ImGuiContext"][180]["name"] = "SliderCurrentAccum" +defs["structs"]["ImGuiContext"][180]["type"] = "float" defs["structs"]["ImGuiContext"][181] = {} -defs["structs"]["ImGuiContext"][181]["name"] = "SliderCurrentAccum" -defs["structs"]["ImGuiContext"][181]["type"] = "float" +defs["structs"]["ImGuiContext"][181]["name"] = "SliderCurrentAccumDirty" +defs["structs"]["ImGuiContext"][181]["type"] = "bool" defs["structs"]["ImGuiContext"][182] = {} -defs["structs"]["ImGuiContext"][182]["name"] = "SliderCurrentAccumDirty" +defs["structs"]["ImGuiContext"][182]["name"] = "DragCurrentAccumDirty" defs["structs"]["ImGuiContext"][182]["type"] = "bool" defs["structs"]["ImGuiContext"][183] = {} -defs["structs"]["ImGuiContext"][183]["name"] = "DragCurrentAccumDirty" -defs["structs"]["ImGuiContext"][183]["type"] = "bool" +defs["structs"]["ImGuiContext"][183]["name"] = "DragCurrentAccum" +defs["structs"]["ImGuiContext"][183]["type"] = "float" defs["structs"]["ImGuiContext"][184] = {} -defs["structs"]["ImGuiContext"][184]["name"] = "DragCurrentAccum" +defs["structs"]["ImGuiContext"][184]["name"] = "DragSpeedDefaultRatio" defs["structs"]["ImGuiContext"][184]["type"] = "float" defs["structs"]["ImGuiContext"][185] = {} -defs["structs"]["ImGuiContext"][185]["name"] = "DragSpeedDefaultRatio" +defs["structs"]["ImGuiContext"][185]["name"] = "ScrollbarClickDeltaToGrabCenter" defs["structs"]["ImGuiContext"][185]["type"] = "float" defs["structs"]["ImGuiContext"][186] = {} -defs["structs"]["ImGuiContext"][186]["name"] = "ScrollbarClickDeltaToGrabCenter" +defs["structs"]["ImGuiContext"][186]["name"] = "DisabledAlphaBackup" defs["structs"]["ImGuiContext"][186]["type"] = "float" defs["structs"]["ImGuiContext"][187] = {} -defs["structs"]["ImGuiContext"][187]["name"] = "DisabledAlphaBackup" -defs["structs"]["ImGuiContext"][187]["type"] = "float" +defs["structs"]["ImGuiContext"][187]["name"] = "DisabledStackSize" +defs["structs"]["ImGuiContext"][187]["type"] = "short" defs["structs"]["ImGuiContext"][188] = {} -defs["structs"]["ImGuiContext"][188]["name"] = "DisabledStackSize" +defs["structs"]["ImGuiContext"][188]["name"] = "TooltipOverrideCount" defs["structs"]["ImGuiContext"][188]["type"] = "short" defs["structs"]["ImGuiContext"][189] = {} -defs["structs"]["ImGuiContext"][189]["name"] = "TooltipOverrideCount" -defs["structs"]["ImGuiContext"][189]["type"] = "short" +defs["structs"]["ImGuiContext"][189]["name"] = "TooltipSlowDelay" +defs["structs"]["ImGuiContext"][189]["type"] = "float" defs["structs"]["ImGuiContext"][190] = {} -defs["structs"]["ImGuiContext"][190]["name"] = "TooltipSlowDelay" -defs["structs"]["ImGuiContext"][190]["type"] = "float" +defs["structs"]["ImGuiContext"][190]["name"] = "ClipboardHandlerData" +defs["structs"]["ImGuiContext"][190]["template_type"] = "char" +defs["structs"]["ImGuiContext"][190]["type"] = "ImVector_char" defs["structs"]["ImGuiContext"][191] = {} -defs["structs"]["ImGuiContext"][191]["name"] = "ClipboardHandlerData" -defs["structs"]["ImGuiContext"][191]["template_type"] = "char" -defs["structs"]["ImGuiContext"][191]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][191]["name"] = "MenusIdSubmittedThisFrame" +defs["structs"]["ImGuiContext"][191]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][191]["type"] = "ImVector_ImGuiID" defs["structs"]["ImGuiContext"][192] = {} -defs["structs"]["ImGuiContext"][192]["name"] = "MenusIdSubmittedThisFrame" -defs["structs"]["ImGuiContext"][192]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiContext"][192]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][192]["name"] = "PlatformImePos" +defs["structs"]["ImGuiContext"][192]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][193] = {} -defs["structs"]["ImGuiContext"][193]["name"] = "PlatformImePos" +defs["structs"]["ImGuiContext"][193]["name"] = "PlatformImeLastPos" defs["structs"]["ImGuiContext"][193]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][194] = {} -defs["structs"]["ImGuiContext"][194]["name"] = "PlatformImeLastPos" -defs["structs"]["ImGuiContext"][194]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][194]["name"] = "PlatformImePosViewport" +defs["structs"]["ImGuiContext"][194]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiContext"][195] = {} -defs["structs"]["ImGuiContext"][195]["name"] = "PlatformImePosViewport" -defs["structs"]["ImGuiContext"][195]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][195]["name"] = "PlatformLocaleDecimalPoint" +defs["structs"]["ImGuiContext"][195]["type"] = "char" defs["structs"]["ImGuiContext"][196] = {} -defs["structs"]["ImGuiContext"][196]["name"] = "PlatformLocaleDecimalPoint" -defs["structs"]["ImGuiContext"][196]["type"] = "char" +defs["structs"]["ImGuiContext"][196]["name"] = "DockContext" +defs["structs"]["ImGuiContext"][196]["type"] = "ImGuiDockContext" defs["structs"]["ImGuiContext"][197] = {} -defs["structs"]["ImGuiContext"][197]["name"] = "DockContext" -defs["structs"]["ImGuiContext"][197]["type"] = "ImGuiDockContext" +defs["structs"]["ImGuiContext"][197]["name"] = "SettingsLoaded" +defs["structs"]["ImGuiContext"][197]["type"] = "bool" defs["structs"]["ImGuiContext"][198] = {} -defs["structs"]["ImGuiContext"][198]["name"] = "SettingsLoaded" -defs["structs"]["ImGuiContext"][198]["type"] = "bool" +defs["structs"]["ImGuiContext"][198]["name"] = "SettingsDirtyTimer" +defs["structs"]["ImGuiContext"][198]["type"] = "float" defs["structs"]["ImGuiContext"][199] = {} -defs["structs"]["ImGuiContext"][199]["name"] = "SettingsDirtyTimer" -defs["structs"]["ImGuiContext"][199]["type"] = "float" +defs["structs"]["ImGuiContext"][199]["name"] = "SettingsIniData" +defs["structs"]["ImGuiContext"][199]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiContext"][200] = {} -defs["structs"]["ImGuiContext"][200]["name"] = "SettingsIniData" -defs["structs"]["ImGuiContext"][200]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][200]["name"] = "SettingsHandlers" +defs["structs"]["ImGuiContext"][200]["template_type"] = "ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][200]["type"] = "ImVector_ImGuiSettingsHandler" defs["structs"]["ImGuiContext"][201] = {} -defs["structs"]["ImGuiContext"][201]["name"] = "SettingsHandlers" -defs["structs"]["ImGuiContext"][201]["template_type"] = "ImGuiSettingsHandler" -defs["structs"]["ImGuiContext"][201]["type"] = "ImVector_ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][201]["name"] = "SettingsWindows" +defs["structs"]["ImGuiContext"][201]["template_type"] = "ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][201]["type"] = "ImChunkStream_ImGuiWindowSettings" defs["structs"]["ImGuiContext"][202] = {} -defs["structs"]["ImGuiContext"][202]["name"] = "SettingsWindows" -defs["structs"]["ImGuiContext"][202]["template_type"] = "ImGuiWindowSettings" -defs["structs"]["ImGuiContext"][202]["type"] = "ImChunkStream_ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][202]["name"] = "SettingsTables" +defs["structs"]["ImGuiContext"][202]["template_type"] = "ImGuiTableSettings" +defs["structs"]["ImGuiContext"][202]["type"] = "ImChunkStream_ImGuiTableSettings" defs["structs"]["ImGuiContext"][203] = {} -defs["structs"]["ImGuiContext"][203]["name"] = "SettingsTables" -defs["structs"]["ImGuiContext"][203]["template_type"] = "ImGuiTableSettings" -defs["structs"]["ImGuiContext"][203]["type"] = "ImChunkStream_ImGuiTableSettings" +defs["structs"]["ImGuiContext"][203]["name"] = "Hooks" +defs["structs"]["ImGuiContext"][203]["template_type"] = "ImGuiContextHook" +defs["structs"]["ImGuiContext"][203]["type"] = "ImVector_ImGuiContextHook" defs["structs"]["ImGuiContext"][204] = {} -defs["structs"]["ImGuiContext"][204]["name"] = "Hooks" -defs["structs"]["ImGuiContext"][204]["template_type"] = "ImGuiContextHook" -defs["structs"]["ImGuiContext"][204]["type"] = "ImVector_ImGuiContextHook" +defs["structs"]["ImGuiContext"][204]["name"] = "HookIdNext" +defs["structs"]["ImGuiContext"][204]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][205] = {} -defs["structs"]["ImGuiContext"][205]["name"] = "HookIdNext" -defs["structs"]["ImGuiContext"][205]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][205]["name"] = "LogEnabled" +defs["structs"]["ImGuiContext"][205]["type"] = "bool" defs["structs"]["ImGuiContext"][206] = {} -defs["structs"]["ImGuiContext"][206]["name"] = "LogEnabled" -defs["structs"]["ImGuiContext"][206]["type"] = "bool" +defs["structs"]["ImGuiContext"][206]["name"] = "LogType" +defs["structs"]["ImGuiContext"][206]["type"] = "ImGuiLogType" defs["structs"]["ImGuiContext"][207] = {} -defs["structs"]["ImGuiContext"][207]["name"] = "LogType" -defs["structs"]["ImGuiContext"][207]["type"] = "ImGuiLogType" +defs["structs"]["ImGuiContext"][207]["name"] = "LogFile" +defs["structs"]["ImGuiContext"][207]["type"] = "ImFileHandle" defs["structs"]["ImGuiContext"][208] = {} -defs["structs"]["ImGuiContext"][208]["name"] = "LogFile" -defs["structs"]["ImGuiContext"][208]["type"] = "ImFileHandle" +defs["structs"]["ImGuiContext"][208]["name"] = "LogBuffer" +defs["structs"]["ImGuiContext"][208]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiContext"][209] = {} -defs["structs"]["ImGuiContext"][209]["name"] = "LogBuffer" -defs["structs"]["ImGuiContext"][209]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][209]["name"] = "LogNextPrefix" +defs["structs"]["ImGuiContext"][209]["type"] = "const char*" defs["structs"]["ImGuiContext"][210] = {} -defs["structs"]["ImGuiContext"][210]["name"] = "LogNextPrefix" +defs["structs"]["ImGuiContext"][210]["name"] = "LogNextSuffix" defs["structs"]["ImGuiContext"][210]["type"] = "const char*" defs["structs"]["ImGuiContext"][211] = {} -defs["structs"]["ImGuiContext"][211]["name"] = "LogNextSuffix" -defs["structs"]["ImGuiContext"][211]["type"] = "const char*" +defs["structs"]["ImGuiContext"][211]["name"] = "LogLinePosY" +defs["structs"]["ImGuiContext"][211]["type"] = "float" defs["structs"]["ImGuiContext"][212] = {} -defs["structs"]["ImGuiContext"][212]["name"] = "LogLinePosY" -defs["structs"]["ImGuiContext"][212]["type"] = "float" +defs["structs"]["ImGuiContext"][212]["name"] = "LogLineFirstItem" +defs["structs"]["ImGuiContext"][212]["type"] = "bool" defs["structs"]["ImGuiContext"][213] = {} -defs["structs"]["ImGuiContext"][213]["name"] = "LogLineFirstItem" -defs["structs"]["ImGuiContext"][213]["type"] = "bool" +defs["structs"]["ImGuiContext"][213]["name"] = "LogDepthRef" +defs["structs"]["ImGuiContext"][213]["type"] = "int" defs["structs"]["ImGuiContext"][214] = {} -defs["structs"]["ImGuiContext"][214]["name"] = "LogDepthRef" +defs["structs"]["ImGuiContext"][214]["name"] = "LogDepthToExpand" defs["structs"]["ImGuiContext"][214]["type"] = "int" defs["structs"]["ImGuiContext"][215] = {} -defs["structs"]["ImGuiContext"][215]["name"] = "LogDepthToExpand" +defs["structs"]["ImGuiContext"][215]["name"] = "LogDepthToExpandDefault" defs["structs"]["ImGuiContext"][215]["type"] = "int" defs["structs"]["ImGuiContext"][216] = {} -defs["structs"]["ImGuiContext"][216]["name"] = "LogDepthToExpandDefault" -defs["structs"]["ImGuiContext"][216]["type"] = "int" +defs["structs"]["ImGuiContext"][216]["name"] = "DebugItemPickerActive" +defs["structs"]["ImGuiContext"][216]["type"] = "bool" defs["structs"]["ImGuiContext"][217] = {} -defs["structs"]["ImGuiContext"][217]["name"] = "DebugItemPickerActive" -defs["structs"]["ImGuiContext"][217]["type"] = "bool" +defs["structs"]["ImGuiContext"][217]["name"] = "DebugItemPickerBreakId" +defs["structs"]["ImGuiContext"][217]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][218] = {} -defs["structs"]["ImGuiContext"][218]["name"] = "DebugItemPickerBreakId" -defs["structs"]["ImGuiContext"][218]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][218]["name"] = "DebugMetricsConfig" +defs["structs"]["ImGuiContext"][218]["type"] = "ImGuiMetricsConfig" defs["structs"]["ImGuiContext"][219] = {} -defs["structs"]["ImGuiContext"][219]["name"] = "DebugMetricsConfig" -defs["structs"]["ImGuiContext"][219]["type"] = "ImGuiMetricsConfig" +defs["structs"]["ImGuiContext"][219]["name"] = "DebugStackTool" +defs["structs"]["ImGuiContext"][219]["type"] = "ImGuiStackTool" defs["structs"]["ImGuiContext"][220] = {} -defs["structs"]["ImGuiContext"][220]["name"] = "DebugStackTool" -defs["structs"]["ImGuiContext"][220]["type"] = "ImGuiStackTool" +defs["structs"]["ImGuiContext"][220]["name"] = "FramerateSecPerFrame[120]" +defs["structs"]["ImGuiContext"][220]["size"] = 120 +defs["structs"]["ImGuiContext"][220]["type"] = "float" defs["structs"]["ImGuiContext"][221] = {} -defs["structs"]["ImGuiContext"][221]["name"] = "FramerateSecPerFrame[120]" -defs["structs"]["ImGuiContext"][221]["size"] = 120 -defs["structs"]["ImGuiContext"][221]["type"] = "float" +defs["structs"]["ImGuiContext"][221]["name"] = "FramerateSecPerFrameIdx" +defs["structs"]["ImGuiContext"][221]["type"] = "int" defs["structs"]["ImGuiContext"][222] = {} -defs["structs"]["ImGuiContext"][222]["name"] = "FramerateSecPerFrameIdx" +defs["structs"]["ImGuiContext"][222]["name"] = "FramerateSecPerFrameCount" defs["structs"]["ImGuiContext"][222]["type"] = "int" defs["structs"]["ImGuiContext"][223] = {} -defs["structs"]["ImGuiContext"][223]["name"] = "FramerateSecPerFrameCount" -defs["structs"]["ImGuiContext"][223]["type"] = "int" +defs["structs"]["ImGuiContext"][223]["name"] = "FramerateSecPerFrameAccum" +defs["structs"]["ImGuiContext"][223]["type"] = "float" defs["structs"]["ImGuiContext"][224] = {} -defs["structs"]["ImGuiContext"][224]["name"] = "FramerateSecPerFrameAccum" -defs["structs"]["ImGuiContext"][224]["type"] = "float" +defs["structs"]["ImGuiContext"][224]["name"] = "WantCaptureMouseNextFrame" +defs["structs"]["ImGuiContext"][224]["type"] = "int" defs["structs"]["ImGuiContext"][225] = {} -defs["structs"]["ImGuiContext"][225]["name"] = "WantCaptureMouseNextFrame" +defs["structs"]["ImGuiContext"][225]["name"] = "WantCaptureKeyboardNextFrame" defs["structs"]["ImGuiContext"][225]["type"] = "int" defs["structs"]["ImGuiContext"][226] = {} -defs["structs"]["ImGuiContext"][226]["name"] = "WantCaptureKeyboardNextFrame" +defs["structs"]["ImGuiContext"][226]["name"] = "WantTextInputNextFrame" defs["structs"]["ImGuiContext"][226]["type"] = "int" defs["structs"]["ImGuiContext"][227] = {} -defs["structs"]["ImGuiContext"][227]["name"] = "WantTextInputNextFrame" -defs["structs"]["ImGuiContext"][227]["type"] = "int" -defs["structs"]["ImGuiContext"][228] = {} -defs["structs"]["ImGuiContext"][228]["name"] = "TempBuffer[1024*3+1]" -defs["structs"]["ImGuiContext"][228]["size"] = 3073 -defs["structs"]["ImGuiContext"][228]["type"] = "char" +defs["structs"]["ImGuiContext"][227]["name"] = "TempBuffer[1024*3+1]" +defs["structs"]["ImGuiContext"][227]["size"] = 3073 +defs["structs"]["ImGuiContext"][227]["type"] = "char" defs["structs"]["ImGuiContextHook"] = {} defs["structs"]["ImGuiContextHook"][1] = {} defs["structs"]["ImGuiContextHook"][1]["name"] = "HookId" @@ -4290,94 +4298,97 @@ defs["structs"]["ImGuiDockNode"][15] = {} defs["structs"]["ImGuiDockNode"][15]["name"] = "WindowClass" defs["structs"]["ImGuiDockNode"][15]["type"] = "ImGuiWindowClass" defs["structs"]["ImGuiDockNode"][16] = {} -defs["structs"]["ImGuiDockNode"][16]["name"] = "HostWindow" -defs["structs"]["ImGuiDockNode"][16]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiDockNode"][16]["name"] = "LastBgColor" +defs["structs"]["ImGuiDockNode"][16]["type"] = "ImU32" defs["structs"]["ImGuiDockNode"][17] = {} -defs["structs"]["ImGuiDockNode"][17]["name"] = "VisibleWindow" +defs["structs"]["ImGuiDockNode"][17]["name"] = "HostWindow" defs["structs"]["ImGuiDockNode"][17]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiDockNode"][18] = {} -defs["structs"]["ImGuiDockNode"][18]["name"] = "CentralNode" -defs["structs"]["ImGuiDockNode"][18]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiDockNode"][18]["name"] = "VisibleWindow" +defs["structs"]["ImGuiDockNode"][18]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiDockNode"][19] = {} -defs["structs"]["ImGuiDockNode"][19]["name"] = "OnlyNodeWithWindows" +defs["structs"]["ImGuiDockNode"][19]["name"] = "CentralNode" defs["structs"]["ImGuiDockNode"][19]["type"] = "ImGuiDockNode*" defs["structs"]["ImGuiDockNode"][20] = {} -defs["structs"]["ImGuiDockNode"][20]["name"] = "CountNodeWithWindows" -defs["structs"]["ImGuiDockNode"][20]["type"] = "int" +defs["structs"]["ImGuiDockNode"][20]["name"] = "OnlyNodeWithWindows" +defs["structs"]["ImGuiDockNode"][20]["type"] = "ImGuiDockNode*" defs["structs"]["ImGuiDockNode"][21] = {} -defs["structs"]["ImGuiDockNode"][21]["name"] = "LastFrameAlive" +defs["structs"]["ImGuiDockNode"][21]["name"] = "CountNodeWithWindows" defs["structs"]["ImGuiDockNode"][21]["type"] = "int" defs["structs"]["ImGuiDockNode"][22] = {} -defs["structs"]["ImGuiDockNode"][22]["name"] = "LastFrameActive" +defs["structs"]["ImGuiDockNode"][22]["name"] = "LastFrameAlive" defs["structs"]["ImGuiDockNode"][22]["type"] = "int" defs["structs"]["ImGuiDockNode"][23] = {} -defs["structs"]["ImGuiDockNode"][23]["name"] = "LastFrameFocused" +defs["structs"]["ImGuiDockNode"][23]["name"] = "LastFrameActive" defs["structs"]["ImGuiDockNode"][23]["type"] = "int" defs["structs"]["ImGuiDockNode"][24] = {} -defs["structs"]["ImGuiDockNode"][24]["name"] = "LastFocusedNodeId" -defs["structs"]["ImGuiDockNode"][24]["type"] = "ImGuiID" +defs["structs"]["ImGuiDockNode"][24]["name"] = "LastFrameFocused" +defs["structs"]["ImGuiDockNode"][24]["type"] = "int" defs["structs"]["ImGuiDockNode"][25] = {} -defs["structs"]["ImGuiDockNode"][25]["name"] = "SelectedTabId" +defs["structs"]["ImGuiDockNode"][25]["name"] = "LastFocusedNodeId" defs["structs"]["ImGuiDockNode"][25]["type"] = "ImGuiID" defs["structs"]["ImGuiDockNode"][26] = {} -defs["structs"]["ImGuiDockNode"][26]["name"] = "WantCloseTabId" +defs["structs"]["ImGuiDockNode"][26]["name"] = "SelectedTabId" defs["structs"]["ImGuiDockNode"][26]["type"] = "ImGuiID" defs["structs"]["ImGuiDockNode"][27] = {} -defs["structs"]["ImGuiDockNode"][27]["bitfield"] = "3" -defs["structs"]["ImGuiDockNode"][27]["name"] = "AuthorityForPos" -defs["structs"]["ImGuiDockNode"][27]["type"] = "ImGuiDataAuthority" +defs["structs"]["ImGuiDockNode"][27]["name"] = "WantCloseTabId" +defs["structs"]["ImGuiDockNode"][27]["type"] = "ImGuiID" defs["structs"]["ImGuiDockNode"][28] = {} defs["structs"]["ImGuiDockNode"][28]["bitfield"] = "3" -defs["structs"]["ImGuiDockNode"][28]["name"] = "AuthorityForSize" +defs["structs"]["ImGuiDockNode"][28]["name"] = "AuthorityForPos" defs["structs"]["ImGuiDockNode"][28]["type"] = "ImGuiDataAuthority" defs["structs"]["ImGuiDockNode"][29] = {} defs["structs"]["ImGuiDockNode"][29]["bitfield"] = "3" -defs["structs"]["ImGuiDockNode"][29]["name"] = "AuthorityForViewport" +defs["structs"]["ImGuiDockNode"][29]["name"] = "AuthorityForSize" defs["structs"]["ImGuiDockNode"][29]["type"] = "ImGuiDataAuthority" defs["structs"]["ImGuiDockNode"][30] = {} -defs["structs"]["ImGuiDockNode"][30]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][30]["name"] = "IsVisible" -defs["structs"]["ImGuiDockNode"][30]["type"] = "bool" +defs["structs"]["ImGuiDockNode"][30]["bitfield"] = "3" +defs["structs"]["ImGuiDockNode"][30]["name"] = "AuthorityForViewport" +defs["structs"]["ImGuiDockNode"][30]["type"] = "ImGuiDataAuthority" defs["structs"]["ImGuiDockNode"][31] = {} defs["structs"]["ImGuiDockNode"][31]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][31]["name"] = "IsFocused" +defs["structs"]["ImGuiDockNode"][31]["name"] = "IsVisible" defs["structs"]["ImGuiDockNode"][31]["type"] = "bool" defs["structs"]["ImGuiDockNode"][32] = {} defs["structs"]["ImGuiDockNode"][32]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][32]["name"] = "HasCloseButton" +defs["structs"]["ImGuiDockNode"][32]["name"] = "IsFocused" defs["structs"]["ImGuiDockNode"][32]["type"] = "bool" defs["structs"]["ImGuiDockNode"][33] = {} defs["structs"]["ImGuiDockNode"][33]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][33]["name"] = "HasWindowMenuButton" +defs["structs"]["ImGuiDockNode"][33]["name"] = "IsBgDrawnThisFrame" defs["structs"]["ImGuiDockNode"][33]["type"] = "bool" defs["structs"]["ImGuiDockNode"][34] = {} defs["structs"]["ImGuiDockNode"][34]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][34]["name"] = "HasCentralNodeChild" +defs["structs"]["ImGuiDockNode"][34]["name"] = "HasCloseButton" defs["structs"]["ImGuiDockNode"][34]["type"] = "bool" defs["structs"]["ImGuiDockNode"][35] = {} defs["structs"]["ImGuiDockNode"][35]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][35]["name"] = "WantCloseAll" +defs["structs"]["ImGuiDockNode"][35]["name"] = "HasWindowMenuButton" defs["structs"]["ImGuiDockNode"][35]["type"] = "bool" defs["structs"]["ImGuiDockNode"][36] = {} defs["structs"]["ImGuiDockNode"][36]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][36]["name"] = "WantLockSizeOnce" +defs["structs"]["ImGuiDockNode"][36]["name"] = "HasCentralNodeChild" defs["structs"]["ImGuiDockNode"][36]["type"] = "bool" defs["structs"]["ImGuiDockNode"][37] = {} defs["structs"]["ImGuiDockNode"][37]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][37]["name"] = "WantMouseMove" +defs["structs"]["ImGuiDockNode"][37]["name"] = "WantCloseAll" defs["structs"]["ImGuiDockNode"][37]["type"] = "bool" defs["structs"]["ImGuiDockNode"][38] = {} defs["structs"]["ImGuiDockNode"][38]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][38]["name"] = "WantHiddenTabBarUpdate" +defs["structs"]["ImGuiDockNode"][38]["name"] = "WantLockSizeOnce" defs["structs"]["ImGuiDockNode"][38]["type"] = "bool" defs["structs"]["ImGuiDockNode"][39] = {} defs["structs"]["ImGuiDockNode"][39]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][39]["name"] = "WantHiddenTabBarToggle" +defs["structs"]["ImGuiDockNode"][39]["name"] = "WantMouseMove" defs["structs"]["ImGuiDockNode"][39]["type"] = "bool" defs["structs"]["ImGuiDockNode"][40] = {} defs["structs"]["ImGuiDockNode"][40]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][40]["name"] = "MarkedForPosSizeWrite" +defs["structs"]["ImGuiDockNode"][40]["name"] = "WantHiddenTabBarUpdate" defs["structs"]["ImGuiDockNode"][40]["type"] = "bool" +defs["structs"]["ImGuiDockNode"][41] = {} +defs["structs"]["ImGuiDockNode"][41]["bitfield"] = "1" +defs["structs"]["ImGuiDockNode"][41]["name"] = "WantHiddenTabBarToggle" +defs["structs"]["ImGuiDockNode"][41]["type"] = "bool" defs["structs"]["ImGuiGroupData"] = {} defs["structs"]["ImGuiGroupData"][1] = {} defs["structs"]["ImGuiGroupData"][1]["name"] = "WindowID" @@ -4647,66 +4658,70 @@ defs["structs"]["ImGuiIO"][75]["name"] = "MouseDoubleClicked[5]" defs["structs"]["ImGuiIO"][75]["size"] = 5 defs["structs"]["ImGuiIO"][75]["type"] = "bool" defs["structs"]["ImGuiIO"][76] = {} -defs["structs"]["ImGuiIO"][76]["name"] = "MouseReleased[5]" +defs["structs"]["ImGuiIO"][76]["name"] = "MouseClickedCount[5]" defs["structs"]["ImGuiIO"][76]["size"] = 5 -defs["structs"]["ImGuiIO"][76]["type"] = "bool" +defs["structs"]["ImGuiIO"][76]["type"] = "ImU16" defs["structs"]["ImGuiIO"][77] = {} -defs["structs"]["ImGuiIO"][77]["name"] = "MouseDownOwned[5]" +defs["structs"]["ImGuiIO"][77]["name"] = "MouseClickedLastCount[5]" defs["structs"]["ImGuiIO"][77]["size"] = 5 -defs["structs"]["ImGuiIO"][77]["type"] = "bool" +defs["structs"]["ImGuiIO"][77]["type"] = "ImU16" defs["structs"]["ImGuiIO"][78] = {} -defs["structs"]["ImGuiIO"][78]["name"] = "MouseDownOwnedUnlessPopupClose[5]" +defs["structs"]["ImGuiIO"][78]["name"] = "MouseReleased[5]" defs["structs"]["ImGuiIO"][78]["size"] = 5 defs["structs"]["ImGuiIO"][78]["type"] = "bool" defs["structs"]["ImGuiIO"][79] = {} -defs["structs"]["ImGuiIO"][79]["name"] = "MouseDownWasDoubleClick[5]" +defs["structs"]["ImGuiIO"][79]["name"] = "MouseDownOwned[5]" defs["structs"]["ImGuiIO"][79]["size"] = 5 defs["structs"]["ImGuiIO"][79]["type"] = "bool" defs["structs"]["ImGuiIO"][80] = {} -defs["structs"]["ImGuiIO"][80]["name"] = "MouseDownDuration[5]" +defs["structs"]["ImGuiIO"][80]["name"] = "MouseDownOwnedUnlessPopupClose[5]" defs["structs"]["ImGuiIO"][80]["size"] = 5 -defs["structs"]["ImGuiIO"][80]["type"] = "float" +defs["structs"]["ImGuiIO"][80]["type"] = "bool" defs["structs"]["ImGuiIO"][81] = {} -defs["structs"]["ImGuiIO"][81]["name"] = "MouseDownDurationPrev[5]" +defs["structs"]["ImGuiIO"][81]["name"] = "MouseDownDuration[5]" defs["structs"]["ImGuiIO"][81]["size"] = 5 defs["structs"]["ImGuiIO"][81]["type"] = "float" defs["structs"]["ImGuiIO"][82] = {} -defs["structs"]["ImGuiIO"][82]["name"] = "MouseDragMaxDistanceAbs[5]" +defs["structs"]["ImGuiIO"][82]["name"] = "MouseDownDurationPrev[5]" defs["structs"]["ImGuiIO"][82]["size"] = 5 -defs["structs"]["ImGuiIO"][82]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][82]["type"] = "float" defs["structs"]["ImGuiIO"][83] = {} -defs["structs"]["ImGuiIO"][83]["name"] = "MouseDragMaxDistanceSqr[5]" +defs["structs"]["ImGuiIO"][83]["name"] = "MouseDragMaxDistanceAbs[5]" defs["structs"]["ImGuiIO"][83]["size"] = 5 -defs["structs"]["ImGuiIO"][83]["type"] = "float" +defs["structs"]["ImGuiIO"][83]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][84] = {} -defs["structs"]["ImGuiIO"][84]["name"] = "KeysDownDuration[512]" -defs["structs"]["ImGuiIO"][84]["size"] = 512 +defs["structs"]["ImGuiIO"][84]["name"] = "MouseDragMaxDistanceSqr[5]" +defs["structs"]["ImGuiIO"][84]["size"] = 5 defs["structs"]["ImGuiIO"][84]["type"] = "float" defs["structs"]["ImGuiIO"][85] = {} -defs["structs"]["ImGuiIO"][85]["name"] = "KeysDownDurationPrev[512]" +defs["structs"]["ImGuiIO"][85]["name"] = "KeysDownDuration[512]" defs["structs"]["ImGuiIO"][85]["size"] = 512 defs["structs"]["ImGuiIO"][85]["type"] = "float" defs["structs"]["ImGuiIO"][86] = {} -defs["structs"]["ImGuiIO"][86]["name"] = "NavInputsDownDuration[ImGuiNavInput_COUNT]" -defs["structs"]["ImGuiIO"][86]["size"] = 20 +defs["structs"]["ImGuiIO"][86]["name"] = "KeysDownDurationPrev[512]" +defs["structs"]["ImGuiIO"][86]["size"] = 512 defs["structs"]["ImGuiIO"][86]["type"] = "float" defs["structs"]["ImGuiIO"][87] = {} -defs["structs"]["ImGuiIO"][87]["name"] = "NavInputsDownDurationPrev[ImGuiNavInput_COUNT]" +defs["structs"]["ImGuiIO"][87]["name"] = "NavInputsDownDuration[ImGuiNavInput_COUNT]" defs["structs"]["ImGuiIO"][87]["size"] = 20 defs["structs"]["ImGuiIO"][87]["type"] = "float" defs["structs"]["ImGuiIO"][88] = {} -defs["structs"]["ImGuiIO"][88]["name"] = "PenPressure" +defs["structs"]["ImGuiIO"][88]["name"] = "NavInputsDownDurationPrev[ImGuiNavInput_COUNT]" +defs["structs"]["ImGuiIO"][88]["size"] = 20 defs["structs"]["ImGuiIO"][88]["type"] = "float" defs["structs"]["ImGuiIO"][89] = {} -defs["structs"]["ImGuiIO"][89]["name"] = "AppFocusLost" -defs["structs"]["ImGuiIO"][89]["type"] = "bool" +defs["structs"]["ImGuiIO"][89]["name"] = "PenPressure" +defs["structs"]["ImGuiIO"][89]["type"] = "float" defs["structs"]["ImGuiIO"][90] = {} -defs["structs"]["ImGuiIO"][90]["name"] = "InputQueueSurrogate" -defs["structs"]["ImGuiIO"][90]["type"] = "ImWchar16" +defs["structs"]["ImGuiIO"][90]["name"] = "AppFocusLost" +defs["structs"]["ImGuiIO"][90]["type"] = "bool" defs["structs"]["ImGuiIO"][91] = {} -defs["structs"]["ImGuiIO"][91]["name"] = "InputQueueCharacters" -defs["structs"]["ImGuiIO"][91]["template_type"] = "ImWchar" -defs["structs"]["ImGuiIO"][91]["type"] = "ImVector_ImWchar" +defs["structs"]["ImGuiIO"][91]["name"] = "InputQueueSurrogate" +defs["structs"]["ImGuiIO"][91]["type"] = "ImWchar16" +defs["structs"]["ImGuiIO"][92] = {} +defs["structs"]["ImGuiIO"][92]["name"] = "InputQueueCharacters" +defs["structs"]["ImGuiIO"][92]["template_type"] = "ImWchar" +defs["structs"]["ImGuiIO"][92]["type"] = "ImVector_ImWchar" defs["structs"]["ImGuiInputTextCallbackData"] = {} defs["structs"]["ImGuiInputTextCallbackData"][1] = {} defs["structs"]["ImGuiInputTextCallbackData"][1]["name"] = "EventFlag" @@ -4793,12 +4808,6 @@ defs["structs"]["ImGuiInputTextState"][14]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][15] = {} defs["structs"]["ImGuiInputTextState"][15]["name"] = "Flags" defs["structs"]["ImGuiInputTextState"][15]["type"] = "ImGuiInputTextFlags" -defs["structs"]["ImGuiInputTextState"][16] = {} -defs["structs"]["ImGuiInputTextState"][16]["name"] = "UserCallback" -defs["structs"]["ImGuiInputTextState"][16]["type"] = "ImGuiInputTextCallback" -defs["structs"]["ImGuiInputTextState"][17] = {} -defs["structs"]["ImGuiInputTextState"][17]["name"] = "UserCallbackData" -defs["structs"]["ImGuiInputTextState"][17]["type"] = "void*" defs["structs"]["ImGuiLastItemData"] = {} defs["structs"]["ImGuiLastItemData"][1] = {} defs["structs"]["ImGuiLastItemData"][1]["name"] = "ID" @@ -4829,17 +4838,47 @@ defs["structs"]["ImGuiListClipper"][3] = {} defs["structs"]["ImGuiListClipper"][3]["name"] = "ItemsCount" defs["structs"]["ImGuiListClipper"][3]["type"] = "int" defs["structs"]["ImGuiListClipper"][4] = {} -defs["structs"]["ImGuiListClipper"][4]["name"] = "StepNo" -defs["structs"]["ImGuiListClipper"][4]["type"] = "int" +defs["structs"]["ImGuiListClipper"][4]["name"] = "ItemsHeight" +defs["structs"]["ImGuiListClipper"][4]["type"] = "float" defs["structs"]["ImGuiListClipper"][5] = {} -defs["structs"]["ImGuiListClipper"][5]["name"] = "ItemsFrozen" -defs["structs"]["ImGuiListClipper"][5]["type"] = "int" +defs["structs"]["ImGuiListClipper"][5]["name"] = "StartPosY" +defs["structs"]["ImGuiListClipper"][5]["type"] = "float" defs["structs"]["ImGuiListClipper"][6] = {} -defs["structs"]["ImGuiListClipper"][6]["name"] = "ItemsHeight" -defs["structs"]["ImGuiListClipper"][6]["type"] = "float" -defs["structs"]["ImGuiListClipper"][7] = {} -defs["structs"]["ImGuiListClipper"][7]["name"] = "StartPosY" -defs["structs"]["ImGuiListClipper"][7]["type"] = "float" +defs["structs"]["ImGuiListClipper"][6]["name"] = "TempData" +defs["structs"]["ImGuiListClipper"][6]["type"] = "void*" +defs["structs"]["ImGuiListClipperData"] = {} +defs["structs"]["ImGuiListClipperData"][1] = {} +defs["structs"]["ImGuiListClipperData"][1]["name"] = "ListClipper" +defs["structs"]["ImGuiListClipperData"][1]["type"] = "ImGuiListClipper*" +defs["structs"]["ImGuiListClipperData"][2] = {} +defs["structs"]["ImGuiListClipperData"][2]["name"] = "LossynessOffset" +defs["structs"]["ImGuiListClipperData"][2]["type"] = "float" +defs["structs"]["ImGuiListClipperData"][3] = {} +defs["structs"]["ImGuiListClipperData"][3]["name"] = "StepNo" +defs["structs"]["ImGuiListClipperData"][3]["type"] = "int" +defs["structs"]["ImGuiListClipperData"][4] = {} +defs["structs"]["ImGuiListClipperData"][4]["name"] = "ItemsFrozen" +defs["structs"]["ImGuiListClipperData"][4]["type"] = "int" +defs["structs"]["ImGuiListClipperData"][5] = {} +defs["structs"]["ImGuiListClipperData"][5]["name"] = "Ranges" +defs["structs"]["ImGuiListClipperData"][5]["template_type"] = "ImGuiListClipperRange" +defs["structs"]["ImGuiListClipperData"][5]["type"] = "ImVector_ImGuiListClipperRange" +defs["structs"]["ImGuiListClipperRange"] = {} +defs["structs"]["ImGuiListClipperRange"][1] = {} +defs["structs"]["ImGuiListClipperRange"][1]["name"] = "Min" +defs["structs"]["ImGuiListClipperRange"][1]["type"] = "int" +defs["structs"]["ImGuiListClipperRange"][2] = {} +defs["structs"]["ImGuiListClipperRange"][2]["name"] = "Max" +defs["structs"]["ImGuiListClipperRange"][2]["type"] = "int" +defs["structs"]["ImGuiListClipperRange"][3] = {} +defs["structs"]["ImGuiListClipperRange"][3]["name"] = "PosToIndexConvert" +defs["structs"]["ImGuiListClipperRange"][3]["type"] = "bool" +defs["structs"]["ImGuiListClipperRange"][4] = {} +defs["structs"]["ImGuiListClipperRange"][4]["name"] = "PosToIndexOffsetMin" +defs["structs"]["ImGuiListClipperRange"][4]["type"] = "ImS8" +defs["structs"]["ImGuiListClipperRange"][5] = {} +defs["structs"]["ImGuiListClipperRange"][5]["name"] = "PosToIndexOffsetMax" +defs["structs"]["ImGuiListClipperRange"][5]["type"] = "ImS8" defs["structs"]["ImGuiMenuColumns"] = {} defs["structs"]["ImGuiMenuColumns"][1] = {} defs["structs"]["ImGuiMenuColumns"][1]["name"] = "TotalWidth" @@ -6418,218 +6457,224 @@ defs["structs"]["ImGuiWindow"][39] = {} defs["structs"]["ImGuiWindow"][39]["name"] = "IsFallbackWindow" defs["structs"]["ImGuiWindow"][39]["type"] = "bool" defs["structs"]["ImGuiWindow"][40] = {} -defs["structs"]["ImGuiWindow"][40]["name"] = "HasCloseButton" +defs["structs"]["ImGuiWindow"][40]["name"] = "IsExplicitChild" defs["structs"]["ImGuiWindow"][40]["type"] = "bool" defs["structs"]["ImGuiWindow"][41] = {} -defs["structs"]["ImGuiWindow"][41]["name"] = "ResizeBorderHeld" -defs["structs"]["ImGuiWindow"][41]["type"] = "signed char" +defs["structs"]["ImGuiWindow"][41]["name"] = "HasCloseButton" +defs["structs"]["ImGuiWindow"][41]["type"] = "bool" defs["structs"]["ImGuiWindow"][42] = {} -defs["structs"]["ImGuiWindow"][42]["name"] = "BeginCount" -defs["structs"]["ImGuiWindow"][42]["type"] = "short" +defs["structs"]["ImGuiWindow"][42]["name"] = "ResizeBorderHeld" +defs["structs"]["ImGuiWindow"][42]["type"] = "signed char" defs["structs"]["ImGuiWindow"][43] = {} -defs["structs"]["ImGuiWindow"][43]["name"] = "BeginOrderWithinParent" +defs["structs"]["ImGuiWindow"][43]["name"] = "BeginCount" defs["structs"]["ImGuiWindow"][43]["type"] = "short" defs["structs"]["ImGuiWindow"][44] = {} -defs["structs"]["ImGuiWindow"][44]["name"] = "BeginOrderWithinContext" +defs["structs"]["ImGuiWindow"][44]["name"] = "BeginOrderWithinParent" defs["structs"]["ImGuiWindow"][44]["type"] = "short" defs["structs"]["ImGuiWindow"][45] = {} -defs["structs"]["ImGuiWindow"][45]["name"] = "FocusOrder" +defs["structs"]["ImGuiWindow"][45]["name"] = "BeginOrderWithinContext" defs["structs"]["ImGuiWindow"][45]["type"] = "short" defs["structs"]["ImGuiWindow"][46] = {} -defs["structs"]["ImGuiWindow"][46]["name"] = "PopupId" -defs["structs"]["ImGuiWindow"][46]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][46]["name"] = "FocusOrder" +defs["structs"]["ImGuiWindow"][46]["type"] = "short" defs["structs"]["ImGuiWindow"][47] = {} -defs["structs"]["ImGuiWindow"][47]["name"] = "AutoFitFramesX" -defs["structs"]["ImGuiWindow"][47]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][47]["name"] = "PopupId" +defs["structs"]["ImGuiWindow"][47]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][48] = {} -defs["structs"]["ImGuiWindow"][48]["name"] = "AutoFitFramesY" +defs["structs"]["ImGuiWindow"][48]["name"] = "AutoFitFramesX" defs["structs"]["ImGuiWindow"][48]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][49] = {} -defs["structs"]["ImGuiWindow"][49]["name"] = "AutoFitChildAxises" +defs["structs"]["ImGuiWindow"][49]["name"] = "AutoFitFramesY" defs["structs"]["ImGuiWindow"][49]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][50] = {} -defs["structs"]["ImGuiWindow"][50]["name"] = "AutoFitOnlyGrows" -defs["structs"]["ImGuiWindow"][50]["type"] = "bool" +defs["structs"]["ImGuiWindow"][50]["name"] = "AutoFitChildAxises" +defs["structs"]["ImGuiWindow"][50]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][51] = {} -defs["structs"]["ImGuiWindow"][51]["name"] = "AutoPosLastDirection" -defs["structs"]["ImGuiWindow"][51]["type"] = "ImGuiDir" +defs["structs"]["ImGuiWindow"][51]["name"] = "AutoFitOnlyGrows" +defs["structs"]["ImGuiWindow"][51]["type"] = "bool" defs["structs"]["ImGuiWindow"][52] = {} -defs["structs"]["ImGuiWindow"][52]["name"] = "HiddenFramesCanSkipItems" -defs["structs"]["ImGuiWindow"][52]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][52]["name"] = "AutoPosLastDirection" +defs["structs"]["ImGuiWindow"][52]["type"] = "ImGuiDir" defs["structs"]["ImGuiWindow"][53] = {} -defs["structs"]["ImGuiWindow"][53]["name"] = "HiddenFramesCannotSkipItems" +defs["structs"]["ImGuiWindow"][53]["name"] = "HiddenFramesCanSkipItems" defs["structs"]["ImGuiWindow"][53]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][54] = {} -defs["structs"]["ImGuiWindow"][54]["name"] = "HiddenFramesForRenderOnly" +defs["structs"]["ImGuiWindow"][54]["name"] = "HiddenFramesCannotSkipItems" defs["structs"]["ImGuiWindow"][54]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][55] = {} -defs["structs"]["ImGuiWindow"][55]["name"] = "DisableInputsFrames" +defs["structs"]["ImGuiWindow"][55]["name"] = "HiddenFramesForRenderOnly" defs["structs"]["ImGuiWindow"][55]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][56] = {} -defs["structs"]["ImGuiWindow"][56]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][56]["name"] = "SetWindowPosAllowFlags" -defs["structs"]["ImGuiWindow"][56]["type"] = "ImGuiCond" +defs["structs"]["ImGuiWindow"][56]["name"] = "DisableInputsFrames" +defs["structs"]["ImGuiWindow"][56]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][57] = {} defs["structs"]["ImGuiWindow"][57]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][57]["name"] = "SetWindowSizeAllowFlags" +defs["structs"]["ImGuiWindow"][57]["name"] = "SetWindowPosAllowFlags" defs["structs"]["ImGuiWindow"][57]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][58] = {} defs["structs"]["ImGuiWindow"][58]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][58]["name"] = "SetWindowCollapsedAllowFlags" +defs["structs"]["ImGuiWindow"][58]["name"] = "SetWindowSizeAllowFlags" defs["structs"]["ImGuiWindow"][58]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][59] = {} defs["structs"]["ImGuiWindow"][59]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][59]["name"] = "SetWindowDockAllowFlags" +defs["structs"]["ImGuiWindow"][59]["name"] = "SetWindowCollapsedAllowFlags" defs["structs"]["ImGuiWindow"][59]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][60] = {} -defs["structs"]["ImGuiWindow"][60]["name"] = "SetWindowPosVal" -defs["structs"]["ImGuiWindow"][60]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][60]["bitfield"] = "8" +defs["structs"]["ImGuiWindow"][60]["name"] = "SetWindowDockAllowFlags" +defs["structs"]["ImGuiWindow"][60]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][61] = {} -defs["structs"]["ImGuiWindow"][61]["name"] = "SetWindowPosPivot" +defs["structs"]["ImGuiWindow"][61]["name"] = "SetWindowPosVal" defs["structs"]["ImGuiWindow"][61]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][62] = {} -defs["structs"]["ImGuiWindow"][62]["name"] = "IDStack" -defs["structs"]["ImGuiWindow"][62]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiWindow"][62]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiWindow"][62]["name"] = "SetWindowPosPivot" +defs["structs"]["ImGuiWindow"][62]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][63] = {} -defs["structs"]["ImGuiWindow"][63]["name"] = "DC" -defs["structs"]["ImGuiWindow"][63]["type"] = "ImGuiWindowTempData" +defs["structs"]["ImGuiWindow"][63]["name"] = "IDStack" +defs["structs"]["ImGuiWindow"][63]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][63]["type"] = "ImVector_ImGuiID" defs["structs"]["ImGuiWindow"][64] = {} -defs["structs"]["ImGuiWindow"][64]["name"] = "OuterRectClipped" -defs["structs"]["ImGuiWindow"][64]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][64]["name"] = "DC" +defs["structs"]["ImGuiWindow"][64]["type"] = "ImGuiWindowTempData" defs["structs"]["ImGuiWindow"][65] = {} -defs["structs"]["ImGuiWindow"][65]["name"] = "InnerRect" +defs["structs"]["ImGuiWindow"][65]["name"] = "OuterRectClipped" defs["structs"]["ImGuiWindow"][65]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][66] = {} -defs["structs"]["ImGuiWindow"][66]["name"] = "InnerClipRect" +defs["structs"]["ImGuiWindow"][66]["name"] = "InnerRect" defs["structs"]["ImGuiWindow"][66]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][67] = {} -defs["structs"]["ImGuiWindow"][67]["name"] = "WorkRect" +defs["structs"]["ImGuiWindow"][67]["name"] = "InnerClipRect" defs["structs"]["ImGuiWindow"][67]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][68] = {} -defs["structs"]["ImGuiWindow"][68]["name"] = "ParentWorkRect" +defs["structs"]["ImGuiWindow"][68]["name"] = "WorkRect" defs["structs"]["ImGuiWindow"][68]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][69] = {} -defs["structs"]["ImGuiWindow"][69]["name"] = "ClipRect" +defs["structs"]["ImGuiWindow"][69]["name"] = "ParentWorkRect" defs["structs"]["ImGuiWindow"][69]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][70] = {} -defs["structs"]["ImGuiWindow"][70]["name"] = "ContentRegionRect" +defs["structs"]["ImGuiWindow"][70]["name"] = "ClipRect" defs["structs"]["ImGuiWindow"][70]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][71] = {} -defs["structs"]["ImGuiWindow"][71]["name"] = "HitTestHoleSize" -defs["structs"]["ImGuiWindow"][71]["type"] = "ImVec2ih" +defs["structs"]["ImGuiWindow"][71]["name"] = "ContentRegionRect" +defs["structs"]["ImGuiWindow"][71]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][72] = {} -defs["structs"]["ImGuiWindow"][72]["name"] = "HitTestHoleOffset" +defs["structs"]["ImGuiWindow"][72]["name"] = "HitTestHoleSize" defs["structs"]["ImGuiWindow"][72]["type"] = "ImVec2ih" defs["structs"]["ImGuiWindow"][73] = {} -defs["structs"]["ImGuiWindow"][73]["name"] = "LastFrameActive" -defs["structs"]["ImGuiWindow"][73]["type"] = "int" +defs["structs"]["ImGuiWindow"][73]["name"] = "HitTestHoleOffset" +defs["structs"]["ImGuiWindow"][73]["type"] = "ImVec2ih" defs["structs"]["ImGuiWindow"][74] = {} -defs["structs"]["ImGuiWindow"][74]["name"] = "LastFrameJustFocused" +defs["structs"]["ImGuiWindow"][74]["name"] = "LastFrameActive" defs["structs"]["ImGuiWindow"][74]["type"] = "int" defs["structs"]["ImGuiWindow"][75] = {} -defs["structs"]["ImGuiWindow"][75]["name"] = "LastTimeActive" -defs["structs"]["ImGuiWindow"][75]["type"] = "float" +defs["structs"]["ImGuiWindow"][75]["name"] = "LastFrameJustFocused" +defs["structs"]["ImGuiWindow"][75]["type"] = "int" defs["structs"]["ImGuiWindow"][76] = {} -defs["structs"]["ImGuiWindow"][76]["name"] = "ItemWidthDefault" +defs["structs"]["ImGuiWindow"][76]["name"] = "LastTimeActive" defs["structs"]["ImGuiWindow"][76]["type"] = "float" defs["structs"]["ImGuiWindow"][77] = {} -defs["structs"]["ImGuiWindow"][77]["name"] = "StateStorage" -defs["structs"]["ImGuiWindow"][77]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiWindow"][77]["name"] = "ItemWidthDefault" +defs["structs"]["ImGuiWindow"][77]["type"] = "float" defs["structs"]["ImGuiWindow"][78] = {} -defs["structs"]["ImGuiWindow"][78]["name"] = "ColumnsStorage" -defs["structs"]["ImGuiWindow"][78]["template_type"] = "ImGuiOldColumns" -defs["structs"]["ImGuiWindow"][78]["type"] = "ImVector_ImGuiOldColumns" +defs["structs"]["ImGuiWindow"][78]["name"] = "StateStorage" +defs["structs"]["ImGuiWindow"][78]["type"] = "ImGuiStorage" defs["structs"]["ImGuiWindow"][79] = {} -defs["structs"]["ImGuiWindow"][79]["name"] = "FontWindowScale" -defs["structs"]["ImGuiWindow"][79]["type"] = "float" +defs["structs"]["ImGuiWindow"][79]["name"] = "ColumnsStorage" +defs["structs"]["ImGuiWindow"][79]["template_type"] = "ImGuiOldColumns" +defs["structs"]["ImGuiWindow"][79]["type"] = "ImVector_ImGuiOldColumns" defs["structs"]["ImGuiWindow"][80] = {} -defs["structs"]["ImGuiWindow"][80]["name"] = "FontDpiScale" +defs["structs"]["ImGuiWindow"][80]["name"] = "FontWindowScale" defs["structs"]["ImGuiWindow"][80]["type"] = "float" defs["structs"]["ImGuiWindow"][81] = {} -defs["structs"]["ImGuiWindow"][81]["name"] = "SettingsOffset" -defs["structs"]["ImGuiWindow"][81]["type"] = "int" +defs["structs"]["ImGuiWindow"][81]["name"] = "FontDpiScale" +defs["structs"]["ImGuiWindow"][81]["type"] = "float" defs["structs"]["ImGuiWindow"][82] = {} -defs["structs"]["ImGuiWindow"][82]["name"] = "DrawList" -defs["structs"]["ImGuiWindow"][82]["type"] = "ImDrawList*" +defs["structs"]["ImGuiWindow"][82]["name"] = "SettingsOffset" +defs["structs"]["ImGuiWindow"][82]["type"] = "int" defs["structs"]["ImGuiWindow"][83] = {} -defs["structs"]["ImGuiWindow"][83]["name"] = "DrawListInst" -defs["structs"]["ImGuiWindow"][83]["type"] = "ImDrawList" +defs["structs"]["ImGuiWindow"][83]["name"] = "DrawList" +defs["structs"]["ImGuiWindow"][83]["type"] = "ImDrawList*" defs["structs"]["ImGuiWindow"][84] = {} -defs["structs"]["ImGuiWindow"][84]["name"] = "ParentWindow" -defs["structs"]["ImGuiWindow"][84]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][84]["name"] = "DrawListInst" +defs["structs"]["ImGuiWindow"][84]["type"] = "ImDrawList" defs["structs"]["ImGuiWindow"][85] = {} -defs["structs"]["ImGuiWindow"][85]["name"] = "RootWindow" +defs["structs"]["ImGuiWindow"][85]["name"] = "ParentWindow" defs["structs"]["ImGuiWindow"][85]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][86] = {} -defs["structs"]["ImGuiWindow"][86]["name"] = "RootWindowPopupTree" +defs["structs"]["ImGuiWindow"][86]["name"] = "ParentWindowInBeginStack" defs["structs"]["ImGuiWindow"][86]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][87] = {} -defs["structs"]["ImGuiWindow"][87]["name"] = "RootWindowDockTree" +defs["structs"]["ImGuiWindow"][87]["name"] = "RootWindow" defs["structs"]["ImGuiWindow"][87]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][88] = {} -defs["structs"]["ImGuiWindow"][88]["name"] = "RootWindowForTitleBarHighlight" +defs["structs"]["ImGuiWindow"][88]["name"] = "RootWindowPopupTree" defs["structs"]["ImGuiWindow"][88]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][89] = {} -defs["structs"]["ImGuiWindow"][89]["name"] = "RootWindowForNav" +defs["structs"]["ImGuiWindow"][89]["name"] = "RootWindowDockTree" defs["structs"]["ImGuiWindow"][89]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][90] = {} -defs["structs"]["ImGuiWindow"][90]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][90]["name"] = "RootWindowForTitleBarHighlight" defs["structs"]["ImGuiWindow"][90]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][91] = {} -defs["structs"]["ImGuiWindow"][91]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" -defs["structs"]["ImGuiWindow"][91]["size"] = 2 -defs["structs"]["ImGuiWindow"][91]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][91]["name"] = "RootWindowForNav" +defs["structs"]["ImGuiWindow"][91]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][92] = {} -defs["structs"]["ImGuiWindow"][92]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" -defs["structs"]["ImGuiWindow"][92]["size"] = 2 -defs["structs"]["ImGuiWindow"][92]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][92]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][92]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][93] = {} -defs["structs"]["ImGuiWindow"][93]["name"] = "MemoryDrawListIdxCapacity" -defs["structs"]["ImGuiWindow"][93]["type"] = "int" +defs["structs"]["ImGuiWindow"][93]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][93]["size"] = 2 +defs["structs"]["ImGuiWindow"][93]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][94] = {} -defs["structs"]["ImGuiWindow"][94]["name"] = "MemoryDrawListVtxCapacity" -defs["structs"]["ImGuiWindow"][94]["type"] = "int" +defs["structs"]["ImGuiWindow"][94]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][94]["size"] = 2 +defs["structs"]["ImGuiWindow"][94]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][95] = {} -defs["structs"]["ImGuiWindow"][95]["name"] = "MemoryCompacted" -defs["structs"]["ImGuiWindow"][95]["type"] = "bool" +defs["structs"]["ImGuiWindow"][95]["name"] = "MemoryDrawListIdxCapacity" +defs["structs"]["ImGuiWindow"][95]["type"] = "int" defs["structs"]["ImGuiWindow"][96] = {} -defs["structs"]["ImGuiWindow"][96]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][96]["name"] = "DockIsActive" -defs["structs"]["ImGuiWindow"][96]["type"] = "bool" +defs["structs"]["ImGuiWindow"][96]["name"] = "MemoryDrawListVtxCapacity" +defs["structs"]["ImGuiWindow"][96]["type"] = "int" defs["structs"]["ImGuiWindow"][97] = {} -defs["structs"]["ImGuiWindow"][97]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][97]["name"] = "DockNodeIsVisible" +defs["structs"]["ImGuiWindow"][97]["name"] = "MemoryCompacted" defs["structs"]["ImGuiWindow"][97]["type"] = "bool" defs["structs"]["ImGuiWindow"][98] = {} defs["structs"]["ImGuiWindow"][98]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][98]["name"] = "DockTabIsVisible" +defs["structs"]["ImGuiWindow"][98]["name"] = "DockIsActive" defs["structs"]["ImGuiWindow"][98]["type"] = "bool" defs["structs"]["ImGuiWindow"][99] = {} defs["structs"]["ImGuiWindow"][99]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][99]["name"] = "DockTabWantClose" +defs["structs"]["ImGuiWindow"][99]["name"] = "DockNodeIsVisible" defs["structs"]["ImGuiWindow"][99]["type"] = "bool" defs["structs"]["ImGuiWindow"][100] = {} -defs["structs"]["ImGuiWindow"][100]["name"] = "DockOrder" -defs["structs"]["ImGuiWindow"][100]["type"] = "short" +defs["structs"]["ImGuiWindow"][100]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][100]["name"] = "DockTabIsVisible" +defs["structs"]["ImGuiWindow"][100]["type"] = "bool" defs["structs"]["ImGuiWindow"][101] = {} -defs["structs"]["ImGuiWindow"][101]["name"] = "DockStyle" -defs["structs"]["ImGuiWindow"][101]["type"] = "ImGuiWindowDockStyle" +defs["structs"]["ImGuiWindow"][101]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][101]["name"] = "DockTabWantClose" +defs["structs"]["ImGuiWindow"][101]["type"] = "bool" defs["structs"]["ImGuiWindow"][102] = {} -defs["structs"]["ImGuiWindow"][102]["name"] = "DockNode" -defs["structs"]["ImGuiWindow"][102]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][102]["name"] = "DockOrder" +defs["structs"]["ImGuiWindow"][102]["type"] = "short" defs["structs"]["ImGuiWindow"][103] = {} -defs["structs"]["ImGuiWindow"][103]["name"] = "DockNodeAsHost" -defs["structs"]["ImGuiWindow"][103]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][103]["name"] = "DockStyle" +defs["structs"]["ImGuiWindow"][103]["type"] = "ImGuiWindowDockStyle" defs["structs"]["ImGuiWindow"][104] = {} -defs["structs"]["ImGuiWindow"][104]["name"] = "DockId" -defs["structs"]["ImGuiWindow"][104]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][104]["name"] = "DockNode" +defs["structs"]["ImGuiWindow"][104]["type"] = "ImGuiDockNode*" defs["structs"]["ImGuiWindow"][105] = {} -defs["structs"]["ImGuiWindow"][105]["name"] = "DockTabItemStatusFlags" -defs["structs"]["ImGuiWindow"][105]["type"] = "ImGuiItemStatusFlags" +defs["structs"]["ImGuiWindow"][105]["name"] = "DockNodeAsHost" +defs["structs"]["ImGuiWindow"][105]["type"] = "ImGuiDockNode*" defs["structs"]["ImGuiWindow"][106] = {} -defs["structs"]["ImGuiWindow"][106]["name"] = "DockTabItemRect" -defs["structs"]["ImGuiWindow"][106]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][106]["name"] = "DockId" +defs["structs"]["ImGuiWindow"][106]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][107] = {} +defs["structs"]["ImGuiWindow"][107]["name"] = "DockTabItemStatusFlags" +defs["structs"]["ImGuiWindow"][107]["type"] = "ImGuiItemStatusFlags" +defs["structs"]["ImGuiWindow"][108] = {} +defs["structs"]["ImGuiWindow"][108]["name"] = "DockTabItemRect" +defs["structs"]["ImGuiWindow"][108]["type"] = "ImRect" defs["structs"]["ImGuiWindowClass"] = {} defs["structs"]["ImGuiWindowClass"][1] = {} defs["structs"]["ImGuiWindowClass"][1]["name"] = "ClassId" @@ -6739,60 +6784,60 @@ defs["structs"]["ImGuiWindowTempData"][12] = {} defs["structs"]["ImGuiWindowTempData"][12]["name"] = "GroupOffset" defs["structs"]["ImGuiWindowTempData"][12]["type"] = "ImVec1" defs["structs"]["ImGuiWindowTempData"][13] = {} -defs["structs"]["ImGuiWindowTempData"][13]["name"] = "NavLayerCurrent" -defs["structs"]["ImGuiWindowTempData"][13]["type"] = "ImGuiNavLayer" +defs["structs"]["ImGuiWindowTempData"][13]["name"] = "CursorStartPosLossyness" +defs["structs"]["ImGuiWindowTempData"][13]["type"] = "ImVec2" defs["structs"]["ImGuiWindowTempData"][14] = {} -defs["structs"]["ImGuiWindowTempData"][14]["name"] = "NavLayersActiveMask" -defs["structs"]["ImGuiWindowTempData"][14]["type"] = "short" +defs["structs"]["ImGuiWindowTempData"][14]["name"] = "NavLayerCurrent" +defs["structs"]["ImGuiWindowTempData"][14]["type"] = "ImGuiNavLayer" defs["structs"]["ImGuiWindowTempData"][15] = {} -defs["structs"]["ImGuiWindowTempData"][15]["name"] = "NavLayersActiveMaskNext" +defs["structs"]["ImGuiWindowTempData"][15]["name"] = "NavLayersActiveMask" defs["structs"]["ImGuiWindowTempData"][15]["type"] = "short" defs["structs"]["ImGuiWindowTempData"][16] = {} -defs["structs"]["ImGuiWindowTempData"][16]["name"] = "NavFocusScopeIdCurrent" -defs["structs"]["ImGuiWindowTempData"][16]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindowTempData"][16]["name"] = "NavLayersActiveMaskNext" +defs["structs"]["ImGuiWindowTempData"][16]["type"] = "short" defs["structs"]["ImGuiWindowTempData"][17] = {} -defs["structs"]["ImGuiWindowTempData"][17]["name"] = "NavHideHighlightOneFrame" -defs["structs"]["ImGuiWindowTempData"][17]["type"] = "bool" +defs["structs"]["ImGuiWindowTempData"][17]["name"] = "NavFocusScopeIdCurrent" +defs["structs"]["ImGuiWindowTempData"][17]["type"] = "ImGuiID" defs["structs"]["ImGuiWindowTempData"][18] = {} -defs["structs"]["ImGuiWindowTempData"][18]["name"] = "NavHasScroll" +defs["structs"]["ImGuiWindowTempData"][18]["name"] = "NavHideHighlightOneFrame" defs["structs"]["ImGuiWindowTempData"][18]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][19] = {} -defs["structs"]["ImGuiWindowTempData"][19]["name"] = "MenuBarAppending" +defs["structs"]["ImGuiWindowTempData"][19]["name"] = "NavHasScroll" defs["structs"]["ImGuiWindowTempData"][19]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][20] = {} -defs["structs"]["ImGuiWindowTempData"][20]["name"] = "MenuBarOffset" -defs["structs"]["ImGuiWindowTempData"][20]["type"] = "ImVec2" +defs["structs"]["ImGuiWindowTempData"][20]["name"] = "MenuBarAppending" +defs["structs"]["ImGuiWindowTempData"][20]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][21] = {} -defs["structs"]["ImGuiWindowTempData"][21]["name"] = "MenuColumns" -defs["structs"]["ImGuiWindowTempData"][21]["type"] = "ImGuiMenuColumns" +defs["structs"]["ImGuiWindowTempData"][21]["name"] = "MenuBarOffset" +defs["structs"]["ImGuiWindowTempData"][21]["type"] = "ImVec2" defs["structs"]["ImGuiWindowTempData"][22] = {} -defs["structs"]["ImGuiWindowTempData"][22]["name"] = "TreeDepth" -defs["structs"]["ImGuiWindowTempData"][22]["type"] = "int" +defs["structs"]["ImGuiWindowTempData"][22]["name"] = "MenuColumns" +defs["structs"]["ImGuiWindowTempData"][22]["type"] = "ImGuiMenuColumns" defs["structs"]["ImGuiWindowTempData"][23] = {} -defs["structs"]["ImGuiWindowTempData"][23]["name"] = "TreeJumpToParentOnPopMask" -defs["structs"]["ImGuiWindowTempData"][23]["type"] = "ImU32" +defs["structs"]["ImGuiWindowTempData"][23]["name"] = "TreeDepth" +defs["structs"]["ImGuiWindowTempData"][23]["type"] = "int" defs["structs"]["ImGuiWindowTempData"][24] = {} -defs["structs"]["ImGuiWindowTempData"][24]["name"] = "ChildWindows" -defs["structs"]["ImGuiWindowTempData"][24]["template_type"] = "ImGuiWindow*" -defs["structs"]["ImGuiWindowTempData"][24]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiWindowTempData"][24]["name"] = "TreeJumpToParentOnPopMask" +defs["structs"]["ImGuiWindowTempData"][24]["type"] = "ImU32" defs["structs"]["ImGuiWindowTempData"][25] = {} -defs["structs"]["ImGuiWindowTempData"][25]["name"] = "StateStorage" -defs["structs"]["ImGuiWindowTempData"][25]["type"] = "ImGuiStorage*" +defs["structs"]["ImGuiWindowTempData"][25]["name"] = "ChildWindows" +defs["structs"]["ImGuiWindowTempData"][25]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindowTempData"][25]["type"] = "ImVector_ImGuiWindowPtr" defs["structs"]["ImGuiWindowTempData"][26] = {} -defs["structs"]["ImGuiWindowTempData"][26]["name"] = "CurrentColumns" -defs["structs"]["ImGuiWindowTempData"][26]["type"] = "ImGuiOldColumns*" +defs["structs"]["ImGuiWindowTempData"][26]["name"] = "StateStorage" +defs["structs"]["ImGuiWindowTempData"][26]["type"] = "ImGuiStorage*" defs["structs"]["ImGuiWindowTempData"][27] = {} -defs["structs"]["ImGuiWindowTempData"][27]["name"] = "CurrentTableIdx" -defs["structs"]["ImGuiWindowTempData"][27]["type"] = "int" +defs["structs"]["ImGuiWindowTempData"][27]["name"] = "CurrentColumns" +defs["structs"]["ImGuiWindowTempData"][27]["type"] = "ImGuiOldColumns*" defs["structs"]["ImGuiWindowTempData"][28] = {} -defs["structs"]["ImGuiWindowTempData"][28]["name"] = "LayoutType" -defs["structs"]["ImGuiWindowTempData"][28]["type"] = "ImGuiLayoutType" +defs["structs"]["ImGuiWindowTempData"][28]["name"] = "CurrentTableIdx" +defs["structs"]["ImGuiWindowTempData"][28]["type"] = "int" defs["structs"]["ImGuiWindowTempData"][29] = {} -defs["structs"]["ImGuiWindowTempData"][29]["name"] = "ParentLayoutType" +defs["structs"]["ImGuiWindowTempData"][29]["name"] = "LayoutType" defs["structs"]["ImGuiWindowTempData"][29]["type"] = "ImGuiLayoutType" defs["structs"]["ImGuiWindowTempData"][30] = {} -defs["structs"]["ImGuiWindowTempData"][30]["name"] = "FocusCounterTabStop" -defs["structs"]["ImGuiWindowTempData"][30]["type"] = "int" +defs["structs"]["ImGuiWindowTempData"][30]["name"] = "ParentLayoutType" +defs["structs"]["ImGuiWindowTempData"][30]["type"] = "ImGuiLayoutType" defs["structs"]["ImGuiWindowTempData"][31] = {} defs["structs"]["ImGuiWindowTempData"][31]["name"] = "ItemWidth" defs["structs"]["ImGuiWindowTempData"][31]["type"] = "float" diff --git a/generator/output/typedefs_dict.json b/generator/output/typedefs_dict.json index e7334c68..9e40622f 100644 --- a/generator/output/typedefs_dict.json +++ b/generator/output/typedefs_dict.json @@ -64,6 +64,8 @@ "ImGuiLastItemData": "struct ImGuiLastItemData", "ImGuiLayoutType": "int", "ImGuiListClipper": "struct ImGuiListClipper", + "ImGuiListClipperData": "struct ImGuiListClipperData", + "ImGuiListClipperRange": "struct ImGuiListClipperRange", "ImGuiMemAllocFunc": "void*(*)(size_t sz,void* user_data);", "ImGuiMemFreeFunc": "void(*)(void* ptr,void* user_data);", "ImGuiMenuColumns": "struct ImGuiMenuColumns", diff --git a/generator/output/typedefs_dict.lua b/generator/output/typedefs_dict.lua index 9a43ee9f..656f4ace 100644 --- a/generator/output/typedefs_dict.lua +++ b/generator/output/typedefs_dict.lua @@ -64,6 +64,8 @@ defs["ImGuiKeyModFlags"] = "int" defs["ImGuiLastItemData"] = "struct ImGuiLastItemData" defs["ImGuiLayoutType"] = "int" defs["ImGuiListClipper"] = "struct ImGuiListClipper" +defs["ImGuiListClipperData"] = "struct ImGuiListClipperData" +defs["ImGuiListClipperRange"] = "struct ImGuiListClipperRange" defs["ImGuiMemAllocFunc"] = "void*(*)(size_t sz,void* user_data);" defs["ImGuiMemFreeFunc"] = "void(*)(void* ptr,void* user_data);" defs["ImGuiMenuColumns"] = "struct ImGuiMenuColumns" diff --git a/imgui b/imgui index 29653273..15b4a064 160000 --- a/imgui +++ b/imgui @@ -1 +1 @@ -Subproject commit 29653273c1c6cec453be68d9cbe625f5d5c69fe8 +Subproject commit 15b4a064f9244c430e65214f7249b615fb394321