diff --git a/README.md b/README.md index d05111c..14569e5 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.90.1 of Dear ImGui with internal api] +* currently this wrapper is based on version [1.90.2 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 aacf64c..e51d8c5 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.90.1" 19010 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.90.2" 19020 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api #ifdef IMGUI_ENABLE_FREETYPE #ifndef CIMGUI_FREETYPE @@ -3182,10 +3182,6 @@ CIMGUI_API void ImDrawDataBuilder_destroy(ImDrawDataBuilder* self) { IM_DELETE(self); } -CIMGUI_API void* ImGuiDataVarInfo_GetVarPtr(ImGuiDataVarInfo* self,void* parent) -{ - return self->GetVarPtr(parent); -} CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Int(ImGuiStyleVar idx,int v) { return IM_NEW(ImGuiStyleMod)(idx,v); @@ -3302,13 +3298,17 @@ CIMGUI_API void ImGuiInputTextState_SelectAll(ImGuiInputTextState* self) { return self->SelectAll(); } -CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void) +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndSelectAll(ImGuiInputTextState* self) { - return IM_NEW(ImGuiPopupData)(); + return self->ReloadUserBufAndSelectAll(); } -CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self) +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndKeepSelection(ImGuiInputTextState* self) { - IM_DELETE(self); + return self->ReloadUserBufAndKeepSelection(); +} +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndMoveToEnd(ImGuiInputTextState* self) +{ + return self->ReloadUserBufAndMoveToEnd(); } CIMGUI_API ImGuiNextWindowData* ImGuiNextWindowData_ImGuiNextWindowData(void) { @@ -3370,6 +3370,18 @@ CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(int index) { return IM_NEW(ImGuiPtrOrIndex)(index); } +CIMGUI_API void* ImGuiDataVarInfo_GetVarPtr(ImGuiDataVarInfo* self,void* parent) +{ + return self->GetVarPtr(parent); +} +CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void) +{ + return IM_NEW(ImGuiPopupData)(); +} +CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiInputEvent* ImGuiInputEvent_ImGuiInputEvent(void) { return IM_NEW(ImGuiInputEvent)(); @@ -3734,6 +3746,10 @@ CIMGUI_API void igSetWindowHiddenAndSkipItemsForCurrentFrame(ImGuiWindow* window { return ImGui::SetWindowHiddenAndSkipItemsForCurrentFrame(window); } +CIMGUI_API void igSetWindowParentWindowForFocusRoute(ImGuiWindow* window,ImGuiWindow* parent_window) +{ + return ImGui::SetWindowParentWindowForFocusRoute(window,parent_window); +} CIMGUI_API void igWindowRectAbsToRel(ImRect *pOut,ImGuiWindow* window,const ImRect r) { *pOut = ImGui::WindowRectAbsToRel(window,r); @@ -4186,6 +4202,10 @@ CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlag { return ImGui::NavMoveRequestTryWrapping(window,move_flags); } +CIMGUI_API void igNavHighlightActivated(ImGuiID id) +{ + return ImGui::NavHighlightActivated(id); +} CIMGUI_API void igNavClearPreferredPosForAxis(ImGuiAxis axis) { return ImGui::NavClearPreferredPosForAxis(axis); @@ -4206,6 +4226,10 @@ CIMGUI_API void igSetNavID(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scop { return ImGui::SetNavID(id,nav_layer,focus_scope_id,rect_rel); } +CIMGUI_API void igSetNavFocusScope(ImGuiID focus_scope_id) +{ + return ImGui::SetNavFocusScope(focus_scope_id); +} CIMGUI_API void igFocusItem() { return ImGui::FocusItem(); @@ -4242,9 +4266,13 @@ CIMGUI_API bool igIsAliasKey(ImGuiKey key) { return ImGui::IsAliasKey(key); } -CIMGUI_API ImGuiKeyChord igConvertShortcutMod(ImGuiKeyChord key_chord) +CIMGUI_API bool igIsModKey(ImGuiKey key) { - return ImGui::ConvertShortcutMod(key_chord); + return ImGui::IsModKey(key); +} +CIMGUI_API ImGuiKeyChord igFixupKeyChord(ImGuiContext* ctx,ImGuiKeyChord key_chord) +{ + return ImGui::FixupKeyChord(ctx,key_chord); } CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiContext* ctx,ImGuiKey key) { @@ -4258,9 +4286,9 @@ CIMGUI_API ImGuiKeyData* igGetKeyData_Key(ImGuiKey key) { return ImGui::GetKeyData(key); } -CIMGUI_API const char* igGetKeyChordName(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size) +CIMGUI_API const char* igGetKeyChordName(ImGuiKeyChord key_chord) { - return ImGui::GetKeyChordName(key_chord,out_buf,out_buf_size); + return ImGui::GetKeyChordName(key_chord); } CIMGUI_API ImGuiKey igMouseButtonToKey(ImGuiMouseButton button) { @@ -4354,6 +4382,10 @@ CIMGUI_API bool igIsKeyChordPressed_ID(ImGuiKeyChord key_chord,ImGuiID owner_id, { return ImGui::IsKeyChordPressed(key_chord,owner_id,flags); } +CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord) +{ + return ImGui::SetNextItemShortcut(key_chord); +} CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags) { return ImGui::Shortcut(key_chord,owner_id,flags); diff --git a/cimgui.h b/cimgui.h index af2a3ec..1498123 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.90.1" 19010 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.90.2" 19020 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api #ifndef CIMGUI_INCLUDED #define CIMGUI_INCLUDED @@ -291,10 +291,11 @@ typedef enum { ImGuiPopupFlags_MouseButtonMiddle = 2, ImGuiPopupFlags_MouseButtonMask_ = 0x1F, ImGuiPopupFlags_MouseButtonDefault_ = 1, - ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 5, - ImGuiPopupFlags_NoOpenOverItems = 1 << 6, - ImGuiPopupFlags_AnyPopupId = 1 << 7, - ImGuiPopupFlags_AnyPopupLevel = 1 << 8, + ImGuiPopupFlags_NoReopen = 1 << 5, + ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 7, + ImGuiPopupFlags_NoOpenOverItems = 1 << 8, + ImGuiPopupFlags_AnyPopupId = 1 << 10, + ImGuiPopupFlags_AnyPopupLevel = 1 << 11, ImGuiPopupFlags_AnyPopup = ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel, }ImGuiPopupFlags_; typedef enum { @@ -978,7 +979,6 @@ struct ImGuiIO int MetricsRenderWindows; int MetricsActiveWindows; ImVec2 MouseDelta; - void* _UnusedPadding; ImGuiContext* Ctx; ImVec2 MousePos; bool MouseDown[5]; @@ -1325,6 +1325,7 @@ typedef enum { }ImGuiViewportFlags_; struct ImGuiViewport { + ImGuiID ID; ImGuiViewportFlags Flags; ImVec2 Pos; ImVec2 Size; @@ -1605,34 +1606,6 @@ typedef enum { ImGuiPlotType_Lines, ImGuiPlotType_Histogram, }ImGuiPlotType; -typedef enum { - ImGuiPopupPositionPolicy_Default, - ImGuiPopupPositionPolicy_ComboBox, - ImGuiPopupPositionPolicy_Tooltip, -}ImGuiPopupPositionPolicy; -struct ImGuiDataVarInfo -{ - ImGuiDataType Type; - ImU32 Count; - ImU32 Offset; -}; -typedef struct ImGuiDataTypeTempStorage ImGuiDataTypeTempStorage; -struct ImGuiDataTypeTempStorage -{ - ImU8 Data[8]; -}; -struct ImGuiDataTypeInfo -{ - size_t Size; - const char* Name; - const char* PrintFmt; - const char* ScanFmt; -}; -typedef enum { - ImGuiDataType_String = ImGuiDataType_COUNT + 1, - ImGuiDataType_Pointer, - ImGuiDataType_ID, -}ImGuiDataTypePrivate_; struct ImGuiColorMod { ImGuiCol Col; @@ -1703,17 +1676,9 @@ struct ImGuiInputTextState bool SelectedAllMouseLock; bool Edited; ImGuiInputTextFlags Flags; -}; -struct ImGuiPopupData -{ - ImGuiID PopupId; - ImGuiWindow* Window; - ImGuiWindow* BackupNavWindow; - int ParentNavLayer; - int OpenFrameCount; - ImGuiID OpenParentId; - ImVec2 OpenPopupPos; - ImVec2 OpenMousePos; + bool ReloadUserBuf; + int ReloadSelectionStart; + int ReloadSelectionEnd; }; typedef enum { ImGuiNextWindowDataFlags_None = 0, @@ -1751,15 +1716,17 @@ typedef enum { ImGuiNextItemDataFlags_None = 0, ImGuiNextItemDataFlags_HasWidth = 1 << 0, ImGuiNextItemDataFlags_HasOpen = 1 << 1, + ImGuiNextItemDataFlags_HasShortcut = 1 << 2, }ImGuiNextItemDataFlags_; struct ImGuiNextItemData { ImGuiNextItemDataFlags Flags; ImGuiItemFlags ItemFlags; - float Width; ImGuiSelectionUserData SelectionUserData; - ImGuiCond OpenCond; + float Width; + ImGuiKeyChord Shortcut; bool OpenVal; + ImGuiCond OpenCond : 8; }; struct ImGuiLastItemData { @@ -1809,6 +1776,45 @@ struct ImGuiPtrOrIndex void* Ptr; int Index; }; +struct ImGuiDataVarInfo +{ + ImGuiDataType Type; + ImU32 Count; + ImU32 Offset; +}; +typedef struct ImGuiDataTypeTempStorage ImGuiDataTypeTempStorage; +struct ImGuiDataTypeTempStorage +{ + ImU8 Data[8]; +}; +struct ImGuiDataTypeInfo +{ + size_t Size; + const char* Name; + const char* PrintFmt; + const char* ScanFmt; +}; +typedef enum { + ImGuiDataType_String = ImGuiDataType_COUNT + 1, + ImGuiDataType_Pointer, + ImGuiDataType_ID, +}ImGuiDataTypePrivate_; +typedef enum { + ImGuiPopupPositionPolicy_Default, + ImGuiPopupPositionPolicy_ComboBox, + ImGuiPopupPositionPolicy_Tooltip, +}ImGuiPopupPositionPolicy; +struct ImGuiPopupData +{ + ImGuiID PopupId; + ImGuiWindow* Window; + ImGuiWindow* BackupNavWindow; + int ParentNavLayer; + int OpenFrameCount; + ImGuiID OpenParentId; + ImVec2 OpenPopupPos; + ImVec2 OpenMousePos; +}; typedef struct ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN {ImU32 Storage[(ImGuiKey_NamedKey_COUNT+31)>>5];} ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN; typedef ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN ImBitArrayForNamedKeys; @@ -1877,6 +1883,7 @@ struct ImGuiKeyRoutingData { ImGuiKeyRoutingIndex NextEntryIndex; ImU16 Mods; + ImU8 RoutingCurrScore; ImU8 RoutingNextScore; ImGuiID RoutingCurr; ImGuiID RoutingNext; @@ -1911,23 +1918,22 @@ typedef enum { ImGuiInputFlags_CondHovered = 1 << 8, ImGuiInputFlags_CondActive = 1 << 9, ImGuiInputFlags_CondDefault_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, - ImGuiInputFlags_CondMask_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, ImGuiInputFlags_LockThisFrame = 1 << 10, ImGuiInputFlags_LockUntilRelease = 1 << 11, ImGuiInputFlags_RouteFocused = 1 << 12, ImGuiInputFlags_RouteGlobalLow = 1 << 13, ImGuiInputFlags_RouteGlobal = 1 << 14, ImGuiInputFlags_RouteGlobalHigh = 1 << 15, - ImGuiInputFlags_RouteMask_ = ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh, ImGuiInputFlags_RouteAlways = 1 << 16, ImGuiInputFlags_RouteUnlessBgFocused= 1 << 17, - ImGuiInputFlags_RouteExtraMask_ = ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused, ImGuiInputFlags_RepeatRateMask_ = ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak, ImGuiInputFlags_RepeatUntilMask_ = ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress, ImGuiInputFlags_RepeatMask_ = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_, + ImGuiInputFlags_CondMask_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, + ImGuiInputFlags_RouteMask_ = ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh, ImGuiInputFlags_SupportedByIsKeyPressed = ImGuiInputFlags_RepeatMask_, ImGuiInputFlags_SupportedByIsMouseClicked = ImGuiInputFlags_Repeat, - ImGuiInputFlags_SupportedByShortcut = ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_, + ImGuiInputFlags_SupportedByShortcut = ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused, ImGuiInputFlags_SupportedBySetKeyOwner = ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease, ImGuiInputFlags_SupportedBySetItemKeyOwner = ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_, }ImGuiInputFlags_; @@ -1957,6 +1963,7 @@ typedef enum { ImGuiActivateFlags_PreferTweak = 1 << 1, ImGuiActivateFlags_TryToPreserveState = 1 << 2, ImGuiActivateFlags_FromTabbing = 1 << 3, + ImGuiActivateFlags_FromShortcut = 1 << 4, }ImGuiActivateFlags_; typedef enum { ImGuiScrollFlags_None = 0, @@ -1972,8 +1979,7 @@ typedef enum { }ImGuiScrollFlags_; typedef enum { ImGuiNavHighlightFlags_None = 0, - ImGuiNavHighlightFlags_TypeDefault = 1 << 0, - ImGuiNavHighlightFlags_TypeThin = 1 << 1, + ImGuiNavHighlightFlags_Compact = 1 << 1, ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2, ImGuiNavHighlightFlags_NoRounding = 1 << 3, }ImGuiNavHighlightFlags_; @@ -2013,6 +2019,12 @@ struct ImGuiNavItemData float DistCenter; float DistAxial; }; +typedef struct ImGuiFocusScopeData ImGuiFocusScopeData; +struct ImGuiFocusScopeData +{ + ImGuiID ID; + ImGuiID WindowID; +}; typedef enum { ImGuiTypingSelectFlags_None = 0, ImGuiTypingSelectFlags_AllowBackspace = 1 << 0, @@ -2131,7 +2143,8 @@ typedef enum { ImGuiDebugLogFlags_EventClipper = 1 << 4, ImGuiDebugLogFlags_EventSelection = 1 << 5, ImGuiDebugLogFlags_EventIO = 1 << 6, - ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO, + ImGuiDebugLogFlags_EventInputRouting = 1 << 7, + ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting, ImGuiDebugLogFlags_OutputToTTY = 1 << 20, ImGuiDebugLogFlags_OutputToTestEngine = 1 << 21, }ImGuiDebugLogFlags_; @@ -2163,6 +2176,8 @@ struct ImGuiMetricsConfig bool ShowAtlasTintedWithTextColor; int ShowWindowsRectsType; int ShowTablesRectsType; + int HighlightMonitorIdx; + ImGuiID HighlightViewportID; }; typedef struct ImGuiStackLevelInfo ImGuiStackLevelInfo; struct ImGuiStackLevelInfo @@ -2205,7 +2220,7 @@ typedef struct ImVector_ImGuiColorMod {int Size;int Capacity;ImGuiColorMod* Data typedef struct ImVector_ImGuiStyleMod {int Size;int Capacity;ImGuiStyleMod* Data;} ImVector_ImGuiStyleMod; -typedef struct ImVector_ImGuiID {int Size;int Capacity;ImGuiID* Data;} ImVector_ImGuiID; +typedef struct ImVector_ImGuiFocusScopeData {int Size;int Capacity;ImGuiFocusScopeData* Data;} ImVector_ImGuiFocusScopeData; typedef struct ImVector_ImGuiItemFlags {int Size;int Capacity;ImGuiItemFlags* Data;} ImVector_ImGuiItemFlags; @@ -2235,6 +2250,8 @@ typedef struct ImVector_ImGuiPtrOrIndex {int Size;int Capacity;ImGuiPtrOrIndex* typedef struct ImVector_ImGuiShrinkWidthItem {int Size;int Capacity;ImGuiShrinkWidthItem* Data;} ImVector_ImGuiShrinkWidthItem; +typedef struct ImVector_ImGuiID {int Size;int Capacity;ImGuiID* Data;} ImVector_ImGuiID; + typedef struct ImVector_ImGuiSettingsHandler {int Size;int Capacity;ImGuiSettingsHandler* Data;} ImVector_ImGuiSettingsHandler; typedef struct ImChunkStream_ImGuiWindowSettings {ImVector_char Buf;} ImChunkStream_ImGuiWindowSettings; @@ -2302,10 +2319,11 @@ struct ImGuiContext bool ActiveIdHasBeenPressedBefore; bool ActiveIdHasBeenEditedBefore; bool ActiveIdHasBeenEditedThisFrame; + bool ActiveIdFromShortcut; + int ActiveIdMouseButton : 8; ImVec2 ActiveIdClickOffset; ImGuiWindow* ActiveIdWindow; ImGuiInputSource ActiveIdSource; - int ActiveIdMouseButton; ImGuiID ActiveIdPreviousFrame; bool ActiveIdPreviousFrameIsAlive; bool ActiveIdPreviousFrameHasBeenEditedBefore; @@ -2315,6 +2333,7 @@ struct ImGuiContext double LastKeyModsChangeTime; double LastKeyModsChangeFromNoneTime; double LastKeyboardKeyPressTime; + ImBitArrayForNamedKeys KeysMayBeCharInput; ImGuiKeyOwnerData KeysOwnerData[ImGuiKey_NamedKey_COUNT]; ImGuiKeyRoutingTable KeysRoutingTable; ImU32 ActiveIdUsingNavDirMask; @@ -2331,21 +2350,23 @@ struct ImGuiContext ImVector_ImGuiColorMod ColorStack; ImVector_ImGuiStyleMod StyleVarStack; ImVector_ImFontPtr FontStack; - ImVector_ImGuiID FocusScopeStack; + ImVector_ImGuiFocusScopeData FocusScopeStack; ImVector_ImGuiItemFlags ItemFlagsStack; ImVector_ImGuiGroupData GroupStack; ImVector_ImGuiPopupData OpenPopupStack; ImVector_ImGuiPopupData BeginPopupStack; ImVector_ImGuiNavTreeNodeData NavTreeNodeStack; - int BeginMenuCount; ImVector_ImGuiViewportPPtr Viewports; ImGuiWindow* NavWindow; ImGuiID NavId; ImGuiID NavFocusScopeId; + ImVector_ImGuiFocusScopeData NavFocusRoute; ImGuiID NavActivateId; ImGuiID NavActivateDownId; ImGuiID NavActivatePressedId; ImGuiActivateFlags NavActivateFlags; + ImGuiID NavHighlightActivatedId; + float NavHighlightActivatedTimer; ImGuiID NavJustMovedToId; ImGuiID NavJustMovedToFocusScopeId; ImGuiKeyChord NavJustMovedToKeyMods; @@ -2388,6 +2409,7 @@ struct ImGuiContext float NavWindowingTimer; float NavWindowingHighlightAlpha; bool NavWindowingToggleLayer; + ImGuiKey NavWindowingToggleKey; ImVec2 NavWindowingAccumDeltaPos; ImVec2 NavWindowingAccumDeltaSize; float DimBgRatio; @@ -2435,6 +2457,8 @@ struct ImGuiContext ImGuiInputTextDeactivatedState InputTextDeactivatedState; ImFont InputTextPasswordFont; ImGuiID TempInputId; + int BeginMenuDepth; + int BeginComboDepth; ImGuiColorEditFlags ColorEditOptions; ImGuiID ColorEditCurrentID; ImGuiID ColorEditSavedID; @@ -2506,6 +2530,7 @@ struct ImGuiContext int WantCaptureKeyboardNextFrame; int WantTextInputNextFrame; ImVector_char TempBuffer; + char TempKeychordName[64]; }; struct ImGuiWindowTempData { @@ -2635,6 +2660,7 @@ struct ImGuiWindow ImGuiWindow* RootWindowPopupTree; ImGuiWindow* RootWindowForTitleBarHighlight; ImGuiWindow* RootWindowForNav; + ImGuiWindow* ParentWindowForFocusRoute; ImGuiWindow* NavLastChildNavWindow; ImGuiID NavLastIds[ImGuiNavLayer_COUNT]; ImRect NavRectRel[ImGuiNavLayer_COUNT]; @@ -2965,6 +2991,7 @@ typedef ImVector ImVector_ImFontConfig; typedef ImVector ImVector_ImFontGlyph; typedef ImVector ImVector_ImGuiColorMod; typedef ImVector ImVector_ImGuiContextHook; +typedef ImVector ImVector_ImGuiFocusScopeData; typedef ImVector ImVector_ImGuiGroupData; typedef ImVector ImVector_ImGuiID; typedef ImVector ImVector_ImGuiInputEvent; @@ -3779,7 +3806,6 @@ CIMGUI_API void ImDrawListSharedData_destroy(ImDrawListSharedData* self); CIMGUI_API void ImDrawListSharedData_SetCircleTessellationMaxError(ImDrawListSharedData* self,float max_error); CIMGUI_API ImDrawDataBuilder* ImDrawDataBuilder_ImDrawDataBuilder(void); CIMGUI_API void ImDrawDataBuilder_destroy(ImDrawDataBuilder* self); -CIMGUI_API void* ImGuiDataVarInfo_GetVarPtr(ImGuiDataVarInfo* self,void* parent); CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Int(ImGuiStyleVar idx,int v); CIMGUI_API void ImGuiStyleMod_destroy(ImGuiStyleMod* self); CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Float(ImGuiStyleVar idx,float v); @@ -3809,8 +3835,9 @@ CIMGUI_API int ImGuiInputTextState_GetCursorPos(ImGuiInputTextState* self); CIMGUI_API int ImGuiInputTextState_GetSelectionStart(ImGuiInputTextState* self); CIMGUI_API int ImGuiInputTextState_GetSelectionEnd(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_SelectAll(ImGuiInputTextState* self); -CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void); -CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndSelectAll(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndKeepSelection(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndMoveToEnd(ImGuiInputTextState* self); CIMGUI_API ImGuiNextWindowData* ImGuiNextWindowData_ImGuiNextWindowData(void); CIMGUI_API void ImGuiNextWindowData_destroy(ImGuiNextWindowData* self); CIMGUI_API void ImGuiNextWindowData_ClearFlags(ImGuiNextWindowData* self); @@ -3826,6 +3853,9 @@ CIMGUI_API void ImGuiStackSizes_CompareWithContextState(ImGuiStackSizes* self,Im 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 void* ImGuiDataVarInfo_GetVarPtr(ImGuiDataVarInfo* self,void* parent); +CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void); +CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self); CIMGUI_API ImGuiInputEvent* ImGuiInputEvent_ImGuiInputEvent(void); CIMGUI_API void ImGuiInputEvent_destroy(ImGuiInputEvent* self); CIMGUI_API ImGuiKeyRoutingData* ImGuiKeyRoutingData_ImGuiKeyRoutingData(void); @@ -3917,6 +3947,7 @@ CIMGUI_API void igSetWindowSize_WindowPtr(ImGuiWindow* window,const ImVec2 size, 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 igSetWindowHiddenAndSkipItemsForCurrentFrame(ImGuiWindow* window); +CIMGUI_API void igSetWindowParentWindowForFocusRoute(ImGuiWindow* window,ImGuiWindow* parent_window); CIMGUI_API void igWindowRectAbsToRel(ImRect *pOut,ImGuiWindow* window,const ImRect r); CIMGUI_API void igWindowRectRelToAbs(ImRect *pOut,ImGuiWindow* window,const ImRect r); CIMGUI_API void igWindowPosRelToAbs(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p); @@ -4030,11 +4061,13 @@ CIMGUI_API void igNavMoveRequestResolveWithPastTreeNode(ImGuiNavItemData* result CIMGUI_API void igNavMoveRequestCancel(void); CIMGUI_API void igNavMoveRequestApplyResult(void); CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlags move_flags); +CIMGUI_API void igNavHighlightActivated(ImGuiID id); CIMGUI_API void igNavClearPreferredPosForAxis(ImGuiAxis axis); CIMGUI_API void igNavRestoreHighlightAfterMove(void); CIMGUI_API void igNavUpdateCurrentWindowIsScrollPushableX(void); CIMGUI_API void igSetNavWindow(ImGuiWindow* window); CIMGUI_API void igSetNavID(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel); +CIMGUI_API void igSetNavFocusScope(ImGuiID focus_scope_id); CIMGUI_API void igFocusItem(void); CIMGUI_API void igActivateItemByID(ImGuiID id); CIMGUI_API bool igIsNamedKey(ImGuiKey key); @@ -4044,11 +4077,12 @@ CIMGUI_API bool igIsKeyboardKey(ImGuiKey key); CIMGUI_API bool igIsGamepadKey(ImGuiKey key); CIMGUI_API bool igIsMouseKey(ImGuiKey key); CIMGUI_API bool igIsAliasKey(ImGuiKey key); -CIMGUI_API ImGuiKeyChord igConvertShortcutMod(ImGuiKeyChord key_chord); +CIMGUI_API bool igIsModKey(ImGuiKey key); +CIMGUI_API ImGuiKeyChord igFixupKeyChord(ImGuiContext* ctx,ImGuiKeyChord key_chord); CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiContext* ctx,ImGuiKey key); CIMGUI_API ImGuiKeyData* igGetKeyData_ContextPtr(ImGuiContext* ctx,ImGuiKey key); CIMGUI_API ImGuiKeyData* igGetKeyData_Key(ImGuiKey key); -CIMGUI_API const char* igGetKeyChordName(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size); +CIMGUI_API const char* igGetKeyChordName(ImGuiKeyChord key_chord); CIMGUI_API ImGuiKey igMouseButtonToKey(ImGuiMouseButton button); CIMGUI_API bool igIsMouseDragPastThreshold(ImGuiMouseButton button,float lock_threshold); CIMGUI_API void igGetKeyMagnitude2d(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down); @@ -4072,6 +4106,7 @@ CIMGUI_API bool igIsMouseClicked_ID(ImGuiMouseButton button,ImGuiID owner_id,ImG CIMGUI_API bool igIsMouseReleased_ID(ImGuiMouseButton button,ImGuiID owner_id); CIMGUI_API bool igIsMouseDoubleClicked_ID(ImGuiMouseButton button,ImGuiID owner_id); CIMGUI_API bool igIsKeyChordPressed_ID(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord); CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags); CIMGUI_API bool igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags); CIMGUI_API bool igTestShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id); diff --git a/generator/generator.lua b/generator/generator.lua index 6e15e92..b965d0e 100644 --- a/generator/generator.lua +++ b/generator/generator.lua @@ -33,7 +33,7 @@ if FREETYPE_GENERATION then CFLAGS = CFLAGS .. " -DIMGUI_ENABLE_FREETYPE " end -if COMPILER == "gcc" or COMPILER == "clang" then +if COMPILER == "gcc" or COMPILER == "clang" or COMPILER == "zig cc" then CPRE = COMPILER..[[ -E -DIMGUI_DISABLE_OBSOLETE_FUNCTIONS -DIMGUI_API="" -DIMGUI_IMPL_API="" ]] .. CFLAGS CTEST = COMPILER.." --version" elseif COMPILER == "cl" then diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 1c2bb30..bbcac26 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -13,7 +13,7 @@ "cimguiname": "ImBitArray_ClearAllBits", "defaults": {}, "funcname": "ClearAllBits", - "location": "imgui_internal:588", + "location": "imgui_internal:591", "ov_cimguiname": "ImBitArray_ClearAllBits", "ret": "void", "signature": "()", @@ -39,7 +39,7 @@ "cimguiname": "ImBitArray_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:592", + "location": "imgui_internal:595", "ov_cimguiname": "ImBitArray_ClearBit", "ret": "void", "signature": "(int)", @@ -57,7 +57,7 @@ "constructor": true, "defaults": {}, "funcname": "ImBitArray", - "location": "imgui_internal:587", + "location": "imgui_internal:590", "ov_cimguiname": "ImBitArray_ImBitArray", "signature": "()", "stname": "ImBitArray", @@ -78,7 +78,7 @@ "cimguiname": "ImBitArray_SetAllBits", "defaults": {}, "funcname": "SetAllBits", - "location": "imgui_internal:589", + "location": "imgui_internal:592", "ov_cimguiname": "ImBitArray_SetAllBits", "ret": "void", "signature": "()", @@ -104,7 +104,7 @@ "cimguiname": "ImBitArray_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:591", + "location": "imgui_internal:594", "ov_cimguiname": "ImBitArray_SetBit", "ret": "void", "signature": "(int)", @@ -134,7 +134,7 @@ "cimguiname": "ImBitArray_SetBitRange", "defaults": {}, "funcname": "SetBitRange", - "location": "imgui_internal:593", + "location": "imgui_internal:596", "ov_cimguiname": "ImBitArray_SetBitRange", "ret": "void", "signature": "(int,int)", @@ -160,7 +160,7 @@ "cimguiname": "ImBitArray_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:590", + "location": "imgui_internal:593", "ov_cimguiname": "ImBitArray_TestBit", "ret": "bool", "signature": "(int)const", @@ -202,7 +202,7 @@ "cimguiname": "ImBitVector_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:603", + "location": "imgui_internal:606", "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -227,7 +227,7 @@ "cimguiname": "ImBitVector_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:606", + "location": "imgui_internal:609", "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -252,7 +252,7 @@ "cimguiname": "ImBitVector_Create", "defaults": {}, "funcname": "Create", - "location": "imgui_internal:602", + "location": "imgui_internal:605", "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -277,7 +277,7 @@ "cimguiname": "ImBitVector_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:605", + "location": "imgui_internal:608", "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -302,7 +302,7 @@ "cimguiname": "ImBitVector_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:604", + "location": "imgui_internal:607", "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -5284,7 +5284,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiComboPreviewData", - "location": "imgui_internal:1052", + "location": "imgui_internal:1015", "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", "signature": "()", "stname": "ImGuiComboPreviewData" @@ -5319,7 +5319,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContextHook", - "location": "imgui_internal:1868", + "location": "imgui_internal:1911", "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5359,7 +5359,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", - "location": "imgui_internal:2194", + "location": "imgui_internal:2245", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5402,7 +5402,7 @@ "cimguiname": "ImGuiDataVarInfo_GetVarPtr", "defaults": {}, "funcname": "GetVarPtr", - "location": "imgui_internal:1000", + "location": "imgui_internal:1254", "ov_cimguiname": "ImGuiDataVarInfo_GetVarPtr", "ret": "void*", "signature": "(void*)const", @@ -5419,7 +5419,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDebugAllocInfo", - "location": "imgui_internal:1811", + "location": "imgui_internal:1852", "ov_cimguiname": "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", "signature": "()", "stname": "ImGuiDebugAllocInfo" @@ -5454,7 +5454,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIDStackTool", - "location": "imgui_internal:1850", + "location": "imgui_internal:1893", "ov_cimguiname": "ImGuiIDStackTool_ImGuiIDStackTool", "signature": "()", "stname": "ImGuiIDStackTool" @@ -5497,7 +5497,7 @@ "cimguiname": "ImGuiIO_AddFocusEvent", "defaults": {}, "funcname": "AddFocusEvent", - "location": "imgui:2150", + "location": "imgui:2154", "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -5522,7 +5522,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:2151", + "location": "imgui:2155", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -5547,7 +5547,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:2152", + "location": "imgui:2156", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -5572,7 +5572,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:2153", + "location": "imgui:2157", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -5605,7 +5605,7 @@ "cimguiname": "ImGuiIO_AddKeyAnalogEvent", "defaults": {}, "funcname": "AddKeyAnalogEvent", - "location": "imgui:2145", + "location": "imgui:2149", "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -5634,7 +5634,7 @@ "cimguiname": "ImGuiIO_AddKeyEvent", "defaults": {}, "funcname": "AddKeyEvent", - "location": "imgui:2144", + "location": "imgui:2148", "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -5663,7 +5663,7 @@ "cimguiname": "ImGuiIO_AddMouseButtonEvent", "defaults": {}, "funcname": "AddMouseButtonEvent", - "location": "imgui:2147", + "location": "imgui:2151", "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -5692,7 +5692,7 @@ "cimguiname": "ImGuiIO_AddMousePosEvent", "defaults": {}, "funcname": "AddMousePosEvent", - "location": "imgui:2146", + "location": "imgui:2150", "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", @@ -5717,7 +5717,7 @@ "cimguiname": "ImGuiIO_AddMouseSourceEvent", "defaults": {}, "funcname": "AddMouseSourceEvent", - "location": "imgui:2149", + "location": "imgui:2153", "ov_cimguiname": "ImGuiIO_AddMouseSourceEvent", "ret": "void", "signature": "(ImGuiMouseSource)", @@ -5746,7 +5746,7 @@ "cimguiname": "ImGuiIO_AddMouseWheelEvent", "defaults": {}, "funcname": "AddMouseWheelEvent", - "location": "imgui:2148", + "location": "imgui:2152", "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", @@ -5767,7 +5767,7 @@ "cimguiname": "ImGuiIO_ClearEventsQueue", "defaults": {}, "funcname": "ClearEventsQueue", - "location": "imgui:2157", + "location": "imgui:2161", "ov_cimguiname": "ImGuiIO_ClearEventsQueue", "ret": "void", "signature": "()", @@ -5788,7 +5788,7 @@ "cimguiname": "ImGuiIO_ClearInputKeys", "defaults": {}, "funcname": "ClearInputKeys", - "location": "imgui:2158", + "location": "imgui:2162", "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", @@ -5829,7 +5829,7 @@ "cimguiname": "ImGuiIO_SetAppAcceptingEvents", "defaults": {}, "funcname": "SetAppAcceptingEvents", - "location": "imgui:2156", + "location": "imgui:2160", "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -5868,7 +5868,7 @@ "native_legacy_index": "-1" }, "funcname": "SetKeyEventNativeData", - "location": "imgui:2155", + "location": "imgui:2159", "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -5904,7 +5904,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputEvent", - "location": "imgui_internal:1358", + "location": "imgui_internal:1381", "ov_cimguiname": "ImGuiInputEvent_ImGuiInputEvent", "signature": "()", "stname": "ImGuiInputEvent" @@ -6105,7 +6105,7 @@ "cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1098", + "location": "imgui_internal:1061", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6122,7 +6122,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextDeactivatedState", - "location": "imgui_internal:1097", + "location": "imgui_internal:1060", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", "signature": "()", "stname": "ImGuiInputTextDeactivatedState" @@ -6161,7 +6161,7 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1122", + "location": "imgui_internal:1088", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6182,7 +6182,7 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui_internal:1131", + "location": "imgui_internal:1097", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -6203,7 +6203,7 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": {}, "funcname": "ClearText", - "location": "imgui_internal:1121", + "location": "imgui_internal:1087", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -6224,7 +6224,7 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", - "location": "imgui_internal:1128", + "location": "imgui_internal:1094", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -6245,7 +6245,7 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", - "location": "imgui_internal:1129", + "location": "imgui_internal:1095", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -6266,7 +6266,7 @@ "cimguiname": "ImGuiInputTextState_GetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui_internal:1132", + "location": "imgui_internal:1098", "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", "ret": "int", "signature": "()const", @@ -6287,7 +6287,7 @@ "cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "defaults": {}, "funcname": "GetRedoAvailCount", - "location": "imgui_internal:1124", + "location": "imgui_internal:1090", "ov_cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "ret": "int", "signature": "()const", @@ -6308,7 +6308,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionEnd", "defaults": {}, "funcname": "GetSelectionEnd", - "location": "imgui_internal:1134", + "location": "imgui_internal:1100", "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", @@ -6329,7 +6329,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionStart", "defaults": {}, "funcname": "GetSelectionStart", - "location": "imgui_internal:1133", + "location": "imgui_internal:1099", "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", "ret": "int", "signature": "()const", @@ -6350,7 +6350,7 @@ "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "defaults": {}, "funcname": "GetUndoAvailCount", - "location": "imgui_internal:1123", + "location": "imgui_internal:1089", "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "ret": "int", "signature": "()const", @@ -6371,7 +6371,7 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui_internal:1130", + "location": "imgui_internal:1096", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -6388,7 +6388,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextState", - "location": "imgui_internal:1120", + "location": "imgui_internal:1086", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "signature": "()", "stname": "ImGuiInputTextState" @@ -6412,13 +6412,76 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": {}, "funcname": "OnKeyPressed", - "location": "imgui_internal:1125", + "location": "imgui_internal:1091", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", "stname": "ImGuiInputTextState" } ], + "ImGuiInputTextState_ReloadUserBufAndKeepSelection": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", + "defaults": {}, + "funcname": "ReloadUserBufAndKeepSelection", + "location": "imgui_internal:1109", + "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], + "ImGuiInputTextState_ReloadUserBufAndMoveToEnd": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", + "defaults": {}, + "funcname": "ReloadUserBufAndMoveToEnd", + "location": "imgui_internal:1110", + "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], + "ImGuiInputTextState_ReloadUserBufAndSelectAll": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", + "defaults": {}, + "funcname": "ReloadUserBufAndSelectAll", + "location": "imgui_internal:1108", + "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], "ImGuiInputTextState_SelectAll": [ { "args": "(ImGuiInputTextState* self)", @@ -6433,7 +6496,7 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui_internal:1135", + "location": "imgui_internal:1101", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -6469,7 +6532,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyOwnerData", - "location": "imgui_internal:1400", + "location": "imgui_internal:1424", "ov_cimguiname": "ImGuiKeyOwnerData_ImGuiKeyOwnerData", "signature": "()", "stname": "ImGuiKeyOwnerData" @@ -6504,7 +6567,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingData", - "location": "imgui_internal:1376", + "location": "imgui_internal:1400", "ov_cimguiname": "ImGuiKeyRoutingData_ImGuiKeyRoutingData", "signature": "()", "stname": "ImGuiKeyRoutingData" @@ -6543,7 +6606,7 @@ "cimguiname": "ImGuiKeyRoutingTable_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1388", + "location": "imgui_internal:1412", "ov_cimguiname": "ImGuiKeyRoutingTable_Clear", "ret": "void", "signature": "()", @@ -6560,7 +6623,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingTable", - "location": "imgui_internal:1387", + "location": "imgui_internal:1411", "ov_cimguiname": "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", "signature": "()", "stname": "ImGuiKeyRoutingTable" @@ -6595,7 +6658,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiLastItemData", - "location": "imgui_internal:1228", + "location": "imgui_internal:1191", "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", "stname": "ImGuiLastItemData" @@ -6630,7 +6693,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipperData", - "location": "imgui_internal:1487", + "location": "imgui_internal:1521", "ov_cimguiname": "ImGuiListClipperData_ImGuiListClipperData", "signature": "()", "stname": "ImGuiListClipperData" @@ -6654,7 +6717,7 @@ "cimguiname": "ImGuiListClipperData_Reset", "defaults": {}, "funcname": "Reset", - "location": "imgui_internal:1488", + "location": "imgui_internal:1522", "ov_cimguiname": "ImGuiListClipperData_Reset", "ret": "void", "signature": "(ImGuiListClipper*)", @@ -6699,7 +6762,7 @@ "defaults": {}, "funcname": "FromIndices", "is_static_function": true, - "location": "imgui_internal:1474", + "location": "imgui_internal:1508", "ov_cimguiname": "ImGuiListClipperRange_FromIndices", "ret": "ImGuiListClipperRange", "signature": "(int,int)", @@ -6733,7 +6796,7 @@ "defaults": {}, "funcname": "FromPositions", "is_static_function": true, - "location": "imgui_internal:1475", + "location": "imgui_internal:1509", "ov_cimguiname": "ImGuiListClipperRange_FromPositions", "ret": "ImGuiListClipperRange", "signature": "(float,float,int,int)", @@ -6922,7 +6985,7 @@ "cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "defaults": {}, "funcname": "CalcNextTotalWidth", - "location": "imgui_internal:1088", + "location": "imgui_internal:1051", "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "ret": "void", "signature": "(bool)", @@ -6959,7 +7022,7 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", - "location": "imgui_internal:1087", + "location": "imgui_internal:1050", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float,float)", @@ -6976,7 +7039,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", - "location": "imgui_internal:1085", + "location": "imgui_internal:1048", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -7004,7 +7067,7 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", - "location": "imgui_internal:1086", + "location": "imgui_internal:1049", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(float,bool)", @@ -7044,7 +7107,7 @@ "cimguiname": "ImGuiNavItemData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1569", + "location": "imgui_internal:1603", "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", @@ -7061,7 +7124,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNavItemData", - "location": "imgui_internal:1568", + "location": "imgui_internal:1602", "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", "stname": "ImGuiNavItemData" @@ -7100,7 +7163,7 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1213", + "location": "imgui_internal:1176", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -7117,7 +7180,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", - "location": "imgui_internal:1212", + "location": "imgui_internal:1175", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -7156,7 +7219,7 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1188", + "location": "imgui_internal:1149", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -7173,7 +7236,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", - "location": "imgui_internal:1187", + "location": "imgui_internal:1148", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -7208,7 +7271,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumnData", - "location": "imgui_internal:1641", + "location": "imgui_internal:1681", "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -7243,7 +7306,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumns", - "location": "imgui_internal:1662", + "location": "imgui_internal:1702", "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -7436,7 +7499,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformImeData", - "location": "imgui:3153", + "location": "imgui:3154", "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -7471,7 +7534,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", - "location": "imgui_internal:1150", + "location": "imgui_internal:1302", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -7511,7 +7574,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1278", + "location": "imgui_internal:1241", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -7530,7 +7593,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1279", + "location": "imgui_internal:1242", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -7565,7 +7628,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", - "location": "imgui_internal:1748", + "location": "imgui_internal:1788", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -7600,7 +7663,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackLevelInfo", - "location": "imgui_internal:1837", + "location": "imgui_internal:1880", "ov_cimguiname": "ImGuiStackLevelInfo_ImGuiStackLevelInfo", "signature": "()", "stname": "ImGuiStackLevelInfo" @@ -7643,7 +7706,7 @@ "cimguiname": "ImGuiStackSizes_CompareWithContextState", "defaults": {}, "funcname": "CompareWithContextState", - "location": "imgui_internal:1255", + "location": "imgui_internal:1218", "ov_cimguiname": "ImGuiStackSizes_CompareWithContextState", "ret": "void", "signature": "(ImGuiContext*)", @@ -7660,7 +7723,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackSizes", - "location": "imgui_internal:1253", + "location": "imgui_internal:1216", "ov_cimguiname": "ImGuiStackSizes_ImGuiStackSizes", "signature": "()", "stname": "ImGuiStackSizes" @@ -7684,7 +7747,7 @@ "cimguiname": "ImGuiStackSizes_SetToContextState", "defaults": {}, "funcname": "SetToContextState", - "location": "imgui_internal:1254", + "location": "imgui_internal:1217", "ov_cimguiname": "ImGuiStackSizes_SetToContextState", "ret": "void", "signature": "(ImGuiContext*)", @@ -8244,7 +8307,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1037", + "location": "imgui_internal:1000", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Int", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -8267,7 +8330,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1038", + "location": "imgui_internal:1001", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Float", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -8290,7 +8353,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1039", + "location": "imgui_internal:1002", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Vec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -8325,7 +8388,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:2028", + "location": "imgui:2032", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -8349,7 +8412,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:2029", + "location": "imgui:2033", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -8385,7 +8448,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", - "location": "imgui_internal:2636", + "location": "imgui_internal:2693", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -8420,7 +8483,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", - "location": "imgui_internal:2596", + "location": "imgui_internal:2653", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -8455,7 +8518,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSettings", - "location": "imgui_internal:2891", + "location": "imgui_internal:2948", "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -8490,7 +8553,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:1864", + "location": "imgui:1868", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -8525,7 +8588,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumn", - "location": "imgui_internal:2698", + "location": "imgui_internal:2755", "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -8560,7 +8623,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableInstanceData", - "location": "imgui_internal:2730", + "location": "imgui_internal:2787", "ov_cimguiname": "ImGuiTableInstanceData_ImGuiTableInstanceData", "signature": "()", "stname": "ImGuiTableInstanceData" @@ -8599,7 +8662,7 @@ "cimguiname": "ImGuiTableSettings_GetColumnSettings", "defaults": {}, "funcname": "GetColumnSettings", - "location": "imgui_internal:2914", + "location": "imgui_internal:2971", "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -8616,7 +8679,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSettings", - "location": "imgui_internal:2913", + "location": "imgui_internal:2970", "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -8651,7 +8714,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:1853", + "location": "imgui:1857", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -8686,7 +8749,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableTempData", - "location": "imgui_internal:2876", + "location": "imgui_internal:2933", "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", "signature": "()", "stname": "ImGuiTableTempData" @@ -8721,7 +8784,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTable", - "location": "imgui_internal:2850", + "location": "imgui_internal:2907", "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -8740,7 +8803,7 @@ "cimguiname": "ImGuiTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2851", + "location": "imgui_internal:2908", "ov_cimguiname": "ImGuiTable_destroy", "realdestructor": true, "ret": "void", @@ -9448,7 +9511,7 @@ "cimguiname": "ImGuiTypingSelectState_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1606", + "location": "imgui_internal:1646", "ov_cimguiname": "ImGuiTypingSelectState_Clear", "ret": "void", "signature": "()", @@ -9465,7 +9528,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTypingSelectState", - "location": "imgui_internal:1605", + "location": "imgui_internal:1645", "ov_cimguiname": "ImGuiTypingSelectState_ImGuiTypingSelectState", "signature": "()", "stname": "ImGuiTypingSelectState" @@ -9512,7 +9575,7 @@ "cimguiname": "ImGuiViewportP_CalcWorkRectPos", "defaults": {}, "funcname": "CalcWorkRectPos", - "location": "imgui_internal:1705", + "location": "imgui_internal:1745", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", "ret": "void", @@ -9546,7 +9609,7 @@ "cimguiname": "ImGuiViewportP_CalcWorkRectSize", "defaults": {}, "funcname": "CalcWorkRectSize", - "location": "imgui_internal:1706", + "location": "imgui_internal:1746", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", "ret": "void", @@ -9572,7 +9635,7 @@ "cimguiname": "ImGuiViewportP_GetBuildWorkRect", "defaults": {}, "funcname": "GetBuildWorkRect", - "location": "imgui_internal:1712", + "location": "imgui_internal:1752", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", "ret": "void", @@ -9598,7 +9661,7 @@ "cimguiname": "ImGuiViewportP_GetMainRect", "defaults": {}, "funcname": "GetMainRect", - "location": "imgui_internal:1710", + "location": "imgui_internal:1750", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "void", @@ -9624,7 +9687,7 @@ "cimguiname": "ImGuiViewportP_GetWorkRect", "defaults": {}, "funcname": "GetWorkRect", - "location": "imgui_internal:1711", + "location": "imgui_internal:1751", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "void", @@ -9642,7 +9705,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewportP", - "location": "imgui_internal:1701", + "location": "imgui_internal:1741", "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -9662,7 +9725,7 @@ "cimguiname": "ImGuiViewportP_UpdateWorkRect", "defaults": {}, "funcname": "UpdateWorkRect", - "location": "imgui_internal:1707", + "location": "imgui_internal:1747", "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -9682,7 +9745,7 @@ "cimguiname": "ImGuiViewportP_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1702", + "location": "imgui_internal:1742", "ov_cimguiname": "ImGuiViewportP_destroy", "realdestructor": true, "ret": "void", @@ -9708,7 +9771,7 @@ "cimguiname": "ImGuiViewport_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui:3138", + "location": "imgui:3139", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "void", @@ -9734,7 +9797,7 @@ "cimguiname": "ImGuiViewport_GetWorkCenter", "defaults": {}, "funcname": "GetWorkCenter", - "location": "imgui:3139", + "location": "imgui:3140", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "void", @@ -9752,7 +9815,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", - "location": "imgui:3135", + "location": "imgui:3136", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -9791,7 +9854,7 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", - "location": "imgui_internal:1733", + "location": "imgui_internal:1773", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -9808,7 +9871,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", - "location": "imgui_internal:1732", + "location": "imgui_internal:1772", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -9847,7 +9910,7 @@ "cimguiname": "ImGuiWindow_CalcFontSize", "defaults": {}, "funcname": "CalcFontSize", - "location": "imgui_internal:2553", + "location": "imgui_internal:2610", "ov_cimguiname": "ImGuiWindow_CalcFontSize", "ret": "float", "signature": "()const", @@ -9878,7 +9941,7 @@ "str_end": "NULL" }, "funcname": "GetID", - "location": "imgui_internal:2546", + "location": "imgui_internal:2603", "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -9901,7 +9964,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2547", + "location": "imgui_internal:2604", "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -9924,7 +9987,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2548", + "location": "imgui_internal:2605", "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", @@ -9949,7 +10012,7 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", - "location": "imgui_internal:2549", + "location": "imgui_internal:2606", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -9975,7 +10038,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", - "location": "imgui_internal:2542", + "location": "imgui_internal:2599", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -9995,7 +10058,7 @@ "cimguiname": "ImGuiWindow_MenuBarHeight", "defaults": {}, "funcname": "MenuBarHeight", - "location": "imgui_internal:2556", + "location": "imgui_internal:2613", "ov_cimguiname": "ImGuiWindow_MenuBarHeight", "ret": "float", "signature": "()const", @@ -10020,7 +10083,7 @@ "cimguiname": "ImGuiWindow_MenuBarRect", "defaults": {}, "funcname": "MenuBarRect", - "location": "imgui_internal:2557", + "location": "imgui_internal:2614", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "void", @@ -10046,7 +10109,7 @@ "cimguiname": "ImGuiWindow_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:2552", + "location": "imgui_internal:2609", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "void", @@ -10068,7 +10131,7 @@ "cimguiname": "ImGuiWindow_TitleBarHeight", "defaults": {}, "funcname": "TitleBarHeight", - "location": "imgui_internal:2554", + "location": "imgui_internal:2611", "ov_cimguiname": "ImGuiWindow_TitleBarHeight", "ret": "float", "signature": "()const", @@ -10093,7 +10156,7 @@ "cimguiname": "ImGuiWindow_TitleBarRect", "defaults": {}, "funcname": "TitleBarRect", - "location": "imgui_internal:2555", + "location": "imgui_internal:2612", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "void", @@ -10114,7 +10177,7 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2544", + "location": "imgui_internal:2601", "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -10136,7 +10199,7 @@ "cimguiname": "ImPool_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:681", + "location": "imgui_internal:684", "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -10158,7 +10221,7 @@ "cimguiname": "ImPool_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:680", + "location": "imgui_internal:683", "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -10184,7 +10247,7 @@ "cimguiname": "ImPool_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:679", + "location": "imgui_internal:682", "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -10206,7 +10269,7 @@ "cimguiname": "ImPool_GetAliveCount", "defaults": {}, "funcname": "GetAliveCount", - "location": "imgui_internal:688", + "location": "imgui_internal:691", "ov_cimguiname": "ImPool_GetAliveCount", "ret": "int", "signature": "()const", @@ -10228,7 +10291,7 @@ "cimguiname": "ImPool_GetBufSize", "defaults": {}, "funcname": "GetBufSize", - "location": "imgui_internal:689", + "location": "imgui_internal:692", "ov_cimguiname": "ImPool_GetBufSize", "ret": "int", "signature": "()const", @@ -10254,7 +10317,7 @@ "cimguiname": "ImPool_GetByIndex", "defaults": {}, "funcname": "GetByIndex", - "location": "imgui_internal:676", + "location": "imgui_internal:679", "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10280,7 +10343,7 @@ "cimguiname": "ImPool_GetByKey", "defaults": {}, "funcname": "GetByKey", - "location": "imgui_internal:675", + "location": "imgui_internal:678", "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -10306,7 +10369,7 @@ "cimguiname": "ImPool_GetIndex", "defaults": {}, "funcname": "GetIndex", - "location": "imgui_internal:677", + "location": "imgui_internal:680", "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -10328,7 +10391,7 @@ "cimguiname": "ImPool_GetMapSize", "defaults": {}, "funcname": "GetMapSize", - "location": "imgui_internal:690", + "location": "imgui_internal:693", "ov_cimguiname": "ImPool_GetMapSize", "ret": "int", "signature": "()const", @@ -10354,7 +10417,7 @@ "cimguiname": "ImPool_GetOrAddByKey", "defaults": {}, "funcname": "GetOrAddByKey", - "location": "imgui_internal:678", + "location": "imgui_internal:681", "ov_cimguiname": "ImPool_GetOrAddByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -10372,7 +10435,7 @@ "constructor": true, "defaults": {}, "funcname": "ImPool", - "location": "imgui_internal:673", + "location": "imgui_internal:676", "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -10401,7 +10464,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:682", + "location": "imgui_internal:685", "ov_cimguiname": "ImPool_Remove_TPtr", "ret": "void", "signature": "(ImGuiID,const T*)", @@ -10429,7 +10492,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:683", + "location": "imgui_internal:686", "ov_cimguiname": "ImPool_Remove_PoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", @@ -10455,7 +10518,7 @@ "cimguiname": "ImPool_Reserve", "defaults": {}, "funcname": "Reserve", - "location": "imgui_internal:684", + "location": "imgui_internal:687", "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -10481,7 +10544,7 @@ "cimguiname": "ImPool_TryGetMapData", "defaults": {}, "funcname": "TryGetMapData", - "location": "imgui_internal:691", + "location": "imgui_internal:694", "ov_cimguiname": "ImPool_TryGetMapData", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10502,7 +10565,7 @@ "cimguiname": "ImPool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:674", + "location": "imgui_internal:677", "ov_cimguiname": "ImPool_destroy", "realdestructor": true, "ret": "void", @@ -10529,7 +10592,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:544", + "location": "imgui_internal:547", "ov_cimguiname": "ImRect_Add_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10552,7 +10615,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:545", + "location": "imgui_internal:548", "ov_cimguiname": "ImRect_Add_Rect", "ret": "void", "signature": "(const ImRect)", @@ -10577,7 +10640,7 @@ "cimguiname": "ImRect_ClipWith", "defaults": {}, "funcname": "ClipWith", - "location": "imgui_internal:551", + "location": "imgui_internal:554", "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -10602,7 +10665,7 @@ "cimguiname": "ImRect_ClipWithFull", "defaults": {}, "funcname": "ClipWithFull", - "location": "imgui_internal:552", + "location": "imgui_internal:555", "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -10627,7 +10690,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:540", + "location": "imgui_internal:543", "ov_cimguiname": "ImRect_Contains_Vec2", "ret": "bool", "signature": "(const ImVec2)const", @@ -10650,7 +10713,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:541", + "location": "imgui_internal:544", "ov_cimguiname": "ImRect_Contains_Rect", "ret": "bool", "signature": "(const ImRect)const", @@ -10679,7 +10742,7 @@ "cimguiname": "ImRect_ContainsWithPad", "defaults": {}, "funcname": "ContainsWithPad", - "location": "imgui_internal:542", + "location": "imgui_internal:545", "ov_cimguiname": "ImRect_ContainsWithPad", "ret": "bool", "signature": "(const ImVec2,const ImVec2)const", @@ -10704,7 +10767,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:546", + "location": "imgui_internal:549", "ov_cimguiname": "ImRect_Expand_Float", "ret": "void", "signature": "(const float)", @@ -10727,7 +10790,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:547", + "location": "imgui_internal:550", "ov_cimguiname": "ImRect_Expand_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10748,7 +10811,7 @@ "cimguiname": "ImRect_Floor", "defaults": {}, "funcname": "Floor", - "location": "imgui_internal:553", + "location": "imgui_internal:556", "ov_cimguiname": "ImRect_Floor", "ret": "void", "signature": "()", @@ -10769,7 +10832,7 @@ "cimguiname": "ImRect_GetArea", "defaults": {}, "funcname": "GetArea", - "location": "imgui_internal:535", + "location": "imgui_internal:538", "ov_cimguiname": "ImRect_GetArea", "ret": "float", "signature": "()const", @@ -10794,7 +10857,7 @@ "cimguiname": "ImRect_GetBL", "defaults": {}, "funcname": "GetBL", - "location": "imgui_internal:538", + "location": "imgui_internal:541", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "void", @@ -10820,7 +10883,7 @@ "cimguiname": "ImRect_GetBR", "defaults": {}, "funcname": "GetBR", - "location": "imgui_internal:539", + "location": "imgui_internal:542", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "void", @@ -10846,7 +10909,7 @@ "cimguiname": "ImRect_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui_internal:531", + "location": "imgui_internal:534", "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "void", @@ -10868,7 +10931,7 @@ "cimguiname": "ImRect_GetHeight", "defaults": {}, "funcname": "GetHeight", - "location": "imgui_internal:534", + "location": "imgui_internal:537", "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -10893,7 +10956,7 @@ "cimguiname": "ImRect_GetSize", "defaults": {}, "funcname": "GetSize", - "location": "imgui_internal:532", + "location": "imgui_internal:535", "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "void", @@ -10919,7 +10982,7 @@ "cimguiname": "ImRect_GetTL", "defaults": {}, "funcname": "GetTL", - "location": "imgui_internal:536", + "location": "imgui_internal:539", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "void", @@ -10945,7 +11008,7 @@ "cimguiname": "ImRect_GetTR", "defaults": {}, "funcname": "GetTR", - "location": "imgui_internal:537", + "location": "imgui_internal:540", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "void", @@ -10967,7 +11030,7 @@ "cimguiname": "ImRect_GetWidth", "defaults": {}, "funcname": "GetWidth", - "location": "imgui_internal:533", + "location": "imgui_internal:536", "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -10984,7 +11047,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:526", + "location": "imgui_internal:529", "ov_cimguiname": "ImRect_ImRect_Nil", "signature": "()", "stname": "ImRect" @@ -11007,7 +11070,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:527", + "location": "imgui_internal:530", "ov_cimguiname": "ImRect_ImRect_Vec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" @@ -11026,7 +11089,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:528", + "location": "imgui_internal:531", "ov_cimguiname": "ImRect_ImRect_Vec4", "signature": "(const ImVec4)", "stname": "ImRect" @@ -11057,7 +11120,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:529", + "location": "imgui_internal:532", "ov_cimguiname": "ImRect_ImRect_Float", "signature": "(float,float,float,float)", "stname": "ImRect" @@ -11077,7 +11140,7 @@ "cimguiname": "ImRect_IsInverted", "defaults": {}, "funcname": "IsInverted", - "location": "imgui_internal:554", + "location": "imgui_internal:557", "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -11102,7 +11165,7 @@ "cimguiname": "ImRect_Overlaps", "defaults": {}, "funcname": "Overlaps", - "location": "imgui_internal:543", + "location": "imgui_internal:546", "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -11127,7 +11190,7 @@ "cimguiname": "ImRect_ToVec4", "defaults": {}, "funcname": "ToVec4", - "location": "imgui_internal:555", + "location": "imgui_internal:558", "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "void", @@ -11153,7 +11216,7 @@ "cimguiname": "ImRect_Translate", "defaults": {}, "funcname": "Translate", - "location": "imgui_internal:548", + "location": "imgui_internal:551", "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -11178,7 +11241,7 @@ "cimguiname": "ImRect_TranslateX", "defaults": {}, "funcname": "TranslateX", - "location": "imgui_internal:549", + "location": "imgui_internal:552", "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -11203,7 +11266,7 @@ "cimguiname": "ImRect_TranslateY", "defaults": {}, "funcname": "TranslateY", - "location": "imgui_internal:550", + "location": "imgui_internal:553", "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -11243,7 +11306,7 @@ "cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "defaults": {}, "funcname": "GetArenaSizeInBytes", - "location": "imgui_internal:653", + "location": "imgui_internal:656", "ov_cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "ret": "int", "signature": "()", @@ -11269,7 +11332,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "defaults": {}, "funcname": "GetSpanPtrBegin", - "location": "imgui_internal:655", + "location": "imgui_internal:658", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "ret": "void*", "signature": "(int)", @@ -11295,7 +11358,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "defaults": {}, "funcname": "GetSpanPtrEnd", - "location": "imgui_internal:656", + "location": "imgui_internal:659", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "ret": "void*", "signature": "(int)", @@ -11313,7 +11376,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpanAllocator", - "location": "imgui_internal:651", + "location": "imgui_internal:654", "ov_cimguiname": "ImSpanAllocator_ImSpanAllocator", "signature": "()", "stname": "ImSpanAllocator", @@ -11348,7 +11411,7 @@ "a": "4" }, "funcname": "Reserve", - "location": "imgui_internal:652", + "location": "imgui_internal:655", "ov_cimguiname": "ImSpanAllocator_Reserve", "ret": "void", "signature": "(int,size_t,int)", @@ -11374,7 +11437,7 @@ "cimguiname": "ImSpanAllocator_SetArenaBasePtr", "defaults": {}, "funcname": "SetArenaBasePtr", - "location": "imgui_internal:654", + "location": "imgui_internal:657", "ov_cimguiname": "ImSpanAllocator_SetArenaBasePtr", "ret": "void", "signature": "(void*)", @@ -11412,7 +11475,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:619", + "location": "imgui_internal:622", "ov_cimguiname": "ImSpan_ImSpan_Nil", "signature": "()", "stname": "ImSpan", @@ -11436,7 +11499,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:620", + "location": "imgui_internal:623", "ov_cimguiname": "ImSpan_ImSpan_TPtrInt", "signature": "(T*,int)", "stname": "ImSpan", @@ -11460,7 +11523,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:621", + "location": "imgui_internal:624", "ov_cimguiname": "ImSpan_ImSpan_TPtrTPtr", "signature": "(T*,T*)", "stname": "ImSpan", @@ -11481,7 +11544,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:630", + "location": "imgui_internal:633", "ov_cimguiname": "ImSpan_begin_Nil", "ret": "T*", "signature": "()", @@ -11501,7 +11564,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:631", + "location": "imgui_internal:634", "ov_cimguiname": "ImSpan_begin__const", "ret": "const T*", "signature": "()const", @@ -11543,7 +11606,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:632", + "location": "imgui_internal:635", "ov_cimguiname": "ImSpan_end_Nil", "ret": "T*", "signature": "()", @@ -11563,7 +11626,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:633", + "location": "imgui_internal:636", "ov_cimguiname": "ImSpan_end__const", "ret": "const T*", "signature": "()const", @@ -11589,7 +11652,7 @@ "cimguiname": "ImSpan_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui_internal:636", + "location": "imgui_internal:639", "ov_cimguiname": "ImSpan_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -11619,7 +11682,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:623", + "location": "imgui_internal:626", "ov_cimguiname": "ImSpan_set_Int", "ret": "void", "signature": "(T*,int)", @@ -11647,7 +11710,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:624", + "location": "imgui_internal:627", "ov_cimguiname": "ImSpan_set_TPtr", "ret": "void", "signature": "(T*,T*)", @@ -11669,7 +11732,7 @@ "cimguiname": "ImSpan_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:625", + "location": "imgui_internal:628", "ov_cimguiname": "ImSpan_size", "ret": "int", "signature": "()const", @@ -11691,7 +11754,7 @@ "cimguiname": "ImSpan_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui_internal:626", + "location": "imgui_internal:629", "ov_cimguiname": "ImSpan_size_in_bytes", "ret": "int", "signature": "()const", @@ -11709,7 +11772,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:506", + "location": "imgui_internal:509", "ov_cimguiname": "ImVec1_ImVec1_Nil", "signature": "()", "stname": "ImVec1" @@ -11728,7 +11791,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:507", + "location": "imgui_internal:510", "ov_cimguiname": "ImVec1_ImVec1_Float", "signature": "(float)", "stname": "ImVec1" @@ -11763,7 +11826,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:264", + "location": "imgui:266", "ov_cimguiname": "ImVec2_ImVec2_Nil", "signature": "()", "stname": "ImVec2" @@ -11786,7 +11849,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:265", + "location": "imgui:267", "ov_cimguiname": "ImVec2_ImVec2_Float", "signature": "(float,float)", "stname": "ImVec2" @@ -11821,7 +11884,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:514", + "location": "imgui_internal:517", "ov_cimguiname": "ImVec2ih_ImVec2ih_Nil", "signature": "()", "stname": "ImVec2ih" @@ -11844,7 +11907,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:515", + "location": "imgui_internal:518", "ov_cimguiname": "ImVec2ih_ImVec2ih_short", "signature": "(short,short)", "stname": "ImVec2ih" @@ -11863,7 +11926,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:516", + "location": "imgui_internal:519", "ov_cimguiname": "ImVec2ih_ImVec2ih_Vec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" @@ -11898,7 +11961,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:277", + "location": "imgui:279", "ov_cimguiname": "ImVec4_ImVec4_Nil", "signature": "()", "stname": "ImVec4" @@ -11929,7 +11992,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:278", + "location": "imgui:280", "ov_cimguiname": "ImVec4_ImVec4_Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -11964,7 +12027,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1911", + "location": "imgui:1915", "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -11984,7 +12047,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1912", + "location": "imgui:1916", "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -12009,7 +12072,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:1938", + "location": "imgui:1942", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -12031,7 +12094,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1934", + "location": "imgui:1938", "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -12052,7 +12115,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1935", + "location": "imgui:1939", "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -12075,7 +12138,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1928", + "location": "imgui:1932", "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -12095,7 +12158,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1929", + "location": "imgui:1933", "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -12117,7 +12180,7 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:1924", + "location": "imgui:1928", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -12139,7 +12202,7 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:1916", + "location": "imgui:1920", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -12161,7 +12224,7 @@ "cimguiname": "ImVector_clear_delete", "defaults": {}, "funcname": "clear_delete", - "location": "imgui:1917", + "location": "imgui:1921", "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -12183,7 +12246,7 @@ "cimguiname": "ImVector_clear_destruct", "defaults": {}, "funcname": "clear_destruct", - "location": "imgui:1918", + "location": "imgui:1922", "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -12209,7 +12272,7 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:1953", + "location": "imgui:1957", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -12230,7 +12293,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:1914", + "location": "imgui:1918", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -12253,7 +12316,7 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:1920", + "location": "imgui:1924", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -12275,7 +12338,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1930", + "location": "imgui:1934", "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -12295,7 +12358,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1931", + "location": "imgui:1935", "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -12321,7 +12384,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1949", + "location": "imgui:1953", "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -12349,7 +12412,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1950", + "location": "imgui:1954", "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -12375,7 +12438,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:1951", + "location": "imgui:1955", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -12401,7 +12464,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1954", + "location": "imgui:1958", "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -12425,7 +12488,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1955", + "location": "imgui:1959", "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -12451,7 +12514,7 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:1957", + "location": "imgui:1961", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -12477,7 +12540,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:1958", + "location": "imgui:1962", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -12503,7 +12566,7 @@ "cimguiname": "ImVector_find_index", "defaults": {}, "funcname": "find_index", - "location": "imgui:1956", + "location": "imgui:1960", "ov_cimguiname": "ImVector_find_index", "ret": "int", "signature": "(const T)const", @@ -12525,7 +12588,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1932", + "location": "imgui:1936", "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -12546,7 +12609,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1933", + "location": "imgui:1937", "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -12573,7 +12636,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:1959", + "location": "imgui:1963", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -12603,7 +12666,7 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:1952", + "location": "imgui:1956", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -12625,7 +12688,7 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", - "location": "imgui:1923", + "location": "imgui:1927", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -12647,7 +12710,7 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:1947", + "location": "imgui:1951", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -12673,7 +12736,7 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:1946", + "location": "imgui:1950", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -12699,7 +12762,7 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:1948", + "location": "imgui:1952", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -12725,7 +12788,7 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:1942", + "location": "imgui:1946", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -12751,7 +12814,7 @@ "cimguiname": "ImVector_reserve_discard", "defaults": {}, "funcname": "reserve_discard", - "location": "imgui:1943", + "location": "imgui:1947", "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -12777,7 +12840,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1939", + "location": "imgui:1943", "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -12805,7 +12868,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1940", + "location": "imgui:1944", "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -12831,7 +12894,7 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:1941", + "location": "imgui:1945", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -12853,7 +12916,7 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:1921", + "location": "imgui:1925", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -12875,7 +12938,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:1922", + "location": "imgui:1926", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -12902,7 +12965,7 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:1936", + "location": "imgui:1940", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", @@ -12930,7 +12993,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui:842", + "location": "imgui:844", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -12952,7 +13015,7 @@ "cimguiname": "igActivateItemByID", "defaults": {}, "funcname": "ActivateItemByID", - "location": "imgui_internal:3107", + "location": "imgui_internal:3167", "namespace": "ImGui", "ov_cimguiname": "igActivateItemByID", "ret": "void", @@ -12978,7 +13041,7 @@ "cimguiname": "igAddContextHook", "defaults": {}, "funcname": "AddContextHook", - "location": "imgui_internal:2978", + "location": "imgui_internal:3036", "namespace": "ImGui", "ov_cimguiname": "igAddContextHook", "ret": "ImGuiID", @@ -13008,7 +13071,7 @@ "cimguiname": "igAddDrawListToDrawDataEx", "defaults": {}, "funcname": "AddDrawListToDrawDataEx", - "location": "imgui_internal:2964", + "location": "imgui_internal:3022", "namespace": "ImGui", "ov_cimguiname": "igAddDrawListToDrawDataEx", "ret": "void", @@ -13030,7 +13093,7 @@ "cimguiname": "igAddSettingsHandler", "defaults": {}, "funcname": "AddSettingsHandler", - "location": "imgui_internal:2989", + "location": "imgui_internal:3047", "namespace": "ImGui", "ov_cimguiname": "igAddSettingsHandler", "ret": "void", @@ -13047,7 +13110,7 @@ "cimguiname": "igAlignTextToFramePadding", "defaults": {}, "funcname": "AlignTextToFramePadding", - "location": "imgui:477", + "location": "imgui:479", "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -13073,7 +13136,7 @@ "cimguiname": "igArrowButton", "defaults": {}, "funcname": "ArrowButton", - "location": "imgui:525", + "location": "imgui:527", "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -13109,7 +13172,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "imgui_internal:3334", + "location": "imgui_internal:3396", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -13142,7 +13205,7 @@ "p_open": "NULL" }, "funcname": "Begin", - "location": "imgui:338", + "location": "imgui:340", "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -13180,7 +13243,7 @@ "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:359", + "location": "imgui:361", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_Str", "ret": "bool", @@ -13216,7 +13279,7 @@ "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:360", + "location": "imgui:362", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_ID", "ret": "bool", @@ -13254,7 +13317,7 @@ "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", - "location": "imgui_internal:3060", + "location": "imgui_internal:3118", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", @@ -13286,7 +13349,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "imgui_internal:3221", + "location": "imgui_internal:3283", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -13318,7 +13381,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui:544", + "location": "imgui:546", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -13348,7 +13411,7 @@ "cimguiname": "igBeginComboPopup", "defaults": {}, "funcname": "BeginComboPopup", - "location": "imgui_internal:3082", + "location": "imgui_internal:3140", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPopup", "ret": "bool", @@ -13365,7 +13428,7 @@ "cimguiname": "igBeginComboPreview", "defaults": {}, "funcname": "BeginComboPreview", - "location": "imgui_internal:3083", + "location": "imgui_internal:3141", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPreview", "ret": "bool", @@ -13389,7 +13452,7 @@ "disabled": "true" }, "funcname": "BeginDisabled", - "location": "imgui:850", + "location": "imgui:852", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabled", "ret": "void", @@ -13413,7 +13476,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui:838", + "location": "imgui:840", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -13430,7 +13493,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui:841", + "location": "imgui:843", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -13456,7 +13519,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", - "location": "imgui_internal:3208", + "location": "imgui_internal:3270", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -13473,7 +13536,7 @@ "cimguiname": "igBeginGroup", "defaults": {}, "funcname": "BeginGroup", - "location": "imgui:475", + "location": "imgui:477", "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -13490,7 +13553,7 @@ "cimguiname": "igBeginItemTooltip", "defaults": {}, "funcname": "BeginItemTooltip", - "location": "imgui:701", + "location": "imgui:703", "namespace": "ImGui", "ov_cimguiname": "igBeginItemTooltip", "ret": "bool", @@ -13518,7 +13581,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginListBox", - "location": "imgui:656", + "location": "imgui:658", "namespace": "ImGui", "ov_cimguiname": "igBeginListBox", "ret": "bool", @@ -13535,7 +13598,7 @@ "cimguiname": "igBeginMainMenuBar", "defaults": {}, "funcname": "BeginMainMenuBar", - "location": "imgui:682", + "location": "imgui:684", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -13563,7 +13626,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui:684", + "location": "imgui:686", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -13580,7 +13643,7 @@ "cimguiname": "igBeginMenuBar", "defaults": {}, "funcname": "BeginMenuBar", - "location": "imgui:680", + "location": "imgui:682", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -13612,7 +13675,7 @@ "enabled": "true" }, "funcname": "BeginMenuEx", - "location": "imgui_internal:3078", + "location": "imgui_internal:3136", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuEx", "ret": "bool", @@ -13640,7 +13703,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui:715", + "location": "imgui:717", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -13669,7 +13732,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui:737", + "location": "imgui:739", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -13698,7 +13761,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui:739", + "location": "imgui:741", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -13727,7 +13790,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui:738", + "location": "imgui:740", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -13753,7 +13816,7 @@ "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", - "location": "imgui_internal:3066", + "location": "imgui_internal:3124", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -13786,7 +13849,7 @@ "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui:716", + "location": "imgui:718", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -13814,7 +13877,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui:816", + "location": "imgui:818", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -13844,7 +13907,7 @@ "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", - "location": "imgui_internal:3290", + "location": "imgui_internal:3352", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", @@ -13877,7 +13940,7 @@ "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui:818", + "location": "imgui:820", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -13919,7 +13982,7 @@ "outer_size": "ImVec2(0.0f,0.0f)" }, "funcname": "BeginTable", - "location": "imgui:768", + "location": "imgui:770", "namespace": "ImGui", "ov_cimguiname": "igBeginTable", "ret": "bool", @@ -13965,7 +14028,7 @@ "outer_size": "ImVec2(0,0)" }, "funcname": "BeginTableEx", - "location": "imgui_internal:3246", + "location": "imgui_internal:3308", "namespace": "ImGui", "ov_cimguiname": "igBeginTableEx", "ret": "bool", @@ -13982,7 +14045,7 @@ "cimguiname": "igBeginTooltip", "defaults": {}, "funcname": "BeginTooltip", - "location": "imgui:692", + "location": "imgui:694", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", "ret": "bool", @@ -14008,7 +14071,7 @@ "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", - "location": "imgui_internal:3067", + "location": "imgui_internal:3125", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", "ret": "bool", @@ -14025,7 +14088,7 @@ "cimguiname": "igBeginTooltipHidden", "defaults": {}, "funcname": "BeginTooltipHidden", - "location": "imgui_internal:3068", + "location": "imgui_internal:3126", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipHidden", "ret": "bool", @@ -14063,7 +14126,7 @@ "cimguiname": "igBeginViewportSideBar", "defaults": {}, "funcname": "BeginViewportSideBar", - "location": "imgui_internal:3077", + "location": "imgui_internal:3135", "namespace": "ImGui", "ov_cimguiname": "igBeginViewportSideBar", "ret": "bool", @@ -14085,7 +14148,7 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", - "location": "imgui_internal:2953", + "location": "imgui_internal:3011", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -14111,7 +14174,7 @@ "cimguiname": "igBringWindowToDisplayBehind", "defaults": {}, "funcname": "BringWindowToDisplayBehind", - "location": "imgui_internal:2954", + "location": "imgui_internal:3012", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBehind", "ret": "void", @@ -14133,7 +14196,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", - "location": "imgui_internal:2952", + "location": "imgui_internal:3010", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -14155,7 +14218,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", - "location": "imgui_internal:2951", + "location": "imgui_internal:3009", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -14172,7 +14235,7 @@ "cimguiname": "igBullet", "defaults": {}, "funcname": "Bullet", - "location": "imgui:532", + "location": "imgui:534", "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -14199,7 +14262,7 @@ "defaults": {}, "funcname": "BulletText", "isvararg": "...)", - "location": "imgui:515", + "location": "imgui:517", "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -14225,7 +14288,7 @@ "cimguiname": "igBulletTextV", "defaults": {}, "funcname": "BulletTextV", - "location": "imgui:516", + "location": "imgui:518", "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -14253,7 +14316,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", - "location": "imgui:522", + "location": "imgui:524", "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -14293,7 +14356,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "imgui_internal:3352", + "location": "imgui_internal:3414", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -14326,7 +14389,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "imgui_internal:3333", + "location": "imgui_internal:3395", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -14360,7 +14423,7 @@ "cimguiname": "igCalcItemSize", "defaults": {}, "funcname": "CalcItemSize", - "location": "imgui_internal:3041", + "location": "imgui_internal:3099", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -14378,7 +14441,7 @@ "cimguiname": "igCalcItemWidth", "defaults": {}, "funcname": "CalcItemWidth", - "location": "imgui:435", + "location": "imgui:437", "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -14420,7 +14483,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:908", + "location": "imgui:910", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -14455,7 +14518,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", - "location": "imgui_internal:3137", + "location": "imgui_internal:3198", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -14481,7 +14544,7 @@ "cimguiname": "igCalcWindowNextAutoFitSize", "defaults": {}, "funcname": "CalcWindowNextAutoFitSize", - "location": "imgui_internal:2934", + "location": "imgui_internal:2991", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowNextAutoFitSize", @@ -14508,7 +14571,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", - "location": "imgui_internal:3042", + "location": "imgui_internal:3100", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -14534,7 +14597,7 @@ "cimguiname": "igCallContextHooks", "defaults": {}, "funcname": "CallContextHooks", - "location": "imgui_internal:2980", + "location": "imgui_internal:3038", "namespace": "ImGui", "ov_cimguiname": "igCallContextHooks", "ret": "void", @@ -14560,7 +14623,7 @@ "cimguiname": "igCheckbox", "defaults": {}, "funcname": "Checkbox", - "location": "imgui:526", + "location": "imgui:528", "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -14590,7 +14653,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:527", + "location": "imgui:529", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_IntPtr", "ret": "bool", @@ -14618,7 +14681,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:528", + "location": "imgui:530", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_UintPtr", "ret": "bool", @@ -14646,7 +14709,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3338", + "location": "imgui_internal:3400", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_S64Ptr", "ret": "bool", @@ -14674,7 +14737,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3339", + "location": "imgui_internal:3401", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_U64Ptr", "ret": "bool", @@ -14691,7 +14754,7 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", - "location": "imgui_internal:3024", + "location": "imgui_internal:3082", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -14708,7 +14771,7 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", - "location": "imgui_internal:3209", + "location": "imgui_internal:3271", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -14725,7 +14788,7 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", - "location": "imgui_internal:2988", + "location": "imgui_internal:3046", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -14747,7 +14810,7 @@ "cimguiname": "igClearWindowSettings", "defaults": {}, "funcname": "ClearWindowSettings", - "location": "imgui_internal:2997", + "location": "imgui_internal:3055", "namespace": "ImGui", "ov_cimguiname": "igClearWindowSettings", "ret": "void", @@ -14773,7 +14836,7 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", - "location": "imgui_internal:3342", + "location": "imgui_internal:3404", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -14790,7 +14853,7 @@ "cimguiname": "igCloseCurrentPopup", "defaults": {}, "funcname": "CloseCurrentPopup", - "location": "imgui:730", + "location": "imgui:732", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -14816,7 +14879,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", - "location": "imgui_internal:3062", + "location": "imgui_internal:3120", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -14833,7 +14896,7 @@ "cimguiname": "igClosePopupsExceptModals", "defaults": {}, "funcname": "ClosePopupsExceptModals", - "location": "imgui_internal:3064", + "location": "imgui_internal:3122", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsExceptModals", "ret": "void", @@ -14859,7 +14922,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", - "location": "imgui_internal:3063", + "location": "imgui_internal:3121", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -14885,7 +14948,7 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", - "location": "imgui_internal:3343", + "location": "imgui_internal:3405", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -14913,7 +14976,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:640", + "location": "imgui:642", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_TreeNodeFlags", "ret": "bool", @@ -14943,7 +15006,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:641", + "location": "imgui:643", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_BoolPtr", "ret": "bool", @@ -14980,7 +15043,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui:621", + "location": "imgui:623", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -15002,7 +15065,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:912", + "location": "imgui:914", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -15047,7 +15110,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:914", + "location": "imgui:916", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -15092,7 +15155,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:913", + "location": "imgui:915", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -15118,7 +15181,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:911", + "location": "imgui:913", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -15151,7 +15214,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui:617", + "location": "imgui:619", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -15183,7 +15246,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui:618", + "location": "imgui:620", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -15209,7 +15272,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", - "location": "imgui_internal:3390", + "location": "imgui_internal:3452", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -15241,7 +15304,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui:619", + "location": "imgui:621", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -15278,7 +15341,7 @@ "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui:620", + "location": "imgui:622", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -15304,7 +15367,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", - "location": "imgui_internal:3391", + "location": "imgui_internal:3453", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -15334,7 +15397,7 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", - "location": "imgui_internal:3389", + "location": "imgui_internal:3451", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -15368,7 +15431,7 @@ "id": "NULL" }, "funcname": "Columns", - "location": "imgui:805", + "location": "imgui:807", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -15408,7 +15471,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:546", + "location": "imgui:548", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str_arr", "ret": "bool", @@ -15442,7 +15505,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:547", + "location": "imgui:549", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str", "ret": "bool", @@ -15486,7 +15549,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:548", + "location": "imgui:550", "namespace": "ImGui", "ov_cimguiname": "igCombo_FnStrPtr", "ret": "bool", @@ -15494,28 +15557,6 @@ "stname": "" } ], - "igConvertShortcutMod": [ - { - "args": "(ImGuiKeyChord key_chord)", - "argsT": [ - { - "name": "key_chord", - "type": "ImGuiKeyChord" - } - ], - "argsoriginal": "(ImGuiKeyChord key_chord)", - "call_args": "(key_chord)", - "cimguiname": "igConvertShortcutMod", - "defaults": {}, - "funcname": "ConvertShortcutMod", - "location": "imgui_internal:3118", - "namespace": "ImGui", - "ov_cimguiname": "igConvertShortcutMod", - "ret": "ImGuiKeyChord", - "signature": "(ImGuiKeyChord)", - "stname": "" - } - ], "igConvertSingleModFlagToKey": [ { "args": "(ImGuiContext* ctx,ImGuiKey key)", @@ -15534,7 +15575,7 @@ "cimguiname": "igConvertSingleModFlagToKey", "defaults": {}, "funcname": "ConvertSingleModFlagToKey", - "location": "imgui_internal:3119", + "location": "imgui_internal:3180", "namespace": "ImGui", "ov_cimguiname": "igConvertSingleModFlagToKey", "ret": "ImGuiKey", @@ -15558,7 +15599,7 @@ "shared_font_atlas": "NULL" }, "funcname": "CreateContext", - "location": "imgui:296", + "location": "imgui:298", "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -15580,7 +15621,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", - "location": "imgui_internal:2994", + "location": "imgui_internal:3052", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -15614,7 +15655,7 @@ "cimguiname": "igDataTypeApplyFromText", "defaults": {}, "funcname": "DataTypeApplyFromText", - "location": "imgui_internal:3376", + "location": "imgui_internal:3438", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyFromText", "ret": "bool", @@ -15652,7 +15693,7 @@ "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", - "location": "imgui_internal:3375", + "location": "imgui_internal:3437", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -15686,7 +15727,7 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", - "location": "imgui_internal:3378", + "location": "imgui_internal:3440", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -15716,7 +15757,7 @@ "cimguiname": "igDataTypeCompare", "defaults": {}, "funcname": "DataTypeCompare", - "location": "imgui_internal:3377", + "location": "imgui_internal:3439", "namespace": "ImGui", "ov_cimguiname": "igDataTypeCompare", "ret": "int", @@ -15754,7 +15795,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", - "location": "imgui_internal:3374", + "location": "imgui_internal:3436", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -15776,7 +15817,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", - "location": "imgui_internal:3373", + "location": "imgui_internal:3435", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -15810,7 +15851,7 @@ "cimguiname": "igDebugAllocHook", "defaults": {}, "funcname": "DebugAllocHook", - "location": "imgui_internal:3409", + "location": "imgui_internal:3471", "namespace": "ImGui", "ov_cimguiname": "igDebugAllocHook", "ret": "void", @@ -15836,7 +15877,7 @@ "cimguiname": "igDebugBreakButton", "defaults": {}, "funcname": "DebugBreakButton", - "location": "imgui_internal:3422", + "location": "imgui_internal:3484", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButton", "ret": "bool", @@ -15862,7 +15903,7 @@ "cimguiname": "igDebugBreakButtonTooltip", "defaults": {}, "funcname": "DebugBreakButtonTooltip", - "location": "imgui_internal:3423", + "location": "imgui_internal:3485", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButtonTooltip", "ret": "void", @@ -15879,7 +15920,7 @@ "cimguiname": "igDebugBreakClearData", "defaults": {}, "funcname": "DebugBreakClearData", - "location": "imgui_internal:3421", + "location": "imgui_internal:3483", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakClearData", "ret": "void", @@ -15925,7 +15966,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:968", + "location": "imgui:970", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -15949,7 +15990,7 @@ "col": "4278190335" }, "funcname": "DebugDrawCursorPos", - "location": "imgui_internal:3415", + "location": "imgui_internal:3477", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawCursorPos", "ret": "void", @@ -15973,7 +16014,7 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "imgui_internal:3417", + "location": "imgui_internal:3479", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -15997,7 +16038,7 @@ "col": "4278190335" }, "funcname": "DebugDrawLineExtents", - "location": "imgui_internal:3416", + "location": "imgui_internal:3478", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawLineExtents", "ret": "void", @@ -16019,7 +16060,7 @@ "cimguiname": "igDebugFlashStyleColor", "defaults": {}, "funcname": "DebugFlashStyleColor", - "location": "imgui:967", + "location": "imgui:969", "namespace": "ImGui", "ov_cimguiname": "igDebugFlashStyleColor", "ret": "void", @@ -16053,7 +16094,7 @@ "cimguiname": "igDebugHookIdInfo", "defaults": {}, "funcname": "DebugHookIdInfo", - "location": "imgui_internal:3426", + "location": "imgui_internal:3488", "namespace": "ImGui", "ov_cimguiname": "igDebugHookIdInfo", "ret": "void", @@ -16075,7 +16116,7 @@ "cimguiname": "igDebugLocateItem", "defaults": {}, "funcname": "DebugLocateItem", - "location": "imgui_internal:3418", + "location": "imgui_internal:3480", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItem", "ret": "void", @@ -16097,7 +16138,7 @@ "cimguiname": "igDebugLocateItemOnHover", "defaults": {}, "funcname": "DebugLocateItemOnHover", - "location": "imgui_internal:3419", + "location": "imgui_internal:3481", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemOnHover", "ret": "void", @@ -16114,7 +16155,7 @@ "cimguiname": "igDebugLocateItemResolveWithLastItem", "defaults": {}, "funcname": "DebugLocateItemResolveWithLastItem", - "location": "imgui_internal:3420", + "location": "imgui_internal:3482", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemResolveWithLastItem", "ret": "void", @@ -16141,7 +16182,7 @@ "defaults": {}, "funcname": "DebugLog", "isvararg": "...)", - "location": "imgui_internal:3407", + "location": "imgui_internal:3469", "namespace": "ImGui", "ov_cimguiname": "igDebugLog", "ret": "void", @@ -16167,7 +16208,7 @@ "cimguiname": "igDebugLogV", "defaults": {}, "funcname": "DebugLogV", - "location": "imgui_internal:3408", + "location": "imgui_internal:3470", "namespace": "ImGui", "ov_cimguiname": "igDebugLogV", "ret": "void", @@ -16189,7 +16230,7 @@ "cimguiname": "igDebugNodeColumns", "defaults": {}, "funcname": "DebugNodeColumns", - "location": "imgui_internal:3427", + "location": "imgui_internal:3489", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeColumns", "ret": "void", @@ -16227,7 +16268,7 @@ "cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "defaults": {}, "funcname": "DebugNodeDrawCmdShowMeshAndBoundingBox", - "location": "imgui_internal:3429", + "location": "imgui_internal:3491", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "ret": "void", @@ -16261,7 +16302,7 @@ "cimguiname": "igDebugNodeDrawList", "defaults": {}, "funcname": "DebugNodeDrawList", - "location": "imgui_internal:3428", + "location": "imgui_internal:3490", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawList", "ret": "void", @@ -16283,7 +16324,7 @@ "cimguiname": "igDebugNodeFont", "defaults": {}, "funcname": "DebugNodeFont", - "location": "imgui_internal:3430", + "location": "imgui_internal:3492", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFont", "ret": "void", @@ -16309,7 +16350,7 @@ "cimguiname": "igDebugNodeFontGlyph", "defaults": {}, "funcname": "DebugNodeFontGlyph", - "location": "imgui_internal:3431", + "location": "imgui_internal:3493", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFontGlyph", "ret": "void", @@ -16331,7 +16372,7 @@ "cimguiname": "igDebugNodeInputTextState", "defaults": {}, "funcname": "DebugNodeInputTextState", - "location": "imgui_internal:3436", + "location": "imgui_internal:3498", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeInputTextState", "ret": "void", @@ -16357,7 +16398,7 @@ "cimguiname": "igDebugNodeStorage", "defaults": {}, "funcname": "DebugNodeStorage", - "location": "imgui_internal:3432", + "location": "imgui_internal:3494", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeStorage", "ret": "void", @@ -16383,7 +16424,7 @@ "cimguiname": "igDebugNodeTabBar", "defaults": {}, "funcname": "DebugNodeTabBar", - "location": "imgui_internal:3433", + "location": "imgui_internal:3495", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTabBar", "ret": "void", @@ -16405,7 +16446,7 @@ "cimguiname": "igDebugNodeTable", "defaults": {}, "funcname": "DebugNodeTable", - "location": "imgui_internal:3434", + "location": "imgui_internal:3496", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTable", "ret": "void", @@ -16427,7 +16468,7 @@ "cimguiname": "igDebugNodeTableSettings", "defaults": {}, "funcname": "DebugNodeTableSettings", - "location": "imgui_internal:3435", + "location": "imgui_internal:3497", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTableSettings", "ret": "void", @@ -16449,7 +16490,7 @@ "cimguiname": "igDebugNodeTypingSelectState", "defaults": {}, "funcname": "DebugNodeTypingSelectState", - "location": "imgui_internal:3437", + "location": "imgui_internal:3499", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTypingSelectState", "ret": "void", @@ -16471,7 +16512,7 @@ "cimguiname": "igDebugNodeViewport", "defaults": {}, "funcname": "DebugNodeViewport", - "location": "imgui_internal:3442", + "location": "imgui_internal:3504", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeViewport", "ret": "void", @@ -16497,7 +16538,7 @@ "cimguiname": "igDebugNodeWindow", "defaults": {}, "funcname": "DebugNodeWindow", - "location": "imgui_internal:3438", + "location": "imgui_internal:3500", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindow", "ret": "void", @@ -16519,7 +16560,7 @@ "cimguiname": "igDebugNodeWindowSettings", "defaults": {}, "funcname": "DebugNodeWindowSettings", - "location": "imgui_internal:3439", + "location": "imgui_internal:3501", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowSettings", "ret": "void", @@ -16545,7 +16586,7 @@ "cimguiname": "igDebugNodeWindowsList", "defaults": {}, "funcname": "DebugNodeWindowsList", - "location": "imgui_internal:3440", + "location": "imgui_internal:3502", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsList", "ret": "void", @@ -16575,7 +16616,7 @@ "cimguiname": "igDebugNodeWindowsListByBeginStackParent", "defaults": {}, "funcname": "DebugNodeWindowsListByBeginStackParent", - "location": "imgui_internal:3441", + "location": "imgui_internal:3503", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsListByBeginStackParent", "ret": "void", @@ -16597,7 +16638,7 @@ "cimguiname": "igDebugRenderKeyboardPreview", "defaults": {}, "funcname": "DebugRenderKeyboardPreview", - "location": "imgui_internal:3443", + "location": "imgui_internal:3505", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderKeyboardPreview", "ret": "void", @@ -16627,7 +16668,7 @@ "cimguiname": "igDebugRenderViewportThumbnail", "defaults": {}, "funcname": "DebugRenderViewportThumbnail", - "location": "imgui_internal:3444", + "location": "imgui_internal:3506", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderViewportThumbnail", "ret": "void", @@ -16644,7 +16685,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", - "location": "imgui_internal:3424", + "location": "imgui_internal:3486", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -16666,7 +16707,7 @@ "cimguiname": "igDebugTextEncoding", "defaults": {}, "funcname": "DebugTextEncoding", - "location": "imgui:966", + "location": "imgui:968", "namespace": "ImGui", "ov_cimguiname": "igDebugTextEncoding", "ret": "void", @@ -16690,7 +16731,7 @@ "ctx": "NULL" }, "funcname": "DestroyContext", - "location": "imgui:297", + "location": "imgui:299", "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -16740,7 +16781,7 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", - "location": "imgui_internal:3353", + "location": "imgui_internal:3415", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -16792,7 +16833,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui:562", + "location": "imgui:564", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -16844,7 +16885,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui:563", + "location": "imgui:565", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -16896,7 +16937,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui:564", + "location": "imgui:566", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -16948,7 +16989,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui:565", + "location": "imgui:567", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -17009,7 +17050,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui:566", + "location": "imgui:568", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -17061,7 +17102,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui:567", + "location": "imgui:569", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -17113,7 +17154,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui:568", + "location": "imgui:570", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -17165,7 +17206,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui:569", + "location": "imgui:571", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -17217,7 +17258,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui:570", + "location": "imgui:572", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -17278,7 +17319,7 @@ "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui:571", + "location": "imgui:573", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -17334,7 +17375,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalar", - "location": "imgui:572", + "location": "imgui:574", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -17394,7 +17435,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalarN", - "location": "imgui:573", + "location": "imgui:575", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -17416,7 +17457,7 @@ "cimguiname": "igDummy", "defaults": {}, "funcname": "Dummy", - "location": "imgui:472", + "location": "imgui:474", "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -17433,7 +17474,7 @@ "cimguiname": "igEnd", "defaults": {}, "funcname": "End", - "location": "imgui:339", + "location": "imgui:341", "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -17450,7 +17491,7 @@ "cimguiname": "igEndChild", "defaults": {}, "funcname": "EndChild", - "location": "imgui:361", + "location": "imgui:363", "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -17467,7 +17508,7 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", - "location": "imgui_internal:3222", + "location": "imgui_internal:3284", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -17484,7 +17525,7 @@ "cimguiname": "igEndCombo", "defaults": {}, "funcname": "EndCombo", - "location": "imgui:545", + "location": "imgui:547", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -17501,7 +17542,7 @@ "cimguiname": "igEndComboPreview", "defaults": {}, "funcname": "EndComboPreview", - "location": "imgui_internal:3084", + "location": "imgui_internal:3142", "namespace": "ImGui", "ov_cimguiname": "igEndComboPreview", "ret": "void", @@ -17518,7 +17559,7 @@ "cimguiname": "igEndDisabled", "defaults": {}, "funcname": "EndDisabled", - "location": "imgui:851", + "location": "imgui:853", "namespace": "ImGui", "ov_cimguiname": "igEndDisabled", "ret": "void", @@ -17535,7 +17576,7 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui:840", + "location": "imgui:842", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -17552,7 +17593,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui:843", + "location": "imgui:845", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -17569,7 +17610,7 @@ "cimguiname": "igEndFrame", "defaults": {}, "funcname": "EndFrame", - "location": "imgui:305", + "location": "imgui:307", "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -17586,7 +17627,7 @@ "cimguiname": "igEndGroup", "defaults": {}, "funcname": "EndGroup", - "location": "imgui:476", + "location": "imgui:478", "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -17603,7 +17644,7 @@ "cimguiname": "igEndListBox", "defaults": {}, "funcname": "EndListBox", - "location": "imgui:657", + "location": "imgui:659", "namespace": "ImGui", "ov_cimguiname": "igEndListBox", "ret": "void", @@ -17620,7 +17661,7 @@ "cimguiname": "igEndMainMenuBar", "defaults": {}, "funcname": "EndMainMenuBar", - "location": "imgui:683", + "location": "imgui:685", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -17637,7 +17678,7 @@ "cimguiname": "igEndMenu", "defaults": {}, "funcname": "EndMenu", - "location": "imgui:685", + "location": "imgui:687", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -17654,7 +17695,7 @@ "cimguiname": "igEndMenuBar", "defaults": {}, "funcname": "EndMenuBar", - "location": "imgui:681", + "location": "imgui:683", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -17671,7 +17712,7 @@ "cimguiname": "igEndPopup", "defaults": {}, "funcname": "EndPopup", - "location": "imgui:717", + "location": "imgui:719", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -17688,7 +17729,7 @@ "cimguiname": "igEndTabBar", "defaults": {}, "funcname": "EndTabBar", - "location": "imgui:817", + "location": "imgui:819", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -17705,7 +17746,7 @@ "cimguiname": "igEndTabItem", "defaults": {}, "funcname": "EndTabItem", - "location": "imgui:819", + "location": "imgui:821", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -17722,7 +17763,7 @@ "cimguiname": "igEndTable", "defaults": {}, "funcname": "EndTable", - "location": "imgui:769", + "location": "imgui:771", "namespace": "ImGui", "ov_cimguiname": "igEndTable", "ret": "void", @@ -17739,7 +17780,7 @@ "cimguiname": "igEndTooltip", "defaults": {}, "funcname": "EndTooltip", - "location": "imgui:693", + "location": "imgui:695", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -17767,7 +17808,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndFrameRecover", - "location": "imgui_internal:3412", + "location": "imgui_internal:3474", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndFrameRecover", "ret": "void", @@ -17795,7 +17836,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndWindowRecover", - "location": "imgui_internal:3413", + "location": "imgui_internal:3475", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndWindowRecover", "ret": "void", @@ -17812,7 +17853,7 @@ "cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "defaults": {}, "funcname": "ErrorCheckUsingSetCursorPosToExtendParentBoundaries", - "location": "imgui_internal:3414", + "location": "imgui_internal:3476", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "ret": "void", @@ -17838,7 +17879,7 @@ "cimguiname": "igFindBestWindowPosForPopup", "defaults": {}, "funcname": "FindBestWindowPosForPopup", - "location": "imgui_internal:3073", + "location": "imgui_internal:3131", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -17885,7 +17926,7 @@ "cimguiname": "igFindBestWindowPosForPopupEx", "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", - "location": "imgui_internal:3074", + "location": "imgui_internal:3132", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -17908,7 +17949,7 @@ "cimguiname": "igFindBlockingModal", "defaults": {}, "funcname": "FindBlockingModal", - "location": "imgui_internal:3072", + "location": "imgui_internal:3130", "namespace": "ImGui", "ov_cimguiname": "igFindBlockingModal", "ret": "ImGuiWindow*", @@ -17930,7 +17971,7 @@ "cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "defaults": {}, "funcname": "FindBottomMostVisibleWindowWithinBeginStack", - "location": "imgui_internal:2956", + "location": "imgui_internal:3014", "namespace": "ImGui", "ov_cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "ret": "ImGuiWindow*", @@ -17956,7 +17997,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", - "location": "imgui_internal:3227", + "location": "imgui_internal:3289", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiOldColumns*", @@ -17984,7 +18025,7 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "imgui_internal:3320", + "location": "imgui_internal:3382", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -18006,7 +18047,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", - "location": "imgui_internal:2991", + "location": "imgui_internal:3049", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -18028,7 +18069,7 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", - "location": "imgui_internal:2931", + "location": "imgui_internal:2988", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -18050,7 +18091,7 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", - "location": "imgui_internal:2932", + "location": "imgui_internal:2989", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -18072,7 +18113,7 @@ "cimguiname": "igFindWindowDisplayIndex", "defaults": {}, "funcname": "FindWindowDisplayIndex", - "location": "imgui_internal:2955", + "location": "imgui_internal:3013", "namespace": "ImGui", "ov_cimguiname": "igFindWindowDisplayIndex", "ret": "int", @@ -18094,7 +18135,7 @@ "cimguiname": "igFindWindowSettingsByID", "defaults": {}, "funcname": "FindWindowSettingsByID", - "location": "imgui_internal:2995", + "location": "imgui_internal:3053", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByID", "ret": "ImGuiWindowSettings*", @@ -18116,7 +18157,7 @@ "cimguiname": "igFindWindowSettingsByWindow", "defaults": {}, "funcname": "FindWindowSettingsByWindow", - "location": "imgui_internal:2996", + "location": "imgui_internal:3054", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByWindow", "ret": "ImGuiWindowSettings*", @@ -18124,6 +18165,32 @@ "stname": "" } ], + "igFixupKeyChord": [ + { + "args": "(ImGuiContext* ctx,ImGuiKeyChord key_chord)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "key_chord", + "type": "ImGuiKeyChord" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiKeyChord key_chord)", + "call_args": "(ctx,key_chord)", + "cimguiname": "igFixupKeyChord", + "defaults": {}, + "funcname": "FixupKeyChord", + "location": "imgui_internal:3179", + "namespace": "ImGui", + "ov_cimguiname": "igFixupKeyChord", + "ret": "ImGuiKeyChord", + "signature": "(ImGuiContext*,ImGuiKeyChord)", + "stname": "" + } + ], "igFocusItem": [ { "args": "()", @@ -18133,7 +18200,7 @@ "cimguiname": "igFocusItem", "defaults": {}, "funcname": "FocusItem", - "location": "imgui_internal:3106", + "location": "imgui_internal:3166", "namespace": "ImGui", "ov_cimguiname": "igFocusItem", "ret": "void", @@ -18167,7 +18234,7 @@ "cimguiname": "igFocusTopMostWindowUnderOne", "defaults": {}, "funcname": "FocusTopMostWindowUnderOne", - "location": "imgui_internal:2950", + "location": "imgui_internal:3008", "namespace": "ImGui", "ov_cimguiname": "igFocusTopMostWindowUnderOne", "ret": "void", @@ -18195,7 +18262,7 @@ "flags": "0" }, "funcname": "FocusWindow", - "location": "imgui_internal:2949", + "location": "imgui_internal:3007", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", @@ -18217,7 +18284,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", - "location": "imgui_internal:3404", + "location": "imgui_internal:3466", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -18234,7 +18301,7 @@ "cimguiname": "igGcCompactTransientMiscBuffers", "defaults": {}, "funcname": "GcCompactTransientMiscBuffers", - "location": "imgui_internal:3402", + "location": "imgui_internal:3464", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientMiscBuffers", "ret": "void", @@ -18256,7 +18323,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", - "location": "imgui_internal:3403", + "location": "imgui_internal:3465", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -18273,7 +18340,7 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", - "location": "imgui_internal:3020", + "location": "imgui_internal:3078", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -18303,7 +18370,7 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", - "location": "imgui:975", + "location": "imgui:977", "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -18320,7 +18387,7 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui:894", + "location": "imgui:896", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList_Nil", "ret": "ImDrawList*", @@ -18340,7 +18407,7 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui_internal:2962", + "location": "imgui_internal:3020", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -18357,7 +18424,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:952", + "location": "imgui:954", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -18385,7 +18452,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui:444", + "location": "imgui:446", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Col", "ret": "ImU32", @@ -18405,7 +18472,7 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:445", + "location": "imgui:447", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Vec4", "ret": "ImU32", @@ -18425,7 +18492,7 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:446", + "location": "imgui:448", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_U32", "ret": "ImU32", @@ -18442,7 +18509,7 @@ "cimguiname": "igGetColumnIndex", "defaults": {}, "funcname": "GetColumnIndex", - "location": "imgui:807", + "location": "imgui:809", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -18468,7 +18535,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", - "location": "imgui_internal:3229", + "location": "imgui_internal:3291", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -18492,7 +18559,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui:810", + "location": "imgui:812", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -18518,7 +18585,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", - "location": "imgui_internal:3228", + "location": "imgui_internal:3290", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -18542,7 +18609,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui:808", + "location": "imgui:810", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -18559,7 +18626,7 @@ "cimguiname": "igGetColumnsCount", "defaults": {}, "funcname": "GetColumnsCount", - "location": "imgui:812", + "location": "imgui:814", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -18585,7 +18652,7 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", - "location": "imgui_internal:3226", + "location": "imgui_internal:3288", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -18607,7 +18674,7 @@ "cimguiname": "igGetContentRegionAvail", "defaults": {}, "funcname": "GetContentRegionAvail", - "location": "imgui:398", + "location": "imgui:400", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -18630,7 +18697,7 @@ "cimguiname": "igGetContentRegionMax", "defaults": {}, "funcname": "GetContentRegionMax", - "location": "imgui:399", + "location": "imgui:401", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMax", @@ -18653,7 +18720,7 @@ "cimguiname": "igGetContentRegionMaxAbs", "defaults": {}, "funcname": "GetContentRegionMaxAbs", - "location": "imgui_internal:3045", + "location": "imgui_internal:3103", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMaxAbs", @@ -18671,7 +18738,7 @@ "cimguiname": "igGetCurrentContext", "defaults": {}, "funcname": "GetCurrentContext", - "location": "imgui:298", + "location": "imgui:300", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -18688,7 +18755,7 @@ "cimguiname": "igGetCurrentFocusScope", "defaults": {}, "funcname": "GetCurrentFocusScope", - "location": "imgui_internal:3204", + "location": "imgui_internal:3266", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentFocusScope", "ret": "ImGuiID", @@ -18705,7 +18772,7 @@ "cimguiname": "igGetCurrentTabBar", "defaults": {}, "funcname": "GetCurrentTabBar", - "location": "imgui_internal:3289", + "location": "imgui_internal:3351", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTabBar", "ret": "ImGuiTabBar*", @@ -18722,7 +18789,7 @@ "cimguiname": "igGetCurrentTable", "defaults": {}, "funcname": "GetCurrentTable", - "location": "imgui_internal:3244", + "location": "imgui_internal:3306", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTable", "ret": "ImGuiTable*", @@ -18739,7 +18806,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", - "location": "imgui_internal:2930", + "location": "imgui_internal:2987", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -18756,7 +18823,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", - "location": "imgui_internal:2929", + "location": "imgui_internal:2986", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -18778,7 +18845,7 @@ "cimguiname": "igGetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui:459", + "location": "imgui:461", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -18796,7 +18863,7 @@ "cimguiname": "igGetCursorPosX", "defaults": {}, "funcname": "GetCursorPosX", - "location": "imgui:460", + "location": "imgui:462", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -18813,7 +18880,7 @@ "cimguiname": "igGetCursorPosY", "defaults": {}, "funcname": "GetCursorPosY", - "location": "imgui:461", + "location": "imgui:463", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -18835,7 +18902,7 @@ "cimguiname": "igGetCursorScreenPos", "defaults": {}, "funcname": "GetCursorScreenPos", - "location": "imgui:457", + "location": "imgui:459", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -18858,7 +18925,7 @@ "cimguiname": "igGetCursorStartPos", "defaults": {}, "funcname": "GetCursorStartPos", - "location": "imgui:465", + "location": "imgui:467", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -18876,7 +18943,7 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", - "location": "imgui_internal:2960", + "location": "imgui_internal:3018", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -18893,7 +18960,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui:844", + "location": "imgui:846", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -18910,7 +18977,7 @@ "cimguiname": "igGetDrawData", "defaults": {}, "funcname": "GetDrawData", - "location": "imgui:307", + "location": "imgui:309", "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -18927,7 +18994,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui:902", + "location": "imgui:904", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -18944,7 +19011,7 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", - "location": "imgui_internal:3021", + "location": "imgui_internal:3079", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -18961,7 +19028,7 @@ "cimguiname": "igGetFont", "defaults": {}, "funcname": "GetFont", - "location": "imgui:441", + "location": "imgui:443", "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -18978,7 +19045,7 @@ "cimguiname": "igGetFontSize", "defaults": {}, "funcname": "GetFontSize", - "location": "imgui:442", + "location": "imgui:444", "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -19000,7 +19067,7 @@ "cimguiname": "igGetFontTexUvWhitePixel", "defaults": {}, "funcname": "GetFontTexUvWhitePixel", - "location": "imgui:443", + "location": "imgui:445", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -19018,7 +19085,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui:895", + "location": "imgui:897", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_Nil", "ret": "ImDrawList*", @@ -19038,7 +19105,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:2961", + "location": "imgui_internal:3019", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_WindowPtr", "ret": "ImDrawList*", @@ -19058,7 +19125,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:2963", + "location": "imgui_internal:3021", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -19075,7 +19142,7 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui:901", + "location": "imgui:903", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -19092,7 +19159,7 @@ "cimguiname": "igGetFrameHeight", "defaults": {}, "funcname": "GetFrameHeight", - "location": "imgui:480", + "location": "imgui:482", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -19109,7 +19176,7 @@ "cimguiname": "igGetFrameHeightWithSpacing", "defaults": {}, "funcname": "GetFrameHeightWithSpacing", - "location": "imgui:481", + "location": "imgui:483", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -19126,7 +19193,7 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", - "location": "imgui_internal:3025", + "location": "imgui_internal:3083", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -19148,7 +19215,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:499", + "location": "imgui:501", "namespace": "ImGui", "ov_cimguiname": "igGetID_Str", "ret": "ImGuiID", @@ -19172,7 +19239,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:500", + "location": "imgui:502", "namespace": "ImGui", "ov_cimguiname": "igGetID_StrStr", "ret": "ImGuiID", @@ -19192,7 +19259,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:501", + "location": "imgui:503", "namespace": "ImGui", "ov_cimguiname": "igGetID_Ptr", "ret": "ImGuiID", @@ -19222,7 +19289,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3030", + "location": "imgui_internal:3088", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Str", "ret": "ImGuiID", @@ -19246,7 +19313,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3031", + "location": "imgui_internal:3089", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Int", "ret": "ImGuiID", @@ -19263,7 +19330,7 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", - "location": "imgui:302", + "location": "imgui:304", "namespace": "ImGui", "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", @@ -19286,7 +19353,7 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", - "location": "imgui_internal:3386", + "location": "imgui_internal:3448", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -19303,7 +19370,7 @@ "cimguiname": "igGetItemFlags", "defaults": {}, "funcname": "GetItemFlags", - "location": "imgui_internal:3019", + "location": "imgui_internal:3077", "namespace": "ImGui", "ov_cimguiname": "igGetItemFlags", "ret": "ImGuiItemFlags", @@ -19320,7 +19387,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui:882", + "location": "imgui:884", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -19342,7 +19409,7 @@ "cimguiname": "igGetItemRectMax", "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui:884", + "location": "imgui:886", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -19365,7 +19432,7 @@ "cimguiname": "igGetItemRectMin", "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui:883", + "location": "imgui:885", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -19388,7 +19455,7 @@ "cimguiname": "igGetItemRectSize", "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui:885", + "location": "imgui:887", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -19406,7 +19473,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", - "location": "imgui_internal:3018", + "location": "imgui_internal:3076", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -19416,31 +19483,23 @@ ], "igGetKeyChordName": [ { - "args": "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)", + "args": "(ImGuiKeyChord key_chord)", "argsT": [ { "name": "key_chord", "type": "ImGuiKeyChord" - }, - { - "name": "out_buf", - "type": "char*" - }, - { - "name": "out_buf_size", - "type": "int" } ], - "argsoriginal": "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)", - "call_args": "(key_chord,out_buf,out_buf_size)", + "argsoriginal": "(ImGuiKeyChord key_chord)", + "call_args": "(key_chord)", "cimguiname": "igGetKeyChordName", "defaults": {}, "funcname": "GetKeyChordName", - "location": "imgui_internal:3132", + "location": "imgui_internal:3193", "namespace": "ImGui", "ov_cimguiname": "igGetKeyChordName", "ret": "const char*", - "signature": "(ImGuiKeyChord,char*,int)", + "signature": "(ImGuiKeyChord)", "stname": "" } ], @@ -19462,7 +19521,7 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3130", + "location": "imgui_internal:3191", "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_ContextPtr", "ret": "ImGuiKeyData*", @@ -19482,7 +19541,7 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3131", + "location": "imgui_internal:3192", "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_Key", "ret": "ImGuiKeyData*", @@ -19504,7 +19563,7 @@ "cimguiname": "igGetKeyIndex", "defaults": {}, "funcname": "GetKeyIndex", - "location": "imgui:3167", + "location": "imgui:3168", "namespace": "ImGui", "ov_cimguiname": "igGetKeyIndex", "ret": "ImGuiKey", @@ -19542,7 +19601,7 @@ "cimguiname": "igGetKeyMagnitude2d", "defaults": {}, "funcname": "GetKeyMagnitude2d", - "location": "imgui_internal:3135", + "location": "imgui_internal:3196", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetKeyMagnitude2d", @@ -19565,7 +19624,7 @@ "cimguiname": "igGetKeyName", "defaults": {}, "funcname": "GetKeyName", - "location": "imgui:926", + "location": "imgui:928", "namespace": "ImGui", "ov_cimguiname": "igGetKeyName", "ret": "const char*", @@ -19587,7 +19646,7 @@ "cimguiname": "igGetKeyOwner", "defaults": {}, "funcname": "GetKeyOwner", - "location": "imgui_internal:3154", + "location": "imgui_internal:3215", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwner", "ret": "ImGuiID", @@ -19613,7 +19672,7 @@ "cimguiname": "igGetKeyOwnerData", "defaults": {}, "funcname": "GetKeyOwnerData", - "location": "imgui_internal:3159", + "location": "imgui_internal:3220", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwnerData", "ret": "ImGuiKeyOwnerData*", @@ -19643,7 +19702,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:925", + "location": "imgui:927", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -19660,7 +19719,7 @@ "cimguiname": "igGetMainViewport", "defaults": {}, "funcname": "GetMainViewport", - "location": "imgui:891", + "location": "imgui:893", "namespace": "ImGui", "ov_cimguiname": "igGetMainViewport", "ret": "ImGuiViewport*", @@ -19682,7 +19741,7 @@ "cimguiname": "igGetMouseClickedCount", "defaults": {}, "funcname": "GetMouseClickedCount", - "location": "imgui:937", + "location": "imgui:939", "namespace": "ImGui", "ov_cimguiname": "igGetMouseClickedCount", "ret": "int", @@ -19699,7 +19758,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:946", + "location": "imgui:948", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -19732,7 +19791,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:944", + "location": "imgui:946", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -19755,7 +19814,7 @@ "cimguiname": "igGetMousePos", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:941", + "location": "imgui:943", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -19778,7 +19837,7 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:942", + "location": "imgui:944", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -19801,7 +19860,7 @@ "cimguiname": "igGetNavTweakPressedAmount", "defaults": {}, "funcname": "GetNavTweakPressedAmount", - "location": "imgui_internal:3136", + "location": "imgui_internal:3197", "namespace": "ImGui", "ov_cimguiname": "igGetNavTweakPressedAmount", "ret": "float", @@ -19827,7 +19886,7 @@ "cimguiname": "igGetPopupAllowedExtentRect", "defaults": {}, "funcname": "GetPopupAllowedExtentRect", - "location": "imgui_internal:3069", + "location": "imgui_internal:3127", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetPopupAllowedExtentRect", @@ -19845,7 +19904,7 @@ "cimguiname": "igGetScrollMaxX", "defaults": {}, "funcname": "GetScrollMaxX", - "location": "imgui:410", + "location": "imgui:412", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -19862,7 +19921,7 @@ "cimguiname": "igGetScrollMaxY", "defaults": {}, "funcname": "GetScrollMaxY", - "location": "imgui:411", + "location": "imgui:413", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -19879,7 +19938,7 @@ "cimguiname": "igGetScrollX", "defaults": {}, "funcname": "GetScrollX", - "location": "imgui:406", + "location": "imgui:408", "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -19896,7 +19955,7 @@ "cimguiname": "igGetScrollY", "defaults": {}, "funcname": "GetScrollY", - "location": "imgui:407", + "location": "imgui:409", "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -19918,7 +19977,7 @@ "cimguiname": "igGetShortcutRoutingData", "defaults": {}, "funcname": "GetShortcutRoutingData", - "location": "imgui_internal:3192", + "location": "imgui_internal:3254", "namespace": "ImGui", "ov_cimguiname": "igGetShortcutRoutingData", "ret": "ImGuiKeyRoutingData*", @@ -19935,7 +19994,7 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui:905", + "location": "imgui:907", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -19952,7 +20011,7 @@ "cimguiname": "igGetStyle", "defaults": {}, "funcname": "GetStyle", - "location": "imgui:303", + "location": "imgui:305", "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -19975,7 +20034,7 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui:903", + "location": "imgui:905", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -19997,7 +20056,7 @@ "cimguiname": "igGetStyleColorVec4", "defaults": {}, "funcname": "GetStyleColorVec4", - "location": "imgui:447", + "location": "imgui:449", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", @@ -20020,7 +20079,7 @@ "cimguiname": "igGetStyleVarInfo", "defaults": {}, "funcname": "GetStyleVarInfo", - "location": "imgui_internal:3051", + "location": "imgui_internal:3109", "namespace": "ImGui", "ov_cimguiname": "igGetStyleVarInfo", "ret": "const ImGuiDataVarInfo*", @@ -20037,7 +20096,7 @@ "cimguiname": "igGetTextLineHeight", "defaults": {}, "funcname": "GetTextLineHeight", - "location": "imgui:478", + "location": "imgui:480", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -20054,7 +20113,7 @@ "cimguiname": "igGetTextLineHeightWithSpacing", "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", - "location": "imgui:479", + "location": "imgui:481", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -20071,7 +20130,7 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", - "location": "imgui:900", + "location": "imgui:902", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -20088,7 +20147,7 @@ "cimguiname": "igGetTopMostAndVisiblePopupModal", "defaults": {}, "funcname": "GetTopMostAndVisiblePopupModal", - "location": "imgui_internal:3071", + "location": "imgui_internal:3129", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostAndVisiblePopupModal", "ret": "ImGuiWindow*", @@ -20105,7 +20164,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", - "location": "imgui_internal:3070", + "location": "imgui_internal:3128", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -20122,7 +20181,7 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui:639", + "location": "imgui:641", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -20152,7 +20211,7 @@ "cimguiname": "igGetTypematicRepeatRate", "defaults": {}, "funcname": "GetTypematicRepeatRate", - "location": "imgui_internal:3138", + "location": "imgui_internal:3199", "namespace": "ImGui", "ov_cimguiname": "igGetTypematicRepeatRate", "ret": "void", @@ -20176,7 +20235,7 @@ "flags": "ImGuiTypingSelectFlags_None" }, "funcname": "GetTypingSelectRequest", - "location": "imgui_internal:3214", + "location": "imgui_internal:3276", "namespace": "ImGui", "ov_cimguiname": "igGetTypingSelectRequest", "ret": "ImGuiTypingSelectRequest*", @@ -20193,7 +20252,7 @@ "cimguiname": "igGetVersion", "defaults": {}, "funcname": "GetVersion", - "location": "imgui:319", + "location": "imgui:321", "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -20215,7 +20274,7 @@ "cimguiname": "igGetWindowContentRegionMax", "defaults": {}, "funcname": "GetWindowContentRegionMax", - "location": "imgui:401", + "location": "imgui:403", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMax", @@ -20238,7 +20297,7 @@ "cimguiname": "igGetWindowContentRegionMin", "defaults": {}, "funcname": "GetWindowContentRegionMin", - "location": "imgui:400", + "location": "imgui:402", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMin", @@ -20256,7 +20315,7 @@ "cimguiname": "igGetWindowDrawList", "defaults": {}, "funcname": "GetWindowDrawList", - "location": "imgui:369", + "location": "imgui:371", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -20273,7 +20332,7 @@ "cimguiname": "igGetWindowHeight", "defaults": {}, "funcname": "GetWindowHeight", - "location": "imgui:373", + "location": "imgui:375", "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -20295,7 +20354,7 @@ "cimguiname": "igGetWindowPos", "defaults": {}, "funcname": "GetWindowPos", - "location": "imgui:370", + "location": "imgui:372", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -20322,7 +20381,7 @@ "cimguiname": "igGetWindowResizeBorderID", "defaults": {}, "funcname": "GetWindowResizeBorderID", - "location": "imgui_internal:3349", + "location": "imgui_internal:3411", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeBorderID", "ret": "ImGuiID", @@ -20348,7 +20407,7 @@ "cimguiname": "igGetWindowResizeCornerID", "defaults": {}, "funcname": "GetWindowResizeCornerID", - "location": "imgui_internal:3348", + "location": "imgui_internal:3410", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeCornerID", "ret": "ImGuiID", @@ -20374,7 +20433,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", - "location": "imgui_internal:3347", + "location": "imgui_internal:3409", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -20404,7 +20463,7 @@ "cimguiname": "igGetWindowScrollbarRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", - "location": "imgui_internal:3346", + "location": "imgui_internal:3408", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -20427,7 +20486,7 @@ "cimguiname": "igGetWindowSize", "defaults": {}, "funcname": "GetWindowSize", - "location": "imgui:371", + "location": "imgui:373", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -20445,7 +20504,7 @@ "cimguiname": "igGetWindowWidth", "defaults": {}, "funcname": "GetWindowWidth", - "location": "imgui:372", + "location": "imgui:374", "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", @@ -20467,7 +20526,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:444", + "location": "imgui_internal:447", "ov_cimguiname": "igImAbs_Int", "ret": "int", "signature": "(int)", @@ -20486,7 +20545,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:445", + "location": "imgui_internal:448", "ov_cimguiname": "igImAbs_Float", "ret": "float", "signature": "(float)", @@ -20505,7 +20564,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:446", + "location": "imgui_internal:449", "ov_cimguiname": "igImAbs_double", "ret": "double", "signature": "(double)", @@ -20530,7 +20589,7 @@ "cimguiname": "igImAlphaBlendColors", "defaults": {}, "funcname": "ImAlphaBlendColors", - "location": "imgui_internal:357", + "location": "imgui_internal:360", "ov_cimguiname": "igImAlphaBlendColors", "ret": "ImU32", "signature": "(ImU32,ImU32)", @@ -20571,7 +20630,7 @@ "cimguiname": "igImBezierCubicCalc", "defaults": {}, "funcname": "ImBezierCubicCalc", - "location": "imgui_internal:490", + "location": "imgui_internal:493", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicCalc", "ret": "void", @@ -20617,7 +20676,7 @@ "cimguiname": "igImBezierCubicClosestPoint", "defaults": {}, "funcname": "ImBezierCubicClosestPoint", - "location": "imgui_internal:491", + "location": "imgui_internal:494", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPoint", "ret": "void", @@ -20663,7 +20722,7 @@ "cimguiname": "igImBezierCubicClosestPointCasteljau", "defaults": {}, "funcname": "ImBezierCubicClosestPointCasteljau", - "location": "imgui_internal:492", + "location": "imgui_internal:495", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPointCasteljau", "ret": "void", @@ -20701,7 +20760,7 @@ "cimguiname": "igImBezierQuadraticCalc", "defaults": {}, "funcname": "ImBezierQuadraticCalc", - "location": "imgui_internal:493", + "location": "imgui_internal:496", "nonUDT": 1, "ov_cimguiname": "igImBezierQuadraticCalc", "ret": "void", @@ -20727,7 +20786,7 @@ "cimguiname": "igImBitArrayClearAllBits", "defaults": {}, "funcname": "ImBitArrayClearAllBits", - "location": "imgui_internal:562", + "location": "imgui_internal:565", "ov_cimguiname": "igImBitArrayClearAllBits", "ret": "void", "signature": "(ImU32*,int)", @@ -20752,7 +20811,7 @@ "cimguiname": "igImBitArrayClearBit", "defaults": {}, "funcname": "ImBitArrayClearBit", - "location": "imgui_internal:564", + "location": "imgui_internal:567", "ov_cimguiname": "igImBitArrayClearBit", "ret": "void", "signature": "(ImU32*,int)", @@ -20773,7 +20832,7 @@ "cimguiname": "igImBitArrayGetStorageSizeInBytes", "defaults": {}, "funcname": "ImBitArrayGetStorageSizeInBytes", - "location": "imgui_internal:561", + "location": "imgui_internal:564", "ov_cimguiname": "igImBitArrayGetStorageSizeInBytes", "ret": "size_t", "signature": "(int)", @@ -20798,7 +20857,7 @@ "cimguiname": "igImBitArraySetBit", "defaults": {}, "funcname": "ImBitArraySetBit", - "location": "imgui_internal:565", + "location": "imgui_internal:568", "ov_cimguiname": "igImBitArraySetBit", "ret": "void", "signature": "(ImU32*,int)", @@ -20827,7 +20886,7 @@ "cimguiname": "igImBitArraySetBitRange", "defaults": {}, "funcname": "ImBitArraySetBitRange", - "location": "imgui_internal:566", + "location": "imgui_internal:569", "ov_cimguiname": "igImBitArraySetBitRange", "ret": "void", "signature": "(ImU32*,int,int)", @@ -20852,7 +20911,7 @@ "cimguiname": "igImBitArrayTestBit", "defaults": {}, "funcname": "ImBitArrayTestBit", - "location": "imgui_internal:563", + "location": "imgui_internal:566", "ov_cimguiname": "igImBitArrayTestBit", "ret": "bool", "signature": "(const ImU32*,int)", @@ -20873,7 +20932,7 @@ "cimguiname": "igImCharIsBlankA", "defaults": {}, "funcname": "ImCharIsBlankA", - "location": "imgui_internal:379", + "location": "imgui_internal:382", "ov_cimguiname": "igImCharIsBlankA", "ret": "bool", "signature": "(char)", @@ -20894,7 +20953,7 @@ "cimguiname": "igImCharIsBlankW", "defaults": {}, "funcname": "ImCharIsBlankW", - "location": "imgui_internal:380", + "location": "imgui_internal:383", "ov_cimguiname": "igImCharIsBlankW", "ret": "bool", "signature": "(unsigned int)", @@ -20927,7 +20986,7 @@ "cimguiname": "igImClamp", "defaults": {}, "funcname": "ImClamp", - "location": "imgui_internal:468", + "location": "imgui_internal:471", "nonUDT": 1, "ov_cimguiname": "igImClamp", "ret": "void", @@ -20953,7 +21012,7 @@ "cimguiname": "igImDot", "defaults": {}, "funcname": "ImDot", - "location": "imgui_internal:481", + "location": "imgui_internal:484", "ov_cimguiname": "igImDot", "ret": "float", "signature": "(const ImVec2,const ImVec2)", @@ -20982,7 +21041,7 @@ "cimguiname": "igImExponentialMovingAverage", "defaults": {}, "funcname": "ImExponentialMovingAverage", - "location": "imgui_internal:486", + "location": "imgui_internal:489", "ov_cimguiname": "igImExponentialMovingAverage", "ret": "float", "signature": "(float,float,int)", @@ -21003,7 +21062,7 @@ "cimguiname": "igImFileClose", "defaults": {}, "funcname": "ImFileClose", - "location": "imgui_internal:418", + "location": "imgui_internal:421", "ov_cimguiname": "igImFileClose", "ret": "bool", "signature": "(ImFileHandle)", @@ -21024,7 +21083,7 @@ "cimguiname": "igImFileGetSize", "defaults": {}, "funcname": "ImFileGetSize", - "location": "imgui_internal:419", + "location": "imgui_internal:422", "ov_cimguiname": "igImFileGetSize", "ret": "ImU64", "signature": "(ImFileHandle)", @@ -21060,7 +21119,7 @@ "padding_bytes": "0" }, "funcname": "ImFileLoadToMemory", - "location": "imgui_internal:425", + "location": "imgui_internal:428", "ov_cimguiname": "igImFileLoadToMemory", "ret": "void*", "signature": "(const char*,const char*,size_t*,int)", @@ -21085,7 +21144,7 @@ "cimguiname": "igImFileOpen", "defaults": {}, "funcname": "ImFileOpen", - "location": "imgui_internal:417", + "location": "imgui_internal:420", "ov_cimguiname": "igImFileOpen", "ret": "ImFileHandle", "signature": "(const char*,const char*)", @@ -21118,7 +21177,7 @@ "cimguiname": "igImFileRead", "defaults": {}, "funcname": "ImFileRead", - "location": "imgui_internal:420", + "location": "imgui_internal:423", "ov_cimguiname": "igImFileRead", "ret": "ImU64", "signature": "(void*,ImU64,ImU64,ImFileHandle)", @@ -21151,7 +21210,7 @@ "cimguiname": "igImFileWrite", "defaults": {}, "funcname": "ImFileWrite", - "location": "imgui_internal:421", + "location": "imgui_internal:424", "ov_cimguiname": "igImFileWrite", "ret": "ImU64", "signature": "(const void*,ImU64,ImU64,ImFileHandle)", @@ -21172,7 +21231,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:478", + "location": "imgui_internal:481", "ov_cimguiname": "igImFloor_Float", "ret": "float", "signature": "(float)", @@ -21195,7 +21254,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:479", + "location": "imgui_internal:482", "nonUDT": 1, "ov_cimguiname": "igImFloor_Vec2", "ret": "void", @@ -21217,7 +21276,7 @@ "cimguiname": "igImFontAtlasBuildFinish", "defaults": {}, "funcname": "ImFontAtlasBuildFinish", - "location": "imgui_internal:3484", + "location": "imgui_internal:3545", "ov_cimguiname": "igImFontAtlasBuildFinish", "ret": "void", "signature": "(ImFontAtlas*)", @@ -21238,7 +21297,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", - "location": "imgui_internal:3481", + "location": "imgui_internal:3542", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -21263,7 +21322,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", - "location": "imgui_internal:3487", + "location": "imgui_internal:3548", "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "ret": "void", "signature": "(unsigned char[256],float)", @@ -21308,7 +21367,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", - "location": "imgui_internal:3488", + "location": "imgui_internal:3549", "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "ret": "void", "signature": "(const unsigned char[256],unsigned char*,int,int,int,int,int)", @@ -21333,7 +21392,7 @@ "cimguiname": "igImFontAtlasBuildPackCustomRects", "defaults": {}, "funcname": "ImFontAtlasBuildPackCustomRects", - "location": "imgui_internal:3483", + "location": "imgui_internal:3544", "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", "ret": "void", "signature": "(ImFontAtlas*,void*)", @@ -21382,7 +21441,7 @@ "cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender32bppRectFromString", - "location": "imgui_internal:3486", + "location": "imgui_internal:3547", "ov_cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)", @@ -21431,7 +21490,7 @@ "cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender8bppRectFromString", - "location": "imgui_internal:3485", + "location": "imgui_internal:3546", "ov_cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)", @@ -21468,7 +21527,7 @@ "cimguiname": "igImFontAtlasBuildSetupFont", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFont", - "location": "imgui_internal:3482", + "location": "imgui_internal:3543", "ov_cimguiname": "igImFontAtlasBuildSetupFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)", @@ -21484,7 +21543,7 @@ "cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "defaults": {}, "funcname": "ImFontAtlasGetBuilderForStbTruetype", - "location": "imgui_internal:3478", + "location": "imgui_internal:3539", "ov_cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "ret": "const ImFontBuilderIO*", "signature": "()", @@ -21505,7 +21564,7 @@ "cimguiname": "igImFontAtlasUpdateConfigDataPointers", "defaults": {}, "funcname": "ImFontAtlasUpdateConfigDataPointers", - "location": "imgui_internal:3480", + "location": "imgui_internal:3541", "ov_cimguiname": "igImFontAtlasUpdateConfigDataPointers", "ret": "void", "signature": "(ImFontAtlas*)", @@ -21539,7 +21598,7 @@ "defaults": {}, "funcname": "ImFormatString", "isvararg": "...)", - "location": "imgui_internal:384", + "location": "imgui_internal:387", "ov_cimguiname": "igImFormatString", "ret": "int", "signature": "(char*,size_t,const char*,...)", @@ -21573,7 +21632,7 @@ "defaults": {}, "funcname": "ImFormatStringToTempBuffer", "isvararg": "...)", - "location": "imgui_internal:386", + "location": "imgui_internal:389", "ov_cimguiname": "igImFormatStringToTempBuffer", "ret": "void", "signature": "(const char**,const char**,const char*,...)", @@ -21606,7 +21665,7 @@ "cimguiname": "igImFormatStringToTempBufferV", "defaults": {}, "funcname": "ImFormatStringToTempBufferV", - "location": "imgui_internal:387", + "location": "imgui_internal:390", "ov_cimguiname": "igImFormatStringToTempBufferV", "ret": "void", "signature": "(const char**,const char**,const char*,va_list)", @@ -21639,7 +21698,7 @@ "cimguiname": "igImFormatStringV", "defaults": {}, "funcname": "ImFormatStringV", - "location": "imgui_internal:385", + "location": "imgui_internal:388", "ov_cimguiname": "igImFormatStringV", "ret": "int", "signature": "(char*,size_t,const char*,va_list)", @@ -21670,7 +21729,7 @@ "seed": "0" }, "funcname": "ImHashData", - "location": "imgui_internal:348", + "location": "imgui_internal:351", "ov_cimguiname": "igImHashData", "ret": "ImGuiID", "signature": "(const void*,size_t,ImGuiID)", @@ -21702,7 +21761,7 @@ "seed": "0" }, "funcname": "ImHashStr", - "location": "imgui_internal:349", + "location": "imgui_internal:352", "ov_cimguiname": "igImHashStr", "ret": "ImGuiID", "signature": "(const char*,size_t,ImGuiID)", @@ -21727,7 +21786,7 @@ "cimguiname": "igImInvLength", "defaults": {}, "funcname": "ImInvLength", - "location": "imgui_internal:475", + "location": "imgui_internal:478", "ov_cimguiname": "igImInvLength", "ret": "float", "signature": "(const ImVec2,float)", @@ -21748,7 +21807,7 @@ "cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "defaults": {}, "funcname": "ImIsFloatAboveGuaranteedIntegerPrecision", - "location": "imgui_internal:485", + "location": "imgui_internal:488", "ov_cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "ret": "bool", "signature": "(float)", @@ -21769,7 +21828,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:360", + "location": "imgui_internal:363", "ov_cimguiname": "igImIsPowerOfTwo_Int", "ret": "bool", "signature": "(int)", @@ -21788,7 +21847,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:361", + "location": "imgui_internal:364", "ov_cimguiname": "igImIsPowerOfTwo_U64", "ret": "bool", "signature": "(ImU64)", @@ -21809,7 +21868,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:473", + "location": "imgui_internal:476", "ov_cimguiname": "igImLengthSqr_Vec2", "ret": "float", "signature": "(const ImVec2)", @@ -21828,7 +21887,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:474", + "location": "imgui_internal:477", "ov_cimguiname": "igImLengthSqr_Vec4", "ret": "float", "signature": "(const ImVec4)", @@ -21861,7 +21920,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:469", + "location": "imgui_internal:472", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Float", "ret": "void", @@ -21893,7 +21952,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:470", + "location": "imgui_internal:473", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Vec2", "ret": "void", @@ -21925,7 +21984,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:471", + "location": "imgui_internal:474", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec4", "ret": "void", @@ -21959,7 +22018,7 @@ "cimguiname": "igImLineClosestPoint", "defaults": {}, "funcname": "ImLineClosestPoint", - "location": "imgui_internal:494", + "location": "imgui_internal:497", "nonUDT": 1, "ov_cimguiname": "igImLineClosestPoint", "ret": "void", @@ -21989,7 +22048,7 @@ "cimguiname": "igImLinearSweep", "defaults": {}, "funcname": "ImLinearSweep", - "location": "imgui_internal:483", + "location": "imgui_internal:486", "ov_cimguiname": "igImLinearSweep", "ret": "float", "signature": "(float,float,float)", @@ -22010,7 +22069,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:442", + "location": "imgui_internal:445", "ov_cimguiname": "igImLog_Float", "ret": "float", "signature": "(float)", @@ -22029,7 +22088,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:443", + "location": "imgui_internal:446", "ov_cimguiname": "igImLog_double", "ret": "double", "signature": "(double)", @@ -22058,7 +22117,7 @@ "cimguiname": "igImMax", "defaults": {}, "funcname": "ImMax", - "location": "imgui_internal:467", + "location": "imgui_internal:470", "nonUDT": 1, "ov_cimguiname": "igImMax", "ret": "void", @@ -22088,7 +22147,7 @@ "cimguiname": "igImMin", "defaults": {}, "funcname": "ImMin", - "location": "imgui_internal:466", + "location": "imgui_internal:469", "nonUDT": 1, "ov_cimguiname": "igImMin", "ret": "void", @@ -22114,7 +22173,7 @@ "cimguiname": "igImModPositive", "defaults": {}, "funcname": "ImModPositive", - "location": "imgui_internal:480", + "location": "imgui_internal:483", "ov_cimguiname": "igImModPositive", "ret": "int", "signature": "(int,int)", @@ -22143,7 +22202,7 @@ "cimguiname": "igImMul", "defaults": {}, "funcname": "ImMul", - "location": "imgui_internal:484", + "location": "imgui_internal:487", "nonUDT": 1, "ov_cimguiname": "igImMul", "ret": "void", @@ -22165,7 +22224,7 @@ "cimguiname": "igImParseFormatFindEnd", "defaults": {}, "funcname": "ImParseFormatFindEnd", - "location": "imgui_internal:389", + "location": "imgui_internal:392", "ov_cimguiname": "igImParseFormatFindEnd", "ret": "const char*", "signature": "(const char*)", @@ -22186,7 +22245,7 @@ "cimguiname": "igImParseFormatFindStart", "defaults": {}, "funcname": "ImParseFormatFindStart", - "location": "imgui_internal:388", + "location": "imgui_internal:391", "ov_cimguiname": "igImParseFormatFindStart", "ret": "const char*", "signature": "(const char*)", @@ -22211,7 +22270,7 @@ "cimguiname": "igImParseFormatPrecision", "defaults": {}, "funcname": "ImParseFormatPrecision", - "location": "imgui_internal:393", + "location": "imgui_internal:396", "ov_cimguiname": "igImParseFormatPrecision", "ret": "int", "signature": "(const char*,int)", @@ -22240,7 +22299,7 @@ "cimguiname": "igImParseFormatSanitizeForPrinting", "defaults": {}, "funcname": "ImParseFormatSanitizeForPrinting", - "location": "imgui_internal:391", + "location": "imgui_internal:394", "ov_cimguiname": "igImParseFormatSanitizeForPrinting", "ret": "void", "signature": "(const char*,char*,size_t)", @@ -22269,7 +22328,7 @@ "cimguiname": "igImParseFormatSanitizeForScanning", "defaults": {}, "funcname": "ImParseFormatSanitizeForScanning", - "location": "imgui_internal:392", + "location": "imgui_internal:395", "ov_cimguiname": "igImParseFormatSanitizeForScanning", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -22298,7 +22357,7 @@ "cimguiname": "igImParseFormatTrimDecorations", "defaults": {}, "funcname": "ImParseFormatTrimDecorations", - "location": "imgui_internal:390", + "location": "imgui_internal:393", "ov_cimguiname": "igImParseFormatTrimDecorations", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -22323,7 +22382,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:440", + "location": "imgui_internal:443", "ov_cimguiname": "igImPow_Float", "ret": "float", "signature": "(float,float)", @@ -22346,7 +22405,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:441", + "location": "imgui_internal:444", "ov_cimguiname": "igImPow_double", "ret": "double", "signature": "(double,double)", @@ -22381,7 +22440,7 @@ "cimguiname": "igImQsort", "defaults": {}, "funcname": "ImQsort", - "location": "imgui_internal:353", + "location": "imgui_internal:356", "ov_cimguiname": "igImQsort", "ret": "void", "signature": "(void*,size_t,size_t,int(*)(void const*,void const*))", @@ -22414,7 +22473,7 @@ "cimguiname": "igImRotate", "defaults": {}, "funcname": "ImRotate", - "location": "imgui_internal:482", + "location": "imgui_internal:485", "nonUDT": 1, "ov_cimguiname": "igImRotate", "ret": "void", @@ -22436,7 +22495,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:452", + "location": "imgui_internal:455", "ov_cimguiname": "igImRsqrt_Float", "ret": "float", "signature": "(float)", @@ -22455,7 +22514,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:454", + "location": "imgui_internal:457", "ov_cimguiname": "igImRsqrt_double", "ret": "double", "signature": "(double)", @@ -22476,7 +22535,7 @@ "cimguiname": "igImSaturate", "defaults": {}, "funcname": "ImSaturate", - "location": "imgui_internal:472", + "location": "imgui_internal:475", "ov_cimguiname": "igImSaturate", "ret": "float", "signature": "(float)", @@ -22497,7 +22556,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:447", + "location": "imgui_internal:450", "ov_cimguiname": "igImSign_Float", "ret": "float", "signature": "(float)", @@ -22516,7 +22575,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:448", + "location": "imgui_internal:451", "ov_cimguiname": "igImSign_double", "ret": "double", "signature": "(double)", @@ -22537,7 +22596,7 @@ "cimguiname": "igImStrSkipBlank", "defaults": {}, "funcname": "ImStrSkipBlank", - "location": "imgui_internal:374", + "location": "imgui_internal:377", "ov_cimguiname": "igImStrSkipBlank", "ret": "const char*", "signature": "(const char*)", @@ -22558,7 +22617,7 @@ "cimguiname": "igImStrTrimBlanks", "defaults": {}, "funcname": "ImStrTrimBlanks", - "location": "imgui_internal:373", + "location": "imgui_internal:376", "ov_cimguiname": "igImStrTrimBlanks", "ret": "void", "signature": "(char*)", @@ -22583,7 +22642,7 @@ "cimguiname": "igImStrbolW", "defaults": {}, "funcname": "ImStrbolW", - "location": "imgui_internal:376", + "location": "imgui_internal:379", "ov_cimguiname": "igImStrbolW", "ret": "const ImWchar*", "signature": "(const ImWchar*,const ImWchar*)", @@ -22612,7 +22671,7 @@ "cimguiname": "igImStrchrRange", "defaults": {}, "funcname": "ImStrchrRange", - "location": "imgui_internal:370", + "location": "imgui_internal:373", "ov_cimguiname": "igImStrchrRange", "ret": "const char*", "signature": "(const char*,const char*,char)", @@ -22633,7 +22692,7 @@ "cimguiname": "igImStrdup", "defaults": {}, "funcname": "ImStrdup", - "location": "imgui_internal:368", + "location": "imgui_internal:371", "ov_cimguiname": "igImStrdup", "ret": "char*", "signature": "(const char*)", @@ -22662,7 +22721,7 @@ "cimguiname": "igImStrdupcpy", "defaults": {}, "funcname": "ImStrdupcpy", - "location": "imgui_internal:369", + "location": "imgui_internal:372", "ov_cimguiname": "igImStrdupcpy", "ret": "char*", "signature": "(char*,size_t*,const char*)", @@ -22687,7 +22746,7 @@ "cimguiname": "igImStreolRange", "defaults": {}, "funcname": "ImStreolRange", - "location": "imgui_internal:371", + "location": "imgui_internal:374", "ov_cimguiname": "igImStreolRange", "ret": "const char*", "signature": "(const char*,const char*)", @@ -22712,7 +22771,7 @@ "cimguiname": "igImStricmp", "defaults": {}, "funcname": "ImStricmp", - "location": "imgui_internal:365", + "location": "imgui_internal:368", "ov_cimguiname": "igImStricmp", "ret": "int", "signature": "(const char*,const char*)", @@ -22745,7 +22804,7 @@ "cimguiname": "igImStristr", "defaults": {}, "funcname": "ImStristr", - "location": "imgui_internal:372", + "location": "imgui_internal:375", "ov_cimguiname": "igImStristr", "ret": "const char*", "signature": "(const char*,const char*,const char*,const char*)", @@ -22766,7 +22825,7 @@ "cimguiname": "igImStrlenW", "defaults": {}, "funcname": "ImStrlenW", - "location": "imgui_internal:375", + "location": "imgui_internal:378", "ov_cimguiname": "igImStrlenW", "ret": "int", "signature": "(const ImWchar*)", @@ -22795,7 +22854,7 @@ "cimguiname": "igImStrncpy", "defaults": {}, "funcname": "ImStrncpy", - "location": "imgui_internal:367", + "location": "imgui_internal:370", "ov_cimguiname": "igImStrncpy", "ret": "void", "signature": "(char*,const char*,size_t)", @@ -22824,7 +22883,7 @@ "cimguiname": "igImStrnicmp", "defaults": {}, "funcname": "ImStrnicmp", - "location": "imgui_internal:366", + "location": "imgui_internal:369", "ov_cimguiname": "igImStrnicmp", "ret": "int", "signature": "(const char*,const char*,size_t)", @@ -22853,7 +22912,7 @@ "cimguiname": "igImTextCharFromUtf8", "defaults": {}, "funcname": "ImTextCharFromUtf8", - "location": "imgui_internal:398", + "location": "imgui_internal:401", "ov_cimguiname": "igImTextCharFromUtf8", "ret": "int", "signature": "(unsigned int*,const char*,const char*)", @@ -22878,7 +22937,7 @@ "cimguiname": "igImTextCharToUtf8", "defaults": {}, "funcname": "ImTextCharToUtf8", - "location": "imgui_internal:396", + "location": "imgui_internal:399", "ov_cimguiname": "igImTextCharToUtf8", "ret": "const char*", "signature": "(char[5],unsigned int)", @@ -22903,7 +22962,7 @@ "cimguiname": "igImTextCountCharsFromUtf8", "defaults": {}, "funcname": "ImTextCountCharsFromUtf8", - "location": "imgui_internal:400", + "location": "imgui_internal:403", "ov_cimguiname": "igImTextCountCharsFromUtf8", "ret": "int", "signature": "(const char*,const char*)", @@ -22928,7 +22987,7 @@ "cimguiname": "igImTextCountUtf8BytesFromChar", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromChar", - "location": "imgui_internal:401", + "location": "imgui_internal:404", "ov_cimguiname": "igImTextCountUtf8BytesFromChar", "ret": "int", "signature": "(const char*,const char*)", @@ -22953,7 +23012,7 @@ "cimguiname": "igImTextCountUtf8BytesFromStr", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromStr", - "location": "imgui_internal:402", + "location": "imgui_internal:405", "ov_cimguiname": "igImTextCountUtf8BytesFromStr", "ret": "int", "signature": "(const ImWchar*,const ImWchar*)", @@ -22978,7 +23037,7 @@ "cimguiname": "igImTextFindPreviousUtf8Codepoint", "defaults": {}, "funcname": "ImTextFindPreviousUtf8Codepoint", - "location": "imgui_internal:403", + "location": "imgui_internal:406", "ov_cimguiname": "igImTextFindPreviousUtf8Codepoint", "ret": "const char*", "signature": "(const char*,const char*)", @@ -23017,7 +23076,7 @@ "in_remaining": "NULL" }, "funcname": "ImTextStrFromUtf8", - "location": "imgui_internal:399", + "location": "imgui_internal:402", "ov_cimguiname": "igImTextStrFromUtf8", "ret": "int", "signature": "(ImWchar*,int,const char*,const char*,const char**)", @@ -23050,7 +23109,7 @@ "cimguiname": "igImTextStrToUtf8", "defaults": {}, "funcname": "ImTextStrToUtf8", - "location": "imgui_internal:397", + "location": "imgui_internal:400", "ov_cimguiname": "igImTextStrToUtf8", "ret": "int", "signature": "(char*,int,const ImWchar*,const ImWchar*)", @@ -23071,7 +23130,7 @@ "cimguiname": "igImToUpper", "defaults": {}, "funcname": "ImToUpper", - "location": "imgui_internal:378", + "location": "imgui_internal:381", "ov_cimguiname": "igImToUpper", "ret": "char", "signature": "(char)", @@ -23100,7 +23159,7 @@ "cimguiname": "igImTriangleArea", "defaults": {}, "funcname": "ImTriangleArea", - "location": "imgui_internal:498", + "location": "imgui_internal:501", "ov_cimguiname": "igImTriangleArea", "ret": "float", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -23148,7 +23207,7 @@ "cimguiname": "igImTriangleBarycentricCoords", "defaults": {}, "funcname": "ImTriangleBarycentricCoords", - "location": "imgui_internal:497", + "location": "imgui_internal:500", "ov_cimguiname": "igImTriangleBarycentricCoords", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -23185,7 +23244,7 @@ "cimguiname": "igImTriangleClosestPoint", "defaults": {}, "funcname": "ImTriangleClosestPoint", - "location": "imgui_internal:496", + "location": "imgui_internal:499", "nonUDT": 1, "ov_cimguiname": "igImTriangleClosestPoint", "ret": "void", @@ -23219,7 +23278,7 @@ "cimguiname": "igImTriangleContainsPoint", "defaults": {}, "funcname": "ImTriangleContainsPoint", - "location": "imgui_internal:495", + "location": "imgui_internal:498", "ov_cimguiname": "igImTriangleContainsPoint", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", @@ -23240,7 +23299,7 @@ "cimguiname": "igImTrunc", "defaults": {}, "funcname": "ImTrunc", - "location": "imgui_internal:476", + "location": "imgui_internal:479", "ov_cimguiname": "igImTrunc_Float", "ret": "float", "signature": "(float)", @@ -23263,7 +23322,7 @@ "cimguiname": "igImTrunc", "defaults": {}, "funcname": "ImTrunc", - "location": "imgui_internal:477", + "location": "imgui_internal:480", "nonUDT": 1, "ov_cimguiname": "igImTrunc_Vec2", "ret": "void", @@ -23285,7 +23344,7 @@ "cimguiname": "igImUpperPowerOfTwo", "defaults": {}, "funcname": "ImUpperPowerOfTwo", - "location": "imgui_internal:362", + "location": "imgui_internal:365", "ov_cimguiname": "igImUpperPowerOfTwo", "ret": "int", "signature": "(int)", @@ -23331,7 +23390,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui:538", + "location": "imgui:540", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -23382,7 +23441,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui:539", + "location": "imgui:541", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -23434,7 +23493,7 @@ "flags": "0" }, "funcname": "ImageButtonEx", - "location": "imgui_internal:3335", + "location": "imgui_internal:3397", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", @@ -23458,7 +23517,7 @@ "indent_w": "0.0f" }, "funcname": "Indent", - "location": "imgui:473", + "location": "imgui:475", "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -23475,7 +23534,7 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", - "location": "imgui_internal:2967", + "location": "imgui_internal:3025", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -23522,7 +23581,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui:610", + "location": "imgui:612", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -23569,7 +23628,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui:602", + "location": "imgui:604", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -23606,7 +23665,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui:603", + "location": "imgui:605", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -23643,7 +23702,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui:604", + "location": "imgui:606", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -23680,7 +23739,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui:605", + "location": "imgui:607", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -23722,7 +23781,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui:606", + "location": "imgui:608", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -23754,7 +23813,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui:607", + "location": "imgui:609", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -23786,7 +23845,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui:608", + "location": "imgui:610", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -23818,7 +23877,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui:609", + "location": "imgui:611", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -23869,7 +23928,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui:611", + "location": "imgui:613", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -23924,7 +23983,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui:612", + "location": "imgui:614", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -23970,7 +24029,7 @@ "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui:599", + "location": "imgui:601", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -23992,7 +24051,7 @@ "cimguiname": "igInputTextDeactivateHook", "defaults": {}, "funcname": "InputTextDeactivateHook", - "location": "imgui_internal:3382", + "location": "imgui_internal:3444", "namespace": "ImGui", "ov_cimguiname": "igInputTextDeactivateHook", "ret": "void", @@ -24045,7 +24104,7 @@ "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "imgui_internal:3381", + "location": "imgui_internal:3443", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -24096,7 +24155,7 @@ "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui:600", + "location": "imgui:602", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -24146,7 +24205,7 @@ "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui:601", + "location": "imgui:603", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -24178,7 +24237,7 @@ "flags": "0" }, "funcname": "InvisibleButton", - "location": "imgui:524", + "location": "imgui:526", "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -24200,7 +24259,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", - "location": "imgui_internal:3141", + "location": "imgui_internal:3202", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -24222,7 +24281,7 @@ "cimguiname": "igIsAliasKey", "defaults": {}, "funcname": "IsAliasKey", - "location": "imgui_internal:3117", + "location": "imgui_internal:3177", "namespace": "ImGui", "ov_cimguiname": "igIsAliasKey", "ret": "bool", @@ -24239,7 +24298,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui:880", + "location": "imgui:882", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -24256,7 +24315,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui:881", + "location": "imgui:883", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -24273,7 +24332,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui:879", + "location": "imgui:881", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -24290,7 +24349,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:940", + "location": "imgui:942", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -24316,7 +24375,7 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", - "location": "imgui_internal:3039", + "location": "imgui_internal:3097", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -24333,7 +24392,7 @@ "cimguiname": "igIsDragDropActive", "defaults": {}, "funcname": "IsDragDropActive", - "location": "imgui_internal:3207", + "location": "imgui_internal:3269", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropActive", "ret": "bool", @@ -24350,7 +24409,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", - "location": "imgui_internal:3210", + "location": "imgui_internal:3272", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -24372,7 +24431,7 @@ "cimguiname": "igIsGamepadKey", "defaults": {}, "funcname": "IsGamepadKey", - "location": "imgui_internal:3115", + "location": "imgui_internal:3175", "namespace": "ImGui", "ov_cimguiname": "igIsGamepadKey", "ret": "bool", @@ -24389,7 +24448,7 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui:875", + "location": "imgui:877", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -24406,7 +24465,7 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", - "location": "imgui:870", + "location": "imgui:872", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -24430,7 +24489,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui:872", + "location": "imgui:874", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -24447,7 +24506,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui:876", + "location": "imgui:878", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -24464,7 +24523,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui:877", + "location": "imgui:879", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -24481,7 +24540,7 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui:874", + "location": "imgui:876", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -24498,7 +24557,7 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui:871", + "location": "imgui:873", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -24522,7 +24581,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui:869", + "location": "imgui:871", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -24539,7 +24598,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui:878", + "location": "imgui:880", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -24556,7 +24615,7 @@ "cimguiname": "igIsItemToggledSelection", "defaults": {}, "funcname": "IsItemToggledSelection", - "location": "imgui_internal:3044", + "location": "imgui_internal:3102", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -24573,7 +24632,7 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui:873", + "location": "imgui:875", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -24595,7 +24654,7 @@ "cimguiname": "igIsKeyChordPressed", "defaults": {}, "funcname": "IsKeyChordPressed", - "location": "imgui:924", + "location": "imgui:926", "namespace": "ImGui", "ov_cimguiname": "igIsKeyChordPressed_Nil", "ret": "bool", @@ -24625,7 +24684,7 @@ "flags": "0" }, "funcname": "IsKeyChordPressed", - "location": "imgui_internal:3188", + "location": "imgui_internal:3249", "namespace": "ImGui", "ov_cimguiname": "igIsKeyChordPressed_ID", "ret": "bool", @@ -24647,7 +24706,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:921", + "location": "imgui:923", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_Nil", "ret": "bool", @@ -24671,7 +24730,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui_internal:3167", + "location": "imgui_internal:3228", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_ID", "ret": "bool", @@ -24699,7 +24758,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:922", + "location": "imgui:924", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_Bool", "ret": "bool", @@ -24729,7 +24788,7 @@ "flags": "0" }, "funcname": "IsKeyPressed", - "location": "imgui_internal:3168", + "location": "imgui_internal:3229", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_ID", "ret": "bool", @@ -24751,7 +24810,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:923", + "location": "imgui:925", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_Nil", "ret": "bool", @@ -24775,7 +24834,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui_internal:3169", + "location": "imgui_internal:3230", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_ID", "ret": "bool", @@ -24797,7 +24856,7 @@ "cimguiname": "igIsKeyboardKey", "defaults": {}, "funcname": "IsKeyboardKey", - "location": "imgui_internal:3114", + "location": "imgui_internal:3174", "namespace": "ImGui", "ov_cimguiname": "igIsKeyboardKey", "ret": "bool", @@ -24819,7 +24878,7 @@ "cimguiname": "igIsLegacyKey", "defaults": {}, "funcname": "IsLegacyKey", - "location": "imgui_internal:3113", + "location": "imgui_internal:3173", "namespace": "ImGui", "ov_cimguiname": "igIsLegacyKey", "ret": "bool", @@ -24827,6 +24886,28 @@ "stname": "" } ], + "igIsModKey": [ + { + "args": "(ImGuiKey key)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igIsModKey", + "defaults": {}, + "funcname": "IsModKey", + "location": "imgui_internal:3178", + "namespace": "ImGui", + "ov_cimguiname": "igIsModKey", + "ret": "bool", + "signature": "(ImGuiKey)", + "stname": "" + } + ], "igIsMouseClicked": [ { "args": "(ImGuiMouseButton button,bool repeat)", @@ -24847,7 +24928,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:934", + "location": "imgui:936", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_Bool", "ret": "bool", @@ -24877,7 +24958,7 @@ "flags": "0" }, "funcname": "IsMouseClicked", - "location": "imgui_internal:3171", + "location": "imgui_internal:3232", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_ID", "ret": "bool", @@ -24899,7 +24980,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:936", + "location": "imgui:938", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_Nil", "ret": "bool", @@ -24923,7 +25004,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui_internal:3173", + "location": "imgui_internal:3234", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_ID", "ret": "bool", @@ -24945,7 +25026,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:933", + "location": "imgui:935", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_Nil", "ret": "bool", @@ -24969,7 +25050,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui_internal:3170", + "location": "imgui_internal:3231", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_ID", "ret": "bool", @@ -24997,7 +25078,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "imgui_internal:3134", + "location": "imgui_internal:3195", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -25025,7 +25106,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:943", + "location": "imgui:945", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -25057,7 +25138,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:938", + "location": "imgui:940", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -25079,7 +25160,7 @@ "cimguiname": "igIsMouseKey", "defaults": {}, "funcname": "IsMouseKey", - "location": "imgui_internal:3116", + "location": "imgui_internal:3176", "namespace": "ImGui", "ov_cimguiname": "igIsMouseKey", "ret": "bool", @@ -25103,7 +25184,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:939", + "location": "imgui:941", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -25125,7 +25206,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:935", + "location": "imgui:937", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_Nil", "ret": "bool", @@ -25149,7 +25230,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui_internal:3172", + "location": "imgui_internal:3233", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_ID", "ret": "bool", @@ -25171,7 +25252,7 @@ "cimguiname": "igIsNamedKey", "defaults": {}, "funcname": "IsNamedKey", - "location": "imgui_internal:3111", + "location": "imgui_internal:3171", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKey", "ret": "bool", @@ -25193,7 +25274,7 @@ "cimguiname": "igIsNamedKeyOrModKey", "defaults": {}, "funcname": "IsNamedKeyOrModKey", - "location": "imgui_internal:3112", + "location": "imgui_internal:3172", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKeyOrModKey", "ret": "bool", @@ -25221,7 +25302,7 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui:745", + "location": "imgui:747", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_Str", "ret": "bool", @@ -25245,7 +25326,7 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", - "location": "imgui_internal:3065", + "location": "imgui_internal:3123", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_ID", "ret": "bool", @@ -25267,7 +25348,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:898", + "location": "imgui:900", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Nil", "ret": "bool", @@ -25291,7 +25372,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:899", + "location": "imgui:901", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Vec2", "ret": "bool", @@ -25317,7 +25398,7 @@ "cimguiname": "igIsWindowAbove", "defaults": {}, "funcname": "IsWindowAbove", - "location": "imgui_internal:2937", + "location": "imgui_internal:2994", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAbove", "ret": "bool", @@ -25334,7 +25415,7 @@ "cimguiname": "igIsWindowAppearing", "defaults": {}, "funcname": "IsWindowAppearing", - "location": "imgui:365", + "location": "imgui:367", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -25364,7 +25445,7 @@ "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", - "location": "imgui_internal:2935", + "location": "imgui_internal:2992", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -25381,7 +25462,7 @@ "cimguiname": "igIsWindowCollapsed", "defaults": {}, "funcname": "IsWindowCollapsed", - "location": "imgui:366", + "location": "imgui:368", "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -25409,7 +25490,7 @@ "flags": "0" }, "funcname": "IsWindowContentHoverable", - "location": "imgui_internal:3038", + "location": "imgui_internal:3096", "namespace": "ImGui", "ov_cimguiname": "igIsWindowContentHoverable", "ret": "bool", @@ -25433,7 +25514,7 @@ "flags": "0" }, "funcname": "IsWindowFocused", - "location": "imgui:367", + "location": "imgui:369", "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -25457,7 +25538,7 @@ "flags": "0" }, "funcname": "IsWindowHovered", - "location": "imgui:368", + "location": "imgui:370", "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -25479,7 +25560,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", - "location": "imgui_internal:2938", + "location": "imgui_internal:2995", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -25505,7 +25586,7 @@ "cimguiname": "igIsWindowWithinBeginStackOf", "defaults": {}, "funcname": "IsWindowWithinBeginStackOf", - "location": "imgui_internal:2936", + "location": "imgui_internal:2993", "namespace": "ImGui", "ov_cimguiname": "igIsWindowWithinBeginStackOf", "ret": "bool", @@ -25542,7 +25623,7 @@ "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "imgui_internal:3036", + "location": "imgui_internal:3094", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -25572,7 +25653,7 @@ "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", - "location": "imgui_internal:3037", + "location": "imgui_internal:3095", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", @@ -25600,7 +25681,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3034", + "location": "imgui_internal:3092", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Vec2", "ret": "void", @@ -25626,7 +25707,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3035", + "location": "imgui_internal:3093", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Rect", "ret": "void", @@ -25648,7 +25729,7 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", - "location": "imgui_internal:3027", + "location": "imgui_internal:3085", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -25679,7 +25760,7 @@ "defaults": {}, "funcname": "LabelText", "isvararg": "...)", - "location": "imgui:513", + "location": "imgui:515", "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -25709,7 +25790,7 @@ "cimguiname": "igLabelTextV", "defaults": {}, "funcname": "LabelTextV", - "location": "imgui:514", + "location": "imgui:516", "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -25749,7 +25830,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:658", + "location": "imgui:660", "namespace": "ImGui", "ov_cimguiname": "igListBox_Str_arr", "ret": "bool", @@ -25793,7 +25874,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:659", + "location": "imgui:661", "namespace": "ImGui", "ov_cimguiname": "igListBox_FnStrPtr", "ret": "bool", @@ -25815,7 +25896,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:959", + "location": "imgui:961", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -25843,7 +25924,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:960", + "location": "imgui:962", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -25865,7 +25946,7 @@ "cimguiname": "igLocalizeGetMsg", "defaults": {}, "funcname": "LocalizeGetMsg", - "location": "imgui_internal:3001", + "location": "imgui_internal:3059", "namespace": "ImGui", "ov_cimguiname": "igLocalizeGetMsg", "ret": "const char*", @@ -25891,7 +25972,7 @@ "cimguiname": "igLocalizeRegisterEntries", "defaults": {}, "funcname": "LocalizeRegisterEntries", - "location": "imgui_internal:3000", + "location": "imgui_internal:3058", "namespace": "ImGui", "ov_cimguiname": "igLocalizeRegisterEntries", "ret": "void", @@ -25917,7 +25998,7 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", - "location": "imgui_internal:3054", + "location": "imgui_internal:3112", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -25934,7 +26015,7 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", - "location": "imgui:829", + "location": "imgui:831", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -25951,7 +26032,7 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", - "location": "imgui:828", + "location": "imgui:830", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -25983,7 +26064,7 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "imgui_internal:3056", + "location": "imgui_internal:3114", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -26009,7 +26090,7 @@ "cimguiname": "igLogSetNextTextDecoration", "defaults": {}, "funcname": "LogSetNextTextDecoration", - "location": "imgui_internal:3057", + "location": "imgui_internal:3115", "namespace": "ImGui", "ov_cimguiname": "igLogSetNextTextDecoration", "ret": "void", @@ -26036,7 +26117,7 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui:830", + "location": "imgui:832", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -26063,7 +26144,7 @@ "cimguiname": "igLogTextV", "defaults": {}, "funcname": "LogTextV", - "location": "imgui:831", + "location": "imgui:833", "namespace": "ImGui", "ov_cimguiname": "igLogTextV", "ret": "void", @@ -26087,7 +26168,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "imgui_internal:3055", + "location": "imgui_internal:3113", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -26111,7 +26192,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui:827", + "location": "imgui:829", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -26140,7 +26221,7 @@ "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui:826", + "location": "imgui:828", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -26164,7 +26245,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui:825", + "location": "imgui:827", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -26181,7 +26262,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:2986", + "location": "imgui_internal:3044", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_Nil", "ret": "void", @@ -26201,7 +26282,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:2987", + "location": "imgui_internal:3045", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_WindowPtr", "ret": "void", @@ -26223,7 +26304,7 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", - "location": "imgui_internal:3028", + "location": "imgui_internal:3086", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -26245,7 +26326,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:976", + "location": "imgui:978", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -26267,7 +26348,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:977", + "location": "imgui:979", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -26305,7 +26386,7 @@ "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui:686", + "location": "imgui:688", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_Bool", "ret": "bool", @@ -26339,7 +26420,7 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui:687", + "location": "imgui:689", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_BoolPtr", "ret": "bool", @@ -26381,7 +26462,7 @@ "shortcut": "NULL" }, "funcname": "MenuItemEx", - "location": "imgui_internal:3079", + "location": "imgui_internal:3137", "namespace": "ImGui", "ov_cimguiname": "igMenuItemEx", "ret": "bool", @@ -26403,7 +26484,7 @@ "cimguiname": "igMouseButtonToKey", "defaults": {}, "funcname": "MouseButtonToKey", - "location": "imgui_internal:3133", + "location": "imgui_internal:3194", "namespace": "ImGui", "ov_cimguiname": "igMouseButtonToKey", "ret": "ImGuiKey", @@ -26425,7 +26506,7 @@ "cimguiname": "igNavClearPreferredPosForAxis", "defaults": {}, "funcname": "NavClearPreferredPosForAxis", - "location": "imgui_internal:3097", + "location": "imgui_internal:3156", "namespace": "ImGui", "ov_cimguiname": "igNavClearPreferredPosForAxis", "ret": "void", @@ -26433,6 +26514,28 @@ "stname": "" } ], + "igNavHighlightActivated": [ + { + "args": "(ImGuiID id)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "igNavHighlightActivated", + "defaults": {}, + "funcname": "NavHighlightActivated", + "location": "imgui_internal:3155", + "namespace": "ImGui", + "ov_cimguiname": "igNavHighlightActivated", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igNavInitRequestApplyResult": [ { "args": "()", @@ -26442,7 +26545,7 @@ "cimguiname": "igNavInitRequestApplyResult", "defaults": {}, "funcname": "NavInitRequestApplyResult", - "location": "imgui_internal:3088", + "location": "imgui_internal:3146", "namespace": "ImGui", "ov_cimguiname": "igNavInitRequestApplyResult", "ret": "void", @@ -26468,7 +26571,7 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", - "location": "imgui_internal:3087", + "location": "imgui_internal:3145", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -26485,7 +26588,7 @@ "cimguiname": "igNavMoveRequestApplyResult", "defaults": {}, "funcname": "NavMoveRequestApplyResult", - "location": "imgui_internal:3095", + "location": "imgui_internal:3153", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestApplyResult", "ret": "void", @@ -26502,7 +26605,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", - "location": "imgui_internal:3089", + "location": "imgui_internal:3147", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -26519,7 +26622,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", - "location": "imgui_internal:3094", + "location": "imgui_internal:3152", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -26553,7 +26656,7 @@ "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", - "location": "imgui_internal:3091", + "location": "imgui_internal:3149", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -26575,7 +26678,7 @@ "cimguiname": "igNavMoveRequestResolveWithLastItem", "defaults": {}, "funcname": "NavMoveRequestResolveWithLastItem", - "location": "imgui_internal:3092", + "location": "imgui_internal:3150", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithLastItem", "ret": "void", @@ -26601,7 +26704,7 @@ "cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "defaults": {}, "funcname": "NavMoveRequestResolveWithPastTreeNode", - "location": "imgui_internal:3093", + "location": "imgui_internal:3151", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "ret": "void", @@ -26635,7 +26738,7 @@ "cimguiname": "igNavMoveRequestSubmit", "defaults": {}, "funcname": "NavMoveRequestSubmit", - "location": "imgui_internal:3090", + "location": "imgui_internal:3148", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestSubmit", "ret": "void", @@ -26661,7 +26764,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", - "location": "imgui_internal:3096", + "location": "imgui_internal:3154", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -26678,7 +26781,7 @@ "cimguiname": "igNavRestoreHighlightAfterMove", "defaults": {}, "funcname": "NavRestoreHighlightAfterMove", - "location": "imgui_internal:3098", + "location": "imgui_internal:3157", "namespace": "ImGui", "ov_cimguiname": "igNavRestoreHighlightAfterMove", "ret": "void", @@ -26695,7 +26798,7 @@ "cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "defaults": {}, "funcname": "NavUpdateCurrentWindowIsScrollPushableX", - "location": "imgui_internal:3099", + "location": "imgui_internal:3158", "namespace": "ImGui", "ov_cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "ret": "void", @@ -26712,7 +26815,7 @@ "cimguiname": "igNewFrame", "defaults": {}, "funcname": "NewFrame", - "location": "imgui:304", + "location": "imgui:306", "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -26729,7 +26832,7 @@ "cimguiname": "igNewLine", "defaults": {}, "funcname": "NewLine", - "location": "imgui:470", + "location": "imgui:472", "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -26746,7 +26849,7 @@ "cimguiname": "igNextColumn", "defaults": {}, "funcname": "NextColumn", - "location": "imgui:806", + "location": "imgui:808", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -26774,7 +26877,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:727", + "location": "imgui:729", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_Str", "ret": "void", @@ -26800,7 +26903,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:728", + "location": "imgui:730", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_ID", "ret": "void", @@ -26828,7 +26931,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "imgui_internal:3061", + "location": "imgui_internal:3119", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -26857,7 +26960,7 @@ "str_id": "NULL" }, "funcname": "OpenPopupOnItemClick", - "location": "imgui:729", + "location": "imgui:731", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "void", @@ -26917,7 +27020,7 @@ "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", - "location": "imgui_internal:3394", + "location": "imgui_internal:3456", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", @@ -26978,7 +27081,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:665", + "location": "imgui:667", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FloatPtr", "ret": "void", @@ -27038,7 +27141,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:666", + "location": "imgui:668", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FnFloatPtr", "ret": "void", @@ -27099,7 +27202,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:663", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FloatPtr", "ret": "void", @@ -27159,7 +27262,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:664", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FnFloatPtr", "ret": "void", @@ -27176,7 +27279,7 @@ "cimguiname": "igPopButtonRepeat", "defaults": {}, "funcname": "PopButtonRepeat", - "location": "imgui:429", + "location": "imgui:431", "namespace": "ImGui", "ov_cimguiname": "igPopButtonRepeat", "ret": "void", @@ -27193,7 +27296,7 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:856", + "location": "imgui:858", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -27210,7 +27313,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", - "location": "imgui_internal:3225", + "location": "imgui_internal:3287", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -27227,7 +27330,7 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", - "location": "imgui_internal:3203", + "location": "imgui_internal:3265", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -27244,7 +27347,7 @@ "cimguiname": "igPopFont", "defaults": {}, "funcname": "PopFont", - "location": "imgui:419", + "location": "imgui:421", "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -27261,7 +27364,7 @@ "cimguiname": "igPopID", "defaults": {}, "funcname": "PopID", - "location": "imgui:498", + "location": "imgui:500", "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -27278,7 +27381,7 @@ "cimguiname": "igPopItemFlag", "defaults": {}, "funcname": "PopItemFlag", - "location": "imgui_internal:3050", + "location": "imgui_internal:3108", "namespace": "ImGui", "ov_cimguiname": "igPopItemFlag", "ret": "void", @@ -27295,7 +27398,7 @@ "cimguiname": "igPopItemWidth", "defaults": {}, "funcname": "PopItemWidth", - "location": "imgui:433", + "location": "imgui:435", "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -27319,7 +27422,7 @@ "count": "1" }, "funcname": "PopStyleColor", - "location": "imgui:422", + "location": "imgui:424", "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -27343,7 +27446,7 @@ "count": "1" }, "funcname": "PopStyleVar", - "location": "imgui:425", + "location": "imgui:427", "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -27360,7 +27463,7 @@ "cimguiname": "igPopTabStop", "defaults": {}, "funcname": "PopTabStop", - "location": "imgui:427", + "location": "imgui:429", "namespace": "ImGui", "ov_cimguiname": "igPopTabStop", "ret": "void", @@ -27377,7 +27480,7 @@ "cimguiname": "igPopTextWrapPos", "defaults": {}, "funcname": "PopTextWrapPos", - "location": "imgui:437", + "location": "imgui:439", "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -27410,7 +27513,7 @@ "size_arg": "ImVec2(-FLT_MIN,0)" }, "funcname": "ProgressBar", - "location": "imgui:531", + "location": "imgui:533", "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -27432,7 +27535,7 @@ "cimguiname": "igPushButtonRepeat", "defaults": {}, "funcname": "PushButtonRepeat", - "location": "imgui:428", + "location": "imgui:430", "namespace": "ImGui", "ov_cimguiname": "igPushButtonRepeat", "ret": "void", @@ -27462,7 +27565,7 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", - "location": "imgui:855", + "location": "imgui:857", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -27484,7 +27587,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", - "location": "imgui_internal:3223", + "location": "imgui_internal:3285", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -27501,7 +27604,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", - "location": "imgui_internal:3224", + "location": "imgui_internal:3286", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -27523,7 +27626,7 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", - "location": "imgui_internal:3202", + "location": "imgui_internal:3264", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -27545,7 +27648,7 @@ "cimguiname": "igPushFont", "defaults": {}, "funcname": "PushFont", - "location": "imgui:418", + "location": "imgui:420", "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -27567,7 +27670,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:494", + "location": "imgui:496", "namespace": "ImGui", "ov_cimguiname": "igPushID_Str", "ret": "void", @@ -27591,7 +27694,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:495", + "location": "imgui:497", "namespace": "ImGui", "ov_cimguiname": "igPushID_StrStr", "ret": "void", @@ -27611,7 +27714,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:496", + "location": "imgui:498", "namespace": "ImGui", "ov_cimguiname": "igPushID_Ptr", "ret": "void", @@ -27631,7 +27734,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:497", + "location": "imgui:499", "namespace": "ImGui", "ov_cimguiname": "igPushID_Int", "ret": "void", @@ -27657,7 +27760,7 @@ "cimguiname": "igPushItemFlag", "defaults": {}, "funcname": "PushItemFlag", - "location": "imgui_internal:3049", + "location": "imgui_internal:3107", "namespace": "ImGui", "ov_cimguiname": "igPushItemFlag", "ret": "void", @@ -27679,7 +27782,7 @@ "cimguiname": "igPushItemWidth", "defaults": {}, "funcname": "PushItemWidth", - "location": "imgui:432", + "location": "imgui:434", "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -27705,7 +27808,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", - "location": "imgui_internal:3043", + "location": "imgui_internal:3101", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -27727,7 +27830,7 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", - "location": "imgui_internal:3029", + "location": "imgui_internal:3087", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -27753,7 +27856,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:420", + "location": "imgui:422", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_U32", "ret": "void", @@ -27777,7 +27880,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:421", + "location": "imgui:423", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_Vec4", "ret": "void", @@ -27803,7 +27906,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:423", + "location": "imgui:425", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Float", "ret": "void", @@ -27827,7 +27930,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:424", + "location": "imgui:426", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Vec2", "ret": "void", @@ -27849,7 +27952,7 @@ "cimguiname": "igPushTabStop", "defaults": {}, "funcname": "PushTabStop", - "location": "imgui:426", + "location": "imgui:428", "namespace": "ImGui", "ov_cimguiname": "igPushTabStop", "ret": "void", @@ -27873,7 +27976,7 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", - "location": "imgui:436", + "location": "imgui:438", "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -27899,7 +28002,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:529", + "location": "imgui:531", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_Bool", "ret": "bool", @@ -27927,7 +28030,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:530", + "location": "imgui:532", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_IntPtr", "ret": "bool", @@ -27953,7 +28056,7 @@ "cimguiname": "igRemoveContextHook", "defaults": {}, "funcname": "RemoveContextHook", - "location": "imgui_internal:2979", + "location": "imgui_internal:3037", "namespace": "ImGui", "ov_cimguiname": "igRemoveContextHook", "ret": "void", @@ -27975,7 +28078,7 @@ "cimguiname": "igRemoveSettingsHandler", "defaults": {}, "funcname": "RemoveSettingsHandler", - "location": "imgui_internal:2990", + "location": "imgui_internal:3048", "namespace": "ImGui", "ov_cimguiname": "igRemoveSettingsHandler", "ret": "void", @@ -27992,7 +28095,7 @@ "cimguiname": "igRender", "defaults": {}, "funcname": "Render", - "location": "imgui:306", + "location": "imgui:308", "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -28032,7 +28135,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "imgui_internal:3324", + "location": "imgui_internal:3386", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -28070,7 +28173,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", - "location": "imgui_internal:3327", + "location": "imgui_internal:3389", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -28100,7 +28203,7 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", - "location": "imgui_internal:3325", + "location": "imgui_internal:3387", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -28134,7 +28237,7 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", - "location": "imgui_internal:3326", + "location": "imgui_internal:3388", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -28187,7 +28290,7 @@ "rounding": "0.0f" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "imgui_internal:3318", + "location": "imgui_internal:3380", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -28213,7 +28316,7 @@ "cimguiname": "igRenderDragDropTargetRect", "defaults": {}, "funcname": "RenderDragDropTargetRect", - "location": "imgui_internal:3211", + "location": "imgui_internal:3273", "namespace": "ImGui", "ov_cimguiname": "igRenderDragDropTargetRect", "ret": "void", @@ -28254,7 +28357,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "imgui_internal:3316", + "location": "imgui_internal:3378", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -28286,7 +28389,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "imgui_internal:3317", + "location": "imgui_internal:3379", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -28328,7 +28431,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", - "location": "imgui_internal:3321", + "location": "imgui_internal:3383", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -28353,14 +28456,14 @@ "type": "ImGuiNavHighlightFlags" } ], - "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_TypeDefault)", + "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_None)", "call_args": "(bb,id,flags)", "cimguiname": "igRenderNavHighlight", "defaults": { - "flags": "ImGuiNavHighlightFlags_TypeDefault" + "flags": "ImGuiNavHighlightFlags_None" }, "funcname": "RenderNavHighlight", - "location": "imgui_internal:3319", + "location": "imgui_internal:3381", "namespace": "ImGui", "ov_cimguiname": "igRenderNavHighlight", "ret": "void", @@ -28402,7 +28505,7 @@ "cimguiname": "igRenderRectFilledRangeH", "defaults": {}, "funcname": "RenderRectFilledRangeH", - "location": "imgui_internal:3328", + "location": "imgui_internal:3390", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledRangeH", "ret": "void", @@ -28440,7 +28543,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", - "location": "imgui_internal:3329", + "location": "imgui_internal:3391", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -28477,7 +28580,7 @@ "text_end": "NULL" }, "funcname": "RenderText", - "location": "imgui_internal:3311", + "location": "imgui_internal:3373", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -28526,7 +28629,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "imgui_internal:3313", + "location": "imgui_internal:3375", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -28579,7 +28682,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "imgui_internal:3314", + "location": "imgui_internal:3376", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -28629,7 +28732,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", - "location": "imgui_internal:3315", + "location": "imgui_internal:3377", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -28663,7 +28766,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", - "location": "imgui_internal:3312", + "location": "imgui_internal:3374", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -28687,7 +28790,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:945", + "location": "imgui:947", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -28716,7 +28819,7 @@ "spacing": "-1.0f" }, "funcname": "SameLine", - "location": "imgui:469", + "location": "imgui:471", "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -28738,7 +28841,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:961", + "location": "imgui:963", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -28762,7 +28865,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:962", + "location": "imgui:964", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -28788,7 +28891,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", - "location": "imgui_internal:3014", + "location": "imgui_internal:3072", "namespace": "ImGui", "ov_cimguiname": "igScrollToBringRectIntoView", "ret": "void", @@ -28812,7 +28915,7 @@ "flags": "0" }, "funcname": "ScrollToItem", - "location": "imgui_internal:3010", + "location": "imgui_internal:3068", "namespace": "ImGui", "ov_cimguiname": "igScrollToItem", "ret": "void", @@ -28844,7 +28947,7 @@ "flags": "0" }, "funcname": "ScrollToRect", - "location": "imgui_internal:3011", + "location": "imgui_internal:3069", "namespace": "ImGui", "ov_cimguiname": "igScrollToRect", "ret": "void", @@ -28880,7 +28983,7 @@ "flags": "0" }, "funcname": "ScrollToRectEx", - "location": "imgui_internal:3012", + "location": "imgui_internal:3070", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToRectEx", @@ -28903,7 +29006,7 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", - "location": "imgui_internal:3344", + "location": "imgui_internal:3406", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -28949,7 +29052,7 @@ "cimguiname": "igScrollbarEx", "defaults": {}, "funcname": "ScrollbarEx", - "location": "imgui_internal:3345", + "location": "imgui_internal:3407", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -28987,7 +29090,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:647", + "location": "imgui:649", "namespace": "ImGui", "ov_cimguiname": "igSelectable_Bool", "ret": "bool", @@ -29022,7 +29125,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:648", + "location": "imgui:650", "namespace": "ImGui", "ov_cimguiname": "igSelectable_BoolPtr", "ret": "bool", @@ -29039,7 +29142,7 @@ "cimguiname": "igSeparator", "defaults": {}, "funcname": "Separator", - "location": "imgui:468", + "location": "imgui:470", "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -29067,7 +29170,7 @@ "thickness": "1.0f" }, "funcname": "SeparatorEx", - "location": "imgui_internal:3336", + "location": "imgui_internal:3398", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", @@ -29089,7 +29192,7 @@ "cimguiname": "igSeparatorText", "defaults": {}, "funcname": "SeparatorText", - "location": "imgui:517", + "location": "imgui:519", "namespace": "ImGui", "ov_cimguiname": "igSeparatorText", "ret": "void", @@ -29123,7 +29226,7 @@ "cimguiname": "igSeparatorTextEx", "defaults": {}, "funcname": "SeparatorTextEx", - "location": "imgui_internal:3337", + "location": "imgui_internal:3399", "namespace": "ImGui", "ov_cimguiname": "igSeparatorTextEx", "ret": "void", @@ -29149,7 +29252,7 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", - "location": "imgui_internal:3022", + "location": "imgui_internal:3080", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -29166,7 +29269,7 @@ "cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "defaults": {}, "funcname": "SetActiveIdUsingAllKeyboardKeys", - "location": "imgui_internal:3140", + "location": "imgui_internal:3201", "namespace": "ImGui", "ov_cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "ret": "void", @@ -29198,7 +29301,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:974", + "location": "imgui:976", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -29220,7 +29323,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:953", + "location": "imgui:955", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -29242,7 +29345,7 @@ "cimguiname": "igSetColorEditOptions", "defaults": {}, "funcname": "SetColorEditOptions", - "location": "imgui:622", + "location": "imgui:624", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -29268,7 +29371,7 @@ "cimguiname": "igSetColumnOffset", "defaults": {}, "funcname": "SetColumnOffset", - "location": "imgui:811", + "location": "imgui:813", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -29294,7 +29397,7 @@ "cimguiname": "igSetColumnWidth", "defaults": {}, "funcname": "SetColumnWidth", - "location": "imgui:809", + "location": "imgui:811", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -29316,7 +29419,7 @@ "cimguiname": "igSetCurrentContext", "defaults": {}, "funcname": "SetCurrentContext", - "location": "imgui:299", + "location": "imgui:301", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -29338,7 +29441,7 @@ "cimguiname": "igSetCurrentFont", "defaults": {}, "funcname": "SetCurrentFont", - "location": "imgui_internal:2959", + "location": "imgui_internal:3017", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -29360,7 +29463,7 @@ "cimguiname": "igSetCursorPos", "defaults": {}, "funcname": "SetCursorPos", - "location": "imgui:462", + "location": "imgui:464", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -29382,7 +29485,7 @@ "cimguiname": "igSetCursorPosX", "defaults": {}, "funcname": "SetCursorPosX", - "location": "imgui:463", + "location": "imgui:465", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -29404,7 +29507,7 @@ "cimguiname": "igSetCursorPosY", "defaults": {}, "funcname": "SetCursorPosY", - "location": "imgui:464", + "location": "imgui:466", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -29426,7 +29529,7 @@ "cimguiname": "igSetCursorScreenPos", "defaults": {}, "funcname": "SetCursorScreenPos", - "location": "imgui:458", + "location": "imgui:460", "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -29462,7 +29565,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui:839", + "location": "imgui:841", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -29488,7 +29591,7 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", - "location": "imgui_internal:3023", + "location": "imgui_internal:3081", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -29510,7 +29613,7 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", - "location": "imgui_internal:3026", + "location": "imgui_internal:3084", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -29527,7 +29630,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui:860", + "location": "imgui:862", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -29555,7 +29658,7 @@ "flags": "0" }, "funcname": "SetItemKeyOwner", - "location": "imgui_internal:3157", + "location": "imgui_internal:3218", "namespace": "ImGui", "ov_cimguiname": "igSetItemKeyOwner", "ret": "void", @@ -29582,7 +29685,7 @@ "defaults": {}, "funcname": "SetItemTooltip", "isvararg": "...)", - "location": "imgui:702", + "location": "imgui:704", "namespace": "ImGui", "ov_cimguiname": "igSetItemTooltip", "ret": "void", @@ -29608,7 +29711,7 @@ "cimguiname": "igSetItemTooltipV", "defaults": {}, "funcname": "SetItemTooltipV", - "location": "imgui:703", + "location": "imgui:705", "namespace": "ImGui", "ov_cimguiname": "igSetItemTooltipV", "ret": "void", @@ -29640,7 +29743,7 @@ "flags": "0" }, "funcname": "SetKeyOwner", - "location": "imgui_internal:3155", + "location": "imgui_internal:3216", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwner", "ret": "void", @@ -29672,7 +29775,7 @@ "flags": "0" }, "funcname": "SetKeyOwnersForKeyChord", - "location": "imgui_internal:3156", + "location": "imgui_internal:3217", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwnersForKeyChord", "ret": "void", @@ -29696,7 +29799,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui:861", + "location": "imgui:863", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -29730,7 +29833,7 @@ "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", - "location": "imgui_internal:3040", + "location": "imgui_internal:3098", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -29752,7 +29855,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:947", + "location": "imgui:949", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -29760,6 +29863,28 @@ "stname": "" } ], + "igSetNavFocusScope": [ + { + "args": "(ImGuiID focus_scope_id)", + "argsT": [ + { + "name": "focus_scope_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID focus_scope_id)", + "call_args": "(focus_scope_id)", + "cimguiname": "igSetNavFocusScope", + "defaults": {}, + "funcname": "SetNavFocusScope", + "location": "imgui_internal:3161", + "namespace": "ImGui", + "ov_cimguiname": "igSetNavFocusScope", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igSetNavID": [ { "args": "(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel)", @@ -29786,7 +29911,7 @@ "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", - "location": "imgui_internal:3101", + "location": "imgui_internal:3160", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -29808,7 +29933,7 @@ "cimguiname": "igSetNavWindow", "defaults": {}, "funcname": "SetNavWindow", - "location": "imgui_internal:3100", + "location": "imgui_internal:3159", "namespace": "ImGui", "ov_cimguiname": "igSetNavWindow", "ret": "void", @@ -29830,7 +29955,7 @@ "cimguiname": "igSetNextFrameWantCaptureKeyboard", "defaults": {}, "funcname": "SetNextFrameWantCaptureKeyboard", - "location": "imgui:927", + "location": "imgui:929", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureKeyboard", "ret": "void", @@ -29852,7 +29977,7 @@ "cimguiname": "igSetNextFrameWantCaptureMouse", "defaults": {}, "funcname": "SetNextFrameWantCaptureMouse", - "location": "imgui:948", + "location": "imgui:950", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureMouse", "ret": "void", @@ -29869,7 +29994,7 @@ "cimguiname": "igSetNextItemAllowOverlap", "defaults": {}, "funcname": "SetNextItemAllowOverlap", - "location": "imgui:864", + "location": "imgui:866", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemAllowOverlap", "ret": "void", @@ -29897,7 +30022,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui:642", + "location": "imgui:644", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -29919,7 +30044,7 @@ "cimguiname": "igSetNextItemSelectionUserData", "defaults": {}, "funcname": "SetNextItemSelectionUserData", - "location": "imgui_internal:3360", + "location": "imgui_internal:3422", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemSelectionUserData", "ret": "void", @@ -29927,6 +30052,28 @@ "stname": "" } ], + "igSetNextItemShortcut": [ + { + "args": "(ImGuiKeyChord key_chord)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord)", + "call_args": "(key_chord)", + "cimguiname": "igSetNextItemShortcut", + "defaults": {}, + "funcname": "SetNextItemShortcut", + "location": "imgui_internal:3250", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemShortcut", + "ret": "void", + "signature": "(ImGuiKeyChord)", + "stname": "" + } + ], "igSetNextItemWidth": [ { "args": "(float item_width)", @@ -29941,7 +30088,7 @@ "cimguiname": "igSetNextItemWidth", "defaults": {}, "funcname": "SetNextItemWidth", - "location": "imgui:434", + "location": "imgui:436", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -29963,7 +30110,7 @@ "cimguiname": "igSetNextWindowBgAlpha", "defaults": {}, "funcname": "SetNextWindowBgAlpha", - "location": "imgui:384", + "location": "imgui:386", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -29991,7 +30138,7 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", - "location": "imgui:381", + "location": "imgui:383", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -30013,7 +30160,7 @@ "cimguiname": "igSetNextWindowContentSize", "defaults": {}, "funcname": "SetNextWindowContentSize", - "location": "imgui:380", + "location": "imgui:382", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -30030,7 +30177,7 @@ "cimguiname": "igSetNextWindowFocus", "defaults": {}, "funcname": "SetNextWindowFocus", - "location": "imgui:382", + "location": "imgui:384", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -30063,7 +30210,7 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", - "location": "imgui:377", + "location": "imgui:379", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -30085,7 +30232,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", - "location": "imgui:383", + "location": "imgui:385", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -30113,7 +30260,7 @@ "cond": "0" }, "funcname": "SetNextWindowSize", - "location": "imgui:378", + "location": "imgui:380", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -30150,7 +30297,7 @@ "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", - "location": "imgui:379", + "location": "imgui:381", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -30178,7 +30325,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "imgui:414", + "location": "imgui:416", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_Float", "ret": "void", @@ -30206,7 +30353,7 @@ "cimguiname": "igSetScrollFromPosX", "defaults": {}, "funcname": "SetScrollFromPosX", - "location": "imgui_internal:3006", + "location": "imgui_internal:3064", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_WindowPtr", "ret": "void", @@ -30234,7 +30381,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "imgui:415", + "location": "imgui:417", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_Float", "ret": "void", @@ -30262,7 +30409,7 @@ "cimguiname": "igSetScrollFromPosY", "defaults": {}, "funcname": "SetScrollFromPosY", - "location": "imgui_internal:3007", + "location": "imgui_internal:3065", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_WindowPtr", "ret": "void", @@ -30286,7 +30433,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", - "location": "imgui:412", + "location": "imgui:414", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -30310,7 +30457,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", - "location": "imgui:413", + "location": "imgui:415", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -30332,7 +30479,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui:408", + "location": "imgui:410", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_Float", "ret": "void", @@ -30356,7 +30503,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui_internal:3004", + "location": "imgui_internal:3062", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_WindowPtr", "ret": "void", @@ -30378,7 +30525,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui:409", + "location": "imgui:411", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_Float", "ret": "void", @@ -30402,7 +30549,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui_internal:3005", + "location": "imgui_internal:3063", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_WindowPtr", "ret": "void", @@ -30427,15 +30574,14 @@ "type": "ImGuiInputFlags" } ], - "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)", + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags=0)", "call_args": "(key_chord,owner_id,flags)", "cimguiname": "igSetShortcutRouting", "defaults": { - "flags": "0", - "owner_id": "0" + "flags": "0" }, "funcname": "SetShortcutRouting", - "location": "imgui_internal:3190", + "location": "imgui_internal:3252", "namespace": "ImGui", "ov_cimguiname": "igSetShortcutRouting", "ret": "bool", @@ -30457,7 +30603,7 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui:904", + "location": "imgui:906", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -30479,7 +30625,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui:821", + "location": "imgui:823", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -30506,7 +30652,7 @@ "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui:694", + "location": "imgui:696", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -30532,7 +30678,7 @@ "cimguiname": "igSetTooltipV", "defaults": {}, "funcname": "SetTooltipV", - "location": "imgui:695", + "location": "imgui:697", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -30558,7 +30704,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "imgui_internal:3220", + "location": "imgui_internal:3282", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -30586,7 +30732,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:387", + "location": "imgui:389", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Bool", "ret": "void", @@ -30616,7 +30762,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:392", + "location": "imgui:394", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Str", "ret": "void", @@ -30646,7 +30792,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui_internal:2941", + "location": "imgui_internal:2998", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_WindowPtr", "ret": "void", @@ -30663,7 +30809,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:388", + "location": "imgui:390", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Nil", "ret": "void", @@ -30683,7 +30829,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:393", + "location": "imgui:395", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Str", "ret": "void", @@ -30705,7 +30851,7 @@ "cimguiname": "igSetWindowFontScale", "defaults": {}, "funcname": "SetWindowFontScale", - "location": "imgui:389", + "location": "imgui:391", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFontScale", "ret": "void", @@ -30727,7 +30873,7 @@ "cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "defaults": {}, "funcname": "SetWindowHiddenAndSkipItemsForCurrentFrame", - "location": "imgui_internal:2943", + "location": "imgui_internal:3000", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "ret": "void", @@ -30757,7 +30903,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", - "location": "imgui_internal:2942", + "location": "imgui_internal:2999", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -30765,6 +30911,32 @@ "stname": "" } ], + "igSetWindowParentWindowForFocusRoute": [ + { + "args": "(ImGuiWindow* window,ImGuiWindow* parent_window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "parent_window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiWindow* parent_window)", + "call_args": "(window,parent_window)", + "cimguiname": "igSetWindowParentWindowForFocusRoute", + "defaults": {}, + "funcname": "SetWindowParentWindowForFocusRoute", + "location": "imgui_internal:3001", + "namespace": "ImGui", + "ov_cimguiname": "igSetWindowParentWindowForFocusRoute", + "ret": "void", + "signature": "(ImGuiWindow*,ImGuiWindow*)", + "stname": "" + } + ], "igSetWindowPos": [ { "args": "(const ImVec2 pos,ImGuiCond cond)", @@ -30785,7 +30957,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:385", + "location": "imgui:387", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Vec2", "ret": "void", @@ -30815,7 +30987,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:390", + "location": "imgui:392", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Str", "ret": "void", @@ -30845,7 +31017,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui_internal:2939", + "location": "imgui_internal:2996", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_WindowPtr", "ret": "void", @@ -30873,7 +31045,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:386", + "location": "imgui:388", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Vec2", "ret": "void", @@ -30903,7 +31075,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:391", + "location": "imgui:393", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Str", "ret": "void", @@ -30933,7 +31105,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui_internal:2940", + "location": "imgui_internal:2997", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_WindowPtr", "ret": "void", @@ -30959,7 +31131,7 @@ "cimguiname": "igSetWindowViewport", "defaults": {}, "funcname": "SetWindowViewport", - "location": "imgui_internal:2983", + "location": "imgui_internal:3041", "namespace": "ImGui", "ov_cimguiname": "igSetWindowViewport", "ret": "void", @@ -31005,7 +31177,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "imgui_internal:3397", + "location": "imgui_internal:3459", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -31055,7 +31227,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", - "location": "imgui_internal:3398", + "location": "imgui_internal:3460", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -31101,7 +31273,7 @@ "cimguiname": "igShadeVertsTransformPos", "defaults": {}, "funcname": "ShadeVertsTransformPos", - "location": "imgui_internal:3399", + "location": "imgui_internal:3461", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsTransformPos", "ret": "void", @@ -31134,7 +31306,7 @@ "owner_id": "0" }, "funcname": "Shortcut", - "location": "imgui_internal:3189", + "location": "imgui_internal:3251", "namespace": "ImGui", "ov_cimguiname": "igShortcut", "ret": "bool", @@ -31158,7 +31330,7 @@ "p_open": "NULL" }, "funcname": "ShowAboutWindow", - "location": "imgui:314", + "location": "imgui:316", "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -31182,7 +31354,7 @@ "p_open": "NULL" }, "funcname": "ShowDebugLogWindow", - "location": "imgui:312", + "location": "imgui:314", "namespace": "ImGui", "ov_cimguiname": "igShowDebugLogWindow", "ret": "void", @@ -31206,7 +31378,7 @@ "p_open": "NULL" }, "funcname": "ShowDemoWindow", - "location": "imgui:310", + "location": "imgui:312", "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -31228,7 +31400,7 @@ "cimguiname": "igShowFontAtlas", "defaults": {}, "funcname": "ShowFontAtlas", - "location": "imgui_internal:3425", + "location": "imgui_internal:3487", "namespace": "ImGui", "ov_cimguiname": "igShowFontAtlas", "ret": "void", @@ -31250,7 +31422,7 @@ "cimguiname": "igShowFontSelector", "defaults": {}, "funcname": "ShowFontSelector", - "location": "imgui:317", + "location": "imgui:319", "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -31274,7 +31446,7 @@ "p_open": "NULL" }, "funcname": "ShowIDStackToolWindow", - "location": "imgui:313", + "location": "imgui:315", "namespace": "ImGui", "ov_cimguiname": "igShowIDStackToolWindow", "ret": "void", @@ -31298,7 +31470,7 @@ "p_open": "NULL" }, "funcname": "ShowMetricsWindow", - "location": "imgui:311", + "location": "imgui:313", "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -31322,7 +31494,7 @@ "ref": "NULL" }, "funcname": "ShowStyleEditor", - "location": "imgui:315", + "location": "imgui:317", "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -31344,7 +31516,7 @@ "cimguiname": "igShowStyleSelector", "defaults": {}, "funcname": "ShowStyleSelector", - "location": "imgui:316", + "location": "imgui:318", "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -31361,7 +31533,7 @@ "cimguiname": "igShowUserGuide", "defaults": {}, "funcname": "ShowUserGuide", - "location": "imgui:318", + "location": "imgui:320", "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -31391,7 +31563,7 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", - "location": "imgui_internal:3046", + "location": "imgui_internal:3104", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -31408,7 +31580,7 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", - "location": "imgui_internal:2968", + "location": "imgui_internal:3026", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -31455,7 +31627,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui:585", + "location": "imgui:587", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -31509,7 +31681,7 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", - "location": "imgui_internal:3354", + "location": "imgui_internal:3416", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -31554,7 +31726,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui:581", + "location": "imgui:583", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -31599,7 +31771,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui:582", + "location": "imgui:584", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -31644,7 +31816,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui:583", + "location": "imgui:585", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -31689,7 +31861,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui:584", + "location": "imgui:586", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -31734,7 +31906,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui:586", + "location": "imgui:588", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -31779,7 +31951,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui:587", + "location": "imgui:589", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -31824,7 +31996,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui:588", + "location": "imgui:590", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -31869,7 +32041,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui:589", + "location": "imgui:591", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -31918,7 +32090,7 @@ "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui:590", + "location": "imgui:592", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -31971,7 +32143,7 @@ "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui:591", + "location": "imgui:593", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -31993,7 +32165,7 @@ "cimguiname": "igSmallButton", "defaults": {}, "funcname": "SmallButton", - "location": "imgui:523", + "location": "imgui:525", "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -32010,7 +32182,7 @@ "cimguiname": "igSpacing", "defaults": {}, "funcname": "Spacing", - "location": "imgui:471", + "location": "imgui:473", "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -32072,7 +32244,7 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "imgui_internal:3355", + "location": "imgui_internal:3417", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -32094,7 +32266,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", - "location": "imgui_internal:2973", + "location": "imgui_internal:3031", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -32118,7 +32290,7 @@ "dst": "NULL" }, "funcname": "StyleColorsClassic", - "location": "imgui:324", + "location": "imgui:326", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -32142,7 +32314,7 @@ "dst": "NULL" }, "funcname": "StyleColorsDark", - "location": "imgui:322", + "location": "imgui:324", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -32166,7 +32338,7 @@ "dst": "NULL" }, "funcname": "StyleColorsLight", - "location": "imgui:323", + "location": "imgui:325", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -32192,7 +32364,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", - "location": "imgui_internal:3297", + "location": "imgui_internal:3359", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -32218,7 +32390,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", - "location": "imgui_internal:3291", + "location": "imgui_internal:3353", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -32244,7 +32416,7 @@ "cimguiname": "igTabBarFindTabByOrder", "defaults": {}, "funcname": "TabBarFindTabByOrder", - "location": "imgui_internal:3292", + "location": "imgui_internal:3354", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByOrder", "ret": "ImGuiTabItem*", @@ -32266,7 +32438,7 @@ "cimguiname": "igTabBarGetCurrentTab", "defaults": {}, "funcname": "TabBarGetCurrentTab", - "location": "imgui_internal:3293", + "location": "imgui_internal:3355", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetCurrentTab", "ret": "ImGuiTabItem*", @@ -32292,7 +32464,7 @@ "cimguiname": "igTabBarGetTabName", "defaults": {}, "funcname": "TabBarGetTabName", - "location": "imgui_internal:3295", + "location": "imgui_internal:3357", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabName", "ret": "const char*", @@ -32318,7 +32490,7 @@ "cimguiname": "igTabBarGetTabOrder", "defaults": {}, "funcname": "TabBarGetTabOrder", - "location": "imgui_internal:3294", + "location": "imgui_internal:3356", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabOrder", "ret": "int", @@ -32340,7 +32512,7 @@ "cimguiname": "igTabBarProcessReorder", "defaults": {}, "funcname": "TabBarProcessReorder", - "location": "imgui_internal:3301", + "location": "imgui_internal:3363", "namespace": "ImGui", "ov_cimguiname": "igTabBarProcessReorder", "ret": "bool", @@ -32366,7 +32538,7 @@ "cimguiname": "igTabBarQueueFocus", "defaults": {}, "funcname": "TabBarQueueFocus", - "location": "imgui_internal:3298", + "location": "imgui_internal:3360", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueFocus", "ret": "void", @@ -32396,7 +32568,7 @@ "cimguiname": "igTabBarQueueReorder", "defaults": {}, "funcname": "TabBarQueueReorder", - "location": "imgui_internal:3299", + "location": "imgui_internal:3361", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", @@ -32426,7 +32598,7 @@ "cimguiname": "igTabBarQueueReorderFromMousePos", "defaults": {}, "funcname": "TabBarQueueReorderFromMousePos", - "location": "imgui_internal:3300", + "location": "imgui_internal:3362", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorderFromMousePos", "ret": "void", @@ -32452,7 +32624,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", - "location": "imgui_internal:3296", + "location": "imgui_internal:3358", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -32486,7 +32658,7 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", - "location": "imgui_internal:3305", + "location": "imgui_internal:3367", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -32514,7 +32686,7 @@ "flags": "0" }, "funcname": "TabItemButton", - "location": "imgui:820", + "location": "imgui:822", "namespace": "ImGui", "ov_cimguiname": "igTabItemButton", "ret": "bool", @@ -32544,7 +32716,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3303", + "location": "imgui_internal:3365", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_Str", @@ -32569,7 +32741,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3304", + "location": "imgui_internal:3366", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_WindowPtr", @@ -32608,7 +32780,7 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", - "location": "imgui_internal:3302", + "location": "imgui_internal:3364", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -32666,7 +32838,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", - "location": "imgui_internal:3306", + "location": "imgui_internal:3368", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "void", @@ -32683,7 +32855,7 @@ "cimguiname": "igTableAngledHeadersRow", "defaults": {}, "funcname": "TableAngledHeadersRow", - "location": "imgui:786", + "location": "imgui:788", "namespace": "ImGui", "ov_cimguiname": "igTableAngledHeadersRow", "ret": "void", @@ -32711,7 +32883,7 @@ "label_width": "0.0f" }, "funcname": "TableAngledHeadersRowEx", - "location": "imgui_internal:3241", + "location": "imgui_internal:3303", "namespace": "ImGui", "ov_cimguiname": "igTableAngledHeadersRowEx", "ret": "void", @@ -32733,7 +32905,7 @@ "cimguiname": "igTableBeginApplyRequests", "defaults": {}, "funcname": "TableBeginApplyRequests", - "location": "imgui_internal:3248", + "location": "imgui_internal:3310", "namespace": "ImGui", "ov_cimguiname": "igTableBeginApplyRequests", "ret": "void", @@ -32759,7 +32931,7 @@ "cimguiname": "igTableBeginCell", "defaults": {}, "funcname": "TableBeginCell", - "location": "imgui_internal:3266", + "location": "imgui_internal:3328", "namespace": "ImGui", "ov_cimguiname": "igTableBeginCell", "ret": "void", @@ -32781,7 +32953,7 @@ "cimguiname": "igTableBeginContextMenuPopup", "defaults": {}, "funcname": "TableBeginContextMenuPopup", - "location": "imgui_internal:3255", + "location": "imgui_internal:3317", "namespace": "ImGui", "ov_cimguiname": "igTableBeginContextMenuPopup", "ret": "bool", @@ -32807,7 +32979,7 @@ "cimguiname": "igTableBeginInitMemory", "defaults": {}, "funcname": "TableBeginInitMemory", - "location": "imgui_internal:3247", + "location": "imgui_internal:3309", "namespace": "ImGui", "ov_cimguiname": "igTableBeginInitMemory", "ret": "void", @@ -32829,7 +33001,7 @@ "cimguiname": "igTableBeginRow", "defaults": {}, "funcname": "TableBeginRow", - "location": "imgui_internal:3264", + "location": "imgui_internal:3326", "namespace": "ImGui", "ov_cimguiname": "igTableBeginRow", "ret": "void", @@ -32851,7 +33023,7 @@ "cimguiname": "igTableDrawBorders", "defaults": {}, "funcname": "TableDrawBorders", - "location": "imgui_internal:3253", + "location": "imgui_internal:3315", "namespace": "ImGui", "ov_cimguiname": "igTableDrawBorders", "ret": "void", @@ -32877,7 +33049,7 @@ "cimguiname": "igTableDrawDefaultContextMenu", "defaults": {}, "funcname": "TableDrawDefaultContextMenu", - "location": "imgui_internal:3254", + "location": "imgui_internal:3316", "namespace": "ImGui", "ov_cimguiname": "igTableDrawDefaultContextMenu", "ret": "void", @@ -32899,7 +33071,7 @@ "cimguiname": "igTableEndCell", "defaults": {}, "funcname": "TableEndCell", - "location": "imgui_internal:3267", + "location": "imgui_internal:3329", "namespace": "ImGui", "ov_cimguiname": "igTableEndCell", "ret": "void", @@ -32921,7 +33093,7 @@ "cimguiname": "igTableEndRow", "defaults": {}, "funcname": "TableEndRow", - "location": "imgui_internal:3265", + "location": "imgui_internal:3327", "namespace": "ImGui", "ov_cimguiname": "igTableEndRow", "ret": "void", @@ -32943,7 +33115,7 @@ "cimguiname": "igTableFindByID", "defaults": {}, "funcname": "TableFindByID", - "location": "imgui_internal:3245", + "location": "imgui_internal:3307", "namespace": "ImGui", "ov_cimguiname": "igTableFindByID", "ret": "ImGuiTable*", @@ -32969,7 +33141,7 @@ "cimguiname": "igTableFixColumnSortDirection", "defaults": {}, "funcname": "TableFixColumnSortDirection", - "location": "imgui_internal:3262", + "location": "imgui_internal:3324", "namespace": "ImGui", "ov_cimguiname": "igTableFixColumnSortDirection", "ret": "void", @@ -32986,7 +33158,7 @@ "cimguiname": "igTableGcCompactSettings", "defaults": {}, "funcname": "TableGcCompactSettings", - "location": "imgui_internal:3277", + "location": "imgui_internal:3339", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactSettings", "ret": "void", @@ -33008,7 +33180,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3275", + "location": "imgui_internal:3337", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TablePtr", "ret": "void", @@ -33028,7 +33200,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3276", + "location": "imgui_internal:3338", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TableTempDataPtr", "ret": "void", @@ -33050,7 +33222,7 @@ "cimguiname": "igTableGetBoundSettings", "defaults": {}, "funcname": "TableGetBoundSettings", - "location": "imgui_internal:3283", + "location": "imgui_internal:3345", "namespace": "ImGui", "ov_cimguiname": "igTableGetBoundSettings", "ret": "ImGuiTableSettings*", @@ -33080,7 +33252,7 @@ "cimguiname": "igTableGetCellBgRect", "defaults": {}, "funcname": "TableGetCellBgRect", - "location": "imgui_internal:3268", + "location": "imgui_internal:3330", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTableGetCellBgRect", @@ -33098,7 +33270,7 @@ "cimguiname": "igTableGetColumnCount", "defaults": {}, "funcname": "TableGetColumnCount", - "location": "imgui:795", + "location": "imgui:797", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnCount", "ret": "int", @@ -33122,7 +33294,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnFlags", - "location": "imgui:799", + "location": "imgui:801", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnFlags", "ret": "ImGuiTableColumnFlags", @@ -33139,7 +33311,7 @@ "cimguiname": "igTableGetColumnIndex", "defaults": {}, "funcname": "TableGetColumnIndex", - "location": "imgui:796", + "location": "imgui:798", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnIndex", "ret": "int", @@ -33163,7 +33335,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnName", - "location": "imgui:798", + "location": "imgui:800", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_Int", "ret": "const char*", @@ -33187,7 +33359,7 @@ "cimguiname": "igTableGetColumnName", "defaults": {}, "funcname": "TableGetColumnName", - "location": "imgui_internal:3269", + "location": "imgui_internal:3331", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_TablePtr", "ret": "const char*", @@ -33209,7 +33381,7 @@ "cimguiname": "igTableGetColumnNextSortDirection", "defaults": {}, "funcname": "TableGetColumnNextSortDirection", - "location": "imgui_internal:3261", + "location": "imgui_internal:3323", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnNextSortDirection", "ret": "ImGuiSortDirection", @@ -33241,7 +33413,7 @@ "instance_no": "0" }, "funcname": "TableGetColumnResizeID", - "location": "imgui_internal:3270", + "location": "imgui_internal:3332", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnResizeID", "ret": "ImGuiID", @@ -33267,7 +33439,7 @@ "cimguiname": "igTableGetColumnWidthAuto", "defaults": {}, "funcname": "TableGetColumnWidthAuto", - "location": "imgui_internal:3263", + "location": "imgui_internal:3325", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnWidthAuto", "ret": "float", @@ -33284,7 +33456,7 @@ "cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "defaults": {}, "funcname": "TableGetHeaderAngledMaxLabelWidth", - "location": "imgui_internal:3238", + "location": "imgui_internal:3300", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "ret": "float", @@ -33301,7 +33473,7 @@ "cimguiname": "igTableGetHeaderRowHeight", "defaults": {}, "funcname": "TableGetHeaderRowHeight", - "location": "imgui_internal:3237", + "location": "imgui_internal:3299", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderRowHeight", "ret": "float", @@ -33318,7 +33490,7 @@ "cimguiname": "igTableGetHoveredColumn", "defaults": {}, "funcname": "TableGetHoveredColumn", - "location": "imgui_internal:3235", + "location": "imgui_internal:3297", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredColumn", "ret": "int", @@ -33335,7 +33507,7 @@ "cimguiname": "igTableGetHoveredRow", "defaults": {}, "funcname": "TableGetHoveredRow", - "location": "imgui_internal:3236", + "location": "imgui_internal:3298", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredRow", "ret": "int", @@ -33361,7 +33533,7 @@ "cimguiname": "igTableGetInstanceData", "defaults": {}, "funcname": "TableGetInstanceData", - "location": "imgui_internal:3257", + "location": "imgui_internal:3319", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceData", "ret": "ImGuiTableInstanceData*", @@ -33387,7 +33559,7 @@ "cimguiname": "igTableGetInstanceID", "defaults": {}, "funcname": "TableGetInstanceID", - "location": "imgui_internal:3258", + "location": "imgui_internal:3320", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceID", "ret": "ImGuiID", @@ -33413,7 +33585,7 @@ "cimguiname": "igTableGetMaxColumnWidth", "defaults": {}, "funcname": "TableGetMaxColumnWidth", - "location": "imgui_internal:3271", + "location": "imgui_internal:3333", "namespace": "ImGui", "ov_cimguiname": "igTableGetMaxColumnWidth", "ret": "float", @@ -33430,7 +33602,7 @@ "cimguiname": "igTableGetRowIndex", "defaults": {}, "funcname": "TableGetRowIndex", - "location": "imgui:797", + "location": "imgui:799", "namespace": "ImGui", "ov_cimguiname": "igTableGetRowIndex", "ret": "int", @@ -33447,7 +33619,7 @@ "cimguiname": "igTableGetSortSpecs", "defaults": {}, "funcname": "TableGetSortSpecs", - "location": "imgui:794", + "location": "imgui:796", "namespace": "ImGui", "ov_cimguiname": "igTableGetSortSpecs", "ret": "ImGuiTableSortSpecs*", @@ -33469,7 +33641,7 @@ "cimguiname": "igTableHeader", "defaults": {}, "funcname": "TableHeader", - "location": "imgui:784", + "location": "imgui:786", "namespace": "ImGui", "ov_cimguiname": "igTableHeader", "ret": "void", @@ -33486,7 +33658,7 @@ "cimguiname": "igTableHeadersRow", "defaults": {}, "funcname": "TableHeadersRow", - "location": "imgui:785", + "location": "imgui:787", "namespace": "ImGui", "ov_cimguiname": "igTableHeadersRow", "ret": "void", @@ -33508,7 +33680,7 @@ "cimguiname": "igTableLoadSettings", "defaults": {}, "funcname": "TableLoadSettings", - "location": "imgui_internal:3280", + "location": "imgui_internal:3342", "namespace": "ImGui", "ov_cimguiname": "igTableLoadSettings", "ret": "void", @@ -33530,7 +33702,7 @@ "cimguiname": "igTableMergeDrawChannels", "defaults": {}, "funcname": "TableMergeDrawChannels", - "location": "imgui_internal:3256", + "location": "imgui_internal:3318", "namespace": "ImGui", "ov_cimguiname": "igTableMergeDrawChannels", "ret": "void", @@ -33547,7 +33719,7 @@ "cimguiname": "igTableNextColumn", "defaults": {}, "funcname": "TableNextColumn", - "location": "imgui:771", + "location": "imgui:773", "namespace": "ImGui", "ov_cimguiname": "igTableNextColumn", "ret": "bool", @@ -33576,7 +33748,7 @@ "row_flags": "0" }, "funcname": "TableNextRow", - "location": "imgui:770", + "location": "imgui:772", "namespace": "ImGui", "ov_cimguiname": "igTableNextRow", "ret": "void", @@ -33600,7 +33772,7 @@ "column_n": "-1" }, "funcname": "TableOpenContextMenu", - "location": "imgui_internal:3232", + "location": "imgui_internal:3294", "namespace": "ImGui", "ov_cimguiname": "igTableOpenContextMenu", "ret": "void", @@ -33617,7 +33789,7 @@ "cimguiname": "igTablePopBackgroundChannel", "defaults": {}, "funcname": "TablePopBackgroundChannel", - "location": "imgui_internal:3240", + "location": "imgui_internal:3302", "namespace": "ImGui", "ov_cimguiname": "igTablePopBackgroundChannel", "ret": "void", @@ -33634,7 +33806,7 @@ "cimguiname": "igTablePushBackgroundChannel", "defaults": {}, "funcname": "TablePushBackgroundChannel", - "location": "imgui_internal:3239", + "location": "imgui_internal:3301", "namespace": "ImGui", "ov_cimguiname": "igTablePushBackgroundChannel", "ret": "void", @@ -33656,7 +33828,7 @@ "cimguiname": "igTableRemove", "defaults": {}, "funcname": "TableRemove", - "location": "imgui_internal:3274", + "location": "imgui_internal:3336", "namespace": "ImGui", "ov_cimguiname": "igTableRemove", "ret": "void", @@ -33678,7 +33850,7 @@ "cimguiname": "igTableResetSettings", "defaults": {}, "funcname": "TableResetSettings", - "location": "imgui_internal:3282", + "location": "imgui_internal:3344", "namespace": "ImGui", "ov_cimguiname": "igTableResetSettings", "ret": "void", @@ -33700,7 +33872,7 @@ "cimguiname": "igTableSaveSettings", "defaults": {}, "funcname": "TableSaveSettings", - "location": "imgui_internal:3281", + "location": "imgui_internal:3343", "namespace": "ImGui", "ov_cimguiname": "igTableSaveSettings", "ret": "void", @@ -33732,7 +33904,7 @@ "column_n": "-1" }, "funcname": "TableSetBgColor", - "location": "imgui:801", + "location": "imgui:803", "namespace": "ImGui", "ov_cimguiname": "igTableSetBgColor", "ret": "void", @@ -33758,7 +33930,7 @@ "cimguiname": "igTableSetColumnEnabled", "defaults": {}, "funcname": "TableSetColumnEnabled", - "location": "imgui:800", + "location": "imgui:802", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnEnabled", "ret": "void", @@ -33780,7 +33952,7 @@ "cimguiname": "igTableSetColumnIndex", "defaults": {}, "funcname": "TableSetColumnIndex", - "location": "imgui:772", + "location": "imgui:774", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnIndex", "ret": "bool", @@ -33810,7 +33982,7 @@ "cimguiname": "igTableSetColumnSortDirection", "defaults": {}, "funcname": "TableSetColumnSortDirection", - "location": "imgui_internal:3234", + "location": "imgui_internal:3296", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnSortDirection", "ret": "void", @@ -33836,7 +34008,7 @@ "cimguiname": "igTableSetColumnWidth", "defaults": {}, "funcname": "TableSetColumnWidth", - "location": "imgui_internal:3233", + "location": "imgui_internal:3295", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidth", "ret": "void", @@ -33858,7 +34030,7 @@ "cimguiname": "igTableSetColumnWidthAutoAll", "defaults": {}, "funcname": "TableSetColumnWidthAutoAll", - "location": "imgui_internal:3273", + "location": "imgui_internal:3335", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoAll", "ret": "void", @@ -33884,7 +34056,7 @@ "cimguiname": "igTableSetColumnWidthAutoSingle", "defaults": {}, "funcname": "TableSetColumnWidthAutoSingle", - "location": "imgui_internal:3272", + "location": "imgui_internal:3334", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoSingle", "ret": "void", @@ -33901,7 +34073,7 @@ "cimguiname": "igTableSettingsAddSettingsHandler", "defaults": {}, "funcname": "TableSettingsAddSettingsHandler", - "location": "imgui_internal:3284", + "location": "imgui_internal:3346", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsAddSettingsHandler", "ret": "void", @@ -33927,7 +34099,7 @@ "cimguiname": "igTableSettingsCreate", "defaults": {}, "funcname": "TableSettingsCreate", - "location": "imgui_internal:3285", + "location": "imgui_internal:3347", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsCreate", "ret": "ImGuiTableSettings*", @@ -33949,7 +34121,7 @@ "cimguiname": "igTableSettingsFindByID", "defaults": {}, "funcname": "TableSettingsFindByID", - "location": "imgui_internal:3286", + "location": "imgui_internal:3348", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsFindByID", "ret": "ImGuiTableSettings*", @@ -33987,7 +34159,7 @@ "user_id": "0" }, "funcname": "TableSetupColumn", - "location": "imgui:782", + "location": "imgui:784", "namespace": "ImGui", "ov_cimguiname": "igTableSetupColumn", "ret": "void", @@ -34009,7 +34181,7 @@ "cimguiname": "igTableSetupDrawChannels", "defaults": {}, "funcname": "TableSetupDrawChannels", - "location": "imgui_internal:3249", + "location": "imgui_internal:3311", "namespace": "ImGui", "ov_cimguiname": "igTableSetupDrawChannels", "ret": "void", @@ -34035,7 +34207,7 @@ "cimguiname": "igTableSetupScrollFreeze", "defaults": {}, "funcname": "TableSetupScrollFreeze", - "location": "imgui:783", + "location": "imgui:785", "namespace": "ImGui", "ov_cimguiname": "igTableSetupScrollFreeze", "ret": "void", @@ -34057,7 +34229,7 @@ "cimguiname": "igTableSortSpecsBuild", "defaults": {}, "funcname": "TableSortSpecsBuild", - "location": "imgui_internal:3260", + "location": "imgui_internal:3322", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsBuild", "ret": "void", @@ -34079,7 +34251,7 @@ "cimguiname": "igTableSortSpecsSanitize", "defaults": {}, "funcname": "TableSortSpecsSanitize", - "location": "imgui_internal:3259", + "location": "imgui_internal:3321", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsSanitize", "ret": "void", @@ -34101,7 +34273,7 @@ "cimguiname": "igTableUpdateBorders", "defaults": {}, "funcname": "TableUpdateBorders", - "location": "imgui_internal:3251", + "location": "imgui_internal:3313", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateBorders", "ret": "void", @@ -34123,7 +34295,7 @@ "cimguiname": "igTableUpdateColumnsWeightFromWidth", "defaults": {}, "funcname": "TableUpdateColumnsWeightFromWidth", - "location": "imgui_internal:3252", + "location": "imgui_internal:3314", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateColumnsWeightFromWidth", "ret": "void", @@ -34145,7 +34317,7 @@ "cimguiname": "igTableUpdateLayout", "defaults": {}, "funcname": "TableUpdateLayout", - "location": "imgui_internal:3250", + "location": "imgui_internal:3312", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateLayout", "ret": "void", @@ -34167,7 +34339,7 @@ "cimguiname": "igTeleportMousePos", "defaults": {}, "funcname": "TeleportMousePos", - "location": "imgui_internal:3139", + "location": "imgui_internal:3200", "namespace": "ImGui", "ov_cimguiname": "igTeleportMousePos", "ret": "void", @@ -34189,7 +34361,7 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", - "location": "imgui_internal:3385", + "location": "imgui_internal:3447", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -34242,7 +34414,7 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "imgui_internal:3384", + "location": "imgui_internal:3446", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -34284,7 +34456,7 @@ "cimguiname": "igTempInputText", "defaults": {}, "funcname": "TempInputText", - "location": "imgui_internal:3383", + "location": "imgui_internal:3445", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -34310,7 +34482,7 @@ "cimguiname": "igTestKeyOwner", "defaults": {}, "funcname": "TestKeyOwner", - "location": "imgui_internal:3158", + "location": "imgui_internal:3219", "namespace": "ImGui", "ov_cimguiname": "igTestKeyOwner", "ret": "bool", @@ -34336,7 +34508,7 @@ "cimguiname": "igTestShortcutRouting", "defaults": {}, "funcname": "TestShortcutRouting", - "location": "imgui_internal:3191", + "location": "imgui_internal:3253", "namespace": "ImGui", "ov_cimguiname": "igTestShortcutRouting", "ret": "bool", @@ -34363,7 +34535,7 @@ "defaults": {}, "funcname": "Text", "isvararg": "...)", - "location": "imgui:505", + "location": "imgui:507", "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -34394,7 +34566,7 @@ "defaults": {}, "funcname": "TextColored", "isvararg": "...)", - "location": "imgui:507", + "location": "imgui:509", "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -34424,7 +34596,7 @@ "cimguiname": "igTextColoredV", "defaults": {}, "funcname": "TextColoredV", - "location": "imgui:508", + "location": "imgui:510", "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -34451,7 +34623,7 @@ "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", - "location": "imgui:509", + "location": "imgui:511", "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -34477,7 +34649,7 @@ "cimguiname": "igTextDisabledV", "defaults": {}, "funcname": "TextDisabledV", - "location": "imgui:510", + "location": "imgui:512", "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -34510,7 +34682,7 @@ "text_end": "NULL" }, "funcname": "TextEx", - "location": "imgui_internal:3332", + "location": "imgui_internal:3394", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -34538,7 +34710,7 @@ "text_end": "NULL" }, "funcname": "TextUnformatted", - "location": "imgui:504", + "location": "imgui:506", "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -34564,7 +34736,7 @@ "cimguiname": "igTextV", "defaults": {}, "funcname": "TextV", - "location": "imgui:506", + "location": "imgui:508", "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -34591,7 +34763,7 @@ "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", - "location": "imgui:511", + "location": "imgui:513", "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -34617,7 +34789,7 @@ "cimguiname": "igTextWrappedV", "defaults": {}, "funcname": "TextWrappedV", - "location": "imgui:512", + "location": "imgui:514", "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -34639,7 +34811,7 @@ "cimguiname": "igTreeNode", "defaults": {}, "funcname": "TreeNode", - "location": "imgui:626", + "location": "imgui:628", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Str", "ret": "bool", @@ -34668,7 +34840,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:627", + "location": "imgui:629", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_StrStr", "ret": "bool", @@ -34697,7 +34869,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:628", + "location": "imgui:630", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Ptr", "ret": "bool", @@ -34733,7 +34905,7 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "imgui_internal:3356", + "location": "imgui_internal:3418", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -34761,7 +34933,7 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui:631", + "location": "imgui:633", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Str", "ret": "bool", @@ -34794,7 +34966,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:632", + "location": "imgui:634", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_StrStr", "ret": "bool", @@ -34827,7 +34999,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:633", + "location": "imgui:635", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Ptr", "ret": "bool", @@ -34861,7 +35033,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:634", + "location": "imgui:636", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Str", "ret": "bool", @@ -34893,7 +35065,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:635", + "location": "imgui:637", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Ptr", "ret": "bool", @@ -34919,7 +35091,7 @@ "cimguiname": "igTreeNodeSetOpen", "defaults": {}, "funcname": "TreeNodeSetOpen", - "location": "imgui_internal:3358", + "location": "imgui_internal:3420", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeSetOpen", "ret": "void", @@ -34945,7 +35117,7 @@ "cimguiname": "igTreeNodeUpdateNextOpen", "defaults": {}, "funcname": "TreeNodeUpdateNextOpen", - "location": "imgui_internal:3359", + "location": "imgui_internal:3421", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeUpdateNextOpen", "ret": "bool", @@ -34975,7 +35147,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:629", + "location": "imgui:631", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Str", "ret": "bool", @@ -35003,7 +35175,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:630", + "location": "imgui:632", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Ptr", "ret": "bool", @@ -35020,7 +35192,7 @@ "cimguiname": "igTreePop", "defaults": {}, "funcname": "TreePop", - "location": "imgui:638", + "location": "imgui:640", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -35042,7 +35214,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:636", + "location": "imgui:638", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Str", "ret": "void", @@ -35062,7 +35234,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:637", + "location": "imgui:639", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Ptr", "ret": "void", @@ -35084,7 +35256,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", - "location": "imgui_internal:3357", + "location": "imgui_internal:3419", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -35120,7 +35292,7 @@ "cimguiname": "igTypingSelectFindBestLeadingMatch", "defaults": {}, "funcname": "TypingSelectFindBestLeadingMatch", - "location": "imgui_internal:3217", + "location": "imgui_internal:3279", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindBestLeadingMatch", "ret": "int", @@ -35160,7 +35332,7 @@ "cimguiname": "igTypingSelectFindMatch", "defaults": {}, "funcname": "TypingSelectFindMatch", - "location": "imgui_internal:3215", + "location": "imgui_internal:3277", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindMatch", "ret": "int", @@ -35200,7 +35372,7 @@ "cimguiname": "igTypingSelectFindNextSingleCharMatch", "defaults": {}, "funcname": "TypingSelectFindNextSingleCharMatch", - "location": "imgui_internal:3216", + "location": "imgui_internal:3278", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindNextSingleCharMatch", "ret": "int", @@ -35224,7 +35396,7 @@ "indent_w": "0.0f" }, "funcname": "Unindent", - "location": "imgui:474", + "location": "imgui:476", "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -35241,7 +35413,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "imgui_internal:2972", + "location": "imgui_internal:3030", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -35263,7 +35435,7 @@ "cimguiname": "igUpdateInputEvents", "defaults": {}, "funcname": "UpdateInputEvents", - "location": "imgui_internal:2971", + "location": "imgui_internal:3029", "namespace": "ImGui", "ov_cimguiname": "igUpdateInputEvents", "ret": "void", @@ -35280,7 +35452,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "imgui_internal:2975", + "location": "imgui_internal:3033", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -35297,7 +35469,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "imgui_internal:2974", + "location": "imgui_internal:3032", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -35327,7 +35499,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", - "location": "imgui_internal:2933", + "location": "imgui_internal:2990", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -35376,7 +35548,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui:592", + "location": "imgui:594", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -35425,7 +35597,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui:593", + "location": "imgui:595", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -35478,7 +35650,7 @@ "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui:594", + "location": "imgui:596", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -35504,7 +35676,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:670", + "location": "imgui:672", "namespace": "ImGui", "ov_cimguiname": "igValue_Bool", "ret": "void", @@ -35528,7 +35700,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:671", + "location": "imgui:673", "namespace": "ImGui", "ov_cimguiname": "igValue_Int", "ret": "void", @@ -35552,7 +35724,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:672", + "location": "imgui:674", "namespace": "ImGui", "ov_cimguiname": "igValue_Uint", "ret": "void", @@ -35582,7 +35754,7 @@ "float_format": "NULL" }, "funcname": "Value", - "location": "imgui:673", + "location": "imgui:675", "namespace": "ImGui", "ov_cimguiname": "igValue_Float", "ret": "void", @@ -35612,7 +35784,7 @@ "cimguiname": "igWindowPosRelToAbs", "defaults": {}, "funcname": "WindowPosRelToAbs", - "location": "imgui_internal:2946", + "location": "imgui_internal:3004", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowPosRelToAbs", @@ -35643,7 +35815,7 @@ "cimguiname": "igWindowRectAbsToRel", "defaults": {}, "funcname": "WindowRectAbsToRel", - "location": "imgui_internal:2944", + "location": "imgui_internal:3002", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectAbsToRel", @@ -35674,7 +35846,7 @@ "cimguiname": "igWindowRectRelToAbs", "defaults": {}, "funcname": "WindowRectRelToAbs", - "location": "imgui_internal:2945", + "location": "imgui_internal:3003", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectRelToAbs", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index c9e130c..c513b04 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:588" +defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:591" 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:592" +defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:595" 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:587" +defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:590" 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:589" +defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:592" 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:591" +defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:594" 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:593" +defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:596" 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:590" +defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:593" 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:603" +defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:606" 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:606" +defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:609" 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:602" +defs["ImBitVector_Create"][1]["location"] = "imgui_internal:605" 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:605" +defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:608" 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:604" +defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:607" defs["ImBitVector_TestBit"][1]["ov_cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["ret"] = "bool" defs["ImBitVector_TestBit"][1]["signature"] = "(int)const" @@ -4376,7 +4376,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:1052" +defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:1015" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["ov_cimguiname"] = "ImGuiComboPreviewData_ImGuiComboPreviewData" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["signature"] = "()" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["stname"] = "ImGuiComboPreviewData" @@ -4407,7 +4407,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:1868" +defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:1911" defs["ImGuiContextHook_ImGuiContextHook"][1]["ov_cimguiname"] = "ImGuiContextHook_ImGuiContextHook" defs["ImGuiContextHook_ImGuiContextHook"][1]["signature"] = "()" defs["ImGuiContextHook_ImGuiContextHook"][1]["stname"] = "ImGuiContextHook" @@ -4441,7 +4441,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:2194" +defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:2245" defs["ImGuiContext_ImGuiContext"][1]["ov_cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["signature"] = "(ImFontAtlas*)" defs["ImGuiContext_ImGuiContext"][1]["stname"] = "ImGuiContext" @@ -4477,7 +4477,7 @@ defs["ImGuiDataVarInfo_GetVarPtr"][1]["call_args"] = "(parent)" defs["ImGuiDataVarInfo_GetVarPtr"][1]["cimguiname"] = "ImGuiDataVarInfo_GetVarPtr" defs["ImGuiDataVarInfo_GetVarPtr"][1]["defaults"] = {} defs["ImGuiDataVarInfo_GetVarPtr"][1]["funcname"] = "GetVarPtr" -defs["ImGuiDataVarInfo_GetVarPtr"][1]["location"] = "imgui_internal:1000" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["location"] = "imgui_internal:1254" defs["ImGuiDataVarInfo_GetVarPtr"][1]["ov_cimguiname"] = "ImGuiDataVarInfo_GetVarPtr" defs["ImGuiDataVarInfo_GetVarPtr"][1]["ret"] = "void*" defs["ImGuiDataVarInfo_GetVarPtr"][1]["signature"] = "(void*)const" @@ -4493,7 +4493,7 @@ defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["cimguiname"] = "ImGuiDebugAl defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["constructor"] = true defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["defaults"] = {} defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["funcname"] = "ImGuiDebugAllocInfo" -defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["location"] = "imgui_internal:1811" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["location"] = "imgui_internal:1852" defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["ov_cimguiname"] = "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo" defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["signature"] = "()" defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["stname"] = "ImGuiDebugAllocInfo" @@ -4524,7 +4524,7 @@ defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["cimguiname"] = "ImGuiIDStackTool_I defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["constructor"] = true defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["defaults"] = {} defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["funcname"] = "ImGuiIDStackTool" -defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["location"] = "imgui_internal:1850" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["location"] = "imgui_internal:1893" defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["ov_cimguiname"] = "ImGuiIDStackTool_ImGuiIDStackTool" defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["signature"] = "()" defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["stname"] = "ImGuiIDStackTool" @@ -4560,7 +4560,7 @@ defs["ImGuiIO_AddFocusEvent"][1]["call_args"] = "(focused)" defs["ImGuiIO_AddFocusEvent"][1]["cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["defaults"] = {} defs["ImGuiIO_AddFocusEvent"][1]["funcname"] = "AddFocusEvent" -defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2150" +defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2154" defs["ImGuiIO_AddFocusEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["ret"] = "void" defs["ImGuiIO_AddFocusEvent"][1]["signature"] = "(bool)" @@ -4581,7 +4581,7 @@ defs["ImGuiIO_AddInputCharacter"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" -defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2151" +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2155" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -4602,7 +4602,7 @@ defs["ImGuiIO_AddInputCharacterUTF16"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacterUTF16"][1]["cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacterUTF16"][1]["funcname"] = "AddInputCharacterUTF16" -defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2152" +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2156" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -4623,7 +4623,7 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["call_args"] = "(str)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" -defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2153" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2157" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -4650,7 +4650,7 @@ defs["ImGuiIO_AddKeyAnalogEvent"][1]["call_args"] = "(key,down,v)" defs["ImGuiIO_AddKeyAnalogEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyAnalogEvent"][1]["funcname"] = "AddKeyAnalogEvent" -defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2145" +defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2149" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyAnalogEvent"][1]["signature"] = "(ImGuiKey,bool,float)" @@ -4674,7 +4674,7 @@ defs["ImGuiIO_AddKeyEvent"][1]["call_args"] = "(key,down)" defs["ImGuiIO_AddKeyEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyEvent"][1]["funcname"] = "AddKeyEvent" -defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2144" +defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2148" defs["ImGuiIO_AddKeyEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyEvent"][1]["signature"] = "(ImGuiKey,bool)" @@ -4698,7 +4698,7 @@ defs["ImGuiIO_AddMouseButtonEvent"][1]["call_args"] = "(button,down)" defs["ImGuiIO_AddMouseButtonEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseButtonEvent"][1]["funcname"] = "AddMouseButtonEvent" -defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2147" +defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2151" defs["ImGuiIO_AddMouseButtonEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseButtonEvent"][1]["signature"] = "(int,bool)" @@ -4722,7 +4722,7 @@ defs["ImGuiIO_AddMousePosEvent"][1]["call_args"] = "(x,y)" defs["ImGuiIO_AddMousePosEvent"][1]["cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMousePosEvent"][1]["funcname"] = "AddMousePosEvent" -defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2146" +defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2150" defs["ImGuiIO_AddMousePosEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMousePosEvent"][1]["signature"] = "(float,float)" @@ -4743,7 +4743,7 @@ defs["ImGuiIO_AddMouseSourceEvent"][1]["call_args"] = "(source)" defs["ImGuiIO_AddMouseSourceEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseSourceEvent" defs["ImGuiIO_AddMouseSourceEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseSourceEvent"][1]["funcname"] = "AddMouseSourceEvent" -defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2149" +defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2153" defs["ImGuiIO_AddMouseSourceEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseSourceEvent" defs["ImGuiIO_AddMouseSourceEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseSourceEvent"][1]["signature"] = "(ImGuiMouseSource)" @@ -4767,7 +4767,7 @@ defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wheel_x,wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["funcname"] = "AddMouseWheelEvent" -defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2148" +defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2152" defs["ImGuiIO_AddMouseWheelEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseWheelEvent"][1]["signature"] = "(float,float)" @@ -4785,7 +4785,7 @@ defs["ImGuiIO_ClearEventsQueue"][1]["call_args"] = "()" defs["ImGuiIO_ClearEventsQueue"][1]["cimguiname"] = "ImGuiIO_ClearEventsQueue" defs["ImGuiIO_ClearEventsQueue"][1]["defaults"] = {} defs["ImGuiIO_ClearEventsQueue"][1]["funcname"] = "ClearEventsQueue" -defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2157" +defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2161" defs["ImGuiIO_ClearEventsQueue"][1]["ov_cimguiname"] = "ImGuiIO_ClearEventsQueue" defs["ImGuiIO_ClearEventsQueue"][1]["ret"] = "void" defs["ImGuiIO_ClearEventsQueue"][1]["signature"] = "()" @@ -4803,7 +4803,7 @@ defs["ImGuiIO_ClearInputKeys"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["defaults"] = {} defs["ImGuiIO_ClearInputKeys"][1]["funcname"] = "ClearInputKeys" -defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2158" +defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2162" defs["ImGuiIO_ClearInputKeys"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["ret"] = "void" defs["ImGuiIO_ClearInputKeys"][1]["signature"] = "()" @@ -4839,7 +4839,7 @@ defs["ImGuiIO_SetAppAcceptingEvents"][1]["call_args"] = "(accepting_events)" defs["ImGuiIO_SetAppAcceptingEvents"][1]["cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["defaults"] = {} defs["ImGuiIO_SetAppAcceptingEvents"][1]["funcname"] = "SetAppAcceptingEvents" -defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2156" +defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2160" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ov_cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ret"] = "void" defs["ImGuiIO_SetAppAcceptingEvents"][1]["signature"] = "(bool)" @@ -4870,7 +4870,7 @@ defs["ImGuiIO_SetKeyEventNativeData"][1]["cimguiname"] = "ImGuiIO_SetKeyEventNat defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"] = {} defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"]["native_legacy_index"] = "-1" defs["ImGuiIO_SetKeyEventNativeData"][1]["funcname"] = "SetKeyEventNativeData" -defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2155" +defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2159" defs["ImGuiIO_SetKeyEventNativeData"][1]["ov_cimguiname"] = "ImGuiIO_SetKeyEventNativeData" defs["ImGuiIO_SetKeyEventNativeData"][1]["ret"] = "void" defs["ImGuiIO_SetKeyEventNativeData"][1]["signature"] = "(ImGuiKey,int,int,int)" @@ -4902,7 +4902,7 @@ defs["ImGuiInputEvent_ImGuiInputEvent"][1]["cimguiname"] = "ImGuiInputEvent_ImGu defs["ImGuiInputEvent_ImGuiInputEvent"][1]["constructor"] = true defs["ImGuiInputEvent_ImGuiInputEvent"][1]["defaults"] = {} defs["ImGuiInputEvent_ImGuiInputEvent"][1]["funcname"] = "ImGuiInputEvent" -defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1358" +defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1381" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["ov_cimguiname"] = "ImGuiInputEvent_ImGuiInputEvent" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["signature"] = "()" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["stname"] = "ImGuiInputEvent" @@ -5072,7 +5072,7 @@ defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["call_args"] = "()" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["defaults"] = {} defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["location"] = "imgui_internal:1098" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["location"] = "imgui_internal:1061" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["signature"] = "()" @@ -5088,7 +5088,7 @@ defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["cimgui defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["constructor"] = true defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["defaults"] = {} defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["funcname"] = "ImGuiInputTextDeactivatedState" -defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["location"] = "imgui_internal:1097" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["location"] = "imgui_internal:1060" defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState" defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["signature"] = "()" defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["stname"] = "ImGuiInputTextDeactivatedState" @@ -5121,7 +5121,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:1122" +defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1088" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearFreeMemory"][1]["signature"] = "()" @@ -5139,7 +5139,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:1131" +defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1097" defs["ImGuiInputTextState_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearSelection"][1]["signature"] = "()" @@ -5157,7 +5157,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:1121" +defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1087" defs["ImGuiInputTextState_ClearText"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearText"][1]["signature"] = "()" @@ -5175,7 +5175,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:1128" +defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1094" defs["ImGuiInputTextState_CursorAnimReset"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorAnimReset"][1]["signature"] = "()" @@ -5193,7 +5193,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:1129" +defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1095" defs["ImGuiInputTextState_CursorClamp"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorClamp"][1]["signature"] = "()" @@ -5211,7 +5211,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:1132" +defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1098" defs["ImGuiInputTextState_GetCursorPos"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["ret"] = "int" defs["ImGuiInputTextState_GetCursorPos"][1]["signature"] = "()const" @@ -5229,7 +5229,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:1124" +defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "imgui_internal:1090" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["signature"] = "()const" @@ -5247,7 +5247,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:1134" +defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1100" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionEnd"][1]["signature"] = "()const" @@ -5265,7 +5265,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:1133" +defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1099" defs["ImGuiInputTextState_GetSelectionStart"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionStart"][1]["signature"] = "()const" @@ -5283,7 +5283,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:1123" +defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "imgui_internal:1089" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["signature"] = "()const" @@ -5301,7 +5301,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:1130" +defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1096" defs["ImGuiInputTextState_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextState_HasSelection"][1]["signature"] = "()const" @@ -5317,7 +5317,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:1120" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1086" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["ov_cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["stname"] = "ImGuiInputTextState" @@ -5337,12 +5337,66 @@ 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:1125" +defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1091" defs["ImGuiInputTextState_OnKeyPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["ret"] = "void" defs["ImGuiInputTextState_OnKeyPressed"][1]["signature"] = "(int)" defs["ImGuiInputTextState_OnKeyPressed"][1]["stname"] = "ImGuiInputTextState" defs["ImGuiInputTextState_OnKeyPressed"]["(int)"] = defs["ImGuiInputTextState_OnKeyPressed"][1] +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["args"] = "(ImGuiInputTextState* self)" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["call_args"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["defaults"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["funcname"] = "ReloadUserBufAndKeepSelection" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["location"] = "imgui_internal:1109" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ret"] = "void" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["signature"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["stname"] = "ImGuiInputTextState" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"]["()"] = defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1] +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["args"] = "(ImGuiInputTextState* self)" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["call_args"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["defaults"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["funcname"] = "ReloadUserBufAndMoveToEnd" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["location"] = "imgui_internal:1110" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ret"] = "void" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["signature"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["stname"] = "ImGuiInputTextState" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"]["()"] = defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1] +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["args"] = "(ImGuiInputTextState* self)" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["call_args"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["defaults"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["funcname"] = "ReloadUserBufAndSelectAll" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["location"] = "imgui_internal:1108" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ret"] = "void" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["signature"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["stname"] = "ImGuiInputTextState" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"]["()"] = defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1] defs["ImGuiInputTextState_SelectAll"] = {} defs["ImGuiInputTextState_SelectAll"][1] = {} defs["ImGuiInputTextState_SelectAll"][1]["args"] = "(ImGuiInputTextState* self)" @@ -5355,7 +5409,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:1135" +defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1101" defs["ImGuiInputTextState_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_SelectAll"][1]["signature"] = "()" @@ -5387,7 +5441,7 @@ defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["cimguiname"] = "ImGuiKeyOwnerDat defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["constructor"] = true defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["defaults"] = {} defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["funcname"] = "ImGuiKeyOwnerData" -defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1400" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1424" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["ov_cimguiname"] = "ImGuiKeyOwnerData_ImGuiKeyOwnerData" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["signature"] = "()" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["stname"] = "ImGuiKeyOwnerData" @@ -5418,7 +5472,7 @@ defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["cimguiname"] = "ImGuiKeyRout defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["constructor"] = true defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["defaults"] = {} defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["funcname"] = "ImGuiKeyRoutingData" -defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1376" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1400" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["ov_cimguiname"] = "ImGuiKeyRoutingData_ImGuiKeyRoutingData" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["signature"] = "()" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["stname"] = "ImGuiKeyRoutingData" @@ -5451,7 +5505,7 @@ defs["ImGuiKeyRoutingTable_Clear"][1]["call_args"] = "()" defs["ImGuiKeyRoutingTable_Clear"][1]["cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_Clear"][1]["funcname"] = "Clear" -defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1388" +defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1412" defs["ImGuiKeyRoutingTable_Clear"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["ret"] = "void" defs["ImGuiKeyRoutingTable_Clear"][1]["signature"] = "()" @@ -5467,7 +5521,7 @@ defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["cimguiname"] = "ImGuiKeyRo defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["constructor"] = true defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["funcname"] = "ImGuiKeyRoutingTable" -defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1387" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1411" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["signature"] = "()" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["stname"] = "ImGuiKeyRoutingTable" @@ -5498,7 +5552,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:1228" +defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1191" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["ov_cimguiname"] = "ImGuiLastItemData_ImGuiLastItemData" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["signature"] = "()" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["stname"] = "ImGuiLastItemData" @@ -5529,7 +5583,7 @@ defs["ImGuiListClipperData_ImGuiListClipperData"][1]["cimguiname"] = "ImGuiListC defs["ImGuiListClipperData_ImGuiListClipperData"][1]["constructor"] = true defs["ImGuiListClipperData_ImGuiListClipperData"][1]["defaults"] = {} defs["ImGuiListClipperData_ImGuiListClipperData"][1]["funcname"] = "ImGuiListClipperData" -defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1487" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1521" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["ov_cimguiname"] = "ImGuiListClipperData_ImGuiListClipperData" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["signature"] = "()" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["stname"] = "ImGuiListClipperData" @@ -5549,7 +5603,7 @@ defs["ImGuiListClipperData_Reset"][1]["call_args"] = "(clipper)" defs["ImGuiListClipperData_Reset"][1]["cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["defaults"] = {} defs["ImGuiListClipperData_Reset"][1]["funcname"] = "Reset" -defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1488" +defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1522" defs["ImGuiListClipperData_Reset"][1]["ov_cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["ret"] = "void" defs["ImGuiListClipperData_Reset"][1]["signature"] = "(ImGuiListClipper*)" @@ -5587,7 +5641,7 @@ defs["ImGuiListClipperRange_FromIndices"][1]["cimguiname"] = "ImGuiListClipperRa defs["ImGuiListClipperRange_FromIndices"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromIndices"][1]["funcname"] = "FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["is_static_function"] = true -defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1474" +defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1508" defs["ImGuiListClipperRange_FromIndices"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromIndices"][1]["signature"] = "(int,int)" @@ -5615,7 +5669,7 @@ defs["ImGuiListClipperRange_FromPositions"][1]["cimguiname"] = "ImGuiListClipper defs["ImGuiListClipperRange_FromPositions"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromPositions"][1]["funcname"] = "FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["is_static_function"] = true -defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1475" +defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1509" defs["ImGuiListClipperRange_FromPositions"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromPositions"][1]["signature"] = "(float,float,int,int)" @@ -5775,7 +5829,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:1088" +defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1051" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ov_cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ret"] = "void" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["signature"] = "(bool)" @@ -5805,7 +5859,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:1087" +defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1050" defs["ImGuiMenuColumns_DeclColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["ret"] = "float" defs["ImGuiMenuColumns_DeclColumns"][1]["signature"] = "(float,float,float,float)" @@ -5821,7 +5875,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:1085" +defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1048" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_ImGuiMenuColumns" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["signature"] = "()" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["stname"] = "ImGuiMenuColumns" @@ -5844,7 +5898,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:1086" +defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1049" defs["ImGuiMenuColumns_Update"][1]["ov_cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["ret"] = "void" defs["ImGuiMenuColumns_Update"][1]["signature"] = "(float,bool)" @@ -5878,7 +5932,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:1569" +defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1603" defs["ImGuiNavItemData_Clear"][1]["ov_cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["ret"] = "void" defs["ImGuiNavItemData_Clear"][1]["signature"] = "()" @@ -5894,7 +5948,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:1568" +defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1602" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["ov_cimguiname"] = "ImGuiNavItemData_ImGuiNavItemData" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["signature"] = "()" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["stname"] = "ImGuiNavItemData" @@ -5927,7 +5981,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:1213" +defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1176" defs["ImGuiNextItemData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextItemData_ClearFlags"][1]["signature"] = "()" @@ -5943,7 +5997,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:1212" +defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1175" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["ov_cimguiname"] = "ImGuiNextItemData_ImGuiNextItemData" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["signature"] = "()" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["stname"] = "ImGuiNextItemData" @@ -5976,7 +6030,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:1188" +defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1149" defs["ImGuiNextWindowData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextWindowData_ClearFlags"][1]["signature"] = "()" @@ -5992,7 +6046,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:1187" +defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1148" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ImGuiNextWindowData" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["signature"] = "()" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["stname"] = "ImGuiNextWindowData" @@ -6023,7 +6077,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:1641" +defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1681" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["ov_cimguiname"] = "ImGuiOldColumnData_ImGuiOldColumnData" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["signature"] = "()" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["stname"] = "ImGuiOldColumnData" @@ -6054,7 +6108,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:1662" +defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1702" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["ov_cimguiname"] = "ImGuiOldColumns_ImGuiOldColumns" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["signature"] = "()" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["stname"] = "ImGuiOldColumns" @@ -6222,7 +6276,7 @@ defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["constructor"] = true defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["defaults"] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["funcname"] = "ImGuiPlatformImeData" -defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3153" +defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3154" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["ov_cimguiname"] = "ImGuiPlatformImeData_ImGuiPlatformImeData" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["signature"] = "()" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["stname"] = "ImGuiPlatformImeData" @@ -6253,7 +6307,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:1150" +defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1302" defs["ImGuiPopupData_ImGuiPopupData"][1]["ov_cimguiname"] = "ImGuiPopupData_ImGuiPopupData" defs["ImGuiPopupData_ImGuiPopupData"][1]["signature"] = "()" defs["ImGuiPopupData_ImGuiPopupData"][1]["stname"] = "ImGuiPopupData" @@ -6287,7 +6341,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:1278" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1241" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["signature"] = "(void*)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["stname"] = "ImGuiPtrOrIndex" @@ -6303,7 +6357,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:1279" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1242" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["signature"] = "(int)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["stname"] = "ImGuiPtrOrIndex" @@ -6335,7 +6389,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:1748" +defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:1788" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["ov_cimguiname"] = "ImGuiSettingsHandler_ImGuiSettingsHandler" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["signature"] = "()" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["stname"] = "ImGuiSettingsHandler" @@ -6366,7 +6420,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:1837" +defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:1880" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["ov_cimguiname"] = "ImGuiStackLevelInfo_ImGuiStackLevelInfo" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["signature"] = "()" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["stname"] = "ImGuiStackLevelInfo" @@ -6402,7 +6456,7 @@ defs["ImGuiStackSizes_CompareWithContextState"][1]["call_args"] = "(ctx)" defs["ImGuiStackSizes_CompareWithContextState"][1]["cimguiname"] = "ImGuiStackSizes_CompareWithContextState" defs["ImGuiStackSizes_CompareWithContextState"][1]["defaults"] = {} defs["ImGuiStackSizes_CompareWithContextState"][1]["funcname"] = "CompareWithContextState" -defs["ImGuiStackSizes_CompareWithContextState"][1]["location"] = "imgui_internal:1255" +defs["ImGuiStackSizes_CompareWithContextState"][1]["location"] = "imgui_internal:1218" defs["ImGuiStackSizes_CompareWithContextState"][1]["ov_cimguiname"] = "ImGuiStackSizes_CompareWithContextState" defs["ImGuiStackSizes_CompareWithContextState"][1]["ret"] = "void" defs["ImGuiStackSizes_CompareWithContextState"][1]["signature"] = "(ImGuiContext*)" @@ -6418,7 +6472,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:1253" +defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1216" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["ov_cimguiname"] = "ImGuiStackSizes_ImGuiStackSizes" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["signature"] = "()" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["stname"] = "ImGuiStackSizes" @@ -6438,7 +6492,7 @@ defs["ImGuiStackSizes_SetToContextState"][1]["call_args"] = "(ctx)" defs["ImGuiStackSizes_SetToContextState"][1]["cimguiname"] = "ImGuiStackSizes_SetToContextState" defs["ImGuiStackSizes_SetToContextState"][1]["defaults"] = {} defs["ImGuiStackSizes_SetToContextState"][1]["funcname"] = "SetToContextState" -defs["ImGuiStackSizes_SetToContextState"][1]["location"] = "imgui_internal:1254" +defs["ImGuiStackSizes_SetToContextState"][1]["location"] = "imgui_internal:1217" defs["ImGuiStackSizes_SetToContextState"][1]["ov_cimguiname"] = "ImGuiStackSizes_SetToContextState" defs["ImGuiStackSizes_SetToContextState"][1]["ret"] = "void" defs["ImGuiStackSizes_SetToContextState"][1]["signature"] = "(ImGuiContext*)" @@ -6902,7 +6956,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:1037" +defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:1000" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Int" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["signature"] = "(ImGuiStyleVar,int)" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["stname"] = "ImGuiStyleMod" @@ -6921,7 +6975,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:1038" +defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:1001" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Float" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["signature"] = "(ImGuiStyleVar,float)" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["stname"] = "ImGuiStyleMod" @@ -6940,7 +6994,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:1039" +defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:1002" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Vec2" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["signature"] = "(ImGuiStyleVar,ImVec2)" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["stname"] = "ImGuiStyleMod" @@ -6973,7 +7027,7 @@ defs["ImGuiStyle_ImGuiStyle"][1]["cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" -defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:2028" +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:2032" defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -6993,7 +7047,7 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["call_args"] = "(scale_factor)" defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" -defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:2029" +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:2033" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -7025,7 +7079,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:2636" +defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:2693" defs["ImGuiTabBar_ImGuiTabBar"][1]["ov_cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["signature"] = "()" defs["ImGuiTabBar_ImGuiTabBar"][1]["stname"] = "ImGuiTabBar" @@ -7056,7 +7110,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:2596" +defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:2653" defs["ImGuiTabItem_ImGuiTabItem"][1]["ov_cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["signature"] = "()" defs["ImGuiTabItem_ImGuiTabItem"][1]["stname"] = "ImGuiTabItem" @@ -7087,7 +7141,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:2891" +defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:2948" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableColumnSettings_ImGuiTableColumnSettings" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["signature"] = "()" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["stname"] = "ImGuiTableColumnSettings" @@ -7118,7 +7172,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:1864" +defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:1868" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["signature"] = "()" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["stname"] = "ImGuiTableColumnSortSpecs" @@ -7149,7 +7203,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:2698" +defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:2755" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["ov_cimguiname"] = "ImGuiTableColumn_ImGuiTableColumn" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["signature"] = "()" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["stname"] = "ImGuiTableColumn" @@ -7180,7 +7234,7 @@ defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["cimguiname"] = "ImGuiT defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["constructor"] = true defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["defaults"] = {} defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["funcname"] = "ImGuiTableInstanceData" -defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:2730" +defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:2787" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["ov_cimguiname"] = "ImGuiTableInstanceData_ImGuiTableInstanceData" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["signature"] = "()" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["stname"] = "ImGuiTableInstanceData" @@ -7213,7 +7267,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:2914" +defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:2971" defs["ImGuiTableSettings_GetColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["ret"] = "ImGuiTableColumnSettings*" defs["ImGuiTableSettings_GetColumnSettings"][1]["signature"] = "()" @@ -7229,7 +7283,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:2913" +defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:2970" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_ImGuiTableSettings" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["signature"] = "()" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["stname"] = "ImGuiTableSettings" @@ -7260,7 +7314,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:1853" +defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:1857" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableSortSpecs_ImGuiTableSortSpecs" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["signature"] = "()" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["stname"] = "ImGuiTableSortSpecs" @@ -7291,7 +7345,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:2876" +defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:2933" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["ov_cimguiname"] = "ImGuiTableTempData_ImGuiTableTempData" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["signature"] = "()" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["stname"] = "ImGuiTableTempData" @@ -7322,7 +7376,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:2850" +defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:2907" defs["ImGuiTable_ImGuiTable"][1]["ov_cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["signature"] = "()" defs["ImGuiTable_ImGuiTable"][1]["stname"] = "ImGuiTable" @@ -7338,7 +7392,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:2851" +defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:2908" defs["ImGuiTable_destroy"][1]["ov_cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["realdestructor"] = true defs["ImGuiTable_destroy"][1]["ret"] = "void" @@ -7936,7 +7990,7 @@ defs["ImGuiTypingSelectState_Clear"][1]["call_args"] = "()" defs["ImGuiTypingSelectState_Clear"][1]["cimguiname"] = "ImGuiTypingSelectState_Clear" defs["ImGuiTypingSelectState_Clear"][1]["defaults"] = {} defs["ImGuiTypingSelectState_Clear"][1]["funcname"] = "Clear" -defs["ImGuiTypingSelectState_Clear"][1]["location"] = "imgui_internal:1606" +defs["ImGuiTypingSelectState_Clear"][1]["location"] = "imgui_internal:1646" defs["ImGuiTypingSelectState_Clear"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_Clear" defs["ImGuiTypingSelectState_Clear"][1]["ret"] = "void" defs["ImGuiTypingSelectState_Clear"][1]["signature"] = "()" @@ -7952,7 +8006,7 @@ defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["cimguiname"] = "ImGuiT defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["constructor"] = true defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["defaults"] = {} defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["funcname"] = "ImGuiTypingSelectState" -defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["location"] = "imgui_internal:1605" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["location"] = "imgui_internal:1645" defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_ImGuiTypingSelectState" defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["signature"] = "()" defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["stname"] = "ImGuiTypingSelectState" @@ -7991,7 +8045,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:1705" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1745" defs["ImGuiViewportP_CalcWorkRectPos"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectPos"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["ret"] = "void" @@ -8019,7 +8073,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:1706" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1746" defs["ImGuiViewportP_CalcWorkRectSize"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectSize"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["ret"] = "void" @@ -8041,7 +8095,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:1712" +defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:1752" defs["ImGuiViewportP_GetBuildWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetBuildWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["ret"] = "void" @@ -8063,7 +8117,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:1710" +defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:1750" defs["ImGuiViewportP_GetMainRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetMainRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["ret"] = "void" @@ -8085,7 +8139,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:1711" +defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:1751" defs["ImGuiViewportP_GetWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["ret"] = "void" @@ -8102,7 +8156,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:1701" +defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1741" defs["ImGuiViewportP_ImGuiViewportP"][1]["ov_cimguiname"] = "ImGuiViewportP_ImGuiViewportP" defs["ImGuiViewportP_ImGuiViewportP"][1]["signature"] = "()" defs["ImGuiViewportP_ImGuiViewportP"][1]["stname"] = "ImGuiViewportP" @@ -8119,7 +8173,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:1707" +defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:1747" defs["ImGuiViewportP_UpdateWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["ret"] = "void" defs["ImGuiViewportP_UpdateWorkRect"][1]["signature"] = "()" @@ -8136,7 +8190,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:1702" +defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1742" defs["ImGuiViewportP_destroy"][1]["ov_cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["realdestructor"] = true defs["ImGuiViewportP_destroy"][1]["ret"] = "void" @@ -8158,7 +8212,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:3138" +defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3139" defs["ImGuiViewport_GetCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["ret"] = "void" @@ -8180,7 +8234,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:3139" +defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3140" defs["ImGuiViewport_GetWorkCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetWorkCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["ret"] = "void" @@ -8197,7 +8251,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:3135" +defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3136" defs["ImGuiViewport_ImGuiViewport"][1]["ov_cimguiname"] = "ImGuiViewport_ImGuiViewport" defs["ImGuiViewport_ImGuiViewport"][1]["signature"] = "()" defs["ImGuiViewport_ImGuiViewport"][1]["stname"] = "ImGuiViewport" @@ -8230,7 +8284,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:1733" +defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:1773" defs["ImGuiWindowSettings_GetName"][1]["ov_cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["ret"] = "char*" defs["ImGuiWindowSettings_GetName"][1]["signature"] = "()" @@ -8246,7 +8300,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:1732" +defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:1772" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["ov_cimguiname"] = "ImGuiWindowSettings_ImGuiWindowSettings" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["signature"] = "()" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["stname"] = "ImGuiWindowSettings" @@ -8279,7 +8333,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:2553" +defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2610" defs["ImGuiWindow_CalcFontSize"][1]["ov_cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["ret"] = "float" defs["ImGuiWindow_CalcFontSize"][1]["signature"] = "()const" @@ -8304,7 +8358,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:2546" +defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2603" defs["ImGuiWindow_GetID"][1]["ov_cimguiname"] = "ImGuiWindow_GetID_Str" defs["ImGuiWindow_GetID"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][1]["signature"] = "(const char*,const char*)" @@ -8323,7 +8377,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:2547" +defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2604" defs["ImGuiWindow_GetID"][2]["ov_cimguiname"] = "ImGuiWindow_GetID_Ptr" defs["ImGuiWindow_GetID"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][2]["signature"] = "(const void*)" @@ -8342,7 +8396,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:2548" +defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2605" defs["ImGuiWindow_GetID"][3]["ov_cimguiname"] = "ImGuiWindow_GetID_Int" defs["ImGuiWindow_GetID"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][3]["signature"] = "(int)" @@ -8365,7 +8419,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:2549" +defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2606" defs["ImGuiWindow_GetIDFromRectangle"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDFromRectangle"][1]["signature"] = "(const ImRect)" @@ -8387,7 +8441,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:2542" +defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2599" defs["ImGuiWindow_ImGuiWindow"][1]["ov_cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["signature"] = "(ImGuiContext*,const char*)" defs["ImGuiWindow_ImGuiWindow"][1]["stname"] = "ImGuiWindow" @@ -8404,7 +8458,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:2556" +defs["ImGuiWindow_MenuBarHeight"][1]["location"] = "imgui_internal:2613" defs["ImGuiWindow_MenuBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarHeight" defs["ImGuiWindow_MenuBarHeight"][1]["ret"] = "float" defs["ImGuiWindow_MenuBarHeight"][1]["signature"] = "()const" @@ -8425,7 +8479,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:2557" +defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2614" defs["ImGuiWindow_MenuBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_MenuBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["ret"] = "void" @@ -8447,7 +8501,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:2552" +defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2609" defs["ImGuiWindow_Rect"][1]["nonUDT"] = 1 defs["ImGuiWindow_Rect"][1]["ov_cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["ret"] = "void" @@ -8466,7 +8520,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:2554" +defs["ImGuiWindow_TitleBarHeight"][1]["location"] = "imgui_internal:2611" defs["ImGuiWindow_TitleBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarHeight" defs["ImGuiWindow_TitleBarHeight"][1]["ret"] = "float" defs["ImGuiWindow_TitleBarHeight"][1]["signature"] = "()const" @@ -8487,7 +8541,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:2555" +defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2612" defs["ImGuiWindow_TitleBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_TitleBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["ret"] = "void" @@ -8505,7 +8559,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:2544" +defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2601" defs["ImGuiWindow_destroy"][1]["ov_cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["realdestructor"] = true defs["ImGuiWindow_destroy"][1]["ret"] = "void" @@ -8524,7 +8578,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:681" +defs["ImPool_Add"][1]["location"] = "imgui_internal:684" defs["ImPool_Add"][1]["ov_cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["ret"] = "T*" defs["ImPool_Add"][1]["signature"] = "()" @@ -8543,7 +8597,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:680" +defs["ImPool_Clear"][1]["location"] = "imgui_internal:683" defs["ImPool_Clear"][1]["ov_cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["ret"] = "void" defs["ImPool_Clear"][1]["signature"] = "()" @@ -8565,7 +8619,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:679" +defs["ImPool_Contains"][1]["location"] = "imgui_internal:682" defs["ImPool_Contains"][1]["ov_cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["ret"] = "bool" defs["ImPool_Contains"][1]["signature"] = "(const T*)const" @@ -8584,7 +8638,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:688" +defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:691" defs["ImPool_GetAliveCount"][1]["ov_cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["ret"] = "int" defs["ImPool_GetAliveCount"][1]["signature"] = "()const" @@ -8603,7 +8657,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:689" +defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:692" defs["ImPool_GetBufSize"][1]["ov_cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["ret"] = "int" defs["ImPool_GetBufSize"][1]["signature"] = "()const" @@ -8625,7 +8679,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:676" +defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:679" defs["ImPool_GetByIndex"][1]["ov_cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["ret"] = "T*" defs["ImPool_GetByIndex"][1]["signature"] = "(ImPoolIdx)" @@ -8647,7 +8701,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:675" +defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:678" defs["ImPool_GetByKey"][1]["ov_cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["ret"] = "T*" defs["ImPool_GetByKey"][1]["signature"] = "(ImGuiID)" @@ -8669,7 +8723,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:677" +defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:680" defs["ImPool_GetIndex"][1]["ov_cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["ret"] = "ImPoolIdx" defs["ImPool_GetIndex"][1]["signature"] = "(const T*)const" @@ -8688,7 +8742,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:690" +defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:693" defs["ImPool_GetMapSize"][1]["ov_cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["ret"] = "int" defs["ImPool_GetMapSize"][1]["signature"] = "()const" @@ -8710,7 +8764,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:678" +defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:681" defs["ImPool_GetOrAddByKey"][1]["ov_cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["ret"] = "T*" defs["ImPool_GetOrAddByKey"][1]["signature"] = "(ImGuiID)" @@ -8727,7 +8781,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:673" +defs["ImPool_ImPool"][1]["location"] = "imgui_internal:676" defs["ImPool_ImPool"][1]["ov_cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["signature"] = "()" defs["ImPool_ImPool"][1]["stname"] = "ImPool" @@ -8751,7 +8805,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:682" +defs["ImPool_Remove"][1]["location"] = "imgui_internal:685" defs["ImPool_Remove"][1]["ov_cimguiname"] = "ImPool_Remove_TPtr" defs["ImPool_Remove"][1]["ret"] = "void" defs["ImPool_Remove"][1]["signature"] = "(ImGuiID,const T*)" @@ -8774,7 +8828,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:683" +defs["ImPool_Remove"][2]["location"] = "imgui_internal:686" defs["ImPool_Remove"][2]["ov_cimguiname"] = "ImPool_Remove_PoolIdx" defs["ImPool_Remove"][2]["ret"] = "void" defs["ImPool_Remove"][2]["signature"] = "(ImGuiID,ImPoolIdx)" @@ -8797,7 +8851,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:684" +defs["ImPool_Reserve"][1]["location"] = "imgui_internal:687" defs["ImPool_Reserve"][1]["ov_cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["ret"] = "void" defs["ImPool_Reserve"][1]["signature"] = "(int)" @@ -8819,7 +8873,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:691" +defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:694" defs["ImPool_TryGetMapData"][1]["ov_cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["ret"] = "T*" defs["ImPool_TryGetMapData"][1]["signature"] = "(ImPoolIdx)" @@ -8837,7 +8891,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:674" +defs["ImPool_destroy"][1]["location"] = "imgui_internal:677" defs["ImPool_destroy"][1]["ov_cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["realdestructor"] = true defs["ImPool_destroy"][1]["ret"] = "void" @@ -8860,7 +8914,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:544" +defs["ImRect_Add"][1]["location"] = "imgui_internal:547" defs["ImRect_Add"][1]["ov_cimguiname"] = "ImRect_Add_Vec2" defs["ImRect_Add"][1]["ret"] = "void" defs["ImRect_Add"][1]["signature"] = "(const ImVec2)" @@ -8879,7 +8933,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:545" +defs["ImRect_Add"][2]["location"] = "imgui_internal:548" defs["ImRect_Add"][2]["ov_cimguiname"] = "ImRect_Add_Rect" defs["ImRect_Add"][2]["ret"] = "void" defs["ImRect_Add"][2]["signature"] = "(const ImRect)" @@ -8901,7 +8955,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:551" +defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:554" defs["ImRect_ClipWith"][1]["ov_cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["ret"] = "void" defs["ImRect_ClipWith"][1]["signature"] = "(const ImRect)" @@ -8922,7 +8976,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:552" +defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:555" defs["ImRect_ClipWithFull"][1]["ov_cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["ret"] = "void" defs["ImRect_ClipWithFull"][1]["signature"] = "(const ImRect)" @@ -8943,7 +8997,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:540" +defs["ImRect_Contains"][1]["location"] = "imgui_internal:543" defs["ImRect_Contains"][1]["ov_cimguiname"] = "ImRect_Contains_Vec2" defs["ImRect_Contains"][1]["ret"] = "bool" defs["ImRect_Contains"][1]["signature"] = "(const ImVec2)const" @@ -8962,7 +9016,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:541" +defs["ImRect_Contains"][2]["location"] = "imgui_internal:544" defs["ImRect_Contains"][2]["ov_cimguiname"] = "ImRect_Contains_Rect" defs["ImRect_Contains"][2]["ret"] = "bool" defs["ImRect_Contains"][2]["signature"] = "(const ImRect)const" @@ -8987,7 +9041,7 @@ defs["ImRect_ContainsWithPad"][1]["call_args"] = "(p,pad)" defs["ImRect_ContainsWithPad"][1]["cimguiname"] = "ImRect_ContainsWithPad" defs["ImRect_ContainsWithPad"][1]["defaults"] = {} defs["ImRect_ContainsWithPad"][1]["funcname"] = "ContainsWithPad" -defs["ImRect_ContainsWithPad"][1]["location"] = "imgui_internal:542" +defs["ImRect_ContainsWithPad"][1]["location"] = "imgui_internal:545" defs["ImRect_ContainsWithPad"][1]["ov_cimguiname"] = "ImRect_ContainsWithPad" defs["ImRect_ContainsWithPad"][1]["ret"] = "bool" defs["ImRect_ContainsWithPad"][1]["signature"] = "(const ImVec2,const ImVec2)const" @@ -9008,7 +9062,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:546" +defs["ImRect_Expand"][1]["location"] = "imgui_internal:549" defs["ImRect_Expand"][1]["ov_cimguiname"] = "ImRect_Expand_Float" defs["ImRect_Expand"][1]["ret"] = "void" defs["ImRect_Expand"][1]["signature"] = "(const float)" @@ -9027,7 +9081,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:547" +defs["ImRect_Expand"][2]["location"] = "imgui_internal:550" defs["ImRect_Expand"][2]["ov_cimguiname"] = "ImRect_Expand_Vec2" defs["ImRect_Expand"][2]["ret"] = "void" defs["ImRect_Expand"][2]["signature"] = "(const ImVec2)" @@ -9046,7 +9100,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:553" +defs["ImRect_Floor"][1]["location"] = "imgui_internal:556" defs["ImRect_Floor"][1]["ov_cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["ret"] = "void" defs["ImRect_Floor"][1]["signature"] = "()" @@ -9064,7 +9118,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:535" +defs["ImRect_GetArea"][1]["location"] = "imgui_internal:538" defs["ImRect_GetArea"][1]["ov_cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["ret"] = "float" defs["ImRect_GetArea"][1]["signature"] = "()const" @@ -9085,7 +9139,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:538" +defs["ImRect_GetBL"][1]["location"] = "imgui_internal:541" defs["ImRect_GetBL"][1]["nonUDT"] = 1 defs["ImRect_GetBL"][1]["ov_cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["ret"] = "void" @@ -9107,7 +9161,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:539" +defs["ImRect_GetBR"][1]["location"] = "imgui_internal:542" defs["ImRect_GetBR"][1]["nonUDT"] = 1 defs["ImRect_GetBR"][1]["ov_cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["ret"] = "void" @@ -9129,7 +9183,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:531" +defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:534" defs["ImRect_GetCenter"][1]["nonUDT"] = 1 defs["ImRect_GetCenter"][1]["ov_cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["ret"] = "void" @@ -9148,7 +9202,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:534" +defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:537" defs["ImRect_GetHeight"][1]["ov_cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["ret"] = "float" defs["ImRect_GetHeight"][1]["signature"] = "()const" @@ -9169,7 +9223,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:532" +defs["ImRect_GetSize"][1]["location"] = "imgui_internal:535" defs["ImRect_GetSize"][1]["nonUDT"] = 1 defs["ImRect_GetSize"][1]["ov_cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["ret"] = "void" @@ -9191,7 +9245,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:536" +defs["ImRect_GetTL"][1]["location"] = "imgui_internal:539" defs["ImRect_GetTL"][1]["nonUDT"] = 1 defs["ImRect_GetTL"][1]["ov_cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["ret"] = "void" @@ -9213,7 +9267,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:537" +defs["ImRect_GetTR"][1]["location"] = "imgui_internal:540" defs["ImRect_GetTR"][1]["nonUDT"] = 1 defs["ImRect_GetTR"][1]["ov_cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["ret"] = "void" @@ -9232,7 +9286,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:533" +defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:536" defs["ImRect_GetWidth"][1]["ov_cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["ret"] = "float" defs["ImRect_GetWidth"][1]["signature"] = "()const" @@ -9248,7 +9302,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:526" +defs["ImRect_ImRect"][1]["location"] = "imgui_internal:529" defs["ImRect_ImRect"][1]["ov_cimguiname"] = "ImRect_ImRect_Nil" defs["ImRect_ImRect"][1]["signature"] = "()" defs["ImRect_ImRect"][1]["stname"] = "ImRect" @@ -9267,7 +9321,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:527" +defs["ImRect_ImRect"][2]["location"] = "imgui_internal:530" defs["ImRect_ImRect"][2]["ov_cimguiname"] = "ImRect_ImRect_Vec2" defs["ImRect_ImRect"][2]["signature"] = "(const ImVec2,const ImVec2)" defs["ImRect_ImRect"][2]["stname"] = "ImRect" @@ -9283,7 +9337,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:528" +defs["ImRect_ImRect"][3]["location"] = "imgui_internal:531" defs["ImRect_ImRect"][3]["ov_cimguiname"] = "ImRect_ImRect_Vec4" defs["ImRect_ImRect"][3]["signature"] = "(const ImVec4)" defs["ImRect_ImRect"][3]["stname"] = "ImRect" @@ -9308,7 +9362,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:529" +defs["ImRect_ImRect"][4]["location"] = "imgui_internal:532" defs["ImRect_ImRect"][4]["ov_cimguiname"] = "ImRect_ImRect_Float" defs["ImRect_ImRect"][4]["signature"] = "(float,float,float,float)" defs["ImRect_ImRect"][4]["stname"] = "ImRect" @@ -9328,7 +9382,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:554" +defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:557" defs["ImRect_IsInverted"][1]["ov_cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["ret"] = "bool" defs["ImRect_IsInverted"][1]["signature"] = "()const" @@ -9349,7 +9403,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:543" +defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:546" defs["ImRect_Overlaps"][1]["ov_cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["ret"] = "bool" defs["ImRect_Overlaps"][1]["signature"] = "(const ImRect)const" @@ -9370,7 +9424,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:555" +defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:558" defs["ImRect_ToVec4"][1]["nonUDT"] = 1 defs["ImRect_ToVec4"][1]["ov_cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["ret"] = "void" @@ -9392,7 +9446,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:548" +defs["ImRect_Translate"][1]["location"] = "imgui_internal:551" defs["ImRect_Translate"][1]["ov_cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["ret"] = "void" defs["ImRect_Translate"][1]["signature"] = "(const ImVec2)" @@ -9413,7 +9467,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:549" +defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:552" defs["ImRect_TranslateX"][1]["ov_cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["ret"] = "void" defs["ImRect_TranslateX"][1]["signature"] = "(float)" @@ -9434,7 +9488,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:550" +defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:553" defs["ImRect_TranslateY"][1]["ov_cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["ret"] = "void" defs["ImRect_TranslateY"][1]["signature"] = "(float)" @@ -9468,7 +9522,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:653" +defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:656" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ov_cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ret"] = "int" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["signature"] = "()" @@ -9490,7 +9544,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:655" +defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:658" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["signature"] = "(int)" @@ -9512,7 +9566,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:656" +defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:659" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["signature"] = "(int)" @@ -9529,7 +9583,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:651" +defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:654" defs["ImSpanAllocator_ImSpanAllocator"][1]["ov_cimguiname"] = "ImSpanAllocator_ImSpanAllocator" defs["ImSpanAllocator_ImSpanAllocator"][1]["signature"] = "()" defs["ImSpanAllocator_ImSpanAllocator"][1]["stname"] = "ImSpanAllocator" @@ -9557,7 +9611,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:652" +defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:655" defs["ImSpanAllocator_Reserve"][1]["ov_cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["ret"] = "void" defs["ImSpanAllocator_Reserve"][1]["signature"] = "(int,size_t,int)" @@ -9579,7 +9633,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:654" +defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:657" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ov_cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ret"] = "void" defs["ImSpanAllocator_SetArenaBasePtr"][1]["signature"] = "(void*)" @@ -9613,7 +9667,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:619" +defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:622" defs["ImSpan_ImSpan"][1]["ov_cimguiname"] = "ImSpan_ImSpan_Nil" defs["ImSpan_ImSpan"][1]["signature"] = "()" defs["ImSpan_ImSpan"][1]["stname"] = "ImSpan" @@ -9633,7 +9687,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:620" +defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:623" defs["ImSpan_ImSpan"][2]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrInt" defs["ImSpan_ImSpan"][2]["signature"] = "(T*,int)" defs["ImSpan_ImSpan"][2]["stname"] = "ImSpan" @@ -9653,7 +9707,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:621" +defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:624" defs["ImSpan_ImSpan"][3]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrTPtr" defs["ImSpan_ImSpan"][3]["signature"] = "(T*,T*)" defs["ImSpan_ImSpan"][3]["stname"] = "ImSpan" @@ -9673,7 +9727,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:630" +defs["ImSpan_begin"][1]["location"] = "imgui_internal:633" defs["ImSpan_begin"][1]["ov_cimguiname"] = "ImSpan_begin_Nil" defs["ImSpan_begin"][1]["ret"] = "T*" defs["ImSpan_begin"][1]["signature"] = "()" @@ -9690,7 +9744,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:631" +defs["ImSpan_begin"][2]["location"] = "imgui_internal:634" defs["ImSpan_begin"][2]["ov_cimguiname"] = "ImSpan_begin__const" defs["ImSpan_begin"][2]["ret"] = "const T*" defs["ImSpan_begin"][2]["signature"] = "()const" @@ -9727,7 +9781,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:632" +defs["ImSpan_end"][1]["location"] = "imgui_internal:635" defs["ImSpan_end"][1]["ov_cimguiname"] = "ImSpan_end_Nil" defs["ImSpan_end"][1]["ret"] = "T*" defs["ImSpan_end"][1]["signature"] = "()" @@ -9744,7 +9798,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:633" +defs["ImSpan_end"][2]["location"] = "imgui_internal:636" defs["ImSpan_end"][2]["ov_cimguiname"] = "ImSpan_end__const" defs["ImSpan_end"][2]["ret"] = "const T*" defs["ImSpan_end"][2]["signature"] = "()const" @@ -9767,7 +9821,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:636" +defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:639" 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" @@ -9792,7 +9846,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:623" +defs["ImSpan_set"][1]["location"] = "imgui_internal:626" defs["ImSpan_set"][1]["ov_cimguiname"] = "ImSpan_set_Int" defs["ImSpan_set"][1]["ret"] = "void" defs["ImSpan_set"][1]["signature"] = "(T*,int)" @@ -9815,7 +9869,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:624" +defs["ImSpan_set"][2]["location"] = "imgui_internal:627" defs["ImSpan_set"][2]["ov_cimguiname"] = "ImSpan_set_TPtr" defs["ImSpan_set"][2]["ret"] = "void" defs["ImSpan_set"][2]["signature"] = "(T*,T*)" @@ -9835,7 +9889,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:625" +defs["ImSpan_size"][1]["location"] = "imgui_internal:628" defs["ImSpan_size"][1]["ov_cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["ret"] = "int" defs["ImSpan_size"][1]["signature"] = "()const" @@ -9854,7 +9908,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:626" +defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:629" 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" @@ -9871,7 +9925,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:506" +defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:509" defs["ImVec1_ImVec1"][1]["ov_cimguiname"] = "ImVec1_ImVec1_Nil" defs["ImVec1_ImVec1"][1]["signature"] = "()" defs["ImVec1_ImVec1"][1]["stname"] = "ImVec1" @@ -9887,7 +9941,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:507" +defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:510" defs["ImVec1_ImVec1"][2]["ov_cimguiname"] = "ImVec1_ImVec1_Float" defs["ImVec1_ImVec1"][2]["signature"] = "(float)" defs["ImVec1_ImVec1"][2]["stname"] = "ImVec1" @@ -9919,7 +9973,7 @@ defs["ImVec2_ImVec2"][1]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][1]["constructor"] = true defs["ImVec2_ImVec2"][1]["defaults"] = {} defs["ImVec2_ImVec2"][1]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][1]["location"] = "imgui:264" +defs["ImVec2_ImVec2"][1]["location"] = "imgui:266" defs["ImVec2_ImVec2"][1]["ov_cimguiname"] = "ImVec2_ImVec2_Nil" defs["ImVec2_ImVec2"][1]["signature"] = "()" defs["ImVec2_ImVec2"][1]["stname"] = "ImVec2" @@ -9938,7 +9992,7 @@ defs["ImVec2_ImVec2"][2]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][2]["constructor"] = true defs["ImVec2_ImVec2"][2]["defaults"] = {} defs["ImVec2_ImVec2"][2]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][2]["location"] = "imgui:265" +defs["ImVec2_ImVec2"][2]["location"] = "imgui:267" defs["ImVec2_ImVec2"][2]["ov_cimguiname"] = "ImVec2_ImVec2_Float" defs["ImVec2_ImVec2"][2]["signature"] = "(float,float)" defs["ImVec2_ImVec2"][2]["stname"] = "ImVec2" @@ -9970,7 +10024,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:514" +defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:517" defs["ImVec2ih_ImVec2ih"][1]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Nil" defs["ImVec2ih_ImVec2ih"][1]["signature"] = "()" defs["ImVec2ih_ImVec2ih"][1]["stname"] = "ImVec2ih" @@ -9989,7 +10043,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:515" +defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:518" defs["ImVec2ih_ImVec2ih"][2]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_short" defs["ImVec2ih_ImVec2ih"][2]["signature"] = "(short,short)" defs["ImVec2ih_ImVec2ih"][2]["stname"] = "ImVec2ih" @@ -10005,7 +10059,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:516" +defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:519" defs["ImVec2ih_ImVec2ih"][3]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Vec2" defs["ImVec2ih_ImVec2ih"][3]["signature"] = "(const ImVec2)" defs["ImVec2ih_ImVec2ih"][3]["stname"] = "ImVec2ih" @@ -10038,7 +10092,7 @@ defs["ImVec4_ImVec4"][1]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][1]["constructor"] = true defs["ImVec4_ImVec4"][1]["defaults"] = {} defs["ImVec4_ImVec4"][1]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][1]["location"] = "imgui:277" +defs["ImVec4_ImVec4"][1]["location"] = "imgui:279" defs["ImVec4_ImVec4"][1]["ov_cimguiname"] = "ImVec4_ImVec4_Nil" defs["ImVec4_ImVec4"][1]["signature"] = "()" defs["ImVec4_ImVec4"][1]["stname"] = "ImVec4" @@ -10063,7 +10117,7 @@ defs["ImVec4_ImVec4"][2]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][2]["constructor"] = true defs["ImVec4_ImVec4"][2]["defaults"] = {} defs["ImVec4_ImVec4"][2]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][2]["location"] = "imgui:278" +defs["ImVec4_ImVec4"][2]["location"] = "imgui:280" defs["ImVec4_ImVec4"][2]["ov_cimguiname"] = "ImVec4_ImVec4_Float" defs["ImVec4_ImVec4"][2]["signature"] = "(float,float,float,float)" defs["ImVec4_ImVec4"][2]["stname"] = "ImVec4" @@ -10095,7 +10149,7 @@ defs["ImVector_ImVector"][1]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" -defs["ImVector_ImVector"][1]["location"] = "imgui:1911" +defs["ImVector_ImVector"][1]["location"] = "imgui:1915" defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVector_Nil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -10112,7 +10166,7 @@ defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][2]["constructor"] = true defs["ImVector_ImVector"][2]["defaults"] = {} defs["ImVector_ImVector"][2]["funcname"] = "ImVector" -defs["ImVector_ImVector"][2]["location"] = "imgui:1912" +defs["ImVector_ImVector"][2]["location"] = "imgui:1916" defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVector_Vector_T_" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_T )" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -10134,7 +10188,7 @@ defs["ImVector__grow_capacity"][1]["call_args"] = "(sz)" defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" -defs["ImVector__grow_capacity"][1]["location"] = "imgui:1938" +defs["ImVector__grow_capacity"][1]["location"] = "imgui:1942" defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" defs["ImVector__grow_capacity"][1]["signature"] = "(int)const" @@ -10153,7 +10207,7 @@ defs["ImVector_back"][1]["call_args"] = "()" defs["ImVector_back"][1]["cimguiname"] = "ImVector_back" defs["ImVector_back"][1]["defaults"] = {} defs["ImVector_back"][1]["funcname"] = "back" -defs["ImVector_back"][1]["location"] = "imgui:1934" +defs["ImVector_back"][1]["location"] = "imgui:1938" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_back_Nil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -10171,7 +10225,7 @@ defs["ImVector_back"][2]["call_args"] = "()" defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" defs["ImVector_back"][2]["defaults"] = {} defs["ImVector_back"][2]["funcname"] = "back" -defs["ImVector_back"][2]["location"] = "imgui:1935" +defs["ImVector_back"][2]["location"] = "imgui:1939" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back__const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -10192,7 +10246,7 @@ defs["ImVector_begin"][1]["call_args"] = "()" defs["ImVector_begin"][1]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][1]["defaults"] = {} defs["ImVector_begin"][1]["funcname"] = "begin" -defs["ImVector_begin"][1]["location"] = "imgui:1928" +defs["ImVector_begin"][1]["location"] = "imgui:1932" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin_Nil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -10209,7 +10263,7 @@ defs["ImVector_begin"][2]["call_args"] = "()" defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["defaults"] = {} defs["ImVector_begin"][2]["funcname"] = "begin" -defs["ImVector_begin"][2]["location"] = "imgui:1929" +defs["ImVector_begin"][2]["location"] = "imgui:1933" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin__const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -10229,7 +10283,7 @@ defs["ImVector_capacity"][1]["call_args"] = "()" defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" -defs["ImVector_capacity"][1]["location"] = "imgui:1924" +defs["ImVector_capacity"][1]["location"] = "imgui:1928" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -10248,7 +10302,7 @@ defs["ImVector_clear"][1]["call_args"] = "()" defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" -defs["ImVector_clear"][1]["location"] = "imgui:1916" +defs["ImVector_clear"][1]["location"] = "imgui:1920" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -10267,7 +10321,7 @@ defs["ImVector_clear_delete"][1]["call_args"] = "()" defs["ImVector_clear_delete"][1]["cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["defaults"] = {} defs["ImVector_clear_delete"][1]["funcname"] = "clear_delete" -defs["ImVector_clear_delete"][1]["location"] = "imgui:1917" +defs["ImVector_clear_delete"][1]["location"] = "imgui:1921" defs["ImVector_clear_delete"][1]["ov_cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["ret"] = "void" defs["ImVector_clear_delete"][1]["signature"] = "()" @@ -10286,7 +10340,7 @@ defs["ImVector_clear_destruct"][1]["call_args"] = "()" defs["ImVector_clear_destruct"][1]["cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["defaults"] = {} defs["ImVector_clear_destruct"][1]["funcname"] = "clear_destruct" -defs["ImVector_clear_destruct"][1]["location"] = "imgui:1918" +defs["ImVector_clear_destruct"][1]["location"] = "imgui:1922" defs["ImVector_clear_destruct"][1]["ov_cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["ret"] = "void" defs["ImVector_clear_destruct"][1]["signature"] = "()" @@ -10308,7 +10362,7 @@ defs["ImVector_contains"][1]["call_args"] = "(v)" defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" -defs["ImVector_contains"][1]["location"] = "imgui:1953" +defs["ImVector_contains"][1]["location"] = "imgui:1957" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -10326,7 +10380,7 @@ defs["ImVector_destroy"][1]["call_args"] = "(self)" defs["ImVector_destroy"][1]["cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["defaults"] = {} defs["ImVector_destroy"][1]["destructor"] = true -defs["ImVector_destroy"][1]["location"] = "imgui:1914" +defs["ImVector_destroy"][1]["location"] = "imgui:1918" defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" @@ -10346,7 +10400,7 @@ defs["ImVector_empty"][1]["call_args"] = "()" defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" -defs["ImVector_empty"][1]["location"] = "imgui:1920" +defs["ImVector_empty"][1]["location"] = "imgui:1924" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -10365,7 +10419,7 @@ defs["ImVector_end"][1]["call_args"] = "()" defs["ImVector_end"][1]["cimguiname"] = "ImVector_end" defs["ImVector_end"][1]["defaults"] = {} defs["ImVector_end"][1]["funcname"] = "end" -defs["ImVector_end"][1]["location"] = "imgui:1930" +defs["ImVector_end"][1]["location"] = "imgui:1934" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end_Nil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -10382,7 +10436,7 @@ defs["ImVector_end"][2]["call_args"] = "()" defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["defaults"] = {} defs["ImVector_end"][2]["funcname"] = "end" -defs["ImVector_end"][2]["location"] = "imgui:1931" +defs["ImVector_end"][2]["location"] = "imgui:1935" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end__const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -10405,7 +10459,7 @@ defs["ImVector_erase"][1]["call_args"] = "(it)" defs["ImVector_erase"][1]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][1]["defaults"] = {} defs["ImVector_erase"][1]["funcname"] = "erase" -defs["ImVector_erase"][1]["location"] = "imgui:1949" +defs["ImVector_erase"][1]["location"] = "imgui:1953" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase_Nil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -10428,7 +10482,7 @@ defs["ImVector_erase"][2]["call_args"] = "(it,it_last)" defs["ImVector_erase"][2]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][2]["defaults"] = {} defs["ImVector_erase"][2]["funcname"] = "erase" -defs["ImVector_erase"][2]["location"] = "imgui:1950" +defs["ImVector_erase"][2]["location"] = "imgui:1954" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_erase_TPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -10451,7 +10505,7 @@ defs["ImVector_erase_unsorted"][1]["call_args"] = "(it)" defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" -defs["ImVector_erase_unsorted"][1]["location"] = "imgui:1951" +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:1955" defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["ret"] = "T*" defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" @@ -10473,7 +10527,7 @@ defs["ImVector_find"][1]["call_args"] = "(v)" defs["ImVector_find"][1]["cimguiname"] = "ImVector_find" defs["ImVector_find"][1]["defaults"] = {} defs["ImVector_find"][1]["funcname"] = "find" -defs["ImVector_find"][1]["location"] = "imgui:1954" +defs["ImVector_find"][1]["location"] = "imgui:1958" defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_find_Nil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -10493,7 +10547,7 @@ defs["ImVector_find"][2]["call_args"] = "(v)" defs["ImVector_find"][2]["cimguiname"] = "ImVector_find" defs["ImVector_find"][2]["defaults"] = {} defs["ImVector_find"][2]["funcname"] = "find" -defs["ImVector_find"][2]["location"] = "imgui:1955" +defs["ImVector_find"][2]["location"] = "imgui:1959" defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find__const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -10516,7 +10570,7 @@ defs["ImVector_find_erase"][1]["call_args"] = "(v)" defs["ImVector_find_erase"][1]["cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["defaults"] = {} defs["ImVector_find_erase"][1]["funcname"] = "find_erase" -defs["ImVector_find_erase"][1]["location"] = "imgui:1957" +defs["ImVector_find_erase"][1]["location"] = "imgui:1961" defs["ImVector_find_erase"][1]["ov_cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["ret"] = "bool" defs["ImVector_find_erase"][1]["signature"] = "(const T)" @@ -10538,7 +10592,7 @@ defs["ImVector_find_erase_unsorted"][1]["call_args"] = "(v)" defs["ImVector_find_erase_unsorted"][1]["cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["defaults"] = {} defs["ImVector_find_erase_unsorted"][1]["funcname"] = "find_erase_unsorted" -defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:1958" +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:1962" defs["ImVector_find_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["ret"] = "bool" defs["ImVector_find_erase_unsorted"][1]["signature"] = "(const T)" @@ -10560,7 +10614,7 @@ defs["ImVector_find_index"][1]["call_args"] = "(v)" defs["ImVector_find_index"][1]["cimguiname"] = "ImVector_find_index" defs["ImVector_find_index"][1]["defaults"] = {} defs["ImVector_find_index"][1]["funcname"] = "find_index" -defs["ImVector_find_index"][1]["location"] = "imgui:1956" +defs["ImVector_find_index"][1]["location"] = "imgui:1960" defs["ImVector_find_index"][1]["ov_cimguiname"] = "ImVector_find_index" defs["ImVector_find_index"][1]["ret"] = "int" defs["ImVector_find_index"][1]["signature"] = "(const T)const" @@ -10579,7 +10633,7 @@ defs["ImVector_front"][1]["call_args"] = "()" defs["ImVector_front"][1]["cimguiname"] = "ImVector_front" defs["ImVector_front"][1]["defaults"] = {} defs["ImVector_front"][1]["funcname"] = "front" -defs["ImVector_front"][1]["location"] = "imgui:1932" +defs["ImVector_front"][1]["location"] = "imgui:1936" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_front_Nil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -10597,7 +10651,7 @@ defs["ImVector_front"][2]["call_args"] = "()" defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" defs["ImVector_front"][2]["defaults"] = {} defs["ImVector_front"][2]["funcname"] = "front" -defs["ImVector_front"][2]["location"] = "imgui:1933" +defs["ImVector_front"][2]["location"] = "imgui:1937" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front__const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -10621,7 +10675,7 @@ defs["ImVector_index_from_ptr"][1]["call_args"] = "(it)" defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImVector_index_from_ptr"][1]["location"] = "imgui:1959" +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:1963" defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -10646,7 +10700,7 @@ defs["ImVector_insert"][1]["call_args"] = "(it,v)" defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" -defs["ImVector_insert"][1]["location"] = "imgui:1952" +defs["ImVector_insert"][1]["location"] = "imgui:1956" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" @@ -10665,7 +10719,7 @@ defs["ImVector_max_size"][1]["call_args"] = "()" defs["ImVector_max_size"][1]["cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["defaults"] = {} defs["ImVector_max_size"][1]["funcname"] = "max_size" -defs["ImVector_max_size"][1]["location"] = "imgui:1923" +defs["ImVector_max_size"][1]["location"] = "imgui:1927" defs["ImVector_max_size"][1]["ov_cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["ret"] = "int" defs["ImVector_max_size"][1]["signature"] = "()const" @@ -10684,7 +10738,7 @@ defs["ImVector_pop_back"][1]["call_args"] = "()" defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" -defs["ImVector_pop_back"][1]["location"] = "imgui:1947" +defs["ImVector_pop_back"][1]["location"] = "imgui:1951" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -10706,7 +10760,7 @@ defs["ImVector_push_back"][1]["call_args"] = "(v)" defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" -defs["ImVector_push_back"][1]["location"] = "imgui:1946" +defs["ImVector_push_back"][1]["location"] = "imgui:1950" defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["ret"] = "void" defs["ImVector_push_back"][1]["signature"] = "(const T)" @@ -10728,7 +10782,7 @@ defs["ImVector_push_front"][1]["call_args"] = "(v)" defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" -defs["ImVector_push_front"][1]["location"] = "imgui:1948" +defs["ImVector_push_front"][1]["location"] = "imgui:1952" defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["ret"] = "void" defs["ImVector_push_front"][1]["signature"] = "(const T)" @@ -10750,7 +10804,7 @@ defs["ImVector_reserve"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" -defs["ImVector_reserve"][1]["location"] = "imgui:1942" +defs["ImVector_reserve"][1]["location"] = "imgui:1946" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -10772,7 +10826,7 @@ defs["ImVector_reserve_discard"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve_discard"][1]["cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["defaults"] = {} defs["ImVector_reserve_discard"][1]["funcname"] = "reserve_discard" -defs["ImVector_reserve_discard"][1]["location"] = "imgui:1943" +defs["ImVector_reserve_discard"][1]["location"] = "imgui:1947" defs["ImVector_reserve_discard"][1]["ov_cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["ret"] = "void" defs["ImVector_reserve_discard"][1]["signature"] = "(int)" @@ -10794,7 +10848,7 @@ defs["ImVector_resize"][1]["call_args"] = "(new_size)" defs["ImVector_resize"][1]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][1]["defaults"] = {} defs["ImVector_resize"][1]["funcname"] = "resize" -defs["ImVector_resize"][1]["location"] = "imgui:1939" +defs["ImVector_resize"][1]["location"] = "imgui:1943" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize_Nil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -10817,7 +10871,7 @@ defs["ImVector_resize"][2]["call_args"] = "(new_size,v)" defs["ImVector_resize"][2]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][2]["defaults"] = {} defs["ImVector_resize"][2]["funcname"] = "resize" -defs["ImVector_resize"][2]["location"] = "imgui:1940" +defs["ImVector_resize"][2]["location"] = "imgui:1944" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resize_T" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -10840,7 +10894,7 @@ defs["ImVector_shrink"][1]["call_args"] = "(new_size)" defs["ImVector_shrink"][1]["cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["defaults"] = {} defs["ImVector_shrink"][1]["funcname"] = "shrink" -defs["ImVector_shrink"][1]["location"] = "imgui:1941" +defs["ImVector_shrink"][1]["location"] = "imgui:1945" defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -10859,7 +10913,7 @@ defs["ImVector_size"][1]["call_args"] = "()" defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" -defs["ImVector_size"][1]["location"] = "imgui:1921" +defs["ImVector_size"][1]["location"] = "imgui:1925" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -10878,7 +10932,7 @@ defs["ImVector_size_in_bytes"][1]["call_args"] = "()" defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImVector_size_in_bytes"][1]["location"] = "imgui:1922" +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:1926" defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" defs["ImVector_size_in_bytes"][1]["signature"] = "()const" @@ -10901,7 +10955,7 @@ defs["ImVector_swap"][1]["call_args"] = "(*rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" -defs["ImVector_swap"][1]["location"] = "imgui:1936" +defs["ImVector_swap"][1]["location"] = "imgui:1940" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" defs["ImVector_swap"][1]["signature"] = "(ImVector_T *)" @@ -10924,7 +10978,7 @@ defs["igAcceptDragDropPayload"][1]["cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" -defs["igAcceptDragDropPayload"][1]["location"] = "imgui:842" +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:844" defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -10943,7 +10997,7 @@ defs["igActivateItemByID"][1]["call_args"] = "(id)" defs["igActivateItemByID"][1]["cimguiname"] = "igActivateItemByID" defs["igActivateItemByID"][1]["defaults"] = {} defs["igActivateItemByID"][1]["funcname"] = "ActivateItemByID" -defs["igActivateItemByID"][1]["location"] = "imgui_internal:3107" +defs["igActivateItemByID"][1]["location"] = "imgui_internal:3167" defs["igActivateItemByID"][1]["namespace"] = "ImGui" defs["igActivateItemByID"][1]["ov_cimguiname"] = "igActivateItemByID" defs["igActivateItemByID"][1]["ret"] = "void" @@ -10965,7 +11019,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:2978" +defs["igAddContextHook"][1]["location"] = "imgui_internal:3036" defs["igAddContextHook"][1]["namespace"] = "ImGui" defs["igAddContextHook"][1]["ov_cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["ret"] = "ImGuiID" @@ -10990,7 +11044,7 @@ defs["igAddDrawListToDrawDataEx"][1]["call_args"] = "(draw_data,out_list,draw_li defs["igAddDrawListToDrawDataEx"][1]["cimguiname"] = "igAddDrawListToDrawDataEx" defs["igAddDrawListToDrawDataEx"][1]["defaults"] = {} defs["igAddDrawListToDrawDataEx"][1]["funcname"] = "AddDrawListToDrawDataEx" -defs["igAddDrawListToDrawDataEx"][1]["location"] = "imgui_internal:2964" +defs["igAddDrawListToDrawDataEx"][1]["location"] = "imgui_internal:3022" defs["igAddDrawListToDrawDataEx"][1]["namespace"] = "ImGui" defs["igAddDrawListToDrawDataEx"][1]["ov_cimguiname"] = "igAddDrawListToDrawDataEx" defs["igAddDrawListToDrawDataEx"][1]["ret"] = "void" @@ -11009,7 +11063,7 @@ defs["igAddSettingsHandler"][1]["call_args"] = "(handler)" defs["igAddSettingsHandler"][1]["cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["defaults"] = {} defs["igAddSettingsHandler"][1]["funcname"] = "AddSettingsHandler" -defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:2989" +defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:3047" defs["igAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igAddSettingsHandler"][1]["ov_cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["ret"] = "void" @@ -11025,7 +11079,7 @@ defs["igAlignTextToFramePadding"][1]["call_args"] = "()" defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" -defs["igAlignTextToFramePadding"][1]["location"] = "imgui:477" +defs["igAlignTextToFramePadding"][1]["location"] = "imgui:479" defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" @@ -11047,7 +11101,7 @@ defs["igArrowButton"][1]["call_args"] = "(str_id,dir)" defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" -defs["igArrowButton"][1]["location"] = "imgui:525" +defs["igArrowButton"][1]["location"] = "imgui:527" defs["igArrowButton"][1]["namespace"] = "ImGui" defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" @@ -11076,7 +11130,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:3334" +defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3396" defs["igArrowButtonEx"][1]["namespace"] = "ImGui" defs["igArrowButtonEx"][1]["ov_cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["ret"] = "bool" @@ -11103,7 +11157,7 @@ defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" defs["igBegin"][1]["defaults"]["p_open"] = "NULL" defs["igBegin"][1]["funcname"] = "Begin" -defs["igBegin"][1]["location"] = "imgui:338" +defs["igBegin"][1]["location"] = "imgui:340" defs["igBegin"][1]["namespace"] = "ImGui" defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" @@ -11134,7 +11188,7 @@ defs["igBeginChild"][1]["defaults"]["child_flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][1]["defaults"]["window_flags"] = "0" defs["igBeginChild"][1]["funcname"] = "BeginChild" -defs["igBeginChild"][1]["location"] = "imgui:359" +defs["igBeginChild"][1]["location"] = "imgui:361" defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChild_Str" defs["igBeginChild"][1]["ret"] = "bool" @@ -11163,7 +11217,7 @@ defs["igBeginChild"][2]["defaults"]["child_flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][2]["defaults"]["window_flags"] = "0" defs["igBeginChild"][2]["funcname"] = "BeginChild" -defs["igBeginChild"][2]["location"] = "imgui:360" +defs["igBeginChild"][2]["location"] = "imgui:362" defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChild_ID" defs["igBeginChild"][2]["ret"] = "bool" @@ -11195,7 +11249,7 @@ defs["igBeginChildEx"][1]["call_args"] = "(name,id,size_arg,child_flags,window_f defs["igBeginChildEx"][1]["cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["defaults"] = {} defs["igBeginChildEx"][1]["funcname"] = "BeginChildEx" -defs["igBeginChildEx"][1]["location"] = "imgui_internal:3060" +defs["igBeginChildEx"][1]["location"] = "imgui_internal:3118" defs["igBeginChildEx"][1]["namespace"] = "ImGui" defs["igBeginChildEx"][1]["ov_cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["ret"] = "bool" @@ -11221,7 +11275,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:3221" +defs["igBeginColumns"][1]["location"] = "imgui_internal:3283" defs["igBeginColumns"][1]["namespace"] = "ImGui" defs["igBeginColumns"][1]["ov_cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["ret"] = "void" @@ -11247,7 +11301,7 @@ defs["igBeginCombo"][1]["cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" -defs["igBeginCombo"][1]["location"] = "imgui:544" +defs["igBeginCombo"][1]["location"] = "imgui:546" defs["igBeginCombo"][1]["namespace"] = "ImGui" defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" @@ -11272,7 +11326,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:3082" +defs["igBeginComboPopup"][1]["location"] = "imgui_internal:3140" defs["igBeginComboPopup"][1]["namespace"] = "ImGui" defs["igBeginComboPopup"][1]["ov_cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["ret"] = "bool" @@ -11288,7 +11342,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:3083" +defs["igBeginComboPreview"][1]["location"] = "imgui_internal:3141" defs["igBeginComboPreview"][1]["namespace"] = "ImGui" defs["igBeginComboPreview"][1]["ov_cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["ret"] = "bool" @@ -11308,7 +11362,7 @@ defs["igBeginDisabled"][1]["cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["defaults"] = {} defs["igBeginDisabled"][1]["defaults"]["disabled"] = "true" defs["igBeginDisabled"][1]["funcname"] = "BeginDisabled" -defs["igBeginDisabled"][1]["location"] = "imgui:850" +defs["igBeginDisabled"][1]["location"] = "imgui:852" defs["igBeginDisabled"][1]["namespace"] = "ImGui" defs["igBeginDisabled"][1]["ov_cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["ret"] = "void" @@ -11328,7 +11382,7 @@ defs["igBeginDragDropSource"][1]["cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" -defs["igBeginDragDropSource"][1]["location"] = "imgui:838" +defs["igBeginDragDropSource"][1]["location"] = "imgui:840" defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -11344,7 +11398,7 @@ defs["igBeginDragDropTarget"][1]["call_args"] = "()" defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" -defs["igBeginDragDropTarget"][1]["location"] = "imgui:841" +defs["igBeginDragDropTarget"][1]["location"] = "imgui:843" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -11366,7 +11420,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:3208" +defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:3270" defs["igBeginDragDropTargetCustom"][1]["namespace"] = "ImGui" defs["igBeginDragDropTargetCustom"][1]["ov_cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["ret"] = "bool" @@ -11382,7 +11436,7 @@ defs["igBeginGroup"][1]["call_args"] = "()" defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" -defs["igBeginGroup"][1]["location"] = "imgui:475" +defs["igBeginGroup"][1]["location"] = "imgui:477" defs["igBeginGroup"][1]["namespace"] = "ImGui" defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" @@ -11398,7 +11452,7 @@ defs["igBeginItemTooltip"][1]["call_args"] = "()" defs["igBeginItemTooltip"][1]["cimguiname"] = "igBeginItemTooltip" defs["igBeginItemTooltip"][1]["defaults"] = {} defs["igBeginItemTooltip"][1]["funcname"] = "BeginItemTooltip" -defs["igBeginItemTooltip"][1]["location"] = "imgui:701" +defs["igBeginItemTooltip"][1]["location"] = "imgui:703" defs["igBeginItemTooltip"][1]["namespace"] = "ImGui" defs["igBeginItemTooltip"][1]["ov_cimguiname"] = "igBeginItemTooltip" defs["igBeginItemTooltip"][1]["ret"] = "bool" @@ -11421,7 +11475,7 @@ defs["igBeginListBox"][1]["cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["defaults"] = {} defs["igBeginListBox"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginListBox"][1]["funcname"] = "BeginListBox" -defs["igBeginListBox"][1]["location"] = "imgui:656" +defs["igBeginListBox"][1]["location"] = "imgui:658" defs["igBeginListBox"][1]["namespace"] = "ImGui" defs["igBeginListBox"][1]["ov_cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["ret"] = "bool" @@ -11437,7 +11491,7 @@ defs["igBeginMainMenuBar"][1]["call_args"] = "()" defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" -defs["igBeginMainMenuBar"][1]["location"] = "imgui:682" +defs["igBeginMainMenuBar"][1]["location"] = "imgui:684" defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" @@ -11460,7 +11514,7 @@ defs["igBeginMenu"][1]["cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" -defs["igBeginMenu"][1]["location"] = "imgui:684" +defs["igBeginMenu"][1]["location"] = "imgui:686" defs["igBeginMenu"][1]["namespace"] = "ImGui" defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" @@ -11476,7 +11530,7 @@ defs["igBeginMenuBar"][1]["call_args"] = "()" defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" -defs["igBeginMenuBar"][1]["location"] = "imgui:680" +defs["igBeginMenuBar"][1]["location"] = "imgui:682" defs["igBeginMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" @@ -11502,7 +11556,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:3078" +defs["igBeginMenuEx"][1]["location"] = "imgui_internal:3136" defs["igBeginMenuEx"][1]["namespace"] = "ImGui" defs["igBeginMenuEx"][1]["ov_cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["ret"] = "bool" @@ -11525,7 +11579,7 @@ defs["igBeginPopup"][1]["cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" -defs["igBeginPopup"][1]["location"] = "imgui:715" +defs["igBeginPopup"][1]["location"] = "imgui:717" defs["igBeginPopup"][1]["namespace"] = "ImGui" defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" @@ -11549,7 +11603,7 @@ defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" -defs["igBeginPopupContextItem"][1]["location"] = "imgui:737" +defs["igBeginPopupContextItem"][1]["location"] = "imgui:739" defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" @@ -11573,7 +11627,7 @@ defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" -defs["igBeginPopupContextVoid"][1]["location"] = "imgui:739" +defs["igBeginPopupContextVoid"][1]["location"] = "imgui:741" defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" @@ -11597,7 +11651,7 @@ defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" -defs["igBeginPopupContextWindow"][1]["location"] = "imgui:738" +defs["igBeginPopupContextWindow"][1]["location"] = "imgui:740" defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" @@ -11619,7 +11673,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:3066" +defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3124" defs["igBeginPopupEx"][1]["namespace"] = "ImGui" defs["igBeginPopupEx"][1]["ov_cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["ret"] = "bool" @@ -11646,7 +11700,7 @@ defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "NULL" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" -defs["igBeginPopupModal"][1]["location"] = "imgui:716" +defs["igBeginPopupModal"][1]["location"] = "imgui:718" defs["igBeginPopupModal"][1]["namespace"] = "ImGui" defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" @@ -11669,7 +11723,7 @@ defs["igBeginTabBar"][1]["cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" -defs["igBeginTabBar"][1]["location"] = "imgui:816" +defs["igBeginTabBar"][1]["location"] = "imgui:818" defs["igBeginTabBar"][1]["namespace"] = "ImGui" defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" @@ -11694,7 +11748,7 @@ defs["igBeginTabBarEx"][1]["call_args"] = "(tab_bar,bb,flags)" defs["igBeginTabBarEx"][1]["cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["defaults"] = {} defs["igBeginTabBarEx"][1]["funcname"] = "BeginTabBarEx" -defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3290" +defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3352" defs["igBeginTabBarEx"][1]["namespace"] = "ImGui" defs["igBeginTabBarEx"][1]["ov_cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["ret"] = "bool" @@ -11721,7 +11775,7 @@ defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" defs["igBeginTabItem"][1]["defaults"]["p_open"] = "NULL" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" -defs["igBeginTabItem"][1]["location"] = "imgui:818" +defs["igBeginTabItem"][1]["location"] = "imgui:820" defs["igBeginTabItem"][1]["namespace"] = "ImGui" defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" @@ -11755,7 +11809,7 @@ defs["igBeginTable"][1]["defaults"]["flags"] = "0" defs["igBeginTable"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTable"][1]["defaults"]["outer_size"] = "ImVec2(0.0f,0.0f)" defs["igBeginTable"][1]["funcname"] = "BeginTable" -defs["igBeginTable"][1]["location"] = "imgui:768" +defs["igBeginTable"][1]["location"] = "imgui:770" defs["igBeginTable"][1]["namespace"] = "ImGui" defs["igBeginTable"][1]["ov_cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["ret"] = "bool" @@ -11792,7 +11846,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:3246" +defs["igBeginTableEx"][1]["location"] = "imgui_internal:3308" defs["igBeginTableEx"][1]["namespace"] = "ImGui" defs["igBeginTableEx"][1]["ov_cimguiname"] = "igBeginTableEx" defs["igBeginTableEx"][1]["ret"] = "bool" @@ -11808,7 +11862,7 @@ defs["igBeginTooltip"][1]["call_args"] = "()" defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" -defs["igBeginTooltip"][1]["location"] = "imgui:692" +defs["igBeginTooltip"][1]["location"] = "imgui:694" defs["igBeginTooltip"][1]["namespace"] = "ImGui" defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["ret"] = "bool" @@ -11830,7 +11884,7 @@ defs["igBeginTooltipEx"][1]["call_args"] = "(tooltip_flags,extra_window_flags)" defs["igBeginTooltipEx"][1]["cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["defaults"] = {} defs["igBeginTooltipEx"][1]["funcname"] = "BeginTooltipEx" -defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3067" +defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3125" defs["igBeginTooltipEx"][1]["namespace"] = "ImGui" defs["igBeginTooltipEx"][1]["ov_cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["ret"] = "bool" @@ -11846,7 +11900,7 @@ defs["igBeginTooltipHidden"][1]["call_args"] = "()" defs["igBeginTooltipHidden"][1]["cimguiname"] = "igBeginTooltipHidden" defs["igBeginTooltipHidden"][1]["defaults"] = {} defs["igBeginTooltipHidden"][1]["funcname"] = "BeginTooltipHidden" -defs["igBeginTooltipHidden"][1]["location"] = "imgui_internal:3068" +defs["igBeginTooltipHidden"][1]["location"] = "imgui_internal:3126" defs["igBeginTooltipHidden"][1]["namespace"] = "ImGui" defs["igBeginTooltipHidden"][1]["ov_cimguiname"] = "igBeginTooltipHidden" defs["igBeginTooltipHidden"][1]["ret"] = "bool" @@ -11877,7 +11931,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:3077" +defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:3135" defs["igBeginViewportSideBar"][1]["namespace"] = "ImGui" defs["igBeginViewportSideBar"][1]["ov_cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["ret"] = "bool" @@ -11896,7 +11950,7 @@ defs["igBringWindowToDisplayBack"][1]["call_args"] = "(window)" defs["igBringWindowToDisplayBack"][1]["cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["defaults"] = {} defs["igBringWindowToDisplayBack"][1]["funcname"] = "BringWindowToDisplayBack" -defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:2953" +defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:3011" defs["igBringWindowToDisplayBack"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBack"][1]["ov_cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["ret"] = "void" @@ -11918,7 +11972,7 @@ defs["igBringWindowToDisplayBehind"][1]["call_args"] = "(window,above_window)" defs["igBringWindowToDisplayBehind"][1]["cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["defaults"] = {} defs["igBringWindowToDisplayBehind"][1]["funcname"] = "BringWindowToDisplayBehind" -defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:2954" +defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:3012" defs["igBringWindowToDisplayBehind"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBehind"][1]["ov_cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["ret"] = "void" @@ -11937,7 +11991,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:2952" +defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:3010" defs["igBringWindowToDisplayFront"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayFront"][1]["ov_cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["ret"] = "void" @@ -11956,7 +12010,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:2951" +defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:3009" defs["igBringWindowToFocusFront"][1]["namespace"] = "ImGui" defs["igBringWindowToFocusFront"][1]["ov_cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["ret"] = "void" @@ -11972,7 +12026,7 @@ defs["igBullet"][1]["call_args"] = "()" defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" -defs["igBullet"][1]["location"] = "imgui:532" +defs["igBullet"][1]["location"] = "imgui:534" defs["igBullet"][1]["namespace"] = "ImGui" defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" @@ -11995,7 +12049,7 @@ defs["igBulletText"][1]["cimguiname"] = "igBulletText" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" -defs["igBulletText"][1]["location"] = "imgui:515" +defs["igBulletText"][1]["location"] = "imgui:517" defs["igBulletText"][1]["namespace"] = "ImGui" defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" @@ -12017,7 +12071,7 @@ defs["igBulletTextV"][1]["call_args"] = "(fmt,args)" defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" -defs["igBulletTextV"][1]["location"] = "imgui:516" +defs["igBulletTextV"][1]["location"] = "imgui:518" defs["igBulletTextV"][1]["namespace"] = "ImGui" defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" @@ -12040,7 +12094,7 @@ defs["igButton"][1]["cimguiname"] = "igButton" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" -defs["igButton"][1]["location"] = "imgui:522" +defs["igButton"][1]["location"] = "imgui:524" defs["igButton"][1]["namespace"] = "ImGui" defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" @@ -12072,7 +12126,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:3352" +defs["igButtonBehavior"][1]["location"] = "imgui_internal:3414" defs["igButtonBehavior"][1]["namespace"] = "ImGui" defs["igButtonBehavior"][1]["ov_cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["ret"] = "bool" @@ -12099,7 +12153,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:3333" +defs["igButtonEx"][1]["location"] = "imgui_internal:3395" defs["igButtonEx"][1]["namespace"] = "ImGui" defs["igButtonEx"][1]["ov_cimguiname"] = "igButtonEx" defs["igButtonEx"][1]["ret"] = "bool" @@ -12127,7 +12181,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:3041" +defs["igCalcItemSize"][1]["location"] = "imgui_internal:3099" defs["igCalcItemSize"][1]["namespace"] = "ImGui" defs["igCalcItemSize"][1]["nonUDT"] = 1 defs["igCalcItemSize"][1]["ov_cimguiname"] = "igCalcItemSize" @@ -12144,7 +12198,7 @@ defs["igCalcItemWidth"][1]["call_args"] = "()" defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" -defs["igCalcItemWidth"][1]["location"] = "imgui:435" +defs["igCalcItemWidth"][1]["location"] = "imgui:437" defs["igCalcItemWidth"][1]["namespace"] = "ImGui" defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" @@ -12178,7 +12232,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:908" +defs["igCalcTextSize"][1]["location"] = "imgui:910" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -12207,7 +12261,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:3137" +defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:3198" defs["igCalcTypematicRepeatAmount"][1]["namespace"] = "ImGui" defs["igCalcTypematicRepeatAmount"][1]["ov_cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["ret"] = "int" @@ -12229,7 +12283,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:2934" +defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:2991" defs["igCalcWindowNextAutoFitSize"][1]["namespace"] = "ImGui" defs["igCalcWindowNextAutoFitSize"][1]["nonUDT"] = 1 defs["igCalcWindowNextAutoFitSize"][1]["ov_cimguiname"] = "igCalcWindowNextAutoFitSize" @@ -12252,7 +12306,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:3042" +defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:3100" defs["igCalcWrapWidthForPos"][1]["namespace"] = "ImGui" defs["igCalcWrapWidthForPos"][1]["ov_cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["ret"] = "float" @@ -12274,7 +12328,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:2980" +defs["igCallContextHooks"][1]["location"] = "imgui_internal:3038" defs["igCallContextHooks"][1]["namespace"] = "ImGui" defs["igCallContextHooks"][1]["ov_cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["ret"] = "void" @@ -12296,7 +12350,7 @@ defs["igCheckbox"][1]["call_args"] = "(label,v)" defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" -defs["igCheckbox"][1]["location"] = "imgui:526" +defs["igCheckbox"][1]["location"] = "imgui:528" defs["igCheckbox"][1]["namespace"] = "ImGui" defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" @@ -12321,7 +12375,7 @@ defs["igCheckboxFlags"][1]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][1]["location"] = "imgui:527" +defs["igCheckboxFlags"][1]["location"] = "imgui:529" defs["igCheckboxFlags"][1]["namespace"] = "ImGui" defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags_IntPtr" defs["igCheckboxFlags"][1]["ret"] = "bool" @@ -12344,7 +12398,7 @@ defs["igCheckboxFlags"][2]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][2]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][2]["defaults"] = {} defs["igCheckboxFlags"][2]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][2]["location"] = "imgui:528" +defs["igCheckboxFlags"][2]["location"] = "imgui:530" defs["igCheckboxFlags"][2]["namespace"] = "ImGui" defs["igCheckboxFlags"][2]["ov_cimguiname"] = "igCheckboxFlags_UintPtr" defs["igCheckboxFlags"][2]["ret"] = "bool" @@ -12367,7 +12421,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:3338" +defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3400" defs["igCheckboxFlags"][3]["namespace"] = "ImGui" defs["igCheckboxFlags"][3]["ov_cimguiname"] = "igCheckboxFlags_S64Ptr" defs["igCheckboxFlags"][3]["ret"] = "bool" @@ -12390,7 +12444,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:3339" +defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3401" defs["igCheckboxFlags"][4]["namespace"] = "ImGui" defs["igCheckboxFlags"][4]["ov_cimguiname"] = "igCheckboxFlags_U64Ptr" defs["igCheckboxFlags"][4]["ret"] = "bool" @@ -12409,7 +12463,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:3024" +defs["igClearActiveID"][1]["location"] = "imgui_internal:3082" defs["igClearActiveID"][1]["namespace"] = "ImGui" defs["igClearActiveID"][1]["ov_cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["ret"] = "void" @@ -12425,7 +12479,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:3209" +defs["igClearDragDrop"][1]["location"] = "imgui_internal:3271" defs["igClearDragDrop"][1]["namespace"] = "ImGui" defs["igClearDragDrop"][1]["ov_cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["ret"] = "void" @@ -12441,7 +12495,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:2988" +defs["igClearIniSettings"][1]["location"] = "imgui_internal:3046" defs["igClearIniSettings"][1]["namespace"] = "ImGui" defs["igClearIniSettings"][1]["ov_cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["ret"] = "void" @@ -12460,7 +12514,7 @@ defs["igClearWindowSettings"][1]["call_args"] = "(name)" defs["igClearWindowSettings"][1]["cimguiname"] = "igClearWindowSettings" defs["igClearWindowSettings"][1]["defaults"] = {} defs["igClearWindowSettings"][1]["funcname"] = "ClearWindowSettings" -defs["igClearWindowSettings"][1]["location"] = "imgui_internal:2997" +defs["igClearWindowSettings"][1]["location"] = "imgui_internal:3055" defs["igClearWindowSettings"][1]["namespace"] = "ImGui" defs["igClearWindowSettings"][1]["ov_cimguiname"] = "igClearWindowSettings" defs["igClearWindowSettings"][1]["ret"] = "void" @@ -12482,7 +12536,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:3342" +defs["igCloseButton"][1]["location"] = "imgui_internal:3404" defs["igCloseButton"][1]["namespace"] = "ImGui" defs["igCloseButton"][1]["ov_cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["ret"] = "bool" @@ -12498,7 +12552,7 @@ defs["igCloseCurrentPopup"][1]["call_args"] = "()" defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" -defs["igCloseCurrentPopup"][1]["location"] = "imgui:730" +defs["igCloseCurrentPopup"][1]["location"] = "imgui:732" defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" @@ -12520,7 +12574,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:3062" +defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:3120" defs["igClosePopupToLevel"][1]["namespace"] = "ImGui" defs["igClosePopupToLevel"][1]["ov_cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["ret"] = "void" @@ -12536,7 +12590,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:3064" +defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:3122" defs["igClosePopupsExceptModals"][1]["namespace"] = "ImGui" defs["igClosePopupsExceptModals"][1]["ov_cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["ret"] = "void" @@ -12558,7 +12612,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:3063" +defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:3121" defs["igClosePopupsOverWindow"][1]["namespace"] = "ImGui" defs["igClosePopupsOverWindow"][1]["ov_cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["ret"] = "void" @@ -12580,7 +12634,7 @@ defs["igCollapseButton"][1]["call_args"] = "(id,pos)" defs["igCollapseButton"][1]["cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["defaults"] = {} defs["igCollapseButton"][1]["funcname"] = "CollapseButton" -defs["igCollapseButton"][1]["location"] = "imgui_internal:3343" +defs["igCollapseButton"][1]["location"] = "imgui_internal:3405" defs["igCollapseButton"][1]["namespace"] = "ImGui" defs["igCollapseButton"][1]["ov_cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["ret"] = "bool" @@ -12603,7 +12657,7 @@ defs["igCollapsingHeader"][1]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][1]["location"] = "imgui:640" +defs["igCollapsingHeader"][1]["location"] = "imgui:642" defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeader_TreeNodeFlags" defs["igCollapsingHeader"][1]["ret"] = "bool" @@ -12627,7 +12681,7 @@ defs["igCollapsingHeader"][2]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][2]["location"] = "imgui:641" +defs["igCollapsingHeader"][2]["location"] = "imgui:643" defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeader_BoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" @@ -12658,7 +12712,7 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" -defs["igColorButton"][1]["location"] = "imgui:621" +defs["igColorButton"][1]["location"] = "imgui:623" defs["igColorButton"][1]["namespace"] = "ImGui" defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" @@ -12677,7 +12731,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:912" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:914" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -12714,7 +12768,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:914" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:916" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -12751,7 +12805,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:913" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:915" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -12773,7 +12827,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:911" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:913" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -12800,7 +12854,7 @@ defs["igColorEdit3"][1]["cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" -defs["igColorEdit3"][1]["location"] = "imgui:617" +defs["igColorEdit3"][1]["location"] = "imgui:619" defs["igColorEdit3"][1]["namespace"] = "ImGui" defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" @@ -12826,7 +12880,7 @@ defs["igColorEdit4"][1]["cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" -defs["igColorEdit4"][1]["location"] = "imgui:618" +defs["igColorEdit4"][1]["location"] = "imgui:620" defs["igColorEdit4"][1]["namespace"] = "ImGui" defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" @@ -12848,7 +12902,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:3390" +defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3452" defs["igColorEditOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorEditOptionsPopup"][1]["ov_cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["ret"] = "void" @@ -12874,7 +12928,7 @@ defs["igColorPicker3"][1]["cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" -defs["igColorPicker3"][1]["location"] = "imgui:619" +defs["igColorPicker3"][1]["location"] = "imgui:621" defs["igColorPicker3"][1]["namespace"] = "ImGui" defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" @@ -12904,7 +12958,7 @@ defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" defs["igColorPicker4"][1]["defaults"]["ref_col"] = "NULL" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" -defs["igColorPicker4"][1]["location"] = "imgui:620" +defs["igColorPicker4"][1]["location"] = "imgui:622" defs["igColorPicker4"][1]["namespace"] = "ImGui" defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" @@ -12926,7 +12980,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:3391" +defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3453" defs["igColorPickerOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorPickerOptionsPopup"][1]["ov_cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["ret"] = "void" @@ -12951,7 +13005,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:3389" +defs["igColorTooltip"][1]["location"] = "imgui_internal:3451" defs["igColorTooltip"][1]["namespace"] = "ImGui" defs["igColorTooltip"][1]["ov_cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["ret"] = "void" @@ -12979,7 +13033,7 @@ defs["igColumns"][1]["defaults"]["border"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" defs["igColumns"][1]["defaults"]["id"] = "NULL" defs["igColumns"][1]["funcname"] = "Columns" -defs["igColumns"][1]["location"] = "imgui:805" +defs["igColumns"][1]["location"] = "imgui:807" defs["igColumns"][1]["namespace"] = "ImGui" defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" @@ -13011,7 +13065,7 @@ defs["igCombo"][1]["cimguiname"] = "igCombo" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" -defs["igCombo"][1]["location"] = "imgui:546" +defs["igCombo"][1]["location"] = "imgui:548" defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igCombo_Str_arr" defs["igCombo"][1]["ret"] = "bool" @@ -13038,7 +13092,7 @@ defs["igCombo"][2]["cimguiname"] = "igCombo" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" -defs["igCombo"][2]["location"] = "imgui:547" +defs["igCombo"][2]["location"] = "imgui:549" defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igCombo_Str" defs["igCombo"][2]["ret"] = "bool" @@ -13073,7 +13127,7 @@ defs["igCombo"][3]["cimguiname"] = "igCombo" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" -defs["igCombo"][3]["location"] = "imgui:548" +defs["igCombo"][3]["location"] = "imgui:550" defs["igCombo"][3]["namespace"] = "ImGui" defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnStrPtr" defs["igCombo"][3]["ret"] = "bool" @@ -13082,25 +13136,6 @@ defs["igCombo"][3]["stname"] = "" defs["igCombo"]["(const char*,int*,const char* const[],int,int)"] = defs["igCombo"][1] defs["igCombo"]["(const char*,int*,const char*(*)(void*,int),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char*,int)"] = defs["igCombo"][2] -defs["igConvertShortcutMod"] = {} -defs["igConvertShortcutMod"][1] = {} -defs["igConvertShortcutMod"][1]["args"] = "(ImGuiKeyChord key_chord)" -defs["igConvertShortcutMod"][1]["argsT"] = {} -defs["igConvertShortcutMod"][1]["argsT"][1] = {} -defs["igConvertShortcutMod"][1]["argsT"][1]["name"] = "key_chord" -defs["igConvertShortcutMod"][1]["argsT"][1]["type"] = "ImGuiKeyChord" -defs["igConvertShortcutMod"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" -defs["igConvertShortcutMod"][1]["call_args"] = "(key_chord)" -defs["igConvertShortcutMod"][1]["cimguiname"] = "igConvertShortcutMod" -defs["igConvertShortcutMod"][1]["defaults"] = {} -defs["igConvertShortcutMod"][1]["funcname"] = "ConvertShortcutMod" -defs["igConvertShortcutMod"][1]["location"] = "imgui_internal:3118" -defs["igConvertShortcutMod"][1]["namespace"] = "ImGui" -defs["igConvertShortcutMod"][1]["ov_cimguiname"] = "igConvertShortcutMod" -defs["igConvertShortcutMod"][1]["ret"] = "ImGuiKeyChord" -defs["igConvertShortcutMod"][1]["signature"] = "(ImGuiKeyChord)" -defs["igConvertShortcutMod"][1]["stname"] = "" -defs["igConvertShortcutMod"]["(ImGuiKeyChord)"] = defs["igConvertShortcutMod"][1] defs["igConvertSingleModFlagToKey"] = {} defs["igConvertSingleModFlagToKey"][1] = {} defs["igConvertSingleModFlagToKey"][1]["args"] = "(ImGuiContext* ctx,ImGuiKey key)" @@ -13116,7 +13151,7 @@ defs["igConvertSingleModFlagToKey"][1]["call_args"] = "(ctx,key)" defs["igConvertSingleModFlagToKey"][1]["cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["defaults"] = {} defs["igConvertSingleModFlagToKey"][1]["funcname"] = "ConvertSingleModFlagToKey" -defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3119" +defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3180" defs["igConvertSingleModFlagToKey"][1]["namespace"] = "ImGui" defs["igConvertSingleModFlagToKey"][1]["ov_cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["ret"] = "ImGuiKey" @@ -13136,7 +13171,7 @@ defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["defaults"] = {} defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "NULL" defs["igCreateContext"][1]["funcname"] = "CreateContext" -defs["igCreateContext"][1]["location"] = "imgui:296" +defs["igCreateContext"][1]["location"] = "imgui:298" defs["igCreateContext"][1]["namespace"] = "ImGui" defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" @@ -13155,7 +13190,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:2994" +defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:3052" defs["igCreateNewWindowSettings"][1]["namespace"] = "ImGui" defs["igCreateNewWindowSettings"][1]["ov_cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -13183,7 +13218,7 @@ defs["igDataTypeApplyFromText"][1]["call_args"] = "(buf,data_type,p_data,format) defs["igDataTypeApplyFromText"][1]["cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["defaults"] = {} defs["igDataTypeApplyFromText"][1]["funcname"] = "DataTypeApplyFromText" -defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3376" +defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3438" defs["igDataTypeApplyFromText"][1]["namespace"] = "ImGui" defs["igDataTypeApplyFromText"][1]["ov_cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["ret"] = "bool" @@ -13214,7 +13249,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:3375" +defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3437" defs["igDataTypeApplyOp"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOp"][1]["ov_cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["ret"] = "void" @@ -13242,7 +13277,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:3378" +defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3440" defs["igDataTypeClamp"][1]["namespace"] = "ImGui" defs["igDataTypeClamp"][1]["ov_cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["ret"] = "bool" @@ -13267,7 +13302,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:3377" +defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3439" defs["igDataTypeCompare"][1]["namespace"] = "ImGui" defs["igDataTypeCompare"][1]["ov_cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["ret"] = "int" @@ -13298,7 +13333,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:3374" +defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3436" defs["igDataTypeFormatString"][1]["namespace"] = "ImGui" defs["igDataTypeFormatString"][1]["ov_cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["ret"] = "int" @@ -13317,7 +13352,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:3373" +defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3435" defs["igDataTypeGetInfo"][1]["namespace"] = "ImGui" defs["igDataTypeGetInfo"][1]["ov_cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["ret"] = "const ImGuiDataTypeInfo*" @@ -13345,7 +13380,7 @@ defs["igDebugAllocHook"][1]["call_args"] = "(info,frame_count,ptr,size)" defs["igDebugAllocHook"][1]["cimguiname"] = "igDebugAllocHook" defs["igDebugAllocHook"][1]["defaults"] = {} defs["igDebugAllocHook"][1]["funcname"] = "DebugAllocHook" -defs["igDebugAllocHook"][1]["location"] = "imgui_internal:3409" +defs["igDebugAllocHook"][1]["location"] = "imgui_internal:3471" defs["igDebugAllocHook"][1]["namespace"] = "ImGui" defs["igDebugAllocHook"][1]["ov_cimguiname"] = "igDebugAllocHook" defs["igDebugAllocHook"][1]["ret"] = "void" @@ -13367,7 +13402,7 @@ defs["igDebugBreakButton"][1]["call_args"] = "(label,description_of_location)" defs["igDebugBreakButton"][1]["cimguiname"] = "igDebugBreakButton" defs["igDebugBreakButton"][1]["defaults"] = {} defs["igDebugBreakButton"][1]["funcname"] = "DebugBreakButton" -defs["igDebugBreakButton"][1]["location"] = "imgui_internal:3422" +defs["igDebugBreakButton"][1]["location"] = "imgui_internal:3484" defs["igDebugBreakButton"][1]["namespace"] = "ImGui" defs["igDebugBreakButton"][1]["ov_cimguiname"] = "igDebugBreakButton" defs["igDebugBreakButton"][1]["ret"] = "bool" @@ -13389,7 +13424,7 @@ defs["igDebugBreakButtonTooltip"][1]["call_args"] = "(keyboard_only,description_ defs["igDebugBreakButtonTooltip"][1]["cimguiname"] = "igDebugBreakButtonTooltip" defs["igDebugBreakButtonTooltip"][1]["defaults"] = {} defs["igDebugBreakButtonTooltip"][1]["funcname"] = "DebugBreakButtonTooltip" -defs["igDebugBreakButtonTooltip"][1]["location"] = "imgui_internal:3423" +defs["igDebugBreakButtonTooltip"][1]["location"] = "imgui_internal:3485" defs["igDebugBreakButtonTooltip"][1]["namespace"] = "ImGui" defs["igDebugBreakButtonTooltip"][1]["ov_cimguiname"] = "igDebugBreakButtonTooltip" defs["igDebugBreakButtonTooltip"][1]["ret"] = "void" @@ -13405,7 +13440,7 @@ defs["igDebugBreakClearData"][1]["call_args"] = "()" defs["igDebugBreakClearData"][1]["cimguiname"] = "igDebugBreakClearData" defs["igDebugBreakClearData"][1]["defaults"] = {} defs["igDebugBreakClearData"][1]["funcname"] = "DebugBreakClearData" -defs["igDebugBreakClearData"][1]["location"] = "imgui_internal:3421" +defs["igDebugBreakClearData"][1]["location"] = "imgui_internal:3483" defs["igDebugBreakClearData"][1]["namespace"] = "ImGui" defs["igDebugBreakClearData"][1]["ov_cimguiname"] = "igDebugBreakClearData" defs["igDebugBreakClearData"][1]["ret"] = "void" @@ -13442,7 +13477,7 @@ defs["igDebugCheckVersionAndDataLayout"][1]["call_args"] = "(version_str,sz_io,s defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" -defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:968" +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:970" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" @@ -13462,7 +13497,7 @@ defs["igDebugDrawCursorPos"][1]["cimguiname"] = "igDebugDrawCursorPos" defs["igDebugDrawCursorPos"][1]["defaults"] = {} defs["igDebugDrawCursorPos"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawCursorPos"][1]["funcname"] = "DebugDrawCursorPos" -defs["igDebugDrawCursorPos"][1]["location"] = "imgui_internal:3415" +defs["igDebugDrawCursorPos"][1]["location"] = "imgui_internal:3477" defs["igDebugDrawCursorPos"][1]["namespace"] = "ImGui" defs["igDebugDrawCursorPos"][1]["ov_cimguiname"] = "igDebugDrawCursorPos" defs["igDebugDrawCursorPos"][1]["ret"] = "void" @@ -13482,7 +13517,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:3417" +defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3479" defs["igDebugDrawItemRect"][1]["namespace"] = "ImGui" defs["igDebugDrawItemRect"][1]["ov_cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["ret"] = "void" @@ -13502,7 +13537,7 @@ defs["igDebugDrawLineExtents"][1]["cimguiname"] = "igDebugDrawLineExtents" defs["igDebugDrawLineExtents"][1]["defaults"] = {} defs["igDebugDrawLineExtents"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawLineExtents"][1]["funcname"] = "DebugDrawLineExtents" -defs["igDebugDrawLineExtents"][1]["location"] = "imgui_internal:3416" +defs["igDebugDrawLineExtents"][1]["location"] = "imgui_internal:3478" defs["igDebugDrawLineExtents"][1]["namespace"] = "ImGui" defs["igDebugDrawLineExtents"][1]["ov_cimguiname"] = "igDebugDrawLineExtents" defs["igDebugDrawLineExtents"][1]["ret"] = "void" @@ -13521,7 +13556,7 @@ defs["igDebugFlashStyleColor"][1]["call_args"] = "(idx)" defs["igDebugFlashStyleColor"][1]["cimguiname"] = "igDebugFlashStyleColor" defs["igDebugFlashStyleColor"][1]["defaults"] = {} defs["igDebugFlashStyleColor"][1]["funcname"] = "DebugFlashStyleColor" -defs["igDebugFlashStyleColor"][1]["location"] = "imgui:967" +defs["igDebugFlashStyleColor"][1]["location"] = "imgui:969" defs["igDebugFlashStyleColor"][1]["namespace"] = "ImGui" defs["igDebugFlashStyleColor"][1]["ov_cimguiname"] = "igDebugFlashStyleColor" defs["igDebugFlashStyleColor"][1]["ret"] = "void" @@ -13549,7 +13584,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:3426" +defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3488" defs["igDebugHookIdInfo"][1]["namespace"] = "ImGui" defs["igDebugHookIdInfo"][1]["ov_cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["ret"] = "void" @@ -13568,7 +13603,7 @@ defs["igDebugLocateItem"][1]["call_args"] = "(target_id)" defs["igDebugLocateItem"][1]["cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["defaults"] = {} defs["igDebugLocateItem"][1]["funcname"] = "DebugLocateItem" -defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3418" +defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3480" defs["igDebugLocateItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItem"][1]["ov_cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["ret"] = "void" @@ -13587,7 +13622,7 @@ defs["igDebugLocateItemOnHover"][1]["call_args"] = "(target_id)" defs["igDebugLocateItemOnHover"][1]["cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["defaults"] = {} defs["igDebugLocateItemOnHover"][1]["funcname"] = "DebugLocateItemOnHover" -defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3419" +defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3481" defs["igDebugLocateItemOnHover"][1]["namespace"] = "ImGui" defs["igDebugLocateItemOnHover"][1]["ov_cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["ret"] = "void" @@ -13603,7 +13638,7 @@ defs["igDebugLocateItemResolveWithLastItem"][1]["call_args"] = "()" defs["igDebugLocateItemResolveWithLastItem"][1]["cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["defaults"] = {} defs["igDebugLocateItemResolveWithLastItem"][1]["funcname"] = "DebugLocateItemResolveWithLastItem" -defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3420" +defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3482" defs["igDebugLocateItemResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItemResolveWithLastItem"][1]["ov_cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["ret"] = "void" @@ -13626,7 +13661,7 @@ defs["igDebugLog"][1]["cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["defaults"] = {} defs["igDebugLog"][1]["funcname"] = "DebugLog" defs["igDebugLog"][1]["isvararg"] = "...)" -defs["igDebugLog"][1]["location"] = "imgui_internal:3407" +defs["igDebugLog"][1]["location"] = "imgui_internal:3469" defs["igDebugLog"][1]["namespace"] = "ImGui" defs["igDebugLog"][1]["ov_cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["ret"] = "void" @@ -13648,7 +13683,7 @@ defs["igDebugLogV"][1]["call_args"] = "(fmt,args)" defs["igDebugLogV"][1]["cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["defaults"] = {} defs["igDebugLogV"][1]["funcname"] = "DebugLogV" -defs["igDebugLogV"][1]["location"] = "imgui_internal:3408" +defs["igDebugLogV"][1]["location"] = "imgui_internal:3470" defs["igDebugLogV"][1]["namespace"] = "ImGui" defs["igDebugLogV"][1]["ov_cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["ret"] = "void" @@ -13667,7 +13702,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:3427" +defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3489" defs["igDebugNodeColumns"][1]["namespace"] = "ImGui" defs["igDebugNodeColumns"][1]["ov_cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["ret"] = "void" @@ -13698,7 +13733,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:3429" +defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3491" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ov_cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ret"] = "void" @@ -13726,7 +13761,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:3428" +defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3490" defs["igDebugNodeDrawList"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawList"][1]["ov_cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["ret"] = "void" @@ -13745,7 +13780,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:3430" +defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3492" defs["igDebugNodeFont"][1]["namespace"] = "ImGui" defs["igDebugNodeFont"][1]["ov_cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["ret"] = "void" @@ -13767,7 +13802,7 @@ defs["igDebugNodeFontGlyph"][1]["call_args"] = "(font,glyph)" defs["igDebugNodeFontGlyph"][1]["cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["defaults"] = {} defs["igDebugNodeFontGlyph"][1]["funcname"] = "DebugNodeFontGlyph" -defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3431" +defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3493" defs["igDebugNodeFontGlyph"][1]["namespace"] = "ImGui" defs["igDebugNodeFontGlyph"][1]["ov_cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["ret"] = "void" @@ -13786,7 +13821,7 @@ defs["igDebugNodeInputTextState"][1]["call_args"] = "(state)" defs["igDebugNodeInputTextState"][1]["cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["defaults"] = {} defs["igDebugNodeInputTextState"][1]["funcname"] = "DebugNodeInputTextState" -defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3436" +defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3498" defs["igDebugNodeInputTextState"][1]["namespace"] = "ImGui" defs["igDebugNodeInputTextState"][1]["ov_cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["ret"] = "void" @@ -13808,7 +13843,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:3432" +defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3494" defs["igDebugNodeStorage"][1]["namespace"] = "ImGui" defs["igDebugNodeStorage"][1]["ov_cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["ret"] = "void" @@ -13830,7 +13865,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:3433" +defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3495" defs["igDebugNodeTabBar"][1]["namespace"] = "ImGui" defs["igDebugNodeTabBar"][1]["ov_cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["ret"] = "void" @@ -13849,7 +13884,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:3434" +defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3496" defs["igDebugNodeTable"][1]["namespace"] = "ImGui" defs["igDebugNodeTable"][1]["ov_cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["ret"] = "void" @@ -13868,7 +13903,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:3435" +defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3497" defs["igDebugNodeTableSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeTableSettings"][1]["ov_cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["ret"] = "void" @@ -13887,7 +13922,7 @@ defs["igDebugNodeTypingSelectState"][1]["call_args"] = "(state)" defs["igDebugNodeTypingSelectState"][1]["cimguiname"] = "igDebugNodeTypingSelectState" defs["igDebugNodeTypingSelectState"][1]["defaults"] = {} defs["igDebugNodeTypingSelectState"][1]["funcname"] = "DebugNodeTypingSelectState" -defs["igDebugNodeTypingSelectState"][1]["location"] = "imgui_internal:3437" +defs["igDebugNodeTypingSelectState"][1]["location"] = "imgui_internal:3499" defs["igDebugNodeTypingSelectState"][1]["namespace"] = "ImGui" defs["igDebugNodeTypingSelectState"][1]["ov_cimguiname"] = "igDebugNodeTypingSelectState" defs["igDebugNodeTypingSelectState"][1]["ret"] = "void" @@ -13906,7 +13941,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:3442" +defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3504" defs["igDebugNodeViewport"][1]["namespace"] = "ImGui" defs["igDebugNodeViewport"][1]["ov_cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["ret"] = "void" @@ -13928,7 +13963,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:3438" +defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3500" defs["igDebugNodeWindow"][1]["namespace"] = "ImGui" defs["igDebugNodeWindow"][1]["ov_cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["ret"] = "void" @@ -13947,7 +13982,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:3439" +defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3501" defs["igDebugNodeWindowSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowSettings"][1]["ov_cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["ret"] = "void" @@ -13969,7 +14004,7 @@ defs["igDebugNodeWindowsList"][1]["call_args"] = "(windows,label)" defs["igDebugNodeWindowsList"][1]["cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["defaults"] = {} defs["igDebugNodeWindowsList"][1]["funcname"] = "DebugNodeWindowsList" -defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3440" +defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3502" defs["igDebugNodeWindowsList"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsList"][1]["ov_cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["ret"] = "void" @@ -13994,7 +14029,7 @@ defs["igDebugNodeWindowsListByBeginStackParent"][1]["call_args"] = "(windows,win defs["igDebugNodeWindowsListByBeginStackParent"][1]["cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["defaults"] = {} defs["igDebugNodeWindowsListByBeginStackParent"][1]["funcname"] = "DebugNodeWindowsListByBeginStackParent" -defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3441" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3503" defs["igDebugNodeWindowsListByBeginStackParent"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ov_cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ret"] = "void" @@ -14013,7 +14048,7 @@ defs["igDebugRenderKeyboardPreview"][1]["call_args"] = "(draw_list)" defs["igDebugRenderKeyboardPreview"][1]["cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["defaults"] = {} defs["igDebugRenderKeyboardPreview"][1]["funcname"] = "DebugRenderKeyboardPreview" -defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3443" +defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3505" defs["igDebugRenderKeyboardPreview"][1]["namespace"] = "ImGui" defs["igDebugRenderKeyboardPreview"][1]["ov_cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["ret"] = "void" @@ -14038,7 +14073,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:3444" +defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3506" defs["igDebugRenderViewportThumbnail"][1]["namespace"] = "ImGui" defs["igDebugRenderViewportThumbnail"][1]["ov_cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["ret"] = "void" @@ -14054,7 +14089,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:3424" +defs["igDebugStartItemPicker"][1]["location"] = "imgui_internal:3486" defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["ret"] = "void" @@ -14073,7 +14108,7 @@ defs["igDebugTextEncoding"][1]["call_args"] = "(text)" defs["igDebugTextEncoding"][1]["cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["defaults"] = {} defs["igDebugTextEncoding"][1]["funcname"] = "DebugTextEncoding" -defs["igDebugTextEncoding"][1]["location"] = "imgui:966" +defs["igDebugTextEncoding"][1]["location"] = "imgui:968" defs["igDebugTextEncoding"][1]["namespace"] = "ImGui" defs["igDebugTextEncoding"][1]["ov_cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["ret"] = "void" @@ -14093,7 +14128,7 @@ defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["defaults"] = {} defs["igDestroyContext"][1]["defaults"]["ctx"] = "NULL" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" -defs["igDestroyContext"][1]["location"] = "imgui:297" +defs["igDestroyContext"][1]["location"] = "imgui:299" defs["igDestroyContext"][1]["namespace"] = "ImGui" defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" @@ -14133,7 +14168,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:3353" +defs["igDragBehavior"][1]["location"] = "imgui_internal:3415" defs["igDragBehavior"][1]["namespace"] = "ImGui" defs["igDragBehavior"][1]["ov_cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["ret"] = "bool" @@ -14175,7 +14210,7 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" -defs["igDragFloat"][1]["location"] = "imgui:562" +defs["igDragFloat"][1]["location"] = "imgui:564" defs["igDragFloat"][1]["namespace"] = "ImGui" defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" @@ -14217,7 +14252,7 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" -defs["igDragFloat2"][1]["location"] = "imgui:563" +defs["igDragFloat2"][1]["location"] = "imgui:565" defs["igDragFloat2"][1]["namespace"] = "ImGui" defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" @@ -14259,7 +14294,7 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" -defs["igDragFloat3"][1]["location"] = "imgui:564" +defs["igDragFloat3"][1]["location"] = "imgui:566" defs["igDragFloat3"][1]["namespace"] = "ImGui" defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" @@ -14301,7 +14336,7 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" -defs["igDragFloat4"][1]["location"] = "imgui:565" +defs["igDragFloat4"][1]["location"] = "imgui:567" defs["igDragFloat4"][1]["namespace"] = "ImGui" defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" @@ -14350,7 +14385,7 @@ defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" -defs["igDragFloatRange2"][1]["location"] = "imgui:566" +defs["igDragFloatRange2"][1]["location"] = "imgui:568" defs["igDragFloatRange2"][1]["namespace"] = "ImGui" defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" @@ -14392,7 +14427,7 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" -defs["igDragInt"][1]["location"] = "imgui:567" +defs["igDragInt"][1]["location"] = "imgui:569" defs["igDragInt"][1]["namespace"] = "ImGui" defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" @@ -14434,7 +14469,7 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" -defs["igDragInt2"][1]["location"] = "imgui:568" +defs["igDragInt2"][1]["location"] = "imgui:570" defs["igDragInt2"][1]["namespace"] = "ImGui" defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" @@ -14476,7 +14511,7 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" -defs["igDragInt3"][1]["location"] = "imgui:569" +defs["igDragInt3"][1]["location"] = "imgui:571" defs["igDragInt3"][1]["namespace"] = "ImGui" defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" @@ -14518,7 +14553,7 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" -defs["igDragInt4"][1]["location"] = "imgui:570" +defs["igDragInt4"][1]["location"] = "imgui:572" defs["igDragInt4"][1]["namespace"] = "ImGui" defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" @@ -14567,7 +14602,7 @@ defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" -defs["igDragIntRange2"][1]["location"] = "imgui:571" +defs["igDragIntRange2"][1]["location"] = "imgui:573" defs["igDragIntRange2"][1]["namespace"] = "ImGui" defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" @@ -14612,7 +14647,7 @@ defs["igDragScalar"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalar"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalar"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalar"][1]["funcname"] = "DragScalar" -defs["igDragScalar"][1]["location"] = "imgui:572" +defs["igDragScalar"][1]["location"] = "imgui:574" defs["igDragScalar"][1]["namespace"] = "ImGui" defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" @@ -14660,7 +14695,7 @@ defs["igDragScalarN"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalarN"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalarN"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" -defs["igDragScalarN"][1]["location"] = "imgui:573" +defs["igDragScalarN"][1]["location"] = "imgui:575" defs["igDragScalarN"][1]["namespace"] = "ImGui" defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" @@ -14679,7 +14714,7 @@ defs["igDummy"][1]["call_args"] = "(size)" defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" -defs["igDummy"][1]["location"] = "imgui:472" +defs["igDummy"][1]["location"] = "imgui:474" defs["igDummy"][1]["namespace"] = "ImGui" defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" @@ -14695,7 +14730,7 @@ defs["igEnd"][1]["call_args"] = "()" defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" -defs["igEnd"][1]["location"] = "imgui:339" +defs["igEnd"][1]["location"] = "imgui:341" defs["igEnd"][1]["namespace"] = "ImGui" defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" @@ -14711,7 +14746,7 @@ defs["igEndChild"][1]["call_args"] = "()" defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" -defs["igEndChild"][1]["location"] = "imgui:361" +defs["igEndChild"][1]["location"] = "imgui:363" defs["igEndChild"][1]["namespace"] = "ImGui" defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" @@ -14727,7 +14762,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:3222" +defs["igEndColumns"][1]["location"] = "imgui_internal:3284" defs["igEndColumns"][1]["namespace"] = "ImGui" defs["igEndColumns"][1]["ov_cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["ret"] = "void" @@ -14743,7 +14778,7 @@ defs["igEndCombo"][1]["call_args"] = "()" defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" -defs["igEndCombo"][1]["location"] = "imgui:545" +defs["igEndCombo"][1]["location"] = "imgui:547" defs["igEndCombo"][1]["namespace"] = "ImGui" defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" @@ -14759,7 +14794,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:3084" +defs["igEndComboPreview"][1]["location"] = "imgui_internal:3142" defs["igEndComboPreview"][1]["namespace"] = "ImGui" defs["igEndComboPreview"][1]["ov_cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["ret"] = "void" @@ -14775,7 +14810,7 @@ defs["igEndDisabled"][1]["call_args"] = "()" defs["igEndDisabled"][1]["cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["defaults"] = {} defs["igEndDisabled"][1]["funcname"] = "EndDisabled" -defs["igEndDisabled"][1]["location"] = "imgui:851" +defs["igEndDisabled"][1]["location"] = "imgui:853" defs["igEndDisabled"][1]["namespace"] = "ImGui" defs["igEndDisabled"][1]["ov_cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["ret"] = "void" @@ -14791,7 +14826,7 @@ defs["igEndDragDropSource"][1]["call_args"] = "()" defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" -defs["igEndDragDropSource"][1]["location"] = "imgui:840" +defs["igEndDragDropSource"][1]["location"] = "imgui:842" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -14807,7 +14842,7 @@ defs["igEndDragDropTarget"][1]["call_args"] = "()" defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" -defs["igEndDragDropTarget"][1]["location"] = "imgui:843" +defs["igEndDragDropTarget"][1]["location"] = "imgui:845" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -14823,7 +14858,7 @@ defs["igEndFrame"][1]["call_args"] = "()" defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" -defs["igEndFrame"][1]["location"] = "imgui:305" +defs["igEndFrame"][1]["location"] = "imgui:307" defs["igEndFrame"][1]["namespace"] = "ImGui" defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" @@ -14839,7 +14874,7 @@ defs["igEndGroup"][1]["call_args"] = "()" defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" -defs["igEndGroup"][1]["location"] = "imgui:476" +defs["igEndGroup"][1]["location"] = "imgui:478" defs["igEndGroup"][1]["namespace"] = "ImGui" defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" @@ -14855,7 +14890,7 @@ defs["igEndListBox"][1]["call_args"] = "()" defs["igEndListBox"][1]["cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["defaults"] = {} defs["igEndListBox"][1]["funcname"] = "EndListBox" -defs["igEndListBox"][1]["location"] = "imgui:657" +defs["igEndListBox"][1]["location"] = "imgui:659" defs["igEndListBox"][1]["namespace"] = "ImGui" defs["igEndListBox"][1]["ov_cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["ret"] = "void" @@ -14871,7 +14906,7 @@ defs["igEndMainMenuBar"][1]["call_args"] = "()" defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" -defs["igEndMainMenuBar"][1]["location"] = "imgui:683" +defs["igEndMainMenuBar"][1]["location"] = "imgui:685" defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" @@ -14887,7 +14922,7 @@ defs["igEndMenu"][1]["call_args"] = "()" defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" -defs["igEndMenu"][1]["location"] = "imgui:685" +defs["igEndMenu"][1]["location"] = "imgui:687" defs["igEndMenu"][1]["namespace"] = "ImGui" defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" @@ -14903,7 +14938,7 @@ defs["igEndMenuBar"][1]["call_args"] = "()" defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" -defs["igEndMenuBar"][1]["location"] = "imgui:681" +defs["igEndMenuBar"][1]["location"] = "imgui:683" defs["igEndMenuBar"][1]["namespace"] = "ImGui" defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" @@ -14919,7 +14954,7 @@ defs["igEndPopup"][1]["call_args"] = "()" defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" -defs["igEndPopup"][1]["location"] = "imgui:717" +defs["igEndPopup"][1]["location"] = "imgui:719" defs["igEndPopup"][1]["namespace"] = "ImGui" defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" @@ -14935,7 +14970,7 @@ defs["igEndTabBar"][1]["call_args"] = "()" defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" -defs["igEndTabBar"][1]["location"] = "imgui:817" +defs["igEndTabBar"][1]["location"] = "imgui:819" defs["igEndTabBar"][1]["namespace"] = "ImGui" defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" @@ -14951,7 +14986,7 @@ defs["igEndTabItem"][1]["call_args"] = "()" defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" -defs["igEndTabItem"][1]["location"] = "imgui:819" +defs["igEndTabItem"][1]["location"] = "imgui:821" defs["igEndTabItem"][1]["namespace"] = "ImGui" defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" @@ -14967,7 +15002,7 @@ defs["igEndTable"][1]["call_args"] = "()" defs["igEndTable"][1]["cimguiname"] = "igEndTable" defs["igEndTable"][1]["defaults"] = {} defs["igEndTable"][1]["funcname"] = "EndTable" -defs["igEndTable"][1]["location"] = "imgui:769" +defs["igEndTable"][1]["location"] = "imgui:771" defs["igEndTable"][1]["namespace"] = "ImGui" defs["igEndTable"][1]["ov_cimguiname"] = "igEndTable" defs["igEndTable"][1]["ret"] = "void" @@ -14983,7 +15018,7 @@ defs["igEndTooltip"][1]["call_args"] = "()" defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" -defs["igEndTooltip"][1]["location"] = "imgui:693" +defs["igEndTooltip"][1]["location"] = "imgui:695" defs["igEndTooltip"][1]["namespace"] = "ImGui" defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" @@ -15006,7 +15041,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:3412" +defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3474" defs["igErrorCheckEndFrameRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndFrameRecover"][1]["ov_cimguiname"] = "igErrorCheckEndFrameRecover" defs["igErrorCheckEndFrameRecover"][1]["ret"] = "void" @@ -15029,7 +15064,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:3413" +defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3475" defs["igErrorCheckEndWindowRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndWindowRecover"][1]["ov_cimguiname"] = "igErrorCheckEndWindowRecover" defs["igErrorCheckEndWindowRecover"][1]["ret"] = "void" @@ -15045,7 +15080,7 @@ defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["call_args"] = defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["defaults"] = {} defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["funcname"] = "ErrorCheckUsingSetCursorPosToExtendParentBoundaries" -defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3414" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3476" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["namespace"] = "ImGui" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ov_cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ret"] = "void" @@ -15067,7 +15102,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:3073" +defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:3131" defs["igFindBestWindowPosForPopup"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopup"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopup"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopup" @@ -15105,7 +15140,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:3074" +defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:3132" defs["igFindBestWindowPosForPopupEx"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopupEx"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopupEx"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopupEx" @@ -15125,7 +15160,7 @@ defs["igFindBlockingModal"][1]["call_args"] = "(window)" defs["igFindBlockingModal"][1]["cimguiname"] = "igFindBlockingModal" defs["igFindBlockingModal"][1]["defaults"] = {} defs["igFindBlockingModal"][1]["funcname"] = "FindBlockingModal" -defs["igFindBlockingModal"][1]["location"] = "imgui_internal:3072" +defs["igFindBlockingModal"][1]["location"] = "imgui_internal:3130" defs["igFindBlockingModal"][1]["namespace"] = "ImGui" defs["igFindBlockingModal"][1]["ov_cimguiname"] = "igFindBlockingModal" defs["igFindBlockingModal"][1]["ret"] = "ImGuiWindow*" @@ -15144,7 +15179,7 @@ defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["call_args"] = "(window defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["defaults"] = {} defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["funcname"] = "FindBottomMostVisibleWindowWithinBeginStack" -defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:2956" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:3014" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["namespace"] = "ImGui" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ov_cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ret"] = "ImGuiWindow*" @@ -15166,7 +15201,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:3227" +defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:3289" defs["igFindOrCreateColumns"][1]["namespace"] = "ImGui" defs["igFindOrCreateColumns"][1]["ov_cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["ret"] = "ImGuiOldColumns*" @@ -15189,7 +15224,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:3320" +defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:3382" defs["igFindRenderedTextEnd"][1]["namespace"] = "ImGui" defs["igFindRenderedTextEnd"][1]["ov_cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["ret"] = "const char*" @@ -15208,7 +15243,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:2991" +defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:3049" defs["igFindSettingsHandler"][1]["namespace"] = "ImGui" defs["igFindSettingsHandler"][1]["ov_cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["ret"] = "ImGuiSettingsHandler*" @@ -15227,7 +15262,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:2931" +defs["igFindWindowByID"][1]["location"] = "imgui_internal:2988" defs["igFindWindowByID"][1]["namespace"] = "ImGui" defs["igFindWindowByID"][1]["ov_cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["ret"] = "ImGuiWindow*" @@ -15246,7 +15281,7 @@ defs["igFindWindowByName"][1]["call_args"] = "(name)" defs["igFindWindowByName"][1]["cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["defaults"] = {} defs["igFindWindowByName"][1]["funcname"] = "FindWindowByName" -defs["igFindWindowByName"][1]["location"] = "imgui_internal:2932" +defs["igFindWindowByName"][1]["location"] = "imgui_internal:2989" defs["igFindWindowByName"][1]["namespace"] = "ImGui" defs["igFindWindowByName"][1]["ov_cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["ret"] = "ImGuiWindow*" @@ -15265,7 +15300,7 @@ defs["igFindWindowDisplayIndex"][1]["call_args"] = "(window)" defs["igFindWindowDisplayIndex"][1]["cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["defaults"] = {} defs["igFindWindowDisplayIndex"][1]["funcname"] = "FindWindowDisplayIndex" -defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:2955" +defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:3013" defs["igFindWindowDisplayIndex"][1]["namespace"] = "ImGui" defs["igFindWindowDisplayIndex"][1]["ov_cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["ret"] = "int" @@ -15284,7 +15319,7 @@ defs["igFindWindowSettingsByID"][1]["call_args"] = "(id)" defs["igFindWindowSettingsByID"][1]["cimguiname"] = "igFindWindowSettingsByID" defs["igFindWindowSettingsByID"][1]["defaults"] = {} defs["igFindWindowSettingsByID"][1]["funcname"] = "FindWindowSettingsByID" -defs["igFindWindowSettingsByID"][1]["location"] = "imgui_internal:2995" +defs["igFindWindowSettingsByID"][1]["location"] = "imgui_internal:3053" defs["igFindWindowSettingsByID"][1]["namespace"] = "ImGui" defs["igFindWindowSettingsByID"][1]["ov_cimguiname"] = "igFindWindowSettingsByID" defs["igFindWindowSettingsByID"][1]["ret"] = "ImGuiWindowSettings*" @@ -15303,13 +15338,35 @@ defs["igFindWindowSettingsByWindow"][1]["call_args"] = "(window)" defs["igFindWindowSettingsByWindow"][1]["cimguiname"] = "igFindWindowSettingsByWindow" defs["igFindWindowSettingsByWindow"][1]["defaults"] = {} defs["igFindWindowSettingsByWindow"][1]["funcname"] = "FindWindowSettingsByWindow" -defs["igFindWindowSettingsByWindow"][1]["location"] = "imgui_internal:2996" +defs["igFindWindowSettingsByWindow"][1]["location"] = "imgui_internal:3054" defs["igFindWindowSettingsByWindow"][1]["namespace"] = "ImGui" defs["igFindWindowSettingsByWindow"][1]["ov_cimguiname"] = "igFindWindowSettingsByWindow" defs["igFindWindowSettingsByWindow"][1]["ret"] = "ImGuiWindowSettings*" defs["igFindWindowSettingsByWindow"][1]["signature"] = "(ImGuiWindow*)" defs["igFindWindowSettingsByWindow"][1]["stname"] = "" defs["igFindWindowSettingsByWindow"]["(ImGuiWindow*)"] = defs["igFindWindowSettingsByWindow"][1] +defs["igFixupKeyChord"] = {} +defs["igFixupKeyChord"][1] = {} +defs["igFixupKeyChord"][1]["args"] = "(ImGuiContext* ctx,ImGuiKeyChord key_chord)" +defs["igFixupKeyChord"][1]["argsT"] = {} +defs["igFixupKeyChord"][1]["argsT"][1] = {} +defs["igFixupKeyChord"][1]["argsT"][1]["name"] = "ctx" +defs["igFixupKeyChord"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igFixupKeyChord"][1]["argsT"][2] = {} +defs["igFixupKeyChord"][1]["argsT"][2]["name"] = "key_chord" +defs["igFixupKeyChord"][1]["argsT"][2]["type"] = "ImGuiKeyChord" +defs["igFixupKeyChord"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiKeyChord key_chord)" +defs["igFixupKeyChord"][1]["call_args"] = "(ctx,key_chord)" +defs["igFixupKeyChord"][1]["cimguiname"] = "igFixupKeyChord" +defs["igFixupKeyChord"][1]["defaults"] = {} +defs["igFixupKeyChord"][1]["funcname"] = "FixupKeyChord" +defs["igFixupKeyChord"][1]["location"] = "imgui_internal:3179" +defs["igFixupKeyChord"][1]["namespace"] = "ImGui" +defs["igFixupKeyChord"][1]["ov_cimguiname"] = "igFixupKeyChord" +defs["igFixupKeyChord"][1]["ret"] = "ImGuiKeyChord" +defs["igFixupKeyChord"][1]["signature"] = "(ImGuiContext*,ImGuiKeyChord)" +defs["igFixupKeyChord"][1]["stname"] = "" +defs["igFixupKeyChord"]["(ImGuiContext*,ImGuiKeyChord)"] = defs["igFixupKeyChord"][1] defs["igFocusItem"] = {} defs["igFocusItem"][1] = {} defs["igFocusItem"][1]["args"] = "()" @@ -15319,7 +15376,7 @@ defs["igFocusItem"][1]["call_args"] = "()" defs["igFocusItem"][1]["cimguiname"] = "igFocusItem" defs["igFocusItem"][1]["defaults"] = {} defs["igFocusItem"][1]["funcname"] = "FocusItem" -defs["igFocusItem"][1]["location"] = "imgui_internal:3106" +defs["igFocusItem"][1]["location"] = "imgui_internal:3166" defs["igFocusItem"][1]["namespace"] = "ImGui" defs["igFocusItem"][1]["ov_cimguiname"] = "igFocusItem" defs["igFocusItem"][1]["ret"] = "void" @@ -15347,7 +15404,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:2950" +defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:3008" defs["igFocusTopMostWindowUnderOne"][1]["namespace"] = "ImGui" defs["igFocusTopMostWindowUnderOne"][1]["ov_cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["ret"] = "void" @@ -15370,7 +15427,7 @@ defs["igFocusWindow"][1]["cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["defaults"] = {} defs["igFocusWindow"][1]["defaults"]["flags"] = "0" defs["igFocusWindow"][1]["funcname"] = "FocusWindow" -defs["igFocusWindow"][1]["location"] = "imgui_internal:2949" +defs["igFocusWindow"][1]["location"] = "imgui_internal:3007" defs["igFocusWindow"][1]["namespace"] = "ImGui" defs["igFocusWindow"][1]["ov_cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["ret"] = "void" @@ -15389,7 +15446,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:3404" +defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3466" defs["igGcAwakeTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcAwakeTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["ret"] = "void" @@ -15405,7 +15462,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:3402" +defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3464" defs["igGcCompactTransientMiscBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientMiscBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["ret"] = "void" @@ -15424,7 +15481,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:3403" +defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3465" defs["igGcCompactTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["ret"] = "void" @@ -15440,7 +15497,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:3020" +defs["igGetActiveID"][1]["location"] = "imgui_internal:3078" defs["igGetActiveID"][1]["namespace"] = "ImGui" defs["igGetActiveID"][1]["ov_cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["ret"] = "ImGuiID" @@ -15465,7 +15522,7 @@ defs["igGetAllocatorFunctions"][1]["call_args"] = "(p_alloc_func,p_free_func,p_u defs["igGetAllocatorFunctions"][1]["cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["defaults"] = {} defs["igGetAllocatorFunctions"][1]["funcname"] = "GetAllocatorFunctions" -defs["igGetAllocatorFunctions"][1]["location"] = "imgui:975" +defs["igGetAllocatorFunctions"][1]["location"] = "imgui:977" defs["igGetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igGetAllocatorFunctions"][1]["ov_cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["ret"] = "void" @@ -15481,7 +15538,7 @@ defs["igGetBackgroundDrawList"][1]["call_args"] = "()" defs["igGetBackgroundDrawList"][1]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["defaults"] = {} defs["igGetBackgroundDrawList"][1]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][1]["location"] = "imgui:894" +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:896" defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList_Nil" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" @@ -15498,7 +15555,7 @@ defs["igGetBackgroundDrawList"][2]["call_args"] = "(viewport)" defs["igGetBackgroundDrawList"][2]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][2]["defaults"] = {} defs["igGetBackgroundDrawList"][2]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][2]["location"] = "imgui_internal:2962" +defs["igGetBackgroundDrawList"][2]["location"] = "imgui_internal:3020" defs["igGetBackgroundDrawList"][2]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][2]["ov_cimguiname"] = "igGetBackgroundDrawList_ViewportPtr" defs["igGetBackgroundDrawList"][2]["ret"] = "ImDrawList*" @@ -15515,7 +15572,7 @@ defs["igGetClipboardText"][1]["call_args"] = "()" defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" -defs["igGetClipboardText"][1]["location"] = "imgui:952" +defs["igGetClipboardText"][1]["location"] = "imgui:954" defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -15538,7 +15595,7 @@ defs["igGetColorU32"][1]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" -defs["igGetColorU32"][1]["location"] = "imgui:444" +defs["igGetColorU32"][1]["location"] = "imgui:446" defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32_Col" defs["igGetColorU32"][1]["ret"] = "ImU32" @@ -15555,7 +15612,7 @@ defs["igGetColorU32"][2]["call_args"] = "(col)" defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" -defs["igGetColorU32"][2]["location"] = "imgui:445" +defs["igGetColorU32"][2]["location"] = "imgui:447" defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32_Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" @@ -15572,7 +15629,7 @@ defs["igGetColorU32"][3]["call_args"] = "(col)" defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["defaults"] = {} defs["igGetColorU32"][3]["funcname"] = "GetColorU32" -defs["igGetColorU32"][3]["location"] = "imgui:446" +defs["igGetColorU32"][3]["location"] = "imgui:448" defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32_U32" defs["igGetColorU32"][3]["ret"] = "ImU32" @@ -15590,7 +15647,7 @@ defs["igGetColumnIndex"][1]["call_args"] = "()" defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" -defs["igGetColumnIndex"][1]["location"] = "imgui:807" +defs["igGetColumnIndex"][1]["location"] = "imgui:809" defs["igGetColumnIndex"][1]["namespace"] = "ImGui" defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" @@ -15612,7 +15669,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:3229" +defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:3291" defs["igGetColumnNormFromOffset"][1]["namespace"] = "ImGui" defs["igGetColumnNormFromOffset"][1]["ov_cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["ret"] = "float" @@ -15632,7 +15689,7 @@ defs["igGetColumnOffset"][1]["cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" -defs["igGetColumnOffset"][1]["location"] = "imgui:810" +defs["igGetColumnOffset"][1]["location"] = "imgui:812" defs["igGetColumnOffset"][1]["namespace"] = "ImGui" defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" @@ -15654,7 +15711,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:3228" +defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:3290" defs["igGetColumnOffsetFromNorm"][1]["namespace"] = "ImGui" defs["igGetColumnOffsetFromNorm"][1]["ov_cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["ret"] = "float" @@ -15674,7 +15731,7 @@ defs["igGetColumnWidth"][1]["cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" -defs["igGetColumnWidth"][1]["location"] = "imgui:808" +defs["igGetColumnWidth"][1]["location"] = "imgui:810" defs["igGetColumnWidth"][1]["namespace"] = "ImGui" defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" @@ -15690,7 +15747,7 @@ defs["igGetColumnsCount"][1]["call_args"] = "()" defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" -defs["igGetColumnsCount"][1]["location"] = "imgui:812" +defs["igGetColumnsCount"][1]["location"] = "imgui:814" defs["igGetColumnsCount"][1]["namespace"] = "ImGui" defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" @@ -15712,7 +15769,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:3226" +defs["igGetColumnsID"][1]["location"] = "imgui_internal:3288" defs["igGetColumnsID"][1]["namespace"] = "ImGui" defs["igGetColumnsID"][1]["ov_cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["ret"] = "ImGuiID" @@ -15731,7 +15788,7 @@ defs["igGetContentRegionAvail"][1]["call_args"] = "()" defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" -defs["igGetContentRegionAvail"][1]["location"] = "imgui:398" +defs["igGetContentRegionAvail"][1]["location"] = "imgui:400" defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][1]["nonUDT"] = 1 defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" @@ -15751,7 +15808,7 @@ defs["igGetContentRegionMax"][1]["call_args"] = "()" defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][1]["defaults"] = {} defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" -defs["igGetContentRegionMax"][1]["location"] = "imgui:399" +defs["igGetContentRegionMax"][1]["location"] = "imgui:401" defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" defs["igGetContentRegionMax"][1]["nonUDT"] = 1 defs["igGetContentRegionMax"][1]["ov_cimguiname"] = "igGetContentRegionMax" @@ -15771,7 +15828,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:3045" +defs["igGetContentRegionMaxAbs"][1]["location"] = "imgui_internal:3103" defs["igGetContentRegionMaxAbs"][1]["namespace"] = "ImGui" defs["igGetContentRegionMaxAbs"][1]["nonUDT"] = 1 defs["igGetContentRegionMaxAbs"][1]["ov_cimguiname"] = "igGetContentRegionMaxAbs" @@ -15788,7 +15845,7 @@ defs["igGetCurrentContext"][1]["call_args"] = "()" defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" -defs["igGetCurrentContext"][1]["location"] = "imgui:298" +defs["igGetCurrentContext"][1]["location"] = "imgui:300" defs["igGetCurrentContext"][1]["namespace"] = "ImGui" defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" @@ -15804,7 +15861,7 @@ defs["igGetCurrentFocusScope"][1]["call_args"] = "()" defs["igGetCurrentFocusScope"][1]["cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["defaults"] = {} defs["igGetCurrentFocusScope"][1]["funcname"] = "GetCurrentFocusScope" -defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3204" +defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3266" defs["igGetCurrentFocusScope"][1]["namespace"] = "ImGui" defs["igGetCurrentFocusScope"][1]["ov_cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["ret"] = "ImGuiID" @@ -15820,7 +15877,7 @@ defs["igGetCurrentTabBar"][1]["call_args"] = "()" defs["igGetCurrentTabBar"][1]["cimguiname"] = "igGetCurrentTabBar" defs["igGetCurrentTabBar"][1]["defaults"] = {} defs["igGetCurrentTabBar"][1]["funcname"] = "GetCurrentTabBar" -defs["igGetCurrentTabBar"][1]["location"] = "imgui_internal:3289" +defs["igGetCurrentTabBar"][1]["location"] = "imgui_internal:3351" defs["igGetCurrentTabBar"][1]["namespace"] = "ImGui" defs["igGetCurrentTabBar"][1]["ov_cimguiname"] = "igGetCurrentTabBar" defs["igGetCurrentTabBar"][1]["ret"] = "ImGuiTabBar*" @@ -15836,7 +15893,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:3244" +defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3306" defs["igGetCurrentTable"][1]["namespace"] = "ImGui" defs["igGetCurrentTable"][1]["ov_cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["ret"] = "ImGuiTable*" @@ -15852,7 +15909,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:2930" +defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:2987" defs["igGetCurrentWindow"][1]["namespace"] = "ImGui" defs["igGetCurrentWindow"][1]["ov_cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["ret"] = "ImGuiWindow*" @@ -15868,7 +15925,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:2929" +defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:2986" defs["igGetCurrentWindowRead"][1]["namespace"] = "ImGui" defs["igGetCurrentWindowRead"][1]["ov_cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["ret"] = "ImGuiWindow*" @@ -15887,7 +15944,7 @@ defs["igGetCursorPos"][1]["call_args"] = "()" defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["igGetCursorPos"][1]["location"] = "imgui:459" +defs["igGetCursorPos"][1]["location"] = "imgui:461" defs["igGetCursorPos"][1]["namespace"] = "ImGui" defs["igGetCursorPos"][1]["nonUDT"] = 1 defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" @@ -15904,7 +15961,7 @@ defs["igGetCursorPosX"][1]["call_args"] = "()" defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" -defs["igGetCursorPosX"][1]["location"] = "imgui:460" +defs["igGetCursorPosX"][1]["location"] = "imgui:462" defs["igGetCursorPosX"][1]["namespace"] = "ImGui" defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" @@ -15920,7 +15977,7 @@ defs["igGetCursorPosY"][1]["call_args"] = "()" defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" -defs["igGetCursorPosY"][1]["location"] = "imgui:461" +defs["igGetCursorPosY"][1]["location"] = "imgui:463" defs["igGetCursorPosY"][1]["namespace"] = "ImGui" defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" @@ -15939,7 +15996,7 @@ defs["igGetCursorScreenPos"][1]["call_args"] = "()" defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" -defs["igGetCursorScreenPos"][1]["location"] = "imgui:457" +defs["igGetCursorScreenPos"][1]["location"] = "imgui:459" defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][1]["nonUDT"] = 1 defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" @@ -15959,7 +16016,7 @@ defs["igGetCursorStartPos"][1]["call_args"] = "()" defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" -defs["igGetCursorStartPos"][1]["location"] = "imgui:465" +defs["igGetCursorStartPos"][1]["location"] = "imgui:467" defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" defs["igGetCursorStartPos"][1]["nonUDT"] = 1 defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" @@ -15976,7 +16033,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:2960" +defs["igGetDefaultFont"][1]["location"] = "imgui_internal:3018" defs["igGetDefaultFont"][1]["namespace"] = "ImGui" defs["igGetDefaultFont"][1]["ov_cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["ret"] = "ImFont*" @@ -15992,7 +16049,7 @@ defs["igGetDragDropPayload"][1]["call_args"] = "()" defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" -defs["igGetDragDropPayload"][1]["location"] = "imgui:844" +defs["igGetDragDropPayload"][1]["location"] = "imgui:846" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -16008,7 +16065,7 @@ defs["igGetDrawData"][1]["call_args"] = "()" defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" -defs["igGetDrawData"][1]["location"] = "imgui:307" +defs["igGetDrawData"][1]["location"] = "imgui:309" defs["igGetDrawData"][1]["namespace"] = "ImGui" defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" @@ -16024,7 +16081,7 @@ defs["igGetDrawListSharedData"][1]["call_args"] = "()" defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" -defs["igGetDrawListSharedData"][1]["location"] = "imgui:902" +defs["igGetDrawListSharedData"][1]["location"] = "imgui:904" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -16040,7 +16097,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:3021" +defs["igGetFocusID"][1]["location"] = "imgui_internal:3079" defs["igGetFocusID"][1]["namespace"] = "ImGui" defs["igGetFocusID"][1]["ov_cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["ret"] = "ImGuiID" @@ -16056,7 +16113,7 @@ defs["igGetFont"][1]["call_args"] = "()" defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" -defs["igGetFont"][1]["location"] = "imgui:441" +defs["igGetFont"][1]["location"] = "imgui:443" defs["igGetFont"][1]["namespace"] = "ImGui" defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" @@ -16072,7 +16129,7 @@ defs["igGetFontSize"][1]["call_args"] = "()" defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" -defs["igGetFontSize"][1]["location"] = "imgui:442" +defs["igGetFontSize"][1]["location"] = "imgui:444" defs["igGetFontSize"][1]["namespace"] = "ImGui" defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" @@ -16091,7 +16148,7 @@ defs["igGetFontTexUvWhitePixel"][1]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:443" +defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:445" defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][1]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" @@ -16108,7 +16165,7 @@ defs["igGetForegroundDrawList"][1]["call_args"] = "()" defs["igGetForegroundDrawList"][1]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["defaults"] = {} defs["igGetForegroundDrawList"][1]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][1]["location"] = "imgui:895" +defs["igGetForegroundDrawList"][1]["location"] = "imgui:897" defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList_Nil" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" @@ -16125,7 +16182,7 @@ defs["igGetForegroundDrawList"][2]["call_args"] = "(window)" defs["igGetForegroundDrawList"][2]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][2]["defaults"] = {} defs["igGetForegroundDrawList"][2]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:2961" +defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:3019" defs["igGetForegroundDrawList"][2]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][2]["ov_cimguiname"] = "igGetForegroundDrawList_WindowPtr" defs["igGetForegroundDrawList"][2]["ret"] = "ImDrawList*" @@ -16142,7 +16199,7 @@ defs["igGetForegroundDrawList"][3]["call_args"] = "(viewport)" defs["igGetForegroundDrawList"][3]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][3]["defaults"] = {} defs["igGetForegroundDrawList"][3]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][3]["location"] = "imgui_internal:2963" +defs["igGetForegroundDrawList"][3]["location"] = "imgui_internal:3021" defs["igGetForegroundDrawList"][3]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][3]["ov_cimguiname"] = "igGetForegroundDrawList_ViewportPtr" defs["igGetForegroundDrawList"][3]["ret"] = "ImDrawList*" @@ -16160,7 +16217,7 @@ defs["igGetFrameCount"][1]["call_args"] = "()" defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" -defs["igGetFrameCount"][1]["location"] = "imgui:901" +defs["igGetFrameCount"][1]["location"] = "imgui:903" defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -16176,7 +16233,7 @@ defs["igGetFrameHeight"][1]["call_args"] = "()" defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" -defs["igGetFrameHeight"][1]["location"] = "imgui:480" +defs["igGetFrameHeight"][1]["location"] = "imgui:482" defs["igGetFrameHeight"][1]["namespace"] = "ImGui" defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" @@ -16192,7 +16249,7 @@ defs["igGetFrameHeightWithSpacing"][1]["call_args"] = "()" defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" -defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:481" +defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:483" defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" @@ -16208,7 +16265,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:3025" +defs["igGetHoveredID"][1]["location"] = "imgui_internal:3083" defs["igGetHoveredID"][1]["namespace"] = "ImGui" defs["igGetHoveredID"][1]["ov_cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["ret"] = "ImGuiID" @@ -16227,7 +16284,7 @@ defs["igGetID"][1]["call_args"] = "(str_id)" defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" -defs["igGetID"][1]["location"] = "imgui:499" +defs["igGetID"][1]["location"] = "imgui:501" defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetID_Str" defs["igGetID"][1]["ret"] = "ImGuiID" @@ -16247,7 +16304,7 @@ defs["igGetID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" -defs["igGetID"][2]["location"] = "imgui:500" +defs["igGetID"][2]["location"] = "imgui:502" defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetID_StrStr" defs["igGetID"][2]["ret"] = "ImGuiID" @@ -16264,7 +16321,7 @@ defs["igGetID"][3]["call_args"] = "(ptr_id)" defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" -defs["igGetID"][3]["location"] = "imgui:501" +defs["igGetID"][3]["location"] = "imgui:503" defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetID_Ptr" defs["igGetID"][3]["ret"] = "ImGuiID" @@ -16291,7 +16348,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:3030" +defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:3088" defs["igGetIDWithSeed"][1]["namespace"] = "ImGui" defs["igGetIDWithSeed"][1]["ov_cimguiname"] = "igGetIDWithSeed_Str" defs["igGetIDWithSeed"][1]["ret"] = "ImGuiID" @@ -16311,7 +16368,7 @@ defs["igGetIDWithSeed"][2]["call_args"] = "(n,seed)" defs["igGetIDWithSeed"][2]["cimguiname"] = "igGetIDWithSeed" defs["igGetIDWithSeed"][2]["defaults"] = {} defs["igGetIDWithSeed"][2]["funcname"] = "GetIDWithSeed" -defs["igGetIDWithSeed"][2]["location"] = "imgui_internal:3031" +defs["igGetIDWithSeed"][2]["location"] = "imgui_internal:3089" defs["igGetIDWithSeed"][2]["namespace"] = "ImGui" defs["igGetIDWithSeed"][2]["ov_cimguiname"] = "igGetIDWithSeed_Int" defs["igGetIDWithSeed"][2]["ret"] = "ImGuiID" @@ -16328,7 +16385,7 @@ defs["igGetIO"][1]["call_args"] = "()" defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" -defs["igGetIO"][1]["location"] = "imgui:302" +defs["igGetIO"][1]["location"] = "imgui:304" defs["igGetIO"][1]["namespace"] = "ImGui" defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" @@ -16348,7 +16405,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:3386" +defs["igGetInputTextState"][1]["location"] = "imgui_internal:3448" defs["igGetInputTextState"][1]["namespace"] = "ImGui" defs["igGetInputTextState"][1]["ov_cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["ret"] = "ImGuiInputTextState*" @@ -16364,7 +16421,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:3019" +defs["igGetItemFlags"][1]["location"] = "imgui_internal:3077" defs["igGetItemFlags"][1]["namespace"] = "ImGui" defs["igGetItemFlags"][1]["ov_cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["ret"] = "ImGuiItemFlags" @@ -16380,7 +16437,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:882" +defs["igGetItemID"][1]["location"] = "imgui:884" defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -16399,7 +16456,7 @@ defs["igGetItemRectMax"][1]["call_args"] = "()" defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" -defs["igGetItemRectMax"][1]["location"] = "imgui:884" +defs["igGetItemRectMax"][1]["location"] = "imgui:886" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -16419,7 +16476,7 @@ defs["igGetItemRectMin"][1]["call_args"] = "()" defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" -defs["igGetItemRectMin"][1]["location"] = "imgui:883" +defs["igGetItemRectMin"][1]["location"] = "imgui:885" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -16439,7 +16496,7 @@ defs["igGetItemRectSize"][1]["call_args"] = "()" defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" -defs["igGetItemRectSize"][1]["location"] = "imgui:885" +defs["igGetItemRectSize"][1]["location"] = "imgui:887" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -16456,7 +16513,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:3018" +defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:3076" defs["igGetItemStatusFlags"][1]["namespace"] = "ImGui" defs["igGetItemStatusFlags"][1]["ov_cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["ret"] = "ImGuiItemStatusFlags" @@ -16465,29 +16522,23 @@ defs["igGetItemStatusFlags"][1]["stname"] = "" defs["igGetItemStatusFlags"]["()"] = defs["igGetItemStatusFlags"][1] defs["igGetKeyChordName"] = {} defs["igGetKeyChordName"][1] = {} -defs["igGetKeyChordName"][1]["args"] = "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)" +defs["igGetKeyChordName"][1]["args"] = "(ImGuiKeyChord key_chord)" defs["igGetKeyChordName"][1]["argsT"] = {} defs["igGetKeyChordName"][1]["argsT"][1] = {} defs["igGetKeyChordName"][1]["argsT"][1]["name"] = "key_chord" defs["igGetKeyChordName"][1]["argsT"][1]["type"] = "ImGuiKeyChord" -defs["igGetKeyChordName"][1]["argsT"][2] = {} -defs["igGetKeyChordName"][1]["argsT"][2]["name"] = "out_buf" -defs["igGetKeyChordName"][1]["argsT"][2]["type"] = "char*" -defs["igGetKeyChordName"][1]["argsT"][3] = {} -defs["igGetKeyChordName"][1]["argsT"][3]["name"] = "out_buf_size" -defs["igGetKeyChordName"][1]["argsT"][3]["type"] = "int" -defs["igGetKeyChordName"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)" -defs["igGetKeyChordName"][1]["call_args"] = "(key_chord,out_buf,out_buf_size)" +defs["igGetKeyChordName"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" +defs["igGetKeyChordName"][1]["call_args"] = "(key_chord)" defs["igGetKeyChordName"][1]["cimguiname"] = "igGetKeyChordName" defs["igGetKeyChordName"][1]["defaults"] = {} defs["igGetKeyChordName"][1]["funcname"] = "GetKeyChordName" -defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3132" +defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3193" defs["igGetKeyChordName"][1]["namespace"] = "ImGui" defs["igGetKeyChordName"][1]["ov_cimguiname"] = "igGetKeyChordName" defs["igGetKeyChordName"][1]["ret"] = "const char*" -defs["igGetKeyChordName"][1]["signature"] = "(ImGuiKeyChord,char*,int)" +defs["igGetKeyChordName"][1]["signature"] = "(ImGuiKeyChord)" defs["igGetKeyChordName"][1]["stname"] = "" -defs["igGetKeyChordName"]["(ImGuiKeyChord,char*,int)"] = defs["igGetKeyChordName"][1] +defs["igGetKeyChordName"]["(ImGuiKeyChord)"] = defs["igGetKeyChordName"][1] defs["igGetKeyData"] = {} defs["igGetKeyData"][1] = {} defs["igGetKeyData"][1]["args"] = "(ImGuiContext* ctx,ImGuiKey key)" @@ -16503,7 +16554,7 @@ defs["igGetKeyData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyData"][1]["cimguiname"] = "igGetKeyData" defs["igGetKeyData"][1]["defaults"] = {} defs["igGetKeyData"][1]["funcname"] = "GetKeyData" -defs["igGetKeyData"][1]["location"] = "imgui_internal:3130" +defs["igGetKeyData"][1]["location"] = "imgui_internal:3191" defs["igGetKeyData"][1]["namespace"] = "ImGui" defs["igGetKeyData"][1]["ov_cimguiname"] = "igGetKeyData_ContextPtr" defs["igGetKeyData"][1]["ret"] = "ImGuiKeyData*" @@ -16520,7 +16571,7 @@ defs["igGetKeyData"][2]["call_args"] = "(key)" defs["igGetKeyData"][2]["cimguiname"] = "igGetKeyData" defs["igGetKeyData"][2]["defaults"] = {} defs["igGetKeyData"][2]["funcname"] = "GetKeyData" -defs["igGetKeyData"][2]["location"] = "imgui_internal:3131" +defs["igGetKeyData"][2]["location"] = "imgui_internal:3192" defs["igGetKeyData"][2]["namespace"] = "ImGui" defs["igGetKeyData"][2]["ov_cimguiname"] = "igGetKeyData_Key" defs["igGetKeyData"][2]["ret"] = "ImGuiKeyData*" @@ -16540,7 +16591,7 @@ defs["igGetKeyIndex"][1]["call_args"] = "(key)" defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["defaults"] = {} defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" -defs["igGetKeyIndex"][1]["location"] = "imgui:3167" +defs["igGetKeyIndex"][1]["location"] = "imgui:3168" defs["igGetKeyIndex"][1]["namespace"] = "ImGui" defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["ret"] = "ImGuiKey" @@ -16571,7 +16622,7 @@ defs["igGetKeyMagnitude2d"][1]["call_args"] = "(key_left,key_right,key_up,key_do defs["igGetKeyMagnitude2d"][1]["cimguiname"] = "igGetKeyMagnitude2d" defs["igGetKeyMagnitude2d"][1]["defaults"] = {} defs["igGetKeyMagnitude2d"][1]["funcname"] = "GetKeyMagnitude2d" -defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3135" +defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3196" defs["igGetKeyMagnitude2d"][1]["namespace"] = "ImGui" defs["igGetKeyMagnitude2d"][1]["nonUDT"] = 1 defs["igGetKeyMagnitude2d"][1]["ov_cimguiname"] = "igGetKeyMagnitude2d" @@ -16591,7 +16642,7 @@ defs["igGetKeyName"][1]["call_args"] = "(key)" defs["igGetKeyName"][1]["cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["defaults"] = {} defs["igGetKeyName"][1]["funcname"] = "GetKeyName" -defs["igGetKeyName"][1]["location"] = "imgui:926" +defs["igGetKeyName"][1]["location"] = "imgui:928" defs["igGetKeyName"][1]["namespace"] = "ImGui" defs["igGetKeyName"][1]["ov_cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["ret"] = "const char*" @@ -16610,7 +16661,7 @@ defs["igGetKeyOwner"][1]["call_args"] = "(key)" defs["igGetKeyOwner"][1]["cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["defaults"] = {} defs["igGetKeyOwner"][1]["funcname"] = "GetKeyOwner" -defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3154" +defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3215" defs["igGetKeyOwner"][1]["namespace"] = "ImGui" defs["igGetKeyOwner"][1]["ov_cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["ret"] = "ImGuiID" @@ -16632,7 +16683,7 @@ defs["igGetKeyOwnerData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyOwnerData"][1]["cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["defaults"] = {} defs["igGetKeyOwnerData"][1]["funcname"] = "GetKeyOwnerData" -defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3159" +defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3220" defs["igGetKeyOwnerData"][1]["namespace"] = "ImGui" defs["igGetKeyOwnerData"][1]["ov_cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["ret"] = "ImGuiKeyOwnerData*" @@ -16657,7 +16708,7 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui:925" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:927" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -16673,7 +16724,7 @@ defs["igGetMainViewport"][1]["call_args"] = "()" defs["igGetMainViewport"][1]["cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["defaults"] = {} defs["igGetMainViewport"][1]["funcname"] = "GetMainViewport" -defs["igGetMainViewport"][1]["location"] = "imgui:891" +defs["igGetMainViewport"][1]["location"] = "imgui:893" defs["igGetMainViewport"][1]["namespace"] = "ImGui" defs["igGetMainViewport"][1]["ov_cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["ret"] = "ImGuiViewport*" @@ -16692,7 +16743,7 @@ defs["igGetMouseClickedCount"][1]["call_args"] = "(button)" defs["igGetMouseClickedCount"][1]["cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["defaults"] = {} defs["igGetMouseClickedCount"][1]["funcname"] = "GetMouseClickedCount" -defs["igGetMouseClickedCount"][1]["location"] = "imgui:937" +defs["igGetMouseClickedCount"][1]["location"] = "imgui:939" defs["igGetMouseClickedCount"][1]["namespace"] = "ImGui" defs["igGetMouseClickedCount"][1]["ov_cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["ret"] = "int" @@ -16708,7 +16759,7 @@ defs["igGetMouseCursor"][1]["call_args"] = "()" defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" -defs["igGetMouseCursor"][1]["location"] = "imgui:946" +defs["igGetMouseCursor"][1]["location"] = "imgui:948" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -16735,7 +16786,7 @@ defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igGetMouseDragDelta"][1]["funcname"] = "GetMouseDragDelta" -defs["igGetMouseDragDelta"][1]["location"] = "imgui:944" +defs["igGetMouseDragDelta"][1]["location"] = "imgui:946" defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -16755,7 +16806,7 @@ defs["igGetMousePos"][1]["call_args"] = "()" defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" -defs["igGetMousePos"][1]["location"] = "imgui:941" +defs["igGetMousePos"][1]["location"] = "imgui:943" defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -16775,7 +16826,7 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" -defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:942" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:944" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -16795,7 +16846,7 @@ defs["igGetNavTweakPressedAmount"][1]["call_args"] = "(axis)" defs["igGetNavTweakPressedAmount"][1]["cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["defaults"] = {} defs["igGetNavTweakPressedAmount"][1]["funcname"] = "GetNavTweakPressedAmount" -defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3136" +defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3197" defs["igGetNavTweakPressedAmount"][1]["namespace"] = "ImGui" defs["igGetNavTweakPressedAmount"][1]["ov_cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["ret"] = "float" @@ -16817,7 +16868,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:3069" +defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:3127" defs["igGetPopupAllowedExtentRect"][1]["namespace"] = "ImGui" defs["igGetPopupAllowedExtentRect"][1]["nonUDT"] = 1 defs["igGetPopupAllowedExtentRect"][1]["ov_cimguiname"] = "igGetPopupAllowedExtentRect" @@ -16834,7 +16885,7 @@ defs["igGetScrollMaxX"][1]["call_args"] = "()" defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" -defs["igGetScrollMaxX"][1]["location"] = "imgui:410" +defs["igGetScrollMaxX"][1]["location"] = "imgui:412" defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" @@ -16850,7 +16901,7 @@ defs["igGetScrollMaxY"][1]["call_args"] = "()" defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" -defs["igGetScrollMaxY"][1]["location"] = "imgui:411" +defs["igGetScrollMaxY"][1]["location"] = "imgui:413" defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" @@ -16866,7 +16917,7 @@ defs["igGetScrollX"][1]["call_args"] = "()" defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" -defs["igGetScrollX"][1]["location"] = "imgui:406" +defs["igGetScrollX"][1]["location"] = "imgui:408" defs["igGetScrollX"][1]["namespace"] = "ImGui" defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" @@ -16882,7 +16933,7 @@ defs["igGetScrollY"][1]["call_args"] = "()" defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" -defs["igGetScrollY"][1]["location"] = "imgui:407" +defs["igGetScrollY"][1]["location"] = "imgui:409" defs["igGetScrollY"][1]["namespace"] = "ImGui" defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" @@ -16901,7 +16952,7 @@ defs["igGetShortcutRoutingData"][1]["call_args"] = "(key_chord)" defs["igGetShortcutRoutingData"][1]["cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["defaults"] = {} defs["igGetShortcutRoutingData"][1]["funcname"] = "GetShortcutRoutingData" -defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3192" +defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3254" defs["igGetShortcutRoutingData"][1]["namespace"] = "ImGui" defs["igGetShortcutRoutingData"][1]["ov_cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["ret"] = "ImGuiKeyRoutingData*" @@ -16917,7 +16968,7 @@ defs["igGetStateStorage"][1]["call_args"] = "()" defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" -defs["igGetStateStorage"][1]["location"] = "imgui:905" +defs["igGetStateStorage"][1]["location"] = "imgui:907" defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -16933,7 +16984,7 @@ defs["igGetStyle"][1]["call_args"] = "()" defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" -defs["igGetStyle"][1]["location"] = "imgui:303" +defs["igGetStyle"][1]["location"] = "imgui:305" defs["igGetStyle"][1]["namespace"] = "ImGui" defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" @@ -16953,7 +17004,7 @@ defs["igGetStyleColorName"][1]["call_args"] = "(idx)" defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" -defs["igGetStyleColorName"][1]["location"] = "imgui:903" +defs["igGetStyleColorName"][1]["location"] = "imgui:905" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -16972,7 +17023,7 @@ defs["igGetStyleColorVec4"][1]["call_args"] = "(idx)" defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" -defs["igGetStyleColorVec4"][1]["location"] = "imgui:447" +defs["igGetStyleColorVec4"][1]["location"] = "imgui:449" defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" @@ -16992,7 +17043,7 @@ defs["igGetStyleVarInfo"][1]["call_args"] = "(idx)" defs["igGetStyleVarInfo"][1]["cimguiname"] = "igGetStyleVarInfo" defs["igGetStyleVarInfo"][1]["defaults"] = {} defs["igGetStyleVarInfo"][1]["funcname"] = "GetStyleVarInfo" -defs["igGetStyleVarInfo"][1]["location"] = "imgui_internal:3051" +defs["igGetStyleVarInfo"][1]["location"] = "imgui_internal:3109" defs["igGetStyleVarInfo"][1]["namespace"] = "ImGui" defs["igGetStyleVarInfo"][1]["ov_cimguiname"] = "igGetStyleVarInfo" defs["igGetStyleVarInfo"][1]["ret"] = "const ImGuiDataVarInfo*" @@ -17008,7 +17059,7 @@ defs["igGetTextLineHeight"][1]["call_args"] = "()" defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" -defs["igGetTextLineHeight"][1]["location"] = "imgui:478" +defs["igGetTextLineHeight"][1]["location"] = "imgui:480" defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" @@ -17024,7 +17075,7 @@ defs["igGetTextLineHeightWithSpacing"][1]["call_args"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" -defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:479" +defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:481" defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" @@ -17040,7 +17091,7 @@ defs["igGetTime"][1]["call_args"] = "()" defs["igGetTime"][1]["cimguiname"] = "igGetTime" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" -defs["igGetTime"][1]["location"] = "imgui:900" +defs["igGetTime"][1]["location"] = "imgui:902" defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -17056,7 +17107,7 @@ defs["igGetTopMostAndVisiblePopupModal"][1]["call_args"] = "()" defs["igGetTopMostAndVisiblePopupModal"][1]["cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["defaults"] = {} defs["igGetTopMostAndVisiblePopupModal"][1]["funcname"] = "GetTopMostAndVisiblePopupModal" -defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3071" +defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3129" defs["igGetTopMostAndVisiblePopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostAndVisiblePopupModal"][1]["ov_cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["ret"] = "ImGuiWindow*" @@ -17072,7 +17123,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:3070" +defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:3128" defs["igGetTopMostPopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostPopupModal"][1]["ov_cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["ret"] = "ImGuiWindow*" @@ -17088,7 +17139,7 @@ defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" -defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:639" +defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:641" defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" @@ -17113,7 +17164,7 @@ defs["igGetTypematicRepeatRate"][1]["call_args"] = "(flags,repeat_delay,repeat_r defs["igGetTypematicRepeatRate"][1]["cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["defaults"] = {} defs["igGetTypematicRepeatRate"][1]["funcname"] = "GetTypematicRepeatRate" -defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3138" +defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3199" defs["igGetTypematicRepeatRate"][1]["namespace"] = "ImGui" defs["igGetTypematicRepeatRate"][1]["ov_cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["ret"] = "void" @@ -17133,7 +17184,7 @@ defs["igGetTypingSelectRequest"][1]["cimguiname"] = "igGetTypingSelectRequest" defs["igGetTypingSelectRequest"][1]["defaults"] = {} defs["igGetTypingSelectRequest"][1]["defaults"]["flags"] = "ImGuiTypingSelectFlags_None" defs["igGetTypingSelectRequest"][1]["funcname"] = "GetTypingSelectRequest" -defs["igGetTypingSelectRequest"][1]["location"] = "imgui_internal:3214" +defs["igGetTypingSelectRequest"][1]["location"] = "imgui_internal:3276" defs["igGetTypingSelectRequest"][1]["namespace"] = "ImGui" defs["igGetTypingSelectRequest"][1]["ov_cimguiname"] = "igGetTypingSelectRequest" defs["igGetTypingSelectRequest"][1]["ret"] = "ImGuiTypingSelectRequest*" @@ -17149,7 +17200,7 @@ defs["igGetVersion"][1]["call_args"] = "()" defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" -defs["igGetVersion"][1]["location"] = "imgui:319" +defs["igGetVersion"][1]["location"] = "imgui:321" defs["igGetVersion"][1]["namespace"] = "ImGui" defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" @@ -17168,7 +17219,7 @@ defs["igGetWindowContentRegionMax"][1]["call_args"] = "()" defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegionMax" defs["igGetWindowContentRegionMax"][1]["defaults"] = {} defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:401" +defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:403" defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionMax"][1]["nonUDT"] = 1 defs["igGetWindowContentRegionMax"][1]["ov_cimguiname"] = "igGetWindowContentRegionMax" @@ -17188,7 +17239,7 @@ defs["igGetWindowContentRegionMin"][1]["call_args"] = "()" defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegionMin" defs["igGetWindowContentRegionMin"][1]["defaults"] = {} defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:400" +defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:402" defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionMin"][1]["nonUDT"] = 1 defs["igGetWindowContentRegionMin"][1]["ov_cimguiname"] = "igGetWindowContentRegionMin" @@ -17205,7 +17256,7 @@ defs["igGetWindowDrawList"][1]["call_args"] = "()" defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" -defs["igGetWindowDrawList"][1]["location"] = "imgui:369" +defs["igGetWindowDrawList"][1]["location"] = "imgui:371" defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" @@ -17221,7 +17272,7 @@ defs["igGetWindowHeight"][1]["call_args"] = "()" defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" -defs["igGetWindowHeight"][1]["location"] = "imgui:373" +defs["igGetWindowHeight"][1]["location"] = "imgui:375" defs["igGetWindowHeight"][1]["namespace"] = "ImGui" defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" @@ -17240,7 +17291,7 @@ defs["igGetWindowPos"][1]["call_args"] = "()" defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" -defs["igGetWindowPos"][1]["location"] = "imgui:370" +defs["igGetWindowPos"][1]["location"] = "imgui:372" defs["igGetWindowPos"][1]["namespace"] = "ImGui" defs["igGetWindowPos"][1]["nonUDT"] = 1 defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" @@ -17263,7 +17314,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:3349" +defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3411" defs["igGetWindowResizeBorderID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeBorderID"][1]["ov_cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["ret"] = "ImGuiID" @@ -17285,7 +17336,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:3348" +defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3410" defs["igGetWindowResizeCornerID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeCornerID"][1]["ov_cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["ret"] = "ImGuiID" @@ -17307,7 +17358,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:3347" +defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3409" defs["igGetWindowScrollbarID"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarID"][1]["ov_cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["ret"] = "ImGuiID" @@ -17332,7 +17383,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:3346" +defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3408" defs["igGetWindowScrollbarRect"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarRect"][1]["nonUDT"] = 1 defs["igGetWindowScrollbarRect"][1]["ov_cimguiname"] = "igGetWindowScrollbarRect" @@ -17352,7 +17403,7 @@ defs["igGetWindowSize"][1]["call_args"] = "()" defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" -defs["igGetWindowSize"][1]["location"] = "imgui:371" +defs["igGetWindowSize"][1]["location"] = "imgui:373" defs["igGetWindowSize"][1]["namespace"] = "ImGui" defs["igGetWindowSize"][1]["nonUDT"] = 1 defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" @@ -17369,7 +17420,7 @@ defs["igGetWindowWidth"][1]["call_args"] = "()" defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" -defs["igGetWindowWidth"][1]["location"] = "imgui:372" +defs["igGetWindowWidth"][1]["location"] = "imgui:374" defs["igGetWindowWidth"][1]["namespace"] = "ImGui" defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" @@ -17388,7 +17439,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:444" +defs["igImAbs"][1]["location"] = "imgui_internal:447" defs["igImAbs"][1]["ov_cimguiname"] = "igImAbs_Int" defs["igImAbs"][1]["ret"] = "int" defs["igImAbs"][1]["signature"] = "(int)" @@ -17404,7 +17455,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:445" +defs["igImAbs"][2]["location"] = "imgui_internal:448" defs["igImAbs"][2]["ov_cimguiname"] = "igImAbs_Float" defs["igImAbs"][2]["ret"] = "float" defs["igImAbs"][2]["signature"] = "(float)" @@ -17420,7 +17471,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:446" +defs["igImAbs"][3]["location"] = "imgui_internal:449" defs["igImAbs"][3]["ov_cimguiname"] = "igImAbs_double" defs["igImAbs"][3]["ret"] = "double" defs["igImAbs"][3]["signature"] = "(double)" @@ -17443,7 +17494,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:357" +defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:360" defs["igImAlphaBlendColors"][1]["ov_cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["ret"] = "ImU32" defs["igImAlphaBlendColors"][1]["signature"] = "(ImU32,ImU32)" @@ -17476,7 +17527,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:490" +defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:493" defs["igImBezierCubicCalc"][1]["nonUDT"] = 1 defs["igImBezierCubicCalc"][1]["ov_cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["ret"] = "void" @@ -17513,7 +17564,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:491" +defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:494" defs["igImBezierCubicClosestPoint"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPoint"][1]["ov_cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["ret"] = "void" @@ -17550,7 +17601,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:492" +defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:495" defs["igImBezierCubicClosestPointCasteljau"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPointCasteljau"][1]["ov_cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["ret"] = "void" @@ -17581,7 +17632,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:493" +defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:496" defs["igImBezierQuadraticCalc"][1]["nonUDT"] = 1 defs["igImBezierQuadraticCalc"][1]["ov_cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["ret"] = "void" @@ -17603,7 +17654,7 @@ defs["igImBitArrayClearAllBits"][1]["call_args"] = "(arr,bitcount)" defs["igImBitArrayClearAllBits"][1]["cimguiname"] = "igImBitArrayClearAllBits" defs["igImBitArrayClearAllBits"][1]["defaults"] = {} defs["igImBitArrayClearAllBits"][1]["funcname"] = "ImBitArrayClearAllBits" -defs["igImBitArrayClearAllBits"][1]["location"] = "imgui_internal:562" +defs["igImBitArrayClearAllBits"][1]["location"] = "imgui_internal:565" defs["igImBitArrayClearAllBits"][1]["ov_cimguiname"] = "igImBitArrayClearAllBits" defs["igImBitArrayClearAllBits"][1]["ret"] = "void" defs["igImBitArrayClearAllBits"][1]["signature"] = "(ImU32*,int)" @@ -17624,7 +17675,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:564" +defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:567" defs["igImBitArrayClearBit"][1]["ov_cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["ret"] = "void" defs["igImBitArrayClearBit"][1]["signature"] = "(ImU32*,int)" @@ -17642,7 +17693,7 @@ defs["igImBitArrayGetStorageSizeInBytes"][1]["call_args"] = "(bitcount)" defs["igImBitArrayGetStorageSizeInBytes"][1]["cimguiname"] = "igImBitArrayGetStorageSizeInBytes" defs["igImBitArrayGetStorageSizeInBytes"][1]["defaults"] = {} defs["igImBitArrayGetStorageSizeInBytes"][1]["funcname"] = "ImBitArrayGetStorageSizeInBytes" -defs["igImBitArrayGetStorageSizeInBytes"][1]["location"] = "imgui_internal:561" +defs["igImBitArrayGetStorageSizeInBytes"][1]["location"] = "imgui_internal:564" defs["igImBitArrayGetStorageSizeInBytes"][1]["ov_cimguiname"] = "igImBitArrayGetStorageSizeInBytes" defs["igImBitArrayGetStorageSizeInBytes"][1]["ret"] = "size_t" defs["igImBitArrayGetStorageSizeInBytes"][1]["signature"] = "(int)" @@ -17663,7 +17714,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:565" +defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:568" defs["igImBitArraySetBit"][1]["ov_cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["ret"] = "void" defs["igImBitArraySetBit"][1]["signature"] = "(ImU32*,int)" @@ -17687,7 +17738,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:566" +defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:569" defs["igImBitArraySetBitRange"][1]["ov_cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["ret"] = "void" defs["igImBitArraySetBitRange"][1]["signature"] = "(ImU32*,int,int)" @@ -17708,7 +17759,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:563" +defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:566" defs["igImBitArrayTestBit"][1]["ov_cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["ret"] = "bool" defs["igImBitArrayTestBit"][1]["signature"] = "(const ImU32*,int)" @@ -17726,7 +17777,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:379" +defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:382" defs["igImCharIsBlankA"][1]["ov_cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["ret"] = "bool" defs["igImCharIsBlankA"][1]["signature"] = "(char)" @@ -17744,7 +17795,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:380" +defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:383" defs["igImCharIsBlankW"][1]["ov_cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["ret"] = "bool" defs["igImCharIsBlankW"][1]["signature"] = "(unsigned int)" @@ -17771,7 +17822,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:468" +defs["igImClamp"][1]["location"] = "imgui_internal:471" defs["igImClamp"][1]["nonUDT"] = 1 defs["igImClamp"][1]["ov_cimguiname"] = "igImClamp" defs["igImClamp"][1]["ret"] = "void" @@ -17793,7 +17844,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:481" +defs["igImDot"][1]["location"] = "imgui_internal:484" defs["igImDot"][1]["ov_cimguiname"] = "igImDot" defs["igImDot"][1]["ret"] = "float" defs["igImDot"][1]["signature"] = "(const ImVec2,const ImVec2)" @@ -17817,7 +17868,7 @@ defs["igImExponentialMovingAverage"][1]["call_args"] = "(avg,sample,n)" defs["igImExponentialMovingAverage"][1]["cimguiname"] = "igImExponentialMovingAverage" defs["igImExponentialMovingAverage"][1]["defaults"] = {} defs["igImExponentialMovingAverage"][1]["funcname"] = "ImExponentialMovingAverage" -defs["igImExponentialMovingAverage"][1]["location"] = "imgui_internal:486" +defs["igImExponentialMovingAverage"][1]["location"] = "imgui_internal:489" defs["igImExponentialMovingAverage"][1]["ov_cimguiname"] = "igImExponentialMovingAverage" defs["igImExponentialMovingAverage"][1]["ret"] = "float" defs["igImExponentialMovingAverage"][1]["signature"] = "(float,float,int)" @@ -17835,7 +17886,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:418" +defs["igImFileClose"][1]["location"] = "imgui_internal:421" defs["igImFileClose"][1]["ov_cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["ret"] = "bool" defs["igImFileClose"][1]["signature"] = "(ImFileHandle)" @@ -17853,7 +17904,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:419" +defs["igImFileGetSize"][1]["location"] = "imgui_internal:422" defs["igImFileGetSize"][1]["ov_cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["ret"] = "ImU64" defs["igImFileGetSize"][1]["signature"] = "(ImFileHandle)" @@ -17882,7 +17933,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:425" +defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:428" defs["igImFileLoadToMemory"][1]["ov_cimguiname"] = "igImFileLoadToMemory" defs["igImFileLoadToMemory"][1]["ret"] = "void*" defs["igImFileLoadToMemory"][1]["signature"] = "(const char*,const char*,size_t*,int)" @@ -17903,7 +17954,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:417" +defs["igImFileOpen"][1]["location"] = "imgui_internal:420" defs["igImFileOpen"][1]["ov_cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["ret"] = "ImFileHandle" defs["igImFileOpen"][1]["signature"] = "(const char*,const char*)" @@ -17930,7 +17981,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:420" +defs["igImFileRead"][1]["location"] = "imgui_internal:423" defs["igImFileRead"][1]["ov_cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["ret"] = "ImU64" defs["igImFileRead"][1]["signature"] = "(void*,ImU64,ImU64,ImFileHandle)" @@ -17957,7 +18008,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:421" +defs["igImFileWrite"][1]["location"] = "imgui_internal:424" defs["igImFileWrite"][1]["ov_cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["ret"] = "ImU64" defs["igImFileWrite"][1]["signature"] = "(const void*,ImU64,ImU64,ImFileHandle)" @@ -17975,7 +18026,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:478" +defs["igImFloor"][1]["location"] = "imgui_internal:481" defs["igImFloor"][1]["ov_cimguiname"] = "igImFloor_Float" defs["igImFloor"][1]["ret"] = "float" defs["igImFloor"][1]["signature"] = "(float)" @@ -17994,7 +18045,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:479" +defs["igImFloor"][2]["location"] = "imgui_internal:482" defs["igImFloor"][2]["nonUDT"] = 1 defs["igImFloor"][2]["ov_cimguiname"] = "igImFloor_Vec2" defs["igImFloor"][2]["ret"] = "void" @@ -18014,7 +18065,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:3484" +defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3545" defs["igImFontAtlasBuildFinish"][1]["ov_cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["ret"] = "void" defs["igImFontAtlasBuildFinish"][1]["signature"] = "(ImFontAtlas*)" @@ -18032,7 +18083,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:3481" +defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3542" defs["igImFontAtlasBuildInit"][1]["ov_cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["ret"] = "void" defs["igImFontAtlasBuildInit"][1]["signature"] = "(ImFontAtlas*)" @@ -18053,7 +18104,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:3487" +defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:3548" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["signature"] = "(unsigned char[256],float)" @@ -18089,7 +18140,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:3488" +defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:3549" 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)" @@ -18110,7 +18161,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:3483" +defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3544" defs["igImFontAtlasBuildPackCustomRects"][1]["ov_cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["ret"] = "void" defs["igImFontAtlasBuildPackCustomRects"][1]["signature"] = "(ImFontAtlas*,void*)" @@ -18149,7 +18200,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:3486" +defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3547" 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)" @@ -18188,7 +18239,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:3485" +defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3546" 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)" @@ -18218,7 +18269,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:3482" +defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3543" defs["igImFontAtlasBuildSetupFont"][1]["ov_cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["ret"] = "void" defs["igImFontAtlasBuildSetupFont"][1]["signature"] = "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)" @@ -18233,7 +18284,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:3478" +defs["igImFontAtlasGetBuilderForStbTruetype"][1]["location"] = "imgui_internal:3539" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ov_cimguiname"] = "igImFontAtlasGetBuilderForStbTruetype" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ret"] = "const ImFontBuilderIO*" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["signature"] = "()" @@ -18251,7 +18302,7 @@ defs["igImFontAtlasUpdateConfigDataPointers"][1]["call_args"] = "(atlas)" defs["igImFontAtlasUpdateConfigDataPointers"][1]["cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" defs["igImFontAtlasUpdateConfigDataPointers"][1]["defaults"] = {} defs["igImFontAtlasUpdateConfigDataPointers"][1]["funcname"] = "ImFontAtlasUpdateConfigDataPointers" -defs["igImFontAtlasUpdateConfigDataPointers"][1]["location"] = "imgui_internal:3480" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["location"] = "imgui_internal:3541" defs["igImFontAtlasUpdateConfigDataPointers"][1]["ov_cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" defs["igImFontAtlasUpdateConfigDataPointers"][1]["ret"] = "void" defs["igImFontAtlasUpdateConfigDataPointers"][1]["signature"] = "(ImFontAtlas*)" @@ -18279,7 +18330,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:384" +defs["igImFormatString"][1]["location"] = "imgui_internal:387" defs["igImFormatString"][1]["ov_cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["ret"] = "int" defs["igImFormatString"][1]["signature"] = "(char*,size_t,const char*,...)" @@ -18307,7 +18358,7 @@ defs["igImFormatStringToTempBuffer"][1]["cimguiname"] = "igImFormatStringToTempB defs["igImFormatStringToTempBuffer"][1]["defaults"] = {} defs["igImFormatStringToTempBuffer"][1]["funcname"] = "ImFormatStringToTempBuffer" defs["igImFormatStringToTempBuffer"][1]["isvararg"] = "...)" -defs["igImFormatStringToTempBuffer"][1]["location"] = "imgui_internal:386" +defs["igImFormatStringToTempBuffer"][1]["location"] = "imgui_internal:389" defs["igImFormatStringToTempBuffer"][1]["ov_cimguiname"] = "igImFormatStringToTempBuffer" defs["igImFormatStringToTempBuffer"][1]["ret"] = "void" defs["igImFormatStringToTempBuffer"][1]["signature"] = "(const char**,const char**,const char*,...)" @@ -18334,7 +18385,7 @@ defs["igImFormatStringToTempBufferV"][1]["call_args"] = "(out_buf,out_buf_end,fm defs["igImFormatStringToTempBufferV"][1]["cimguiname"] = "igImFormatStringToTempBufferV" defs["igImFormatStringToTempBufferV"][1]["defaults"] = {} defs["igImFormatStringToTempBufferV"][1]["funcname"] = "ImFormatStringToTempBufferV" -defs["igImFormatStringToTempBufferV"][1]["location"] = "imgui_internal:387" +defs["igImFormatStringToTempBufferV"][1]["location"] = "imgui_internal:390" defs["igImFormatStringToTempBufferV"][1]["ov_cimguiname"] = "igImFormatStringToTempBufferV" defs["igImFormatStringToTempBufferV"][1]["ret"] = "void" defs["igImFormatStringToTempBufferV"][1]["signature"] = "(const char**,const char**,const char*,va_list)" @@ -18361,7 +18412,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:385" +defs["igImFormatStringV"][1]["location"] = "imgui_internal:388" defs["igImFormatStringV"][1]["ov_cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["ret"] = "int" defs["igImFormatStringV"][1]["signature"] = "(char*,size_t,const char*,va_list)" @@ -18386,7 +18437,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:348" +defs["igImHashData"][1]["location"] = "imgui_internal:351" defs["igImHashData"][1]["ov_cimguiname"] = "igImHashData" defs["igImHashData"][1]["ret"] = "ImGuiID" defs["igImHashData"][1]["signature"] = "(const void*,size_t,ImGuiID)" @@ -18412,7 +18463,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:349" +defs["igImHashStr"][1]["location"] = "imgui_internal:352" defs["igImHashStr"][1]["ov_cimguiname"] = "igImHashStr" defs["igImHashStr"][1]["ret"] = "ImGuiID" defs["igImHashStr"][1]["signature"] = "(const char*,size_t,ImGuiID)" @@ -18433,7 +18484,7 @@ 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:475" +defs["igImInvLength"][1]["location"] = "imgui_internal:478" defs["igImInvLength"][1]["ov_cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["ret"] = "float" defs["igImInvLength"][1]["signature"] = "(const ImVec2,float)" @@ -18451,7 +18502,7 @@ 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:485" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["location"] = "imgui_internal:488" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ov_cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ret"] = "bool" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["signature"] = "(float)" @@ -18469,7 +18520,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:360" +defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:363" defs["igImIsPowerOfTwo"][1]["ov_cimguiname"] = "igImIsPowerOfTwo_Int" defs["igImIsPowerOfTwo"][1]["ret"] = "bool" defs["igImIsPowerOfTwo"][1]["signature"] = "(int)" @@ -18485,7 +18536,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:361" +defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:364" defs["igImIsPowerOfTwo"][2]["ov_cimguiname"] = "igImIsPowerOfTwo_U64" defs["igImIsPowerOfTwo"][2]["ret"] = "bool" defs["igImIsPowerOfTwo"][2]["signature"] = "(ImU64)" @@ -18504,7 +18555,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:473" +defs["igImLengthSqr"][1]["location"] = "imgui_internal:476" defs["igImLengthSqr"][1]["ov_cimguiname"] = "igImLengthSqr_Vec2" defs["igImLengthSqr"][1]["ret"] = "float" defs["igImLengthSqr"][1]["signature"] = "(const ImVec2)" @@ -18520,7 +18571,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:474" +defs["igImLengthSqr"][2]["location"] = "imgui_internal:477" defs["igImLengthSqr"][2]["ov_cimguiname"] = "igImLengthSqr_Vec4" defs["igImLengthSqr"][2]["ret"] = "float" defs["igImLengthSqr"][2]["signature"] = "(const ImVec4)" @@ -18548,7 +18599,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:469" +defs["igImLerp"][1]["location"] = "imgui_internal:472" defs["igImLerp"][1]["nonUDT"] = 1 defs["igImLerp"][1]["ov_cimguiname"] = "igImLerp_Vec2Float" defs["igImLerp"][1]["ret"] = "void" @@ -18574,7 +18625,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:470" +defs["igImLerp"][2]["location"] = "imgui_internal:473" defs["igImLerp"][2]["nonUDT"] = 1 defs["igImLerp"][2]["ov_cimguiname"] = "igImLerp_Vec2Vec2" defs["igImLerp"][2]["ret"] = "void" @@ -18600,7 +18651,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:471" +defs["igImLerp"][3]["location"] = "imgui_internal:474" defs["igImLerp"][3]["nonUDT"] = 1 defs["igImLerp"][3]["ov_cimguiname"] = "igImLerp_Vec4" defs["igImLerp"][3]["ret"] = "void" @@ -18630,7 +18681,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:494" +defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:497" defs["igImLineClosestPoint"][1]["nonUDT"] = 1 defs["igImLineClosestPoint"][1]["ov_cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["ret"] = "void" @@ -18655,7 +18706,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:483" +defs["igImLinearSweep"][1]["location"] = "imgui_internal:486" defs["igImLinearSweep"][1]["ov_cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["ret"] = "float" defs["igImLinearSweep"][1]["signature"] = "(float,float,float)" @@ -18673,7 +18724,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:442" +defs["igImLog"][1]["location"] = "imgui_internal:445" defs["igImLog"][1]["ov_cimguiname"] = "igImLog_Float" defs["igImLog"][1]["ret"] = "float" defs["igImLog"][1]["signature"] = "(float)" @@ -18689,7 +18740,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:443" +defs["igImLog"][2]["location"] = "imgui_internal:446" defs["igImLog"][2]["ov_cimguiname"] = "igImLog_double" defs["igImLog"][2]["ret"] = "double" defs["igImLog"][2]["signature"] = "(double)" @@ -18714,7 +18765,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:467" +defs["igImMax"][1]["location"] = "imgui_internal:470" defs["igImMax"][1]["nonUDT"] = 1 defs["igImMax"][1]["ov_cimguiname"] = "igImMax" defs["igImMax"][1]["ret"] = "void" @@ -18739,7 +18790,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:466" +defs["igImMin"][1]["location"] = "imgui_internal:469" defs["igImMin"][1]["nonUDT"] = 1 defs["igImMin"][1]["ov_cimguiname"] = "igImMin" defs["igImMin"][1]["ret"] = "void" @@ -18761,7 +18812,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:480" +defs["igImModPositive"][1]["location"] = "imgui_internal:483" defs["igImModPositive"][1]["ov_cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["ret"] = "int" defs["igImModPositive"][1]["signature"] = "(int,int)" @@ -18785,7 +18836,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:484" +defs["igImMul"][1]["location"] = "imgui_internal:487" defs["igImMul"][1]["nonUDT"] = 1 defs["igImMul"][1]["ov_cimguiname"] = "igImMul" defs["igImMul"][1]["ret"] = "void" @@ -18804,7 +18855,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:389" +defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:392" defs["igImParseFormatFindEnd"][1]["ov_cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["ret"] = "const char*" defs["igImParseFormatFindEnd"][1]["signature"] = "(const char*)" @@ -18822,7 +18873,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:388" +defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:391" defs["igImParseFormatFindStart"][1]["ov_cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["ret"] = "const char*" defs["igImParseFormatFindStart"][1]["signature"] = "(const char*)" @@ -18843,7 +18894,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:393" +defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:396" defs["igImParseFormatPrecision"][1]["ov_cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["ret"] = "int" defs["igImParseFormatPrecision"][1]["signature"] = "(const char*,int)" @@ -18867,7 +18918,7 @@ defs["igImParseFormatSanitizeForPrinting"][1]["call_args"] = "(fmt_in,fmt_out,fm defs["igImParseFormatSanitizeForPrinting"][1]["cimguiname"] = "igImParseFormatSanitizeForPrinting" defs["igImParseFormatSanitizeForPrinting"][1]["defaults"] = {} defs["igImParseFormatSanitizeForPrinting"][1]["funcname"] = "ImParseFormatSanitizeForPrinting" -defs["igImParseFormatSanitizeForPrinting"][1]["location"] = "imgui_internal:391" +defs["igImParseFormatSanitizeForPrinting"][1]["location"] = "imgui_internal:394" defs["igImParseFormatSanitizeForPrinting"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForPrinting" defs["igImParseFormatSanitizeForPrinting"][1]["ret"] = "void" defs["igImParseFormatSanitizeForPrinting"][1]["signature"] = "(const char*,char*,size_t)" @@ -18891,7 +18942,7 @@ defs["igImParseFormatSanitizeForScanning"][1]["call_args"] = "(fmt_in,fmt_out,fm defs["igImParseFormatSanitizeForScanning"][1]["cimguiname"] = "igImParseFormatSanitizeForScanning" defs["igImParseFormatSanitizeForScanning"][1]["defaults"] = {} defs["igImParseFormatSanitizeForScanning"][1]["funcname"] = "ImParseFormatSanitizeForScanning" -defs["igImParseFormatSanitizeForScanning"][1]["location"] = "imgui_internal:392" +defs["igImParseFormatSanitizeForScanning"][1]["location"] = "imgui_internal:395" defs["igImParseFormatSanitizeForScanning"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForScanning" defs["igImParseFormatSanitizeForScanning"][1]["ret"] = "const char*" defs["igImParseFormatSanitizeForScanning"][1]["signature"] = "(const char*,char*,size_t)" @@ -18915,7 +18966,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:390" +defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:393" defs["igImParseFormatTrimDecorations"][1]["ov_cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["ret"] = "const char*" defs["igImParseFormatTrimDecorations"][1]["signature"] = "(const char*,char*,size_t)" @@ -18936,7 +18987,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:440" +defs["igImPow"][1]["location"] = "imgui_internal:443" defs["igImPow"][1]["ov_cimguiname"] = "igImPow_Float" defs["igImPow"][1]["ret"] = "float" defs["igImPow"][1]["signature"] = "(float,float)" @@ -18955,7 +19006,7 @@ 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:441" +defs["igImPow"][2]["location"] = "imgui_internal:444" defs["igImPow"][2]["ov_cimguiname"] = "igImPow_double" defs["igImPow"][2]["ret"] = "double" defs["igImPow"][2]["signature"] = "(double,double)" @@ -18985,7 +19036,7 @@ 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:353" +defs["igImQsort"][1]["location"] = "imgui_internal:356" 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*))" @@ -19012,7 +19063,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:482" +defs["igImRotate"][1]["location"] = "imgui_internal:485" defs["igImRotate"][1]["nonUDT"] = 1 defs["igImRotate"][1]["ov_cimguiname"] = "igImRotate" defs["igImRotate"][1]["ret"] = "void" @@ -19031,7 +19082,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:452" +defs["igImRsqrt"][1]["location"] = "imgui_internal:455" defs["igImRsqrt"][1]["ov_cimguiname"] = "igImRsqrt_Float" defs["igImRsqrt"][1]["ret"] = "float" defs["igImRsqrt"][1]["signature"] = "(float)" @@ -19047,7 +19098,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:454" +defs["igImRsqrt"][2]["location"] = "imgui_internal:457" defs["igImRsqrt"][2]["ov_cimguiname"] = "igImRsqrt_double" defs["igImRsqrt"][2]["ret"] = "double" defs["igImRsqrt"][2]["signature"] = "(double)" @@ -19066,7 +19117,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:472" +defs["igImSaturate"][1]["location"] = "imgui_internal:475" defs["igImSaturate"][1]["ov_cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["ret"] = "float" defs["igImSaturate"][1]["signature"] = "(float)" @@ -19084,7 +19135,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:447" +defs["igImSign"][1]["location"] = "imgui_internal:450" defs["igImSign"][1]["ov_cimguiname"] = "igImSign_Float" defs["igImSign"][1]["ret"] = "float" defs["igImSign"][1]["signature"] = "(float)" @@ -19100,7 +19151,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:448" +defs["igImSign"][2]["location"] = "imgui_internal:451" defs["igImSign"][2]["ov_cimguiname"] = "igImSign_double" defs["igImSign"][2]["ret"] = "double" defs["igImSign"][2]["signature"] = "(double)" @@ -19119,7 +19170,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:374" +defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:377" defs["igImStrSkipBlank"][1]["ov_cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["ret"] = "const char*" defs["igImStrSkipBlank"][1]["signature"] = "(const char*)" @@ -19137,7 +19188,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:373" +defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:376" defs["igImStrTrimBlanks"][1]["ov_cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["ret"] = "void" defs["igImStrTrimBlanks"][1]["signature"] = "(char*)" @@ -19158,7 +19209,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:376" +defs["igImStrbolW"][1]["location"] = "imgui_internal:379" defs["igImStrbolW"][1]["ov_cimguiname"] = "igImStrbolW" defs["igImStrbolW"][1]["ret"] = "const ImWchar*" defs["igImStrbolW"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -19182,7 +19233,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:370" +defs["igImStrchrRange"][1]["location"] = "imgui_internal:373" defs["igImStrchrRange"][1]["ov_cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["ret"] = "const char*" defs["igImStrchrRange"][1]["signature"] = "(const char*,const char*,char)" @@ -19200,7 +19251,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:368" +defs["igImStrdup"][1]["location"] = "imgui_internal:371" defs["igImStrdup"][1]["ov_cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["ret"] = "char*" defs["igImStrdup"][1]["signature"] = "(const char*)" @@ -19224,7 +19275,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:369" +defs["igImStrdupcpy"][1]["location"] = "imgui_internal:372" defs["igImStrdupcpy"][1]["ov_cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["ret"] = "char*" defs["igImStrdupcpy"][1]["signature"] = "(char*,size_t*,const char*)" @@ -19245,7 +19296,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:371" +defs["igImStreolRange"][1]["location"] = "imgui_internal:374" defs["igImStreolRange"][1]["ov_cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["ret"] = "const char*" defs["igImStreolRange"][1]["signature"] = "(const char*,const char*)" @@ -19266,7 +19317,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:365" +defs["igImStricmp"][1]["location"] = "imgui_internal:368" defs["igImStricmp"][1]["ov_cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["ret"] = "int" defs["igImStricmp"][1]["signature"] = "(const char*,const char*)" @@ -19293,7 +19344,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:372" +defs["igImStristr"][1]["location"] = "imgui_internal:375" defs["igImStristr"][1]["ov_cimguiname"] = "igImStristr" defs["igImStristr"][1]["ret"] = "const char*" defs["igImStristr"][1]["signature"] = "(const char*,const char*,const char*,const char*)" @@ -19311,7 +19362,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:375" +defs["igImStrlenW"][1]["location"] = "imgui_internal:378" defs["igImStrlenW"][1]["ov_cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["ret"] = "int" defs["igImStrlenW"][1]["signature"] = "(const ImWchar*)" @@ -19335,7 +19386,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:367" +defs["igImStrncpy"][1]["location"] = "imgui_internal:370" defs["igImStrncpy"][1]["ov_cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["ret"] = "void" defs["igImStrncpy"][1]["signature"] = "(char*,const char*,size_t)" @@ -19359,7 +19410,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:366" +defs["igImStrnicmp"][1]["location"] = "imgui_internal:369" defs["igImStrnicmp"][1]["ov_cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["ret"] = "int" defs["igImStrnicmp"][1]["signature"] = "(const char*,const char*,size_t)" @@ -19383,7 +19434,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:398" +defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:401" defs["igImTextCharFromUtf8"][1]["ov_cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["ret"] = "int" defs["igImTextCharFromUtf8"][1]["signature"] = "(unsigned int*,const char*,const char*)" @@ -19404,7 +19455,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:396" +defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:399" defs["igImTextCharToUtf8"][1]["ov_cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["ret"] = "const char*" defs["igImTextCharToUtf8"][1]["signature"] = "(char[5],unsigned int)" @@ -19425,7 +19476,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:400" +defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:403" defs["igImTextCountCharsFromUtf8"][1]["ov_cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["ret"] = "int" defs["igImTextCountCharsFromUtf8"][1]["signature"] = "(const char*,const char*)" @@ -19446,7 +19497,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:401" +defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:404" defs["igImTextCountUtf8BytesFromChar"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromChar"][1]["signature"] = "(const char*,const char*)" @@ -19467,7 +19518,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:402" +defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:405" defs["igImTextCountUtf8BytesFromStr"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromStr"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -19488,7 +19539,7 @@ defs["igImTextFindPreviousUtf8Codepoint"][1]["call_args"] = "(in_text_start,in_t defs["igImTextFindPreviousUtf8Codepoint"][1]["cimguiname"] = "igImTextFindPreviousUtf8Codepoint" defs["igImTextFindPreviousUtf8Codepoint"][1]["defaults"] = {} defs["igImTextFindPreviousUtf8Codepoint"][1]["funcname"] = "ImTextFindPreviousUtf8Codepoint" -defs["igImTextFindPreviousUtf8Codepoint"][1]["location"] = "imgui_internal:403" +defs["igImTextFindPreviousUtf8Codepoint"][1]["location"] = "imgui_internal:406" defs["igImTextFindPreviousUtf8Codepoint"][1]["ov_cimguiname"] = "igImTextFindPreviousUtf8Codepoint" defs["igImTextFindPreviousUtf8Codepoint"][1]["ret"] = "const char*" defs["igImTextFindPreviousUtf8Codepoint"][1]["signature"] = "(const char*,const char*)" @@ -19519,7 +19570,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:399" +defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:402" defs["igImTextStrFromUtf8"][1]["ov_cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["ret"] = "int" defs["igImTextStrFromUtf8"][1]["signature"] = "(ImWchar*,int,const char*,const char*,const char**)" @@ -19546,7 +19597,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:397" +defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:400" defs["igImTextStrToUtf8"][1]["ov_cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["ret"] = "int" defs["igImTextStrToUtf8"][1]["signature"] = "(char*,int,const ImWchar*,const ImWchar*)" @@ -19564,7 +19615,7 @@ defs["igImToUpper"][1]["call_args"] = "(c)" defs["igImToUpper"][1]["cimguiname"] = "igImToUpper" defs["igImToUpper"][1]["defaults"] = {} defs["igImToUpper"][1]["funcname"] = "ImToUpper" -defs["igImToUpper"][1]["location"] = "imgui_internal:378" +defs["igImToUpper"][1]["location"] = "imgui_internal:381" defs["igImToUpper"][1]["ov_cimguiname"] = "igImToUpper" defs["igImToUpper"][1]["ret"] = "char" defs["igImToUpper"][1]["signature"] = "(char)" @@ -19588,7 +19639,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:498" +defs["igImTriangleArea"][1]["location"] = "imgui_internal:501" defs["igImTriangleArea"][1]["ov_cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["ret"] = "float" defs["igImTriangleArea"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" @@ -19627,7 +19678,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:497" +defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:500" 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*)" @@ -19657,7 +19708,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:496" +defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:499" defs["igImTriangleClosestPoint"][1]["nonUDT"] = 1 defs["igImTriangleClosestPoint"][1]["ov_cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["ret"] = "void" @@ -19685,7 +19736,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:495" +defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:498" defs["igImTriangleContainsPoint"][1]["ov_cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["ret"] = "bool" defs["igImTriangleContainsPoint"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)" @@ -19703,7 +19754,7 @@ defs["igImTrunc"][1]["call_args"] = "(f)" defs["igImTrunc"][1]["cimguiname"] = "igImTrunc" defs["igImTrunc"][1]["defaults"] = {} defs["igImTrunc"][1]["funcname"] = "ImTrunc" -defs["igImTrunc"][1]["location"] = "imgui_internal:476" +defs["igImTrunc"][1]["location"] = "imgui_internal:479" defs["igImTrunc"][1]["ov_cimguiname"] = "igImTrunc_Float" defs["igImTrunc"][1]["ret"] = "float" defs["igImTrunc"][1]["signature"] = "(float)" @@ -19722,7 +19773,7 @@ defs["igImTrunc"][2]["call_args"] = "(v)" defs["igImTrunc"][2]["cimguiname"] = "igImTrunc" defs["igImTrunc"][2]["defaults"] = {} defs["igImTrunc"][2]["funcname"] = "ImTrunc" -defs["igImTrunc"][2]["location"] = "imgui_internal:477" +defs["igImTrunc"][2]["location"] = "imgui_internal:480" defs["igImTrunc"][2]["nonUDT"] = 1 defs["igImTrunc"][2]["ov_cimguiname"] = "igImTrunc_Vec2" defs["igImTrunc"][2]["ret"] = "void" @@ -19742,7 +19793,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:362" +defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:365" defs["igImUpperPowerOfTwo"][1]["ov_cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["ret"] = "int" defs["igImUpperPowerOfTwo"][1]["signature"] = "(int)" @@ -19779,7 +19830,7 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" -defs["igImage"][1]["location"] = "imgui:538" +defs["igImage"][1]["location"] = "imgui:540" defs["igImage"][1]["namespace"] = "ImGui" defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" @@ -19820,7 +19871,7 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" -defs["igImageButton"][1]["location"] = "imgui:539" +defs["igImageButton"][1]["location"] = "imgui:541" defs["igImageButton"][1]["namespace"] = "ImGui" defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" @@ -19861,7 +19912,7 @@ defs["igImageButtonEx"][1]["cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["defaults"] = {} defs["igImageButtonEx"][1]["defaults"]["flags"] = "0" defs["igImageButtonEx"][1]["funcname"] = "ImageButtonEx" -defs["igImageButtonEx"][1]["location"] = "imgui_internal:3335" +defs["igImageButtonEx"][1]["location"] = "imgui_internal:3397" defs["igImageButtonEx"][1]["namespace"] = "ImGui" defs["igImageButtonEx"][1]["ov_cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["ret"] = "bool" @@ -19881,7 +19932,7 @@ defs["igIndent"][1]["cimguiname"] = "igIndent" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" -defs["igIndent"][1]["location"] = "imgui:473" +defs["igIndent"][1]["location"] = "imgui:475" defs["igIndent"][1]["namespace"] = "ImGui" defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" @@ -19897,7 +19948,7 @@ defs["igInitialize"][1]["call_args"] = "()" defs["igInitialize"][1]["cimguiname"] = "igInitialize" defs["igInitialize"][1]["defaults"] = {} defs["igInitialize"][1]["funcname"] = "Initialize" -defs["igInitialize"][1]["location"] = "imgui_internal:2967" +defs["igInitialize"][1]["location"] = "imgui_internal:3025" defs["igInitialize"][1]["namespace"] = "ImGui" defs["igInitialize"][1]["ov_cimguiname"] = "igInitialize" defs["igInitialize"][1]["ret"] = "void" @@ -19935,7 +19986,7 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" -defs["igInputDouble"][1]["location"] = "imgui:610" +defs["igInputDouble"][1]["location"] = "imgui:612" defs["igInputDouble"][1]["namespace"] = "ImGui" defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" @@ -19973,7 +20024,7 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" -defs["igInputFloat"][1]["location"] = "imgui:602" +defs["igInputFloat"][1]["location"] = "imgui:604" defs["igInputFloat"][1]["namespace"] = "ImGui" defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" @@ -20003,7 +20054,7 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" -defs["igInputFloat2"][1]["location"] = "imgui:603" +defs["igInputFloat2"][1]["location"] = "imgui:605" defs["igInputFloat2"][1]["namespace"] = "ImGui" defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" @@ -20033,7 +20084,7 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" -defs["igInputFloat3"][1]["location"] = "imgui:604" +defs["igInputFloat3"][1]["location"] = "imgui:606" defs["igInputFloat3"][1]["namespace"] = "ImGui" defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" @@ -20063,7 +20114,7 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" -defs["igInputFloat4"][1]["location"] = "imgui:605" +defs["igInputFloat4"][1]["location"] = "imgui:607" defs["igInputFloat4"][1]["namespace"] = "ImGui" defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" @@ -20097,7 +20148,7 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" -defs["igInputInt"][1]["location"] = "imgui:606" +defs["igInputInt"][1]["location"] = "imgui:608" defs["igInputInt"][1]["namespace"] = "ImGui" defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" @@ -20123,7 +20174,7 @@ defs["igInputInt2"][1]["cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" -defs["igInputInt2"][1]["location"] = "imgui:607" +defs["igInputInt2"][1]["location"] = "imgui:609" defs["igInputInt2"][1]["namespace"] = "ImGui" defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" @@ -20149,7 +20200,7 @@ defs["igInputInt3"][1]["cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" -defs["igInputInt3"][1]["location"] = "imgui:608" +defs["igInputInt3"][1]["location"] = "imgui:610" defs["igInputInt3"][1]["namespace"] = "ImGui" defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" @@ -20175,7 +20226,7 @@ defs["igInputInt4"][1]["cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" -defs["igInputInt4"][1]["location"] = "imgui:609" +defs["igInputInt4"][1]["location"] = "imgui:611" defs["igInputInt4"][1]["namespace"] = "ImGui" defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" @@ -20216,7 +20267,7 @@ defs["igInputScalar"][1]["defaults"]["format"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalar"][1]["funcname"] = "InputScalar" -defs["igInputScalar"][1]["location"] = "imgui:611" +defs["igInputScalar"][1]["location"] = "imgui:613" defs["igInputScalar"][1]["namespace"] = "ImGui" defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" @@ -20260,7 +20311,7 @@ defs["igInputScalarN"][1]["defaults"]["format"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" -defs["igInputScalarN"][1]["location"] = "imgui:612" +defs["igInputScalarN"][1]["location"] = "imgui:614" defs["igInputScalarN"][1]["namespace"] = "ImGui" defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" @@ -20297,7 +20348,7 @@ defs["igInputText"][1]["defaults"]["callback"] = "NULL" defs["igInputText"][1]["defaults"]["flags"] = "0" defs["igInputText"][1]["defaults"]["user_data"] = "NULL" defs["igInputText"][1]["funcname"] = "InputText" -defs["igInputText"][1]["location"] = "imgui:599" +defs["igInputText"][1]["location"] = "imgui:601" defs["igInputText"][1]["namespace"] = "ImGui" defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" @@ -20316,7 +20367,7 @@ defs["igInputTextDeactivateHook"][1]["call_args"] = "(id)" defs["igInputTextDeactivateHook"][1]["cimguiname"] = "igInputTextDeactivateHook" defs["igInputTextDeactivateHook"][1]["defaults"] = {} defs["igInputTextDeactivateHook"][1]["funcname"] = "InputTextDeactivateHook" -defs["igInputTextDeactivateHook"][1]["location"] = "imgui_internal:3382" +defs["igInputTextDeactivateHook"][1]["location"] = "imgui_internal:3444" defs["igInputTextDeactivateHook"][1]["namespace"] = "ImGui" defs["igInputTextDeactivateHook"][1]["ov_cimguiname"] = "igInputTextDeactivateHook" defs["igInputTextDeactivateHook"][1]["ret"] = "void" @@ -20358,7 +20409,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:3381" +defs["igInputTextEx"][1]["location"] = "imgui_internal:3443" defs["igInputTextEx"][1]["namespace"] = "ImGui" defs["igInputTextEx"][1]["ov_cimguiname"] = "igInputTextEx" defs["igInputTextEx"][1]["ret"] = "bool" @@ -20399,7 +20450,7 @@ defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" -defs["igInputTextMultiline"][1]["location"] = "imgui:600" +defs["igInputTextMultiline"][1]["location"] = "imgui:602" defs["igInputTextMultiline"][1]["namespace"] = "ImGui" defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" @@ -20439,7 +20490,7 @@ defs["igInputTextWithHint"][1]["defaults"]["callback"] = "NULL" defs["igInputTextWithHint"][1]["defaults"]["flags"] = "0" defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextWithHint"][1]["funcname"] = "InputTextWithHint" -defs["igInputTextWithHint"][1]["location"] = "imgui:601" +defs["igInputTextWithHint"][1]["location"] = "imgui:603" defs["igInputTextWithHint"][1]["namespace"] = "ImGui" defs["igInputTextWithHint"][1]["ov_cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["ret"] = "bool" @@ -20465,7 +20516,7 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["defaults"]["flags"] = "0" defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" -defs["igInvisibleButton"][1]["location"] = "imgui:524" +defs["igInvisibleButton"][1]["location"] = "imgui:526" defs["igInvisibleButton"][1]["namespace"] = "ImGui" defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" @@ -20484,7 +20535,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:3141" +defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3202" defs["igIsActiveIdUsingNavDir"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavDir"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["ret"] = "bool" @@ -20503,7 +20554,7 @@ defs["igIsAliasKey"][1]["call_args"] = "(key)" defs["igIsAliasKey"][1]["cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["defaults"] = {} defs["igIsAliasKey"][1]["funcname"] = "IsAliasKey" -defs["igIsAliasKey"][1]["location"] = "imgui_internal:3117" +defs["igIsAliasKey"][1]["location"] = "imgui_internal:3177" defs["igIsAliasKey"][1]["namespace"] = "ImGui" defs["igIsAliasKey"][1]["ov_cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["ret"] = "bool" @@ -20519,7 +20570,7 @@ defs["igIsAnyItemActive"][1]["call_args"] = "()" defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" -defs["igIsAnyItemActive"][1]["location"] = "imgui:880" +defs["igIsAnyItemActive"][1]["location"] = "imgui:882" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -20535,7 +20586,7 @@ defs["igIsAnyItemFocused"][1]["call_args"] = "()" defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" -defs["igIsAnyItemFocused"][1]["location"] = "imgui:881" +defs["igIsAnyItemFocused"][1]["location"] = "imgui:883" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -20551,7 +20602,7 @@ defs["igIsAnyItemHovered"][1]["call_args"] = "()" defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" -defs["igIsAnyItemHovered"][1]["location"] = "imgui:879" +defs["igIsAnyItemHovered"][1]["location"] = "imgui:881" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -20567,7 +20618,7 @@ defs["igIsAnyMouseDown"][1]["call_args"] = "()" defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" -defs["igIsAnyMouseDown"][1]["location"] = "imgui:940" +defs["igIsAnyMouseDown"][1]["location"] = "imgui:942" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -20589,7 +20640,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:3039" +defs["igIsClippedEx"][1]["location"] = "imgui_internal:3097" defs["igIsClippedEx"][1]["namespace"] = "ImGui" defs["igIsClippedEx"][1]["ov_cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["ret"] = "bool" @@ -20605,7 +20656,7 @@ defs["igIsDragDropActive"][1]["call_args"] = "()" defs["igIsDragDropActive"][1]["cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["defaults"] = {} defs["igIsDragDropActive"][1]["funcname"] = "IsDragDropActive" -defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3207" +defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3269" defs["igIsDragDropActive"][1]["namespace"] = "ImGui" defs["igIsDragDropActive"][1]["ov_cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["ret"] = "bool" @@ -20621,7 +20672,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:3210" +defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:3272" defs["igIsDragDropPayloadBeingAccepted"][1]["namespace"] = "ImGui" defs["igIsDragDropPayloadBeingAccepted"][1]["ov_cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["ret"] = "bool" @@ -20640,7 +20691,7 @@ defs["igIsGamepadKey"][1]["call_args"] = "(key)" defs["igIsGamepadKey"][1]["cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["defaults"] = {} defs["igIsGamepadKey"][1]["funcname"] = "IsGamepadKey" -defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3115" +defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3175" defs["igIsGamepadKey"][1]["namespace"] = "ImGui" defs["igIsGamepadKey"][1]["ov_cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["ret"] = "bool" @@ -20656,7 +20707,7 @@ defs["igIsItemActivated"][1]["call_args"] = "()" defs["igIsItemActivated"][1]["cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["defaults"] = {} defs["igIsItemActivated"][1]["funcname"] = "IsItemActivated" -defs["igIsItemActivated"][1]["location"] = "imgui:875" +defs["igIsItemActivated"][1]["location"] = "imgui:877" defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -20672,7 +20723,7 @@ defs["igIsItemActive"][1]["call_args"] = "()" defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" -defs["igIsItemActive"][1]["location"] = "imgui:870" +defs["igIsItemActive"][1]["location"] = "imgui:872" defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -20692,7 +20743,7 @@ defs["igIsItemClicked"][1]["cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" -defs["igIsItemClicked"][1]["location"] = "imgui:872" +defs["igIsItemClicked"][1]["location"] = "imgui:874" defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -20708,7 +20759,7 @@ defs["igIsItemDeactivated"][1]["call_args"] = "()" defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" -defs["igIsItemDeactivated"][1]["location"] = "imgui:876" +defs["igIsItemDeactivated"][1]["location"] = "imgui:878" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -20724,7 +20775,7 @@ defs["igIsItemDeactivatedAfterEdit"][1]["call_args"] = "()" defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" -defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:877" +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:879" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -20740,7 +20791,7 @@ defs["igIsItemEdited"][1]["call_args"] = "()" defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" -defs["igIsItemEdited"][1]["location"] = "imgui:874" +defs["igIsItemEdited"][1]["location"] = "imgui:876" defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -20756,7 +20807,7 @@ defs["igIsItemFocused"][1]["call_args"] = "()" defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" -defs["igIsItemFocused"][1]["location"] = "imgui:871" +defs["igIsItemFocused"][1]["location"] = "imgui:873" defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -20776,7 +20827,7 @@ defs["igIsItemHovered"][1]["cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" -defs["igIsItemHovered"][1]["location"] = "imgui:869" +defs["igIsItemHovered"][1]["location"] = "imgui:871" defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -20792,7 +20843,7 @@ defs["igIsItemToggledOpen"][1]["call_args"] = "()" defs["igIsItemToggledOpen"][1]["cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["defaults"] = {} defs["igIsItemToggledOpen"][1]["funcname"] = "IsItemToggledOpen" -defs["igIsItemToggledOpen"][1]["location"] = "imgui:878" +defs["igIsItemToggledOpen"][1]["location"] = "imgui:880" defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" @@ -20808,7 +20859,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:3044" +defs["igIsItemToggledSelection"][1]["location"] = "imgui_internal:3102" defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["ret"] = "bool" @@ -20824,7 +20875,7 @@ defs["igIsItemVisible"][1]["call_args"] = "()" defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" -defs["igIsItemVisible"][1]["location"] = "imgui:873" +defs["igIsItemVisible"][1]["location"] = "imgui:875" defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" @@ -20843,7 +20894,7 @@ defs["igIsKeyChordPressed"][1]["call_args"] = "(key_chord)" defs["igIsKeyChordPressed"][1]["cimguiname"] = "igIsKeyChordPressed" defs["igIsKeyChordPressed"][1]["defaults"] = {} defs["igIsKeyChordPressed"][1]["funcname"] = "IsKeyChordPressed" -defs["igIsKeyChordPressed"][1]["location"] = "imgui:924" +defs["igIsKeyChordPressed"][1]["location"] = "imgui:926" defs["igIsKeyChordPressed"][1]["namespace"] = "ImGui" defs["igIsKeyChordPressed"][1]["ov_cimguiname"] = "igIsKeyChordPressed_Nil" defs["igIsKeyChordPressed"][1]["ret"] = "bool" @@ -20867,7 +20918,7 @@ defs["igIsKeyChordPressed"][2]["cimguiname"] = "igIsKeyChordPressed" defs["igIsKeyChordPressed"][2]["defaults"] = {} defs["igIsKeyChordPressed"][2]["defaults"]["flags"] = "0" defs["igIsKeyChordPressed"][2]["funcname"] = "IsKeyChordPressed" -defs["igIsKeyChordPressed"][2]["location"] = "imgui_internal:3188" +defs["igIsKeyChordPressed"][2]["location"] = "imgui_internal:3249" defs["igIsKeyChordPressed"][2]["namespace"] = "ImGui" defs["igIsKeyChordPressed"][2]["ov_cimguiname"] = "igIsKeyChordPressed_ID" defs["igIsKeyChordPressed"][2]["ret"] = "bool" @@ -20887,7 +20938,7 @@ defs["igIsKeyDown"][1]["call_args"] = "(key)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui:921" +defs["igIsKeyDown"][1]["location"] = "imgui:923" defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown_Nil" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -20907,7 +20958,7 @@ defs["igIsKeyDown"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyDown"][2]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][2]["defaults"] = {} defs["igIsKeyDown"][2]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][2]["location"] = "imgui_internal:3167" +defs["igIsKeyDown"][2]["location"] = "imgui_internal:3228" defs["igIsKeyDown"][2]["namespace"] = "ImGui" defs["igIsKeyDown"][2]["ov_cimguiname"] = "igIsKeyDown_ID" defs["igIsKeyDown"][2]["ret"] = "bool" @@ -20931,7 +20982,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:922" +defs["igIsKeyPressed"][1]["location"] = "imgui:924" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed_Bool" defs["igIsKeyPressed"][1]["ret"] = "bool" @@ -20955,7 +21006,7 @@ defs["igIsKeyPressed"][2]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][2]["defaults"] = {} defs["igIsKeyPressed"][2]["defaults"]["flags"] = "0" defs["igIsKeyPressed"][2]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3168" +defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3229" defs["igIsKeyPressed"][2]["namespace"] = "ImGui" defs["igIsKeyPressed"][2]["ov_cimguiname"] = "igIsKeyPressed_ID" defs["igIsKeyPressed"][2]["ret"] = "bool" @@ -20975,7 +21026,7 @@ defs["igIsKeyReleased"][1]["call_args"] = "(key)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui:923" +defs["igIsKeyReleased"][1]["location"] = "imgui:925" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased_Nil" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -20995,7 +21046,7 @@ defs["igIsKeyReleased"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyReleased"][2]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][2]["defaults"] = {} defs["igIsKeyReleased"][2]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3169" +defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3230" defs["igIsKeyReleased"][2]["namespace"] = "ImGui" defs["igIsKeyReleased"][2]["ov_cimguiname"] = "igIsKeyReleased_ID" defs["igIsKeyReleased"][2]["ret"] = "bool" @@ -21015,7 +21066,7 @@ defs["igIsKeyboardKey"][1]["call_args"] = "(key)" defs["igIsKeyboardKey"][1]["cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["defaults"] = {} defs["igIsKeyboardKey"][1]["funcname"] = "IsKeyboardKey" -defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3114" +defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3174" defs["igIsKeyboardKey"][1]["namespace"] = "ImGui" defs["igIsKeyboardKey"][1]["ov_cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["ret"] = "bool" @@ -21034,13 +21085,32 @@ defs["igIsLegacyKey"][1]["call_args"] = "(key)" defs["igIsLegacyKey"][1]["cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["defaults"] = {} defs["igIsLegacyKey"][1]["funcname"] = "IsLegacyKey" -defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3113" +defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3173" defs["igIsLegacyKey"][1]["namespace"] = "ImGui" defs["igIsLegacyKey"][1]["ov_cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["ret"] = "bool" defs["igIsLegacyKey"][1]["signature"] = "(ImGuiKey)" defs["igIsLegacyKey"][1]["stname"] = "" defs["igIsLegacyKey"]["(ImGuiKey)"] = defs["igIsLegacyKey"][1] +defs["igIsModKey"] = {} +defs["igIsModKey"][1] = {} +defs["igIsModKey"][1]["args"] = "(ImGuiKey key)" +defs["igIsModKey"][1]["argsT"] = {} +defs["igIsModKey"][1]["argsT"][1] = {} +defs["igIsModKey"][1]["argsT"][1]["name"] = "key" +defs["igIsModKey"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igIsModKey"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igIsModKey"][1]["call_args"] = "(key)" +defs["igIsModKey"][1]["cimguiname"] = "igIsModKey" +defs["igIsModKey"][1]["defaults"] = {} +defs["igIsModKey"][1]["funcname"] = "IsModKey" +defs["igIsModKey"][1]["location"] = "imgui_internal:3178" +defs["igIsModKey"][1]["namespace"] = "ImGui" +defs["igIsModKey"][1]["ov_cimguiname"] = "igIsModKey" +defs["igIsModKey"][1]["ret"] = "bool" +defs["igIsModKey"][1]["signature"] = "(ImGuiKey)" +defs["igIsModKey"][1]["stname"] = "" +defs["igIsModKey"]["(ImGuiKey)"] = defs["igIsModKey"][1] defs["igIsMouseClicked"] = {} defs["igIsMouseClicked"][1] = {} defs["igIsMouseClicked"][1]["args"] = "(ImGuiMouseButton button,bool repeat)" @@ -21057,7 +21127,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:934" +defs["igIsMouseClicked"][1]["location"] = "imgui:936" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked_Bool" defs["igIsMouseClicked"][1]["ret"] = "bool" @@ -21081,7 +21151,7 @@ defs["igIsMouseClicked"][2]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][2]["defaults"] = {} defs["igIsMouseClicked"][2]["defaults"]["flags"] = "0" defs["igIsMouseClicked"][2]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3171" +defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3232" defs["igIsMouseClicked"][2]["namespace"] = "ImGui" defs["igIsMouseClicked"][2]["ov_cimguiname"] = "igIsMouseClicked_ID" defs["igIsMouseClicked"][2]["ret"] = "bool" @@ -21101,7 +21171,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:936" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:938" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked_Nil" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" @@ -21121,7 +21191,7 @@ defs["igIsMouseDoubleClicked"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseDoubleClicked"][2]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][2]["defaults"] = {} defs["igIsMouseDoubleClicked"][2]["funcname"] = "IsMouseDoubleClicked" -defs["igIsMouseDoubleClicked"][2]["location"] = "imgui_internal:3173" +defs["igIsMouseDoubleClicked"][2]["location"] = "imgui_internal:3234" defs["igIsMouseDoubleClicked"][2]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][2]["ov_cimguiname"] = "igIsMouseDoubleClicked_ID" defs["igIsMouseDoubleClicked"][2]["ret"] = "bool" @@ -21141,7 +21211,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:933" +defs["igIsMouseDown"][1]["location"] = "imgui:935" defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown_Nil" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -21161,7 +21231,7 @@ defs["igIsMouseDown"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseDown"][2]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][2]["defaults"] = {} defs["igIsMouseDown"][2]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][2]["location"] = "imgui_internal:3170" +defs["igIsMouseDown"][2]["location"] = "imgui_internal:3231" defs["igIsMouseDown"][2]["namespace"] = "ImGui" defs["igIsMouseDown"][2]["ov_cimguiname"] = "igIsMouseDown_ID" defs["igIsMouseDown"][2]["ret"] = "bool" @@ -21185,7 +21255,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:3134" +defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:3195" defs["igIsMouseDragPastThreshold"][1]["namespace"] = "ImGui" defs["igIsMouseDragPastThreshold"][1]["ov_cimguiname"] = "igIsMouseDragPastThreshold" defs["igIsMouseDragPastThreshold"][1]["ret"] = "bool" @@ -21208,7 +21278,7 @@ defs["igIsMouseDragging"][1]["cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragging"][1]["funcname"] = "IsMouseDragging" -defs["igIsMouseDragging"][1]["location"] = "imgui:943" +defs["igIsMouseDragging"][1]["location"] = "imgui:945" defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -21234,7 +21304,7 @@ defs["igIsMouseHoveringRect"][1]["cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" -defs["igIsMouseHoveringRect"][1]["location"] = "imgui:938" +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:940" defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -21253,7 +21323,7 @@ defs["igIsMouseKey"][1]["call_args"] = "(key)" defs["igIsMouseKey"][1]["cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["defaults"] = {} defs["igIsMouseKey"][1]["funcname"] = "IsMouseKey" -defs["igIsMouseKey"][1]["location"] = "imgui_internal:3116" +defs["igIsMouseKey"][1]["location"] = "imgui_internal:3176" defs["igIsMouseKey"][1]["namespace"] = "ImGui" defs["igIsMouseKey"][1]["ov_cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["ret"] = "bool" @@ -21273,7 +21343,7 @@ defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["defaults"] = {} defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "NULL" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" -defs["igIsMousePosValid"][1]["location"] = "imgui:939" +defs["igIsMousePosValid"][1]["location"] = "imgui:941" defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -21292,7 +21362,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:935" +defs["igIsMouseReleased"][1]["location"] = "imgui:937" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased_Nil" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -21312,7 +21382,7 @@ defs["igIsMouseReleased"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseReleased"][2]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][2]["defaults"] = {} defs["igIsMouseReleased"][2]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3172" +defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3233" defs["igIsMouseReleased"][2]["namespace"] = "ImGui" defs["igIsMouseReleased"][2]["ov_cimguiname"] = "igIsMouseReleased_ID" defs["igIsMouseReleased"][2]["ret"] = "bool" @@ -21332,7 +21402,7 @@ defs["igIsNamedKey"][1]["call_args"] = "(key)" defs["igIsNamedKey"][1]["cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["defaults"] = {} defs["igIsNamedKey"][1]["funcname"] = "IsNamedKey" -defs["igIsNamedKey"][1]["location"] = "imgui_internal:3111" +defs["igIsNamedKey"][1]["location"] = "imgui_internal:3171" defs["igIsNamedKey"][1]["namespace"] = "ImGui" defs["igIsNamedKey"][1]["ov_cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["ret"] = "bool" @@ -21351,7 +21421,7 @@ defs["igIsNamedKeyOrModKey"][1]["call_args"] = "(key)" defs["igIsNamedKeyOrModKey"][1]["cimguiname"] = "igIsNamedKeyOrModKey" defs["igIsNamedKeyOrModKey"][1]["defaults"] = {} defs["igIsNamedKeyOrModKey"][1]["funcname"] = "IsNamedKeyOrModKey" -defs["igIsNamedKeyOrModKey"][1]["location"] = "imgui_internal:3112" +defs["igIsNamedKeyOrModKey"][1]["location"] = "imgui_internal:3172" defs["igIsNamedKeyOrModKey"][1]["namespace"] = "ImGui" defs["igIsNamedKeyOrModKey"][1]["ov_cimguiname"] = "igIsNamedKeyOrModKey" defs["igIsNamedKeyOrModKey"][1]["ret"] = "bool" @@ -21374,7 +21444,7 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["defaults"]["flags"] = "0" defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][1]["location"] = "imgui:745" +defs["igIsPopupOpen"][1]["location"] = "imgui:747" defs["igIsPopupOpen"][1]["namespace"] = "ImGui" defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen_Str" defs["igIsPopupOpen"][1]["ret"] = "bool" @@ -21394,7 +21464,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:3065" +defs["igIsPopupOpen"][2]["location"] = "imgui_internal:3123" defs["igIsPopupOpen"][2]["namespace"] = "ImGui" defs["igIsPopupOpen"][2]["ov_cimguiname"] = "igIsPopupOpen_ID" defs["igIsPopupOpen"][2]["ret"] = "bool" @@ -21414,7 +21484,7 @@ defs["igIsRectVisible"][1]["call_args"] = "(size)" defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][1]["location"] = "imgui:898" +defs["igIsRectVisible"][1]["location"] = "imgui:900" defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisible_Nil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -21434,7 +21504,7 @@ defs["igIsRectVisible"][2]["call_args"] = "(rect_min,rect_max)" defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][2]["location"] = "imgui:899" +defs["igIsRectVisible"][2]["location"] = "imgui:901" defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisible_Vec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -21457,7 +21527,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:2937" +defs["igIsWindowAbove"][1]["location"] = "imgui_internal:2994" defs["igIsWindowAbove"][1]["namespace"] = "ImGui" defs["igIsWindowAbove"][1]["ov_cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["ret"] = "bool" @@ -21473,7 +21543,7 @@ defs["igIsWindowAppearing"][1]["call_args"] = "()" defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" -defs["igIsWindowAppearing"][1]["location"] = "imgui:365" +defs["igIsWindowAppearing"][1]["location"] = "imgui:367" defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" @@ -21498,7 +21568,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:2935" +defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:2992" defs["igIsWindowChildOf"][1]["namespace"] = "ImGui" defs["igIsWindowChildOf"][1]["ov_cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["ret"] = "bool" @@ -21514,7 +21584,7 @@ defs["igIsWindowCollapsed"][1]["call_args"] = "()" defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" -defs["igIsWindowCollapsed"][1]["location"] = "imgui:366" +defs["igIsWindowCollapsed"][1]["location"] = "imgui:368" defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" @@ -21537,7 +21607,7 @@ defs["igIsWindowContentHoverable"][1]["cimguiname"] = "igIsWindowContentHoverabl defs["igIsWindowContentHoverable"][1]["defaults"] = {} defs["igIsWindowContentHoverable"][1]["defaults"]["flags"] = "0" defs["igIsWindowContentHoverable"][1]["funcname"] = "IsWindowContentHoverable" -defs["igIsWindowContentHoverable"][1]["location"] = "imgui_internal:3038" +defs["igIsWindowContentHoverable"][1]["location"] = "imgui_internal:3096" defs["igIsWindowContentHoverable"][1]["namespace"] = "ImGui" defs["igIsWindowContentHoverable"][1]["ov_cimguiname"] = "igIsWindowContentHoverable" defs["igIsWindowContentHoverable"][1]["ret"] = "bool" @@ -21557,7 +21627,7 @@ defs["igIsWindowFocused"][1]["cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" -defs["igIsWindowFocused"][1]["location"] = "imgui:367" +defs["igIsWindowFocused"][1]["location"] = "imgui:369" defs["igIsWindowFocused"][1]["namespace"] = "ImGui" defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" @@ -21577,7 +21647,7 @@ defs["igIsWindowHovered"][1]["cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" -defs["igIsWindowHovered"][1]["location"] = "imgui:368" +defs["igIsWindowHovered"][1]["location"] = "imgui:370" defs["igIsWindowHovered"][1]["namespace"] = "ImGui" defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" @@ -21596,7 +21666,7 @@ defs["igIsWindowNavFocusable"][1]["call_args"] = "(window)" defs["igIsWindowNavFocusable"][1]["cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["defaults"] = {} defs["igIsWindowNavFocusable"][1]["funcname"] = "IsWindowNavFocusable" -defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:2938" +defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:2995" defs["igIsWindowNavFocusable"][1]["namespace"] = "ImGui" defs["igIsWindowNavFocusable"][1]["ov_cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["ret"] = "bool" @@ -21618,7 +21688,7 @@ defs["igIsWindowWithinBeginStackOf"][1]["call_args"] = "(window,potential_parent defs["igIsWindowWithinBeginStackOf"][1]["cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["defaults"] = {} defs["igIsWindowWithinBeginStackOf"][1]["funcname"] = "IsWindowWithinBeginStackOf" -defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:2936" +defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:2993" defs["igIsWindowWithinBeginStackOf"][1]["namespace"] = "ImGui" defs["igIsWindowWithinBeginStackOf"][1]["ov_cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["ret"] = "bool" @@ -21648,7 +21718,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:3036" +defs["igItemAdd"][1]["location"] = "imgui_internal:3094" defs["igItemAdd"][1]["namespace"] = "ImGui" defs["igItemAdd"][1]["ov_cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["ret"] = "bool" @@ -21673,7 +21743,7 @@ defs["igItemHoverable"][1]["call_args"] = "(bb,id,item_flags)" defs["igItemHoverable"][1]["cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["defaults"] = {} defs["igItemHoverable"][1]["funcname"] = "ItemHoverable" -defs["igItemHoverable"][1]["location"] = "imgui_internal:3037" +defs["igItemHoverable"][1]["location"] = "imgui_internal:3095" defs["igItemHoverable"][1]["namespace"] = "ImGui" defs["igItemHoverable"][1]["ov_cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["ret"] = "bool" @@ -21696,7 +21766,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:3034" +defs["igItemSize"][1]["location"] = "imgui_internal:3092" defs["igItemSize"][1]["namespace"] = "ImGui" defs["igItemSize"][1]["ov_cimguiname"] = "igItemSize_Vec2" defs["igItemSize"][1]["ret"] = "void" @@ -21717,7 +21787,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:3035" +defs["igItemSize"][2]["location"] = "imgui_internal:3093" defs["igItemSize"][2]["namespace"] = "ImGui" defs["igItemSize"][2]["ov_cimguiname"] = "igItemSize_Rect" defs["igItemSize"][2]["ret"] = "void" @@ -21737,7 +21807,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:3027" +defs["igKeepAliveID"][1]["location"] = "imgui_internal:3085" defs["igKeepAliveID"][1]["namespace"] = "ImGui" defs["igKeepAliveID"][1]["ov_cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["ret"] = "void" @@ -21763,7 +21833,7 @@ defs["igLabelText"][1]["cimguiname"] = "igLabelText" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" -defs["igLabelText"][1]["location"] = "imgui:513" +defs["igLabelText"][1]["location"] = "imgui:515" defs["igLabelText"][1]["namespace"] = "ImGui" defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" @@ -21788,7 +21858,7 @@ defs["igLabelTextV"][1]["call_args"] = "(label,fmt,args)" defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" -defs["igLabelTextV"][1]["location"] = "imgui:514" +defs["igLabelTextV"][1]["location"] = "imgui:516" defs["igLabelTextV"][1]["namespace"] = "ImGui" defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" @@ -21820,7 +21890,7 @@ defs["igListBox"][1]["cimguiname"] = "igListBox" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" -defs["igListBox"][1]["location"] = "imgui:658" +defs["igListBox"][1]["location"] = "imgui:660" defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBox_Str_arr" defs["igListBox"][1]["ret"] = "bool" @@ -21855,7 +21925,7 @@ defs["igListBox"][2]["cimguiname"] = "igListBox" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" -defs["igListBox"][2]["location"] = "imgui:659" +defs["igListBox"][2]["location"] = "imgui:661" defs["igListBox"][2]["namespace"] = "ImGui" defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnStrPtr" defs["igListBox"][2]["ret"] = "bool" @@ -21875,7 +21945,7 @@ defs["igLoadIniSettingsFromDisk"][1]["call_args"] = "(ini_filename)" defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" -defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:959" +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:961" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -21898,7 +21968,7 @@ defs["igLoadIniSettingsFromMemory"][1]["cimguiname"] = "igLoadIniSettingsFromMem defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" -defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:960" +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:962" defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -21917,7 +21987,7 @@ defs["igLocalizeGetMsg"][1]["call_args"] = "(key)" defs["igLocalizeGetMsg"][1]["cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["defaults"] = {} defs["igLocalizeGetMsg"][1]["funcname"] = "LocalizeGetMsg" -defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3001" +defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3059" defs["igLocalizeGetMsg"][1]["namespace"] = "ImGui" defs["igLocalizeGetMsg"][1]["ov_cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["ret"] = "const char*" @@ -21939,7 +22009,7 @@ defs["igLocalizeRegisterEntries"][1]["call_args"] = "(entries,count)" defs["igLocalizeRegisterEntries"][1]["cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["defaults"] = {} defs["igLocalizeRegisterEntries"][1]["funcname"] = "LocalizeRegisterEntries" -defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3000" +defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3058" defs["igLocalizeRegisterEntries"][1]["namespace"] = "ImGui" defs["igLocalizeRegisterEntries"][1]["ov_cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["ret"] = "void" @@ -21961,7 +22031,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:3054" +defs["igLogBegin"][1]["location"] = "imgui_internal:3112" defs["igLogBegin"][1]["namespace"] = "ImGui" defs["igLogBegin"][1]["ov_cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["ret"] = "void" @@ -21977,7 +22047,7 @@ defs["igLogButtons"][1]["call_args"] = "()" defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" -defs["igLogButtons"][1]["location"] = "imgui:829" +defs["igLogButtons"][1]["location"] = "imgui:831" defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -21993,7 +22063,7 @@ defs["igLogFinish"][1]["call_args"] = "()" defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" -defs["igLogFinish"][1]["location"] = "imgui:828" +defs["igLogFinish"][1]["location"] = "imgui:830" defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -22019,7 +22089,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:3056" +defs["igLogRenderedText"][1]["location"] = "imgui_internal:3114" defs["igLogRenderedText"][1]["namespace"] = "ImGui" defs["igLogRenderedText"][1]["ov_cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["ret"] = "void" @@ -22041,7 +22111,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:3057" +defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:3115" defs["igLogSetNextTextDecoration"][1]["namespace"] = "ImGui" defs["igLogSetNextTextDecoration"][1]["ov_cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["ret"] = "void" @@ -22064,7 +22134,7 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" -defs["igLogText"][1]["location"] = "imgui:830" +defs["igLogText"][1]["location"] = "imgui:832" defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -22087,7 +22157,7 @@ defs["igLogTextV"][1]["call_args"] = "(fmt,args)" defs["igLogTextV"][1]["cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["defaults"] = {} defs["igLogTextV"][1]["funcname"] = "LogTextV" -defs["igLogTextV"][1]["location"] = "imgui:831" +defs["igLogTextV"][1]["location"] = "imgui:833" defs["igLogTextV"][1]["namespace"] = "ImGui" defs["igLogTextV"][1]["ov_cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["ret"] = "void" @@ -22107,7 +22177,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:3055" +defs["igLogToBuffer"][1]["location"] = "imgui_internal:3113" defs["igLogToBuffer"][1]["namespace"] = "ImGui" defs["igLogToBuffer"][1]["ov_cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["ret"] = "void" @@ -22127,7 +22197,7 @@ defs["igLogToClipboard"][1]["cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" -defs["igLogToClipboard"][1]["location"] = "imgui:827" +defs["igLogToClipboard"][1]["location"] = "imgui:829" defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -22151,7 +22221,7 @@ defs["igLogToFile"][1]["defaults"] = {} defs["igLogToFile"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToFile"][1]["defaults"]["filename"] = "NULL" defs["igLogToFile"][1]["funcname"] = "LogToFile" -defs["igLogToFile"][1]["location"] = "imgui:826" +defs["igLogToFile"][1]["location"] = "imgui:828" defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -22171,7 +22241,7 @@ defs["igLogToTTY"][1]["cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" -defs["igLogToTTY"][1]["location"] = "imgui:825" +defs["igLogToTTY"][1]["location"] = "imgui:827" defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -22187,7 +22257,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:2986" +defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:3044" defs["igMarkIniSettingsDirty"][1]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][1]["ov_cimguiname"] = "igMarkIniSettingsDirty_Nil" defs["igMarkIniSettingsDirty"][1]["ret"] = "void" @@ -22204,7 +22274,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:2987" +defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:3045" defs["igMarkIniSettingsDirty"][2]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][2]["ov_cimguiname"] = "igMarkIniSettingsDirty_WindowPtr" defs["igMarkIniSettingsDirty"][2]["ret"] = "void" @@ -22224,7 +22294,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:3028" +defs["igMarkItemEdited"][1]["location"] = "imgui_internal:3086" defs["igMarkItemEdited"][1]["namespace"] = "ImGui" defs["igMarkItemEdited"][1]["ov_cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["ret"] = "void" @@ -22243,7 +22313,7 @@ defs["igMemAlloc"][1]["call_args"] = "(size)" defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" -defs["igMemAlloc"][1]["location"] = "imgui:976" +defs["igMemAlloc"][1]["location"] = "imgui:978" defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -22262,7 +22332,7 @@ defs["igMemFree"][1]["call_args"] = "(ptr)" defs["igMemFree"][1]["cimguiname"] = "igMemFree" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" -defs["igMemFree"][1]["location"] = "imgui:977" +defs["igMemFree"][1]["location"] = "imgui:979" defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -22293,7 +22363,7 @@ defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" defs["igMenuItem"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItem"][1]["funcname"] = "MenuItem" -defs["igMenuItem"][1]["location"] = "imgui:686" +defs["igMenuItem"][1]["location"] = "imgui:688" defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItem_Bool" defs["igMenuItem"][1]["ret"] = "bool" @@ -22320,7 +22390,7 @@ defs["igMenuItem"][2]["cimguiname"] = "igMenuItem" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" -defs["igMenuItem"][2]["location"] = "imgui:687" +defs["igMenuItem"][2]["location"] = "imgui:689" defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItem_BoolPtr" defs["igMenuItem"][2]["ret"] = "bool" @@ -22355,7 +22425,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:3079" +defs["igMenuItemEx"][1]["location"] = "imgui_internal:3137" defs["igMenuItemEx"][1]["namespace"] = "ImGui" defs["igMenuItemEx"][1]["ov_cimguiname"] = "igMenuItemEx" defs["igMenuItemEx"][1]["ret"] = "bool" @@ -22374,7 +22444,7 @@ defs["igMouseButtonToKey"][1]["call_args"] = "(button)" defs["igMouseButtonToKey"][1]["cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["defaults"] = {} defs["igMouseButtonToKey"][1]["funcname"] = "MouseButtonToKey" -defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3133" +defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3194" defs["igMouseButtonToKey"][1]["namespace"] = "ImGui" defs["igMouseButtonToKey"][1]["ov_cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["ret"] = "ImGuiKey" @@ -22393,13 +22463,32 @@ defs["igNavClearPreferredPosForAxis"][1]["call_args"] = "(axis)" defs["igNavClearPreferredPosForAxis"][1]["cimguiname"] = "igNavClearPreferredPosForAxis" defs["igNavClearPreferredPosForAxis"][1]["defaults"] = {} defs["igNavClearPreferredPosForAxis"][1]["funcname"] = "NavClearPreferredPosForAxis" -defs["igNavClearPreferredPosForAxis"][1]["location"] = "imgui_internal:3097" +defs["igNavClearPreferredPosForAxis"][1]["location"] = "imgui_internal:3156" defs["igNavClearPreferredPosForAxis"][1]["namespace"] = "ImGui" defs["igNavClearPreferredPosForAxis"][1]["ov_cimguiname"] = "igNavClearPreferredPosForAxis" defs["igNavClearPreferredPosForAxis"][1]["ret"] = "void" defs["igNavClearPreferredPosForAxis"][1]["signature"] = "(ImGuiAxis)" defs["igNavClearPreferredPosForAxis"][1]["stname"] = "" defs["igNavClearPreferredPosForAxis"]["(ImGuiAxis)"] = defs["igNavClearPreferredPosForAxis"][1] +defs["igNavHighlightActivated"] = {} +defs["igNavHighlightActivated"][1] = {} +defs["igNavHighlightActivated"][1]["args"] = "(ImGuiID id)" +defs["igNavHighlightActivated"][1]["argsT"] = {} +defs["igNavHighlightActivated"][1]["argsT"][1] = {} +defs["igNavHighlightActivated"][1]["argsT"][1]["name"] = "id" +defs["igNavHighlightActivated"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igNavHighlightActivated"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igNavHighlightActivated"][1]["call_args"] = "(id)" +defs["igNavHighlightActivated"][1]["cimguiname"] = "igNavHighlightActivated" +defs["igNavHighlightActivated"][1]["defaults"] = {} +defs["igNavHighlightActivated"][1]["funcname"] = "NavHighlightActivated" +defs["igNavHighlightActivated"][1]["location"] = "imgui_internal:3155" +defs["igNavHighlightActivated"][1]["namespace"] = "ImGui" +defs["igNavHighlightActivated"][1]["ov_cimguiname"] = "igNavHighlightActivated" +defs["igNavHighlightActivated"][1]["ret"] = "void" +defs["igNavHighlightActivated"][1]["signature"] = "(ImGuiID)" +defs["igNavHighlightActivated"][1]["stname"] = "" +defs["igNavHighlightActivated"]["(ImGuiID)"] = defs["igNavHighlightActivated"][1] defs["igNavInitRequestApplyResult"] = {} defs["igNavInitRequestApplyResult"][1] = {} defs["igNavInitRequestApplyResult"][1]["args"] = "()" @@ -22409,7 +22498,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:3088" +defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:3146" defs["igNavInitRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavInitRequestApplyResult"][1]["ov_cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["ret"] = "void" @@ -22431,7 +22520,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:3087" +defs["igNavInitWindow"][1]["location"] = "imgui_internal:3145" defs["igNavInitWindow"][1]["namespace"] = "ImGui" defs["igNavInitWindow"][1]["ov_cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["ret"] = "void" @@ -22447,7 +22536,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:3095" +defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:3153" defs["igNavMoveRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavMoveRequestApplyResult"][1]["ov_cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["ret"] = "void" @@ -22463,7 +22552,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:3089" +defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:3147" defs["igNavMoveRequestButNoResultYet"][1]["namespace"] = "ImGui" defs["igNavMoveRequestButNoResultYet"][1]["ov_cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["ret"] = "bool" @@ -22479,7 +22568,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:3094" +defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:3152" defs["igNavMoveRequestCancel"][1]["namespace"] = "ImGui" defs["igNavMoveRequestCancel"][1]["ov_cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["ret"] = "void" @@ -22507,7 +22596,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:3091" +defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:3149" defs["igNavMoveRequestForward"][1]["namespace"] = "ImGui" defs["igNavMoveRequestForward"][1]["ov_cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["ret"] = "void" @@ -22526,7 +22615,7 @@ defs["igNavMoveRequestResolveWithLastItem"][1]["call_args"] = "(result)" defs["igNavMoveRequestResolveWithLastItem"][1]["cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["defaults"] = {} defs["igNavMoveRequestResolveWithLastItem"][1]["funcname"] = "NavMoveRequestResolveWithLastItem" -defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3092" +defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3150" defs["igNavMoveRequestResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithLastItem"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["ret"] = "void" @@ -22548,7 +22637,7 @@ defs["igNavMoveRequestResolveWithPastTreeNode"][1]["call_args"] = "(result,tree_ defs["igNavMoveRequestResolveWithPastTreeNode"][1]["cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["defaults"] = {} defs["igNavMoveRequestResolveWithPastTreeNode"][1]["funcname"] = "NavMoveRequestResolveWithPastTreeNode" -defs["igNavMoveRequestResolveWithPastTreeNode"][1]["location"] = "imgui_internal:3093" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["location"] = "imgui_internal:3151" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ret"] = "void" @@ -22576,7 +22665,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:3090" +defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:3148" defs["igNavMoveRequestSubmit"][1]["namespace"] = "ImGui" defs["igNavMoveRequestSubmit"][1]["ov_cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["ret"] = "void" @@ -22598,7 +22687,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:3096" +defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:3154" defs["igNavMoveRequestTryWrapping"][1]["namespace"] = "ImGui" defs["igNavMoveRequestTryWrapping"][1]["ov_cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["ret"] = "void" @@ -22614,7 +22703,7 @@ defs["igNavRestoreHighlightAfterMove"][1]["call_args"] = "()" defs["igNavRestoreHighlightAfterMove"][1]["cimguiname"] = "igNavRestoreHighlightAfterMove" defs["igNavRestoreHighlightAfterMove"][1]["defaults"] = {} defs["igNavRestoreHighlightAfterMove"][1]["funcname"] = "NavRestoreHighlightAfterMove" -defs["igNavRestoreHighlightAfterMove"][1]["location"] = "imgui_internal:3098" +defs["igNavRestoreHighlightAfterMove"][1]["location"] = "imgui_internal:3157" defs["igNavRestoreHighlightAfterMove"][1]["namespace"] = "ImGui" defs["igNavRestoreHighlightAfterMove"][1]["ov_cimguiname"] = "igNavRestoreHighlightAfterMove" defs["igNavRestoreHighlightAfterMove"][1]["ret"] = "void" @@ -22630,7 +22719,7 @@ defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["call_args"] = "()" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["defaults"] = {} defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["funcname"] = "NavUpdateCurrentWindowIsScrollPushableX" -defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["location"] = "imgui_internal:3099" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["location"] = "imgui_internal:3158" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["namespace"] = "ImGui" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ov_cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ret"] = "void" @@ -22646,7 +22735,7 @@ defs["igNewFrame"][1]["call_args"] = "()" defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" -defs["igNewFrame"][1]["location"] = "imgui:304" +defs["igNewFrame"][1]["location"] = "imgui:306" defs["igNewFrame"][1]["namespace"] = "ImGui" defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" @@ -22662,7 +22751,7 @@ defs["igNewLine"][1]["call_args"] = "()" defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" -defs["igNewLine"][1]["location"] = "imgui:470" +defs["igNewLine"][1]["location"] = "imgui:472" defs["igNewLine"][1]["namespace"] = "ImGui" defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" @@ -22678,7 +22767,7 @@ defs["igNextColumn"][1]["call_args"] = "()" defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" -defs["igNextColumn"][1]["location"] = "imgui:806" +defs["igNextColumn"][1]["location"] = "imgui:808" defs["igNextColumn"][1]["namespace"] = "ImGui" defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" @@ -22701,7 +22790,7 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][1]["funcname"] = "OpenPopup" -defs["igOpenPopup"][1]["location"] = "imgui:727" +defs["igOpenPopup"][1]["location"] = "imgui:729" defs["igOpenPopup"][1]["namespace"] = "ImGui" defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup_Str" defs["igOpenPopup"][1]["ret"] = "void" @@ -22722,7 +22811,7 @@ defs["igOpenPopup"][2]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][2]["defaults"] = {} defs["igOpenPopup"][2]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][2]["funcname"] = "OpenPopup" -defs["igOpenPopup"][2]["location"] = "imgui:728" +defs["igOpenPopup"][2]["location"] = "imgui:730" defs["igOpenPopup"][2]["namespace"] = "ImGui" defs["igOpenPopup"][2]["ov_cimguiname"] = "igOpenPopup_ID" defs["igOpenPopup"][2]["ret"] = "void" @@ -22746,7 +22835,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:3061" +defs["igOpenPopupEx"][1]["location"] = "imgui_internal:3119" defs["igOpenPopupEx"][1]["namespace"] = "ImGui" defs["igOpenPopupEx"][1]["ov_cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["ret"] = "void" @@ -22770,7 +22859,7 @@ defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["popup_flags"] = "1" defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "NULL" defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" -defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:729" +defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:731" defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "void" @@ -22818,7 +22907,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:3394" +defs["igPlotEx"][1]["location"] = "imgui_internal:3456" defs["igPlotEx"][1]["namespace"] = "ImGui" defs["igPlotEx"][1]["ov_cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["ret"] = "int" @@ -22867,7 +22956,7 @@ defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][1]["location"] = "imgui:665" +defs["igPlotHistogram"][1]["location"] = "imgui:667" defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogram_FloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" @@ -22915,7 +23004,7 @@ defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][2]["location"] = "imgui:666" +defs["igPlotHistogram"][2]["location"] = "imgui:668" defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogram_FnFloatPtr" defs["igPlotHistogram"][2]["ret"] = "void" @@ -22965,7 +23054,7 @@ defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" -defs["igPlotLines"][1]["location"] = "imgui:663" +defs["igPlotLines"][1]["location"] = "imgui:665" defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLines_FloatPtr" defs["igPlotLines"][1]["ret"] = "void" @@ -23013,7 +23102,7 @@ defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" -defs["igPlotLines"][2]["location"] = "imgui:664" +defs["igPlotLines"][2]["location"] = "imgui:666" defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLines_FnFloatPtr" defs["igPlotLines"][2]["ret"] = "void" @@ -23030,7 +23119,7 @@ defs["igPopButtonRepeat"][1]["call_args"] = "()" defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["defaults"] = {} defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" -defs["igPopButtonRepeat"][1]["location"] = "imgui:429" +defs["igPopButtonRepeat"][1]["location"] = "imgui:431" defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" defs["igPopButtonRepeat"][1]["ov_cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["ret"] = "void" @@ -23046,7 +23135,7 @@ defs["igPopClipRect"][1]["call_args"] = "()" defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" -defs["igPopClipRect"][1]["location"] = "imgui:856" +defs["igPopClipRect"][1]["location"] = "imgui:858" defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -23062,7 +23151,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:3225" +defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:3287" defs["igPopColumnsBackground"][1]["namespace"] = "ImGui" defs["igPopColumnsBackground"][1]["ov_cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["ret"] = "void" @@ -23078,7 +23167,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:3203" +defs["igPopFocusScope"][1]["location"] = "imgui_internal:3265" defs["igPopFocusScope"][1]["namespace"] = "ImGui" defs["igPopFocusScope"][1]["ov_cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["ret"] = "void" @@ -23094,7 +23183,7 @@ defs["igPopFont"][1]["call_args"] = "()" defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" -defs["igPopFont"][1]["location"] = "imgui:419" +defs["igPopFont"][1]["location"] = "imgui:421" defs["igPopFont"][1]["namespace"] = "ImGui" defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" @@ -23110,7 +23199,7 @@ defs["igPopID"][1]["call_args"] = "()" defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" -defs["igPopID"][1]["location"] = "imgui:498" +defs["igPopID"][1]["location"] = "imgui:500" defs["igPopID"][1]["namespace"] = "ImGui" defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" @@ -23126,7 +23215,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:3050" +defs["igPopItemFlag"][1]["location"] = "imgui_internal:3108" defs["igPopItemFlag"][1]["namespace"] = "ImGui" defs["igPopItemFlag"][1]["ov_cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["ret"] = "void" @@ -23142,7 +23231,7 @@ defs["igPopItemWidth"][1]["call_args"] = "()" defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" -defs["igPopItemWidth"][1]["location"] = "imgui:433" +defs["igPopItemWidth"][1]["location"] = "imgui:435" defs["igPopItemWidth"][1]["namespace"] = "ImGui" defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" @@ -23162,7 +23251,7 @@ defs["igPopStyleColor"][1]["cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" -defs["igPopStyleColor"][1]["location"] = "imgui:422" +defs["igPopStyleColor"][1]["location"] = "imgui:424" defs["igPopStyleColor"][1]["namespace"] = "ImGui" defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" @@ -23182,7 +23271,7 @@ defs["igPopStyleVar"][1]["cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" -defs["igPopStyleVar"][1]["location"] = "imgui:425" +defs["igPopStyleVar"][1]["location"] = "imgui:427" defs["igPopStyleVar"][1]["namespace"] = "ImGui" defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" @@ -23198,7 +23287,7 @@ defs["igPopTabStop"][1]["call_args"] = "()" defs["igPopTabStop"][1]["cimguiname"] = "igPopTabStop" defs["igPopTabStop"][1]["defaults"] = {} defs["igPopTabStop"][1]["funcname"] = "PopTabStop" -defs["igPopTabStop"][1]["location"] = "imgui:427" +defs["igPopTabStop"][1]["location"] = "imgui:429" defs["igPopTabStop"][1]["namespace"] = "ImGui" defs["igPopTabStop"][1]["ov_cimguiname"] = "igPopTabStop" defs["igPopTabStop"][1]["ret"] = "void" @@ -23214,7 +23303,7 @@ defs["igPopTextWrapPos"][1]["call_args"] = "()" defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" -defs["igPopTextWrapPos"][1]["location"] = "imgui:437" +defs["igPopTextWrapPos"][1]["location"] = "imgui:439" defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" @@ -23241,7 +23330,7 @@ defs["igProgressBar"][1]["defaults"] = {} defs["igProgressBar"][1]["defaults"]["overlay"] = "NULL" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-FLT_MIN,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" -defs["igProgressBar"][1]["location"] = "imgui:531" +defs["igProgressBar"][1]["location"] = "imgui:533" defs["igProgressBar"][1]["namespace"] = "ImGui" defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" @@ -23260,7 +23349,7 @@ defs["igPushButtonRepeat"][1]["call_args"] = "(repeat)" defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["defaults"] = {} defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" -defs["igPushButtonRepeat"][1]["location"] = "imgui:428" +defs["igPushButtonRepeat"][1]["location"] = "imgui:430" defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" defs["igPushButtonRepeat"][1]["ov_cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["ret"] = "void" @@ -23285,7 +23374,7 @@ defs["igPushClipRect"][1]["call_args"] = "(clip_rect_min,clip_rect_max,intersect defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" -defs["igPushClipRect"][1]["location"] = "imgui:855" +defs["igPushClipRect"][1]["location"] = "imgui:857" defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -23304,7 +23393,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:3223" +defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:3285" defs["igPushColumnClipRect"][1]["namespace"] = "ImGui" defs["igPushColumnClipRect"][1]["ov_cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["ret"] = "void" @@ -23320,7 +23409,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:3224" +defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:3286" defs["igPushColumnsBackground"][1]["namespace"] = "ImGui" defs["igPushColumnsBackground"][1]["ov_cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["ret"] = "void" @@ -23339,7 +23428,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:3202" +defs["igPushFocusScope"][1]["location"] = "imgui_internal:3264" defs["igPushFocusScope"][1]["namespace"] = "ImGui" defs["igPushFocusScope"][1]["ov_cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["ret"] = "void" @@ -23358,7 +23447,7 @@ defs["igPushFont"][1]["call_args"] = "(font)" defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" -defs["igPushFont"][1]["location"] = "imgui:418" +defs["igPushFont"][1]["location"] = "imgui:420" defs["igPushFont"][1]["namespace"] = "ImGui" defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" @@ -23377,7 +23466,7 @@ defs["igPushID"][1]["call_args"] = "(str_id)" defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" -defs["igPushID"][1]["location"] = "imgui:494" +defs["igPushID"][1]["location"] = "imgui:496" defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushID_Str" defs["igPushID"][1]["ret"] = "void" @@ -23397,7 +23486,7 @@ defs["igPushID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" -defs["igPushID"][2]["location"] = "imgui:495" +defs["igPushID"][2]["location"] = "imgui:497" defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushID_StrStr" defs["igPushID"][2]["ret"] = "void" @@ -23414,7 +23503,7 @@ defs["igPushID"][3]["call_args"] = "(ptr_id)" defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" -defs["igPushID"][3]["location"] = "imgui:496" +defs["igPushID"][3]["location"] = "imgui:498" defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushID_Ptr" defs["igPushID"][3]["ret"] = "void" @@ -23431,7 +23520,7 @@ defs["igPushID"][4]["call_args"] = "(int_id)" defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" -defs["igPushID"][4]["location"] = "imgui:497" +defs["igPushID"][4]["location"] = "imgui:499" defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushID_Int" defs["igPushID"][4]["ret"] = "void" @@ -23456,7 +23545,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:3049" +defs["igPushItemFlag"][1]["location"] = "imgui_internal:3107" defs["igPushItemFlag"][1]["namespace"] = "ImGui" defs["igPushItemFlag"][1]["ov_cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["ret"] = "void" @@ -23475,7 +23564,7 @@ defs["igPushItemWidth"][1]["call_args"] = "(item_width)" defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" -defs["igPushItemWidth"][1]["location"] = "imgui:432" +defs["igPushItemWidth"][1]["location"] = "imgui:434" defs["igPushItemWidth"][1]["namespace"] = "ImGui" defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" @@ -23497,7 +23586,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:3043" +defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:3101" defs["igPushMultiItemsWidths"][1]["namespace"] = "ImGui" defs["igPushMultiItemsWidths"][1]["ov_cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["ret"] = "void" @@ -23516,7 +23605,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:3029" +defs["igPushOverrideID"][1]["location"] = "imgui_internal:3087" defs["igPushOverrideID"][1]["namespace"] = "ImGui" defs["igPushOverrideID"][1]["ov_cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["ret"] = "void" @@ -23538,7 +23627,7 @@ defs["igPushStyleColor"][1]["call_args"] = "(idx,col)" defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][1]["location"] = "imgui:420" +defs["igPushStyleColor"][1]["location"] = "imgui:422" defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColor_U32" defs["igPushStyleColor"][1]["ret"] = "void" @@ -23558,7 +23647,7 @@ defs["igPushStyleColor"][2]["call_args"] = "(idx,col)" defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][2]["location"] = "imgui:421" +defs["igPushStyleColor"][2]["location"] = "imgui:423" defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColor_Vec4" defs["igPushStyleColor"][2]["ret"] = "void" @@ -23581,7 +23670,7 @@ defs["igPushStyleVar"][1]["call_args"] = "(idx,val)" defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][1]["location"] = "imgui:423" +defs["igPushStyleVar"][1]["location"] = "imgui:425" defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVar_Float" defs["igPushStyleVar"][1]["ret"] = "void" @@ -23601,7 +23690,7 @@ defs["igPushStyleVar"][2]["call_args"] = "(idx,val)" defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][2]["location"] = "imgui:424" +defs["igPushStyleVar"][2]["location"] = "imgui:426" defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVar_Vec2" defs["igPushStyleVar"][2]["ret"] = "void" @@ -23621,7 +23710,7 @@ defs["igPushTabStop"][1]["call_args"] = "(tab_stop)" defs["igPushTabStop"][1]["cimguiname"] = "igPushTabStop" defs["igPushTabStop"][1]["defaults"] = {} defs["igPushTabStop"][1]["funcname"] = "PushTabStop" -defs["igPushTabStop"][1]["location"] = "imgui:426" +defs["igPushTabStop"][1]["location"] = "imgui:428" defs["igPushTabStop"][1]["namespace"] = "ImGui" defs["igPushTabStop"][1]["ov_cimguiname"] = "igPushTabStop" defs["igPushTabStop"][1]["ret"] = "void" @@ -23641,7 +23730,7 @@ defs["igPushTextWrapPos"][1]["cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" -defs["igPushTextWrapPos"][1]["location"] = "imgui:436" +defs["igPushTextWrapPos"][1]["location"] = "imgui:438" defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" @@ -23663,7 +23752,7 @@ defs["igRadioButton"][1]["call_args"] = "(label,active)" defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" -defs["igRadioButton"][1]["location"] = "imgui:529" +defs["igRadioButton"][1]["location"] = "imgui:531" defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButton_Bool" defs["igRadioButton"][1]["ret"] = "bool" @@ -23686,7 +23775,7 @@ defs["igRadioButton"][2]["call_args"] = "(label,v,v_button)" defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" -defs["igRadioButton"][2]["location"] = "imgui:530" +defs["igRadioButton"][2]["location"] = "imgui:532" defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButton_IntPtr" defs["igRadioButton"][2]["ret"] = "bool" @@ -23709,7 +23798,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:2979" +defs["igRemoveContextHook"][1]["location"] = "imgui_internal:3037" defs["igRemoveContextHook"][1]["namespace"] = "ImGui" defs["igRemoveContextHook"][1]["ov_cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["ret"] = "void" @@ -23728,7 +23817,7 @@ defs["igRemoveSettingsHandler"][1]["call_args"] = "(type_name)" defs["igRemoveSettingsHandler"][1]["cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["defaults"] = {} defs["igRemoveSettingsHandler"][1]["funcname"] = "RemoveSettingsHandler" -defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:2990" +defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:3048" defs["igRemoveSettingsHandler"][1]["namespace"] = "ImGui" defs["igRemoveSettingsHandler"][1]["ov_cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["ret"] = "void" @@ -23744,7 +23833,7 @@ defs["igRender"][1]["call_args"] = "()" defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" -defs["igRender"][1]["location"] = "imgui:306" +defs["igRender"][1]["location"] = "imgui:308" defs["igRender"][1]["namespace"] = "ImGui" defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" @@ -23776,7 +23865,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:3324" +defs["igRenderArrow"][1]["location"] = "imgui_internal:3386" defs["igRenderArrow"][1]["namespace"] = "ImGui" defs["igRenderArrow"][1]["ov_cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["ret"] = "void" @@ -23807,7 +23896,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:3327" +defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:3389" defs["igRenderArrowPointingAt"][1]["namespace"] = "ImGui" defs["igRenderArrowPointingAt"][1]["ov_cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["ret"] = "void" @@ -23832,7 +23921,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:3325" +defs["igRenderBullet"][1]["location"] = "imgui_internal:3387" defs["igRenderBullet"][1]["namespace"] = "ImGui" defs["igRenderBullet"][1]["ov_cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["ret"] = "void" @@ -23860,7 +23949,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:3326" +defs["igRenderCheckMark"][1]["location"] = "imgui_internal:3388" defs["igRenderCheckMark"][1]["namespace"] = "ImGui" defs["igRenderCheckMark"][1]["ov_cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["ret"] = "void" @@ -23902,7 +23991,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:3318" +defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3380" defs["igRenderColorRectWithAlphaCheckerboard"][1]["namespace"] = "ImGui" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ov_cimguiname"] = "igRenderColorRectWithAlphaCheckerboard" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ret"] = "void" @@ -23924,7 +24013,7 @@ defs["igRenderDragDropTargetRect"][1]["call_args"] = "(bb,item_clip_rect)" defs["igRenderDragDropTargetRect"][1]["cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["defaults"] = {} defs["igRenderDragDropTargetRect"][1]["funcname"] = "RenderDragDropTargetRect" -defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3211" +defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3273" defs["igRenderDragDropTargetRect"][1]["namespace"] = "ImGui" defs["igRenderDragDropTargetRect"][1]["ov_cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["ret"] = "void" @@ -23957,7 +24046,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:3316" +defs["igRenderFrame"][1]["location"] = "imgui_internal:3378" defs["igRenderFrame"][1]["namespace"] = "ImGui" defs["igRenderFrame"][1]["ov_cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["ret"] = "void" @@ -23983,7 +24072,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:3317" +defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:3379" defs["igRenderFrameBorder"][1]["namespace"] = "ImGui" defs["igRenderFrameBorder"][1]["ov_cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["ret"] = "void" @@ -24017,7 +24106,7 @@ defs["igRenderMouseCursor"][1]["call_args"] = "(pos,scale,mouse_cursor,col_fill, defs["igRenderMouseCursor"][1]["cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["defaults"] = {} defs["igRenderMouseCursor"][1]["funcname"] = "RenderMouseCursor" -defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3321" +defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3383" defs["igRenderMouseCursor"][1]["namespace"] = "ImGui" defs["igRenderMouseCursor"][1]["ov_cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["ret"] = "void" @@ -24037,13 +24126,13 @@ defs["igRenderNavHighlight"][1]["argsT"][2]["type"] = "ImGuiID" defs["igRenderNavHighlight"][1]["argsT"][3] = {} defs["igRenderNavHighlight"][1]["argsT"][3]["name"] = "flags" defs["igRenderNavHighlight"][1]["argsT"][3]["type"] = "ImGuiNavHighlightFlags" -defs["igRenderNavHighlight"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_TypeDefault)" +defs["igRenderNavHighlight"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_None)" defs["igRenderNavHighlight"][1]["call_args"] = "(bb,id,flags)" defs["igRenderNavHighlight"][1]["cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["defaults"] = {} -defs["igRenderNavHighlight"][1]["defaults"]["flags"] = "ImGuiNavHighlightFlags_TypeDefault" +defs["igRenderNavHighlight"][1]["defaults"]["flags"] = "ImGuiNavHighlightFlags_None" defs["igRenderNavHighlight"][1]["funcname"] = "RenderNavHighlight" -defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:3319" +defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:3381" defs["igRenderNavHighlight"][1]["namespace"] = "ImGui" defs["igRenderNavHighlight"][1]["ov_cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["ret"] = "void" @@ -24077,7 +24166,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:3328" +defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:3390" defs["igRenderRectFilledRangeH"][1]["namespace"] = "ImGui" defs["igRenderRectFilledRangeH"][1]["ov_cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["ret"] = "void" @@ -24108,7 +24197,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:3329" +defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:3391" defs["igRenderRectFilledWithHole"][1]["namespace"] = "ImGui" defs["igRenderRectFilledWithHole"][1]["ov_cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["ret"] = "void" @@ -24138,7 +24227,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:3311" +defs["igRenderText"][1]["location"] = "imgui_internal:3373" defs["igRenderText"][1]["namespace"] = "ImGui" defs["igRenderText"][1]["ov_cimguiname"] = "igRenderText" defs["igRenderText"][1]["ret"] = "void" @@ -24177,7 +24266,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:3313" +defs["igRenderTextClipped"][1]["location"] = "imgui_internal:3375" defs["igRenderTextClipped"][1]["namespace"] = "ImGui" defs["igRenderTextClipped"][1]["ov_cimguiname"] = "igRenderTextClipped" defs["igRenderTextClipped"][1]["ret"] = "void" @@ -24219,7 +24308,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:3314" +defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:3376" defs["igRenderTextClippedEx"][1]["namespace"] = "ImGui" defs["igRenderTextClippedEx"][1]["ov_cimguiname"] = "igRenderTextClippedEx" defs["igRenderTextClippedEx"][1]["ret"] = "void" @@ -24259,7 +24348,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:3315" +defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:3377" defs["igRenderTextEllipsis"][1]["namespace"] = "ImGui" defs["igRenderTextEllipsis"][1]["ov_cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["ret"] = "void" @@ -24287,7 +24376,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:3312" +defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:3374" defs["igRenderTextWrapped"][1]["namespace"] = "ImGui" defs["igRenderTextWrapped"][1]["ov_cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["ret"] = "void" @@ -24307,7 +24396,7 @@ defs["igResetMouseDragDelta"][1]["cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" -defs["igResetMouseDragDelta"][1]["location"] = "imgui:945" +defs["igResetMouseDragDelta"][1]["location"] = "imgui:947" defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -24331,7 +24420,7 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["offset_from_start_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" -defs["igSameLine"][1]["location"] = "imgui:469" +defs["igSameLine"][1]["location"] = "imgui:471" defs["igSameLine"][1]["namespace"] = "ImGui" defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" @@ -24350,7 +24439,7 @@ defs["igSaveIniSettingsToDisk"][1]["call_args"] = "(ini_filename)" defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" -defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:961" +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:963" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -24370,7 +24459,7 @@ defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "NULL" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" -defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:962" +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:964" defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" @@ -24392,7 +24481,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:3014" +defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:3072" defs["igScrollToBringRectIntoView"][1]["namespace"] = "ImGui" defs["igScrollToBringRectIntoView"][1]["ov_cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["ret"] = "void" @@ -24412,7 +24501,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:3010" +defs["igScrollToItem"][1]["location"] = "imgui_internal:3068" defs["igScrollToItem"][1]["namespace"] = "ImGui" defs["igScrollToItem"][1]["ov_cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["ret"] = "void" @@ -24438,7 +24527,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:3011" +defs["igScrollToRect"][1]["location"] = "imgui_internal:3069" defs["igScrollToRect"][1]["namespace"] = "ImGui" defs["igScrollToRect"][1]["ov_cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["ret"] = "void" @@ -24467,7 +24556,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:3012" +defs["igScrollToRectEx"][1]["location"] = "imgui_internal:3070" defs["igScrollToRectEx"][1]["namespace"] = "ImGui" defs["igScrollToRectEx"][1]["nonUDT"] = 1 defs["igScrollToRectEx"][1]["ov_cimguiname"] = "igScrollToRectEx" @@ -24487,7 +24576,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:3344" +defs["igScrollbar"][1]["location"] = "imgui_internal:3406" defs["igScrollbar"][1]["namespace"] = "ImGui" defs["igScrollbar"][1]["ov_cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["ret"] = "void" @@ -24524,7 +24613,7 @@ defs["igScrollbarEx"][1]["call_args"] = "(bb,id,axis,p_scroll_v,avail_v,contents defs["igScrollbarEx"][1]["cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["defaults"] = {} defs["igScrollbarEx"][1]["funcname"] = "ScrollbarEx" -defs["igScrollbarEx"][1]["location"] = "imgui_internal:3345" +defs["igScrollbarEx"][1]["location"] = "imgui_internal:3407" defs["igScrollbarEx"][1]["namespace"] = "ImGui" defs["igScrollbarEx"][1]["ov_cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["ret"] = "bool" @@ -24555,7 +24644,7 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" -defs["igSelectable"][1]["location"] = "imgui:647" +defs["igSelectable"][1]["location"] = "imgui:649" defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectable_Bool" defs["igSelectable"][1]["ret"] = "bool" @@ -24583,7 +24672,7 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" -defs["igSelectable"][2]["location"] = "imgui:648" +defs["igSelectable"][2]["location"] = "imgui:650" defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectable_BoolPtr" defs["igSelectable"][2]["ret"] = "bool" @@ -24600,7 +24689,7 @@ defs["igSeparator"][1]["call_args"] = "()" defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" -defs["igSeparator"][1]["location"] = "imgui:468" +defs["igSeparator"][1]["location"] = "imgui:470" defs["igSeparator"][1]["namespace"] = "ImGui" defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" @@ -24623,7 +24712,7 @@ defs["igSeparatorEx"][1]["cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["defaults"] = {} defs["igSeparatorEx"][1]["defaults"]["thickness"] = "1.0f" defs["igSeparatorEx"][1]["funcname"] = "SeparatorEx" -defs["igSeparatorEx"][1]["location"] = "imgui_internal:3336" +defs["igSeparatorEx"][1]["location"] = "imgui_internal:3398" defs["igSeparatorEx"][1]["namespace"] = "ImGui" defs["igSeparatorEx"][1]["ov_cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["ret"] = "void" @@ -24642,7 +24731,7 @@ defs["igSeparatorText"][1]["call_args"] = "(label)" defs["igSeparatorText"][1]["cimguiname"] = "igSeparatorText" defs["igSeparatorText"][1]["defaults"] = {} defs["igSeparatorText"][1]["funcname"] = "SeparatorText" -defs["igSeparatorText"][1]["location"] = "imgui:517" +defs["igSeparatorText"][1]["location"] = "imgui:519" defs["igSeparatorText"][1]["namespace"] = "ImGui" defs["igSeparatorText"][1]["ov_cimguiname"] = "igSeparatorText" defs["igSeparatorText"][1]["ret"] = "void" @@ -24670,7 +24759,7 @@ defs["igSeparatorTextEx"][1]["call_args"] = "(id,label,label_end,extra_width)" defs["igSeparatorTextEx"][1]["cimguiname"] = "igSeparatorTextEx" defs["igSeparatorTextEx"][1]["defaults"] = {} defs["igSeparatorTextEx"][1]["funcname"] = "SeparatorTextEx" -defs["igSeparatorTextEx"][1]["location"] = "imgui_internal:3337" +defs["igSeparatorTextEx"][1]["location"] = "imgui_internal:3399" defs["igSeparatorTextEx"][1]["namespace"] = "ImGui" defs["igSeparatorTextEx"][1]["ov_cimguiname"] = "igSeparatorTextEx" defs["igSeparatorTextEx"][1]["ret"] = "void" @@ -24692,7 +24781,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:3022" +defs["igSetActiveID"][1]["location"] = "imgui_internal:3080" defs["igSetActiveID"][1]["namespace"] = "ImGui" defs["igSetActiveID"][1]["ov_cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["ret"] = "void" @@ -24708,7 +24797,7 @@ defs["igSetActiveIdUsingAllKeyboardKeys"][1]["call_args"] = "()" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["defaults"] = {} defs["igSetActiveIdUsingAllKeyboardKeys"][1]["funcname"] = "SetActiveIdUsingAllKeyboardKeys" -defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3140" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3201" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["namespace"] = "ImGui" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ov_cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ret"] = "void" @@ -24734,7 +24823,7 @@ defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["defaults"] = {} defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "NULL" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" -defs["igSetAllocatorFunctions"][1]["location"] = "imgui:974" +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:976" defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -24753,7 +24842,7 @@ defs["igSetClipboardText"][1]["call_args"] = "(text)" defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" -defs["igSetClipboardText"][1]["location"] = "imgui:953" +defs["igSetClipboardText"][1]["location"] = "imgui:955" defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -24772,7 +24861,7 @@ defs["igSetColorEditOptions"][1]["call_args"] = "(flags)" defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" -defs["igSetColorEditOptions"][1]["location"] = "imgui:622" +defs["igSetColorEditOptions"][1]["location"] = "imgui:624" defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" @@ -24794,7 +24883,7 @@ defs["igSetColumnOffset"][1]["call_args"] = "(column_index,offset_x)" defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" -defs["igSetColumnOffset"][1]["location"] = "imgui:811" +defs["igSetColumnOffset"][1]["location"] = "imgui:813" defs["igSetColumnOffset"][1]["namespace"] = "ImGui" defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" @@ -24816,7 +24905,7 @@ defs["igSetColumnWidth"][1]["call_args"] = "(column_index,width)" defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" -defs["igSetColumnWidth"][1]["location"] = "imgui:809" +defs["igSetColumnWidth"][1]["location"] = "imgui:811" defs["igSetColumnWidth"][1]["namespace"] = "ImGui" defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" @@ -24835,7 +24924,7 @@ defs["igSetCurrentContext"][1]["call_args"] = "(ctx)" defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" -defs["igSetCurrentContext"][1]["location"] = "imgui:299" +defs["igSetCurrentContext"][1]["location"] = "imgui:301" defs["igSetCurrentContext"][1]["namespace"] = "ImGui" defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" @@ -24854,7 +24943,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:2959" +defs["igSetCurrentFont"][1]["location"] = "imgui_internal:3017" defs["igSetCurrentFont"][1]["namespace"] = "ImGui" defs["igSetCurrentFont"][1]["ov_cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["ret"] = "void" @@ -24873,7 +24962,7 @@ defs["igSetCursorPos"][1]["call_args"] = "(local_pos)" defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" -defs["igSetCursorPos"][1]["location"] = "imgui:462" +defs["igSetCursorPos"][1]["location"] = "imgui:464" defs["igSetCursorPos"][1]["namespace"] = "ImGui" defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" @@ -24892,7 +24981,7 @@ defs["igSetCursorPosX"][1]["call_args"] = "(local_x)" defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" -defs["igSetCursorPosX"][1]["location"] = "imgui:463" +defs["igSetCursorPosX"][1]["location"] = "imgui:465" defs["igSetCursorPosX"][1]["namespace"] = "ImGui" defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" @@ -24911,7 +25000,7 @@ defs["igSetCursorPosY"][1]["call_args"] = "(local_y)" defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" -defs["igSetCursorPosY"][1]["location"] = "imgui:464" +defs["igSetCursorPosY"][1]["location"] = "imgui:466" defs["igSetCursorPosY"][1]["namespace"] = "ImGui" defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" @@ -24930,7 +25019,7 @@ defs["igSetCursorScreenPos"][1]["call_args"] = "(pos)" defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" -defs["igSetCursorScreenPos"][1]["location"] = "imgui:458" +defs["igSetCursorScreenPos"][1]["location"] = "imgui:460" defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" @@ -24959,7 +25048,7 @@ defs["igSetDragDropPayload"][1]["cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" -defs["igSetDragDropPayload"][1]["location"] = "imgui:839" +defs["igSetDragDropPayload"][1]["location"] = "imgui:841" defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" @@ -24981,7 +25070,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:3023" +defs["igSetFocusID"][1]["location"] = "imgui_internal:3081" defs["igSetFocusID"][1]["namespace"] = "ImGui" defs["igSetFocusID"][1]["ov_cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["ret"] = "void" @@ -25000,7 +25089,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:3026" +defs["igSetHoveredID"][1]["location"] = "imgui_internal:3084" defs["igSetHoveredID"][1]["namespace"] = "ImGui" defs["igSetHoveredID"][1]["ov_cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["ret"] = "void" @@ -25016,7 +25105,7 @@ defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" -defs["igSetItemDefaultFocus"][1]["location"] = "imgui:860" +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:862" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" @@ -25039,7 +25128,7 @@ defs["igSetItemKeyOwner"][1]["cimguiname"] = "igSetItemKeyOwner" defs["igSetItemKeyOwner"][1]["defaults"] = {} defs["igSetItemKeyOwner"][1]["defaults"]["flags"] = "0" defs["igSetItemKeyOwner"][1]["funcname"] = "SetItemKeyOwner" -defs["igSetItemKeyOwner"][1]["location"] = "imgui_internal:3157" +defs["igSetItemKeyOwner"][1]["location"] = "imgui_internal:3218" defs["igSetItemKeyOwner"][1]["namespace"] = "ImGui" defs["igSetItemKeyOwner"][1]["ov_cimguiname"] = "igSetItemKeyOwner" defs["igSetItemKeyOwner"][1]["ret"] = "void" @@ -25062,7 +25151,7 @@ defs["igSetItemTooltip"][1]["cimguiname"] = "igSetItemTooltip" defs["igSetItemTooltip"][1]["defaults"] = {} defs["igSetItemTooltip"][1]["funcname"] = "SetItemTooltip" defs["igSetItemTooltip"][1]["isvararg"] = "...)" -defs["igSetItemTooltip"][1]["location"] = "imgui:702" +defs["igSetItemTooltip"][1]["location"] = "imgui:704" defs["igSetItemTooltip"][1]["namespace"] = "ImGui" defs["igSetItemTooltip"][1]["ov_cimguiname"] = "igSetItemTooltip" defs["igSetItemTooltip"][1]["ret"] = "void" @@ -25084,7 +25173,7 @@ defs["igSetItemTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetItemTooltipV"][1]["cimguiname"] = "igSetItemTooltipV" defs["igSetItemTooltipV"][1]["defaults"] = {} defs["igSetItemTooltipV"][1]["funcname"] = "SetItemTooltipV" -defs["igSetItemTooltipV"][1]["location"] = "imgui:703" +defs["igSetItemTooltipV"][1]["location"] = "imgui:705" defs["igSetItemTooltipV"][1]["namespace"] = "ImGui" defs["igSetItemTooltipV"][1]["ov_cimguiname"] = "igSetItemTooltipV" defs["igSetItemTooltipV"][1]["ret"] = "void" @@ -25110,7 +25199,7 @@ defs["igSetKeyOwner"][1]["cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["defaults"] = {} defs["igSetKeyOwner"][1]["defaults"]["flags"] = "0" defs["igSetKeyOwner"][1]["funcname"] = "SetKeyOwner" -defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3155" +defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3216" defs["igSetKeyOwner"][1]["namespace"] = "ImGui" defs["igSetKeyOwner"][1]["ov_cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["ret"] = "void" @@ -25136,7 +25225,7 @@ defs["igSetKeyOwnersForKeyChord"][1]["cimguiname"] = "igSetKeyOwnersForKeyChord" defs["igSetKeyOwnersForKeyChord"][1]["defaults"] = {} defs["igSetKeyOwnersForKeyChord"][1]["defaults"]["flags"] = "0" defs["igSetKeyOwnersForKeyChord"][1]["funcname"] = "SetKeyOwnersForKeyChord" -defs["igSetKeyOwnersForKeyChord"][1]["location"] = "imgui_internal:3156" +defs["igSetKeyOwnersForKeyChord"][1]["location"] = "imgui_internal:3217" defs["igSetKeyOwnersForKeyChord"][1]["namespace"] = "ImGui" defs["igSetKeyOwnersForKeyChord"][1]["ov_cimguiname"] = "igSetKeyOwnersForKeyChord" defs["igSetKeyOwnersForKeyChord"][1]["ret"] = "void" @@ -25156,7 +25245,7 @@ defs["igSetKeyboardFocusHere"][1]["cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" -defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:861" +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:863" defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -25184,7 +25273,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:3040" +defs["igSetLastItemData"][1]["location"] = "imgui_internal:3098" defs["igSetLastItemData"][1]["namespace"] = "ImGui" defs["igSetLastItemData"][1]["ov_cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["ret"] = "void" @@ -25203,13 +25292,32 @@ defs["igSetMouseCursor"][1]["call_args"] = "(cursor_type)" defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" -defs["igSetMouseCursor"][1]["location"] = "imgui:947" +defs["igSetMouseCursor"][1]["location"] = "imgui:949" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" defs["igSetMouseCursor"][1]["signature"] = "(ImGuiMouseCursor)" defs["igSetMouseCursor"][1]["stname"] = "" defs["igSetMouseCursor"]["(ImGuiMouseCursor)"] = defs["igSetMouseCursor"][1] +defs["igSetNavFocusScope"] = {} +defs["igSetNavFocusScope"][1] = {} +defs["igSetNavFocusScope"][1]["args"] = "(ImGuiID focus_scope_id)" +defs["igSetNavFocusScope"][1]["argsT"] = {} +defs["igSetNavFocusScope"][1]["argsT"][1] = {} +defs["igSetNavFocusScope"][1]["argsT"][1]["name"] = "focus_scope_id" +defs["igSetNavFocusScope"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igSetNavFocusScope"][1]["argsoriginal"] = "(ImGuiID focus_scope_id)" +defs["igSetNavFocusScope"][1]["call_args"] = "(focus_scope_id)" +defs["igSetNavFocusScope"][1]["cimguiname"] = "igSetNavFocusScope" +defs["igSetNavFocusScope"][1]["defaults"] = {} +defs["igSetNavFocusScope"][1]["funcname"] = "SetNavFocusScope" +defs["igSetNavFocusScope"][1]["location"] = "imgui_internal:3161" +defs["igSetNavFocusScope"][1]["namespace"] = "ImGui" +defs["igSetNavFocusScope"][1]["ov_cimguiname"] = "igSetNavFocusScope" +defs["igSetNavFocusScope"][1]["ret"] = "void" +defs["igSetNavFocusScope"][1]["signature"] = "(ImGuiID)" +defs["igSetNavFocusScope"][1]["stname"] = "" +defs["igSetNavFocusScope"]["(ImGuiID)"] = defs["igSetNavFocusScope"][1] defs["igSetNavID"] = {} defs["igSetNavID"][1] = {} defs["igSetNavID"][1]["args"] = "(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel)" @@ -25231,7 +25339,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:3101" +defs["igSetNavID"][1]["location"] = "imgui_internal:3160" defs["igSetNavID"][1]["namespace"] = "ImGui" defs["igSetNavID"][1]["ov_cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["ret"] = "void" @@ -25250,7 +25358,7 @@ defs["igSetNavWindow"][1]["call_args"] = "(window)" defs["igSetNavWindow"][1]["cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["defaults"] = {} defs["igSetNavWindow"][1]["funcname"] = "SetNavWindow" -defs["igSetNavWindow"][1]["location"] = "imgui_internal:3100" +defs["igSetNavWindow"][1]["location"] = "imgui_internal:3159" defs["igSetNavWindow"][1]["namespace"] = "ImGui" defs["igSetNavWindow"][1]["ov_cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["ret"] = "void" @@ -25269,7 +25377,7 @@ defs["igSetNextFrameWantCaptureKeyboard"][1]["call_args"] = "(want_capture_keybo defs["igSetNextFrameWantCaptureKeyboard"][1]["cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureKeyboard"][1]["funcname"] = "SetNextFrameWantCaptureKeyboard" -defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:927" +defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:929" defs["igSetNextFrameWantCaptureKeyboard"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureKeyboard"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["ret"] = "void" @@ -25288,7 +25396,7 @@ defs["igSetNextFrameWantCaptureMouse"][1]["call_args"] = "(want_capture_mouse)" defs["igSetNextFrameWantCaptureMouse"][1]["cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureMouse"][1]["funcname"] = "SetNextFrameWantCaptureMouse" -defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:948" +defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:950" defs["igSetNextFrameWantCaptureMouse"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureMouse"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["ret"] = "void" @@ -25304,7 +25412,7 @@ defs["igSetNextItemAllowOverlap"][1]["call_args"] = "()" defs["igSetNextItemAllowOverlap"][1]["cimguiname"] = "igSetNextItemAllowOverlap" defs["igSetNextItemAllowOverlap"][1]["defaults"] = {} defs["igSetNextItemAllowOverlap"][1]["funcname"] = "SetNextItemAllowOverlap" -defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:864" +defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:866" defs["igSetNextItemAllowOverlap"][1]["namespace"] = "ImGui" defs["igSetNextItemAllowOverlap"][1]["ov_cimguiname"] = "igSetNextItemAllowOverlap" defs["igSetNextItemAllowOverlap"][1]["ret"] = "void" @@ -25327,7 +25435,7 @@ defs["igSetNextItemOpen"][1]["cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["defaults"] = {} defs["igSetNextItemOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextItemOpen"][1]["funcname"] = "SetNextItemOpen" -defs["igSetNextItemOpen"][1]["location"] = "imgui:642" +defs["igSetNextItemOpen"][1]["location"] = "imgui:644" defs["igSetNextItemOpen"][1]["namespace"] = "ImGui" defs["igSetNextItemOpen"][1]["ov_cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["ret"] = "void" @@ -25346,13 +25454,32 @@ defs["igSetNextItemSelectionUserData"][1]["call_args"] = "(selection_user_data)" defs["igSetNextItemSelectionUserData"][1]["cimguiname"] = "igSetNextItemSelectionUserData" defs["igSetNextItemSelectionUserData"][1]["defaults"] = {} defs["igSetNextItemSelectionUserData"][1]["funcname"] = "SetNextItemSelectionUserData" -defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui_internal:3360" +defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui_internal:3422" defs["igSetNextItemSelectionUserData"][1]["namespace"] = "ImGui" defs["igSetNextItemSelectionUserData"][1]["ov_cimguiname"] = "igSetNextItemSelectionUserData" defs["igSetNextItemSelectionUserData"][1]["ret"] = "void" defs["igSetNextItemSelectionUserData"][1]["signature"] = "(ImGuiSelectionUserData)" defs["igSetNextItemSelectionUserData"][1]["stname"] = "" defs["igSetNextItemSelectionUserData"]["(ImGuiSelectionUserData)"] = defs["igSetNextItemSelectionUserData"][1] +defs["igSetNextItemShortcut"] = {} +defs["igSetNextItemShortcut"][1] = {} +defs["igSetNextItemShortcut"][1]["args"] = "(ImGuiKeyChord key_chord)" +defs["igSetNextItemShortcut"][1]["argsT"] = {} +defs["igSetNextItemShortcut"][1]["argsT"][1] = {} +defs["igSetNextItemShortcut"][1]["argsT"][1]["name"] = "key_chord" +defs["igSetNextItemShortcut"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igSetNextItemShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" +defs["igSetNextItemShortcut"][1]["call_args"] = "(key_chord)" +defs["igSetNextItemShortcut"][1]["cimguiname"] = "igSetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["defaults"] = {} +defs["igSetNextItemShortcut"][1]["funcname"] = "SetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["location"] = "imgui_internal:3250" +defs["igSetNextItemShortcut"][1]["namespace"] = "ImGui" +defs["igSetNextItemShortcut"][1]["ov_cimguiname"] = "igSetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["ret"] = "void" +defs["igSetNextItemShortcut"][1]["signature"] = "(ImGuiKeyChord)" +defs["igSetNextItemShortcut"][1]["stname"] = "" +defs["igSetNextItemShortcut"]["(ImGuiKeyChord)"] = defs["igSetNextItemShortcut"][1] defs["igSetNextItemWidth"] = {} defs["igSetNextItemWidth"][1] = {} defs["igSetNextItemWidth"][1]["args"] = "(float item_width)" @@ -25365,7 +25492,7 @@ defs["igSetNextItemWidth"][1]["call_args"] = "(item_width)" defs["igSetNextItemWidth"][1]["cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["defaults"] = {} defs["igSetNextItemWidth"][1]["funcname"] = "SetNextItemWidth" -defs["igSetNextItemWidth"][1]["location"] = "imgui:434" +defs["igSetNextItemWidth"][1]["location"] = "imgui:436" defs["igSetNextItemWidth"][1]["namespace"] = "ImGui" defs["igSetNextItemWidth"][1]["ov_cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["ret"] = "void" @@ -25384,7 +25511,7 @@ defs["igSetNextWindowBgAlpha"][1]["call_args"] = "(alpha)" defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" -defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:384" +defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:386" defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" @@ -25407,7 +25534,7 @@ defs["igSetNextWindowCollapsed"][1]["cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" -defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:381" +defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:383" defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" @@ -25426,7 +25553,7 @@ defs["igSetNextWindowContentSize"][1]["call_args"] = "(size)" defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" -defs["igSetNextWindowContentSize"][1]["location"] = "imgui:380" +defs["igSetNextWindowContentSize"][1]["location"] = "imgui:382" defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" @@ -25442,7 +25569,7 @@ defs["igSetNextWindowFocus"][1]["call_args"] = "()" defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" -defs["igSetNextWindowFocus"][1]["location"] = "imgui:382" +defs["igSetNextWindowFocus"][1]["location"] = "imgui:384" defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" @@ -25469,7 +25596,7 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" -defs["igSetNextWindowPos"][1]["location"] = "imgui:377" +defs["igSetNextWindowPos"][1]["location"] = "imgui:379" defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" @@ -25488,7 +25615,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:383" +defs["igSetNextWindowScroll"][1]["location"] = "imgui:385" defs["igSetNextWindowScroll"][1]["namespace"] = "ImGui" defs["igSetNextWindowScroll"][1]["ov_cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["ret"] = "void" @@ -25511,7 +25638,7 @@ defs["igSetNextWindowSize"][1]["cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" -defs["igSetNextWindowSize"][1]["location"] = "imgui:378" +defs["igSetNextWindowSize"][1]["location"] = "imgui:380" defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" @@ -25541,7 +25668,7 @@ defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" -defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:379" +defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:381" defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" @@ -25564,7 +25691,7 @@ defs["igSetScrollFromPosX"][1]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["defaults"] = {} defs["igSetScrollFromPosX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][1]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][1]["location"] = "imgui:414" +defs["igSetScrollFromPosX"][1]["location"] = "imgui:416" defs["igSetScrollFromPosX"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][1]["ov_cimguiname"] = "igSetScrollFromPosX_Float" defs["igSetScrollFromPosX"][1]["ret"] = "void" @@ -25587,7 +25714,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:3006" +defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:3064" defs["igSetScrollFromPosX"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][2]["ov_cimguiname"] = "igSetScrollFromPosX_WindowPtr" defs["igSetScrollFromPosX"][2]["ret"] = "void" @@ -25611,7 +25738,7 @@ defs["igSetScrollFromPosY"][1]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][1]["location"] = "imgui:415" +defs["igSetScrollFromPosY"][1]["location"] = "imgui:417" defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosY_Float" defs["igSetScrollFromPosY"][1]["ret"] = "void" @@ -25634,7 +25761,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:3007" +defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:3065" defs["igSetScrollFromPosY"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][2]["ov_cimguiname"] = "igSetScrollFromPosY_WindowPtr" defs["igSetScrollFromPosY"][2]["ret"] = "void" @@ -25655,7 +25782,7 @@ defs["igSetScrollHereX"][1]["cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["defaults"] = {} defs["igSetScrollHereX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollHereX"][1]["funcname"] = "SetScrollHereX" -defs["igSetScrollHereX"][1]["location"] = "imgui:412" +defs["igSetScrollHereX"][1]["location"] = "imgui:414" defs["igSetScrollHereX"][1]["namespace"] = "ImGui" defs["igSetScrollHereX"][1]["ov_cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["ret"] = "void" @@ -25675,7 +25802,7 @@ defs["igSetScrollHereY"][1]["cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" -defs["igSetScrollHereY"][1]["location"] = "imgui:413" +defs["igSetScrollHereY"][1]["location"] = "imgui:415" defs["igSetScrollHereY"][1]["namespace"] = "ImGui" defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" @@ -25694,7 +25821,7 @@ defs["igSetScrollX"][1]["call_args"] = "(scroll_x)" defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" -defs["igSetScrollX"][1]["location"] = "imgui:408" +defs["igSetScrollX"][1]["location"] = "imgui:410" defs["igSetScrollX"][1]["namespace"] = "ImGui" defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollX_Float" defs["igSetScrollX"][1]["ret"] = "void" @@ -25714,7 +25841,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:3004" +defs["igSetScrollX"][2]["location"] = "imgui_internal:3062" defs["igSetScrollX"][2]["namespace"] = "ImGui" defs["igSetScrollX"][2]["ov_cimguiname"] = "igSetScrollX_WindowPtr" defs["igSetScrollX"][2]["ret"] = "void" @@ -25734,7 +25861,7 @@ defs["igSetScrollY"][1]["call_args"] = "(scroll_y)" defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" -defs["igSetScrollY"][1]["location"] = "imgui:409" +defs["igSetScrollY"][1]["location"] = "imgui:411" defs["igSetScrollY"][1]["namespace"] = "ImGui" defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollY_Float" defs["igSetScrollY"][1]["ret"] = "void" @@ -25754,7 +25881,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:3005" +defs["igSetScrollY"][2]["location"] = "imgui_internal:3063" defs["igSetScrollY"][2]["namespace"] = "ImGui" defs["igSetScrollY"][2]["ov_cimguiname"] = "igSetScrollY_WindowPtr" defs["igSetScrollY"][2]["ret"] = "void" @@ -25775,14 +25902,13 @@ defs["igSetShortcutRouting"][1]["argsT"][2]["type"] = "ImGuiID" defs["igSetShortcutRouting"][1]["argsT"][3] = {} defs["igSetShortcutRouting"][1]["argsT"][3]["name"] = "flags" defs["igSetShortcutRouting"][1]["argsT"][3]["type"] = "ImGuiInputFlags" -defs["igSetShortcutRouting"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)" +defs["igSetShortcutRouting"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags=0)" defs["igSetShortcutRouting"][1]["call_args"] = "(key_chord,owner_id,flags)" defs["igSetShortcutRouting"][1]["cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["defaults"] = {} defs["igSetShortcutRouting"][1]["defaults"]["flags"] = "0" -defs["igSetShortcutRouting"][1]["defaults"]["owner_id"] = "0" defs["igSetShortcutRouting"][1]["funcname"] = "SetShortcutRouting" -defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3190" +defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3252" defs["igSetShortcutRouting"][1]["namespace"] = "ImGui" defs["igSetShortcutRouting"][1]["ov_cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["ret"] = "bool" @@ -25801,7 +25927,7 @@ defs["igSetStateStorage"][1]["call_args"] = "(storage)" defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" -defs["igSetStateStorage"][1]["location"] = "imgui:904" +defs["igSetStateStorage"][1]["location"] = "imgui:906" defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -25820,7 +25946,7 @@ defs["igSetTabItemClosed"][1]["call_args"] = "(tab_or_docked_window_label)" defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" -defs["igSetTabItemClosed"][1]["location"] = "imgui:821" +defs["igSetTabItemClosed"][1]["location"] = "imgui:823" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -25843,7 +25969,7 @@ defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" -defs["igSetTooltip"][1]["location"] = "imgui:694" +defs["igSetTooltip"][1]["location"] = "imgui:696" defs["igSetTooltip"][1]["namespace"] = "ImGui" defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" @@ -25865,7 +25991,7 @@ defs["igSetTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" -defs["igSetTooltipV"][1]["location"] = "imgui:695" +defs["igSetTooltipV"][1]["location"] = "imgui:697" defs["igSetTooltipV"][1]["namespace"] = "ImGui" defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" @@ -25887,7 +26013,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:3220" +defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:3282" defs["igSetWindowClipRectBeforeSetChannel"][1]["namespace"] = "ImGui" defs["igSetWindowClipRectBeforeSetChannel"][1]["ov_cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["ret"] = "void" @@ -25910,7 +26036,7 @@ defs["igSetWindowCollapsed"][1]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][1]["location"] = "imgui:387" +defs["igSetWindowCollapsed"][1]["location"] = "imgui:389" defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsed_Bool" defs["igSetWindowCollapsed"][1]["ret"] = "void" @@ -25934,7 +26060,7 @@ defs["igSetWindowCollapsed"][2]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][2]["location"] = "imgui:392" +defs["igSetWindowCollapsed"][2]["location"] = "imgui:394" defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsed_Str" defs["igSetWindowCollapsed"][2]["ret"] = "void" @@ -25958,7 +26084,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:2941" +defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:2998" defs["igSetWindowCollapsed"][3]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][3]["ov_cimguiname"] = "igSetWindowCollapsed_WindowPtr" defs["igSetWindowCollapsed"][3]["ret"] = "void" @@ -25976,7 +26102,7 @@ defs["igSetWindowFocus"][1]["call_args"] = "()" defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][1]["location"] = "imgui:388" +defs["igSetWindowFocus"][1]["location"] = "imgui:390" defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocus_Nil" defs["igSetWindowFocus"][1]["ret"] = "void" @@ -25993,7 +26119,7 @@ defs["igSetWindowFocus"][2]["call_args"] = "(name)" defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][2]["location"] = "imgui:393" +defs["igSetWindowFocus"][2]["location"] = "imgui:395" defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocus_Str" defs["igSetWindowFocus"][2]["ret"] = "void" @@ -26013,7 +26139,7 @@ defs["igSetWindowFontScale"][1]["call_args"] = "(scale)" defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" -defs["igSetWindowFontScale"][1]["location"] = "imgui:389" +defs["igSetWindowFontScale"][1]["location"] = "imgui:391" defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" @@ -26032,7 +26158,7 @@ defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["call_args"] = "(window) defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["defaults"] = {} defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["funcname"] = "SetWindowHiddenAndSkipItemsForCurrentFrame" -defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["location"] = "imgui_internal:2943" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["location"] = "imgui_internal:3000" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["namespace"] = "ImGui" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ov_cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ret"] = "void" @@ -26057,13 +26183,35 @@ 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:2942" +defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:2999" defs["igSetWindowHitTestHole"][1]["namespace"] = "ImGui" defs["igSetWindowHitTestHole"][1]["ov_cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["ret"] = "void" defs["igSetWindowHitTestHole"][1]["signature"] = "(ImGuiWindow*,const ImVec2,const ImVec2)" defs["igSetWindowHitTestHole"][1]["stname"] = "" defs["igSetWindowHitTestHole"]["(ImGuiWindow*,const ImVec2,const ImVec2)"] = defs["igSetWindowHitTestHole"][1] +defs["igSetWindowParentWindowForFocusRoute"] = {} +defs["igSetWindowParentWindowForFocusRoute"][1] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["args"] = "(ImGuiWindow* window,ImGuiWindow* parent_window)" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][1] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][1]["name"] = "window" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][2] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][2]["name"] = "parent_window" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiWindow* parent_window)" +defs["igSetWindowParentWindowForFocusRoute"][1]["call_args"] = "(window,parent_window)" +defs["igSetWindowParentWindowForFocusRoute"][1]["cimguiname"] = "igSetWindowParentWindowForFocusRoute" +defs["igSetWindowParentWindowForFocusRoute"][1]["defaults"] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["funcname"] = "SetWindowParentWindowForFocusRoute" +defs["igSetWindowParentWindowForFocusRoute"][1]["location"] = "imgui_internal:3001" +defs["igSetWindowParentWindowForFocusRoute"][1]["namespace"] = "ImGui" +defs["igSetWindowParentWindowForFocusRoute"][1]["ov_cimguiname"] = "igSetWindowParentWindowForFocusRoute" +defs["igSetWindowParentWindowForFocusRoute"][1]["ret"] = "void" +defs["igSetWindowParentWindowForFocusRoute"][1]["signature"] = "(ImGuiWindow*,ImGuiWindow*)" +defs["igSetWindowParentWindowForFocusRoute"][1]["stname"] = "" +defs["igSetWindowParentWindowForFocusRoute"]["(ImGuiWindow*,ImGuiWindow*)"] = defs["igSetWindowParentWindowForFocusRoute"][1] defs["igSetWindowPos"] = {} defs["igSetWindowPos"][1] = {} defs["igSetWindowPos"][1]["args"] = "(const ImVec2 pos,ImGuiCond cond)" @@ -26080,7 +26228,7 @@ defs["igSetWindowPos"][1]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][1]["location"] = "imgui:385" +defs["igSetWindowPos"][1]["location"] = "imgui:387" defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPos_Vec2" defs["igSetWindowPos"][1]["ret"] = "void" @@ -26104,7 +26252,7 @@ defs["igSetWindowPos"][2]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][2]["location"] = "imgui:390" +defs["igSetWindowPos"][2]["location"] = "imgui:392" defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPos_Str" defs["igSetWindowPos"][2]["ret"] = "void" @@ -26128,7 +26276,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:2939" +defs["igSetWindowPos"][3]["location"] = "imgui_internal:2996" defs["igSetWindowPos"][3]["namespace"] = "ImGui" defs["igSetWindowPos"][3]["ov_cimguiname"] = "igSetWindowPos_WindowPtr" defs["igSetWindowPos"][3]["ret"] = "void" @@ -26153,7 +26301,7 @@ defs["igSetWindowSize"][1]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][1]["location"] = "imgui:386" +defs["igSetWindowSize"][1]["location"] = "imgui:388" defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSize_Vec2" defs["igSetWindowSize"][1]["ret"] = "void" @@ -26177,7 +26325,7 @@ defs["igSetWindowSize"][2]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][2]["location"] = "imgui:391" +defs["igSetWindowSize"][2]["location"] = "imgui:393" defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSize_Str" defs["igSetWindowSize"][2]["ret"] = "void" @@ -26201,7 +26349,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:2940" +defs["igSetWindowSize"][3]["location"] = "imgui_internal:2997" defs["igSetWindowSize"][3]["namespace"] = "ImGui" defs["igSetWindowSize"][3]["ov_cimguiname"] = "igSetWindowSize_WindowPtr" defs["igSetWindowSize"][3]["ret"] = "void" @@ -26225,7 +26373,7 @@ defs["igSetWindowViewport"][1]["call_args"] = "(window,viewport)" defs["igSetWindowViewport"][1]["cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["defaults"] = {} defs["igSetWindowViewport"][1]["funcname"] = "SetWindowViewport" -defs["igSetWindowViewport"][1]["location"] = "imgui_internal:2983" +defs["igSetWindowViewport"][1]["location"] = "imgui_internal:3041" defs["igSetWindowViewport"][1]["namespace"] = "ImGui" defs["igSetWindowViewport"][1]["ov_cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["ret"] = "void" @@ -26262,7 +26410,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:3397" +defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3459" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ov_cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ret"] = "void" @@ -26302,7 +26450,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:3398" +defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3460" defs["igShadeVertsLinearUV"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearUV"][1]["ov_cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["ret"] = "void" @@ -26339,7 +26487,7 @@ defs["igShadeVertsTransformPos"][1]["call_args"] = "(draw_list,vert_start_idx,ve defs["igShadeVertsTransformPos"][1]["cimguiname"] = "igShadeVertsTransformPos" defs["igShadeVertsTransformPos"][1]["defaults"] = {} defs["igShadeVertsTransformPos"][1]["funcname"] = "ShadeVertsTransformPos" -defs["igShadeVertsTransformPos"][1]["location"] = "imgui_internal:3399" +defs["igShadeVertsTransformPos"][1]["location"] = "imgui_internal:3461" defs["igShadeVertsTransformPos"][1]["namespace"] = "ImGui" defs["igShadeVertsTransformPos"][1]["ov_cimguiname"] = "igShadeVertsTransformPos" defs["igShadeVertsTransformPos"][1]["ret"] = "void" @@ -26366,7 +26514,7 @@ defs["igShortcut"][1]["defaults"] = {} defs["igShortcut"][1]["defaults"]["flags"] = "0" defs["igShortcut"][1]["defaults"]["owner_id"] = "0" defs["igShortcut"][1]["funcname"] = "Shortcut" -defs["igShortcut"][1]["location"] = "imgui_internal:3189" +defs["igShortcut"][1]["location"] = "imgui_internal:3251" defs["igShortcut"][1]["namespace"] = "ImGui" defs["igShortcut"][1]["ov_cimguiname"] = "igShortcut" defs["igShortcut"][1]["ret"] = "bool" @@ -26386,7 +26534,7 @@ defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["defaults"] = {} defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" -defs["igShowAboutWindow"][1]["location"] = "imgui:314" +defs["igShowAboutWindow"][1]["location"] = "imgui:316" defs["igShowAboutWindow"][1]["namespace"] = "ImGui" defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" @@ -26406,7 +26554,7 @@ defs["igShowDebugLogWindow"][1]["cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["defaults"] = {} defs["igShowDebugLogWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDebugLogWindow"][1]["funcname"] = "ShowDebugLogWindow" -defs["igShowDebugLogWindow"][1]["location"] = "imgui:312" +defs["igShowDebugLogWindow"][1]["location"] = "imgui:314" defs["igShowDebugLogWindow"][1]["namespace"] = "ImGui" defs["igShowDebugLogWindow"][1]["ov_cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["ret"] = "void" @@ -26426,7 +26574,7 @@ defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["defaults"] = {} defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" -defs["igShowDemoWindow"][1]["location"] = "imgui:310" +defs["igShowDemoWindow"][1]["location"] = "imgui:312" defs["igShowDemoWindow"][1]["namespace"] = "ImGui" defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" @@ -26445,7 +26593,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:3425" +defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3487" defs["igShowFontAtlas"][1]["namespace"] = "ImGui" defs["igShowFontAtlas"][1]["ov_cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["ret"] = "void" @@ -26464,7 +26612,7 @@ defs["igShowFontSelector"][1]["call_args"] = "(label)" defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" -defs["igShowFontSelector"][1]["location"] = "imgui:317" +defs["igShowFontSelector"][1]["location"] = "imgui:319" defs["igShowFontSelector"][1]["namespace"] = "ImGui" defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" @@ -26484,7 +26632,7 @@ defs["igShowIDStackToolWindow"][1]["cimguiname"] = "igShowIDStackToolWindow" defs["igShowIDStackToolWindow"][1]["defaults"] = {} defs["igShowIDStackToolWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowIDStackToolWindow"][1]["funcname"] = "ShowIDStackToolWindow" -defs["igShowIDStackToolWindow"][1]["location"] = "imgui:313" +defs["igShowIDStackToolWindow"][1]["location"] = "imgui:315" defs["igShowIDStackToolWindow"][1]["namespace"] = "ImGui" defs["igShowIDStackToolWindow"][1]["ov_cimguiname"] = "igShowIDStackToolWindow" defs["igShowIDStackToolWindow"][1]["ret"] = "void" @@ -26504,7 +26652,7 @@ defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["defaults"] = {} defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" -defs["igShowMetricsWindow"][1]["location"] = "imgui:311" +defs["igShowMetricsWindow"][1]["location"] = "imgui:313" defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" @@ -26524,7 +26672,7 @@ defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["defaults"] = {} defs["igShowStyleEditor"][1]["defaults"]["ref"] = "NULL" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" -defs["igShowStyleEditor"][1]["location"] = "imgui:315" +defs["igShowStyleEditor"][1]["location"] = "imgui:317" defs["igShowStyleEditor"][1]["namespace"] = "ImGui" defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" @@ -26543,7 +26691,7 @@ defs["igShowStyleSelector"][1]["call_args"] = "(label)" defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" -defs["igShowStyleSelector"][1]["location"] = "imgui:316" +defs["igShowStyleSelector"][1]["location"] = "imgui:318" defs["igShowStyleSelector"][1]["namespace"] = "ImGui" defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" @@ -26559,7 +26707,7 @@ defs["igShowUserGuide"][1]["call_args"] = "()" defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" -defs["igShowUserGuide"][1]["location"] = "imgui:318" +defs["igShowUserGuide"][1]["location"] = "imgui:320" defs["igShowUserGuide"][1]["namespace"] = "ImGui" defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" @@ -26584,7 +26732,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:3046" +defs["igShrinkWidths"][1]["location"] = "imgui_internal:3104" defs["igShrinkWidths"][1]["namespace"] = "ImGui" defs["igShrinkWidths"][1]["ov_cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["ret"] = "void" @@ -26600,7 +26748,7 @@ defs["igShutdown"][1]["call_args"] = "()" defs["igShutdown"][1]["cimguiname"] = "igShutdown" defs["igShutdown"][1]["defaults"] = {} defs["igShutdown"][1]["funcname"] = "Shutdown" -defs["igShutdown"][1]["location"] = "imgui_internal:2968" +defs["igShutdown"][1]["location"] = "imgui_internal:3026" defs["igShutdown"][1]["namespace"] = "ImGui" defs["igShutdown"][1]["ov_cimguiname"] = "igShutdown" defs["igShutdown"][1]["ret"] = "void" @@ -26638,7 +26786,7 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" -defs["igSliderAngle"][1]["location"] = "imgui:585" +defs["igSliderAngle"][1]["location"] = "imgui:587" defs["igSliderAngle"][1]["namespace"] = "ImGui" defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" @@ -26681,7 +26829,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:3354" +defs["igSliderBehavior"][1]["location"] = "imgui_internal:3416" defs["igSliderBehavior"][1]["namespace"] = "ImGui" defs["igSliderBehavior"][1]["ov_cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["ret"] = "bool" @@ -26717,7 +26865,7 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["flags"] = "0" defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" -defs["igSliderFloat"][1]["location"] = "imgui:581" +defs["igSliderFloat"][1]["location"] = "imgui:583" defs["igSliderFloat"][1]["namespace"] = "ImGui" defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" @@ -26753,7 +26901,7 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["flags"] = "0" defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" -defs["igSliderFloat2"][1]["location"] = "imgui:582" +defs["igSliderFloat2"][1]["location"] = "imgui:584" defs["igSliderFloat2"][1]["namespace"] = "ImGui" defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" @@ -26789,7 +26937,7 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["flags"] = "0" defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" -defs["igSliderFloat3"][1]["location"] = "imgui:583" +defs["igSliderFloat3"][1]["location"] = "imgui:585" defs["igSliderFloat3"][1]["namespace"] = "ImGui" defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" @@ -26825,7 +26973,7 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["flags"] = "0" defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" -defs["igSliderFloat4"][1]["location"] = "imgui:584" +defs["igSliderFloat4"][1]["location"] = "imgui:586" defs["igSliderFloat4"][1]["namespace"] = "ImGui" defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" @@ -26861,7 +27009,7 @@ defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["flags"] = "0" defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" -defs["igSliderInt"][1]["location"] = "imgui:586" +defs["igSliderInt"][1]["location"] = "imgui:588" defs["igSliderInt"][1]["namespace"] = "ImGui" defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" @@ -26897,7 +27045,7 @@ defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["flags"] = "0" defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" -defs["igSliderInt2"][1]["location"] = "imgui:587" +defs["igSliderInt2"][1]["location"] = "imgui:589" defs["igSliderInt2"][1]["namespace"] = "ImGui" defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" @@ -26933,7 +27081,7 @@ defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["flags"] = "0" defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" -defs["igSliderInt3"][1]["location"] = "imgui:588" +defs["igSliderInt3"][1]["location"] = "imgui:590" defs["igSliderInt3"][1]["namespace"] = "ImGui" defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" @@ -26969,7 +27117,7 @@ defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["flags"] = "0" defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" -defs["igSliderInt4"][1]["location"] = "imgui:589" +defs["igSliderInt4"][1]["location"] = "imgui:591" defs["igSliderInt4"][1]["namespace"] = "ImGui" defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" @@ -27008,7 +27156,7 @@ defs["igSliderScalar"][1]["defaults"] = {} defs["igSliderScalar"][1]["defaults"]["flags"] = "0" defs["igSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" -defs["igSliderScalar"][1]["location"] = "imgui:590" +defs["igSliderScalar"][1]["location"] = "imgui:592" defs["igSliderScalar"][1]["namespace"] = "ImGui" defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -27050,7 +27198,7 @@ defs["igSliderScalarN"][1]["defaults"] = {} defs["igSliderScalarN"][1]["defaults"]["flags"] = "0" defs["igSliderScalarN"][1]["defaults"]["format"] = "NULL" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" -defs["igSliderScalarN"][1]["location"] = "imgui:591" +defs["igSliderScalarN"][1]["location"] = "imgui:593" defs["igSliderScalarN"][1]["namespace"] = "ImGui" defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -27069,7 +27217,7 @@ defs["igSmallButton"][1]["call_args"] = "(label)" defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" -defs["igSmallButton"][1]["location"] = "imgui:523" +defs["igSmallButton"][1]["location"] = "imgui:525" defs["igSmallButton"][1]["namespace"] = "ImGui" defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" @@ -27085,7 +27233,7 @@ defs["igSpacing"][1]["call_args"] = "()" defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" -defs["igSpacing"][1]["location"] = "imgui:471" +defs["igSpacing"][1]["location"] = "imgui:473" defs["igSpacing"][1]["namespace"] = "ImGui" defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" @@ -27134,7 +27282,7 @@ defs["igSplitterBehavior"][1]["defaults"]["bg_col"] = "0" defs["igSplitterBehavior"][1]["defaults"]["hover_extend"] = "0.0f" defs["igSplitterBehavior"][1]["defaults"]["hover_visibility_delay"] = "0.0f" defs["igSplitterBehavior"][1]["funcname"] = "SplitterBehavior" -defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3355" +defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3417" defs["igSplitterBehavior"][1]["namespace"] = "ImGui" defs["igSplitterBehavior"][1]["ov_cimguiname"] = "igSplitterBehavior" defs["igSplitterBehavior"][1]["ret"] = "bool" @@ -27153,7 +27301,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:2973" +defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:3031" defs["igStartMouseMovingWindow"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindow"][1]["ov_cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["ret"] = "void" @@ -27173,7 +27321,7 @@ defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["defaults"] = {} defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" -defs["igStyleColorsClassic"][1]["location"] = "imgui:324" +defs["igStyleColorsClassic"][1]["location"] = "imgui:326" defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" @@ -27193,7 +27341,7 @@ defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["defaults"] = {} defs["igStyleColorsDark"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" -defs["igStyleColorsDark"][1]["location"] = "imgui:322" +defs["igStyleColorsDark"][1]["location"] = "imgui:324" defs["igStyleColorsDark"][1]["namespace"] = "ImGui" defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" @@ -27213,7 +27361,7 @@ defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["defaults"] = {} defs["igStyleColorsLight"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" -defs["igStyleColorsLight"][1]["location"] = "imgui:323" +defs["igStyleColorsLight"][1]["location"] = "imgui:325" defs["igStyleColorsLight"][1]["namespace"] = "ImGui" defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" @@ -27235,7 +27383,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:3297" +defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:3359" defs["igTabBarCloseTab"][1]["namespace"] = "ImGui" defs["igTabBarCloseTab"][1]["ov_cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["ret"] = "void" @@ -27257,7 +27405,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:3291" +defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3353" defs["igTabBarFindTabByID"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByID"][1]["ov_cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["ret"] = "ImGuiTabItem*" @@ -27279,7 +27427,7 @@ defs["igTabBarFindTabByOrder"][1]["call_args"] = "(tab_bar,order)" defs["igTabBarFindTabByOrder"][1]["cimguiname"] = "igTabBarFindTabByOrder" defs["igTabBarFindTabByOrder"][1]["defaults"] = {} defs["igTabBarFindTabByOrder"][1]["funcname"] = "TabBarFindTabByOrder" -defs["igTabBarFindTabByOrder"][1]["location"] = "imgui_internal:3292" +defs["igTabBarFindTabByOrder"][1]["location"] = "imgui_internal:3354" defs["igTabBarFindTabByOrder"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByOrder"][1]["ov_cimguiname"] = "igTabBarFindTabByOrder" defs["igTabBarFindTabByOrder"][1]["ret"] = "ImGuiTabItem*" @@ -27298,7 +27446,7 @@ defs["igTabBarGetCurrentTab"][1]["call_args"] = "(tab_bar)" defs["igTabBarGetCurrentTab"][1]["cimguiname"] = "igTabBarGetCurrentTab" defs["igTabBarGetCurrentTab"][1]["defaults"] = {} defs["igTabBarGetCurrentTab"][1]["funcname"] = "TabBarGetCurrentTab" -defs["igTabBarGetCurrentTab"][1]["location"] = "imgui_internal:3293" +defs["igTabBarGetCurrentTab"][1]["location"] = "imgui_internal:3355" defs["igTabBarGetCurrentTab"][1]["namespace"] = "ImGui" defs["igTabBarGetCurrentTab"][1]["ov_cimguiname"] = "igTabBarGetCurrentTab" defs["igTabBarGetCurrentTab"][1]["ret"] = "ImGuiTabItem*" @@ -27320,7 +27468,7 @@ defs["igTabBarGetTabName"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarGetTabName"][1]["cimguiname"] = "igTabBarGetTabName" defs["igTabBarGetTabName"][1]["defaults"] = {} defs["igTabBarGetTabName"][1]["funcname"] = "TabBarGetTabName" -defs["igTabBarGetTabName"][1]["location"] = "imgui_internal:3295" +defs["igTabBarGetTabName"][1]["location"] = "imgui_internal:3357" defs["igTabBarGetTabName"][1]["namespace"] = "ImGui" defs["igTabBarGetTabName"][1]["ov_cimguiname"] = "igTabBarGetTabName" defs["igTabBarGetTabName"][1]["ret"] = "const char*" @@ -27342,7 +27490,7 @@ defs["igTabBarGetTabOrder"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarGetTabOrder"][1]["cimguiname"] = "igTabBarGetTabOrder" defs["igTabBarGetTabOrder"][1]["defaults"] = {} defs["igTabBarGetTabOrder"][1]["funcname"] = "TabBarGetTabOrder" -defs["igTabBarGetTabOrder"][1]["location"] = "imgui_internal:3294" +defs["igTabBarGetTabOrder"][1]["location"] = "imgui_internal:3356" defs["igTabBarGetTabOrder"][1]["namespace"] = "ImGui" defs["igTabBarGetTabOrder"][1]["ov_cimguiname"] = "igTabBarGetTabOrder" defs["igTabBarGetTabOrder"][1]["ret"] = "int" @@ -27361,7 +27509,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:3301" +defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3363" defs["igTabBarProcessReorder"][1]["namespace"] = "ImGui" defs["igTabBarProcessReorder"][1]["ov_cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["ret"] = "bool" @@ -27383,7 +27531,7 @@ defs["igTabBarQueueFocus"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarQueueFocus"][1]["cimguiname"] = "igTabBarQueueFocus" defs["igTabBarQueueFocus"][1]["defaults"] = {} defs["igTabBarQueueFocus"][1]["funcname"] = "TabBarQueueFocus" -defs["igTabBarQueueFocus"][1]["location"] = "imgui_internal:3298" +defs["igTabBarQueueFocus"][1]["location"] = "imgui_internal:3360" defs["igTabBarQueueFocus"][1]["namespace"] = "ImGui" defs["igTabBarQueueFocus"][1]["ov_cimguiname"] = "igTabBarQueueFocus" defs["igTabBarQueueFocus"][1]["ret"] = "void" @@ -27408,7 +27556,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:3299" +defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3361" defs["igTabBarQueueReorder"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorder"][1]["ov_cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["ret"] = "void" @@ -27433,7 +27581,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:3300" +defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3362" defs["igTabBarQueueReorderFromMousePos"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorderFromMousePos"][1]["ov_cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["ret"] = "void" @@ -27455,7 +27603,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:3296" +defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:3358" defs["igTabBarRemoveTab"][1]["namespace"] = "ImGui" defs["igTabBarRemoveTab"][1]["ov_cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["ret"] = "void" @@ -27483,7 +27631,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:3305" +defs["igTabItemBackground"][1]["location"] = "imgui_internal:3367" defs["igTabItemBackground"][1]["namespace"] = "ImGui" defs["igTabItemBackground"][1]["ov_cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["ret"] = "void" @@ -27506,7 +27654,7 @@ defs["igTabItemButton"][1]["cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["defaults"] = {} defs["igTabItemButton"][1]["defaults"]["flags"] = "0" defs["igTabItemButton"][1]["funcname"] = "TabItemButton" -defs["igTabItemButton"][1]["location"] = "imgui:820" +defs["igTabItemButton"][1]["location"] = "imgui:822" defs["igTabItemButton"][1]["namespace"] = "ImGui" defs["igTabItemButton"][1]["ov_cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["ret"] = "bool" @@ -27531,7 +27679,7 @@ defs["igTabItemCalcSize"][1]["call_args"] = "(label,has_close_button_or_unsaved_ defs["igTabItemCalcSize"][1]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][1]["defaults"] = {} defs["igTabItemCalcSize"][1]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3303" +defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3365" defs["igTabItemCalcSize"][1]["namespace"] = "ImGui" defs["igTabItemCalcSize"][1]["nonUDT"] = 1 defs["igTabItemCalcSize"][1]["ov_cimguiname"] = "igTabItemCalcSize_Str" @@ -27552,7 +27700,7 @@ defs["igTabItemCalcSize"][2]["call_args"] = "(window)" defs["igTabItemCalcSize"][2]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][2]["defaults"] = {} defs["igTabItemCalcSize"][2]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3304" +defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3366" defs["igTabItemCalcSize"][2]["namespace"] = "ImGui" defs["igTabItemCalcSize"][2]["nonUDT"] = 1 defs["igTabItemCalcSize"][2]["ov_cimguiname"] = "igTabItemCalcSize_WindowPtr" @@ -27585,7 +27733,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:3302" +defs["igTabItemEx"][1]["location"] = "imgui_internal:3364" defs["igTabItemEx"][1]["namespace"] = "ImGui" defs["igTabItemEx"][1]["ov_cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["ret"] = "bool" @@ -27631,7 +27779,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:3306" +defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:3368" defs["igTabItemLabelAndCloseButton"][1]["namespace"] = "ImGui" defs["igTabItemLabelAndCloseButton"][1]["ov_cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["ret"] = "void" @@ -27647,7 +27795,7 @@ defs["igTableAngledHeadersRow"][1]["call_args"] = "()" defs["igTableAngledHeadersRow"][1]["cimguiname"] = "igTableAngledHeadersRow" defs["igTableAngledHeadersRow"][1]["defaults"] = {} defs["igTableAngledHeadersRow"][1]["funcname"] = "TableAngledHeadersRow" -defs["igTableAngledHeadersRow"][1]["location"] = "imgui:786" +defs["igTableAngledHeadersRow"][1]["location"] = "imgui:788" defs["igTableAngledHeadersRow"][1]["namespace"] = "ImGui" defs["igTableAngledHeadersRow"][1]["ov_cimguiname"] = "igTableAngledHeadersRow" defs["igTableAngledHeadersRow"][1]["ret"] = "void" @@ -27670,7 +27818,7 @@ defs["igTableAngledHeadersRowEx"][1]["cimguiname"] = "igTableAngledHeadersRowEx" defs["igTableAngledHeadersRowEx"][1]["defaults"] = {} defs["igTableAngledHeadersRowEx"][1]["defaults"]["label_width"] = "0.0f" defs["igTableAngledHeadersRowEx"][1]["funcname"] = "TableAngledHeadersRowEx" -defs["igTableAngledHeadersRowEx"][1]["location"] = "imgui_internal:3241" +defs["igTableAngledHeadersRowEx"][1]["location"] = "imgui_internal:3303" defs["igTableAngledHeadersRowEx"][1]["namespace"] = "ImGui" defs["igTableAngledHeadersRowEx"][1]["ov_cimguiname"] = "igTableAngledHeadersRowEx" defs["igTableAngledHeadersRowEx"][1]["ret"] = "void" @@ -27689,7 +27837,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:3248" +defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3310" defs["igTableBeginApplyRequests"][1]["namespace"] = "ImGui" defs["igTableBeginApplyRequests"][1]["ov_cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["ret"] = "void" @@ -27711,7 +27859,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:3266" +defs["igTableBeginCell"][1]["location"] = "imgui_internal:3328" defs["igTableBeginCell"][1]["namespace"] = "ImGui" defs["igTableBeginCell"][1]["ov_cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["ret"] = "void" @@ -27730,7 +27878,7 @@ defs["igTableBeginContextMenuPopup"][1]["call_args"] = "(table)" defs["igTableBeginContextMenuPopup"][1]["cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["defaults"] = {} defs["igTableBeginContextMenuPopup"][1]["funcname"] = "TableBeginContextMenuPopup" -defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3255" +defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3317" defs["igTableBeginContextMenuPopup"][1]["namespace"] = "ImGui" defs["igTableBeginContextMenuPopup"][1]["ov_cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["ret"] = "bool" @@ -27752,7 +27900,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:3247" +defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3309" defs["igTableBeginInitMemory"][1]["namespace"] = "ImGui" defs["igTableBeginInitMemory"][1]["ov_cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["ret"] = "void" @@ -27771,7 +27919,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:3264" +defs["igTableBeginRow"][1]["location"] = "imgui_internal:3326" defs["igTableBeginRow"][1]["namespace"] = "ImGui" defs["igTableBeginRow"][1]["ov_cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["ret"] = "void" @@ -27790,7 +27938,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:3253" +defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3315" defs["igTableDrawBorders"][1]["namespace"] = "ImGui" defs["igTableDrawBorders"][1]["ov_cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["ret"] = "void" @@ -27812,7 +27960,7 @@ defs["igTableDrawDefaultContextMenu"][1]["call_args"] = "(table,flags_for_sectio defs["igTableDrawDefaultContextMenu"][1]["cimguiname"] = "igTableDrawDefaultContextMenu" defs["igTableDrawDefaultContextMenu"][1]["defaults"] = {} defs["igTableDrawDefaultContextMenu"][1]["funcname"] = "TableDrawDefaultContextMenu" -defs["igTableDrawDefaultContextMenu"][1]["location"] = "imgui_internal:3254" +defs["igTableDrawDefaultContextMenu"][1]["location"] = "imgui_internal:3316" defs["igTableDrawDefaultContextMenu"][1]["namespace"] = "ImGui" defs["igTableDrawDefaultContextMenu"][1]["ov_cimguiname"] = "igTableDrawDefaultContextMenu" defs["igTableDrawDefaultContextMenu"][1]["ret"] = "void" @@ -27831,7 +27979,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:3267" +defs["igTableEndCell"][1]["location"] = "imgui_internal:3329" defs["igTableEndCell"][1]["namespace"] = "ImGui" defs["igTableEndCell"][1]["ov_cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["ret"] = "void" @@ -27850,7 +27998,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:3265" +defs["igTableEndRow"][1]["location"] = "imgui_internal:3327" defs["igTableEndRow"][1]["namespace"] = "ImGui" defs["igTableEndRow"][1]["ov_cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["ret"] = "void" @@ -27869,7 +28017,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:3245" +defs["igTableFindByID"][1]["location"] = "imgui_internal:3307" defs["igTableFindByID"][1]["namespace"] = "ImGui" defs["igTableFindByID"][1]["ov_cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["ret"] = "ImGuiTable*" @@ -27891,7 +28039,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:3262" +defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3324" defs["igTableFixColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableFixColumnSortDirection"][1]["ov_cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["ret"] = "void" @@ -27907,7 +28055,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:3277" +defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3339" defs["igTableGcCompactSettings"][1]["namespace"] = "ImGui" defs["igTableGcCompactSettings"][1]["ov_cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["ret"] = "void" @@ -27926,7 +28074,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:3275" +defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3337" defs["igTableGcCompactTransientBuffers"][1]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][1]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TablePtr" defs["igTableGcCompactTransientBuffers"][1]["ret"] = "void" @@ -27943,7 +28091,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:3276" +defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3338" defs["igTableGcCompactTransientBuffers"][2]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][2]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TableTempDataPtr" defs["igTableGcCompactTransientBuffers"][2]["ret"] = "void" @@ -27963,7 +28111,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:3283" +defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3345" defs["igTableGetBoundSettings"][1]["namespace"] = "ImGui" defs["igTableGetBoundSettings"][1]["ov_cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["ret"] = "ImGuiTableSettings*" @@ -27988,7 +28136,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:3268" +defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3330" defs["igTableGetCellBgRect"][1]["namespace"] = "ImGui" defs["igTableGetCellBgRect"][1]["nonUDT"] = 1 defs["igTableGetCellBgRect"][1]["ov_cimguiname"] = "igTableGetCellBgRect" @@ -28005,7 +28153,7 @@ defs["igTableGetColumnCount"][1]["call_args"] = "()" defs["igTableGetColumnCount"][1]["cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["defaults"] = {} defs["igTableGetColumnCount"][1]["funcname"] = "TableGetColumnCount" -defs["igTableGetColumnCount"][1]["location"] = "imgui:795" +defs["igTableGetColumnCount"][1]["location"] = "imgui:797" defs["igTableGetColumnCount"][1]["namespace"] = "ImGui" defs["igTableGetColumnCount"][1]["ov_cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["ret"] = "int" @@ -28025,7 +28173,7 @@ defs["igTableGetColumnFlags"][1]["cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["defaults"] = {} defs["igTableGetColumnFlags"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnFlags"][1]["funcname"] = "TableGetColumnFlags" -defs["igTableGetColumnFlags"][1]["location"] = "imgui:799" +defs["igTableGetColumnFlags"][1]["location"] = "imgui:801" defs["igTableGetColumnFlags"][1]["namespace"] = "ImGui" defs["igTableGetColumnFlags"][1]["ov_cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["ret"] = "ImGuiTableColumnFlags" @@ -28041,7 +28189,7 @@ defs["igTableGetColumnIndex"][1]["call_args"] = "()" defs["igTableGetColumnIndex"][1]["cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["defaults"] = {} defs["igTableGetColumnIndex"][1]["funcname"] = "TableGetColumnIndex" -defs["igTableGetColumnIndex"][1]["location"] = "imgui:796" +defs["igTableGetColumnIndex"][1]["location"] = "imgui:798" defs["igTableGetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableGetColumnIndex"][1]["ov_cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["ret"] = "int" @@ -28061,7 +28209,7 @@ defs["igTableGetColumnName"][1]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][1]["defaults"] = {} defs["igTableGetColumnName"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnName"][1]["funcname"] = "TableGetColumnName" -defs["igTableGetColumnName"][1]["location"] = "imgui:798" +defs["igTableGetColumnName"][1]["location"] = "imgui:800" defs["igTableGetColumnName"][1]["namespace"] = "ImGui" defs["igTableGetColumnName"][1]["ov_cimguiname"] = "igTableGetColumnName_Int" defs["igTableGetColumnName"][1]["ret"] = "const char*" @@ -28081,7 +28229,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:3269" +defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3331" defs["igTableGetColumnName"][2]["namespace"] = "ImGui" defs["igTableGetColumnName"][2]["ov_cimguiname"] = "igTableGetColumnName_TablePtr" defs["igTableGetColumnName"][2]["ret"] = "const char*" @@ -28101,7 +28249,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:3261" +defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3323" defs["igTableGetColumnNextSortDirection"][1]["namespace"] = "ImGui" defs["igTableGetColumnNextSortDirection"][1]["ov_cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["ret"] = "ImGuiSortDirection" @@ -28127,7 +28275,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:3270" +defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3332" defs["igTableGetColumnResizeID"][1]["namespace"] = "ImGui" defs["igTableGetColumnResizeID"][1]["ov_cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["ret"] = "ImGuiID" @@ -28149,7 +28297,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:3263" +defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3325" defs["igTableGetColumnWidthAuto"][1]["namespace"] = "ImGui" defs["igTableGetColumnWidthAuto"][1]["ov_cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["ret"] = "float" @@ -28165,7 +28313,7 @@ defs["igTableGetHeaderAngledMaxLabelWidth"][1]["call_args"] = "()" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["defaults"] = {} defs["igTableGetHeaderAngledMaxLabelWidth"][1]["funcname"] = "TableGetHeaderAngledMaxLabelWidth" -defs["igTableGetHeaderAngledMaxLabelWidth"][1]["location"] = "imgui_internal:3238" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["location"] = "imgui_internal:3300" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["namespace"] = "ImGui" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ov_cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ret"] = "float" @@ -28181,7 +28329,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:3237" +defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3299" defs["igTableGetHeaderRowHeight"][1]["namespace"] = "ImGui" defs["igTableGetHeaderRowHeight"][1]["ov_cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["ret"] = "float" @@ -28197,7 +28345,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:3235" +defs["igTableGetHoveredColumn"][1]["location"] = "imgui_internal:3297" defs["igTableGetHoveredColumn"][1]["namespace"] = "ImGui" defs["igTableGetHoveredColumn"][1]["ov_cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["ret"] = "int" @@ -28213,7 +28361,7 @@ defs["igTableGetHoveredRow"][1]["call_args"] = "()" defs["igTableGetHoveredRow"][1]["cimguiname"] = "igTableGetHoveredRow" defs["igTableGetHoveredRow"][1]["defaults"] = {} defs["igTableGetHoveredRow"][1]["funcname"] = "TableGetHoveredRow" -defs["igTableGetHoveredRow"][1]["location"] = "imgui_internal:3236" +defs["igTableGetHoveredRow"][1]["location"] = "imgui_internal:3298" defs["igTableGetHoveredRow"][1]["namespace"] = "ImGui" defs["igTableGetHoveredRow"][1]["ov_cimguiname"] = "igTableGetHoveredRow" defs["igTableGetHoveredRow"][1]["ret"] = "int" @@ -28235,7 +28383,7 @@ defs["igTableGetInstanceData"][1]["call_args"] = "(table,instance_no)" defs["igTableGetInstanceData"][1]["cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["defaults"] = {} defs["igTableGetInstanceData"][1]["funcname"] = "TableGetInstanceData" -defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3257" +defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3319" defs["igTableGetInstanceData"][1]["namespace"] = "ImGui" defs["igTableGetInstanceData"][1]["ov_cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["ret"] = "ImGuiTableInstanceData*" @@ -28257,7 +28405,7 @@ defs["igTableGetInstanceID"][1]["call_args"] = "(table,instance_no)" defs["igTableGetInstanceID"][1]["cimguiname"] = "igTableGetInstanceID" defs["igTableGetInstanceID"][1]["defaults"] = {} defs["igTableGetInstanceID"][1]["funcname"] = "TableGetInstanceID" -defs["igTableGetInstanceID"][1]["location"] = "imgui_internal:3258" +defs["igTableGetInstanceID"][1]["location"] = "imgui_internal:3320" defs["igTableGetInstanceID"][1]["namespace"] = "ImGui" defs["igTableGetInstanceID"][1]["ov_cimguiname"] = "igTableGetInstanceID" defs["igTableGetInstanceID"][1]["ret"] = "ImGuiID" @@ -28279,7 +28427,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:3271" +defs["igTableGetMaxColumnWidth"][1]["location"] = "imgui_internal:3333" defs["igTableGetMaxColumnWidth"][1]["namespace"] = "ImGui" defs["igTableGetMaxColumnWidth"][1]["ov_cimguiname"] = "igTableGetMaxColumnWidth" defs["igTableGetMaxColumnWidth"][1]["ret"] = "float" @@ -28295,7 +28443,7 @@ defs["igTableGetRowIndex"][1]["call_args"] = "()" defs["igTableGetRowIndex"][1]["cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["defaults"] = {} defs["igTableGetRowIndex"][1]["funcname"] = "TableGetRowIndex" -defs["igTableGetRowIndex"][1]["location"] = "imgui:797" +defs["igTableGetRowIndex"][1]["location"] = "imgui:799" defs["igTableGetRowIndex"][1]["namespace"] = "ImGui" defs["igTableGetRowIndex"][1]["ov_cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["ret"] = "int" @@ -28311,7 +28459,7 @@ defs["igTableGetSortSpecs"][1]["call_args"] = "()" defs["igTableGetSortSpecs"][1]["cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["defaults"] = {} defs["igTableGetSortSpecs"][1]["funcname"] = "TableGetSortSpecs" -defs["igTableGetSortSpecs"][1]["location"] = "imgui:794" +defs["igTableGetSortSpecs"][1]["location"] = "imgui:796" defs["igTableGetSortSpecs"][1]["namespace"] = "ImGui" defs["igTableGetSortSpecs"][1]["ov_cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["ret"] = "ImGuiTableSortSpecs*" @@ -28330,7 +28478,7 @@ defs["igTableHeader"][1]["call_args"] = "(label)" defs["igTableHeader"][1]["cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["defaults"] = {} defs["igTableHeader"][1]["funcname"] = "TableHeader" -defs["igTableHeader"][1]["location"] = "imgui:784" +defs["igTableHeader"][1]["location"] = "imgui:786" defs["igTableHeader"][1]["namespace"] = "ImGui" defs["igTableHeader"][1]["ov_cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["ret"] = "void" @@ -28346,7 +28494,7 @@ defs["igTableHeadersRow"][1]["call_args"] = "()" defs["igTableHeadersRow"][1]["cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["defaults"] = {} defs["igTableHeadersRow"][1]["funcname"] = "TableHeadersRow" -defs["igTableHeadersRow"][1]["location"] = "imgui:785" +defs["igTableHeadersRow"][1]["location"] = "imgui:787" defs["igTableHeadersRow"][1]["namespace"] = "ImGui" defs["igTableHeadersRow"][1]["ov_cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["ret"] = "void" @@ -28365,7 +28513,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:3280" +defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3342" defs["igTableLoadSettings"][1]["namespace"] = "ImGui" defs["igTableLoadSettings"][1]["ov_cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["ret"] = "void" @@ -28384,7 +28532,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:3256" +defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3318" defs["igTableMergeDrawChannels"][1]["namespace"] = "ImGui" defs["igTableMergeDrawChannels"][1]["ov_cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["ret"] = "void" @@ -28400,7 +28548,7 @@ defs["igTableNextColumn"][1]["call_args"] = "()" defs["igTableNextColumn"][1]["cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["defaults"] = {} defs["igTableNextColumn"][1]["funcname"] = "TableNextColumn" -defs["igTableNextColumn"][1]["location"] = "imgui:771" +defs["igTableNextColumn"][1]["location"] = "imgui:773" defs["igTableNextColumn"][1]["namespace"] = "ImGui" defs["igTableNextColumn"][1]["ov_cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["ret"] = "bool" @@ -28424,7 +28572,7 @@ defs["igTableNextRow"][1]["defaults"] = {} defs["igTableNextRow"][1]["defaults"]["min_row_height"] = "0.0f" defs["igTableNextRow"][1]["defaults"]["row_flags"] = "0" defs["igTableNextRow"][1]["funcname"] = "TableNextRow" -defs["igTableNextRow"][1]["location"] = "imgui:770" +defs["igTableNextRow"][1]["location"] = "imgui:772" defs["igTableNextRow"][1]["namespace"] = "ImGui" defs["igTableNextRow"][1]["ov_cimguiname"] = "igTableNextRow" defs["igTableNextRow"][1]["ret"] = "void" @@ -28444,7 +28592,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:3232" +defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3294" defs["igTableOpenContextMenu"][1]["namespace"] = "ImGui" defs["igTableOpenContextMenu"][1]["ov_cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["ret"] = "void" @@ -28460,7 +28608,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:3240" +defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3302" defs["igTablePopBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePopBackgroundChannel"][1]["ov_cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["ret"] = "void" @@ -28476,7 +28624,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:3239" +defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3301" defs["igTablePushBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePushBackgroundChannel"][1]["ov_cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["ret"] = "void" @@ -28495,7 +28643,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:3274" +defs["igTableRemove"][1]["location"] = "imgui_internal:3336" defs["igTableRemove"][1]["namespace"] = "ImGui" defs["igTableRemove"][1]["ov_cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["ret"] = "void" @@ -28514,7 +28662,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:3282" +defs["igTableResetSettings"][1]["location"] = "imgui_internal:3344" defs["igTableResetSettings"][1]["namespace"] = "ImGui" defs["igTableResetSettings"][1]["ov_cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["ret"] = "void" @@ -28533,7 +28681,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:3281" +defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3343" defs["igTableSaveSettings"][1]["namespace"] = "ImGui" defs["igTableSaveSettings"][1]["ov_cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["ret"] = "void" @@ -28559,7 +28707,7 @@ defs["igTableSetBgColor"][1]["cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["defaults"] = {} defs["igTableSetBgColor"][1]["defaults"]["column_n"] = "-1" defs["igTableSetBgColor"][1]["funcname"] = "TableSetBgColor" -defs["igTableSetBgColor"][1]["location"] = "imgui:801" +defs["igTableSetBgColor"][1]["location"] = "imgui:803" defs["igTableSetBgColor"][1]["namespace"] = "ImGui" defs["igTableSetBgColor"][1]["ov_cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["ret"] = "void" @@ -28581,7 +28729,7 @@ defs["igTableSetColumnEnabled"][1]["call_args"] = "(column_n,v)" defs["igTableSetColumnEnabled"][1]["cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["defaults"] = {} defs["igTableSetColumnEnabled"][1]["funcname"] = "TableSetColumnEnabled" -defs["igTableSetColumnEnabled"][1]["location"] = "imgui:800" +defs["igTableSetColumnEnabled"][1]["location"] = "imgui:802" defs["igTableSetColumnEnabled"][1]["namespace"] = "ImGui" defs["igTableSetColumnEnabled"][1]["ov_cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["ret"] = "void" @@ -28600,7 +28748,7 @@ defs["igTableSetColumnIndex"][1]["call_args"] = "(column_n)" defs["igTableSetColumnIndex"][1]["cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["defaults"] = {} defs["igTableSetColumnIndex"][1]["funcname"] = "TableSetColumnIndex" -defs["igTableSetColumnIndex"][1]["location"] = "imgui:772" +defs["igTableSetColumnIndex"][1]["location"] = "imgui:774" defs["igTableSetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableSetColumnIndex"][1]["ov_cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["ret"] = "bool" @@ -28625,7 +28773,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:3234" +defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3296" defs["igTableSetColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableSetColumnSortDirection"][1]["ov_cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["ret"] = "void" @@ -28647,7 +28795,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:3233" +defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3295" defs["igTableSetColumnWidth"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidth"][1]["ov_cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["ret"] = "void" @@ -28666,7 +28814,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:3273" +defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3335" defs["igTableSetColumnWidthAutoAll"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoAll"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["ret"] = "void" @@ -28688,7 +28836,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:3272" +defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3334" defs["igTableSetColumnWidthAutoSingle"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoSingle"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["ret"] = "void" @@ -28704,7 +28852,7 @@ defs["igTableSettingsAddSettingsHandler"][1]["call_args"] = "()" defs["igTableSettingsAddSettingsHandler"][1]["cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["defaults"] = {} defs["igTableSettingsAddSettingsHandler"][1]["funcname"] = "TableSettingsAddSettingsHandler" -defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3284" +defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3346" defs["igTableSettingsAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igTableSettingsAddSettingsHandler"][1]["ov_cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["ret"] = "void" @@ -28726,7 +28874,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:3285" +defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3347" defs["igTableSettingsCreate"][1]["namespace"] = "ImGui" defs["igTableSettingsCreate"][1]["ov_cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["ret"] = "ImGuiTableSettings*" @@ -28745,7 +28893,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:3286" +defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3348" defs["igTableSettingsFindByID"][1]["namespace"] = "ImGui" defs["igTableSettingsFindByID"][1]["ov_cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["ret"] = "ImGuiTableSettings*" @@ -28776,7 +28924,7 @@ defs["igTableSetupColumn"][1]["defaults"]["flags"] = "0" defs["igTableSetupColumn"][1]["defaults"]["init_width_or_weight"] = "0.0f" defs["igTableSetupColumn"][1]["defaults"]["user_id"] = "0" defs["igTableSetupColumn"][1]["funcname"] = "TableSetupColumn" -defs["igTableSetupColumn"][1]["location"] = "imgui:782" +defs["igTableSetupColumn"][1]["location"] = "imgui:784" defs["igTableSetupColumn"][1]["namespace"] = "ImGui" defs["igTableSetupColumn"][1]["ov_cimguiname"] = "igTableSetupColumn" defs["igTableSetupColumn"][1]["ret"] = "void" @@ -28795,7 +28943,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:3249" +defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3311" defs["igTableSetupDrawChannels"][1]["namespace"] = "ImGui" defs["igTableSetupDrawChannels"][1]["ov_cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["ret"] = "void" @@ -28817,7 +28965,7 @@ defs["igTableSetupScrollFreeze"][1]["call_args"] = "(cols,rows)" defs["igTableSetupScrollFreeze"][1]["cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["defaults"] = {} defs["igTableSetupScrollFreeze"][1]["funcname"] = "TableSetupScrollFreeze" -defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:783" +defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:785" defs["igTableSetupScrollFreeze"][1]["namespace"] = "ImGui" defs["igTableSetupScrollFreeze"][1]["ov_cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["ret"] = "void" @@ -28836,7 +28984,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:3260" +defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3322" defs["igTableSortSpecsBuild"][1]["namespace"] = "ImGui" defs["igTableSortSpecsBuild"][1]["ov_cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["ret"] = "void" @@ -28855,7 +29003,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:3259" +defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3321" defs["igTableSortSpecsSanitize"][1]["namespace"] = "ImGui" defs["igTableSortSpecsSanitize"][1]["ov_cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["ret"] = "void" @@ -28874,7 +29022,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:3251" +defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3313" defs["igTableUpdateBorders"][1]["namespace"] = "ImGui" defs["igTableUpdateBorders"][1]["ov_cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["ret"] = "void" @@ -28893,7 +29041,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:3252" +defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3314" defs["igTableUpdateColumnsWeightFromWidth"][1]["namespace"] = "ImGui" defs["igTableUpdateColumnsWeightFromWidth"][1]["ov_cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["ret"] = "void" @@ -28912,7 +29060,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:3250" +defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3312" defs["igTableUpdateLayout"][1]["namespace"] = "ImGui" defs["igTableUpdateLayout"][1]["ov_cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["ret"] = "void" @@ -28931,7 +29079,7 @@ defs["igTeleportMousePos"][1]["call_args"] = "(pos)" defs["igTeleportMousePos"][1]["cimguiname"] = "igTeleportMousePos" defs["igTeleportMousePos"][1]["defaults"] = {} defs["igTeleportMousePos"][1]["funcname"] = "TeleportMousePos" -defs["igTeleportMousePos"][1]["location"] = "imgui_internal:3139" +defs["igTeleportMousePos"][1]["location"] = "imgui_internal:3200" defs["igTeleportMousePos"][1]["namespace"] = "ImGui" defs["igTeleportMousePos"][1]["ov_cimguiname"] = "igTeleportMousePos" defs["igTeleportMousePos"][1]["ret"] = "void" @@ -28950,7 +29098,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:3385" +defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3447" defs["igTempInputIsActive"][1]["namespace"] = "ImGui" defs["igTempInputIsActive"][1]["ov_cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["ret"] = "bool" @@ -28992,7 +29140,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:3384" +defs["igTempInputScalar"][1]["location"] = "imgui_internal:3446" defs["igTempInputScalar"][1]["namespace"] = "ImGui" defs["igTempInputScalar"][1]["ov_cimguiname"] = "igTempInputScalar" defs["igTempInputScalar"][1]["ret"] = "bool" @@ -29026,7 +29174,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:3383" +defs["igTempInputText"][1]["location"] = "imgui_internal:3445" defs["igTempInputText"][1]["namespace"] = "ImGui" defs["igTempInputText"][1]["ov_cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["ret"] = "bool" @@ -29048,7 +29196,7 @@ defs["igTestKeyOwner"][1]["call_args"] = "(key,owner_id)" defs["igTestKeyOwner"][1]["cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["defaults"] = {} defs["igTestKeyOwner"][1]["funcname"] = "TestKeyOwner" -defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3158" +defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3219" defs["igTestKeyOwner"][1]["namespace"] = "ImGui" defs["igTestKeyOwner"][1]["ov_cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["ret"] = "bool" @@ -29070,7 +29218,7 @@ defs["igTestShortcutRouting"][1]["call_args"] = "(key_chord,owner_id)" defs["igTestShortcutRouting"][1]["cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["defaults"] = {} defs["igTestShortcutRouting"][1]["funcname"] = "TestShortcutRouting" -defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3191" +defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3253" defs["igTestShortcutRouting"][1]["namespace"] = "ImGui" defs["igTestShortcutRouting"][1]["ov_cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["ret"] = "bool" @@ -29093,7 +29241,7 @@ defs["igText"][1]["cimguiname"] = "igText" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" -defs["igText"][1]["location"] = "imgui:505" +defs["igText"][1]["location"] = "imgui:507" defs["igText"][1]["namespace"] = "ImGui" defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" @@ -29119,7 +29267,7 @@ defs["igTextColored"][1]["cimguiname"] = "igTextColored" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" -defs["igTextColored"][1]["location"] = "imgui:507" +defs["igTextColored"][1]["location"] = "imgui:509" defs["igTextColored"][1]["namespace"] = "ImGui" defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" @@ -29144,7 +29292,7 @@ defs["igTextColoredV"][1]["call_args"] = "(col,fmt,args)" defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" -defs["igTextColoredV"][1]["location"] = "imgui:508" +defs["igTextColoredV"][1]["location"] = "imgui:510" defs["igTextColoredV"][1]["namespace"] = "ImGui" defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" @@ -29167,7 +29315,7 @@ defs["igTextDisabled"][1]["cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" -defs["igTextDisabled"][1]["location"] = "imgui:509" +defs["igTextDisabled"][1]["location"] = "imgui:511" defs["igTextDisabled"][1]["namespace"] = "ImGui" defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" @@ -29189,7 +29337,7 @@ defs["igTextDisabledV"][1]["call_args"] = "(fmt,args)" defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" -defs["igTextDisabledV"][1]["location"] = "imgui:510" +defs["igTextDisabledV"][1]["location"] = "imgui:512" defs["igTextDisabledV"][1]["namespace"] = "ImGui" defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" @@ -29216,7 +29364,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:3332" +defs["igTextEx"][1]["location"] = "imgui_internal:3394" defs["igTextEx"][1]["namespace"] = "ImGui" defs["igTextEx"][1]["ov_cimguiname"] = "igTextEx" defs["igTextEx"][1]["ret"] = "void" @@ -29239,7 +29387,7 @@ defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["defaults"] = {} defs["igTextUnformatted"][1]["defaults"]["text_end"] = "NULL" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" -defs["igTextUnformatted"][1]["location"] = "imgui:504" +defs["igTextUnformatted"][1]["location"] = "imgui:506" defs["igTextUnformatted"][1]["namespace"] = "ImGui" defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" @@ -29261,7 +29409,7 @@ defs["igTextV"][1]["call_args"] = "(fmt,args)" defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" -defs["igTextV"][1]["location"] = "imgui:506" +defs["igTextV"][1]["location"] = "imgui:508" defs["igTextV"][1]["namespace"] = "ImGui" defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" @@ -29284,7 +29432,7 @@ defs["igTextWrapped"][1]["cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" -defs["igTextWrapped"][1]["location"] = "imgui:511" +defs["igTextWrapped"][1]["location"] = "imgui:513" defs["igTextWrapped"][1]["namespace"] = "ImGui" defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" @@ -29306,7 +29454,7 @@ defs["igTextWrappedV"][1]["call_args"] = "(fmt,args)" defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" -defs["igTextWrappedV"][1]["location"] = "imgui:512" +defs["igTextWrappedV"][1]["location"] = "imgui:514" defs["igTextWrappedV"][1]["namespace"] = "ImGui" defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" @@ -29325,7 +29473,7 @@ defs["igTreeNode"][1]["call_args"] = "(label)" defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" -defs["igTreeNode"][1]["location"] = "imgui:626" +defs["igTreeNode"][1]["location"] = "imgui:628" defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNode_Str" defs["igTreeNode"][1]["ret"] = "bool" @@ -29349,7 +29497,7 @@ defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" -defs["igTreeNode"][2]["location"] = "imgui:627" +defs["igTreeNode"][2]["location"] = "imgui:629" defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNode_StrStr" defs["igTreeNode"][2]["ret"] = "bool" @@ -29373,7 +29521,7 @@ defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" -defs["igTreeNode"][3]["location"] = "imgui:628" +defs["igTreeNode"][3]["location"] = "imgui:630" defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNode_Ptr" defs["igTreeNode"][3]["ret"] = "bool" @@ -29404,7 +29552,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:3356" +defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3418" defs["igTreeNodeBehavior"][1]["namespace"] = "ImGui" defs["igTreeNodeBehavior"][1]["ov_cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["ret"] = "bool" @@ -29427,7 +29575,7 @@ defs["igTreeNodeEx"][1]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" -defs["igTreeNodeEx"][1]["location"] = "imgui:631" +defs["igTreeNodeEx"][1]["location"] = "imgui:633" defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeEx_Str" defs["igTreeNodeEx"][1]["ret"] = "bool" @@ -29454,7 +29602,7 @@ defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" -defs["igTreeNodeEx"][2]["location"] = "imgui:632" +defs["igTreeNodeEx"][2]["location"] = "imgui:634" defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeEx_StrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" @@ -29481,7 +29629,7 @@ defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" -defs["igTreeNodeEx"][3]["location"] = "imgui:633" +defs["igTreeNodeEx"][3]["location"] = "imgui:635" defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeEx_Ptr" defs["igTreeNodeEx"][3]["ret"] = "bool" @@ -29511,7 +29659,7 @@ defs["igTreeNodeExV"][1]["call_args"] = "(str_id,flags,fmt,args)" defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][1]["location"] = "imgui:634" +defs["igTreeNodeExV"][1]["location"] = "imgui:636" defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExV_Str" defs["igTreeNodeExV"][1]["ret"] = "bool" @@ -29537,7 +29685,7 @@ defs["igTreeNodeExV"][2]["call_args"] = "(ptr_id,flags,fmt,args)" defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][2]["location"] = "imgui:635" +defs["igTreeNodeExV"][2]["location"] = "imgui:637" defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExV_Ptr" defs["igTreeNodeExV"][2]["ret"] = "bool" @@ -29560,7 +29708,7 @@ defs["igTreeNodeSetOpen"][1]["call_args"] = "(id,open)" defs["igTreeNodeSetOpen"][1]["cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["defaults"] = {} defs["igTreeNodeSetOpen"][1]["funcname"] = "TreeNodeSetOpen" -defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3358" +defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3420" defs["igTreeNodeSetOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeSetOpen"][1]["ov_cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["ret"] = "void" @@ -29582,7 +29730,7 @@ defs["igTreeNodeUpdateNextOpen"][1]["call_args"] = "(id,flags)" defs["igTreeNodeUpdateNextOpen"][1]["cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["defaults"] = {} defs["igTreeNodeUpdateNextOpen"][1]["funcname"] = "TreeNodeUpdateNextOpen" -defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3359" +defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3421" defs["igTreeNodeUpdateNextOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeUpdateNextOpen"][1]["ov_cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["ret"] = "bool" @@ -29607,7 +29755,7 @@ defs["igTreeNodeV"][1]["call_args"] = "(str_id,fmt,args)" defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][1]["location"] = "imgui:629" +defs["igTreeNodeV"][1]["location"] = "imgui:631" defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeV_Str" defs["igTreeNodeV"][1]["ret"] = "bool" @@ -29630,7 +29778,7 @@ defs["igTreeNodeV"][2]["call_args"] = "(ptr_id,fmt,args)" defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][2]["location"] = "imgui:630" +defs["igTreeNodeV"][2]["location"] = "imgui:632" defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeV_Ptr" defs["igTreeNodeV"][2]["ret"] = "bool" @@ -29647,7 +29795,7 @@ defs["igTreePop"][1]["call_args"] = "()" defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" -defs["igTreePop"][1]["location"] = "imgui:638" +defs["igTreePop"][1]["location"] = "imgui:640" defs["igTreePop"][1]["namespace"] = "ImGui" defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" @@ -29666,7 +29814,7 @@ defs["igTreePush"][1]["call_args"] = "(str_id)" defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" -defs["igTreePush"][1]["location"] = "imgui:636" +defs["igTreePush"][1]["location"] = "imgui:638" defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePush_Str" defs["igTreePush"][1]["ret"] = "void" @@ -29683,7 +29831,7 @@ defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["defaults"] = {} defs["igTreePush"][2]["funcname"] = "TreePush" -defs["igTreePush"][2]["location"] = "imgui:637" +defs["igTreePush"][2]["location"] = "imgui:639" defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePush_Ptr" defs["igTreePush"][2]["ret"] = "void" @@ -29703,7 +29851,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:3357" +defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3419" defs["igTreePushOverrideID"][1]["namespace"] = "ImGui" defs["igTreePushOverrideID"][1]["ov_cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["ret"] = "void" @@ -29733,7 +29881,7 @@ defs["igTypingSelectFindBestLeadingMatch"][1]["call_args"] = "(req,items_count,g defs["igTypingSelectFindBestLeadingMatch"][1]["cimguiname"] = "igTypingSelectFindBestLeadingMatch" defs["igTypingSelectFindBestLeadingMatch"][1]["defaults"] = {} defs["igTypingSelectFindBestLeadingMatch"][1]["funcname"] = "TypingSelectFindBestLeadingMatch" -defs["igTypingSelectFindBestLeadingMatch"][1]["location"] = "imgui_internal:3217" +defs["igTypingSelectFindBestLeadingMatch"][1]["location"] = "imgui_internal:3279" defs["igTypingSelectFindBestLeadingMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindBestLeadingMatch"][1]["ov_cimguiname"] = "igTypingSelectFindBestLeadingMatch" defs["igTypingSelectFindBestLeadingMatch"][1]["ret"] = "int" @@ -29766,7 +29914,7 @@ defs["igTypingSelectFindMatch"][1]["call_args"] = "(req,items_count,get_item_nam defs["igTypingSelectFindMatch"][1]["cimguiname"] = "igTypingSelectFindMatch" defs["igTypingSelectFindMatch"][1]["defaults"] = {} defs["igTypingSelectFindMatch"][1]["funcname"] = "TypingSelectFindMatch" -defs["igTypingSelectFindMatch"][1]["location"] = "imgui_internal:3215" +defs["igTypingSelectFindMatch"][1]["location"] = "imgui_internal:3277" defs["igTypingSelectFindMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindMatch"][1]["ov_cimguiname"] = "igTypingSelectFindMatch" defs["igTypingSelectFindMatch"][1]["ret"] = "int" @@ -29799,7 +29947,7 @@ defs["igTypingSelectFindNextSingleCharMatch"][1]["call_args"] = "(req,items_coun defs["igTypingSelectFindNextSingleCharMatch"][1]["cimguiname"] = "igTypingSelectFindNextSingleCharMatch" defs["igTypingSelectFindNextSingleCharMatch"][1]["defaults"] = {} defs["igTypingSelectFindNextSingleCharMatch"][1]["funcname"] = "TypingSelectFindNextSingleCharMatch" -defs["igTypingSelectFindNextSingleCharMatch"][1]["location"] = "imgui_internal:3216" +defs["igTypingSelectFindNextSingleCharMatch"][1]["location"] = "imgui_internal:3278" defs["igTypingSelectFindNextSingleCharMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindNextSingleCharMatch"][1]["ov_cimguiname"] = "igTypingSelectFindNextSingleCharMatch" defs["igTypingSelectFindNextSingleCharMatch"][1]["ret"] = "int" @@ -29819,7 +29967,7 @@ defs["igUnindent"][1]["cimguiname"] = "igUnindent" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" -defs["igUnindent"][1]["location"] = "imgui:474" +defs["igUnindent"][1]["location"] = "imgui:476" defs["igUnindent"][1]["namespace"] = "ImGui" defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" @@ -29835,7 +29983,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:2972" +defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:3030" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["namespace"] = "ImGui" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ov_cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ret"] = "void" @@ -29854,7 +30002,7 @@ defs["igUpdateInputEvents"][1]["call_args"] = "(trickle_fast_inputs)" defs["igUpdateInputEvents"][1]["cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["defaults"] = {} defs["igUpdateInputEvents"][1]["funcname"] = "UpdateInputEvents" -defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:2971" +defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:3029" defs["igUpdateInputEvents"][1]["namespace"] = "ImGui" defs["igUpdateInputEvents"][1]["ov_cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["ret"] = "void" @@ -29870,7 +30018,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:2975" +defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:3033" defs["igUpdateMouseMovingWindowEndFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowEndFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["ret"] = "void" @@ -29886,7 +30034,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:2974" +defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:3032" defs["igUpdateMouseMovingWindowNewFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowNewFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["ret"] = "void" @@ -29911,7 +30059,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:2933" +defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:2990" defs["igUpdateWindowParentAndRootLinks"][1]["namespace"] = "ImGui" defs["igUpdateWindowParentAndRootLinks"][1]["ov_cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["ret"] = "void" @@ -29950,7 +30098,7 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["flags"] = "0" defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" -defs["igVSliderFloat"][1]["location"] = "imgui:592" +defs["igVSliderFloat"][1]["location"] = "imgui:594" defs["igVSliderFloat"][1]["namespace"] = "ImGui" defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" @@ -29989,7 +30137,7 @@ defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["flags"] = "0" defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" -defs["igVSliderInt"][1]["location"] = "imgui:593" +defs["igVSliderInt"][1]["location"] = "imgui:595" defs["igVSliderInt"][1]["namespace"] = "ImGui" defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" @@ -30031,7 +30179,7 @@ defs["igVSliderScalar"][1]["defaults"] = {} defs["igVSliderScalar"][1]["defaults"]["flags"] = "0" defs["igVSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" -defs["igVSliderScalar"][1]["location"] = "imgui:594" +defs["igVSliderScalar"][1]["location"] = "imgui:596" defs["igVSliderScalar"][1]["namespace"] = "ImGui" defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -30053,7 +30201,7 @@ defs["igValue"][1]["call_args"] = "(prefix,b)" defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" -defs["igValue"][1]["location"] = "imgui:670" +defs["igValue"][1]["location"] = "imgui:672" defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValue_Bool" defs["igValue"][1]["ret"] = "void" @@ -30073,7 +30221,7 @@ defs["igValue"][2]["call_args"] = "(prefix,v)" defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" -defs["igValue"][2]["location"] = "imgui:671" +defs["igValue"][2]["location"] = "imgui:673" defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValue_Int" defs["igValue"][2]["ret"] = "void" @@ -30093,7 +30241,7 @@ defs["igValue"][3]["call_args"] = "(prefix,v)" defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" -defs["igValue"][3]["location"] = "imgui:672" +defs["igValue"][3]["location"] = "imgui:674" defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValue_Uint" defs["igValue"][3]["ret"] = "void" @@ -30117,7 +30265,7 @@ defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["defaults"] = {} defs["igValue"][4]["defaults"]["float_format"] = "NULL" defs["igValue"][4]["funcname"] = "Value" -defs["igValue"][4]["location"] = "imgui:673" +defs["igValue"][4]["location"] = "imgui:675" defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValue_Float" defs["igValue"][4]["ret"] = "void" @@ -30145,7 +30293,7 @@ defs["igWindowPosRelToAbs"][1]["call_args"] = "(window,p)" defs["igWindowPosRelToAbs"][1]["cimguiname"] = "igWindowPosRelToAbs" defs["igWindowPosRelToAbs"][1]["defaults"] = {} defs["igWindowPosRelToAbs"][1]["funcname"] = "WindowPosRelToAbs" -defs["igWindowPosRelToAbs"][1]["location"] = "imgui_internal:2946" +defs["igWindowPosRelToAbs"][1]["location"] = "imgui_internal:3004" defs["igWindowPosRelToAbs"][1]["namespace"] = "ImGui" defs["igWindowPosRelToAbs"][1]["nonUDT"] = 1 defs["igWindowPosRelToAbs"][1]["ov_cimguiname"] = "igWindowPosRelToAbs" @@ -30171,7 +30319,7 @@ defs["igWindowRectAbsToRel"][1]["call_args"] = "(window,r)" defs["igWindowRectAbsToRel"][1]["cimguiname"] = "igWindowRectAbsToRel" defs["igWindowRectAbsToRel"][1]["defaults"] = {} defs["igWindowRectAbsToRel"][1]["funcname"] = "WindowRectAbsToRel" -defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:2944" +defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:3002" defs["igWindowRectAbsToRel"][1]["namespace"] = "ImGui" defs["igWindowRectAbsToRel"][1]["nonUDT"] = 1 defs["igWindowRectAbsToRel"][1]["ov_cimguiname"] = "igWindowRectAbsToRel" @@ -30197,7 +30345,7 @@ defs["igWindowRectRelToAbs"][1]["call_args"] = "(window,r)" defs["igWindowRectRelToAbs"][1]["cimguiname"] = "igWindowRectRelToAbs" defs["igWindowRectRelToAbs"][1]["defaults"] = {} defs["igWindowRectRelToAbs"][1]["funcname"] = "WindowRectRelToAbs" -defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:2945" +defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:3003" defs["igWindowRectRelToAbs"][1]["namespace"] = "ImGui" defs["igWindowRectRelToAbs"][1]["nonUDT"] = 1 defs["igWindowRectRelToAbs"][1]["ov_cimguiname"] = "igWindowRectRelToAbs" diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index e7c9ac0..36c5acb 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -146,6 +146,11 @@ "calc_value": 8, "name": "ImGuiActivateFlags_FromTabbing", "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiActivateFlags_FromShortcut", + "value": "1 << 4" } ], "ImGuiAxis": [ @@ -1078,9 +1083,14 @@ "value": "1 << 6" }, { - "calc_value": 127, + "calc_value": 128, + "name": "ImGuiDebugLogFlags_EventInputRouting", + "value": "1 << 7" + }, + { + "calc_value": 255, "name": "ImGuiDebugLogFlags_EventMask_", - "value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO" + "value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting" }, { "calc_value": 1048576, @@ -1453,11 +1463,6 @@ "name": "ImGuiInputFlags_CondDefault_", "value": "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" }, - { - "calc_value": 768, - "name": "ImGuiInputFlags_CondMask_", - "value": "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" - }, { "calc_value": 1024, "name": "ImGuiInputFlags_LockThisFrame", @@ -1488,11 +1493,6 @@ "name": "ImGuiInputFlags_RouteGlobalHigh", "value": "1 << 15" }, - { - "calc_value": 61440, - "name": "ImGuiInputFlags_RouteMask_", - "value": "ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh" - }, { "calc_value": 65536, "name": "ImGuiInputFlags_RouteAlways", @@ -1503,11 +1503,6 @@ "name": "ImGuiInputFlags_RouteUnlessBgFocused", "value": "1 << 17" }, - { - "calc_value": 196608, - "name": "ImGuiInputFlags_RouteExtraMask_", - "value": "ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused" - }, { "calc_value": 14, "name": "ImGuiInputFlags_RepeatRateMask_", @@ -1523,6 +1518,16 @@ "name": "ImGuiInputFlags_RepeatMask_", "value": "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_" }, + { + "calc_value": 768, + "name": "ImGuiInputFlags_CondMask_", + "value": "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" + }, + { + "calc_value": 61440, + "name": "ImGuiInputFlags_RouteMask_", + "value": "ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh" + }, { "calc_value": 255, "name": "ImGuiInputFlags_SupportedByIsKeyPressed", @@ -1536,7 +1541,7 @@ { "calc_value": 258303, "name": "ImGuiInputFlags_SupportedByShortcut", - "value": "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_" + "value": "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused" }, { "calc_value": 3072, @@ -2869,14 +2874,9 @@ "name": "ImGuiNavHighlightFlags_None", "value": "0" }, - { - "calc_value": 1, - "name": "ImGuiNavHighlightFlags_TypeDefault", - "value": "1 << 0" - }, { "calc_value": 2, - "name": "ImGuiNavHighlightFlags_TypeThin", + "name": "ImGuiNavHighlightFlags_Compact", "value": "1 << 1" }, { @@ -3009,6 +3009,11 @@ "calc_value": 2, "name": "ImGuiNextItemDataFlags_HasOpen", "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiNextItemDataFlags_HasShortcut", + "value": "1 << 2" } ], "ImGuiNextWindowDataFlags_": [ @@ -3140,26 +3145,31 @@ }, { "calc_value": 32, - "name": "ImGuiPopupFlags_NoOpenOverExistingPopup", + "name": "ImGuiPopupFlags_NoReopen", "value": "1 << 5" }, - { - "calc_value": 64, - "name": "ImGuiPopupFlags_NoOpenOverItems", - "value": "1 << 6" - }, { "calc_value": 128, - "name": "ImGuiPopupFlags_AnyPopupId", + "name": "ImGuiPopupFlags_NoOpenOverExistingPopup", "value": "1 << 7" }, { "calc_value": 256, - "name": "ImGuiPopupFlags_AnyPopupLevel", + "name": "ImGuiPopupFlags_NoOpenOverItems", "value": "1 << 8" }, { - "calc_value": 384, + "calc_value": 1024, + "name": "ImGuiPopupFlags_AnyPopupId", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiPopupFlags_AnyPopupLevel", + "value": "1 << 11" + }, + { + "calc_value": 3072, "name": "ImGuiPopupFlags_AnyPopup", "value": "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" } @@ -4364,7 +4374,7 @@ "ImGuiMouseSource": "int" }, "locations": { - "ImBitVector": "imgui_internal:599", + "ImBitVector": "imgui_internal:602", "ImColor": "imgui:2544", "ImDrawChannel": "imgui:2634", "ImDrawCmd": "imgui:2593", @@ -4381,135 +4391,136 @@ "ImFontAtlas": "imgui:2947", "ImFontAtlasCustomRect": "imgui:2909", "ImFontAtlasFlags_": "imgui:2922", - "ImFontBuilderIO": "imgui_internal:3471", + "ImFontBuilderIO": "imgui_internal:3532", "ImFontConfig": "imgui:2852", "ImFontGlyph": "imgui:2882", "ImFontGlyphRangesBuilder": "imgui:2894", - "ImGuiActivateFlags_": "imgui_internal:1495", + "ImGuiActivateFlags_": "imgui_internal:1529", "ImGuiAxis": "imgui_internal:975", - "ImGuiBackendFlags_": "imgui:1469", + "ImGuiBackendFlags_": "imgui:1473", "ImGuiButtonFlagsPrivate_": "imgui_internal:869", - "ImGuiButtonFlags_": "imgui:1580", - "ImGuiChildFlags_": "imgui:1036", - "ImGuiCol_": "imgui:1479", - "ImGuiColorEditFlags_": "imgui:1593", - "ImGuiColorMod": "imgui_internal:1026", + "ImGuiButtonFlags_": "imgui:1584", + "ImGuiChildFlags_": "imgui:1038", + "ImGuiCol_": "imgui:1483", + "ImGuiColorEditFlags_": "imgui:1597", + "ImGuiColorMod": "imgui_internal:989", "ImGuiComboFlagsPrivate_": "imgui_internal:894", - "ImGuiComboFlags_": "imgui:1146", - "ImGuiComboPreviewData": "imgui_internal:1043", - "ImGuiCond_": "imgui:1694", - "ImGuiConfigFlags_": "imgui:1453", - "ImGuiContext": "imgui_internal:1875", - "ImGuiContextHook": "imgui_internal:1860", - "ImGuiContextHookType": "imgui_internal:1858", - "ImGuiDataTypeInfo": "imgui_internal:1009", - "ImGuiDataTypePrivate_": "imgui_internal:1018", - "ImGuiDataTypeTempStorage": "imgui_internal:1003", - "ImGuiDataType_": "imgui:1266", - "ImGuiDataVarInfo": "imgui_internal:995", - "ImGuiDebugAllocEntry": "imgui_internal:1797", - "ImGuiDebugAllocInfo": "imgui_internal:1804", - "ImGuiDebugLogFlags_": "imgui_internal:1780", - "ImGuiDir_": "imgui:1282", - "ImGuiDragDropFlags_": "imgui:1244", + "ImGuiComboFlags_": "imgui:1150", + "ImGuiComboPreviewData": "imgui_internal:1006", + "ImGuiCond_": "imgui:1698", + "ImGuiConfigFlags_": "imgui:1457", + "ImGuiContext": "imgui_internal:1918", + "ImGuiContextHook": "imgui_internal:1903", + "ImGuiContextHookType": "imgui_internal:1901", + "ImGuiDataTypeInfo": "imgui_internal:1263", + "ImGuiDataTypePrivate_": "imgui_internal:1272", + "ImGuiDataTypeTempStorage": "imgui_internal:1257", + "ImGuiDataType_": "imgui:1270", + "ImGuiDataVarInfo": "imgui_internal:1249", + "ImGuiDebugAllocEntry": "imgui_internal:1838", + "ImGuiDebugAllocInfo": "imgui_internal:1845", + "ImGuiDebugLogFlags_": "imgui_internal:1820", + "ImGuiDir_": "imgui:1286", + "ImGuiDragDropFlags_": "imgui:1248", "ImGuiFocusRequestFlags_": "imgui_internal:938", - "ImGuiFocusedFlags_": "imgui:1192", - "ImGuiGroupData": "imgui_internal:1056", + "ImGuiFocusScopeData": "imgui_internal:1606", + "ImGuiFocusedFlags_": "imgui:1196", + "ImGuiGroupData": "imgui_internal:1019", "ImGuiHoveredFlagsPrivate_": "imgui_internal:852", - "ImGuiHoveredFlags_": "imgui:1206", - "ImGuiIDStackTool": "imgui_internal:1841", - "ImGuiIO": "imgui:2049", - "ImGuiInputEvent": "imgui_internal:1342", - "ImGuiInputEventAppFocused": "imgui_internal:1340", - "ImGuiInputEventKey": "imgui_internal:1338", - "ImGuiInputEventMouseButton": "imgui_internal:1337", - "ImGuiInputEventMousePos": "imgui_internal:1335", - "ImGuiInputEventMouseWheel": "imgui_internal:1336", - "ImGuiInputEventText": "imgui_internal:1339", - "ImGuiInputEventType": "imgui_internal:1311", - "ImGuiInputFlags_": "imgui_internal:1405", - "ImGuiInputSource": "imgui_internal:1323", + "ImGuiHoveredFlags_": "imgui:1210", + "ImGuiIDStackTool": "imgui_internal:1884", + "ImGuiIO": "imgui:2053", + "ImGuiInputEvent": "imgui_internal:1365", + "ImGuiInputEventAppFocused": "imgui_internal:1363", + "ImGuiInputEventKey": "imgui_internal:1361", + "ImGuiInputEventMouseButton": "imgui_internal:1360", + "ImGuiInputEventMousePos": "imgui_internal:1358", + "ImGuiInputEventMouseWheel": "imgui_internal:1359", + "ImGuiInputEventText": "imgui_internal:1362", + "ImGuiInputEventType": "imgui_internal:1334", + "ImGuiInputFlags_": "imgui_internal:1429", + "ImGuiInputSource": "imgui_internal:1346", "ImGuiInputTextCallbackData": "imgui:2258", - "ImGuiInputTextDeactivatedState": "imgui_internal:1092", + "ImGuiInputTextDeactivatedState": "imgui_internal:1055", "ImGuiInputTextFlagsPrivate_": "imgui_internal:860", - "ImGuiInputTextFlags_": "imgui:1051", - "ImGuiInputTextState": "imgui_internal:1102", + "ImGuiInputTextFlags_": "imgui:1053", + "ImGuiInputTextState": "imgui_internal:1065", "ImGuiItemFlags_": "imgui_internal:805", "ImGuiItemStatusFlags_": "imgui_internal:827", - "ImGuiKey": "imgui:1311", - "ImGuiKeyData": "imgui:2041", - "ImGuiKeyOwnerData": "imgui_internal:1393", - "ImGuiKeyRoutingData": "imgui_internal:1368", - "ImGuiKeyRoutingTable": "imgui_internal:1381", - "ImGuiLastItemData": "imgui_internal:1217", + "ImGuiKey": "imgui:1315", + "ImGuiKeyData": "imgui:2045", + "ImGuiKeyOwnerData": "imgui_internal:1417", + "ImGuiKeyRoutingData": "imgui_internal:1391", + "ImGuiKeyRoutingTable": "imgui_internal:1405", + "ImGuiLastItemData": "imgui_internal:1180", "ImGuiLayoutType_": "imgui_internal:959", "ImGuiListClipper": "imgui:2458", - "ImGuiListClipperData": "imgui_internal:1479", - "ImGuiListClipperRange": "imgui_internal:1466", - "ImGuiLocEntry": "imgui_internal:1769", - "ImGuiLocKey": "imgui_internal:1756", + "ImGuiListClipperData": "imgui_internal:1513", + "ImGuiListClipperRange": "imgui_internal:1500", + "ImGuiLocEntry": "imgui_internal:1809", + "ImGuiLocKey": "imgui_internal:1796", "ImGuiLogType": "imgui_internal:965", - "ImGuiMenuColumns": "imgui_internal:1074", - "ImGuiMetricsConfig": "imgui_internal:1814", - "ImGuiMouseButton_": "imgui:1654", - "ImGuiMouseCursor_": "imgui:1664", - "ImGuiMouseSource": "imgui:1683", - "ImGuiNavHighlightFlags_": "imgui_internal:1519", - "ImGuiNavItemData": "imgui_internal:1556", - "ImGuiNavLayer": "imgui_internal:1549", - "ImGuiNavMoveFlags_": "imgui_internal:1528", - "ImGuiNavTreeNodeData": "imgui_internal:1234", - "ImGuiNextItemData": "imgui_internal:1202", - "ImGuiNextItemDataFlags_": "imgui_internal:1195", - "ImGuiNextWindowData": "imgui_internal:1168", - "ImGuiNextWindowDataFlags_": "imgui_internal:1153", - "ImGuiOldColumnData": "imgui_internal:1634", - "ImGuiOldColumnFlags_": "imgui_internal:1614", - "ImGuiOldColumns": "imgui_internal:1644", + "ImGuiMenuColumns": "imgui_internal:1037", + "ImGuiMetricsConfig": "imgui_internal:1855", + "ImGuiMouseButton_": "imgui:1658", + "ImGuiMouseCursor_": "imgui:1668", + "ImGuiMouseSource": "imgui:1687", + "ImGuiNavHighlightFlags_": "imgui_internal:1554", + "ImGuiNavItemData": "imgui_internal:1590", + "ImGuiNavLayer": "imgui_internal:1583", + "ImGuiNavMoveFlags_": "imgui_internal:1562", + "ImGuiNavTreeNodeData": "imgui_internal:1197", + "ImGuiNextItemData": "imgui_internal:1164", + "ImGuiNextItemDataFlags_": "imgui_internal:1156", + "ImGuiNextWindowData": "imgui_internal:1129", + "ImGuiNextWindowDataFlags_": "imgui_internal:1114", + "ImGuiOldColumnData": "imgui_internal:1674", + "ImGuiOldColumnFlags_": "imgui_internal:1654", + "ImGuiOldColumns": "imgui_internal:1684", "ImGuiOnceUponAFrame": "imgui:2334", "ImGuiPayload": "imgui:2299", - "ImGuiPlatformImeData": "imgui:3147", + "ImGuiPlatformImeData": "imgui:3148", "ImGuiPlotType": "imgui_internal:982", - "ImGuiPopupData": "imgui_internal:1139", - "ImGuiPopupFlags_": "imgui:1115", - "ImGuiPopupPositionPolicy": "imgui_internal:988", - "ImGuiPtrOrIndex": "imgui_internal:1273", - "ImGuiScrollFlags_": "imgui_internal:1505", + "ImGuiPopupData": "imgui_internal:1291", + "ImGuiPopupFlags_": "imgui:1117", + "ImGuiPopupPositionPolicy": "imgui_internal:1283", + "ImGuiPtrOrIndex": "imgui_internal:1236", + "ImGuiScrollFlags_": "imgui_internal:1540", "ImGuiSelectableFlagsPrivate_": "imgui_internal:907", - "ImGuiSelectableFlags_": "imgui:1131", + "ImGuiSelectableFlags_": "imgui:1135", "ImGuiSeparatorFlags_": "imgui_internal:927", - "ImGuiSettingsHandler": "imgui_internal:1736", - "ImGuiShrinkWidthItem": "imgui_internal:1266", + "ImGuiSettingsHandler": "imgui_internal:1776", + "ImGuiShrinkWidthItem": "imgui_internal:1229", "ImGuiSizeCallbackData": "imgui:2290", "ImGuiSliderFlagsPrivate_": "imgui_internal:900", - "ImGuiSliderFlags_": "imgui:1639", - "ImGuiSortDirection_": "imgui:1293", - "ImGuiStackLevelInfo": "imgui_internal:1829", - "ImGuiStackSizes": "imgui_internal:1241", + "ImGuiSliderFlags_": "imgui:1643", + "ImGuiSortDirection_": "imgui:1297", + "ImGuiStackLevelInfo": "imgui_internal:1872", + "ImGuiStackSizes": "imgui_internal:1204", "ImGuiStorage": "imgui:2396", "ImGuiStoragePair": "imgui:2399", - "ImGuiStyle": "imgui:1971", - "ImGuiStyleMod": "imgui_internal:1033", - "ImGuiStyleVar_": "imgui:1544", - "ImGuiTabBar": "imgui_internal:2600", - "ImGuiTabBarFlagsPrivate_": "imgui_internal:2565", - "ImGuiTabBarFlags_": "imgui:1161", - "ImGuiTabItem": "imgui_internal:2581", - "ImGuiTabItemFlagsPrivate_": "imgui_internal:2573", - "ImGuiTabItemFlags_": "imgui:1177", - "ImGuiTable": "imgui_internal:2735", - "ImGuiTableBgTarget_": "imgui:1835", - "ImGuiTableCellData": "imgui_internal:2713", - "ImGuiTableColumn": "imgui_internal:2654", - "ImGuiTableColumnFlags_": "imgui:1782", - "ImGuiTableColumnSettings": "imgui_internal:2880", - "ImGuiTableColumnSortSpecs": "imgui:1857", - "ImGuiTableFlags_": "imgui:1729", - "ImGuiTableInstanceData": "imgui_internal:2721", - "ImGuiTableRowFlags_": "imgui:1820", - "ImGuiTableSettings": "imgui_internal:2904", - "ImGuiTableSortSpecs": "imgui:1847", - "ImGuiTableTempData": "imgui_internal:2858", + "ImGuiStyle": "imgui:1975", + "ImGuiStyleMod": "imgui_internal:996", + "ImGuiStyleVar_": "imgui:1548", + "ImGuiTabBar": "imgui_internal:2657", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:2622", + "ImGuiTabBarFlags_": "imgui:1165", + "ImGuiTabItem": "imgui_internal:2638", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:2630", + "ImGuiTabItemFlags_": "imgui:1181", + "ImGuiTable": "imgui_internal:2792", + "ImGuiTableBgTarget_": "imgui:1839", + "ImGuiTableCellData": "imgui_internal:2770", + "ImGuiTableColumn": "imgui_internal:2711", + "ImGuiTableColumnFlags_": "imgui:1786", + "ImGuiTableColumnSettings": "imgui_internal:2937", + "ImGuiTableColumnSortSpecs": "imgui:1861", + "ImGuiTableFlags_": "imgui:1733", + "ImGuiTableInstanceData": "imgui_internal:2778", + "ImGuiTableRowFlags_": "imgui:1824", + "ImGuiTableSettings": "imgui_internal:2961", + "ImGuiTableSortSpecs": "imgui:1851", + "ImGuiTableTempData": "imgui_internal:2915", "ImGuiTextBuffer": "imgui:2369", "ImGuiTextFilter": "imgui:2342", "ImGuiTextFlags_": "imgui_internal:945", @@ -4517,23 +4528,23 @@ "ImGuiTextRange": "imgui:2352", "ImGuiTooltipFlags_": "imgui_internal:951", "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:921", - "ImGuiTreeNodeFlags_": "imgui:1081", - "ImGuiTypingSelectFlags_": "imgui_internal:1577", - "ImGuiTypingSelectRequest": "imgui_internal:1585", - "ImGuiTypingSelectState": "imgui_internal:1596", + "ImGuiTreeNodeFlags_": "imgui:1083", + "ImGuiTypingSelectFlags_": "imgui_internal:1617", + "ImGuiTypingSelectRequest": "imgui_internal:1625", + "ImGuiTypingSelectState": "imgui_internal:1636", "ImGuiViewport": "imgui:3124", "ImGuiViewportFlags_": "imgui:3109", - "ImGuiViewportP": "imgui_internal:1690", - "ImGuiWindow": "imgui_internal:2438", - "ImGuiWindowFlags_": "imgui:987", - "ImGuiWindowSettings": "imgui_internal:1722", - "ImGuiWindowStackData": "imgui_internal:1259", - "ImGuiWindowTempData": "imgui_internal:2389", - "ImRect": "imgui_internal:521", - "ImVec1": "imgui_internal:503", - "ImVec2": "imgui:261", - "ImVec2ih": "imgui_internal:511", - "ImVec4": "imgui:274", + "ImGuiViewportP": "imgui_internal:1730", + "ImGuiWindow": "imgui_internal:2494", + "ImGuiWindowFlags_": "imgui:989", + "ImGuiWindowSettings": "imgui_internal:1762", + "ImGuiWindowStackData": "imgui_internal:1222", + "ImGuiWindowTempData": "imgui_internal:2445", + "ImRect": "imgui_internal:524", + "ImVec1": "imgui_internal:506", + "ImVec2": "imgui:263", + "ImVec2ih": "imgui_internal:514", + "ImVec4": "imgui:276", "STB_TexteditState": "imstb_textedit:321", "StbTexteditRow": "imstb_textedit:368", "StbUndoRecord": "imstb_textedit:303", @@ -5445,6 +5456,15 @@ "name": "ActiveIdHasBeenEditedThisFrame", "type": "bool" }, + { + "name": "ActiveIdFromShortcut", + "type": "bool" + }, + { + "bitfield": "8", + "name": "ActiveIdMouseButton", + "type": "int" + }, { "name": "ActiveIdClickOffset", "type": "ImVec2" @@ -5457,10 +5477,6 @@ "name": "ActiveIdSource", "type": "ImGuiInputSource" }, - { - "name": "ActiveIdMouseButton", - "type": "int" - }, { "name": "ActiveIdPreviousFrame", "type": "ImGuiID" @@ -5497,6 +5513,10 @@ "name": "LastKeyboardKeyPressTime", "type": "double" }, + { + "name": "KeysMayBeCharInput", + "type": "ImBitArrayForNamedKeys" + }, { "name": "KeysOwnerData[ImGuiKey_NamedKey_COUNT]", "size": 154, @@ -5567,8 +5587,8 @@ }, { "name": "FocusScopeStack", - "template_type": "ImGuiID", - "type": "ImVector_ImGuiID" + "template_type": "ImGuiFocusScopeData", + "type": "ImVector_ImGuiFocusScopeData" }, { "name": "ItemFlagsStack", @@ -5595,10 +5615,6 @@ "template_type": "ImGuiNavTreeNodeData", "type": "ImVector_ImGuiNavTreeNodeData" }, - { - "name": "BeginMenuCount", - "type": "int" - }, { "name": "Viewports", "template_type": "ImGuiViewportP*", @@ -5616,6 +5632,11 @@ "name": "NavFocusScopeId", "type": "ImGuiID" }, + { + "name": "NavFocusRoute", + "template_type": "ImGuiFocusScopeData", + "type": "ImVector_ImGuiFocusScopeData" + }, { "name": "NavActivateId", "type": "ImGuiID" @@ -5632,6 +5653,14 @@ "name": "NavActivateFlags", "type": "ImGuiActivateFlags" }, + { + "name": "NavHighlightActivatedId", + "type": "ImGuiID" + }, + { + "name": "NavHighlightActivatedTimer", + "type": "float" + }, { "name": "NavJustMovedToId", "type": "ImGuiID" @@ -5800,6 +5829,10 @@ "name": "NavWindowingToggleLayer", "type": "bool" }, + { + "name": "NavWindowingToggleKey", + "type": "ImGuiKey" + }, { "name": "NavWindowingAccumDeltaPos", "type": "ImVec2" @@ -5998,6 +6031,14 @@ "name": "TempInputId", "type": "ImGuiID" }, + { + "name": "BeginMenuDepth", + "type": "int" + }, + { + "name": "BeginComboDepth", + "type": "int" + }, { "name": "ColorEditOptions", "type": "ImGuiColorEditFlags" @@ -6290,6 +6331,11 @@ "name": "TempBuffer", "template_type": "char", "type": "ImVector_char" + }, + { + "name": "TempKeychordName[64]", + "size": 64, + "type": "char" } ], "ImGuiContextHook": [ @@ -6386,6 +6432,16 @@ "type": "ImGuiDebugAllocEntry" } ], + "ImGuiFocusScopeData": [ + { + "name": "ID", + "type": "ImGuiID" + }, + { + "name": "WindowID", + "type": "ImGuiID" + } + ], "ImGuiGroupData": [ { "name": "WindowID", @@ -6688,10 +6744,6 @@ "name": "MouseDelta", "type": "ImVec2" }, - { - "name": "_UnusedPadding", - "type": "void*" - }, { "name": "Ctx", "type": "ImGuiContext*" @@ -7066,6 +7118,18 @@ { "name": "Flags", "type": "ImGuiInputTextFlags" + }, + { + "name": "ReloadUserBuf", + "type": "bool" + }, + { + "name": "ReloadSelectionStart", + "type": "int" + }, + { + "name": "ReloadSelectionEnd", + "type": "int" } ], "ImGuiKeyData": [ @@ -7113,6 +7177,10 @@ "name": "Mods", "type": "ImU16" }, + { + "name": "RoutingCurrScore", + "type": "ImU8" + }, { "name": "RoutingNextScore", "type": "ImU8" @@ -7337,6 +7405,14 @@ { "name": "ShowTablesRectsType", "type": "int" + }, + { + "name": "HighlightMonitorIdx", + "type": "int" + }, + { + "name": "HighlightViewportID", + "type": "ImGuiID" } ], "ImGuiNavItemData": [ @@ -7400,21 +7476,26 @@ "name": "ItemFlags", "type": "ImGuiItemFlags" }, - { - "name": "Width", - "type": "float" - }, { "name": "SelectionUserData", "type": "ImGuiSelectionUserData" }, { - "name": "OpenCond", - "type": "ImGuiCond" + "name": "Width", + "type": "float" + }, + { + "name": "Shortcut", + "type": "ImGuiKeyChord" }, { "name": "OpenVal", "type": "bool" + }, + { + "bitfield": "8", + "name": "OpenCond", + "type": "ImGuiCond" } ], "ImGuiNextWindowData": [ @@ -9133,6 +9214,10 @@ } ], "ImGuiViewport": [ + { + "name": "ID", + "type": "ImGuiID" + }, { "name": "Flags", "type": "ImGuiViewportFlags" @@ -9564,6 +9649,10 @@ "name": "RootWindowForNav", "type": "ImGuiWindow*" }, + { + "name": "ParentWindowForFocusRoute", + "type": "ImGuiWindow*" + }, { "name": "NavLastChildNavWindow", "type": "ImGuiWindow*" @@ -10086,6 +10175,7 @@ "ImFontGlyph": true, "ImGuiColorMod": true, "ImGuiContextHook": true, + "ImGuiFocusScopeData": true, "ImGuiGroupData": true, "ImGuiID": true, "ImGuiInputEvent": true, diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index 45b4bbe..c069855 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -116,6 +116,10 @@ defs["enums"]["ImGuiActivateFlags_"][5] = {} defs["enums"]["ImGuiActivateFlags_"][5]["calc_value"] = 8 defs["enums"]["ImGuiActivateFlags_"][5]["name"] = "ImGuiActivateFlags_FromTabbing" defs["enums"]["ImGuiActivateFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiActivateFlags_"][6] = {} +defs["enums"]["ImGuiActivateFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiActivateFlags_"][6]["name"] = "ImGuiActivateFlags_FromShortcut" +defs["enums"]["ImGuiActivateFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiAxis"] = {} defs["enums"]["ImGuiAxis"][1] = {} defs["enums"]["ImGuiAxis"][1]["calc_value"] = -1 @@ -852,17 +856,21 @@ defs["enums"]["ImGuiDebugLogFlags_"][8]["calc_value"] = 64 defs["enums"]["ImGuiDebugLogFlags_"][8]["name"] = "ImGuiDebugLogFlags_EventIO" defs["enums"]["ImGuiDebugLogFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiDebugLogFlags_"][9] = {} -defs["enums"]["ImGuiDebugLogFlags_"][9]["calc_value"] = 127 -defs["enums"]["ImGuiDebugLogFlags_"][9]["name"] = "ImGuiDebugLogFlags_EventMask_" -defs["enums"]["ImGuiDebugLogFlags_"][9]["value"] = "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO" +defs["enums"]["ImGuiDebugLogFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiDebugLogFlags_"][9]["name"] = "ImGuiDebugLogFlags_EventInputRouting" +defs["enums"]["ImGuiDebugLogFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiDebugLogFlags_"][10] = {} -defs["enums"]["ImGuiDebugLogFlags_"][10]["calc_value"] = 1048576 -defs["enums"]["ImGuiDebugLogFlags_"][10]["name"] = "ImGuiDebugLogFlags_OutputToTTY" -defs["enums"]["ImGuiDebugLogFlags_"][10]["value"] = "1 << 20" +defs["enums"]["ImGuiDebugLogFlags_"][10]["calc_value"] = 255 +defs["enums"]["ImGuiDebugLogFlags_"][10]["name"] = "ImGuiDebugLogFlags_EventMask_" +defs["enums"]["ImGuiDebugLogFlags_"][10]["value"] = "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting" defs["enums"]["ImGuiDebugLogFlags_"][11] = {} -defs["enums"]["ImGuiDebugLogFlags_"][11]["calc_value"] = 2097152 -defs["enums"]["ImGuiDebugLogFlags_"][11]["name"] = "ImGuiDebugLogFlags_OutputToTestEngine" -defs["enums"]["ImGuiDebugLogFlags_"][11]["value"] = "1 << 21" +defs["enums"]["ImGuiDebugLogFlags_"][11]["calc_value"] = 1048576 +defs["enums"]["ImGuiDebugLogFlags_"][11]["name"] = "ImGuiDebugLogFlags_OutputToTTY" +defs["enums"]["ImGuiDebugLogFlags_"][11]["value"] = "1 << 20" +defs["enums"]["ImGuiDebugLogFlags_"][12] = {} +defs["enums"]["ImGuiDebugLogFlags_"][12]["calc_value"] = 2097152 +defs["enums"]["ImGuiDebugLogFlags_"][12]["name"] = "ImGuiDebugLogFlags_OutputToTestEngine" +defs["enums"]["ImGuiDebugLogFlags_"][12]["value"] = "1 << 21" defs["enums"]["ImGuiDir_"] = {} defs["enums"]["ImGuiDir_"][1] = {} defs["enums"]["ImGuiDir_"][1]["calc_value"] = -1 @@ -1148,81 +1156,77 @@ defs["enums"]["ImGuiInputFlags_"][12]["calc_value"] = 768 defs["enums"]["ImGuiInputFlags_"][12]["name"] = "ImGuiInputFlags_CondDefault_" defs["enums"]["ImGuiInputFlags_"][12]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" defs["enums"]["ImGuiInputFlags_"][13] = {} -defs["enums"]["ImGuiInputFlags_"][13]["calc_value"] = 768 -defs["enums"]["ImGuiInputFlags_"][13]["name"] = "ImGuiInputFlags_CondMask_" -defs["enums"]["ImGuiInputFlags_"][13]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlags_"][13]["calc_value"] = 1024 +defs["enums"]["ImGuiInputFlags_"][13]["name"] = "ImGuiInputFlags_LockThisFrame" +defs["enums"]["ImGuiInputFlags_"][13]["value"] = "1 << 10" defs["enums"]["ImGuiInputFlags_"][14] = {} -defs["enums"]["ImGuiInputFlags_"][14]["calc_value"] = 1024 -defs["enums"]["ImGuiInputFlags_"][14]["name"] = "ImGuiInputFlags_LockThisFrame" -defs["enums"]["ImGuiInputFlags_"][14]["value"] = "1 << 10" +defs["enums"]["ImGuiInputFlags_"][14]["calc_value"] = 2048 +defs["enums"]["ImGuiInputFlags_"][14]["name"] = "ImGuiInputFlags_LockUntilRelease" +defs["enums"]["ImGuiInputFlags_"][14]["value"] = "1 << 11" defs["enums"]["ImGuiInputFlags_"][15] = {} -defs["enums"]["ImGuiInputFlags_"][15]["calc_value"] = 2048 -defs["enums"]["ImGuiInputFlags_"][15]["name"] = "ImGuiInputFlags_LockUntilRelease" -defs["enums"]["ImGuiInputFlags_"][15]["value"] = "1 << 11" +defs["enums"]["ImGuiInputFlags_"][15]["calc_value"] = 4096 +defs["enums"]["ImGuiInputFlags_"][15]["name"] = "ImGuiInputFlags_RouteFocused" +defs["enums"]["ImGuiInputFlags_"][15]["value"] = "1 << 12" defs["enums"]["ImGuiInputFlags_"][16] = {} -defs["enums"]["ImGuiInputFlags_"][16]["calc_value"] = 4096 -defs["enums"]["ImGuiInputFlags_"][16]["name"] = "ImGuiInputFlags_RouteFocused" -defs["enums"]["ImGuiInputFlags_"][16]["value"] = "1 << 12" +defs["enums"]["ImGuiInputFlags_"][16]["calc_value"] = 8192 +defs["enums"]["ImGuiInputFlags_"][16]["name"] = "ImGuiInputFlags_RouteGlobalLow" +defs["enums"]["ImGuiInputFlags_"][16]["value"] = "1 << 13" defs["enums"]["ImGuiInputFlags_"][17] = {} -defs["enums"]["ImGuiInputFlags_"][17]["calc_value"] = 8192 -defs["enums"]["ImGuiInputFlags_"][17]["name"] = "ImGuiInputFlags_RouteGlobalLow" -defs["enums"]["ImGuiInputFlags_"][17]["value"] = "1 << 13" +defs["enums"]["ImGuiInputFlags_"][17]["calc_value"] = 16384 +defs["enums"]["ImGuiInputFlags_"][17]["name"] = "ImGuiInputFlags_RouteGlobal" +defs["enums"]["ImGuiInputFlags_"][17]["value"] = "1 << 14" defs["enums"]["ImGuiInputFlags_"][18] = {} -defs["enums"]["ImGuiInputFlags_"][18]["calc_value"] = 16384 -defs["enums"]["ImGuiInputFlags_"][18]["name"] = "ImGuiInputFlags_RouteGlobal" -defs["enums"]["ImGuiInputFlags_"][18]["value"] = "1 << 14" +defs["enums"]["ImGuiInputFlags_"][18]["calc_value"] = 32768 +defs["enums"]["ImGuiInputFlags_"][18]["name"] = "ImGuiInputFlags_RouteGlobalHigh" +defs["enums"]["ImGuiInputFlags_"][18]["value"] = "1 << 15" defs["enums"]["ImGuiInputFlags_"][19] = {} -defs["enums"]["ImGuiInputFlags_"][19]["calc_value"] = 32768 -defs["enums"]["ImGuiInputFlags_"][19]["name"] = "ImGuiInputFlags_RouteGlobalHigh" -defs["enums"]["ImGuiInputFlags_"][19]["value"] = "1 << 15" +defs["enums"]["ImGuiInputFlags_"][19]["calc_value"] = 65536 +defs["enums"]["ImGuiInputFlags_"][19]["name"] = "ImGuiInputFlags_RouteAlways" +defs["enums"]["ImGuiInputFlags_"][19]["value"] = "1 << 16" defs["enums"]["ImGuiInputFlags_"][20] = {} -defs["enums"]["ImGuiInputFlags_"][20]["calc_value"] = 61440 -defs["enums"]["ImGuiInputFlags_"][20]["name"] = "ImGuiInputFlags_RouteMask_" -defs["enums"]["ImGuiInputFlags_"][20]["value"] = "ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh" +defs["enums"]["ImGuiInputFlags_"][20]["calc_value"] = 131072 +defs["enums"]["ImGuiInputFlags_"][20]["name"] = "ImGuiInputFlags_RouteUnlessBgFocused" +defs["enums"]["ImGuiInputFlags_"][20]["value"] = "1 << 17" defs["enums"]["ImGuiInputFlags_"][21] = {} -defs["enums"]["ImGuiInputFlags_"][21]["calc_value"] = 65536 -defs["enums"]["ImGuiInputFlags_"][21]["name"] = "ImGuiInputFlags_RouteAlways" -defs["enums"]["ImGuiInputFlags_"][21]["value"] = "1 << 16" +defs["enums"]["ImGuiInputFlags_"][21]["calc_value"] = 14 +defs["enums"]["ImGuiInputFlags_"][21]["name"] = "ImGuiInputFlags_RepeatRateMask_" +defs["enums"]["ImGuiInputFlags_"][21]["value"] = "ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak" defs["enums"]["ImGuiInputFlags_"][22] = {} -defs["enums"]["ImGuiInputFlags_"][22]["calc_value"] = 131072 -defs["enums"]["ImGuiInputFlags_"][22]["name"] = "ImGuiInputFlags_RouteUnlessBgFocused" -defs["enums"]["ImGuiInputFlags_"][22]["value"] = "1 << 17" +defs["enums"]["ImGuiInputFlags_"][22]["calc_value"] = 240 +defs["enums"]["ImGuiInputFlags_"][22]["name"] = "ImGuiInputFlags_RepeatUntilMask_" +defs["enums"]["ImGuiInputFlags_"][22]["value"] = "ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress" defs["enums"]["ImGuiInputFlags_"][23] = {} -defs["enums"]["ImGuiInputFlags_"][23]["calc_value"] = 196608 -defs["enums"]["ImGuiInputFlags_"][23]["name"] = "ImGuiInputFlags_RouteExtraMask_" -defs["enums"]["ImGuiInputFlags_"][23]["value"] = "ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused" +defs["enums"]["ImGuiInputFlags_"][23]["calc_value"] = 255 +defs["enums"]["ImGuiInputFlags_"][23]["name"] = "ImGuiInputFlags_RepeatMask_" +defs["enums"]["ImGuiInputFlags_"][23]["value"] = "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_" defs["enums"]["ImGuiInputFlags_"][24] = {} -defs["enums"]["ImGuiInputFlags_"][24]["calc_value"] = 14 -defs["enums"]["ImGuiInputFlags_"][24]["name"] = "ImGuiInputFlags_RepeatRateMask_" -defs["enums"]["ImGuiInputFlags_"][24]["value"] = "ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak" +defs["enums"]["ImGuiInputFlags_"][24]["calc_value"] = 768 +defs["enums"]["ImGuiInputFlags_"][24]["name"] = "ImGuiInputFlags_CondMask_" +defs["enums"]["ImGuiInputFlags_"][24]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" defs["enums"]["ImGuiInputFlags_"][25] = {} -defs["enums"]["ImGuiInputFlags_"][25]["calc_value"] = 240 -defs["enums"]["ImGuiInputFlags_"][25]["name"] = "ImGuiInputFlags_RepeatUntilMask_" -defs["enums"]["ImGuiInputFlags_"][25]["value"] = "ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress" +defs["enums"]["ImGuiInputFlags_"][25]["calc_value"] = 61440 +defs["enums"]["ImGuiInputFlags_"][25]["name"] = "ImGuiInputFlags_RouteMask_" +defs["enums"]["ImGuiInputFlags_"][25]["value"] = "ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh" defs["enums"]["ImGuiInputFlags_"][26] = {} defs["enums"]["ImGuiInputFlags_"][26]["calc_value"] = 255 -defs["enums"]["ImGuiInputFlags_"][26]["name"] = "ImGuiInputFlags_RepeatMask_" -defs["enums"]["ImGuiInputFlags_"][26]["value"] = "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_" +defs["enums"]["ImGuiInputFlags_"][26]["name"] = "ImGuiInputFlags_SupportedByIsKeyPressed" +defs["enums"]["ImGuiInputFlags_"][26]["value"] = "ImGuiInputFlags_RepeatMask_" defs["enums"]["ImGuiInputFlags_"][27] = {} -defs["enums"]["ImGuiInputFlags_"][27]["calc_value"] = 255 -defs["enums"]["ImGuiInputFlags_"][27]["name"] = "ImGuiInputFlags_SupportedByIsKeyPressed" -defs["enums"]["ImGuiInputFlags_"][27]["value"] = "ImGuiInputFlags_RepeatMask_" +defs["enums"]["ImGuiInputFlags_"][27]["calc_value"] = 1 +defs["enums"]["ImGuiInputFlags_"][27]["name"] = "ImGuiInputFlags_SupportedByIsMouseClicked" +defs["enums"]["ImGuiInputFlags_"][27]["value"] = "ImGuiInputFlags_Repeat" defs["enums"]["ImGuiInputFlags_"][28] = {} -defs["enums"]["ImGuiInputFlags_"][28]["calc_value"] = 1 -defs["enums"]["ImGuiInputFlags_"][28]["name"] = "ImGuiInputFlags_SupportedByIsMouseClicked" -defs["enums"]["ImGuiInputFlags_"][28]["value"] = "ImGuiInputFlags_Repeat" +defs["enums"]["ImGuiInputFlags_"][28]["calc_value"] = 258303 +defs["enums"]["ImGuiInputFlags_"][28]["name"] = "ImGuiInputFlags_SupportedByShortcut" +defs["enums"]["ImGuiInputFlags_"][28]["value"] = "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused" defs["enums"]["ImGuiInputFlags_"][29] = {} -defs["enums"]["ImGuiInputFlags_"][29]["calc_value"] = 258303 -defs["enums"]["ImGuiInputFlags_"][29]["name"] = "ImGuiInputFlags_SupportedByShortcut" -defs["enums"]["ImGuiInputFlags_"][29]["value"] = "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_" +defs["enums"]["ImGuiInputFlags_"][29]["calc_value"] = 3072 +defs["enums"]["ImGuiInputFlags_"][29]["name"] = "ImGuiInputFlags_SupportedBySetKeyOwner" +defs["enums"]["ImGuiInputFlags_"][29]["value"] = "ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease" defs["enums"]["ImGuiInputFlags_"][30] = {} -defs["enums"]["ImGuiInputFlags_"][30]["calc_value"] = 3072 -defs["enums"]["ImGuiInputFlags_"][30]["name"] = "ImGuiInputFlags_SupportedBySetKeyOwner" -defs["enums"]["ImGuiInputFlags_"][30]["value"] = "ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease" -defs["enums"]["ImGuiInputFlags_"][31] = {} -defs["enums"]["ImGuiInputFlags_"][31]["calc_value"] = 3840 -defs["enums"]["ImGuiInputFlags_"][31]["name"] = "ImGuiInputFlags_SupportedBySetItemKeyOwner" -defs["enums"]["ImGuiInputFlags_"][31]["value"] = "ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_" +defs["enums"]["ImGuiInputFlags_"][30]["calc_value"] = 3840 +defs["enums"]["ImGuiInputFlags_"][30]["name"] = "ImGuiInputFlags_SupportedBySetItemKeyOwner" +defs["enums"]["ImGuiInputFlags_"][30]["value"] = "ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_" defs["enums"]["ImGuiInputSource"] = {} defs["enums"]["ImGuiInputSource"][1] = {} defs["enums"]["ImGuiInputSource"][1]["calc_value"] = 0 @@ -2273,21 +2277,17 @@ defs["enums"]["ImGuiNavHighlightFlags_"][1]["calc_value"] = 0 defs["enums"]["ImGuiNavHighlightFlags_"][1]["name"] = "ImGuiNavHighlightFlags_None" defs["enums"]["ImGuiNavHighlightFlags_"][1]["value"] = "0" defs["enums"]["ImGuiNavHighlightFlags_"][2] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiNavHighlightFlags_"][2]["name"] = "ImGuiNavHighlightFlags_TypeDefault" -defs["enums"]["ImGuiNavHighlightFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiNavHighlightFlags_"][2]["calc_value"] = 2 +defs["enums"]["ImGuiNavHighlightFlags_"][2]["name"] = "ImGuiNavHighlightFlags_Compact" +defs["enums"]["ImGuiNavHighlightFlags_"][2]["value"] = "1 << 1" defs["enums"]["ImGuiNavHighlightFlags_"][3] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiNavHighlightFlags_"][3]["name"] = "ImGuiNavHighlightFlags_TypeThin" -defs["enums"]["ImGuiNavHighlightFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiNavHighlightFlags_"][3]["calc_value"] = 4 +defs["enums"]["ImGuiNavHighlightFlags_"][3]["name"] = "ImGuiNavHighlightFlags_AlwaysDraw" +defs["enums"]["ImGuiNavHighlightFlags_"][3]["value"] = "1 << 2" defs["enums"]["ImGuiNavHighlightFlags_"][4] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiNavHighlightFlags_"][4]["name"] = "ImGuiNavHighlightFlags_AlwaysDraw" -defs["enums"]["ImGuiNavHighlightFlags_"][4]["value"] = "1 << 2" -defs["enums"]["ImGuiNavHighlightFlags_"][5] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiNavHighlightFlags_"][5]["name"] = "ImGuiNavHighlightFlags_NoRounding" -defs["enums"]["ImGuiNavHighlightFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiNavHighlightFlags_"][4]["calc_value"] = 8 +defs["enums"]["ImGuiNavHighlightFlags_"][4]["name"] = "ImGuiNavHighlightFlags_NoRounding" +defs["enums"]["ImGuiNavHighlightFlags_"][4]["value"] = "1 << 3" defs["enums"]["ImGuiNavLayer"] = {} defs["enums"]["ImGuiNavLayer"][1] = {} defs["enums"]["ImGuiNavLayer"][1]["calc_value"] = 0 @@ -2383,6 +2383,10 @@ defs["enums"]["ImGuiNextItemDataFlags_"][3] = {} defs["enums"]["ImGuiNextItemDataFlags_"][3]["calc_value"] = 2 defs["enums"]["ImGuiNextItemDataFlags_"][3]["name"] = "ImGuiNextItemDataFlags_HasOpen" defs["enums"]["ImGuiNextItemDataFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiNextItemDataFlags_"][4] = {} +defs["enums"]["ImGuiNextItemDataFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiNextItemDataFlags_"][4]["name"] = "ImGuiNextItemDataFlags_HasShortcut" +defs["enums"]["ImGuiNextItemDataFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiNextWindowDataFlags_"] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][1] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][1]["calc_value"] = 0 @@ -2485,24 +2489,28 @@ defs["enums"]["ImGuiPopupFlags_"][6]["name"] = "ImGuiPopupFlags_MouseButtonDefau defs["enums"]["ImGuiPopupFlags_"][6]["value"] = "1" defs["enums"]["ImGuiPopupFlags_"][7] = {} defs["enums"]["ImGuiPopupFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiPopupFlags_"][7]["name"] = "ImGuiPopupFlags_NoOpenOverExistingPopup" +defs["enums"]["ImGuiPopupFlags_"][7]["name"] = "ImGuiPopupFlags_NoReopen" defs["enums"]["ImGuiPopupFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiPopupFlags_"][8] = {} -defs["enums"]["ImGuiPopupFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiPopupFlags_"][8]["name"] = "ImGuiPopupFlags_NoOpenOverItems" -defs["enums"]["ImGuiPopupFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiPopupFlags_"][8]["calc_value"] = 128 +defs["enums"]["ImGuiPopupFlags_"][8]["name"] = "ImGuiPopupFlags_NoOpenOverExistingPopup" +defs["enums"]["ImGuiPopupFlags_"][8]["value"] = "1 << 7" defs["enums"]["ImGuiPopupFlags_"][9] = {} -defs["enums"]["ImGuiPopupFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiPopupFlags_"][9]["name"] = "ImGuiPopupFlags_AnyPopupId" -defs["enums"]["ImGuiPopupFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiPopupFlags_"][9]["calc_value"] = 256 +defs["enums"]["ImGuiPopupFlags_"][9]["name"] = "ImGuiPopupFlags_NoOpenOverItems" +defs["enums"]["ImGuiPopupFlags_"][9]["value"] = "1 << 8" defs["enums"]["ImGuiPopupFlags_"][10] = {} -defs["enums"]["ImGuiPopupFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiPopupFlags_"][10]["name"] = "ImGuiPopupFlags_AnyPopupLevel" -defs["enums"]["ImGuiPopupFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiPopupFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiPopupFlags_"][10]["name"] = "ImGuiPopupFlags_AnyPopupId" +defs["enums"]["ImGuiPopupFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiPopupFlags_"][11] = {} -defs["enums"]["ImGuiPopupFlags_"][11]["calc_value"] = 384 -defs["enums"]["ImGuiPopupFlags_"][11]["name"] = "ImGuiPopupFlags_AnyPopup" -defs["enums"]["ImGuiPopupFlags_"][11]["value"] = "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" +defs["enums"]["ImGuiPopupFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiPopupFlags_"][11]["name"] = "ImGuiPopupFlags_AnyPopupLevel" +defs["enums"]["ImGuiPopupFlags_"][11]["value"] = "1 << 11" +defs["enums"]["ImGuiPopupFlags_"][12] = {} +defs["enums"]["ImGuiPopupFlags_"][12]["calc_value"] = 3072 +defs["enums"]["ImGuiPopupFlags_"][12]["name"] = "ImGuiPopupFlags_AnyPopup" +defs["enums"]["ImGuiPopupFlags_"][12]["value"] = "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" defs["enums"]["ImGuiPopupPositionPolicy"] = {} defs["enums"]["ImGuiPopupPositionPolicy"][1] = {} defs["enums"]["ImGuiPopupPositionPolicy"][1]["calc_value"] = 0 @@ -3448,7 +3456,7 @@ defs["enumtypes"]["ImGuiKey"] = "int" defs["enumtypes"]["ImGuiLocKey"] = "int" defs["enumtypes"]["ImGuiMouseSource"] = "int" defs["locations"] = {} -defs["locations"]["ImBitVector"] = "imgui_internal:599" +defs["locations"]["ImBitVector"] = "imgui_internal:602" defs["locations"]["ImColor"] = "imgui:2544" defs["locations"]["ImDrawChannel"] = "imgui:2634" defs["locations"]["ImDrawCmd"] = "imgui:2593" @@ -3465,135 +3473,136 @@ defs["locations"]["ImFont"] = "imgui:3051" defs["locations"]["ImFontAtlas"] = "imgui:2947" defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2909" defs["locations"]["ImFontAtlasFlags_"] = "imgui:2922" -defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3471" +defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3532" defs["locations"]["ImFontConfig"] = "imgui:2852" defs["locations"]["ImFontGlyph"] = "imgui:2882" defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2894" -defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1495" +defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1529" defs["locations"]["ImGuiAxis"] = "imgui_internal:975" -defs["locations"]["ImGuiBackendFlags_"] = "imgui:1469" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1473" defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:869" -defs["locations"]["ImGuiButtonFlags_"] = "imgui:1580" -defs["locations"]["ImGuiChildFlags_"] = "imgui:1036" -defs["locations"]["ImGuiCol_"] = "imgui:1479" -defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1593" -defs["locations"]["ImGuiColorMod"] = "imgui_internal:1026" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1584" +defs["locations"]["ImGuiChildFlags_"] = "imgui:1038" +defs["locations"]["ImGuiCol_"] = "imgui:1483" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1597" +defs["locations"]["ImGuiColorMod"] = "imgui_internal:989" defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:894" -defs["locations"]["ImGuiComboFlags_"] = "imgui:1146" -defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1043" -defs["locations"]["ImGuiCond_"] = "imgui:1694" -defs["locations"]["ImGuiConfigFlags_"] = "imgui:1453" -defs["locations"]["ImGuiContext"] = "imgui_internal:1875" -defs["locations"]["ImGuiContextHook"] = "imgui_internal:1860" -defs["locations"]["ImGuiContextHookType"] = "imgui_internal:1858" -defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:1009" -defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:1018" -defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:1003" -defs["locations"]["ImGuiDataType_"] = "imgui:1266" -defs["locations"]["ImGuiDataVarInfo"] = "imgui_internal:995" -defs["locations"]["ImGuiDebugAllocEntry"] = "imgui_internal:1797" -defs["locations"]["ImGuiDebugAllocInfo"] = "imgui_internal:1804" -defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:1780" -defs["locations"]["ImGuiDir_"] = "imgui:1282" -defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1244" +defs["locations"]["ImGuiComboFlags_"] = "imgui:1150" +defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1006" +defs["locations"]["ImGuiCond_"] = "imgui:1698" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1457" +defs["locations"]["ImGuiContext"] = "imgui_internal:1918" +defs["locations"]["ImGuiContextHook"] = "imgui_internal:1903" +defs["locations"]["ImGuiContextHookType"] = "imgui_internal:1901" +defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:1263" +defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:1272" +defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:1257" +defs["locations"]["ImGuiDataType_"] = "imgui:1270" +defs["locations"]["ImGuiDataVarInfo"] = "imgui_internal:1249" +defs["locations"]["ImGuiDebugAllocEntry"] = "imgui_internal:1838" +defs["locations"]["ImGuiDebugAllocInfo"] = "imgui_internal:1845" +defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:1820" +defs["locations"]["ImGuiDir_"] = "imgui:1286" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1248" defs["locations"]["ImGuiFocusRequestFlags_"] = "imgui_internal:938" -defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1192" -defs["locations"]["ImGuiGroupData"] = "imgui_internal:1056" +defs["locations"]["ImGuiFocusScopeData"] = "imgui_internal:1606" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1196" +defs["locations"]["ImGuiGroupData"] = "imgui_internal:1019" defs["locations"]["ImGuiHoveredFlagsPrivate_"] = "imgui_internal:852" -defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1206" -defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:1841" -defs["locations"]["ImGuiIO"] = "imgui:2049" -defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1342" -defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1340" -defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1338" -defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1337" -defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1335" -defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1336" -defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1339" -defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1311" -defs["locations"]["ImGuiInputFlags_"] = "imgui_internal:1405" -defs["locations"]["ImGuiInputSource"] = "imgui_internal:1323" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1210" +defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:1884" +defs["locations"]["ImGuiIO"] = "imgui:2053" +defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1365" +defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1363" +defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1361" +defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1360" +defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1358" +defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1359" +defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1362" +defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1334" +defs["locations"]["ImGuiInputFlags_"] = "imgui_internal:1429" +defs["locations"]["ImGuiInputSource"] = "imgui_internal:1346" defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2258" -defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1092" +defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1055" defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:860" -defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1051" -defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1102" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1053" +defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1065" defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:805" defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:827" -defs["locations"]["ImGuiKey"] = "imgui:1311" -defs["locations"]["ImGuiKeyData"] = "imgui:2041" -defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1393" -defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1368" -defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1381" -defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1217" +defs["locations"]["ImGuiKey"] = "imgui:1315" +defs["locations"]["ImGuiKeyData"] = "imgui:2045" +defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1417" +defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1391" +defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1405" +defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1180" defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:959" defs["locations"]["ImGuiListClipper"] = "imgui:2458" -defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1479" -defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1466" -defs["locations"]["ImGuiLocEntry"] = "imgui_internal:1769" -defs["locations"]["ImGuiLocKey"] = "imgui_internal:1756" +defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1513" +defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1500" +defs["locations"]["ImGuiLocEntry"] = "imgui_internal:1809" +defs["locations"]["ImGuiLocKey"] = "imgui_internal:1796" defs["locations"]["ImGuiLogType"] = "imgui_internal:965" -defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1074" -defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:1814" -defs["locations"]["ImGuiMouseButton_"] = "imgui:1654" -defs["locations"]["ImGuiMouseCursor_"] = "imgui:1664" -defs["locations"]["ImGuiMouseSource"] = "imgui:1683" -defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1519" -defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1556" -defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1549" -defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1528" -defs["locations"]["ImGuiNavTreeNodeData"] = "imgui_internal:1234" -defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1202" -defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1195" -defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1168" -defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1153" -defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1634" -defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1614" -defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1644" +defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1037" +defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:1855" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1658" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1668" +defs["locations"]["ImGuiMouseSource"] = "imgui:1687" +defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1554" +defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1590" +defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1583" +defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1562" +defs["locations"]["ImGuiNavTreeNodeData"] = "imgui_internal:1197" +defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1164" +defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1156" +defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1129" +defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1114" +defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1674" +defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1654" +defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1684" defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2334" defs["locations"]["ImGuiPayload"] = "imgui:2299" -defs["locations"]["ImGuiPlatformImeData"] = "imgui:3147" +defs["locations"]["ImGuiPlatformImeData"] = "imgui:3148" defs["locations"]["ImGuiPlotType"] = "imgui_internal:982" -defs["locations"]["ImGuiPopupData"] = "imgui_internal:1139" -defs["locations"]["ImGuiPopupFlags_"] = "imgui:1115" -defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:988" -defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1273" -defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1505" +defs["locations"]["ImGuiPopupData"] = "imgui_internal:1291" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:1117" +defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:1283" +defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1236" +defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1540" defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:907" -defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1131" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1135" defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:927" -defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1736" -defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1266" +defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1776" +defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1229" defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2290" defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:900" -defs["locations"]["ImGuiSliderFlags_"] = "imgui:1639" -defs["locations"]["ImGuiSortDirection_"] = "imgui:1293" -defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:1829" -defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1241" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1643" +defs["locations"]["ImGuiSortDirection_"] = "imgui:1297" +defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:1872" +defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1204" defs["locations"]["ImGuiStorage"] = "imgui:2396" defs["locations"]["ImGuiStoragePair"] = "imgui:2399" -defs["locations"]["ImGuiStyle"] = "imgui:1971" -defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1033" -defs["locations"]["ImGuiStyleVar_"] = "imgui:1544" -defs["locations"]["ImGuiTabBar"] = "imgui_internal:2600" -defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2565" -defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1161" -defs["locations"]["ImGuiTabItem"] = "imgui_internal:2581" -defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2573" -defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1177" -defs["locations"]["ImGuiTable"] = "imgui_internal:2735" -defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1835" -defs["locations"]["ImGuiTableCellData"] = "imgui_internal:2713" -defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2654" -defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1782" -defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:2880" -defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:1857" -defs["locations"]["ImGuiTableFlags_"] = "imgui:1729" -defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:2721" -defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1820" -defs["locations"]["ImGuiTableSettings"] = "imgui_internal:2904" -defs["locations"]["ImGuiTableSortSpecs"] = "imgui:1847" -defs["locations"]["ImGuiTableTempData"] = "imgui_internal:2858" +defs["locations"]["ImGuiStyle"] = "imgui:1975" +defs["locations"]["ImGuiStyleMod"] = "imgui_internal:996" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1548" +defs["locations"]["ImGuiTabBar"] = "imgui_internal:2657" +defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2622" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1165" +defs["locations"]["ImGuiTabItem"] = "imgui_internal:2638" +defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2630" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1181" +defs["locations"]["ImGuiTable"] = "imgui_internal:2792" +defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1839" +defs["locations"]["ImGuiTableCellData"] = "imgui_internal:2770" +defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2711" +defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1786" +defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:2937" +defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:1861" +defs["locations"]["ImGuiTableFlags_"] = "imgui:1733" +defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:2778" +defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1824" +defs["locations"]["ImGuiTableSettings"] = "imgui_internal:2961" +defs["locations"]["ImGuiTableSortSpecs"] = "imgui:1851" +defs["locations"]["ImGuiTableTempData"] = "imgui_internal:2915" defs["locations"]["ImGuiTextBuffer"] = "imgui:2369" defs["locations"]["ImGuiTextFilter"] = "imgui:2342" defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:945" @@ -3601,23 +3610,23 @@ defs["locations"]["ImGuiTextIndex"] = "imgui_internal:722" defs["locations"]["ImGuiTextRange"] = "imgui:2352" defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:951" defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:921" -defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1081" -defs["locations"]["ImGuiTypingSelectFlags_"] = "imgui_internal:1577" -defs["locations"]["ImGuiTypingSelectRequest"] = "imgui_internal:1585" -defs["locations"]["ImGuiTypingSelectState"] = "imgui_internal:1596" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1083" +defs["locations"]["ImGuiTypingSelectFlags_"] = "imgui_internal:1617" +defs["locations"]["ImGuiTypingSelectRequest"] = "imgui_internal:1625" +defs["locations"]["ImGuiTypingSelectState"] = "imgui_internal:1636" defs["locations"]["ImGuiViewport"] = "imgui:3124" defs["locations"]["ImGuiViewportFlags_"] = "imgui:3109" -defs["locations"]["ImGuiViewportP"] = "imgui_internal:1690" -defs["locations"]["ImGuiWindow"] = "imgui_internal:2438" -defs["locations"]["ImGuiWindowFlags_"] = "imgui:987" -defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1722" -defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1259" -defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2389" -defs["locations"]["ImRect"] = "imgui_internal:521" -defs["locations"]["ImVec1"] = "imgui_internal:503" -defs["locations"]["ImVec2"] = "imgui:261" -defs["locations"]["ImVec2ih"] = "imgui_internal:511" -defs["locations"]["ImVec4"] = "imgui:274" +defs["locations"]["ImGuiViewportP"] = "imgui_internal:1730" +defs["locations"]["ImGuiWindow"] = "imgui_internal:2494" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:989" +defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1762" +defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1222" +defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2445" +defs["locations"]["ImRect"] = "imgui_internal:524" +defs["locations"]["ImVec1"] = "imgui_internal:506" +defs["locations"]["ImVec2"] = "imgui:263" +defs["locations"]["ImVec2ih"] = "imgui_internal:514" +defs["locations"]["ImVec4"] = "imgui:276" defs["locations"]["STB_TexteditState"] = "imstb_textedit:321" defs["locations"]["StbTexteditRow"] = "imstb_textedit:368" defs["locations"]["StbUndoRecord"] = "imstb_textedit:303" @@ -4302,647 +4311,674 @@ defs["structs"]["ImGuiContext"][57] = {} defs["structs"]["ImGuiContext"][57]["name"] = "ActiveIdHasBeenEditedThisFrame" defs["structs"]["ImGuiContext"][57]["type"] = "bool" defs["structs"]["ImGuiContext"][58] = {} -defs["structs"]["ImGuiContext"][58]["name"] = "ActiveIdClickOffset" -defs["structs"]["ImGuiContext"][58]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][58]["name"] = "ActiveIdFromShortcut" +defs["structs"]["ImGuiContext"][58]["type"] = "bool" defs["structs"]["ImGuiContext"][59] = {} -defs["structs"]["ImGuiContext"][59]["name"] = "ActiveIdWindow" -defs["structs"]["ImGuiContext"][59]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][59]["bitfield"] = "8" +defs["structs"]["ImGuiContext"][59]["name"] = "ActiveIdMouseButton" +defs["structs"]["ImGuiContext"][59]["type"] = "int" defs["structs"]["ImGuiContext"][60] = {} -defs["structs"]["ImGuiContext"][60]["name"] = "ActiveIdSource" -defs["structs"]["ImGuiContext"][60]["type"] = "ImGuiInputSource" +defs["structs"]["ImGuiContext"][60]["name"] = "ActiveIdClickOffset" +defs["structs"]["ImGuiContext"][60]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][61] = {} -defs["structs"]["ImGuiContext"][61]["name"] = "ActiveIdMouseButton" -defs["structs"]["ImGuiContext"][61]["type"] = "int" +defs["structs"]["ImGuiContext"][61]["name"] = "ActiveIdWindow" +defs["structs"]["ImGuiContext"][61]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][62] = {} -defs["structs"]["ImGuiContext"][62]["name"] = "ActiveIdPreviousFrame" -defs["structs"]["ImGuiContext"][62]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][62]["name"] = "ActiveIdSource" +defs["structs"]["ImGuiContext"][62]["type"] = "ImGuiInputSource" defs["structs"]["ImGuiContext"][63] = {} -defs["structs"]["ImGuiContext"][63]["name"] = "ActiveIdPreviousFrameIsAlive" -defs["structs"]["ImGuiContext"][63]["type"] = "bool" +defs["structs"]["ImGuiContext"][63]["name"] = "ActiveIdPreviousFrame" +defs["structs"]["ImGuiContext"][63]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][64] = {} -defs["structs"]["ImGuiContext"][64]["name"] = "ActiveIdPreviousFrameHasBeenEditedBefore" +defs["structs"]["ImGuiContext"][64]["name"] = "ActiveIdPreviousFrameIsAlive" defs["structs"]["ImGuiContext"][64]["type"] = "bool" defs["structs"]["ImGuiContext"][65] = {} -defs["structs"]["ImGuiContext"][65]["name"] = "ActiveIdPreviousFrameWindow" -defs["structs"]["ImGuiContext"][65]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][65]["name"] = "ActiveIdPreviousFrameHasBeenEditedBefore" +defs["structs"]["ImGuiContext"][65]["type"] = "bool" defs["structs"]["ImGuiContext"][66] = {} -defs["structs"]["ImGuiContext"][66]["name"] = "LastActiveId" -defs["structs"]["ImGuiContext"][66]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][66]["name"] = "ActiveIdPreviousFrameWindow" +defs["structs"]["ImGuiContext"][66]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][67] = {} -defs["structs"]["ImGuiContext"][67]["name"] = "LastActiveIdTimer" -defs["structs"]["ImGuiContext"][67]["type"] = "float" +defs["structs"]["ImGuiContext"][67]["name"] = "LastActiveId" +defs["structs"]["ImGuiContext"][67]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][68] = {} -defs["structs"]["ImGuiContext"][68]["name"] = "LastKeyModsChangeTime" -defs["structs"]["ImGuiContext"][68]["type"] = "double" +defs["structs"]["ImGuiContext"][68]["name"] = "LastActiveIdTimer" +defs["structs"]["ImGuiContext"][68]["type"] = "float" defs["structs"]["ImGuiContext"][69] = {} -defs["structs"]["ImGuiContext"][69]["name"] = "LastKeyModsChangeFromNoneTime" +defs["structs"]["ImGuiContext"][69]["name"] = "LastKeyModsChangeTime" defs["structs"]["ImGuiContext"][69]["type"] = "double" defs["structs"]["ImGuiContext"][70] = {} -defs["structs"]["ImGuiContext"][70]["name"] = "LastKeyboardKeyPressTime" +defs["structs"]["ImGuiContext"][70]["name"] = "LastKeyModsChangeFromNoneTime" defs["structs"]["ImGuiContext"][70]["type"] = "double" defs["structs"]["ImGuiContext"][71] = {} -defs["structs"]["ImGuiContext"][71]["name"] = "KeysOwnerData[ImGuiKey_NamedKey_COUNT]" -defs["structs"]["ImGuiContext"][71]["size"] = 154 -defs["structs"]["ImGuiContext"][71]["type"] = "ImGuiKeyOwnerData" +defs["structs"]["ImGuiContext"][71]["name"] = "LastKeyboardKeyPressTime" +defs["structs"]["ImGuiContext"][71]["type"] = "double" defs["structs"]["ImGuiContext"][72] = {} -defs["structs"]["ImGuiContext"][72]["name"] = "KeysRoutingTable" -defs["structs"]["ImGuiContext"][72]["type"] = "ImGuiKeyRoutingTable" +defs["structs"]["ImGuiContext"][72]["name"] = "KeysMayBeCharInput" +defs["structs"]["ImGuiContext"][72]["type"] = "ImBitArrayForNamedKeys" defs["structs"]["ImGuiContext"][73] = {} -defs["structs"]["ImGuiContext"][73]["name"] = "ActiveIdUsingNavDirMask" -defs["structs"]["ImGuiContext"][73]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][73]["name"] = "KeysOwnerData[ImGuiKey_NamedKey_COUNT]" +defs["structs"]["ImGuiContext"][73]["size"] = 154 +defs["structs"]["ImGuiContext"][73]["type"] = "ImGuiKeyOwnerData" defs["structs"]["ImGuiContext"][74] = {} -defs["structs"]["ImGuiContext"][74]["name"] = "ActiveIdUsingAllKeyboardKeys" -defs["structs"]["ImGuiContext"][74]["type"] = "bool" +defs["structs"]["ImGuiContext"][74]["name"] = "KeysRoutingTable" +defs["structs"]["ImGuiContext"][74]["type"] = "ImGuiKeyRoutingTable" defs["structs"]["ImGuiContext"][75] = {} -defs["structs"]["ImGuiContext"][75]["name"] = "DebugBreakInShortcutRouting" -defs["structs"]["ImGuiContext"][75]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][75]["name"] = "ActiveIdUsingNavDirMask" +defs["structs"]["ImGuiContext"][75]["type"] = "ImU32" defs["structs"]["ImGuiContext"][76] = {} -defs["structs"]["ImGuiContext"][76]["name"] = "CurrentFocusScopeId" -defs["structs"]["ImGuiContext"][76]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][76]["name"] = "ActiveIdUsingAllKeyboardKeys" +defs["structs"]["ImGuiContext"][76]["type"] = "bool" defs["structs"]["ImGuiContext"][77] = {} -defs["structs"]["ImGuiContext"][77]["name"] = "CurrentItemFlags" -defs["structs"]["ImGuiContext"][77]["type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiContext"][77]["name"] = "DebugBreakInShortcutRouting" +defs["structs"]["ImGuiContext"][77]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][78] = {} -defs["structs"]["ImGuiContext"][78]["name"] = "DebugLocateId" +defs["structs"]["ImGuiContext"][78]["name"] = "CurrentFocusScopeId" defs["structs"]["ImGuiContext"][78]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][79] = {} -defs["structs"]["ImGuiContext"][79]["name"] = "NextItemData" -defs["structs"]["ImGuiContext"][79]["type"] = "ImGuiNextItemData" +defs["structs"]["ImGuiContext"][79]["name"] = "CurrentItemFlags" +defs["structs"]["ImGuiContext"][79]["type"] = "ImGuiItemFlags" defs["structs"]["ImGuiContext"][80] = {} -defs["structs"]["ImGuiContext"][80]["name"] = "LastItemData" -defs["structs"]["ImGuiContext"][80]["type"] = "ImGuiLastItemData" +defs["structs"]["ImGuiContext"][80]["name"] = "DebugLocateId" +defs["structs"]["ImGuiContext"][80]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][81] = {} -defs["structs"]["ImGuiContext"][81]["name"] = "NextWindowData" -defs["structs"]["ImGuiContext"][81]["type"] = "ImGuiNextWindowData" +defs["structs"]["ImGuiContext"][81]["name"] = "NextItemData" +defs["structs"]["ImGuiContext"][81]["type"] = "ImGuiNextItemData" defs["structs"]["ImGuiContext"][82] = {} -defs["structs"]["ImGuiContext"][82]["name"] = "DebugShowGroupRects" -defs["structs"]["ImGuiContext"][82]["type"] = "bool" +defs["structs"]["ImGuiContext"][82]["name"] = "LastItemData" +defs["structs"]["ImGuiContext"][82]["type"] = "ImGuiLastItemData" defs["structs"]["ImGuiContext"][83] = {} -defs["structs"]["ImGuiContext"][83]["name"] = "DebugFlashStyleColorIdx" -defs["structs"]["ImGuiContext"][83]["type"] = "ImGuiCol" +defs["structs"]["ImGuiContext"][83]["name"] = "NextWindowData" +defs["structs"]["ImGuiContext"][83]["type"] = "ImGuiNextWindowData" defs["structs"]["ImGuiContext"][84] = {} -defs["structs"]["ImGuiContext"][84]["name"] = "ColorStack" -defs["structs"]["ImGuiContext"][84]["template_type"] = "ImGuiColorMod" -defs["structs"]["ImGuiContext"][84]["type"] = "ImVector_ImGuiColorMod" +defs["structs"]["ImGuiContext"][84]["name"] = "DebugShowGroupRects" +defs["structs"]["ImGuiContext"][84]["type"] = "bool" defs["structs"]["ImGuiContext"][85] = {} -defs["structs"]["ImGuiContext"][85]["name"] = "StyleVarStack" -defs["structs"]["ImGuiContext"][85]["template_type"] = "ImGuiStyleMod" -defs["structs"]["ImGuiContext"][85]["type"] = "ImVector_ImGuiStyleMod" +defs["structs"]["ImGuiContext"][85]["name"] = "DebugFlashStyleColorIdx" +defs["structs"]["ImGuiContext"][85]["type"] = "ImGuiCol" defs["structs"]["ImGuiContext"][86] = {} -defs["structs"]["ImGuiContext"][86]["name"] = "FontStack" -defs["structs"]["ImGuiContext"][86]["template_type"] = "ImFont*" -defs["structs"]["ImGuiContext"][86]["type"] = "ImVector_ImFontPtr" +defs["structs"]["ImGuiContext"][86]["name"] = "ColorStack" +defs["structs"]["ImGuiContext"][86]["template_type"] = "ImGuiColorMod" +defs["structs"]["ImGuiContext"][86]["type"] = "ImVector_ImGuiColorMod" defs["structs"]["ImGuiContext"][87] = {} -defs["structs"]["ImGuiContext"][87]["name"] = "FocusScopeStack" -defs["structs"]["ImGuiContext"][87]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiContext"][87]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][87]["name"] = "StyleVarStack" +defs["structs"]["ImGuiContext"][87]["template_type"] = "ImGuiStyleMod" +defs["structs"]["ImGuiContext"][87]["type"] = "ImVector_ImGuiStyleMod" defs["structs"]["ImGuiContext"][88] = {} -defs["structs"]["ImGuiContext"][88]["name"] = "ItemFlagsStack" -defs["structs"]["ImGuiContext"][88]["template_type"] = "ImGuiItemFlags" -defs["structs"]["ImGuiContext"][88]["type"] = "ImVector_ImGuiItemFlags" +defs["structs"]["ImGuiContext"][88]["name"] = "FontStack" +defs["structs"]["ImGuiContext"][88]["template_type"] = "ImFont*" +defs["structs"]["ImGuiContext"][88]["type"] = "ImVector_ImFontPtr" defs["structs"]["ImGuiContext"][89] = {} -defs["structs"]["ImGuiContext"][89]["name"] = "GroupStack" -defs["structs"]["ImGuiContext"][89]["template_type"] = "ImGuiGroupData" -defs["structs"]["ImGuiContext"][89]["type"] = "ImVector_ImGuiGroupData" +defs["structs"]["ImGuiContext"][89]["name"] = "FocusScopeStack" +defs["structs"]["ImGuiContext"][89]["template_type"] = "ImGuiFocusScopeData" +defs["structs"]["ImGuiContext"][89]["type"] = "ImVector_ImGuiFocusScopeData" defs["structs"]["ImGuiContext"][90] = {} -defs["structs"]["ImGuiContext"][90]["name"] = "OpenPopupStack" -defs["structs"]["ImGuiContext"][90]["template_type"] = "ImGuiPopupData" -defs["structs"]["ImGuiContext"][90]["type"] = "ImVector_ImGuiPopupData" +defs["structs"]["ImGuiContext"][90]["name"] = "ItemFlagsStack" +defs["structs"]["ImGuiContext"][90]["template_type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiContext"][90]["type"] = "ImVector_ImGuiItemFlags" defs["structs"]["ImGuiContext"][91] = {} -defs["structs"]["ImGuiContext"][91]["name"] = "BeginPopupStack" -defs["structs"]["ImGuiContext"][91]["template_type"] = "ImGuiPopupData" -defs["structs"]["ImGuiContext"][91]["type"] = "ImVector_ImGuiPopupData" +defs["structs"]["ImGuiContext"][91]["name"] = "GroupStack" +defs["structs"]["ImGuiContext"][91]["template_type"] = "ImGuiGroupData" +defs["structs"]["ImGuiContext"][91]["type"] = "ImVector_ImGuiGroupData" defs["structs"]["ImGuiContext"][92] = {} -defs["structs"]["ImGuiContext"][92]["name"] = "NavTreeNodeStack" -defs["structs"]["ImGuiContext"][92]["template_type"] = "ImGuiNavTreeNodeData" -defs["structs"]["ImGuiContext"][92]["type"] = "ImVector_ImGuiNavTreeNodeData" +defs["structs"]["ImGuiContext"][92]["name"] = "OpenPopupStack" +defs["structs"]["ImGuiContext"][92]["template_type"] = "ImGuiPopupData" +defs["structs"]["ImGuiContext"][92]["type"] = "ImVector_ImGuiPopupData" defs["structs"]["ImGuiContext"][93] = {} -defs["structs"]["ImGuiContext"][93]["name"] = "BeginMenuCount" -defs["structs"]["ImGuiContext"][93]["type"] = "int" +defs["structs"]["ImGuiContext"][93]["name"] = "BeginPopupStack" +defs["structs"]["ImGuiContext"][93]["template_type"] = "ImGuiPopupData" +defs["structs"]["ImGuiContext"][93]["type"] = "ImVector_ImGuiPopupData" defs["structs"]["ImGuiContext"][94] = {} -defs["structs"]["ImGuiContext"][94]["name"] = "Viewports" -defs["structs"]["ImGuiContext"][94]["template_type"] = "ImGuiViewportP*" -defs["structs"]["ImGuiContext"][94]["type"] = "ImVector_ImGuiViewportPPtr" +defs["structs"]["ImGuiContext"][94]["name"] = "NavTreeNodeStack" +defs["structs"]["ImGuiContext"][94]["template_type"] = "ImGuiNavTreeNodeData" +defs["structs"]["ImGuiContext"][94]["type"] = "ImVector_ImGuiNavTreeNodeData" defs["structs"]["ImGuiContext"][95] = {} -defs["structs"]["ImGuiContext"][95]["name"] = "NavWindow" -defs["structs"]["ImGuiContext"][95]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][95]["name"] = "Viewports" +defs["structs"]["ImGuiContext"][95]["template_type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][95]["type"] = "ImVector_ImGuiViewportPPtr" defs["structs"]["ImGuiContext"][96] = {} -defs["structs"]["ImGuiContext"][96]["name"] = "NavId" -defs["structs"]["ImGuiContext"][96]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][96]["name"] = "NavWindow" +defs["structs"]["ImGuiContext"][96]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][97] = {} -defs["structs"]["ImGuiContext"][97]["name"] = "NavFocusScopeId" +defs["structs"]["ImGuiContext"][97]["name"] = "NavId" defs["structs"]["ImGuiContext"][97]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][98] = {} -defs["structs"]["ImGuiContext"][98]["name"] = "NavActivateId" +defs["structs"]["ImGuiContext"][98]["name"] = "NavFocusScopeId" defs["structs"]["ImGuiContext"][98]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][99] = {} -defs["structs"]["ImGuiContext"][99]["name"] = "NavActivateDownId" -defs["structs"]["ImGuiContext"][99]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][99]["name"] = "NavFocusRoute" +defs["structs"]["ImGuiContext"][99]["template_type"] = "ImGuiFocusScopeData" +defs["structs"]["ImGuiContext"][99]["type"] = "ImVector_ImGuiFocusScopeData" defs["structs"]["ImGuiContext"][100] = {} -defs["structs"]["ImGuiContext"][100]["name"] = "NavActivatePressedId" +defs["structs"]["ImGuiContext"][100]["name"] = "NavActivateId" defs["structs"]["ImGuiContext"][100]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][101] = {} -defs["structs"]["ImGuiContext"][101]["name"] = "NavActivateFlags" -defs["structs"]["ImGuiContext"][101]["type"] = "ImGuiActivateFlags" +defs["structs"]["ImGuiContext"][101]["name"] = "NavActivateDownId" +defs["structs"]["ImGuiContext"][101]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][102] = {} -defs["structs"]["ImGuiContext"][102]["name"] = "NavJustMovedToId" +defs["structs"]["ImGuiContext"][102]["name"] = "NavActivatePressedId" defs["structs"]["ImGuiContext"][102]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][103] = {} -defs["structs"]["ImGuiContext"][103]["name"] = "NavJustMovedToFocusScopeId" -defs["structs"]["ImGuiContext"][103]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][103]["name"] = "NavActivateFlags" +defs["structs"]["ImGuiContext"][103]["type"] = "ImGuiActivateFlags" defs["structs"]["ImGuiContext"][104] = {} -defs["structs"]["ImGuiContext"][104]["name"] = "NavJustMovedToKeyMods" -defs["structs"]["ImGuiContext"][104]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][104]["name"] = "NavHighlightActivatedId" +defs["structs"]["ImGuiContext"][104]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][105] = {} -defs["structs"]["ImGuiContext"][105]["name"] = "NavNextActivateId" -defs["structs"]["ImGuiContext"][105]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][105]["name"] = "NavHighlightActivatedTimer" +defs["structs"]["ImGuiContext"][105]["type"] = "float" defs["structs"]["ImGuiContext"][106] = {} -defs["structs"]["ImGuiContext"][106]["name"] = "NavNextActivateFlags" -defs["structs"]["ImGuiContext"][106]["type"] = "ImGuiActivateFlags" +defs["structs"]["ImGuiContext"][106]["name"] = "NavJustMovedToId" +defs["structs"]["ImGuiContext"][106]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][107] = {} -defs["structs"]["ImGuiContext"][107]["name"] = "NavInputSource" -defs["structs"]["ImGuiContext"][107]["type"] = "ImGuiInputSource" +defs["structs"]["ImGuiContext"][107]["name"] = "NavJustMovedToFocusScopeId" +defs["structs"]["ImGuiContext"][107]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][108] = {} -defs["structs"]["ImGuiContext"][108]["name"] = "NavLayer" -defs["structs"]["ImGuiContext"][108]["type"] = "ImGuiNavLayer" +defs["structs"]["ImGuiContext"][108]["name"] = "NavJustMovedToKeyMods" +defs["structs"]["ImGuiContext"][108]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][109] = {} -defs["structs"]["ImGuiContext"][109]["name"] = "NavLastValidSelectionUserData" -defs["structs"]["ImGuiContext"][109]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiContext"][109]["name"] = "NavNextActivateId" +defs["structs"]["ImGuiContext"][109]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][110] = {} -defs["structs"]["ImGuiContext"][110]["name"] = "NavIdIsAlive" -defs["structs"]["ImGuiContext"][110]["type"] = "bool" +defs["structs"]["ImGuiContext"][110]["name"] = "NavNextActivateFlags" +defs["structs"]["ImGuiContext"][110]["type"] = "ImGuiActivateFlags" defs["structs"]["ImGuiContext"][111] = {} -defs["structs"]["ImGuiContext"][111]["name"] = "NavMousePosDirty" -defs["structs"]["ImGuiContext"][111]["type"] = "bool" +defs["structs"]["ImGuiContext"][111]["name"] = "NavInputSource" +defs["structs"]["ImGuiContext"][111]["type"] = "ImGuiInputSource" defs["structs"]["ImGuiContext"][112] = {} -defs["structs"]["ImGuiContext"][112]["name"] = "NavDisableHighlight" -defs["structs"]["ImGuiContext"][112]["type"] = "bool" +defs["structs"]["ImGuiContext"][112]["name"] = "NavLayer" +defs["structs"]["ImGuiContext"][112]["type"] = "ImGuiNavLayer" defs["structs"]["ImGuiContext"][113] = {} -defs["structs"]["ImGuiContext"][113]["name"] = "NavDisableMouseHover" -defs["structs"]["ImGuiContext"][113]["type"] = "bool" +defs["structs"]["ImGuiContext"][113]["name"] = "NavLastValidSelectionUserData" +defs["structs"]["ImGuiContext"][113]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiContext"][114] = {} -defs["structs"]["ImGuiContext"][114]["name"] = "NavAnyRequest" +defs["structs"]["ImGuiContext"][114]["name"] = "NavIdIsAlive" defs["structs"]["ImGuiContext"][114]["type"] = "bool" defs["structs"]["ImGuiContext"][115] = {} -defs["structs"]["ImGuiContext"][115]["name"] = "NavInitRequest" +defs["structs"]["ImGuiContext"][115]["name"] = "NavMousePosDirty" defs["structs"]["ImGuiContext"][115]["type"] = "bool" defs["structs"]["ImGuiContext"][116] = {} -defs["structs"]["ImGuiContext"][116]["name"] = "NavInitRequestFromMove" +defs["structs"]["ImGuiContext"][116]["name"] = "NavDisableHighlight" defs["structs"]["ImGuiContext"][116]["type"] = "bool" defs["structs"]["ImGuiContext"][117] = {} -defs["structs"]["ImGuiContext"][117]["name"] = "NavInitResult" -defs["structs"]["ImGuiContext"][117]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][117]["name"] = "NavDisableMouseHover" +defs["structs"]["ImGuiContext"][117]["type"] = "bool" defs["structs"]["ImGuiContext"][118] = {} -defs["structs"]["ImGuiContext"][118]["name"] = "NavMoveSubmitted" +defs["structs"]["ImGuiContext"][118]["name"] = "NavAnyRequest" defs["structs"]["ImGuiContext"][118]["type"] = "bool" defs["structs"]["ImGuiContext"][119] = {} -defs["structs"]["ImGuiContext"][119]["name"] = "NavMoveScoringItems" +defs["structs"]["ImGuiContext"][119]["name"] = "NavInitRequest" defs["structs"]["ImGuiContext"][119]["type"] = "bool" defs["structs"]["ImGuiContext"][120] = {} -defs["structs"]["ImGuiContext"][120]["name"] = "NavMoveForwardToNextFrame" +defs["structs"]["ImGuiContext"][120]["name"] = "NavInitRequestFromMove" defs["structs"]["ImGuiContext"][120]["type"] = "bool" defs["structs"]["ImGuiContext"][121] = {} -defs["structs"]["ImGuiContext"][121]["name"] = "NavMoveFlags" -defs["structs"]["ImGuiContext"][121]["type"] = "ImGuiNavMoveFlags" +defs["structs"]["ImGuiContext"][121]["name"] = "NavInitResult" +defs["structs"]["ImGuiContext"][121]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][122] = {} -defs["structs"]["ImGuiContext"][122]["name"] = "NavMoveScrollFlags" -defs["structs"]["ImGuiContext"][122]["type"] = "ImGuiScrollFlags" +defs["structs"]["ImGuiContext"][122]["name"] = "NavMoveSubmitted" +defs["structs"]["ImGuiContext"][122]["type"] = "bool" defs["structs"]["ImGuiContext"][123] = {} -defs["structs"]["ImGuiContext"][123]["name"] = "NavMoveKeyMods" -defs["structs"]["ImGuiContext"][123]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][123]["name"] = "NavMoveScoringItems" +defs["structs"]["ImGuiContext"][123]["type"] = "bool" defs["structs"]["ImGuiContext"][124] = {} -defs["structs"]["ImGuiContext"][124]["name"] = "NavMoveDir" -defs["structs"]["ImGuiContext"][124]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][124]["name"] = "NavMoveForwardToNextFrame" +defs["structs"]["ImGuiContext"][124]["type"] = "bool" defs["structs"]["ImGuiContext"][125] = {} -defs["structs"]["ImGuiContext"][125]["name"] = "NavMoveDirForDebug" -defs["structs"]["ImGuiContext"][125]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][125]["name"] = "NavMoveFlags" +defs["structs"]["ImGuiContext"][125]["type"] = "ImGuiNavMoveFlags" defs["structs"]["ImGuiContext"][126] = {} -defs["structs"]["ImGuiContext"][126]["name"] = "NavMoveClipDir" -defs["structs"]["ImGuiContext"][126]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][126]["name"] = "NavMoveScrollFlags" +defs["structs"]["ImGuiContext"][126]["type"] = "ImGuiScrollFlags" defs["structs"]["ImGuiContext"][127] = {} -defs["structs"]["ImGuiContext"][127]["name"] = "NavScoringRect" -defs["structs"]["ImGuiContext"][127]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][127]["name"] = "NavMoveKeyMods" +defs["structs"]["ImGuiContext"][127]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][128] = {} -defs["structs"]["ImGuiContext"][128]["name"] = "NavScoringNoClipRect" -defs["structs"]["ImGuiContext"][128]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][128]["name"] = "NavMoveDir" +defs["structs"]["ImGuiContext"][128]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][129] = {} -defs["structs"]["ImGuiContext"][129]["name"] = "NavScoringDebugCount" -defs["structs"]["ImGuiContext"][129]["type"] = "int" +defs["structs"]["ImGuiContext"][129]["name"] = "NavMoveDirForDebug" +defs["structs"]["ImGuiContext"][129]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][130] = {} -defs["structs"]["ImGuiContext"][130]["name"] = "NavTabbingDir" -defs["structs"]["ImGuiContext"][130]["type"] = "int" +defs["structs"]["ImGuiContext"][130]["name"] = "NavMoveClipDir" +defs["structs"]["ImGuiContext"][130]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][131] = {} -defs["structs"]["ImGuiContext"][131]["name"] = "NavTabbingCounter" -defs["structs"]["ImGuiContext"][131]["type"] = "int" +defs["structs"]["ImGuiContext"][131]["name"] = "NavScoringRect" +defs["structs"]["ImGuiContext"][131]["type"] = "ImRect" defs["structs"]["ImGuiContext"][132] = {} -defs["structs"]["ImGuiContext"][132]["name"] = "NavMoveResultLocal" -defs["structs"]["ImGuiContext"][132]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][132]["name"] = "NavScoringNoClipRect" +defs["structs"]["ImGuiContext"][132]["type"] = "ImRect" defs["structs"]["ImGuiContext"][133] = {} -defs["structs"]["ImGuiContext"][133]["name"] = "NavMoveResultLocalVisible" -defs["structs"]["ImGuiContext"][133]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][133]["name"] = "NavScoringDebugCount" +defs["structs"]["ImGuiContext"][133]["type"] = "int" defs["structs"]["ImGuiContext"][134] = {} -defs["structs"]["ImGuiContext"][134]["name"] = "NavMoveResultOther" -defs["structs"]["ImGuiContext"][134]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][134]["name"] = "NavTabbingDir" +defs["structs"]["ImGuiContext"][134]["type"] = "int" defs["structs"]["ImGuiContext"][135] = {} -defs["structs"]["ImGuiContext"][135]["name"] = "NavTabbingResultFirst" -defs["structs"]["ImGuiContext"][135]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][135]["name"] = "NavTabbingCounter" +defs["structs"]["ImGuiContext"][135]["type"] = "int" defs["structs"]["ImGuiContext"][136] = {} -defs["structs"]["ImGuiContext"][136]["name"] = "ConfigNavWindowingKeyNext" -defs["structs"]["ImGuiContext"][136]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][136]["name"] = "NavMoveResultLocal" +defs["structs"]["ImGuiContext"][136]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][137] = {} -defs["structs"]["ImGuiContext"][137]["name"] = "ConfigNavWindowingKeyPrev" -defs["structs"]["ImGuiContext"][137]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][137]["name"] = "NavMoveResultLocalVisible" +defs["structs"]["ImGuiContext"][137]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][138] = {} -defs["structs"]["ImGuiContext"][138]["name"] = "NavWindowingTarget" -defs["structs"]["ImGuiContext"][138]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][138]["name"] = "NavMoveResultOther" +defs["structs"]["ImGuiContext"][138]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][139] = {} -defs["structs"]["ImGuiContext"][139]["name"] = "NavWindowingTargetAnim" -defs["structs"]["ImGuiContext"][139]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][139]["name"] = "NavTabbingResultFirst" +defs["structs"]["ImGuiContext"][139]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][140] = {} -defs["structs"]["ImGuiContext"][140]["name"] = "NavWindowingListWindow" -defs["structs"]["ImGuiContext"][140]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][140]["name"] = "ConfigNavWindowingKeyNext" +defs["structs"]["ImGuiContext"][140]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][141] = {} -defs["structs"]["ImGuiContext"][141]["name"] = "NavWindowingTimer" -defs["structs"]["ImGuiContext"][141]["type"] = "float" +defs["structs"]["ImGuiContext"][141]["name"] = "ConfigNavWindowingKeyPrev" +defs["structs"]["ImGuiContext"][141]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][142] = {} -defs["structs"]["ImGuiContext"][142]["name"] = "NavWindowingHighlightAlpha" -defs["structs"]["ImGuiContext"][142]["type"] = "float" +defs["structs"]["ImGuiContext"][142]["name"] = "NavWindowingTarget" +defs["structs"]["ImGuiContext"][142]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][143] = {} -defs["structs"]["ImGuiContext"][143]["name"] = "NavWindowingToggleLayer" -defs["structs"]["ImGuiContext"][143]["type"] = "bool" +defs["structs"]["ImGuiContext"][143]["name"] = "NavWindowingTargetAnim" +defs["structs"]["ImGuiContext"][143]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][144] = {} -defs["structs"]["ImGuiContext"][144]["name"] = "NavWindowingAccumDeltaPos" -defs["structs"]["ImGuiContext"][144]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][144]["name"] = "NavWindowingListWindow" +defs["structs"]["ImGuiContext"][144]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][145] = {} -defs["structs"]["ImGuiContext"][145]["name"] = "NavWindowingAccumDeltaSize" -defs["structs"]["ImGuiContext"][145]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][145]["name"] = "NavWindowingTimer" +defs["structs"]["ImGuiContext"][145]["type"] = "float" defs["structs"]["ImGuiContext"][146] = {} -defs["structs"]["ImGuiContext"][146]["name"] = "DimBgRatio" +defs["structs"]["ImGuiContext"][146]["name"] = "NavWindowingHighlightAlpha" defs["structs"]["ImGuiContext"][146]["type"] = "float" defs["structs"]["ImGuiContext"][147] = {} -defs["structs"]["ImGuiContext"][147]["name"] = "DragDropActive" +defs["structs"]["ImGuiContext"][147]["name"] = "NavWindowingToggleLayer" defs["structs"]["ImGuiContext"][147]["type"] = "bool" defs["structs"]["ImGuiContext"][148] = {} -defs["structs"]["ImGuiContext"][148]["name"] = "DragDropWithinSource" -defs["structs"]["ImGuiContext"][148]["type"] = "bool" +defs["structs"]["ImGuiContext"][148]["name"] = "NavWindowingToggleKey" +defs["structs"]["ImGuiContext"][148]["type"] = "ImGuiKey" defs["structs"]["ImGuiContext"][149] = {} -defs["structs"]["ImGuiContext"][149]["name"] = "DragDropWithinTarget" -defs["structs"]["ImGuiContext"][149]["type"] = "bool" +defs["structs"]["ImGuiContext"][149]["name"] = "NavWindowingAccumDeltaPos" +defs["structs"]["ImGuiContext"][149]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][150] = {} -defs["structs"]["ImGuiContext"][150]["name"] = "DragDropSourceFlags" -defs["structs"]["ImGuiContext"][150]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][150]["name"] = "NavWindowingAccumDeltaSize" +defs["structs"]["ImGuiContext"][150]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][151] = {} -defs["structs"]["ImGuiContext"][151]["name"] = "DragDropSourceFrameCount" -defs["structs"]["ImGuiContext"][151]["type"] = "int" +defs["structs"]["ImGuiContext"][151]["name"] = "DimBgRatio" +defs["structs"]["ImGuiContext"][151]["type"] = "float" defs["structs"]["ImGuiContext"][152] = {} -defs["structs"]["ImGuiContext"][152]["name"] = "DragDropMouseButton" -defs["structs"]["ImGuiContext"][152]["type"] = "int" +defs["structs"]["ImGuiContext"][152]["name"] = "DragDropActive" +defs["structs"]["ImGuiContext"][152]["type"] = "bool" defs["structs"]["ImGuiContext"][153] = {} -defs["structs"]["ImGuiContext"][153]["name"] = "DragDropPayload" -defs["structs"]["ImGuiContext"][153]["type"] = "ImGuiPayload" +defs["structs"]["ImGuiContext"][153]["name"] = "DragDropWithinSource" +defs["structs"]["ImGuiContext"][153]["type"] = "bool" defs["structs"]["ImGuiContext"][154] = {} -defs["structs"]["ImGuiContext"][154]["name"] = "DragDropTargetRect" -defs["structs"]["ImGuiContext"][154]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][154]["name"] = "DragDropWithinTarget" +defs["structs"]["ImGuiContext"][154]["type"] = "bool" defs["structs"]["ImGuiContext"][155] = {} -defs["structs"]["ImGuiContext"][155]["name"] = "DragDropTargetClipRect" -defs["structs"]["ImGuiContext"][155]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][155]["name"] = "DragDropSourceFlags" +defs["structs"]["ImGuiContext"][155]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][156] = {} -defs["structs"]["ImGuiContext"][156]["name"] = "DragDropTargetId" -defs["structs"]["ImGuiContext"][156]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][156]["name"] = "DragDropSourceFrameCount" +defs["structs"]["ImGuiContext"][156]["type"] = "int" defs["structs"]["ImGuiContext"][157] = {} -defs["structs"]["ImGuiContext"][157]["name"] = "DragDropAcceptFlags" -defs["structs"]["ImGuiContext"][157]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][157]["name"] = "DragDropMouseButton" +defs["structs"]["ImGuiContext"][157]["type"] = "int" defs["structs"]["ImGuiContext"][158] = {} -defs["structs"]["ImGuiContext"][158]["name"] = "DragDropAcceptIdCurrRectSurface" -defs["structs"]["ImGuiContext"][158]["type"] = "float" +defs["structs"]["ImGuiContext"][158]["name"] = "DragDropPayload" +defs["structs"]["ImGuiContext"][158]["type"] = "ImGuiPayload" defs["structs"]["ImGuiContext"][159] = {} -defs["structs"]["ImGuiContext"][159]["name"] = "DragDropAcceptIdCurr" -defs["structs"]["ImGuiContext"][159]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][159]["name"] = "DragDropTargetRect" +defs["structs"]["ImGuiContext"][159]["type"] = "ImRect" defs["structs"]["ImGuiContext"][160] = {} -defs["structs"]["ImGuiContext"][160]["name"] = "DragDropAcceptIdPrev" -defs["structs"]["ImGuiContext"][160]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][160]["name"] = "DragDropTargetClipRect" +defs["structs"]["ImGuiContext"][160]["type"] = "ImRect" defs["structs"]["ImGuiContext"][161] = {} -defs["structs"]["ImGuiContext"][161]["name"] = "DragDropAcceptFrameCount" -defs["structs"]["ImGuiContext"][161]["type"] = "int" +defs["structs"]["ImGuiContext"][161]["name"] = "DragDropTargetId" +defs["structs"]["ImGuiContext"][161]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][162] = {} -defs["structs"]["ImGuiContext"][162]["name"] = "DragDropHoldJustPressedId" -defs["structs"]["ImGuiContext"][162]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][162]["name"] = "DragDropAcceptFlags" +defs["structs"]["ImGuiContext"][162]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][163] = {} -defs["structs"]["ImGuiContext"][163]["name"] = "DragDropPayloadBufHeap" -defs["structs"]["ImGuiContext"][163]["template_type"] = "unsigned char" -defs["structs"]["ImGuiContext"][163]["type"] = "ImVector_unsigned_char" +defs["structs"]["ImGuiContext"][163]["name"] = "DragDropAcceptIdCurrRectSurface" +defs["structs"]["ImGuiContext"][163]["type"] = "float" defs["structs"]["ImGuiContext"][164] = {} -defs["structs"]["ImGuiContext"][164]["name"] = "DragDropPayloadBufLocal[16]" -defs["structs"]["ImGuiContext"][164]["size"] = 16 -defs["structs"]["ImGuiContext"][164]["type"] = "unsigned char" +defs["structs"]["ImGuiContext"][164]["name"] = "DragDropAcceptIdCurr" +defs["structs"]["ImGuiContext"][164]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][165] = {} -defs["structs"]["ImGuiContext"][165]["name"] = "ClipperTempDataStacked" -defs["structs"]["ImGuiContext"][165]["type"] = "int" +defs["structs"]["ImGuiContext"][165]["name"] = "DragDropAcceptIdPrev" +defs["structs"]["ImGuiContext"][165]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][166] = {} -defs["structs"]["ImGuiContext"][166]["name"] = "ClipperTempData" -defs["structs"]["ImGuiContext"][166]["template_type"] = "ImGuiListClipperData" -defs["structs"]["ImGuiContext"][166]["type"] = "ImVector_ImGuiListClipperData" +defs["structs"]["ImGuiContext"][166]["name"] = "DragDropAcceptFrameCount" +defs["structs"]["ImGuiContext"][166]["type"] = "int" defs["structs"]["ImGuiContext"][167] = {} -defs["structs"]["ImGuiContext"][167]["name"] = "CurrentTable" -defs["structs"]["ImGuiContext"][167]["type"] = "ImGuiTable*" +defs["structs"]["ImGuiContext"][167]["name"] = "DragDropHoldJustPressedId" +defs["structs"]["ImGuiContext"][167]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][168] = {} -defs["structs"]["ImGuiContext"][168]["name"] = "DebugBreakInTable" -defs["structs"]["ImGuiContext"][168]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][168]["name"] = "DragDropPayloadBufHeap" +defs["structs"]["ImGuiContext"][168]["template_type"] = "unsigned char" +defs["structs"]["ImGuiContext"][168]["type"] = "ImVector_unsigned_char" defs["structs"]["ImGuiContext"][169] = {} -defs["structs"]["ImGuiContext"][169]["name"] = "TablesTempDataStacked" -defs["structs"]["ImGuiContext"][169]["type"] = "int" +defs["structs"]["ImGuiContext"][169]["name"] = "DragDropPayloadBufLocal[16]" +defs["structs"]["ImGuiContext"][169]["size"] = 16 +defs["structs"]["ImGuiContext"][169]["type"] = "unsigned char" defs["structs"]["ImGuiContext"][170] = {} -defs["structs"]["ImGuiContext"][170]["name"] = "TablesTempData" -defs["structs"]["ImGuiContext"][170]["template_type"] = "ImGuiTableTempData" -defs["structs"]["ImGuiContext"][170]["type"] = "ImVector_ImGuiTableTempData" +defs["structs"]["ImGuiContext"][170]["name"] = "ClipperTempDataStacked" +defs["structs"]["ImGuiContext"][170]["type"] = "int" defs["structs"]["ImGuiContext"][171] = {} -defs["structs"]["ImGuiContext"][171]["name"] = "Tables" -defs["structs"]["ImGuiContext"][171]["template_type"] = "ImGuiTable" -defs["structs"]["ImGuiContext"][171]["type"] = "ImPool_ImGuiTable" +defs["structs"]["ImGuiContext"][171]["name"] = "ClipperTempData" +defs["structs"]["ImGuiContext"][171]["template_type"] = "ImGuiListClipperData" +defs["structs"]["ImGuiContext"][171]["type"] = "ImVector_ImGuiListClipperData" defs["structs"]["ImGuiContext"][172] = {} -defs["structs"]["ImGuiContext"][172]["name"] = "TablesLastTimeActive" -defs["structs"]["ImGuiContext"][172]["template_type"] = "float" -defs["structs"]["ImGuiContext"][172]["type"] = "ImVector_float" +defs["structs"]["ImGuiContext"][172]["name"] = "CurrentTable" +defs["structs"]["ImGuiContext"][172]["type"] = "ImGuiTable*" defs["structs"]["ImGuiContext"][173] = {} -defs["structs"]["ImGuiContext"][173]["name"] = "DrawChannelsTempMergeBuffer" -defs["structs"]["ImGuiContext"][173]["template_type"] = "ImDrawChannel" -defs["structs"]["ImGuiContext"][173]["type"] = "ImVector_ImDrawChannel" +defs["structs"]["ImGuiContext"][173]["name"] = "DebugBreakInTable" +defs["structs"]["ImGuiContext"][173]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][174] = {} -defs["structs"]["ImGuiContext"][174]["name"] = "CurrentTabBar" -defs["structs"]["ImGuiContext"][174]["type"] = "ImGuiTabBar*" +defs["structs"]["ImGuiContext"][174]["name"] = "TablesTempDataStacked" +defs["structs"]["ImGuiContext"][174]["type"] = "int" defs["structs"]["ImGuiContext"][175] = {} -defs["structs"]["ImGuiContext"][175]["name"] = "TabBars" -defs["structs"]["ImGuiContext"][175]["template_type"] = "ImGuiTabBar" -defs["structs"]["ImGuiContext"][175]["type"] = "ImPool_ImGuiTabBar" +defs["structs"]["ImGuiContext"][175]["name"] = "TablesTempData" +defs["structs"]["ImGuiContext"][175]["template_type"] = "ImGuiTableTempData" +defs["structs"]["ImGuiContext"][175]["type"] = "ImVector_ImGuiTableTempData" defs["structs"]["ImGuiContext"][176] = {} -defs["structs"]["ImGuiContext"][176]["name"] = "CurrentTabBarStack" -defs["structs"]["ImGuiContext"][176]["template_type"] = "ImGuiPtrOrIndex" -defs["structs"]["ImGuiContext"][176]["type"] = "ImVector_ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][176]["name"] = "Tables" +defs["structs"]["ImGuiContext"][176]["template_type"] = "ImGuiTable" +defs["structs"]["ImGuiContext"][176]["type"] = "ImPool_ImGuiTable" defs["structs"]["ImGuiContext"][177] = {} -defs["structs"]["ImGuiContext"][177]["name"] = "ShrinkWidthBuffer" -defs["structs"]["ImGuiContext"][177]["template_type"] = "ImGuiShrinkWidthItem" -defs["structs"]["ImGuiContext"][177]["type"] = "ImVector_ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][177]["name"] = "TablesLastTimeActive" +defs["structs"]["ImGuiContext"][177]["template_type"] = "float" +defs["structs"]["ImGuiContext"][177]["type"] = "ImVector_float" defs["structs"]["ImGuiContext"][178] = {} -defs["structs"]["ImGuiContext"][178]["name"] = "HoverItemDelayId" -defs["structs"]["ImGuiContext"][178]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][178]["name"] = "DrawChannelsTempMergeBuffer" +defs["structs"]["ImGuiContext"][178]["template_type"] = "ImDrawChannel" +defs["structs"]["ImGuiContext"][178]["type"] = "ImVector_ImDrawChannel" defs["structs"]["ImGuiContext"][179] = {} -defs["structs"]["ImGuiContext"][179]["name"] = "HoverItemDelayIdPreviousFrame" -defs["structs"]["ImGuiContext"][179]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][179]["name"] = "CurrentTabBar" +defs["structs"]["ImGuiContext"][179]["type"] = "ImGuiTabBar*" defs["structs"]["ImGuiContext"][180] = {} -defs["structs"]["ImGuiContext"][180]["name"] = "HoverItemDelayTimer" -defs["structs"]["ImGuiContext"][180]["type"] = "float" +defs["structs"]["ImGuiContext"][180]["name"] = "TabBars" +defs["structs"]["ImGuiContext"][180]["template_type"] = "ImGuiTabBar" +defs["structs"]["ImGuiContext"][180]["type"] = "ImPool_ImGuiTabBar" defs["structs"]["ImGuiContext"][181] = {} -defs["structs"]["ImGuiContext"][181]["name"] = "HoverItemDelayClearTimer" -defs["structs"]["ImGuiContext"][181]["type"] = "float" +defs["structs"]["ImGuiContext"][181]["name"] = "CurrentTabBarStack" +defs["structs"]["ImGuiContext"][181]["template_type"] = "ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][181]["type"] = "ImVector_ImGuiPtrOrIndex" defs["structs"]["ImGuiContext"][182] = {} -defs["structs"]["ImGuiContext"][182]["name"] = "HoverItemUnlockedStationaryId" -defs["structs"]["ImGuiContext"][182]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][182]["name"] = "ShrinkWidthBuffer" +defs["structs"]["ImGuiContext"][182]["template_type"] = "ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][182]["type"] = "ImVector_ImGuiShrinkWidthItem" defs["structs"]["ImGuiContext"][183] = {} -defs["structs"]["ImGuiContext"][183]["name"] = "HoverWindowUnlockedStationaryId" +defs["structs"]["ImGuiContext"][183]["name"] = "HoverItemDelayId" defs["structs"]["ImGuiContext"][183]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][184] = {} -defs["structs"]["ImGuiContext"][184]["name"] = "MouseCursor" -defs["structs"]["ImGuiContext"][184]["type"] = "ImGuiMouseCursor" +defs["structs"]["ImGuiContext"][184]["name"] = "HoverItemDelayIdPreviousFrame" +defs["structs"]["ImGuiContext"][184]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][185] = {} -defs["structs"]["ImGuiContext"][185]["name"] = "MouseStationaryTimer" +defs["structs"]["ImGuiContext"][185]["name"] = "HoverItemDelayTimer" defs["structs"]["ImGuiContext"][185]["type"] = "float" defs["structs"]["ImGuiContext"][186] = {} -defs["structs"]["ImGuiContext"][186]["name"] = "MouseLastValidPos" -defs["structs"]["ImGuiContext"][186]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][186]["name"] = "HoverItemDelayClearTimer" +defs["structs"]["ImGuiContext"][186]["type"] = "float" defs["structs"]["ImGuiContext"][187] = {} -defs["structs"]["ImGuiContext"][187]["name"] = "InputTextState" -defs["structs"]["ImGuiContext"][187]["type"] = "ImGuiInputTextState" +defs["structs"]["ImGuiContext"][187]["name"] = "HoverItemUnlockedStationaryId" +defs["structs"]["ImGuiContext"][187]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][188] = {} -defs["structs"]["ImGuiContext"][188]["name"] = "InputTextDeactivatedState" -defs["structs"]["ImGuiContext"][188]["type"] = "ImGuiInputTextDeactivatedState" +defs["structs"]["ImGuiContext"][188]["name"] = "HoverWindowUnlockedStationaryId" +defs["structs"]["ImGuiContext"][188]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][189] = {} -defs["structs"]["ImGuiContext"][189]["name"] = "InputTextPasswordFont" -defs["structs"]["ImGuiContext"][189]["type"] = "ImFont" +defs["structs"]["ImGuiContext"][189]["name"] = "MouseCursor" +defs["structs"]["ImGuiContext"][189]["type"] = "ImGuiMouseCursor" defs["structs"]["ImGuiContext"][190] = {} -defs["structs"]["ImGuiContext"][190]["name"] = "TempInputId" -defs["structs"]["ImGuiContext"][190]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][190]["name"] = "MouseStationaryTimer" +defs["structs"]["ImGuiContext"][190]["type"] = "float" defs["structs"]["ImGuiContext"][191] = {} -defs["structs"]["ImGuiContext"][191]["name"] = "ColorEditOptions" -defs["structs"]["ImGuiContext"][191]["type"] = "ImGuiColorEditFlags" +defs["structs"]["ImGuiContext"][191]["name"] = "MouseLastValidPos" +defs["structs"]["ImGuiContext"][191]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][192] = {} -defs["structs"]["ImGuiContext"][192]["name"] = "ColorEditCurrentID" -defs["structs"]["ImGuiContext"][192]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][192]["name"] = "InputTextState" +defs["structs"]["ImGuiContext"][192]["type"] = "ImGuiInputTextState" defs["structs"]["ImGuiContext"][193] = {} -defs["structs"]["ImGuiContext"][193]["name"] = "ColorEditSavedID" -defs["structs"]["ImGuiContext"][193]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][193]["name"] = "InputTextDeactivatedState" +defs["structs"]["ImGuiContext"][193]["type"] = "ImGuiInputTextDeactivatedState" defs["structs"]["ImGuiContext"][194] = {} -defs["structs"]["ImGuiContext"][194]["name"] = "ColorEditSavedHue" -defs["structs"]["ImGuiContext"][194]["type"] = "float" +defs["structs"]["ImGuiContext"][194]["name"] = "InputTextPasswordFont" +defs["structs"]["ImGuiContext"][194]["type"] = "ImFont" defs["structs"]["ImGuiContext"][195] = {} -defs["structs"]["ImGuiContext"][195]["name"] = "ColorEditSavedSat" -defs["structs"]["ImGuiContext"][195]["type"] = "float" +defs["structs"]["ImGuiContext"][195]["name"] = "TempInputId" +defs["structs"]["ImGuiContext"][195]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][196] = {} -defs["structs"]["ImGuiContext"][196]["name"] = "ColorEditSavedColor" -defs["structs"]["ImGuiContext"][196]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][196]["name"] = "BeginMenuDepth" +defs["structs"]["ImGuiContext"][196]["type"] = "int" defs["structs"]["ImGuiContext"][197] = {} -defs["structs"]["ImGuiContext"][197]["name"] = "ColorPickerRef" -defs["structs"]["ImGuiContext"][197]["type"] = "ImVec4" +defs["structs"]["ImGuiContext"][197]["name"] = "BeginComboDepth" +defs["structs"]["ImGuiContext"][197]["type"] = "int" defs["structs"]["ImGuiContext"][198] = {} -defs["structs"]["ImGuiContext"][198]["name"] = "ComboPreviewData" -defs["structs"]["ImGuiContext"][198]["type"] = "ImGuiComboPreviewData" +defs["structs"]["ImGuiContext"][198]["name"] = "ColorEditOptions" +defs["structs"]["ImGuiContext"][198]["type"] = "ImGuiColorEditFlags" defs["structs"]["ImGuiContext"][199] = {} -defs["structs"]["ImGuiContext"][199]["name"] = "WindowResizeBorderExpectedRect" -defs["structs"]["ImGuiContext"][199]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][199]["name"] = "ColorEditCurrentID" +defs["structs"]["ImGuiContext"][199]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][200] = {} -defs["structs"]["ImGuiContext"][200]["name"] = "WindowResizeRelativeMode" -defs["structs"]["ImGuiContext"][200]["type"] = "bool" +defs["structs"]["ImGuiContext"][200]["name"] = "ColorEditSavedID" +defs["structs"]["ImGuiContext"][200]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][201] = {} -defs["structs"]["ImGuiContext"][201]["name"] = "SliderGrabClickOffset" +defs["structs"]["ImGuiContext"][201]["name"] = "ColorEditSavedHue" defs["structs"]["ImGuiContext"][201]["type"] = "float" defs["structs"]["ImGuiContext"][202] = {} -defs["structs"]["ImGuiContext"][202]["name"] = "SliderCurrentAccum" +defs["structs"]["ImGuiContext"][202]["name"] = "ColorEditSavedSat" defs["structs"]["ImGuiContext"][202]["type"] = "float" defs["structs"]["ImGuiContext"][203] = {} -defs["structs"]["ImGuiContext"][203]["name"] = "SliderCurrentAccumDirty" -defs["structs"]["ImGuiContext"][203]["type"] = "bool" +defs["structs"]["ImGuiContext"][203]["name"] = "ColorEditSavedColor" +defs["structs"]["ImGuiContext"][203]["type"] = "ImU32" defs["structs"]["ImGuiContext"][204] = {} -defs["structs"]["ImGuiContext"][204]["name"] = "DragCurrentAccumDirty" -defs["structs"]["ImGuiContext"][204]["type"] = "bool" +defs["structs"]["ImGuiContext"][204]["name"] = "ColorPickerRef" +defs["structs"]["ImGuiContext"][204]["type"] = "ImVec4" defs["structs"]["ImGuiContext"][205] = {} -defs["structs"]["ImGuiContext"][205]["name"] = "DragCurrentAccum" -defs["structs"]["ImGuiContext"][205]["type"] = "float" +defs["structs"]["ImGuiContext"][205]["name"] = "ComboPreviewData" +defs["structs"]["ImGuiContext"][205]["type"] = "ImGuiComboPreviewData" defs["structs"]["ImGuiContext"][206] = {} -defs["structs"]["ImGuiContext"][206]["name"] = "DragSpeedDefaultRatio" -defs["structs"]["ImGuiContext"][206]["type"] = "float" +defs["structs"]["ImGuiContext"][206]["name"] = "WindowResizeBorderExpectedRect" +defs["structs"]["ImGuiContext"][206]["type"] = "ImRect" defs["structs"]["ImGuiContext"][207] = {} -defs["structs"]["ImGuiContext"][207]["name"] = "ScrollbarClickDeltaToGrabCenter" -defs["structs"]["ImGuiContext"][207]["type"] = "float" +defs["structs"]["ImGuiContext"][207]["name"] = "WindowResizeRelativeMode" +defs["structs"]["ImGuiContext"][207]["type"] = "bool" defs["structs"]["ImGuiContext"][208] = {} -defs["structs"]["ImGuiContext"][208]["name"] = "DisabledAlphaBackup" +defs["structs"]["ImGuiContext"][208]["name"] = "SliderGrabClickOffset" defs["structs"]["ImGuiContext"][208]["type"] = "float" defs["structs"]["ImGuiContext"][209] = {} -defs["structs"]["ImGuiContext"][209]["name"] = "DisabledStackSize" -defs["structs"]["ImGuiContext"][209]["type"] = "short" +defs["structs"]["ImGuiContext"][209]["name"] = "SliderCurrentAccum" +defs["structs"]["ImGuiContext"][209]["type"] = "float" defs["structs"]["ImGuiContext"][210] = {} -defs["structs"]["ImGuiContext"][210]["name"] = "LockMarkEdited" -defs["structs"]["ImGuiContext"][210]["type"] = "short" +defs["structs"]["ImGuiContext"][210]["name"] = "SliderCurrentAccumDirty" +defs["structs"]["ImGuiContext"][210]["type"] = "bool" defs["structs"]["ImGuiContext"][211] = {} -defs["structs"]["ImGuiContext"][211]["name"] = "TooltipOverrideCount" -defs["structs"]["ImGuiContext"][211]["type"] = "short" +defs["structs"]["ImGuiContext"][211]["name"] = "DragCurrentAccumDirty" +defs["structs"]["ImGuiContext"][211]["type"] = "bool" defs["structs"]["ImGuiContext"][212] = {} -defs["structs"]["ImGuiContext"][212]["name"] = "ClipboardHandlerData" -defs["structs"]["ImGuiContext"][212]["template_type"] = "char" -defs["structs"]["ImGuiContext"][212]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][212]["name"] = "DragCurrentAccum" +defs["structs"]["ImGuiContext"][212]["type"] = "float" defs["structs"]["ImGuiContext"][213] = {} -defs["structs"]["ImGuiContext"][213]["name"] = "MenusIdSubmittedThisFrame" -defs["structs"]["ImGuiContext"][213]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiContext"][213]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][213]["name"] = "DragSpeedDefaultRatio" +defs["structs"]["ImGuiContext"][213]["type"] = "float" defs["structs"]["ImGuiContext"][214] = {} -defs["structs"]["ImGuiContext"][214]["name"] = "TypingSelectState" -defs["structs"]["ImGuiContext"][214]["type"] = "ImGuiTypingSelectState" +defs["structs"]["ImGuiContext"][214]["name"] = "ScrollbarClickDeltaToGrabCenter" +defs["structs"]["ImGuiContext"][214]["type"] = "float" defs["structs"]["ImGuiContext"][215] = {} -defs["structs"]["ImGuiContext"][215]["name"] = "PlatformImeData" -defs["structs"]["ImGuiContext"][215]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][215]["name"] = "DisabledAlphaBackup" +defs["structs"]["ImGuiContext"][215]["type"] = "float" defs["structs"]["ImGuiContext"][216] = {} -defs["structs"]["ImGuiContext"][216]["name"] = "PlatformImeDataPrev" -defs["structs"]["ImGuiContext"][216]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][216]["name"] = "DisabledStackSize" +defs["structs"]["ImGuiContext"][216]["type"] = "short" defs["structs"]["ImGuiContext"][217] = {} -defs["structs"]["ImGuiContext"][217]["name"] = "SettingsLoaded" -defs["structs"]["ImGuiContext"][217]["type"] = "bool" +defs["structs"]["ImGuiContext"][217]["name"] = "LockMarkEdited" +defs["structs"]["ImGuiContext"][217]["type"] = "short" defs["structs"]["ImGuiContext"][218] = {} -defs["structs"]["ImGuiContext"][218]["name"] = "SettingsDirtyTimer" -defs["structs"]["ImGuiContext"][218]["type"] = "float" +defs["structs"]["ImGuiContext"][218]["name"] = "TooltipOverrideCount" +defs["structs"]["ImGuiContext"][218]["type"] = "short" defs["structs"]["ImGuiContext"][219] = {} -defs["structs"]["ImGuiContext"][219]["name"] = "SettingsIniData" -defs["structs"]["ImGuiContext"][219]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][219]["name"] = "ClipboardHandlerData" +defs["structs"]["ImGuiContext"][219]["template_type"] = "char" +defs["structs"]["ImGuiContext"][219]["type"] = "ImVector_char" defs["structs"]["ImGuiContext"][220] = {} -defs["structs"]["ImGuiContext"][220]["name"] = "SettingsHandlers" -defs["structs"]["ImGuiContext"][220]["template_type"] = "ImGuiSettingsHandler" -defs["structs"]["ImGuiContext"][220]["type"] = "ImVector_ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][220]["name"] = "MenusIdSubmittedThisFrame" +defs["structs"]["ImGuiContext"][220]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][220]["type"] = "ImVector_ImGuiID" defs["structs"]["ImGuiContext"][221] = {} -defs["structs"]["ImGuiContext"][221]["name"] = "SettingsWindows" -defs["structs"]["ImGuiContext"][221]["template_type"] = "ImGuiWindowSettings" -defs["structs"]["ImGuiContext"][221]["type"] = "ImChunkStream_ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][221]["name"] = "TypingSelectState" +defs["structs"]["ImGuiContext"][221]["type"] = "ImGuiTypingSelectState" defs["structs"]["ImGuiContext"][222] = {} -defs["structs"]["ImGuiContext"][222]["name"] = "SettingsTables" -defs["structs"]["ImGuiContext"][222]["template_type"] = "ImGuiTableSettings" -defs["structs"]["ImGuiContext"][222]["type"] = "ImChunkStream_ImGuiTableSettings" +defs["structs"]["ImGuiContext"][222]["name"] = "PlatformImeData" +defs["structs"]["ImGuiContext"][222]["type"] = "ImGuiPlatformImeData" defs["structs"]["ImGuiContext"][223] = {} -defs["structs"]["ImGuiContext"][223]["name"] = "Hooks" -defs["structs"]["ImGuiContext"][223]["template_type"] = "ImGuiContextHook" -defs["structs"]["ImGuiContext"][223]["type"] = "ImVector_ImGuiContextHook" +defs["structs"]["ImGuiContext"][223]["name"] = "PlatformImeDataPrev" +defs["structs"]["ImGuiContext"][223]["type"] = "ImGuiPlatformImeData" defs["structs"]["ImGuiContext"][224] = {} -defs["structs"]["ImGuiContext"][224]["name"] = "HookIdNext" -defs["structs"]["ImGuiContext"][224]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][224]["name"] = "SettingsLoaded" +defs["structs"]["ImGuiContext"][224]["type"] = "bool" defs["structs"]["ImGuiContext"][225] = {} -defs["structs"]["ImGuiContext"][225]["name"] = "LocalizationTable[ImGuiLocKey_COUNT]" -defs["structs"]["ImGuiContext"][225]["size"] = 8 -defs["structs"]["ImGuiContext"][225]["type"] = "const char*" +defs["structs"]["ImGuiContext"][225]["name"] = "SettingsDirtyTimer" +defs["structs"]["ImGuiContext"][225]["type"] = "float" defs["structs"]["ImGuiContext"][226] = {} -defs["structs"]["ImGuiContext"][226]["name"] = "LogEnabled" -defs["structs"]["ImGuiContext"][226]["type"] = "bool" +defs["structs"]["ImGuiContext"][226]["name"] = "SettingsIniData" +defs["structs"]["ImGuiContext"][226]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiContext"][227] = {} -defs["structs"]["ImGuiContext"][227]["name"] = "LogType" -defs["structs"]["ImGuiContext"][227]["type"] = "ImGuiLogType" +defs["structs"]["ImGuiContext"][227]["name"] = "SettingsHandlers" +defs["structs"]["ImGuiContext"][227]["template_type"] = "ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][227]["type"] = "ImVector_ImGuiSettingsHandler" defs["structs"]["ImGuiContext"][228] = {} -defs["structs"]["ImGuiContext"][228]["name"] = "LogFile" -defs["structs"]["ImGuiContext"][228]["type"] = "ImFileHandle" +defs["structs"]["ImGuiContext"][228]["name"] = "SettingsWindows" +defs["structs"]["ImGuiContext"][228]["template_type"] = "ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][228]["type"] = "ImChunkStream_ImGuiWindowSettings" defs["structs"]["ImGuiContext"][229] = {} -defs["structs"]["ImGuiContext"][229]["name"] = "LogBuffer" -defs["structs"]["ImGuiContext"][229]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][229]["name"] = "SettingsTables" +defs["structs"]["ImGuiContext"][229]["template_type"] = "ImGuiTableSettings" +defs["structs"]["ImGuiContext"][229]["type"] = "ImChunkStream_ImGuiTableSettings" defs["structs"]["ImGuiContext"][230] = {} -defs["structs"]["ImGuiContext"][230]["name"] = "LogNextPrefix" -defs["structs"]["ImGuiContext"][230]["type"] = "const char*" +defs["structs"]["ImGuiContext"][230]["name"] = "Hooks" +defs["structs"]["ImGuiContext"][230]["template_type"] = "ImGuiContextHook" +defs["structs"]["ImGuiContext"][230]["type"] = "ImVector_ImGuiContextHook" defs["structs"]["ImGuiContext"][231] = {} -defs["structs"]["ImGuiContext"][231]["name"] = "LogNextSuffix" -defs["structs"]["ImGuiContext"][231]["type"] = "const char*" +defs["structs"]["ImGuiContext"][231]["name"] = "HookIdNext" +defs["structs"]["ImGuiContext"][231]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][232] = {} -defs["structs"]["ImGuiContext"][232]["name"] = "LogLinePosY" -defs["structs"]["ImGuiContext"][232]["type"] = "float" +defs["structs"]["ImGuiContext"][232]["name"] = "LocalizationTable[ImGuiLocKey_COUNT]" +defs["structs"]["ImGuiContext"][232]["size"] = 8 +defs["structs"]["ImGuiContext"][232]["type"] = "const char*" defs["structs"]["ImGuiContext"][233] = {} -defs["structs"]["ImGuiContext"][233]["name"] = "LogLineFirstItem" +defs["structs"]["ImGuiContext"][233]["name"] = "LogEnabled" defs["structs"]["ImGuiContext"][233]["type"] = "bool" defs["structs"]["ImGuiContext"][234] = {} -defs["structs"]["ImGuiContext"][234]["name"] = "LogDepthRef" -defs["structs"]["ImGuiContext"][234]["type"] = "int" +defs["structs"]["ImGuiContext"][234]["name"] = "LogType" +defs["structs"]["ImGuiContext"][234]["type"] = "ImGuiLogType" defs["structs"]["ImGuiContext"][235] = {} -defs["structs"]["ImGuiContext"][235]["name"] = "LogDepthToExpand" -defs["structs"]["ImGuiContext"][235]["type"] = "int" +defs["structs"]["ImGuiContext"][235]["name"] = "LogFile" +defs["structs"]["ImGuiContext"][235]["type"] = "ImFileHandle" defs["structs"]["ImGuiContext"][236] = {} -defs["structs"]["ImGuiContext"][236]["name"] = "LogDepthToExpandDefault" -defs["structs"]["ImGuiContext"][236]["type"] = "int" +defs["structs"]["ImGuiContext"][236]["name"] = "LogBuffer" +defs["structs"]["ImGuiContext"][236]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiContext"][237] = {} -defs["structs"]["ImGuiContext"][237]["name"] = "DebugLogFlags" -defs["structs"]["ImGuiContext"][237]["type"] = "ImGuiDebugLogFlags" +defs["structs"]["ImGuiContext"][237]["name"] = "LogNextPrefix" +defs["structs"]["ImGuiContext"][237]["type"] = "const char*" defs["structs"]["ImGuiContext"][238] = {} -defs["structs"]["ImGuiContext"][238]["name"] = "DebugLogBuf" -defs["structs"]["ImGuiContext"][238]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][238]["name"] = "LogNextSuffix" +defs["structs"]["ImGuiContext"][238]["type"] = "const char*" defs["structs"]["ImGuiContext"][239] = {} -defs["structs"]["ImGuiContext"][239]["name"] = "DebugLogIndex" -defs["structs"]["ImGuiContext"][239]["type"] = "ImGuiTextIndex" +defs["structs"]["ImGuiContext"][239]["name"] = "LogLinePosY" +defs["structs"]["ImGuiContext"][239]["type"] = "float" defs["structs"]["ImGuiContext"][240] = {} -defs["structs"]["ImGuiContext"][240]["name"] = "DebugLogAutoDisableFlags" -defs["structs"]["ImGuiContext"][240]["type"] = "ImGuiDebugLogFlags" +defs["structs"]["ImGuiContext"][240]["name"] = "LogLineFirstItem" +defs["structs"]["ImGuiContext"][240]["type"] = "bool" defs["structs"]["ImGuiContext"][241] = {} -defs["structs"]["ImGuiContext"][241]["name"] = "DebugLogAutoDisableFrames" -defs["structs"]["ImGuiContext"][241]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][241]["name"] = "LogDepthRef" +defs["structs"]["ImGuiContext"][241]["type"] = "int" defs["structs"]["ImGuiContext"][242] = {} -defs["structs"]["ImGuiContext"][242]["name"] = "DebugLocateFrames" -defs["structs"]["ImGuiContext"][242]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][242]["name"] = "LogDepthToExpand" +defs["structs"]["ImGuiContext"][242]["type"] = "int" defs["structs"]["ImGuiContext"][243] = {} -defs["structs"]["ImGuiContext"][243]["name"] = "DebugBreakInLocateId" -defs["structs"]["ImGuiContext"][243]["type"] = "bool" +defs["structs"]["ImGuiContext"][243]["name"] = "LogDepthToExpandDefault" +defs["structs"]["ImGuiContext"][243]["type"] = "int" defs["structs"]["ImGuiContext"][244] = {} -defs["structs"]["ImGuiContext"][244]["name"] = "DebugBreakKeyChord" -defs["structs"]["ImGuiContext"][244]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][244]["name"] = "DebugLogFlags" +defs["structs"]["ImGuiContext"][244]["type"] = "ImGuiDebugLogFlags" defs["structs"]["ImGuiContext"][245] = {} -defs["structs"]["ImGuiContext"][245]["name"] = "DebugBeginReturnValueCullDepth" -defs["structs"]["ImGuiContext"][245]["type"] = "ImS8" +defs["structs"]["ImGuiContext"][245]["name"] = "DebugLogBuf" +defs["structs"]["ImGuiContext"][245]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiContext"][246] = {} -defs["structs"]["ImGuiContext"][246]["name"] = "DebugItemPickerActive" -defs["structs"]["ImGuiContext"][246]["type"] = "bool" +defs["structs"]["ImGuiContext"][246]["name"] = "DebugLogIndex" +defs["structs"]["ImGuiContext"][246]["type"] = "ImGuiTextIndex" defs["structs"]["ImGuiContext"][247] = {} -defs["structs"]["ImGuiContext"][247]["name"] = "DebugItemPickerMouseButton" -defs["structs"]["ImGuiContext"][247]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][247]["name"] = "DebugLogAutoDisableFlags" +defs["structs"]["ImGuiContext"][247]["type"] = "ImGuiDebugLogFlags" defs["structs"]["ImGuiContext"][248] = {} -defs["structs"]["ImGuiContext"][248]["name"] = "DebugItemPickerBreakId" -defs["structs"]["ImGuiContext"][248]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][248]["name"] = "DebugLogAutoDisableFrames" +defs["structs"]["ImGuiContext"][248]["type"] = "ImU8" defs["structs"]["ImGuiContext"][249] = {} -defs["structs"]["ImGuiContext"][249]["name"] = "DebugFlashStyleColorTime" -defs["structs"]["ImGuiContext"][249]["type"] = "float" +defs["structs"]["ImGuiContext"][249]["name"] = "DebugLocateFrames" +defs["structs"]["ImGuiContext"][249]["type"] = "ImU8" defs["structs"]["ImGuiContext"][250] = {} -defs["structs"]["ImGuiContext"][250]["name"] = "DebugFlashStyleColorBackup" -defs["structs"]["ImGuiContext"][250]["type"] = "ImVec4" +defs["structs"]["ImGuiContext"][250]["name"] = "DebugBreakInLocateId" +defs["structs"]["ImGuiContext"][250]["type"] = "bool" defs["structs"]["ImGuiContext"][251] = {} -defs["structs"]["ImGuiContext"][251]["name"] = "DebugMetricsConfig" -defs["structs"]["ImGuiContext"][251]["type"] = "ImGuiMetricsConfig" +defs["structs"]["ImGuiContext"][251]["name"] = "DebugBreakKeyChord" +defs["structs"]["ImGuiContext"][251]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][252] = {} -defs["structs"]["ImGuiContext"][252]["name"] = "DebugIDStackTool" -defs["structs"]["ImGuiContext"][252]["type"] = "ImGuiIDStackTool" +defs["structs"]["ImGuiContext"][252]["name"] = "DebugBeginReturnValueCullDepth" +defs["structs"]["ImGuiContext"][252]["type"] = "ImS8" defs["structs"]["ImGuiContext"][253] = {} -defs["structs"]["ImGuiContext"][253]["name"] = "DebugAllocInfo" -defs["structs"]["ImGuiContext"][253]["type"] = "ImGuiDebugAllocInfo" +defs["structs"]["ImGuiContext"][253]["name"] = "DebugItemPickerActive" +defs["structs"]["ImGuiContext"][253]["type"] = "bool" defs["structs"]["ImGuiContext"][254] = {} -defs["structs"]["ImGuiContext"][254]["name"] = "FramerateSecPerFrame[60]" -defs["structs"]["ImGuiContext"][254]["size"] = 60 -defs["structs"]["ImGuiContext"][254]["type"] = "float" +defs["structs"]["ImGuiContext"][254]["name"] = "DebugItemPickerMouseButton" +defs["structs"]["ImGuiContext"][254]["type"] = "ImU8" defs["structs"]["ImGuiContext"][255] = {} -defs["structs"]["ImGuiContext"][255]["name"] = "FramerateSecPerFrameIdx" -defs["structs"]["ImGuiContext"][255]["type"] = "int" +defs["structs"]["ImGuiContext"][255]["name"] = "DebugItemPickerBreakId" +defs["structs"]["ImGuiContext"][255]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][256] = {} -defs["structs"]["ImGuiContext"][256]["name"] = "FramerateSecPerFrameCount" -defs["structs"]["ImGuiContext"][256]["type"] = "int" +defs["structs"]["ImGuiContext"][256]["name"] = "DebugFlashStyleColorTime" +defs["structs"]["ImGuiContext"][256]["type"] = "float" defs["structs"]["ImGuiContext"][257] = {} -defs["structs"]["ImGuiContext"][257]["name"] = "FramerateSecPerFrameAccum" -defs["structs"]["ImGuiContext"][257]["type"] = "float" +defs["structs"]["ImGuiContext"][257]["name"] = "DebugFlashStyleColorBackup" +defs["structs"]["ImGuiContext"][257]["type"] = "ImVec4" defs["structs"]["ImGuiContext"][258] = {} -defs["structs"]["ImGuiContext"][258]["name"] = "WantCaptureMouseNextFrame" -defs["structs"]["ImGuiContext"][258]["type"] = "int" +defs["structs"]["ImGuiContext"][258]["name"] = "DebugMetricsConfig" +defs["structs"]["ImGuiContext"][258]["type"] = "ImGuiMetricsConfig" defs["structs"]["ImGuiContext"][259] = {} -defs["structs"]["ImGuiContext"][259]["name"] = "WantCaptureKeyboardNextFrame" -defs["structs"]["ImGuiContext"][259]["type"] = "int" +defs["structs"]["ImGuiContext"][259]["name"] = "DebugIDStackTool" +defs["structs"]["ImGuiContext"][259]["type"] = "ImGuiIDStackTool" defs["structs"]["ImGuiContext"][260] = {} -defs["structs"]["ImGuiContext"][260]["name"] = "WantTextInputNextFrame" -defs["structs"]["ImGuiContext"][260]["type"] = "int" +defs["structs"]["ImGuiContext"][260]["name"] = "DebugAllocInfo" +defs["structs"]["ImGuiContext"][260]["type"] = "ImGuiDebugAllocInfo" defs["structs"]["ImGuiContext"][261] = {} -defs["structs"]["ImGuiContext"][261]["name"] = "TempBuffer" -defs["structs"]["ImGuiContext"][261]["template_type"] = "char" -defs["structs"]["ImGuiContext"][261]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][261]["name"] = "FramerateSecPerFrame[60]" +defs["structs"]["ImGuiContext"][261]["size"] = 60 +defs["structs"]["ImGuiContext"][261]["type"] = "float" +defs["structs"]["ImGuiContext"][262] = {} +defs["structs"]["ImGuiContext"][262]["name"] = "FramerateSecPerFrameIdx" +defs["structs"]["ImGuiContext"][262]["type"] = "int" +defs["structs"]["ImGuiContext"][263] = {} +defs["structs"]["ImGuiContext"][263]["name"] = "FramerateSecPerFrameCount" +defs["structs"]["ImGuiContext"][263]["type"] = "int" +defs["structs"]["ImGuiContext"][264] = {} +defs["structs"]["ImGuiContext"][264]["name"] = "FramerateSecPerFrameAccum" +defs["structs"]["ImGuiContext"][264]["type"] = "float" +defs["structs"]["ImGuiContext"][265] = {} +defs["structs"]["ImGuiContext"][265]["name"] = "WantCaptureMouseNextFrame" +defs["structs"]["ImGuiContext"][265]["type"] = "int" +defs["structs"]["ImGuiContext"][266] = {} +defs["structs"]["ImGuiContext"][266]["name"] = "WantCaptureKeyboardNextFrame" +defs["structs"]["ImGuiContext"][266]["type"] = "int" +defs["structs"]["ImGuiContext"][267] = {} +defs["structs"]["ImGuiContext"][267]["name"] = "WantTextInputNextFrame" +defs["structs"]["ImGuiContext"][267]["type"] = "int" +defs["structs"]["ImGuiContext"][268] = {} +defs["structs"]["ImGuiContext"][268]["name"] = "TempBuffer" +defs["structs"]["ImGuiContext"][268]["template_type"] = "char" +defs["structs"]["ImGuiContext"][268]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][269] = {} +defs["structs"]["ImGuiContext"][269]["name"] = "TempKeychordName[64]" +defs["structs"]["ImGuiContext"][269]["size"] = 64 +defs["structs"]["ImGuiContext"][269]["type"] = "char" defs["structs"]["ImGuiContextHook"] = {} defs["structs"]["ImGuiContextHook"][1] = {} defs["structs"]["ImGuiContextHook"][1]["name"] = "HookId" @@ -5011,6 +5047,13 @@ defs["structs"]["ImGuiDebugAllocInfo"][4] = {} defs["structs"]["ImGuiDebugAllocInfo"][4]["name"] = "LastEntriesBuf[6]" defs["structs"]["ImGuiDebugAllocInfo"][4]["size"] = 6 defs["structs"]["ImGuiDebugAllocInfo"][4]["type"] = "ImGuiDebugAllocEntry" +defs["structs"]["ImGuiFocusScopeData"] = {} +defs["structs"]["ImGuiFocusScopeData"][1] = {} +defs["structs"]["ImGuiFocusScopeData"][1]["name"] = "ID" +defs["structs"]["ImGuiFocusScopeData"][1]["type"] = "ImGuiID" +defs["structs"]["ImGuiFocusScopeData"][2] = {} +defs["structs"]["ImGuiFocusScopeData"][2]["name"] = "WindowID" +defs["structs"]["ImGuiFocusScopeData"][2]["type"] = "ImGuiID" defs["structs"]["ImGuiGroupData"] = {} defs["structs"]["ImGuiGroupData"][1] = {} defs["structs"]["ImGuiGroupData"][1]["name"] = "WindowID" @@ -5238,125 +5281,122 @@ defs["structs"]["ImGuiIO"][55] = {} defs["structs"]["ImGuiIO"][55]["name"] = "MouseDelta" defs["structs"]["ImGuiIO"][55]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][56] = {} -defs["structs"]["ImGuiIO"][56]["name"] = "_UnusedPadding" -defs["structs"]["ImGuiIO"][56]["type"] = "void*" +defs["structs"]["ImGuiIO"][56]["name"] = "Ctx" +defs["structs"]["ImGuiIO"][56]["type"] = "ImGuiContext*" defs["structs"]["ImGuiIO"][57] = {} -defs["structs"]["ImGuiIO"][57]["name"] = "Ctx" -defs["structs"]["ImGuiIO"][57]["type"] = "ImGuiContext*" +defs["structs"]["ImGuiIO"][57]["name"] = "MousePos" +defs["structs"]["ImGuiIO"][57]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][58] = {} -defs["structs"]["ImGuiIO"][58]["name"] = "MousePos" -defs["structs"]["ImGuiIO"][58]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][58]["name"] = "MouseDown[5]" +defs["structs"]["ImGuiIO"][58]["size"] = 5 +defs["structs"]["ImGuiIO"][58]["type"] = "bool" defs["structs"]["ImGuiIO"][59] = {} -defs["structs"]["ImGuiIO"][59]["name"] = "MouseDown[5]" -defs["structs"]["ImGuiIO"][59]["size"] = 5 -defs["structs"]["ImGuiIO"][59]["type"] = "bool" +defs["structs"]["ImGuiIO"][59]["name"] = "MouseWheel" +defs["structs"]["ImGuiIO"][59]["type"] = "float" defs["structs"]["ImGuiIO"][60] = {} -defs["structs"]["ImGuiIO"][60]["name"] = "MouseWheel" +defs["structs"]["ImGuiIO"][60]["name"] = "MouseWheelH" defs["structs"]["ImGuiIO"][60]["type"] = "float" defs["structs"]["ImGuiIO"][61] = {} -defs["structs"]["ImGuiIO"][61]["name"] = "MouseWheelH" -defs["structs"]["ImGuiIO"][61]["type"] = "float" +defs["structs"]["ImGuiIO"][61]["name"] = "MouseSource" +defs["structs"]["ImGuiIO"][61]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiIO"][62] = {} -defs["structs"]["ImGuiIO"][62]["name"] = "MouseSource" -defs["structs"]["ImGuiIO"][62]["type"] = "ImGuiMouseSource" +defs["structs"]["ImGuiIO"][62]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][62]["type"] = "bool" defs["structs"]["ImGuiIO"][63] = {} -defs["structs"]["ImGuiIO"][63]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][63]["name"] = "KeyShift" defs["structs"]["ImGuiIO"][63]["type"] = "bool" defs["structs"]["ImGuiIO"][64] = {} -defs["structs"]["ImGuiIO"][64]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][64]["name"] = "KeyAlt" defs["structs"]["ImGuiIO"][64]["type"] = "bool" defs["structs"]["ImGuiIO"][65] = {} -defs["structs"]["ImGuiIO"][65]["name"] = "KeyAlt" +defs["structs"]["ImGuiIO"][65]["name"] = "KeySuper" defs["structs"]["ImGuiIO"][65]["type"] = "bool" defs["structs"]["ImGuiIO"][66] = {} -defs["structs"]["ImGuiIO"][66]["name"] = "KeySuper" -defs["structs"]["ImGuiIO"][66]["type"] = "bool" +defs["structs"]["ImGuiIO"][66]["name"] = "KeyMods" +defs["structs"]["ImGuiIO"][66]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiIO"][67] = {} -defs["structs"]["ImGuiIO"][67]["name"] = "KeyMods" -defs["structs"]["ImGuiIO"][67]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiIO"][67]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" +defs["structs"]["ImGuiIO"][67]["size"] = 154 +defs["structs"]["ImGuiIO"][67]["type"] = "ImGuiKeyData" defs["structs"]["ImGuiIO"][68] = {} -defs["structs"]["ImGuiIO"][68]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" -defs["structs"]["ImGuiIO"][68]["size"] = 154 -defs["structs"]["ImGuiIO"][68]["type"] = "ImGuiKeyData" +defs["structs"]["ImGuiIO"][68]["name"] = "WantCaptureMouseUnlessPopupClose" +defs["structs"]["ImGuiIO"][68]["type"] = "bool" defs["structs"]["ImGuiIO"][69] = {} -defs["structs"]["ImGuiIO"][69]["name"] = "WantCaptureMouseUnlessPopupClose" -defs["structs"]["ImGuiIO"][69]["type"] = "bool" +defs["structs"]["ImGuiIO"][69]["name"] = "MousePosPrev" +defs["structs"]["ImGuiIO"][69]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][70] = {} -defs["structs"]["ImGuiIO"][70]["name"] = "MousePosPrev" +defs["structs"]["ImGuiIO"][70]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][70]["size"] = 5 defs["structs"]["ImGuiIO"][70]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][71] = {} -defs["structs"]["ImGuiIO"][71]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][71]["name"] = "MouseClickedTime[5]" defs["structs"]["ImGuiIO"][71]["size"] = 5 -defs["structs"]["ImGuiIO"][71]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][71]["type"] = "double" defs["structs"]["ImGuiIO"][72] = {} -defs["structs"]["ImGuiIO"][72]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][72]["name"] = "MouseClicked[5]" defs["structs"]["ImGuiIO"][72]["size"] = 5 -defs["structs"]["ImGuiIO"][72]["type"] = "double" +defs["structs"]["ImGuiIO"][72]["type"] = "bool" defs["structs"]["ImGuiIO"][73] = {} -defs["structs"]["ImGuiIO"][73]["name"] = "MouseClicked[5]" +defs["structs"]["ImGuiIO"][73]["name"] = "MouseDoubleClicked[5]" defs["structs"]["ImGuiIO"][73]["size"] = 5 defs["structs"]["ImGuiIO"][73]["type"] = "bool" defs["structs"]["ImGuiIO"][74] = {} -defs["structs"]["ImGuiIO"][74]["name"] = "MouseDoubleClicked[5]" +defs["structs"]["ImGuiIO"][74]["name"] = "MouseClickedCount[5]" defs["structs"]["ImGuiIO"][74]["size"] = 5 -defs["structs"]["ImGuiIO"][74]["type"] = "bool" +defs["structs"]["ImGuiIO"][74]["type"] = "ImU16" defs["structs"]["ImGuiIO"][75] = {} -defs["structs"]["ImGuiIO"][75]["name"] = "MouseClickedCount[5]" +defs["structs"]["ImGuiIO"][75]["name"] = "MouseClickedLastCount[5]" defs["structs"]["ImGuiIO"][75]["size"] = 5 defs["structs"]["ImGuiIO"][75]["type"] = "ImU16" defs["structs"]["ImGuiIO"][76] = {} -defs["structs"]["ImGuiIO"][76]["name"] = "MouseClickedLastCount[5]" +defs["structs"]["ImGuiIO"][76]["name"] = "MouseReleased[5]" defs["structs"]["ImGuiIO"][76]["size"] = 5 -defs["structs"]["ImGuiIO"][76]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][76]["type"] = "bool" defs["structs"]["ImGuiIO"][77] = {} -defs["structs"]["ImGuiIO"][77]["name"] = "MouseReleased[5]" +defs["structs"]["ImGuiIO"][77]["name"] = "MouseDownOwned[5]" defs["structs"]["ImGuiIO"][77]["size"] = 5 defs["structs"]["ImGuiIO"][77]["type"] = "bool" defs["structs"]["ImGuiIO"][78] = {} -defs["structs"]["ImGuiIO"][78]["name"] = "MouseDownOwned[5]" +defs["structs"]["ImGuiIO"][78]["name"] = "MouseDownOwnedUnlessPopupClose[5]" defs["structs"]["ImGuiIO"][78]["size"] = 5 defs["structs"]["ImGuiIO"][78]["type"] = "bool" defs["structs"]["ImGuiIO"][79] = {} -defs["structs"]["ImGuiIO"][79]["name"] = "MouseDownOwnedUnlessPopupClose[5]" -defs["structs"]["ImGuiIO"][79]["size"] = 5 +defs["structs"]["ImGuiIO"][79]["name"] = "MouseWheelRequestAxisSwap" defs["structs"]["ImGuiIO"][79]["type"] = "bool" defs["structs"]["ImGuiIO"][80] = {} -defs["structs"]["ImGuiIO"][80]["name"] = "MouseWheelRequestAxisSwap" -defs["structs"]["ImGuiIO"][80]["type"] = "bool" +defs["structs"]["ImGuiIO"][80]["name"] = "MouseDownDuration[5]" +defs["structs"]["ImGuiIO"][80]["size"] = 5 +defs["structs"]["ImGuiIO"][80]["type"] = "float" defs["structs"]["ImGuiIO"][81] = {} -defs["structs"]["ImGuiIO"][81]["name"] = "MouseDownDuration[5]" +defs["structs"]["ImGuiIO"][81]["name"] = "MouseDownDurationPrev[5]" defs["structs"]["ImGuiIO"][81]["size"] = 5 defs["structs"]["ImGuiIO"][81]["type"] = "float" defs["structs"]["ImGuiIO"][82] = {} -defs["structs"]["ImGuiIO"][82]["name"] = "MouseDownDurationPrev[5]" +defs["structs"]["ImGuiIO"][82]["name"] = "MouseDragMaxDistanceSqr[5]" defs["structs"]["ImGuiIO"][82]["size"] = 5 defs["structs"]["ImGuiIO"][82]["type"] = "float" defs["structs"]["ImGuiIO"][83] = {} -defs["structs"]["ImGuiIO"][83]["name"] = "MouseDragMaxDistanceSqr[5]" -defs["structs"]["ImGuiIO"][83]["size"] = 5 +defs["structs"]["ImGuiIO"][83]["name"] = "PenPressure" defs["structs"]["ImGuiIO"][83]["type"] = "float" defs["structs"]["ImGuiIO"][84] = {} -defs["structs"]["ImGuiIO"][84]["name"] = "PenPressure" -defs["structs"]["ImGuiIO"][84]["type"] = "float" +defs["structs"]["ImGuiIO"][84]["name"] = "AppFocusLost" +defs["structs"]["ImGuiIO"][84]["type"] = "bool" defs["structs"]["ImGuiIO"][85] = {} -defs["structs"]["ImGuiIO"][85]["name"] = "AppFocusLost" +defs["structs"]["ImGuiIO"][85]["name"] = "AppAcceptingEvents" defs["structs"]["ImGuiIO"][85]["type"] = "bool" defs["structs"]["ImGuiIO"][86] = {} -defs["structs"]["ImGuiIO"][86]["name"] = "AppAcceptingEvents" -defs["structs"]["ImGuiIO"][86]["type"] = "bool" +defs["structs"]["ImGuiIO"][86]["name"] = "BackendUsingLegacyKeyArrays" +defs["structs"]["ImGuiIO"][86]["type"] = "ImS8" defs["structs"]["ImGuiIO"][87] = {} -defs["structs"]["ImGuiIO"][87]["name"] = "BackendUsingLegacyKeyArrays" -defs["structs"]["ImGuiIO"][87]["type"] = "ImS8" +defs["structs"]["ImGuiIO"][87]["name"] = "BackendUsingLegacyNavInputArray" +defs["structs"]["ImGuiIO"][87]["type"] = "bool" defs["structs"]["ImGuiIO"][88] = {} -defs["structs"]["ImGuiIO"][88]["name"] = "BackendUsingLegacyNavInputArray" -defs["structs"]["ImGuiIO"][88]["type"] = "bool" +defs["structs"]["ImGuiIO"][88]["name"] = "InputQueueSurrogate" +defs["structs"]["ImGuiIO"][88]["type"] = "ImWchar16" defs["structs"]["ImGuiIO"][89] = {} -defs["structs"]["ImGuiIO"][89]["name"] = "InputQueueSurrogate" -defs["structs"]["ImGuiIO"][89]["type"] = "ImWchar16" -defs["structs"]["ImGuiIO"][90] = {} -defs["structs"]["ImGuiIO"][90]["name"] = "InputQueueCharacters" -defs["structs"]["ImGuiIO"][90]["template_type"] = "ImWchar" -defs["structs"]["ImGuiIO"][90]["type"] = "ImVector_ImWchar" +defs["structs"]["ImGuiIO"][89]["name"] = "InputQueueCharacters" +defs["structs"]["ImGuiIO"][89]["template_type"] = "ImWchar" +defs["structs"]["ImGuiIO"][89]["type"] = "ImVector_ImWchar" defs["structs"]["ImGuiInputEvent"] = {} defs["structs"]["ImGuiInputEvent"][1] = {} defs["structs"]["ImGuiInputEvent"][1]["name"] = "Type" @@ -5521,6 +5561,15 @@ defs["structs"]["ImGuiInputTextState"][15]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][16] = {} defs["structs"]["ImGuiInputTextState"][16]["name"] = "Flags" defs["structs"]["ImGuiInputTextState"][16]["type"] = "ImGuiInputTextFlags" +defs["structs"]["ImGuiInputTextState"][17] = {} +defs["structs"]["ImGuiInputTextState"][17]["name"] = "ReloadUserBuf" +defs["structs"]["ImGuiInputTextState"][17]["type"] = "bool" +defs["structs"]["ImGuiInputTextState"][18] = {} +defs["structs"]["ImGuiInputTextState"][18]["name"] = "ReloadSelectionStart" +defs["structs"]["ImGuiInputTextState"][18]["type"] = "int" +defs["structs"]["ImGuiInputTextState"][19] = {} +defs["structs"]["ImGuiInputTextState"][19]["name"] = "ReloadSelectionEnd" +defs["structs"]["ImGuiInputTextState"][19]["type"] = "int" defs["structs"]["ImGuiKeyData"] = {} defs["structs"]["ImGuiKeyData"][1] = {} defs["structs"]["ImGuiKeyData"][1]["name"] = "Down" @@ -5555,14 +5604,17 @@ defs["structs"]["ImGuiKeyRoutingData"][2] = {} defs["structs"]["ImGuiKeyRoutingData"][2]["name"] = "Mods" defs["structs"]["ImGuiKeyRoutingData"][2]["type"] = "ImU16" defs["structs"]["ImGuiKeyRoutingData"][3] = {} -defs["structs"]["ImGuiKeyRoutingData"][3]["name"] = "RoutingNextScore" +defs["structs"]["ImGuiKeyRoutingData"][3]["name"] = "RoutingCurrScore" defs["structs"]["ImGuiKeyRoutingData"][3]["type"] = "ImU8" defs["structs"]["ImGuiKeyRoutingData"][4] = {} -defs["structs"]["ImGuiKeyRoutingData"][4]["name"] = "RoutingCurr" -defs["structs"]["ImGuiKeyRoutingData"][4]["type"] = "ImGuiID" +defs["structs"]["ImGuiKeyRoutingData"][4]["name"] = "RoutingNextScore" +defs["structs"]["ImGuiKeyRoutingData"][4]["type"] = "ImU8" defs["structs"]["ImGuiKeyRoutingData"][5] = {} -defs["structs"]["ImGuiKeyRoutingData"][5]["name"] = "RoutingNext" +defs["structs"]["ImGuiKeyRoutingData"][5]["name"] = "RoutingCurr" defs["structs"]["ImGuiKeyRoutingData"][5]["type"] = "ImGuiID" +defs["structs"]["ImGuiKeyRoutingData"][6] = {} +defs["structs"]["ImGuiKeyRoutingData"][6]["name"] = "RoutingNext" +defs["structs"]["ImGuiKeyRoutingData"][6]["type"] = "ImGuiID" defs["structs"]["ImGuiKeyRoutingTable"] = {} defs["structs"]["ImGuiKeyRoutingTable"][1] = {} defs["structs"]["ImGuiKeyRoutingTable"][1]["name"] = "Index[ImGuiKey_NamedKey_COUNT]" @@ -5720,6 +5772,12 @@ defs["structs"]["ImGuiMetricsConfig"][10]["type"] = "int" defs["structs"]["ImGuiMetricsConfig"][11] = {} defs["structs"]["ImGuiMetricsConfig"][11]["name"] = "ShowTablesRectsType" defs["structs"]["ImGuiMetricsConfig"][11]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][12] = {} +defs["structs"]["ImGuiMetricsConfig"][12]["name"] = "HighlightMonitorIdx" +defs["structs"]["ImGuiMetricsConfig"][12]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][13] = {} +defs["structs"]["ImGuiMetricsConfig"][13]["name"] = "HighlightViewportID" +defs["structs"]["ImGuiMetricsConfig"][13]["type"] = "ImGuiID" defs["structs"]["ImGuiNavItemData"] = {} defs["structs"]["ImGuiNavItemData"][1] = {} defs["structs"]["ImGuiNavItemData"][1]["name"] = "Window" @@ -5766,17 +5824,21 @@ defs["structs"]["ImGuiNextItemData"][2] = {} defs["structs"]["ImGuiNextItemData"][2]["name"] = "ItemFlags" defs["structs"]["ImGuiNextItemData"][2]["type"] = "ImGuiItemFlags" defs["structs"]["ImGuiNextItemData"][3] = {} -defs["structs"]["ImGuiNextItemData"][3]["name"] = "Width" -defs["structs"]["ImGuiNextItemData"][3]["type"] = "float" +defs["structs"]["ImGuiNextItemData"][3]["name"] = "SelectionUserData" +defs["structs"]["ImGuiNextItemData"][3]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiNextItemData"][4] = {} -defs["structs"]["ImGuiNextItemData"][4]["name"] = "SelectionUserData" -defs["structs"]["ImGuiNextItemData"][4]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiNextItemData"][4]["name"] = "Width" +defs["structs"]["ImGuiNextItemData"][4]["type"] = "float" defs["structs"]["ImGuiNextItemData"][5] = {} -defs["structs"]["ImGuiNextItemData"][5]["name"] = "OpenCond" -defs["structs"]["ImGuiNextItemData"][5]["type"] = "ImGuiCond" +defs["structs"]["ImGuiNextItemData"][5]["name"] = "Shortcut" +defs["structs"]["ImGuiNextItemData"][5]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiNextItemData"][6] = {} defs["structs"]["ImGuiNextItemData"][6]["name"] = "OpenVal" defs["structs"]["ImGuiNextItemData"][6]["type"] = "bool" +defs["structs"]["ImGuiNextItemData"][7] = {} +defs["structs"]["ImGuiNextItemData"][7]["bitfield"] = "8" +defs["structs"]["ImGuiNextItemData"][7]["name"] = "OpenCond" +defs["structs"]["ImGuiNextItemData"][7]["type"] = "ImGuiCond" defs["structs"]["ImGuiNextWindowData"] = {} defs["structs"]["ImGuiNextWindowData"][1] = {} defs["structs"]["ImGuiNextWindowData"][1]["name"] = "Flags" @@ -7055,23 +7117,26 @@ defs["structs"]["ImGuiTypingSelectState"][6]["name"] = "SingleCharModeLock" defs["structs"]["ImGuiTypingSelectState"][6]["type"] = "bool" defs["structs"]["ImGuiViewport"] = {} defs["structs"]["ImGuiViewport"][1] = {} -defs["structs"]["ImGuiViewport"][1]["name"] = "Flags" -defs["structs"]["ImGuiViewport"][1]["type"] = "ImGuiViewportFlags" +defs["structs"]["ImGuiViewport"][1]["name"] = "ID" +defs["structs"]["ImGuiViewport"][1]["type"] = "ImGuiID" defs["structs"]["ImGuiViewport"][2] = {} -defs["structs"]["ImGuiViewport"][2]["name"] = "Pos" -defs["structs"]["ImGuiViewport"][2]["type"] = "ImVec2" +defs["structs"]["ImGuiViewport"][2]["name"] = "Flags" +defs["structs"]["ImGuiViewport"][2]["type"] = "ImGuiViewportFlags" defs["structs"]["ImGuiViewport"][3] = {} -defs["structs"]["ImGuiViewport"][3]["name"] = "Size" +defs["structs"]["ImGuiViewport"][3]["name"] = "Pos" defs["structs"]["ImGuiViewport"][3]["type"] = "ImVec2" defs["structs"]["ImGuiViewport"][4] = {} -defs["structs"]["ImGuiViewport"][4]["name"] = "WorkPos" +defs["structs"]["ImGuiViewport"][4]["name"] = "Size" defs["structs"]["ImGuiViewport"][4]["type"] = "ImVec2" defs["structs"]["ImGuiViewport"][5] = {} -defs["structs"]["ImGuiViewport"][5]["name"] = "WorkSize" +defs["structs"]["ImGuiViewport"][5]["name"] = "WorkPos" defs["structs"]["ImGuiViewport"][5]["type"] = "ImVec2" defs["structs"]["ImGuiViewport"][6] = {} -defs["structs"]["ImGuiViewport"][6]["name"] = "PlatformHandleRaw" -defs["structs"]["ImGuiViewport"][6]["type"] = "void*" +defs["structs"]["ImGuiViewport"][6]["name"] = "WorkSize" +defs["structs"]["ImGuiViewport"][6]["type"] = "ImVec2" +defs["structs"]["ImGuiViewport"][7] = {} +defs["structs"]["ImGuiViewport"][7]["name"] = "PlatformHandleRaw" +defs["structs"]["ImGuiViewport"][7]["type"] = "void*" defs["structs"]["ImGuiViewportP"] = {} defs["structs"]["ImGuiViewportP"][1] = {} defs["structs"]["ImGuiViewportP"][1]["name"] = "_ImGuiViewport" @@ -7379,32 +7444,35 @@ defs["structs"]["ImGuiWindow"][90] = {} defs["structs"]["ImGuiWindow"][90]["name"] = "RootWindowForNav" defs["structs"]["ImGuiWindow"][90]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][91] = {} -defs["structs"]["ImGuiWindow"][91]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][91]["name"] = "ParentWindowForFocusRoute" defs["structs"]["ImGuiWindow"][91]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][92] = {} -defs["structs"]["ImGuiWindow"][92]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" -defs["structs"]["ImGuiWindow"][92]["size"] = 2 -defs["structs"]["ImGuiWindow"][92]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][92]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][92]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][93] = {} -defs["structs"]["ImGuiWindow"][93]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][93]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" defs["structs"]["ImGuiWindow"][93]["size"] = 2 -defs["structs"]["ImGuiWindow"][93]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][93]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][94] = {} -defs["structs"]["ImGuiWindow"][94]["name"] = "NavPreferredScoringPosRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][94]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" defs["structs"]["ImGuiWindow"][94]["size"] = 2 -defs["structs"]["ImGuiWindow"][94]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][94]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][95] = {} -defs["structs"]["ImGuiWindow"][95]["name"] = "NavRootFocusScopeId" -defs["structs"]["ImGuiWindow"][95]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][95]["name"] = "NavPreferredScoringPosRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][95]["size"] = 2 +defs["structs"]["ImGuiWindow"][95]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][96] = {} -defs["structs"]["ImGuiWindow"][96]["name"] = "MemoryDrawListIdxCapacity" -defs["structs"]["ImGuiWindow"][96]["type"] = "int" +defs["structs"]["ImGuiWindow"][96]["name"] = "NavRootFocusScopeId" +defs["structs"]["ImGuiWindow"][96]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][97] = {} -defs["structs"]["ImGuiWindow"][97]["name"] = "MemoryDrawListVtxCapacity" +defs["structs"]["ImGuiWindow"][97]["name"] = "MemoryDrawListIdxCapacity" defs["structs"]["ImGuiWindow"][97]["type"] = "int" defs["structs"]["ImGuiWindow"][98] = {} -defs["structs"]["ImGuiWindow"][98]["name"] = "MemoryCompacted" -defs["structs"]["ImGuiWindow"][98]["type"] = "bool" +defs["structs"]["ImGuiWindow"][98]["name"] = "MemoryDrawListVtxCapacity" +defs["structs"]["ImGuiWindow"][98]["type"] = "int" +defs["structs"]["ImGuiWindow"][99] = {} +defs["structs"]["ImGuiWindow"][99]["name"] = "MemoryCompacted" +defs["structs"]["ImGuiWindow"][99]["type"] = "bool" defs["structs"]["ImGuiWindowSettings"] = {} defs["structs"]["ImGuiWindowSettings"][1] = {} defs["structs"]["ImGuiWindowSettings"][1]["name"] = "ID" @@ -7764,6 +7832,7 @@ defs["templates_done"]["ImVector"]["ImFontConfig"] = true defs["templates_done"]["ImVector"]["ImFontGlyph"] = true defs["templates_done"]["ImVector"]["ImGuiColorMod"] = true defs["templates_done"]["ImVector"]["ImGuiContextHook"] = true +defs["templates_done"]["ImVector"]["ImGuiFocusScopeData"] = true defs["templates_done"]["ImVector"]["ImGuiGroupData"] = true defs["templates_done"]["ImVector"]["ImGuiID"] = true defs["templates_done"]["ImVector"]["ImGuiInputEvent"] = true diff --git a/generator/output/typedefs_dict.json b/generator/output/typedefs_dict.json index 81b2486..a2d42d0 100644 --- a/generator/output/typedefs_dict.json +++ b/generator/output/typedefs_dict.json @@ -50,6 +50,7 @@ "ImGuiDragDropFlags": "int", "ImGuiErrorLogCallback": "void(*)(void* user_data,const char* fmt,...);", "ImGuiFocusRequestFlags": "int", + "ImGuiFocusScopeData": "struct ImGuiFocusScopeData", "ImGuiFocusedFlags": "int", "ImGuiGroupData": "struct ImGuiGroupData", "ImGuiHoveredFlags": "int", diff --git a/generator/output/typedefs_dict.lua b/generator/output/typedefs_dict.lua index 7493a14..30b820b 100644 --- a/generator/output/typedefs_dict.lua +++ b/generator/output/typedefs_dict.lua @@ -50,6 +50,7 @@ defs["ImGuiDir"] = "int" defs["ImGuiDragDropFlags"] = "int" defs["ImGuiErrorLogCallback"] = "void(*)(void* user_data,const char* fmt,...);" defs["ImGuiFocusRequestFlags"] = "int" +defs["ImGuiFocusScopeData"] = "struct ImGuiFocusScopeData" defs["ImGuiFocusedFlags"] = "int" defs["ImGuiGroupData"] = "struct ImGuiGroupData" defs["ImGuiHoveredFlags"] = "int" diff --git a/imgui b/imgui index d6cb3c9..5360903 160000 --- a/imgui +++ b/imgui @@ -1 +1 @@ -Subproject commit d6cb3c923d28dcebb2d8d9605ccc7229ccef19eb +Subproject commit 536090303a8fca7d896f77d6d63dc59249bc87f4