From c0d36ab1d657cfd73ec204a4b0c86ee989e2b72b Mon Sep 17 00:00:00 2001 From: Victor Bombi Date: Fri, 9 Oct 2020 16:55:18 +0200 Subject: [PATCH] pull imgui master 1.79 and generate --- README.md | 2 +- cimgui.cpp | 58 +- cimgui.h | 67 +- generator/output/definitions.json | 1722 ++++++++++++----------- generator/output/definitions.lua | 1714 +++++++++++----------- generator/output/structs_and_enums.json | 331 +++-- generator/output/structs_and_enums.lua | 971 +++++++------ imgui | 2 +- 8 files changed, 2658 insertions(+), 2209 deletions(-) diff --git a/README.md b/README.md index 90967a6..8271851 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.78 of Dear ImGui with internal api] +* currently this wrapper is based on version [1.79 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 implementations 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 ec9d18f..fb2e7cd 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.78" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.79" from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api #include "./imgui/imgui.h" @@ -1056,9 +1056,9 @@ CIMGUI_API void igOpenPopup(const char* str_id,ImGuiPopupFlags popup_flags) { return ImGui::OpenPopup(str_id,popup_flags); } -CIMGUI_API bool igOpenPopupContextItem(const char* str_id,ImGuiPopupFlags popup_flags) +CIMGUI_API void igOpenPopupOnItemClick(const char* str_id,ImGuiPopupFlags popup_flags) { - return ImGui::OpenPopupContextItem(str_id,popup_flags); + return ImGui::OpenPopupOnItemClick(str_id,popup_flags); } CIMGUI_API void igCloseCurrentPopup() { @@ -1128,6 +1128,10 @@ CIMGUI_API void igEndTabItem() { return ImGui::EndTabItem(); } +CIMGUI_API bool igTabItemButton(const char* label,ImGuiTabItemFlags flags) +{ + return ImGui::TabItemButton(label,flags); +} CIMGUI_API void igSetTabItemClosed(const char* tab_or_docked_window_label) { return ImGui::SetTabItemClosed(tab_or_docked_window_label); @@ -1512,6 +1516,14 @@ CIMGUI_API void ImGuiInputTextCallbackData_InsertChars(ImGuiInputTextCallbackDat { return self->InsertChars(pos,text,text_end); } +CIMGUI_API void ImGuiInputTextCallbackData_SelectAll(ImGuiInputTextCallbackData* self) +{ + return self->SelectAll(); +} +CIMGUI_API void ImGuiInputTextCallbackData_ClearSelection(ImGuiInputTextCallbackData* self) +{ + return self->ClearSelection(); +} CIMGUI_API bool ImGuiInputTextCallbackData_HasSelection(ImGuiInputTextCallbackData* self) { return self->HasSelection(); @@ -1716,18 +1728,14 @@ CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self) { return self->BuildSortByKey(); } -CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(int items_count,float items_height) +CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void) { - return IM_NEW(ImGuiListClipper)(items_count,items_height); + return IM_NEW(ImGuiListClipper)(); } CIMGUI_API void ImGuiListClipper_destroy(ImGuiListClipper* self) { IM_DELETE(self); } -CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self) -{ - return self->Step(); -} CIMGUI_API void ImGuiListClipper_Begin(ImGuiListClipper* self,int items_count,float items_height) { return self->Begin(items_count,items_height); @@ -1736,6 +1744,10 @@ CIMGUI_API void ImGuiListClipper_End(ImGuiListClipper* self) { return self->End(); } +CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self) +{ + return self->Step(); +} CIMGUI_API ImColor* ImColor_ImColorNil(void) { return IM_NEW(ImColor)(); @@ -2288,7 +2300,7 @@ CIMGUI_API void ImFont_GrowIndex(ImFont* self,int new_size) { return self->GrowIndex(new_size); } -CIMGUI_API void ImFont_AddGlyph(ImFont* self,ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x) +CIMGUI_API void ImFont_AddGlyph(ImFont* self,const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x) { return self->AddGlyph(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,advance_x); } @@ -3232,13 +3244,13 @@ CIMGUI_API void igSetNextWindowScroll(const ImVec2 scroll) { return ImGui::SetNextWindowScroll(scroll); } -CIMGUI_API void igSetScrollXWindowPtr(ImGuiWindow* window,float new_scroll_x) +CIMGUI_API void igSetScrollXWindowPtr(ImGuiWindow* window,float scroll_x) { - return ImGui::SetScrollX(window,new_scroll_x); + return ImGui::SetScrollX(window,scroll_x); } -CIMGUI_API void igSetScrollYWindowPtr(ImGuiWindow* window,float new_scroll_y) +CIMGUI_API void igSetScrollYWindowPtr(ImGuiWindow* window,float scroll_y) { - return ImGui::SetScrollY(window,new_scroll_y); + return ImGui::SetScrollY(window,scroll_y); } CIMGUI_API void igSetScrollFromPosXWindowPtr(ImGuiWindow* window,float local_x,float center_x_ratio) { @@ -3300,6 +3312,10 @@ CIMGUI_API void igPushOverrideID(ImGuiID id) { return ImGui::PushOverrideID(id); } +CIMGUI_API ImGuiID igGetIDWithSeed(const char* str_id_begin,const char* str_id_end,ImGuiID seed) +{ + return ImGui::GetIDWithSeed(str_id_begin,str_id_end,seed); +} CIMGUI_API void igItemSizeVec2(const ImVec2 size,float text_baseline_y) { return ImGui::ItemSize(size,text_baseline_y); @@ -3568,9 +3584,13 @@ CIMGUI_API void igTabBarCloseTab(ImGuiTabBar* tab_bar,ImGuiTabItem* tab) { return ImGui::TabBarCloseTab(tab_bar,tab); } -CIMGUI_API void igTabBarQueueChangeTabOrder(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir) +CIMGUI_API void igTabBarQueueReorder(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir) { - return ImGui::TabBarQueueChangeTabOrder(tab_bar,tab,dir); + return ImGui::TabBarQueueReorder(tab_bar,tab,dir); +} +CIMGUI_API bool igTabBarProcessReorder(ImGuiTabBar* tab_bar) +{ + return ImGui::TabBarProcessReorder(tab_bar); } CIMGUI_API bool igTabItemEx(ImGuiTabBar* tab_bar,const char* label,bool* p_open,ImGuiTabItemFlags flags) { @@ -3744,7 +3764,7 @@ CIMGUI_API int igDataTypeFormatString(char* buf,int buf_size,ImGuiDataType data_ { return ImGui::DataTypeFormatString(buf,buf_size,data_type,p_data,format); } -CIMGUI_API void igDataTypeApplyOp(ImGuiDataType data_type,int op,void* output,void* arg_1,const void* arg_2) +CIMGUI_API void igDataTypeApplyOp(ImGuiDataType data_type,int op,void* output,const void* arg_1,const void* arg_2) { return ImGui::DataTypeApplyOp(data_type,op,output,arg_1,arg_2); } @@ -3752,6 +3772,10 @@ CIMGUI_API bool igDataTypeApplyOpFromText(const char* buf,const char* initial_va { return ImGui::DataTypeApplyOpFromText(buf,initial_value_buf,data_type,p_data,format); } +CIMGUI_API int igDataTypeCompare(ImGuiDataType data_type,const void* arg_1,const void* arg_2) +{ + return ImGui::DataTypeCompare(data_type,arg_1,arg_2); +} CIMGUI_API bool igDataTypeClamp(ImGuiDataType data_type,void* p_data,const void* p_min,const void* p_max) { return ImGui::DataTypeClamp(data_type,p_data,p_min,p_max); diff --git a/cimgui.h b/cimgui.h index 64fd859..18d844a 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.78" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.79" from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api #ifndef CIMGUI_INCLUDED #define CIMGUI_INCLUDED @@ -310,6 +310,7 @@ typedef enum { ImGuiInputTextFlags_NoUndoRedo = 1 << 16, ImGuiInputTextFlags_CharsScientific = 1 << 17, ImGuiInputTextFlags_CallbackResize = 1 << 18, + ImGuiInputTextFlags_CallbackEdit = 1 << 19, ImGuiInputTextFlags_Multiline = 1 << 20, ImGuiInputTextFlags_NoMarkEdited = 1 << 21 }ImGuiInputTextFlags_; @@ -382,7 +383,10 @@ typedef enum { ImGuiTabItemFlags_SetSelected = 1 << 1, ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, ImGuiTabItemFlags_NoPushId = 1 << 3, - ImGuiTabItemFlags_NoTooltip = 1 << 4 + ImGuiTabItemFlags_NoTooltip = 1 << 4, + ImGuiTabItemFlags_NoReorder = 1 << 5, + ImGuiTabItemFlags_Leading = 1 << 6, + ImGuiTabItemFlags_Trailing = 1 << 7 }ImGuiTabItemFlags_; typedef enum { ImGuiFocusedFlags_None = 0, @@ -630,7 +634,7 @@ typedef enum { }ImGuiColorEditFlags_; typedef enum { ImGuiSliderFlags_None = 0, - ImGuiSliderFlags_ClampOnInput = 1 << 4, + ImGuiSliderFlags_AlwaysClamp = 1 << 4, ImGuiSliderFlags_Logarithmic = 1 << 5, ImGuiSliderFlags_NoRoundToFormat = 1 << 6, ImGuiSliderFlags_NoInput = 1 << 7, @@ -690,7 +694,7 @@ struct ImGuiStyle float LogSliderDeadzone; float TabRounding; float TabBorderSize; - float TabMinWidthForUnselectedCloseButton; + float TabMinWidthForCloseButton; ImGuiDir ColorButtonPosition; ImVec2 ButtonTextAlign; ImVec2 SelectableTextAlign; @@ -852,7 +856,8 @@ typedef struct ImVector_ImGuiTabBar {int Size;int Capacity;ImGuiTabBar* Data;} I typedef struct ImPool_ImGuiTabBar {ImVector_ImGuiTabBar Buf;ImGuiStorage Map;ImPoolIdx FreeIdx;} ImPool_ImGuiTabBar; struct ImGuiListClipper { - int DisplayStart, DisplayEnd; + int DisplayStart; + int DisplayEnd; int ItemsCount; int StepNo; float ItemsHeight; @@ -1013,7 +1018,6 @@ struct ImFont ImVector_ImWchar IndexLookup; ImVector_ImFontGlyph Glyphs; const ImFontGlyph* FallbackGlyph; - ImVec2 DisplayOffset; ImFontAtlas* ContainerAtlas; const ImFontConfig* ConfigData; short ConfigDataCount; @@ -1045,6 +1049,7 @@ struct STB_TexteditState int select_start; int select_end; unsigned char insert_mode; + int row_count_per_page; unsigned char cursor_at_end_of_line; unsigned char initialized; unsigned char has_preferred_x; @@ -1145,8 +1150,9 @@ typedef enum { ImGuiSelectableFlags_SelectOnClick = 1 << 21, ImGuiSelectableFlags_SelectOnRelease = 1 << 22, ImGuiSelectableFlags_SpanAvailWidth = 1 << 23, - ImGuiSelectableFlags_DrawHoveredWhenHeld= 1 << 24, - ImGuiSelectableFlags_SetNavIdOnHover = 1 << 25 + ImGuiSelectableFlags_DrawHoveredWhenHeld = 1 << 24, + ImGuiSelectableFlags_SetNavIdOnHover = 1 << 25, + ImGuiSelectableFlags_NoPadWithHalfSpacing = 1 << 26 }ImGuiSelectableFlagsPrivate_; typedef enum { ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 20 @@ -1236,7 +1242,8 @@ typedef enum { }ImGuiNavLayer; typedef enum { ImGuiPopupPositionPolicy_Default, - ImGuiPopupPositionPolicy_ComboBox + ImGuiPopupPositionPolicy_ComboBox, + ImGuiPopupPositionPolicy_Tooltip }ImGuiPopupPositionPolicy; struct ImGuiDataTypeTempStorage { @@ -1245,6 +1252,7 @@ struct ImGuiDataTypeTempStorage struct ImGuiDataTypeInfo { size_t Size; + const char* Name; const char* PrintFmt; const char* ScanFmt; }; @@ -1295,6 +1303,7 @@ struct ImGuiInputTextState float CursorAnim; bool CursorFollow; bool SelectedAllMouseLock; + bool Edited; ImGuiInputTextFlags UserFlags; ImGuiInputTextCallback UserCallback; void* UserCallbackData; @@ -1519,7 +1528,6 @@ struct ImGuiContext bool NavInitRequestFromMove; ImGuiID NavInitResultId; ImRect NavInitResultRectRel; - bool NavMoveFromClampedRefRect; bool NavMoveRequest; ImGuiNavMoveFlags NavMoveRequestFlags; ImGuiNavForward NavMoveRequestForward; @@ -1591,6 +1599,7 @@ struct ImGuiContext ImVector_ImGuiID MenusIdSubmittedThisFrame; ImVec2 PlatformImePos; ImVec2 PlatformImeLastPos; + char PlatformLocaleDecimalPoint; bool SettingsLoaded; float SettingsDirtyTimer; ImGuiTextBuffer SettingsIniData; @@ -1633,7 +1642,6 @@ struct ImGuiWindowTempData ImRect LastItemRect; ImRect LastItemDisplayRect; ImGuiNavLayer NavLayerCurrent; - int NavLayerCurrentMask; int NavLayerActiveMask; int NavLayerActiveMaskNext; ImGuiID NavFocusScopeIdCurrent; @@ -1680,6 +1688,7 @@ struct ImGuiWindow ImVec2 ScrollMax; ImVec2 ScrollTarget; ImVec2 ScrollTargetCenterRatio; + ImVec2 ScrollTargetEdgeSnapDist; ImVec2 ScrollbarSizes; bool ScrollbarX, ScrollbarY; bool Active; @@ -1752,7 +1761,8 @@ typedef enum { ImGuiTabBarFlags_SaveSettings = 1 << 22 }ImGuiTabBarFlagsPrivate_; typedef enum { - ImGuiTabItemFlags_NoCloseButton = 1 << 20 + ImGuiTabItemFlags_NoCloseButton = 1 << 20, + ImGuiTabItemFlags_Button = 1 << 21 }ImGuiTabItemFlagsPrivate_; struct ImGuiTabItem { @@ -1764,6 +1774,8 @@ struct ImGuiTabItem float Width; float ContentWidth; ImS16 NameOffset; + ImS8 BeginOrder; + ImS8 IndexDuringLayout; bool WantClose; }; struct ImGuiTabBar @@ -1777,18 +1789,21 @@ struct ImGuiTabBar int PrevFrameVisible; ImRect BarRect; float LastTabContentHeight; - float OffsetMax; - float OffsetMaxIdeal; - float OffsetNextTab; + float WidthAllTabs; + float WidthAllTabsIdeal; float ScrollingAnim; float ScrollingTarget; float ScrollingTargetDistToVisibility; float ScrollingSpeed; + float ScrollingRectMinX; + float ScrollingRectMaxX; ImGuiTabBarFlags Flags; ImGuiID ReorderRequestTabId; ImS8 ReorderRequestDir; + ImS8 TabsActiveCount; bool WantLayout; bool VisibleTabWasSubmitted; + bool TabsAddedNew; short LastTabItemIdx; ImVec2 FramePadding; ImGuiTextBuffer TabsNames; @@ -2093,7 +2108,7 @@ CIMGUI_API bool igBeginPopup(const char* str_id,ImGuiWindowFlags flags); CIMGUI_API bool igBeginPopupModal(const char* name,bool* p_open,ImGuiWindowFlags flags); CIMGUI_API void igEndPopup(void); CIMGUI_API void igOpenPopup(const char* str_id,ImGuiPopupFlags popup_flags); -CIMGUI_API bool igOpenPopupContextItem(const char* str_id,ImGuiPopupFlags popup_flags); +CIMGUI_API void igOpenPopupOnItemClick(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API void igCloseCurrentPopup(void); CIMGUI_API bool igBeginPopupContextItem(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igBeginPopupContextWindow(const char* str_id,ImGuiPopupFlags popup_flags); @@ -2111,6 +2126,7 @@ CIMGUI_API bool igBeginTabBar(const char* str_id,ImGuiTabBarFlags flags); CIMGUI_API void igEndTabBar(void); CIMGUI_API bool igBeginTabItem(const char* label,bool* p_open,ImGuiTabItemFlags flags); CIMGUI_API void igEndTabItem(void); +CIMGUI_API bool igTabItemButton(const char* label,ImGuiTabItemFlags flags); CIMGUI_API void igSetTabItemClosed(const char* tab_or_docked_window_label); CIMGUI_API void igLogToTTY(int auto_open_depth); CIMGUI_API void igLogToFile(int auto_open_depth,const char* filename); @@ -2207,6 +2223,8 @@ CIMGUI_API ImGuiInputTextCallbackData* ImGuiInputTextCallbackData_ImGuiInputText CIMGUI_API void ImGuiInputTextCallbackData_destroy(ImGuiInputTextCallbackData* self); CIMGUI_API void ImGuiInputTextCallbackData_DeleteChars(ImGuiInputTextCallbackData* self,int pos,int bytes_count); CIMGUI_API void ImGuiInputTextCallbackData_InsertChars(ImGuiInputTextCallbackData* self,int pos,const char* text,const char* text_end); +CIMGUI_API void ImGuiInputTextCallbackData_SelectAll(ImGuiInputTextCallbackData* self); +CIMGUI_API void ImGuiInputTextCallbackData_ClearSelection(ImGuiInputTextCallbackData* self); CIMGUI_API bool ImGuiInputTextCallbackData_HasSelection(ImGuiInputTextCallbackData* self); CIMGUI_API ImGuiPayload* ImGuiPayload_ImGuiPayload(void); CIMGUI_API void ImGuiPayload_destroy(ImGuiPayload* self); @@ -2258,11 +2276,11 @@ CIMGUI_API float* ImGuiStorage_GetFloatRef(ImGuiStorage* self,ImGuiID key,float CIMGUI_API void** ImGuiStorage_GetVoidPtrRef(ImGuiStorage* self,ImGuiID key,void* default_val); CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val); CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self); -CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(int items_count,float items_height); +CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void); CIMGUI_API void ImGuiListClipper_destroy(ImGuiListClipper* self); -CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self); CIMGUI_API void ImGuiListClipper_Begin(ImGuiListClipper* self,int items_count,float items_height); CIMGUI_API void ImGuiListClipper_End(ImGuiListClipper* self); +CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self); CIMGUI_API ImColor* ImColor_ImColorNil(void); CIMGUI_API void ImColor_destroy(ImColor* self); CIMGUI_API ImColor* ImColor_ImColorInt(int r,int g,int b,int a); @@ -2401,7 +2419,7 @@ CIMGUI_API void ImFont_RenderText(ImFont* self,ImDrawList* draw_list,float size, CIMGUI_API void ImFont_BuildLookupTable(ImFont* self); CIMGUI_API void ImFont_ClearOutputData(ImFont* self); CIMGUI_API void ImFont_GrowIndex(ImFont* self,int new_size); -CIMGUI_API void ImFont_AddGlyph(ImFont* self,ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x); +CIMGUI_API void ImFont_AddGlyph(ImFont* self,const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x); CIMGUI_API void ImFont_AddRemapChar(ImFont* self,ImWchar dst,ImWchar src,bool overwrite_dst); CIMGUI_API void ImFont_SetGlyphVisible(ImFont* self,ImWchar c,bool visible); CIMGUI_API void ImFont_SetFallbackChar(ImFont* self,ImWchar c); @@ -2636,8 +2654,8 @@ CIMGUI_API ImGuiWindowSettings* igFindWindowSettings(ImGuiID id); CIMGUI_API ImGuiWindowSettings* igFindOrCreateWindowSettings(const char* name); CIMGUI_API ImGuiSettingsHandler* igFindSettingsHandler(const char* type_name); CIMGUI_API void igSetNextWindowScroll(const ImVec2 scroll); -CIMGUI_API void igSetScrollXWindowPtr(ImGuiWindow* window,float new_scroll_x); -CIMGUI_API void igSetScrollYWindowPtr(ImGuiWindow* window,float new_scroll_y); +CIMGUI_API void igSetScrollXWindowPtr(ImGuiWindow* window,float scroll_x); +CIMGUI_API void igSetScrollYWindowPtr(ImGuiWindow* window,float scroll_y); CIMGUI_API void igSetScrollFromPosXWindowPtr(ImGuiWindow* window,float local_x,float center_x_ratio); CIMGUI_API void igSetScrollFromPosYWindowPtr(ImGuiWindow* window,float local_y,float center_y_ratio); CIMGUI_API void igScrollToBringRectIntoView(ImVec2 *pOut,ImGuiWindow* window,const ImRect item_rect); @@ -2653,6 +2671,7 @@ CIMGUI_API void igSetHoveredID(ImGuiID id); CIMGUI_API void igKeepAliveID(ImGuiID id); CIMGUI_API void igMarkItemEdited(ImGuiID id); CIMGUI_API void igPushOverrideID(ImGuiID id); +CIMGUI_API ImGuiID igGetIDWithSeed(const char* str_id_begin,const char* str_id_end,ImGuiID seed); CIMGUI_API void igItemSizeVec2(const ImVec2 size,float text_baseline_y); CIMGUI_API void igItemSizeRect(const ImRect bb,float text_baseline_y); CIMGUI_API bool igItemAdd(const ImRect bb,ImGuiID id,const ImRect* nav_bb); @@ -2720,7 +2739,8 @@ CIMGUI_API bool igBeginTabBarEx(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBar CIMGUI_API ImGuiTabItem* igTabBarFindTabByID(ImGuiTabBar* tab_bar,ImGuiID tab_id); CIMGUI_API void igTabBarRemoveTab(ImGuiTabBar* tab_bar,ImGuiID tab_id); CIMGUI_API void igTabBarCloseTab(ImGuiTabBar* tab_bar,ImGuiTabItem* tab); -CIMGUI_API void igTabBarQueueChangeTabOrder(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir); +CIMGUI_API void igTabBarQueueReorder(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir); +CIMGUI_API bool igTabBarProcessReorder(ImGuiTabBar* tab_bar); CIMGUI_API bool igTabItemEx(ImGuiTabBar* tab_bar,const char* label,bool* p_open,ImGuiTabItemFlags flags); CIMGUI_API void igTabItemCalcSize(ImVec2 *pOut,const char* label,bool has_close_button); CIMGUI_API void igTabItemBackground(ImDrawList* draw_list,const ImRect bb,ImGuiTabItemFlags flags,ImU32 col); @@ -2764,8 +2784,9 @@ CIMGUI_API bool igTreeNodeBehaviorIsOpen(ImGuiID id,ImGuiTreeNodeFlags flags); CIMGUI_API void igTreePushOverrideID(ImGuiID id); CIMGUI_API const ImGuiDataTypeInfo* igDataTypeGetInfo(ImGuiDataType data_type); CIMGUI_API int igDataTypeFormatString(char* buf,int buf_size,ImGuiDataType data_type,const void* p_data,const char* format); -CIMGUI_API void igDataTypeApplyOp(ImGuiDataType data_type,int op,void* output,void* arg_1,const void* arg_2); +CIMGUI_API void igDataTypeApplyOp(ImGuiDataType data_type,int op,void* output,const void* arg_1,const void* arg_2); CIMGUI_API bool igDataTypeApplyOpFromText(const char* buf,const char* initial_value_buf,ImGuiDataType data_type,void* p_data,const char* format); +CIMGUI_API int igDataTypeCompare(ImGuiDataType data_type,const void* arg_1,const void* arg_2); CIMGUI_API bool igDataTypeClamp(ImGuiDataType data_type,void* p_data,const void* p_min,const void* p_max); CIMGUI_API bool igInputTextEx(const char* label,const char* hint,char* buf,int buf_size,const ImVec2 size_arg,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data); CIMGUI_API bool igTempInputText(const ImRect bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags); diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 8841213..49cbeee 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -13,7 +13,7 @@ "cimguiname": "ImBitVector_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:472", + "location": "imgui_internal:474", "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -38,7 +38,7 @@ "cimguiname": "ImBitVector_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:475", + "location": "imgui_internal:477", "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -63,7 +63,7 @@ "cimguiname": "ImBitVector_Create", "defaults": {}, "funcname": "Create", - "location": "imgui_internal:471", + "location": "imgui_internal:473", "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -88,7 +88,7 @@ "cimguiname": "ImBitVector_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:474", + "location": "imgui_internal:476", "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -113,7 +113,7 @@ "cimguiname": "ImBitVector_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:473", + "location": "imgui_internal:475", "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -138,7 +138,7 @@ "cimguiname": "ImChunkStream_alloc_chunk", "defaults": {}, "funcname": "alloc_chunk", - "location": "imgui_internal:517", + "location": "imgui_internal:519", "ov_cimguiname": "ImChunkStream_alloc_chunk", "ret": "T*", "signature": "(size_t)", @@ -160,7 +160,7 @@ "cimguiname": "ImChunkStream_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:518", + "location": "imgui_internal:520", "ov_cimguiname": "ImChunkStream_begin", "ret": "T*", "signature": "()", @@ -186,7 +186,7 @@ "cimguiname": "ImChunkStream_chunk_size", "defaults": {}, "funcname": "chunk_size", - "location": "imgui_internal:520", + "location": "imgui_internal:522", "ov_cimguiname": "ImChunkStream_chunk_size", "ret": "int", "signature": "(const T*)", @@ -208,7 +208,7 @@ "cimguiname": "ImChunkStream_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:514", + "location": "imgui_internal:516", "ov_cimguiname": "ImChunkStream_clear", "ret": "void", "signature": "()", @@ -230,7 +230,7 @@ "cimguiname": "ImChunkStream_empty", "defaults": {}, "funcname": "empty", - "location": "imgui_internal:515", + "location": "imgui_internal:517", "ov_cimguiname": "ImChunkStream_empty", "ret": "bool", "signature": "()const", @@ -252,7 +252,7 @@ "cimguiname": "ImChunkStream_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:521", + "location": "imgui_internal:523", "ov_cimguiname": "ImChunkStream_end", "ret": "T*", "signature": "()", @@ -278,7 +278,7 @@ "cimguiname": "ImChunkStream_next_chunk", "defaults": {}, "funcname": "next_chunk", - "location": "imgui_internal:519", + "location": "imgui_internal:521", "ov_cimguiname": "ImChunkStream_next_chunk", "ret": "T*", "signature": "(T*)", @@ -304,7 +304,7 @@ "cimguiname": "ImChunkStream_offset_from_ptr", "defaults": {}, "funcname": "offset_from_ptr", - "location": "imgui_internal:522", + "location": "imgui_internal:524", "ov_cimguiname": "ImChunkStream_offset_from_ptr", "ret": "int", "signature": "(const T*)", @@ -330,7 +330,7 @@ "cimguiname": "ImChunkStream_ptr_from_offset", "defaults": {}, "funcname": "ptr_from_offset", - "location": "imgui_internal:523", + "location": "imgui_internal:525", "ov_cimguiname": "ImChunkStream_ptr_from_offset", "ret": "T*", "signature": "(int)", @@ -352,7 +352,7 @@ "cimguiname": "ImChunkStream_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:516", + "location": "imgui_internal:518", "ov_cimguiname": "ImChunkStream_size", "ret": "int", "signature": "()const", @@ -393,7 +393,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:1941", + "location": "imgui:1967", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -411,7 +411,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:1931", + "location": "imgui:1957", "ov_cimguiname": "ImColor_ImColorNil", "signature": "()", "stname": "ImColor" @@ -444,7 +444,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:1932", + "location": "imgui:1958", "ov_cimguiname": "ImColor_ImColorInt", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -463,7 +463,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:1933", + "location": "imgui:1959", "ov_cimguiname": "ImColor_ImColorU32", "signature": "(ImU32)", "stname": "ImColor" @@ -496,7 +496,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:1934", + "location": "imgui:1960", "ov_cimguiname": "ImColor_ImColorFloat", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -515,7 +515,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:1935", + "location": "imgui:1961", "ov_cimguiname": "ImColor_ImColorVec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -553,7 +553,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:1940", + "location": "imgui:1966", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -589,7 +589,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:1986", + "location": "imgui:2012", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -628,7 +628,7 @@ "cimguiname": "ImDrawDataBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:565", + "location": "imgui_internal:567", "ov_cimguiname": "ImDrawDataBuilder_Clear", "ret": "void", "signature": "()", @@ -649,7 +649,7 @@ "cimguiname": "ImDrawDataBuilder_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:566", + "location": "imgui_internal:568", "ov_cimguiname": "ImDrawDataBuilder_ClearFreeMemory", "ret": "void", "signature": "()", @@ -670,7 +670,7 @@ "cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", "defaults": {}, "funcname": "FlattenIntoSingleLayer", - "location": "imgui_internal:567", + "location": "imgui_internal:569", "ov_cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", "ret": "void", "signature": "()", @@ -691,7 +691,7 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2197", + "location": "imgui:2223", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -712,7 +712,7 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui:2198", + "location": "imgui:2224", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -729,7 +729,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", - "location": "imgui:2195", + "location": "imgui:2221", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -753,7 +753,7 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui:2199", + "location": "imgui:2225", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -773,7 +773,7 @@ "cimguiname": "ImDrawData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2196", + "location": "imgui:2222", "ov_cimguiname": "ImDrawData_destroy", "realdestructor": true, "ret": "void", @@ -791,7 +791,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSharedData", - "location": "imgui_internal:557", + "location": "imgui_internal:559", "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "signature": "()", "stname": "ImDrawListSharedData" @@ -815,7 +815,7 @@ "cimguiname": "ImDrawListSharedData_SetCircleSegmentMaxError", "defaults": {}, "funcname": "SetCircleSegmentMaxError", - "location": "imgui_internal:558", + "location": "imgui_internal:560", "ov_cimguiname": "ImDrawListSharedData_SetCircleSegmentMaxError", "ret": "void", "signature": "(float)", @@ -855,7 +855,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2029", + "location": "imgui:2055", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -876,7 +876,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:2030", + "location": "imgui:2056", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -893,7 +893,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:2027", + "location": "imgui:2053", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -917,7 +917,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:2032", + "location": "imgui:2058", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -946,7 +946,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:2033", + "location": "imgui:2059", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -975,7 +975,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:2031", + "location": "imgui:2057", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -995,7 +995,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2028", + "location": "imgui:2054", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -1047,7 +1047,7 @@ "num_segments": "0" }, "funcname": "AddBezierCurve", - "location": "imgui:2123", + "location": "imgui:2149", "ov_cimguiname": "ImDrawList_AddBezierCurve", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1076,7 +1076,7 @@ "cimguiname": "ImDrawList_AddCallback", "defaults": {}, "funcname": "AddCallback", - "location": "imgui:2145", + "location": "imgui:2171", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -1120,7 +1120,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:2115", + "location": "imgui:2141", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1159,7 +1159,7 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:2116", + "location": "imgui:2142", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1192,7 +1192,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:2122", + "location": "imgui:2148", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1213,7 +1213,7 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui:2146", + "location": "imgui:2172", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -1262,7 +1262,7 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:2129", + "location": "imgui:2155", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1329,7 +1329,7 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:2130", + "location": "imgui:2156", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1384,7 +1384,7 @@ "rounding_corners": "ImDrawCornerFlags_All" }, "funcname": "AddImageRounded", - "location": "imgui:2131", + "location": "imgui:2157", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)", @@ -1423,7 +1423,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:2107", + "location": "imgui:2133", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1466,7 +1466,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:2117", + "location": "imgui:2143", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1503,7 +1503,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:2118", + "location": "imgui:2144", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1544,7 +1544,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", - "location": "imgui:2121", + "location": "imgui:2147", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,bool,float)", @@ -1591,7 +1591,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:2111", + "location": "imgui:2137", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1632,7 +1632,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:2112", + "location": "imgui:2138", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1681,7 +1681,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:2108", + "location": "imgui:2134", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags,float)", @@ -1725,7 +1725,7 @@ "rounding_corners": "ImDrawCornerFlags_All" }, "funcname": "AddRectFilled", - "location": "imgui:2109", + "location": "imgui:2135", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)", @@ -1770,7 +1770,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:2110", + "location": "imgui:2136", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -1809,7 +1809,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2119", + "location": "imgui:2145", "ov_cimguiname": "ImDrawList_AddTextVec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -1864,7 +1864,7 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:2120", + "location": "imgui:2146", "ov_cimguiname": "ImDrawList_AddTextFontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -1907,7 +1907,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:2113", + "location": "imgui:2139", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1944,7 +1944,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:2114", + "location": "imgui:2140", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1965,7 +1965,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui:2156", + "location": "imgui:2182", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -1990,7 +1990,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui:2157", + "location": "imgui:2183", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2015,7 +2015,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui:2155", + "location": "imgui:2181", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2036,7 +2036,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", - "location": "imgui:2147", + "location": "imgui:2173", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2061,7 +2061,7 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:2099", + "location": "imgui:2125", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -2087,7 +2087,7 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:2098", + "location": "imgui:2124", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -2110,7 +2110,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:2090", + "location": "imgui:2116", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(const ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2152,7 +2152,7 @@ "num_segments": "10" }, "funcname": "PathArcTo", - "location": "imgui:2139", + "location": "imgui:2165", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2189,7 +2189,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:2140", + "location": "imgui:2166", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2228,7 +2228,7 @@ "num_segments": "0" }, "funcname": "PathBezierCurveTo", - "location": "imgui:2141", + "location": "imgui:2167", "ov_cimguiname": "ImDrawList_PathBezierCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2249,7 +2249,7 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:2134", + "location": "imgui:2160", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -2274,7 +2274,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:2137", + "location": "imgui:2163", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2299,7 +2299,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:2135", + "location": "imgui:2161", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2324,7 +2324,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:2136", + "location": "imgui:2162", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2364,7 +2364,7 @@ "rounding_corners": "ImDrawCornerFlags_All" }, "funcname": "PathRect", - "location": "imgui:2142", + "location": "imgui:2168", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawCornerFlags)", @@ -2399,7 +2399,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:2138", + "location": "imgui:2164", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,bool,float)", @@ -2420,7 +2420,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:2095", + "location": "imgui:2121", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2441,7 +2441,7 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": {}, "funcname": "PopTextureID", - "location": "imgui:2097", + "location": "imgui:2123", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -2498,7 +2498,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui:2166", + "location": "imgui:2192", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2531,7 +2531,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", - "location": "imgui:2164", + "location": "imgui:2190", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2572,7 +2572,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui:2165", + "location": "imgui:2191", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2601,7 +2601,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", - "location": "imgui:2162", + "location": "imgui:2188", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -2630,7 +2630,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui:2163", + "location": "imgui:2189", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -2663,7 +2663,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", - "location": "imgui:2169", + "location": "imgui:2195", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2688,7 +2688,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui:2168", + "location": "imgui:2194", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -2721,7 +2721,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui:2167", + "location": "imgui:2193", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2756,7 +2756,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:2093", + "location": "imgui:2119", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(ImVec2,ImVec2,bool)", @@ -2777,7 +2777,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:2094", + "location": "imgui:2120", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -2802,7 +2802,7 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": {}, "funcname": "PushTextureID", - "location": "imgui:2096", + "location": "imgui:2122", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -2823,7 +2823,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:2173", + "location": "imgui:2199", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -2844,7 +2844,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:2175", + "location": "imgui:2201", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -2865,7 +2865,7 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": {}, "funcname": "_OnChangedTextureID", - "location": "imgui:2176", + "location": "imgui:2202", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -2886,7 +2886,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:2177", + "location": "imgui:2203", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -2907,7 +2907,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:2174", + "location": "imgui:2200", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -2928,7 +2928,7 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:2172", + "location": "imgui:2198", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", @@ -2948,7 +2948,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2092", + "location": "imgui:2118", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -2966,7 +2966,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasCustomRect", - "location": "imgui:2269", + "location": "imgui:2295", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -2986,7 +2986,7 @@ "cimguiname": "ImFontAtlasCustomRect_IsPacked", "defaults": {}, "funcname": "IsPacked", - "location": "imgui:2270", + "location": "imgui:2296", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -3052,7 +3052,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", - "location": "imgui:2352", + "location": "imgui:2378", "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -3081,7 +3081,7 @@ "cimguiname": "ImFontAtlas_AddCustomRectRegular", "defaults": {}, "funcname": "AddCustomRectRegular", - "location": "imgui:2351", + "location": "imgui:2377", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -3106,7 +3106,7 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", - "location": "imgui:2303", + "location": "imgui:2329", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3133,7 +3133,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui:2304", + "location": "imgui:2330", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3173,7 +3173,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", - "location": "imgui:2305", + "location": "imgui:2331", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3213,7 +3213,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui:2308", + "location": "imgui:2334", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3257,7 +3257,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui:2307", + "location": "imgui:2333", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3301,7 +3301,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui:2306", + "location": "imgui:2332", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3322,7 +3322,7 @@ "cimguiname": "ImFontAtlas_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2319", + "location": "imgui:2345", "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -3355,7 +3355,7 @@ "cimguiname": "ImFontAtlas_CalcCustomRectUV", "defaults": {}, "funcname": "CalcCustomRectUV", - "location": "imgui:2356", + "location": "imgui:2382", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -3376,7 +3376,7 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2312", + "location": "imgui:2338", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -3397,7 +3397,7 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", - "location": "imgui:2311", + "location": "imgui:2337", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -3418,7 +3418,7 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", - "location": "imgui:2309", + "location": "imgui:2335", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -3439,7 +3439,7 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", - "location": "imgui:2310", + "location": "imgui:2336", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -3464,7 +3464,7 @@ "cimguiname": "ImFontAtlas_GetCustomRectByIndex", "defaults": {}, "funcname": "GetCustomRectByIndex", - "location": "imgui:2353", + "location": "imgui:2379", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -3485,7 +3485,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "defaults": {}, "funcname": "GetGlyphRangesChineseFull", - "location": "imgui:2335", + "location": "imgui:2361", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -3506,7 +3506,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", - "location": "imgui:2336", + "location": "imgui:2362", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -3527,7 +3527,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "defaults": {}, "funcname": "GetGlyphRangesCyrillic", - "location": "imgui:2337", + "location": "imgui:2363", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -3548,7 +3548,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui:2332", + "location": "imgui:2358", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -3569,7 +3569,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "defaults": {}, "funcname": "GetGlyphRangesJapanese", - "location": "imgui:2334", + "location": "imgui:2360", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -3590,7 +3590,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "defaults": {}, "funcname": "GetGlyphRangesKorean", - "location": "imgui:2333", + "location": "imgui:2359", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -3611,7 +3611,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesThai", "defaults": {}, "funcname": "GetGlyphRangesThai", - "location": "imgui:2338", + "location": "imgui:2364", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -3632,7 +3632,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "defaults": {}, "funcname": "GetGlyphRangesVietnamese", - "location": "imgui:2339", + "location": "imgui:2365", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -3673,7 +3673,7 @@ "cimguiname": "ImFontAtlas_GetMouseCursorTexData", "defaults": {}, "funcname": "GetMouseCursorTexData", - "location": "imgui:2357", + "location": "imgui:2383", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -3712,7 +3712,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", - "location": "imgui:2320", + "location": "imgui:2346", "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -3751,7 +3751,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", - "location": "imgui:2321", + "location": "imgui:2347", "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -3768,7 +3768,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui:2301", + "location": "imgui:2327", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -3788,7 +3788,7 @@ "cimguiname": "ImFontAtlas_IsBuilt", "defaults": {}, "funcname": "IsBuilt", - "location": "imgui:2322", + "location": "imgui:2348", "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -3813,7 +3813,7 @@ "cimguiname": "ImFontAtlas_SetTexID", "defaults": {}, "funcname": "SetTexID", - "location": "imgui:2323", + "location": "imgui:2349", "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -3833,7 +3833,7 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2302", + "location": "imgui:2328", "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -3851,7 +3851,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui:2230", + "location": "imgui:2256", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -3894,7 +3894,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", - "location": "imgui:2254", + "location": "imgui:2280", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -3919,7 +3919,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", - "location": "imgui:2256", + "location": "imgui:2282", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -3950,7 +3950,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2255", + "location": "imgui:2281", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -3975,7 +3975,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", - "location": "imgui:2257", + "location": "imgui:2283", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -3996,7 +3996,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2251", + "location": "imgui:2277", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4021,7 +4021,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", - "location": "imgui:2252", + "location": "imgui:2278", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4038,7 +4038,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui:2250", + "location": "imgui:2276", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4062,7 +4062,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui:2253", + "location": "imgui:2279", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4090,7 +4090,7 @@ ], "ImFont_AddGlyph": [ { - "args": "(ImFont* self,ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)", + "args": "(ImFont* self,const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)", "argsT": [ { "name": "self", @@ -4098,7 +4098,7 @@ }, { "name": "src_cfg", - "type": "ImFontConfig*" + "type": "const ImFontConfig*" }, { "name": "c", @@ -4141,15 +4141,15 @@ "type": "float" } ], - "argsoriginal": "(ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)", + "argsoriginal": "(const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)", "call_args": "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,advance_x)", "cimguiname": "ImFont_AddGlyph", "defaults": {}, "funcname": "AddGlyph", - "location": "imgui:2439", + "location": "imgui:2464", "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", - "signature": "(ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", + "signature": "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", "stname": "ImFont" } ], @@ -4181,7 +4181,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", - "location": "imgui:2440", + "location": "imgui:2465", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -4202,7 +4202,7 @@ "cimguiname": "ImFont_BuildLookupTable", "defaults": {}, "funcname": "BuildLookupTable", - "location": "imgui:2436", + "location": "imgui:2461", "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -4254,7 +4254,7 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui:2430", + "location": "imgui:2455", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -4292,7 +4292,7 @@ "cimguiname": "ImFont_CalcWordWrapPositionA", "defaults": {}, "funcname": "CalcWordWrapPositionA", - "location": "imgui:2431", + "location": "imgui:2456", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)const", @@ -4313,7 +4313,7 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:2437", + "location": "imgui:2462", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -4338,7 +4338,7 @@ "cimguiname": "ImFont_FindGlyph", "defaults": {}, "funcname": "FindGlyph", - "location": "imgui:2422", + "location": "imgui:2447", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4363,7 +4363,7 @@ "cimguiname": "ImFont_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui:2423", + "location": "imgui:2448", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4388,7 +4388,7 @@ "cimguiname": "ImFont_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui:2424", + "location": "imgui:2449", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)const", @@ -4409,7 +4409,7 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", - "location": "imgui:2426", + "location": "imgui:2451", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -4434,7 +4434,7 @@ "cimguiname": "ImFont_GrowIndex", "defaults": {}, "funcname": "GrowIndex", - "location": "imgui:2438", + "location": "imgui:2463", "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -4451,7 +4451,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", - "location": "imgui:2420", + "location": "imgui:2445", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -4479,7 +4479,7 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui:2443", + "location": "imgui:2468", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -4500,7 +4500,7 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", - "location": "imgui:2425", + "location": "imgui:2450", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -4541,7 +4541,7 @@ "cimguiname": "ImFont_RenderChar", "defaults": {}, "funcname": "RenderChar", - "location": "imgui:2432", + "location": "imgui:2457", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const", @@ -4601,7 +4601,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui:2433", + "location": "imgui:2458", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", @@ -4626,7 +4626,7 @@ "cimguiname": "ImFont_SetFallbackChar", "defaults": {}, "funcname": "SetFallbackChar", - "location": "imgui:2442", + "location": "imgui:2467", "ov_cimguiname": "ImFont_SetFallbackChar", "ret": "void", "signature": "(ImWchar)", @@ -4655,7 +4655,7 @@ "cimguiname": "ImFont_SetGlyphVisible", "defaults": {}, "funcname": "SetGlyphVisible", - "location": "imgui:2441", + "location": "imgui:2466", "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -4675,7 +4675,7 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2421", + "location": "imgui:2446", "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -4693,7 +4693,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiColumnData", - "location": "imgui_internal:1000", + "location": "imgui_internal:1006", "ov_cimguiname": "ImGuiColumnData_ImGuiColumnData", "signature": "()", "stname": "ImGuiColumnData" @@ -4732,7 +4732,7 @@ "cimguiname": "ImGuiColumns_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1022", + "location": "imgui_internal:1028", "ov_cimguiname": "ImGuiColumns_Clear", "ret": "void", "signature": "()", @@ -4749,7 +4749,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiColumns", - "location": "imgui_internal:1021", + "location": "imgui_internal:1027", "ov_cimguiname": "ImGuiColumns_ImGuiColumns", "signature": "()", "stname": "ImGuiColumns" @@ -4789,7 +4789,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", - "location": "imgui_internal:1323", + "location": "imgui_internal:1329", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -4832,7 +4832,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:1576", + "location": "imgui:1589", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -4857,7 +4857,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:1577", + "location": "imgui:1590", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -4882,7 +4882,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:1578", + "location": "imgui:1591", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -4903,7 +4903,7 @@ "cimguiname": "ImGuiIO_ClearInputCharacters", "defaults": {}, "funcname": "ClearInputCharacters", - "location": "imgui:1579", + "location": "imgui:1592", "ov_cimguiname": "ImGuiIO_ClearInputCharacters", "ret": "void", "signature": "()", @@ -4920,7 +4920,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:1627", + "location": "imgui:1640", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -4945,6 +4945,27 @@ "stname": "ImGuiIO" } ], + "ImGuiInputTextCallbackData_ClearSelection": [ + { + "args": "(ImGuiInputTextCallbackData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextCallbackData*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", + "defaults": {}, + "funcname": "ClearSelection", + "location": "imgui:1681", + "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextCallbackData" + } + ], "ImGuiInputTextCallbackData_DeleteChars": [ { "args": "(ImGuiInputTextCallbackData* self,int pos,int bytes_count)", @@ -4967,7 +4988,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:1664", + "location": "imgui:1678", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -4988,7 +5009,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:1666", + "location": "imgui:1682", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -5005,7 +5026,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:1663", + "location": "imgui:1677", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -5039,13 +5060,34 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:1665", + "location": "imgui:1679", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", "stname": "ImGuiInputTextCallbackData" } ], + "ImGuiInputTextCallbackData_SelectAll": [ + { + "args": "(ImGuiInputTextCallbackData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextCallbackData*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextCallbackData_SelectAll", + "defaults": {}, + "funcname": "SelectAll", + "location": "imgui:1680", + "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextCallbackData" + } + ], "ImGuiInputTextCallbackData_destroy": [ { "args": "(ImGuiInputTextCallbackData* self)", @@ -5079,7 +5121,7 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:867", + "location": "imgui_internal:873", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -5100,7 +5142,7 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui_internal:876", + "location": "imgui_internal:882", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -5121,7 +5163,7 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": {}, "funcname": "ClearText", - "location": "imgui_internal:866", + "location": "imgui_internal:872", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -5142,7 +5184,7 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", - "location": "imgui_internal:873", + "location": "imgui_internal:879", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -5163,7 +5205,7 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", - "location": "imgui_internal:874", + "location": "imgui_internal:880", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -5184,7 +5226,7 @@ "cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "defaults": {}, "funcname": "GetRedoAvailCount", - "location": "imgui_internal:869", + "location": "imgui_internal:875", "ov_cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "ret": "int", "signature": "()const", @@ -5205,7 +5247,7 @@ "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "defaults": {}, "funcname": "GetUndoAvailCount", - "location": "imgui_internal:868", + "location": "imgui_internal:874", "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "ret": "int", "signature": "()const", @@ -5226,7 +5268,7 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui_internal:875", + "location": "imgui_internal:881", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -5243,7 +5285,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextState", - "location": "imgui_internal:865", + "location": "imgui_internal:871", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "signature": "()", "stname": "ImGuiInputTextState" @@ -5267,7 +5309,7 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": {}, "funcname": "OnKeyPressed", - "location": "imgui_internal:870", + "location": "imgui_internal:876", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", @@ -5288,7 +5330,7 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui_internal:877", + "location": "imgui_internal:883", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -5328,7 +5370,7 @@ "cimguiname": "ImGuiLastItemDataBackup_Backup", "defaults": {}, "funcname": "Backup", - "location": "imgui_internal:1680", + "location": "imgui_internal:1685", "ov_cimguiname": "ImGuiLastItemDataBackup_Backup", "ret": "void", "signature": "()", @@ -5345,7 +5387,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiLastItemDataBackup", - "location": "imgui_internal:1679", + "location": "imgui_internal:1684", "ov_cimguiname": "ImGuiLastItemDataBackup_ImGuiLastItemDataBackup", "signature": "()", "stname": "ImGuiLastItemDataBackup" @@ -5365,7 +5407,7 @@ "cimguiname": "ImGuiLastItemDataBackup_Restore", "defaults": {}, "funcname": "Restore", - "location": "imgui_internal:1681", + "location": "imgui_internal:1686", "ov_cimguiname": "ImGuiLastItemDataBackup_Restore", "ret": "void", "signature": "()const", @@ -5415,7 +5457,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui:1900", + "location": "imgui:1921", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -5436,7 +5478,7 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", - "location": "imgui:1901", + "location": "imgui:1922", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", @@ -5445,29 +5487,17 @@ ], "ImGuiListClipper_ImGuiListClipper": [ { - "args": "(int items_count,float items_height)", - "argsT": [ - { - "name": "items_count", - "type": "int" - }, - { - "name": "items_height", - "type": "float" - } - ], - "argsoriginal": "(int items_count=-1,float items_height=-1.0f)", - "call_args": "(items_count,items_height)", + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", "cimguiname": "ImGuiListClipper_ImGuiListClipper", "constructor": true, - "defaults": { - "items_count": "-1", - "items_height": "-1.0f" - }, + "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:1896", + "location": "imgui:1916", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", - "signature": "(int,float)", + "signature": "()", "stname": "ImGuiListClipper" } ], @@ -5485,7 +5515,7 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", - "location": "imgui:1899", + "location": "imgui:1923", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -5505,7 +5535,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:1897", + "location": "imgui:1917", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -5531,7 +5561,7 @@ "cimguiname": "ImGuiMenuColumns_CalcExtraSpace", "defaults": {}, "funcname": "CalcExtraSpace", - "location": "imgui_internal:842", + "location": "imgui_internal:847", "ov_cimguiname": "ImGuiMenuColumns_CalcExtraSpace", "ret": "float", "signature": "(float)const", @@ -5564,7 +5594,7 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", - "location": "imgui_internal:841", + "location": "imgui_internal:846", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float)", @@ -5581,7 +5611,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", - "location": "imgui_internal:839", + "location": "imgui_internal:844", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -5613,7 +5643,7 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", - "location": "imgui_internal:840", + "location": "imgui_internal:845", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(int,float,bool)", @@ -5653,7 +5683,7 @@ "cimguiname": "ImGuiNavMoveResult_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:905", + "location": "imgui_internal:911", "ov_cimguiname": "ImGuiNavMoveResult_Clear", "ret": "void", "signature": "()", @@ -5670,7 +5700,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNavMoveResult", - "location": "imgui_internal:904", + "location": "imgui_internal:910", "ov_cimguiname": "ImGuiNavMoveResult_ImGuiNavMoveResult", "signature": "()", "stname": "ImGuiNavMoveResult" @@ -5709,7 +5739,7 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:960", + "location": "imgui_internal:966", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -5726,7 +5756,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", - "location": "imgui_internal:959", + "location": "imgui_internal:965", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -5765,7 +5795,7 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:941", + "location": "imgui_internal:947", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -5782,7 +5812,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", - "location": "imgui_internal:940", + "location": "imgui_internal:946", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -5817,7 +5847,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:1767", + "location": "imgui:1785", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -5856,7 +5886,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:1695", + "location": "imgui:1711", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -5873,7 +5903,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:1694", + "location": "imgui:1710", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -5897,7 +5927,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:1696", + "location": "imgui:1712", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -5918,7 +5948,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:1698", + "location": "imgui:1714", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -5939,7 +5969,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:1697", + "location": "imgui:1713", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -5975,7 +6005,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", - "location": "imgui_internal:891", + "location": "imgui_internal:897", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -6015,7 +6045,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:974", + "location": "imgui_internal:980", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndexPtr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -6034,7 +6064,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:975", + "location": "imgui_internal:981", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndexInt", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -6069,7 +6099,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", - "location": "imgui_internal:1093", + "location": "imgui_internal:1099", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -6113,7 +6143,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:1834", + "location": "imgui:1852", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairInt", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" @@ -6136,7 +6166,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:1835", + "location": "imgui:1853", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairFloat", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" @@ -6159,7 +6189,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:1836", + "location": "imgui:1854", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairPtr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -6198,7 +6228,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:1867", + "location": "imgui:1885", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -6219,7 +6249,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:1844", + "location": "imgui:1862", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -6250,7 +6280,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:1847", + "location": "imgui:1865", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -6281,7 +6311,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:1859", + "location": "imgui:1877", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -6312,7 +6342,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:1849", + "location": "imgui:1867", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -6343,7 +6373,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:1860", + "location": "imgui:1878", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -6374,7 +6404,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:1845", + "location": "imgui:1863", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -6405,7 +6435,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:1858", + "location": "imgui:1876", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -6430,7 +6460,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:1851", + "location": "imgui:1869", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -6461,7 +6491,7 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:1861", + "location": "imgui:1879", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -6486,7 +6516,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:1864", + "location": "imgui:1882", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -6515,7 +6545,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:1848", + "location": "imgui:1866", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -6544,7 +6574,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:1850", + "location": "imgui:1868", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -6573,7 +6603,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:1846", + "location": "imgui:1864", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -6602,7 +6632,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:1852", + "location": "imgui:1870", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -6628,7 +6658,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:813", + "location": "imgui_internal:818", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModInt", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -6651,7 +6681,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:814", + "location": "imgui_internal:819", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModFloat", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -6674,7 +6704,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:815", + "location": "imgui_internal:820", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModVec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -6709,7 +6739,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:1483", + "location": "imgui:1496", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -6733,7 +6763,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:1484", + "location": "imgui:1497", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -6777,7 +6807,7 @@ "cimguiname": "ImGuiTabBar_GetTabName", "defaults": {}, "funcname": "GetTabName", - "location": "imgui_internal:1748", + "location": "imgui_internal:1759", "ov_cimguiname": "ImGuiTabBar_GetTabName", "ret": "const char*", "signature": "(const ImGuiTabItem*)const", @@ -6802,7 +6832,7 @@ "cimguiname": "ImGuiTabBar_GetTabOrder", "defaults": {}, "funcname": "GetTabOrder", - "location": "imgui_internal:1747", + "location": "imgui_internal:1758", "ov_cimguiname": "ImGuiTabBar_GetTabOrder", "ret": "int", "signature": "(const ImGuiTabItem*)const", @@ -6819,7 +6849,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", - "location": "imgui_internal:1746", + "location": "imgui_internal:1757", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -6854,7 +6884,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", - "location": "imgui_internal:1715", + "location": "imgui_internal:1723", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -6889,7 +6919,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:1805", + "location": "imgui:1823", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -6919,7 +6949,7 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:1814", + "location": "imgui:1832", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -6949,7 +6979,7 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:1815", + "location": "imgui:1833", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -6979,7 +7009,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:1816", + "location": "imgui:1834", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -7000,7 +7030,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1807", + "location": "imgui:1825", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -7021,7 +7051,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:1813", + "location": "imgui:1831", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -7042,7 +7072,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:1811", + "location": "imgui:1829", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -7082,7 +7112,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:1810", + "location": "imgui:1828", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -7103,7 +7133,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:1808", + "location": "imgui:1826", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -7128,7 +7158,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:1812", + "location": "imgui:1830", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -7149,7 +7179,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:1809", + "location": "imgui:1827", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -7170,7 +7200,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:1778", + "location": "imgui:1796", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -7191,7 +7221,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:1779", + "location": "imgui:1797", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -7223,7 +7253,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:1776", + "location": "imgui:1794", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -7247,7 +7277,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:1775", + "location": "imgui:1793", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -7267,7 +7297,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:1780", + "location": "imgui:1798", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -7298,7 +7328,7 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:1777", + "location": "imgui:1795", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -7334,7 +7364,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:1788", + "location": "imgui:1806", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRangeNil", "signature": "()", "stname": "ImGuiTextRange" @@ -7357,7 +7387,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:1789", + "location": "imgui:1807", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRangeStr", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -7396,7 +7426,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:1790", + "location": "imgui:1808", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -7425,7 +7455,7 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:1791", + "location": "imgui:1809", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -7446,7 +7476,7 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", - "location": "imgui_internal:1078", + "location": "imgui_internal:1084", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -7463,7 +7493,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", - "location": "imgui_internal:1077", + "location": "imgui_internal:1083", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -7498,7 +7528,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowTempData", - "location": "imgui_internal:1526", + "location": "imgui_internal:1531", "ov_cimguiname": "ImGuiWindowTempData_ImGuiWindowTempData", "signature": "()", "stname": "ImGuiWindowTempData" @@ -7537,7 +7567,7 @@ "cimguiname": "ImGuiWindow_CalcFontSize", "defaults": {}, "funcname": "CalcFontSize", - "location": "imgui_internal:1664", + "location": "imgui_internal:1669", "ov_cimguiname": "ImGuiWindow_CalcFontSize", "ret": "float", "signature": "()const", @@ -7568,7 +7598,7 @@ "str_end": "NULL" }, "funcname": "GetID", - "location": "imgui_internal:1654", + "location": "imgui_internal:1659", "ov_cimguiname": "ImGuiWindow_GetIDStr", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -7591,7 +7621,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:1655", + "location": "imgui_internal:1660", "ov_cimguiname": "ImGuiWindow_GetIDPtr", "ret": "ImGuiID", "signature": "(const void*)", @@ -7614,7 +7644,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:1656", + "location": "imgui_internal:1661", "ov_cimguiname": "ImGuiWindow_GetIDInt", "ret": "ImGuiID", "signature": "(int)", @@ -7639,7 +7669,7 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", - "location": "imgui_internal:1660", + "location": "imgui_internal:1665", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -7670,7 +7700,7 @@ "str_end": "NULL" }, "funcname": "GetIDNoKeepAlive", - "location": "imgui_internal:1657", + "location": "imgui_internal:1662", "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAliveStr", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -7693,7 +7723,7 @@ "cimguiname": "ImGuiWindow_GetIDNoKeepAlive", "defaults": {}, "funcname": "GetIDNoKeepAlive", - "location": "imgui_internal:1658", + "location": "imgui_internal:1663", "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAlivePtr", "ret": "ImGuiID", "signature": "(const void*)", @@ -7716,7 +7746,7 @@ "cimguiname": "ImGuiWindow_GetIDNoKeepAlive", "defaults": {}, "funcname": "GetIDNoKeepAlive", - "location": "imgui_internal:1659", + "location": "imgui_internal:1664", "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAliveInt", "ret": "ImGuiID", "signature": "(int)", @@ -7742,7 +7772,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", - "location": "imgui_internal:1650", + "location": "imgui_internal:1655", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -7762,7 +7792,7 @@ "cimguiname": "ImGuiWindow_MenuBarHeight", "defaults": {}, "funcname": "MenuBarHeight", - "location": "imgui_internal:1667", + "location": "imgui_internal:1672", "ov_cimguiname": "ImGuiWindow_MenuBarHeight", "ret": "float", "signature": "()const", @@ -7787,7 +7817,7 @@ "cimguiname": "ImGuiWindow_MenuBarRect", "defaults": {}, "funcname": "MenuBarRect", - "location": "imgui_internal:1668", + "location": "imgui_internal:1673", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "void", @@ -7813,7 +7843,7 @@ "cimguiname": "ImGuiWindow_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:1663", + "location": "imgui_internal:1668", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "void", @@ -7835,7 +7865,7 @@ "cimguiname": "ImGuiWindow_TitleBarHeight", "defaults": {}, "funcname": "TitleBarHeight", - "location": "imgui_internal:1665", + "location": "imgui_internal:1670", "ov_cimguiname": "ImGuiWindow_TitleBarHeight", "ret": "float", "signature": "()const", @@ -7860,7 +7890,7 @@ "cimguiname": "ImGuiWindow_TitleBarRect", "defaults": {}, "funcname": "TitleBarRect", - "location": "imgui_internal:1666", + "location": "imgui_internal:1671", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "void", @@ -7881,7 +7911,7 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1652", + "location": "imgui_internal:1657", "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -7903,7 +7933,7 @@ "cimguiname": "ImPool_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:497", + "location": "imgui_internal:499", "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -7925,7 +7955,7 @@ "cimguiname": "ImPool_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:496", + "location": "imgui_internal:498", "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -7951,7 +7981,7 @@ "cimguiname": "ImPool_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:495", + "location": "imgui_internal:497", "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -7977,7 +8007,7 @@ "cimguiname": "ImPool_GetByIndex", "defaults": {}, "funcname": "GetByIndex", - "location": "imgui_internal:492", + "location": "imgui_internal:494", "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -8003,7 +8033,7 @@ "cimguiname": "ImPool_GetByKey", "defaults": {}, "funcname": "GetByKey", - "location": "imgui_internal:491", + "location": "imgui_internal:493", "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -8029,7 +8059,7 @@ "cimguiname": "ImPool_GetIndex", "defaults": {}, "funcname": "GetIndex", - "location": "imgui_internal:493", + "location": "imgui_internal:495", "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -8055,7 +8085,7 @@ "cimguiname": "ImPool_GetOrAddByKey", "defaults": {}, "funcname": "GetOrAddByKey", - "location": "imgui_internal:494", + "location": "imgui_internal:496", "ov_cimguiname": "ImPool_GetOrAddByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -8077,7 +8107,7 @@ "cimguiname": "ImPool_GetSize", "defaults": {}, "funcname": "GetSize", - "location": "imgui_internal:501", + "location": "imgui_internal:503", "ov_cimguiname": "ImPool_GetSize", "ret": "int", "signature": "()const", @@ -8095,7 +8125,7 @@ "constructor": true, "defaults": {}, "funcname": "ImPool", - "location": "imgui_internal:489", + "location": "imgui_internal:491", "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -8124,7 +8154,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:498", + "location": "imgui_internal:500", "ov_cimguiname": "ImPool_RemoveTPtr", "ret": "void", "signature": "(ImGuiID,const T*)", @@ -8152,7 +8182,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:499", + "location": "imgui_internal:501", "ov_cimguiname": "ImPool_RemovePoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", @@ -8178,7 +8208,7 @@ "cimguiname": "ImPool_Reserve", "defaults": {}, "funcname": "Reserve", - "location": "imgui_internal:500", + "location": "imgui_internal:502", "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -8199,7 +8229,7 @@ "cimguiname": "ImPool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:490", + "location": "imgui_internal:492", "ov_cimguiname": "ImPool_destroy", "realdestructor": true, "ret": "void", @@ -8226,7 +8256,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:436", + "location": "imgui_internal:438", "ov_cimguiname": "ImRect_AddVec2", "ret": "void", "signature": "(const ImVec2)", @@ -8249,7 +8279,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:437", + "location": "imgui_internal:439", "ov_cimguiname": "ImRect_AddRect", "ret": "void", "signature": "(const ImRect)", @@ -8274,7 +8304,7 @@ "cimguiname": "ImRect_ClipWith", "defaults": {}, "funcname": "ClipWith", - "location": "imgui_internal:443", + "location": "imgui_internal:445", "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -8299,7 +8329,7 @@ "cimguiname": "ImRect_ClipWithFull", "defaults": {}, "funcname": "ClipWithFull", - "location": "imgui_internal:444", + "location": "imgui_internal:446", "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -8324,7 +8354,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:433", + "location": "imgui_internal:435", "ov_cimguiname": "ImRect_ContainsVec2", "ret": "bool", "signature": "(const ImVec2)const", @@ -8347,7 +8377,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:434", + "location": "imgui_internal:436", "ov_cimguiname": "ImRect_ContainsRect", "ret": "bool", "signature": "(const ImRect)const", @@ -8372,7 +8402,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:438", + "location": "imgui_internal:440", "ov_cimguiname": "ImRect_ExpandFloat", "ret": "void", "signature": "(const float)", @@ -8395,7 +8425,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:439", + "location": "imgui_internal:441", "ov_cimguiname": "ImRect_ExpandVec2", "ret": "void", "signature": "(const ImVec2)", @@ -8416,7 +8446,7 @@ "cimguiname": "ImRect_Floor", "defaults": {}, "funcname": "Floor", - "location": "imgui_internal:445", + "location": "imgui_internal:447", "ov_cimguiname": "ImRect_Floor", "ret": "void", "signature": "()", @@ -8441,7 +8471,7 @@ "cimguiname": "ImRect_GetBL", "defaults": {}, "funcname": "GetBL", - "location": "imgui_internal:431", + "location": "imgui_internal:433", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "void", @@ -8467,7 +8497,7 @@ "cimguiname": "ImRect_GetBR", "defaults": {}, "funcname": "GetBR", - "location": "imgui_internal:432", + "location": "imgui_internal:434", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "void", @@ -8493,7 +8523,7 @@ "cimguiname": "ImRect_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui_internal:425", + "location": "imgui_internal:427", "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "void", @@ -8515,7 +8545,7 @@ "cimguiname": "ImRect_GetHeight", "defaults": {}, "funcname": "GetHeight", - "location": "imgui_internal:428", + "location": "imgui_internal:430", "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -8540,7 +8570,7 @@ "cimguiname": "ImRect_GetSize", "defaults": {}, "funcname": "GetSize", - "location": "imgui_internal:426", + "location": "imgui_internal:428", "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "void", @@ -8566,7 +8596,7 @@ "cimguiname": "ImRect_GetTL", "defaults": {}, "funcname": "GetTL", - "location": "imgui_internal:429", + "location": "imgui_internal:431", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "void", @@ -8592,7 +8622,7 @@ "cimguiname": "ImRect_GetTR", "defaults": {}, "funcname": "GetTR", - "location": "imgui_internal:430", + "location": "imgui_internal:432", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "void", @@ -8614,7 +8644,7 @@ "cimguiname": "ImRect_GetWidth", "defaults": {}, "funcname": "GetWidth", - "location": "imgui_internal:427", + "location": "imgui_internal:429", "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -8631,7 +8661,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:420", + "location": "imgui_internal:422", "ov_cimguiname": "ImRect_ImRectNil", "signature": "()", "stname": "ImRect" @@ -8654,7 +8684,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:421", + "location": "imgui_internal:423", "ov_cimguiname": "ImRect_ImRectVec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" @@ -8673,7 +8703,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:422", + "location": "imgui_internal:424", "ov_cimguiname": "ImRect_ImRectVec4", "signature": "(const ImVec4)", "stname": "ImRect" @@ -8704,7 +8734,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:423", + "location": "imgui_internal:425", "ov_cimguiname": "ImRect_ImRectFloat", "signature": "(float,float,float,float)", "stname": "ImRect" @@ -8724,7 +8754,7 @@ "cimguiname": "ImRect_IsInverted", "defaults": {}, "funcname": "IsInverted", - "location": "imgui_internal:446", + "location": "imgui_internal:448", "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -8749,7 +8779,7 @@ "cimguiname": "ImRect_Overlaps", "defaults": {}, "funcname": "Overlaps", - "location": "imgui_internal:435", + "location": "imgui_internal:437", "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -8774,7 +8804,7 @@ "cimguiname": "ImRect_ToVec4", "defaults": {}, "funcname": "ToVec4", - "location": "imgui_internal:447", + "location": "imgui_internal:449", "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "void", @@ -8800,7 +8830,7 @@ "cimguiname": "ImRect_Translate", "defaults": {}, "funcname": "Translate", - "location": "imgui_internal:440", + "location": "imgui_internal:442", "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -8825,7 +8855,7 @@ "cimguiname": "ImRect_TranslateX", "defaults": {}, "funcname": "TranslateX", - "location": "imgui_internal:441", + "location": "imgui_internal:443", "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -8850,7 +8880,7 @@ "cimguiname": "ImRect_TranslateY", "defaults": {}, "funcname": "TranslateY", - "location": "imgui_internal:442", + "location": "imgui_internal:444", "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -8886,7 +8916,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:400", + "location": "imgui_internal:402", "ov_cimguiname": "ImVec1_ImVec1Nil", "signature": "()", "stname": "ImVec1" @@ -8905,7 +8935,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:401", + "location": "imgui_internal:403", "ov_cimguiname": "ImVec1_ImVec1Float", "signature": "(float)", "stname": "ImVec1" @@ -8998,7 +9028,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:408", + "location": "imgui_internal:410", "ov_cimguiname": "ImVec2ih_ImVec2ihNil", "signature": "()", "stname": "ImVec2ih" @@ -9021,7 +9051,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:409", + "location": "imgui_internal:411", "ov_cimguiname": "ImVec2ih_ImVec2ihshort", "signature": "(short,short)", "stname": "ImVec2ih" @@ -9040,7 +9070,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:410", + "location": "imgui_internal:412", "ov_cimguiname": "ImVec2ih_ImVec2ihVec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" @@ -9141,7 +9171,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1389", + "location": "imgui:1401", "ov_cimguiname": "ImVector_ImVectorNil", "signature": "()", "stname": "ImVector", @@ -9161,7 +9191,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1390", + "location": "imgui:1402", "ov_cimguiname": "ImVector_ImVectorVector", "signature": "(const ImVector)", "stname": "ImVector", @@ -9186,7 +9216,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:1412", + "location": "imgui:1425", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -9208,7 +9238,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1408", + "location": "imgui:1421", "ov_cimguiname": "ImVector_backNil", "ret": "T*", "retref": "&", @@ -9229,7 +9259,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1409", + "location": "imgui:1422", "ov_cimguiname": "ImVector_back_const", "ret": "const T*", "retref": "&", @@ -9252,7 +9282,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1402", + "location": "imgui:1415", "ov_cimguiname": "ImVector_beginNil", "ret": "T*", "signature": "()", @@ -9272,7 +9302,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1403", + "location": "imgui:1416", "ov_cimguiname": "ImVector_begin_const", "ret": "const T*", "signature": "()const", @@ -9294,7 +9324,7 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:1397", + "location": "imgui:1410", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -9316,7 +9346,7 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:1401", + "location": "imgui:1414", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -9342,7 +9372,7 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:1426", + "location": "imgui:1439", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -9363,7 +9393,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:1392", + "location": "imgui:1404", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -9386,7 +9416,7 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:1394", + "location": "imgui:1406", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -9408,7 +9438,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1404", + "location": "imgui:1417", "ov_cimguiname": "ImVector_endNil", "ret": "T*", "signature": "()", @@ -9428,7 +9458,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1405", + "location": "imgui:1418", "ov_cimguiname": "ImVector_end_const", "ret": "const T*", "signature": "()const", @@ -9454,7 +9484,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1422", + "location": "imgui:1435", "ov_cimguiname": "ImVector_eraseNil", "ret": "T*", "signature": "(const T*)", @@ -9482,7 +9512,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1423", + "location": "imgui:1436", "ov_cimguiname": "ImVector_eraseTPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -9508,7 +9538,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:1424", + "location": "imgui:1437", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -9534,7 +9564,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1427", + "location": "imgui:1440", "ov_cimguiname": "ImVector_findNil", "ret": "T*", "signature": "(const T)", @@ -9558,7 +9588,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1428", + "location": "imgui:1441", "ov_cimguiname": "ImVector_find_const", "ret": "const T*", "signature": "(const T)const", @@ -9584,7 +9614,7 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:1429", + "location": "imgui:1442", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -9610,7 +9640,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:1430", + "location": "imgui:1443", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -9632,7 +9662,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1406", + "location": "imgui:1419", "ov_cimguiname": "ImVector_frontNil", "ret": "T*", "retref": "&", @@ -9653,7 +9683,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1407", + "location": "imgui:1420", "ov_cimguiname": "ImVector_front_const", "ret": "const T*", "retref": "&", @@ -9680,7 +9710,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:1431", + "location": "imgui:1444", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -9710,7 +9740,7 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:1425", + "location": "imgui:1438", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -9718,6 +9748,28 @@ "templated": true } ], + "ImVector_max_size": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_max_size", + "defaults": {}, + "funcname": "max_size", + "location": "imgui:1409", + "ov_cimguiname": "ImVector_max_size", + "ret": "int", + "signature": "()const", + "stname": "ImVector", + "templated": true + } + ], "ImVector_pop_back": [ { "args": "(ImVector* self)", @@ -9732,7 +9784,7 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:1420", + "location": "imgui:1433", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -9758,7 +9810,7 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:1419", + "location": "imgui:1432", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -9784,7 +9836,7 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:1421", + "location": "imgui:1434", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -9810,7 +9862,7 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:1416", + "location": "imgui:1429", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -9836,7 +9888,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1413", + "location": "imgui:1426", "ov_cimguiname": "ImVector_resizeNil", "ret": "void", "signature": "(int)", @@ -9864,7 +9916,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1414", + "location": "imgui:1427", "ov_cimguiname": "ImVector_resizeT", "ret": "void", "signature": "(int,const T)", @@ -9890,7 +9942,7 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:1415", + "location": "imgui:1428", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -9912,7 +9964,7 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:1395", + "location": "imgui:1407", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -9934,7 +9986,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:1396", + "location": "imgui:1408", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -9961,7 +10013,7 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:1410", + "location": "imgui:1423", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector*)", @@ -9989,7 +10041,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui:676", + "location": "imgui:677", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -10011,7 +10063,7 @@ "cimguiname": "igActivateItem", "defaults": {}, "funcname": "ActivateItem", - "location": "imgui_internal:1885", + "location": "imgui_internal:1897", "namespace": "ImGui", "ov_cimguiname": "igActivateItem", "ret": "void", @@ -10090,7 +10142,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "imgui_internal:1970", + "location": "imgui_internal:1983", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -10235,7 +10287,7 @@ "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", - "location": "imgui_internal:1865", + "location": "imgui_internal:1877", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", @@ -10267,7 +10319,7 @@ "flags": "0" }, "funcname": "BeginChildFrame", - "location": "imgui:722", + "location": "imgui:723", "namespace": "ImGui", "ov_cimguiname": "igBeginChildFrame", "ret": "bool", @@ -10299,7 +10351,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "imgui_internal:1914", + "location": "imgui_internal:1926", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -10355,7 +10407,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui:672", + "location": "imgui:673", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -10372,7 +10424,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui:675", + "location": "imgui:676", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -10398,7 +10450,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", - "location": "imgui_internal:1908", + "location": "imgui_internal:1920", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -10618,7 +10670,7 @@ "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", - "location": "imgui_internal:1870", + "location": "imgui_internal:1882", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -10709,7 +10761,7 @@ "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", - "location": "imgui_internal:1925", + "location": "imgui_internal:1937", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", @@ -10785,7 +10837,7 @@ "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", - "location": "imgui_internal:1871", + "location": "imgui_internal:1883", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", "ret": "void", @@ -10807,7 +10859,7 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", - "location": "imgui_internal:1794", + "location": "imgui_internal:1805", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -10829,7 +10881,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", - "location": "imgui_internal:1793", + "location": "imgui_internal:1804", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -10851,7 +10903,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", - "location": "imgui_internal:1792", + "location": "imgui_internal:1803", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -10989,7 +11041,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "imgui_internal:1980", + "location": "imgui_internal:1993", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -11022,7 +11074,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "imgui_internal:1967", + "location": "imgui_internal:1980", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -11056,7 +11108,7 @@ "cimguiname": "igCalcItemSize", "defaults": {}, "funcname": "CalcItemSize", - "location": "imgui_internal:1851", + "location": "imgui_internal:1863", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -11108,7 +11160,7 @@ "cimguiname": "igCalcListClipping", "defaults": {}, "funcname": "CalcListClipping", - "location": "imgui:721", + "location": "imgui:722", "namespace": "ImGui", "ov_cimguiname": "igCalcListClipping", "ret": "void", @@ -11150,7 +11202,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:726", + "location": "imgui:727", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -11185,7 +11237,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", - "location": "imgui_internal:1884", + "location": "imgui_internal:1896", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -11211,7 +11263,7 @@ "cimguiname": "igCalcWindowExpectedSize", "defaults": {}, "funcname": "CalcWindowExpectedSize", - "location": "imgui_internal:1780", + "location": "imgui_internal:1791", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowExpectedSize", @@ -11238,7 +11290,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", - "location": "imgui_internal:1852", + "location": "imgui_internal:1864", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -11262,7 +11314,7 @@ "want_capture_keyboard_value": "true" }, "funcname": "CaptureKeyboardFromApp", - "location": "imgui:742", + "location": "imgui:743", "namespace": "ImGui", "ov_cimguiname": "igCaptureKeyboardFromApp", "ret": "void", @@ -11286,7 +11338,7 @@ "want_capture_mouse_value": "true" }, "funcname": "CaptureMouseFromApp", - "location": "imgui:762", + "location": "imgui:763", "namespace": "ImGui", "ov_cimguiname": "igCaptureMouseFromApp", "ret": "void", @@ -11359,7 +11411,7 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", - "location": "imgui_internal:1835", + "location": "imgui_internal:1846", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -11376,7 +11428,7 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", - "location": "imgui_internal:1909", + "location": "imgui_internal:1921", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -11393,7 +11445,7 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", - "location": "imgui_internal:1814", + "location": "imgui_internal:1825", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -11419,7 +11471,7 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", - "location": "imgui_internal:1968", + "location": "imgui_internal:1981", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -11462,7 +11514,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", - "location": "imgui_internal:1867", + "location": "imgui_internal:1879", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -11488,7 +11540,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", - "location": "imgui_internal:1868", + "location": "imgui_internal:1880", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -11514,7 +11566,7 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", - "location": "imgui_internal:1969", + "location": "imgui_internal:1982", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -11631,7 +11683,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:730", + "location": "imgui:731", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -11676,7 +11728,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:732", + "location": "imgui:733", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -11721,7 +11773,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:731", + "location": "imgui:732", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -11747,7 +11799,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:729", + "location": "imgui:730", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -11838,7 +11890,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", - "location": "imgui_internal:2013", + "location": "imgui_internal:2027", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -11933,7 +11985,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", - "location": "imgui_internal:2014", + "location": "imgui_internal:2028", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -11963,7 +12015,7 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", - "location": "imgui_internal:2012", + "location": "imgui_internal:2026", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -12161,7 +12213,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", - "location": "imgui_internal:1815", + "location": "imgui_internal:1826", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -12171,7 +12223,7 @@ ], "igDataTypeApplyOp": [ { - "args": "(ImGuiDataType data_type,int op,void* output,void* arg_1,const void* arg_2)", + "args": "(ImGuiDataType data_type,int op,void* output,const void* arg_1,const void* arg_2)", "argsT": [ { "name": "data_type", @@ -12187,23 +12239,23 @@ }, { "name": "arg_1", - "type": "void*" + "type": "const void*" }, { "name": "arg_2", "type": "const void*" } ], - "argsoriginal": "(ImGuiDataType data_type,int op,void* output,void* arg_1,const void* arg_2)", + "argsoriginal": "(ImGuiDataType data_type,int op,void* output,const void* arg_1,const void* arg_2)", "call_args": "(data_type,op,output,arg_1,arg_2)", "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", - "location": "imgui_internal:2000", + "location": "imgui_internal:2013", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", - "signature": "(ImGuiDataType,int,void*,void*,const void*)", + "signature": "(ImGuiDataType,int,void*,const void*,const void*)", "stname": "" } ], @@ -12237,7 +12289,7 @@ "cimguiname": "igDataTypeApplyOpFromText", "defaults": {}, "funcname": "DataTypeApplyOpFromText", - "location": "imgui_internal:2001", + "location": "imgui_internal:2014", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOpFromText", "ret": "bool", @@ -12271,7 +12323,7 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", - "location": "imgui_internal:2002", + "location": "imgui_internal:2016", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -12279,6 +12331,36 @@ "stname": "" } ], + "igDataTypeCompare": [ + { + "args": "(ImGuiDataType data_type,const void* arg_1,const void* arg_2)", + "argsT": [ + { + "name": "data_type", + "type": "ImGuiDataType" + }, + { + "name": "arg_1", + "type": "const void*" + }, + { + "name": "arg_2", + "type": "const void*" + } + ], + "argsoriginal": "(ImGuiDataType data_type,const void* arg_1,const void* arg_2)", + "call_args": "(data_type,arg_1,arg_2)", + "cimguiname": "igDataTypeCompare", + "defaults": {}, + "funcname": "DataTypeCompare", + "location": "imgui_internal:2015", + "namespace": "ImGui", + "ov_cimguiname": "igDataTypeCompare", + "ret": "int", + "signature": "(ImGuiDataType,const void*,const void*)", + "stname": "" + } + ], "igDataTypeFormatString": [ { "args": "(char* buf,int buf_size,ImGuiDataType data_type,const void* p_data,const char* format)", @@ -12309,7 +12391,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", - "location": "imgui_internal:1999", + "location": "imgui_internal:2012", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -12331,7 +12413,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", - "location": "imgui_internal:1998", + "location": "imgui_internal:2011", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -12377,7 +12459,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:778", + "location": "imgui:779", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -12401,7 +12483,7 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "imgui_internal:2028", + "location": "imgui_internal:2042", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -12418,7 +12500,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", - "location": "imgui_internal:2029", + "location": "imgui_internal:2043", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -12492,7 +12574,7 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", - "location": "imgui_internal:1981", + "location": "imgui_internal:1994", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -13217,7 +13299,7 @@ "cimguiname": "igEndChildFrame", "defaults": {}, "funcname": "EndChildFrame", - "location": "imgui:723", + "location": "imgui:724", "namespace": "ImGui", "ov_cimguiname": "igEndChildFrame", "ret": "void", @@ -13234,7 +13316,7 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", - "location": "imgui_internal:1915", + "location": "imgui_internal:1927", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -13268,7 +13350,7 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui:674", + "location": "imgui:675", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -13285,7 +13367,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui:677", + "location": "imgui:678", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -13464,7 +13546,7 @@ "cimguiname": "igFindBestWindowPosForPopup", "defaults": {}, "funcname": "FindBestWindowPosForPopup", - "location": "imgui_internal:1873", + "location": "imgui_internal:1885", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -13506,14 +13588,12 @@ "type": "ImGuiPopupPositionPolicy" } ], - "argsoriginal": "(const ImVec2& ref_pos,const ImVec2& size,ImGuiDir* last_dir,const ImRect& r_outer,const ImRect& r_avoid,ImGuiPopupPositionPolicy policy=ImGuiPopupPositionPolicy_Default)", + "argsoriginal": "(const ImVec2& ref_pos,const ImVec2& size,ImGuiDir* last_dir,const ImRect& r_outer,const ImRect& r_avoid,ImGuiPopupPositionPolicy policy)", "call_args": "(ref_pos,size,last_dir,r_outer,r_avoid,policy)", "cimguiname": "igFindBestWindowPosForPopupEx", - "defaults": { - "policy": "ImGuiPopupPositionPolicy_Default" - }, + "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", - "location": "imgui_internal:1874", + "location": "imgui_internal:1886", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -13540,7 +13620,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", - "location": "imgui_internal:1920", + "location": "imgui_internal:1932", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiColumns*", @@ -13562,7 +13642,7 @@ "cimguiname": "igFindOrCreateWindowSettings", "defaults": {}, "funcname": "FindOrCreateWindowSettings", - "location": "imgui_internal:1817", + "location": "imgui_internal:1828", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateWindowSettings", "ret": "ImGuiWindowSettings*", @@ -13590,7 +13670,7 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "imgui_internal:1947", + "location": "imgui_internal:1960", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -13612,7 +13692,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", - "location": "imgui_internal:1818", + "location": "imgui_internal:1829", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -13634,7 +13714,7 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", - "location": "imgui_internal:1777", + "location": "imgui_internal:1788", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -13656,7 +13736,7 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", - "location": "imgui_internal:1778", + "location": "imgui_internal:1789", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -13678,7 +13758,7 @@ "cimguiname": "igFindWindowSettings", "defaults": {}, "funcname": "FindWindowSettings", - "location": "imgui_internal:1816", + "location": "imgui_internal:1827", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettings", "ret": "ImGuiWindowSettings*", @@ -13704,7 +13784,7 @@ "cimguiname": "igFocusTopMostWindowUnderOne", "defaults": {}, "funcname": "FocusTopMostWindowUnderOne", - "location": "imgui_internal:1791", + "location": "imgui_internal:1802", "namespace": "ImGui", "ov_cimguiname": "igFocusTopMostWindowUnderOne", "ret": "void", @@ -13726,7 +13806,7 @@ "cimguiname": "igFocusWindow", "defaults": {}, "funcname": "FocusWindow", - "location": "imgui_internal:1790", + "location": "imgui_internal:1801", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", @@ -13752,7 +13832,7 @@ "cimguiname": "igFocusableItemRegister", "defaults": {}, "funcname": "FocusableItemRegister", - "location": "imgui_internal:1849", + "location": "imgui_internal:1861", "namespace": "ImGui", "ov_cimguiname": "igFocusableItemRegister", "ret": "bool", @@ -13774,7 +13854,7 @@ "cimguiname": "igFocusableItemUnregister", "defaults": {}, "funcname": "FocusableItemUnregister", - "location": "imgui_internal:1850", + "location": "imgui_internal:1862", "namespace": "ImGui", "ov_cimguiname": "igFocusableItemUnregister", "ret": "void", @@ -13796,7 +13876,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", - "location": "imgui_internal:2025", + "location": "imgui_internal:2039", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -13818,7 +13898,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", - "location": "imgui_internal:2024", + "location": "imgui_internal:2038", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -13835,7 +13915,7 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", - "location": "imgui_internal:1831", + "location": "imgui_internal:1842", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -13852,7 +13932,7 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui:715", + "location": "imgui:716", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList", "ret": "ImDrawList*", @@ -13869,7 +13949,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:766", + "location": "imgui:767", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -13980,7 +14060,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", - "location": "imgui_internal:1922", + "location": "imgui_internal:1934", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -14030,7 +14110,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", - "location": "imgui_internal:1921", + "location": "imgui_internal:1933", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -14097,7 +14177,7 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", - "location": "imgui_internal:1919", + "location": "imgui_internal:1931", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -14165,7 +14245,7 @@ "cimguiname": "igGetContentRegionMaxAbs", "defaults": {}, "funcname": "GetContentRegionMaxAbs", - "location": "imgui_internal:1857", + "location": "imgui_internal:1869", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMaxAbs", @@ -14200,7 +14280,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", - "location": "imgui_internal:1776", + "location": "imgui_internal:1787", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -14217,7 +14297,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", - "location": "imgui_internal:1775", + "location": "imgui_internal:1786", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -14337,7 +14417,7 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", - "location": "imgui_internal:1798", + "location": "imgui_internal:1809", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -14354,7 +14434,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui:678", + "location": "imgui:679", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -14388,7 +14468,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui:717", + "location": "imgui:718", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -14405,7 +14485,7 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", - "location": "imgui_internal:1832", + "location": "imgui_internal:1843", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -14422,7 +14502,7 @@ "cimguiname": "igGetFocusScopeID", "defaults": {}, "funcname": "GetFocusScopeID", - "location": "imgui_internal:1894", + "location": "imgui_internal:1906", "namespace": "ImGui", "ov_cimguiname": "igGetFocusScopeID", "ret": "ImGuiID", @@ -14496,7 +14576,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui:716", + "location": "imgui:717", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawListNil", "ret": "ImDrawList*", @@ -14516,7 +14596,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:1799", + "location": "imgui_internal:1810", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawListWindowPtr", "ret": "ImDrawList*", @@ -14533,7 +14613,7 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui:714", + "location": "imgui:715", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -14584,7 +14664,7 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", - "location": "imgui_internal:1836", + "location": "imgui_internal:1847", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -14658,6 +14738,36 @@ "stname": "" } ], + "igGetIDWithSeed": [ + { + "args": "(const char* str_id_begin,const char* str_id_end,ImGuiID seed)", + "argsT": [ + { + "name": "str_id_begin", + "type": "const char*" + }, + { + "name": "str_id_end", + "type": "const char*" + }, + { + "name": "seed", + "type": "ImGuiID" + } + ], + "argsoriginal": "(const char* str_id_begin,const char* str_id_end,ImGuiID seed)", + "call_args": "(str_id_begin,str_id_end,seed)", + "cimguiname": "igGetIDWithSeed", + "defaults": {}, + "funcname": "GetIDWithSeed", + "location": "imgui_internal:1852", + "namespace": "ImGui", + "ov_cimguiname": "igGetIDWithSeed", + "ret": "ImGuiID", + "signature": "(const char*,const char*,ImGuiID)", + "stname": "" + } + ], "igGetIO": [ { "args": "()", @@ -14690,7 +14800,7 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", - "location": "imgui_internal:2009", + "location": "imgui_internal:2023", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -14707,7 +14817,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui_internal:1829", + "location": "imgui_internal:1840", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -14729,7 +14839,7 @@ "cimguiname": "igGetItemRectMax", "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui:706", + "location": "imgui:707", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -14752,7 +14862,7 @@ "cimguiname": "igGetItemRectMin", "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui:705", + "location": "imgui:706", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -14775,7 +14885,7 @@ "cimguiname": "igGetItemRectSize", "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui:707", + "location": "imgui:708", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -14793,7 +14903,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", - "location": "imgui_internal:1830", + "location": "imgui_internal:1841", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -14815,7 +14925,7 @@ "cimguiname": "igGetKeyIndex", "defaults": {}, "funcname": "GetKeyIndex", - "location": "imgui:737", + "location": "imgui:738", "namespace": "ImGui", "ov_cimguiname": "igGetKeyIndex", "ret": "int", @@ -14845,7 +14955,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:741", + "location": "imgui:742", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -14862,7 +14972,7 @@ "cimguiname": "igGetMergedKeyModFlags", "defaults": {}, "funcname": "GetMergedKeyModFlags", - "location": "imgui_internal:1905", + "location": "imgui_internal:1917", "namespace": "ImGui", "ov_cimguiname": "igGetMergedKeyModFlags", "ret": "ImGuiKeyModFlags", @@ -14879,7 +14989,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:760", + "location": "imgui:761", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -14912,7 +15022,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:758", + "location": "imgui:759", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -14935,7 +15045,7 @@ "cimguiname": "igGetMousePos", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:755", + "location": "imgui:756", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -14958,7 +15068,7 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:756", + "location": "imgui:757", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -14985,7 +15095,7 @@ "cimguiname": "igGetNavInputAmount", "defaults": {}, "funcname": "GetNavInputAmount", - "location": "imgui_internal:1882", + "location": "imgui_internal:1894", "namespace": "ImGui", "ov_cimguiname": "igGetNavInputAmount", "ret": "float", @@ -15026,7 +15136,7 @@ "slow_factor": "0.0f" }, "funcname": "GetNavInputAmount2d", - "location": "imgui_internal:1883", + "location": "imgui_internal:1895", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetNavInputAmount2d", @@ -15112,7 +15222,7 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui:720", + "location": "imgui:721", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -15152,7 +15262,7 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui:718", + "location": "imgui:719", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -15226,7 +15336,7 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", - "location": "imgui:713", + "location": "imgui:714", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -15243,7 +15353,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", - "location": "imgui_internal:1872", + "location": "imgui_internal:1884", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -15303,7 +15413,7 @@ "cimguiname": "igGetWindowAllowedExtentRect", "defaults": {}, "funcname": "GetWindowAllowedExtentRect", - "location": "imgui_internal:1783", + "location": "imgui_internal:1794", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowAllowedExtentRect", @@ -15450,7 +15560,7 @@ "cimguiname": "igGetWindowResizeID", "defaults": {}, "funcname": "GetWindowResizeID", - "location": "imgui_internal:1976", + "location": "imgui_internal:1989", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeID", "ret": "ImGuiID", @@ -15476,7 +15586,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", - "location": "imgui_internal:1975", + "location": "imgui_internal:1988", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -15506,7 +15616,7 @@ "cimguiname": "igGetWindowScrollbarRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", - "location": "imgui_internal:1974", + "location": "imgui_internal:1987", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -15569,7 +15679,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:351", + "location": "imgui_internal:353", "ov_cimguiname": "igImAbsFloat", "ret": "float", "signature": "(float)", @@ -15588,7 +15698,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:352", + "location": "imgui_internal:354", "ov_cimguiname": "igImAbsdouble", "ret": "double", "signature": "(double)", @@ -15613,7 +15723,7 @@ "cimguiname": "igImAlphaBlendColors", "defaults": {}, "funcname": "ImAlphaBlendColors", - "location": "imgui_internal:255", + "location": "imgui_internal:257", "ov_cimguiname": "igImAlphaBlendColors", "ret": "ImU32", "signature": "(ImU32,ImU32)", @@ -15654,7 +15764,7 @@ "cimguiname": "igImBezierCalc", "defaults": {}, "funcname": "ImBezierCalc", - "location": "imgui_internal:385", + "location": "imgui_internal:387", "nonUDT": 1, "ov_cimguiname": "igImBezierCalc", "ret": "void", @@ -15700,7 +15810,7 @@ "cimguiname": "igImBezierClosestPoint", "defaults": {}, "funcname": "ImBezierClosestPoint", - "location": "imgui_internal:386", + "location": "imgui_internal:388", "nonUDT": 1, "ov_cimguiname": "igImBezierClosestPoint", "ret": "void", @@ -15746,7 +15856,7 @@ "cimguiname": "igImBezierClosestPointCasteljau", "defaults": {}, "funcname": "ImBezierClosestPointCasteljau", - "location": "imgui_internal:387", + "location": "imgui_internal:389", "nonUDT": 1, "ov_cimguiname": "igImBezierClosestPointCasteljau", "ret": "void", @@ -15772,7 +15882,7 @@ "cimguiname": "igImBitArrayClearBit", "defaults": {}, "funcname": "ImBitArrayClearBit", - "location": "imgui_internal:452", + "location": "imgui_internal:454", "ov_cimguiname": "igImBitArrayClearBit", "ret": "void", "signature": "(ImU32*,int)", @@ -15797,7 +15907,7 @@ "cimguiname": "igImBitArraySetBit", "defaults": {}, "funcname": "ImBitArraySetBit", - "location": "imgui_internal:453", + "location": "imgui_internal:455", "ov_cimguiname": "igImBitArraySetBit", "ret": "void", "signature": "(ImU32*,int)", @@ -15826,7 +15936,7 @@ "cimguiname": "igImBitArraySetBitRange", "defaults": {}, "funcname": "ImBitArraySetBitRange", - "location": "imgui_internal:454", + "location": "imgui_internal:456", "ov_cimguiname": "igImBitArraySetBitRange", "ret": "void", "signature": "(ImU32*,int,int)", @@ -15851,7 +15961,7 @@ "cimguiname": "igImBitArrayTestBit", "defaults": {}, "funcname": "ImBitArrayTestBit", - "location": "imgui_internal:451", + "location": "imgui_internal:453", "ov_cimguiname": "igImBitArrayTestBit", "ret": "bool", "signature": "(const ImU32*,int)", @@ -15872,7 +15982,7 @@ "cimguiname": "igImCharIsBlankA", "defaults": {}, "funcname": "ImCharIsBlankA", - "location": "imgui_internal:280", + "location": "imgui_internal:282", "ov_cimguiname": "igImCharIsBlankA", "ret": "bool", "signature": "(char)", @@ -15893,7 +16003,7 @@ "cimguiname": "igImCharIsBlankW", "defaults": {}, "funcname": "ImCharIsBlankW", - "location": "imgui_internal:281", + "location": "imgui_internal:283", "ov_cimguiname": "igImCharIsBlankW", "ret": "bool", "signature": "(unsigned int)", @@ -15926,7 +16036,7 @@ "cimguiname": "igImClamp", "defaults": {}, "funcname": "ImClamp", - "location": "imgui_internal:368", + "location": "imgui_internal:370", "nonUDT": 1, "ov_cimguiname": "igImClamp", "ret": "void", @@ -15952,7 +16062,7 @@ "cimguiname": "igImDot", "defaults": {}, "funcname": "ImDot", - "location": "imgui_internal:379", + "location": "imgui_internal:381", "ov_cimguiname": "igImDot", "ret": "float", "signature": "(const ImVec2,const ImVec2)", @@ -15973,7 +16083,7 @@ "cimguiname": "igImFileClose", "defaults": {}, "funcname": "ImFileClose", - "location": "imgui_internal:325", + "location": "imgui_internal:327", "ov_cimguiname": "igImFileClose", "ret": "bool", "signature": "(ImFileHandle)", @@ -15994,7 +16104,7 @@ "cimguiname": "igImFileGetSize", "defaults": {}, "funcname": "ImFileGetSize", - "location": "imgui_internal:326", + "location": "imgui_internal:328", "ov_cimguiname": "igImFileGetSize", "ret": "ImU64", "signature": "(ImFileHandle)", @@ -16030,7 +16140,7 @@ "padding_bytes": "0" }, "funcname": "ImFileLoadToMemory", - "location": "imgui_internal:332", + "location": "imgui_internal:334", "ov_cimguiname": "igImFileLoadToMemory", "ret": "void*", "signature": "(const char*,const char*,size_t*,int)", @@ -16055,7 +16165,7 @@ "cimguiname": "igImFileOpen", "defaults": {}, "funcname": "ImFileOpen", - "location": "imgui_internal:324", + "location": "imgui_internal:326", "ov_cimguiname": "igImFileOpen", "ret": "ImFileHandle", "signature": "(const char*,const char*)", @@ -16088,7 +16198,7 @@ "cimguiname": "igImFileRead", "defaults": {}, "funcname": "ImFileRead", - "location": "imgui_internal:327", + "location": "imgui_internal:329", "ov_cimguiname": "igImFileRead", "ret": "ImU64", "signature": "(void*,ImU64,ImU64,ImFileHandle)", @@ -16121,7 +16231,7 @@ "cimguiname": "igImFileWrite", "defaults": {}, "funcname": "ImFileWrite", - "location": "imgui_internal:328", + "location": "imgui_internal:330", "ov_cimguiname": "igImFileWrite", "ret": "ImU64", "signature": "(const void*,ImU64,ImU64,ImFileHandle)", @@ -16142,7 +16252,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:376", + "location": "imgui_internal:378", "ov_cimguiname": "igImFloorFloat", "ret": "float", "signature": "(float)", @@ -16165,7 +16275,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:377", + "location": "imgui_internal:379", "nonUDT": 1, "ov_cimguiname": "igImFloorVec2", "ret": "void", @@ -16187,7 +16297,7 @@ "cimguiname": "igImFontAtlasBuildFinish", "defaults": {}, "funcname": "ImFontAtlasBuildFinish", - "location": "imgui_internal:2038", + "location": "imgui_internal:2052", "ov_cimguiname": "igImFontAtlasBuildFinish", "ret": "void", "signature": "(ImFontAtlas*)", @@ -16208,7 +16318,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", - "location": "imgui_internal:2035", + "location": "imgui_internal:2049", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -16233,7 +16343,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", - "location": "imgui_internal:2040", + "location": "imgui_internal:2054", "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "ret": "void", "signature": "(unsigned char[256],float)", @@ -16278,7 +16388,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", - "location": "imgui_internal:2041", + "location": "imgui_internal:2055", "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "ret": "void", "signature": "(const unsigned char[256],unsigned char*,int,int,int,int,int)", @@ -16303,7 +16413,7 @@ "cimguiname": "igImFontAtlasBuildPackCustomRects", "defaults": {}, "funcname": "ImFontAtlasBuildPackCustomRects", - "location": "imgui_internal:2037", + "location": "imgui_internal:2051", "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", "ret": "void", "signature": "(ImFontAtlas*,void*)", @@ -16352,7 +16462,7 @@ "cimguiname": "igImFontAtlasBuildRender1bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender1bppRectFromString", - "location": "imgui_internal:2039", + "location": "imgui_internal:2053", "ov_cimguiname": "igImFontAtlasBuildRender1bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)", @@ -16389,7 +16499,7 @@ "cimguiname": "igImFontAtlasBuildSetupFont", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFont", - "location": "imgui_internal:2036", + "location": "imgui_internal:2050", "ov_cimguiname": "igImFontAtlasBuildSetupFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)", @@ -16410,7 +16520,7 @@ "cimguiname": "igImFontAtlasBuildWithStbTruetype", "defaults": {}, "funcname": "ImFontAtlasBuildWithStbTruetype", - "location": "imgui_internal:2034", + "location": "imgui_internal:2048", "ov_cimguiname": "igImFontAtlasBuildWithStbTruetype", "ret": "bool", "signature": "(ImFontAtlas*)", @@ -16444,7 +16554,7 @@ "defaults": {}, "funcname": "ImFormatString", "isvararg": "...)", - "location": "imgui_internal:274", + "location": "imgui_internal:276", "ov_cimguiname": "igImFormatString", "ret": "int", "signature": "(char*,size_t,const char*,...)", @@ -16477,7 +16587,7 @@ "cimguiname": "igImFormatStringV", "defaults": {}, "funcname": "ImFormatStringV", - "location": "imgui_internal:275", + "location": "imgui_internal:277", "ov_cimguiname": "igImFormatStringV", "ret": "int", "signature": "(char*,size_t,const char*,va_list)", @@ -16502,7 +16612,7 @@ "cimguiname": "igImGetDirQuadrantFromDelta", "defaults": {}, "funcname": "ImGetDirQuadrantFromDelta", - "location": "imgui_internal:393", + "location": "imgui_internal:395", "ov_cimguiname": "igImGetDirQuadrantFromDelta", "ret": "ImGuiDir", "signature": "(float,float)", @@ -16533,7 +16643,7 @@ "seed": "0" }, "funcname": "ImHashData", - "location": "imgui_internal:245", + "location": "imgui_internal:247", "ov_cimguiname": "igImHashData", "ret": "ImU32", "signature": "(const void*,size_t,ImU32)", @@ -16565,7 +16675,7 @@ "seed": "0" }, "funcname": "ImHashStr", - "location": "imgui_internal:246", + "location": "imgui_internal:248", "ov_cimguiname": "igImHashStr", "ret": "ImU32", "signature": "(const char*,size_t,ImU32)", @@ -16590,7 +16700,7 @@ "cimguiname": "igImInvLength", "defaults": {}, "funcname": "ImInvLength", - "location": "imgui_internal:375", + "location": "imgui_internal:377", "ov_cimguiname": "igImInvLength", "ret": "float", "signature": "(const ImVec2,float)", @@ -16611,7 +16721,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:258", + "location": "imgui_internal:260", "ov_cimguiname": "igImIsPowerOfTwo", "ret": "bool", "signature": "(int)", @@ -16632,7 +16742,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:373", + "location": "imgui_internal:375", "ov_cimguiname": "igImLengthSqrVec2", "ret": "float", "signature": "(const ImVec2)", @@ -16651,7 +16761,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:374", + "location": "imgui_internal:376", "ov_cimguiname": "igImLengthSqrVec4", "ret": "float", "signature": "(const ImVec4)", @@ -16684,7 +16794,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:369", + "location": "imgui_internal:371", "nonUDT": 1, "ov_cimguiname": "igImLerpVec2Float", "ret": "void", @@ -16716,7 +16826,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:370", + "location": "imgui_internal:372", "nonUDT": 1, "ov_cimguiname": "igImLerpVec2Vec2", "ret": "void", @@ -16748,7 +16858,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:371", + "location": "imgui_internal:373", "nonUDT": 1, "ov_cimguiname": "igImLerpVec4", "ret": "void", @@ -16782,7 +16892,7 @@ "cimguiname": "igImLineClosestPoint", "defaults": {}, "funcname": "ImLineClosestPoint", - "location": "imgui_internal:388", + "location": "imgui_internal:390", "nonUDT": 1, "ov_cimguiname": "igImLineClosestPoint", "ret": "void", @@ -16812,7 +16922,7 @@ "cimguiname": "igImLinearSweep", "defaults": {}, "funcname": "ImLinearSweep", - "location": "imgui_internal:381", + "location": "imgui_internal:383", "ov_cimguiname": "igImLinearSweep", "ret": "float", "signature": "(float,float,float)", @@ -16833,7 +16943,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:349", + "location": "imgui_internal:351", "ov_cimguiname": "igImLogFloat", "ret": "float", "signature": "(float)", @@ -16852,7 +16962,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:350", + "location": "imgui_internal:352", "ov_cimguiname": "igImLogdouble", "ret": "double", "signature": "(double)", @@ -16881,7 +16991,7 @@ "cimguiname": "igImMax", "defaults": {}, "funcname": "ImMax", - "location": "imgui_internal:367", + "location": "imgui_internal:369", "nonUDT": 1, "ov_cimguiname": "igImMax", "ret": "void", @@ -16911,7 +17021,7 @@ "cimguiname": "igImMin", "defaults": {}, "funcname": "ImMin", - "location": "imgui_internal:366", + "location": "imgui_internal:368", "nonUDT": 1, "ov_cimguiname": "igImMin", "ret": "void", @@ -16937,7 +17047,7 @@ "cimguiname": "igImModPositive", "defaults": {}, "funcname": "ImModPositive", - "location": "imgui_internal:378", + "location": "imgui_internal:380", "ov_cimguiname": "igImModPositive", "ret": "int", "signature": "(int,int)", @@ -16966,7 +17076,7 @@ "cimguiname": "igImMul", "defaults": {}, "funcname": "ImMul", - "location": "imgui_internal:382", + "location": "imgui_internal:384", "nonUDT": 1, "ov_cimguiname": "igImMul", "ret": "void", @@ -16988,7 +17098,7 @@ "cimguiname": "igImParseFormatFindEnd", "defaults": {}, "funcname": "ImParseFormatFindEnd", - "location": "imgui_internal:277", + "location": "imgui_internal:279", "ov_cimguiname": "igImParseFormatFindEnd", "ret": "const char*", "signature": "(const char*)", @@ -17009,7 +17119,7 @@ "cimguiname": "igImParseFormatFindStart", "defaults": {}, "funcname": "ImParseFormatFindStart", - "location": "imgui_internal:276", + "location": "imgui_internal:278", "ov_cimguiname": "igImParseFormatFindStart", "ret": "const char*", "signature": "(const char*)", @@ -17034,7 +17144,7 @@ "cimguiname": "igImParseFormatPrecision", "defaults": {}, "funcname": "ImParseFormatPrecision", - "location": "imgui_internal:279", + "location": "imgui_internal:281", "ov_cimguiname": "igImParseFormatPrecision", "ret": "int", "signature": "(const char*,int)", @@ -17063,7 +17173,7 @@ "cimguiname": "igImParseFormatTrimDecorations", "defaults": {}, "funcname": "ImParseFormatTrimDecorations", - "location": "imgui_internal:278", + "location": "imgui_internal:280", "ov_cimguiname": "igImParseFormatTrimDecorations", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -17088,7 +17198,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:347", + "location": "imgui_internal:349", "ov_cimguiname": "igImPowFloat", "ret": "float", "signature": "(float,float)", @@ -17111,7 +17221,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:348", + "location": "imgui_internal:350", "ov_cimguiname": "igImPowdouble", "ret": "double", "signature": "(double,double)", @@ -17144,7 +17254,7 @@ "cimguiname": "igImRotate", "defaults": {}, "funcname": "ImRotate", - "location": "imgui_internal:380", + "location": "imgui_internal:382", "nonUDT": 1, "ov_cimguiname": "igImRotate", "ret": "void", @@ -17166,7 +17276,7 @@ "cimguiname": "igImSaturate", "defaults": {}, "funcname": "ImSaturate", - "location": "imgui_internal:372", + "location": "imgui_internal:374", "ov_cimguiname": "igImSaturate", "ret": "float", "signature": "(float)", @@ -17187,7 +17297,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:353", + "location": "imgui_internal:355", "ov_cimguiname": "igImSignFloat", "ret": "float", "signature": "(float)", @@ -17206,7 +17316,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:354", + "location": "imgui_internal:356", "ov_cimguiname": "igImSigndouble", "ret": "double", "signature": "(double)", @@ -17227,7 +17337,7 @@ "cimguiname": "igImStrSkipBlank", "defaults": {}, "funcname": "ImStrSkipBlank", - "location": "imgui_internal:273", + "location": "imgui_internal:275", "ov_cimguiname": "igImStrSkipBlank", "ret": "const char*", "signature": "(const char*)", @@ -17248,7 +17358,7 @@ "cimguiname": "igImStrTrimBlanks", "defaults": {}, "funcname": "ImStrTrimBlanks", - "location": "imgui_internal:272", + "location": "imgui_internal:274", "ov_cimguiname": "igImStrTrimBlanks", "ret": "void", "signature": "(char*)", @@ -17273,7 +17383,7 @@ "cimguiname": "igImStrbolW", "defaults": {}, "funcname": "ImStrbolW", - "location": "imgui_internal:270", + "location": "imgui_internal:272", "ov_cimguiname": "igImStrbolW", "ret": "const ImWchar*", "signature": "(const ImWchar*,const ImWchar*)", @@ -17302,7 +17412,7 @@ "cimguiname": "igImStrchrRange", "defaults": {}, "funcname": "ImStrchrRange", - "location": "imgui_internal:267", + "location": "imgui_internal:269", "ov_cimguiname": "igImStrchrRange", "ret": "const char*", "signature": "(const char*,const char*,char)", @@ -17323,7 +17433,7 @@ "cimguiname": "igImStrdup", "defaults": {}, "funcname": "ImStrdup", - "location": "imgui_internal:265", + "location": "imgui_internal:267", "ov_cimguiname": "igImStrdup", "ret": "char*", "signature": "(const char*)", @@ -17352,7 +17462,7 @@ "cimguiname": "igImStrdupcpy", "defaults": {}, "funcname": "ImStrdupcpy", - "location": "imgui_internal:266", + "location": "imgui_internal:268", "ov_cimguiname": "igImStrdupcpy", "ret": "char*", "signature": "(char*,size_t*,const char*)", @@ -17377,7 +17487,7 @@ "cimguiname": "igImStreolRange", "defaults": {}, "funcname": "ImStreolRange", - "location": "imgui_internal:269", + "location": "imgui_internal:271", "ov_cimguiname": "igImStreolRange", "ret": "const char*", "signature": "(const char*,const char*)", @@ -17402,7 +17512,7 @@ "cimguiname": "igImStricmp", "defaults": {}, "funcname": "ImStricmp", - "location": "imgui_internal:262", + "location": "imgui_internal:264", "ov_cimguiname": "igImStricmp", "ret": "int", "signature": "(const char*,const char*)", @@ -17435,7 +17545,7 @@ "cimguiname": "igImStristr", "defaults": {}, "funcname": "ImStristr", - "location": "imgui_internal:271", + "location": "imgui_internal:273", "ov_cimguiname": "igImStristr", "ret": "const char*", "signature": "(const char*,const char*,const char*,const char*)", @@ -17456,7 +17566,7 @@ "cimguiname": "igImStrlenW", "defaults": {}, "funcname": "ImStrlenW", - "location": "imgui_internal:268", + "location": "imgui_internal:270", "ov_cimguiname": "igImStrlenW", "ret": "int", "signature": "(const ImWchar*)", @@ -17485,7 +17595,7 @@ "cimguiname": "igImStrncpy", "defaults": {}, "funcname": "ImStrncpy", - "location": "imgui_internal:264", + "location": "imgui_internal:266", "ov_cimguiname": "igImStrncpy", "ret": "void", "signature": "(char*,const char*,size_t)", @@ -17514,7 +17624,7 @@ "cimguiname": "igImStrnicmp", "defaults": {}, "funcname": "ImStrnicmp", - "location": "imgui_internal:263", + "location": "imgui_internal:265", "ov_cimguiname": "igImStrnicmp", "ret": "int", "signature": "(const char*,const char*,size_t)", @@ -17543,7 +17653,7 @@ "cimguiname": "igImTextCharFromUtf8", "defaults": {}, "funcname": "ImTextCharFromUtf8", - "location": "imgui_internal:285", + "location": "imgui_internal:287", "ov_cimguiname": "igImTextCharFromUtf8", "ret": "int", "signature": "(unsigned int*,const char*,const char*)", @@ -17568,7 +17678,7 @@ "cimguiname": "igImTextCountCharsFromUtf8", "defaults": {}, "funcname": "ImTextCountCharsFromUtf8", - "location": "imgui_internal:287", + "location": "imgui_internal:289", "ov_cimguiname": "igImTextCountCharsFromUtf8", "ret": "int", "signature": "(const char*,const char*)", @@ -17593,7 +17703,7 @@ "cimguiname": "igImTextCountUtf8BytesFromChar", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromChar", - "location": "imgui_internal:288", + "location": "imgui_internal:290", "ov_cimguiname": "igImTextCountUtf8BytesFromChar", "ret": "int", "signature": "(const char*,const char*)", @@ -17618,7 +17728,7 @@ "cimguiname": "igImTextCountUtf8BytesFromStr", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromStr", - "location": "imgui_internal:289", + "location": "imgui_internal:291", "ov_cimguiname": "igImTextCountUtf8BytesFromStr", "ret": "int", "signature": "(const ImWchar*,const ImWchar*)", @@ -17657,7 +17767,7 @@ "in_remaining": "NULL" }, "funcname": "ImTextStrFromUtf8", - "location": "imgui_internal:286", + "location": "imgui_internal:288", "ov_cimguiname": "igImTextStrFromUtf8", "ret": "int", "signature": "(ImWchar*,int,const char*,const char*,const char**)", @@ -17690,7 +17800,7 @@ "cimguiname": "igImTextStrToUtf8", "defaults": {}, "funcname": "ImTextStrToUtf8", - "location": "imgui_internal:284", + "location": "imgui_internal:286", "ov_cimguiname": "igImTextStrToUtf8", "ret": "int", "signature": "(char*,int,const ImWchar*,const ImWchar*)", @@ -17719,7 +17829,7 @@ "cimguiname": "igImTriangleArea", "defaults": {}, "funcname": "ImTriangleArea", - "location": "imgui_internal:392", + "location": "imgui_internal:394", "ov_cimguiname": "igImTriangleArea", "ret": "float", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -17767,7 +17877,7 @@ "cimguiname": "igImTriangleBarycentricCoords", "defaults": {}, "funcname": "ImTriangleBarycentricCoords", - "location": "imgui_internal:391", + "location": "imgui_internal:393", "ov_cimguiname": "igImTriangleBarycentricCoords", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -17804,7 +17914,7 @@ "cimguiname": "igImTriangleClosestPoint", "defaults": {}, "funcname": "ImTriangleClosestPoint", - "location": "imgui_internal:390", + "location": "imgui_internal:392", "nonUDT": 1, "ov_cimguiname": "igImTriangleClosestPoint", "ret": "void", @@ -17838,7 +17948,7 @@ "cimguiname": "igImTriangleContainsPoint", "defaults": {}, "funcname": "ImTriangleContainsPoint", - "location": "imgui_internal:389", + "location": "imgui_internal:391", "ov_cimguiname": "igImTriangleContainsPoint", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", @@ -17859,7 +17969,7 @@ "cimguiname": "igImUpperPowerOfTwo", "defaults": {}, "funcname": "ImUpperPowerOfTwo", - "location": "imgui_internal:259", + "location": "imgui_internal:261", "ov_cimguiname": "igImUpperPowerOfTwo", "ret": "int", "signature": "(int)", @@ -18007,7 +18117,7 @@ "cimguiname": "igImageButtonEx", "defaults": {}, "funcname": "ImageButtonEx", - "location": "imgui_internal:1973", + "location": "imgui_internal:1986", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", @@ -18053,7 +18163,7 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", - "location": "imgui_internal:1802", + "location": "imgui_internal:1813", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -18601,7 +18711,7 @@ "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "imgui_internal:2005", + "location": "imgui_internal:2019", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -18756,7 +18866,7 @@ "cimguiname": "igIsActiveIdUsingKey", "defaults": {}, "funcname": "IsActiveIdUsingKey", - "location": "imgui_internal:1900", + "location": "imgui_internal:1912", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingKey", "ret": "bool", @@ -18778,7 +18888,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", - "location": "imgui_internal:1898", + "location": "imgui_internal:1910", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -18800,7 +18910,7 @@ "cimguiname": "igIsActiveIdUsingNavInput", "defaults": {}, "funcname": "IsActiveIdUsingNavInput", - "location": "imgui_internal:1899", + "location": "imgui_internal:1911", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavInput", "ret": "bool", @@ -18817,7 +18927,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui:703", + "location": "imgui:704", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -18834,7 +18944,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui:704", + "location": "imgui:705", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -18851,7 +18961,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui:702", + "location": "imgui:703", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -18868,7 +18978,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:754", + "location": "imgui:755", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -18898,7 +19008,7 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", - "location": "imgui_internal:1847", + "location": "imgui_internal:1859", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -18915,7 +19025,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", - "location": "imgui_internal:1910", + "location": "imgui_internal:1922", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -18932,7 +19042,7 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui:698", + "location": "imgui:699", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -18949,7 +19059,7 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", - "location": "imgui:693", + "location": "imgui:694", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -18973,7 +19083,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui:695", + "location": "imgui:696", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -18990,7 +19100,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui:699", + "location": "imgui:700", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -19007,7 +19117,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui:700", + "location": "imgui:701", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -19024,7 +19134,7 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui:697", + "location": "imgui:698", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -19041,7 +19151,7 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui:694", + "location": "imgui:695", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -19065,7 +19175,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui:692", + "location": "imgui:693", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -19082,7 +19192,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui:701", + "location": "imgui:702", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -19099,7 +19209,7 @@ "cimguiname": "igIsItemToggledSelection", "defaults": {}, "funcname": "IsItemToggledSelection", - "location": "imgui_internal:1856", + "location": "imgui_internal:1868", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -19116,7 +19226,7 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui:696", + "location": "imgui:697", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -19138,7 +19248,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:738", + "location": "imgui:739", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown", "ret": "bool", @@ -19166,7 +19276,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:739", + "location": "imgui:740", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed", "ret": "bool", @@ -19194,7 +19304,7 @@ "repeat": "true" }, "funcname": "IsKeyPressedMap", - "location": "imgui_internal:1902", + "location": "imgui_internal:1914", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressedMap", "ret": "bool", @@ -19216,7 +19326,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:740", + "location": "imgui:741", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased", "ret": "bool", @@ -19244,7 +19354,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:749", + "location": "imgui:750", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked", "ret": "bool", @@ -19266,7 +19376,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:751", + "location": "imgui:752", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked", "ret": "bool", @@ -19288,7 +19398,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:748", + "location": "imgui:749", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown", "ret": "bool", @@ -19316,7 +19426,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "imgui_internal:1901", + "location": "imgui_internal:1913", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -19344,7 +19454,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:757", + "location": "imgui:758", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -19376,7 +19486,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:752", + "location": "imgui:753", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -19400,7 +19510,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:753", + "location": "imgui:754", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -19422,7 +19532,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:750", + "location": "imgui:751", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased", "ret": "bool", @@ -19444,7 +19554,7 @@ "cimguiname": "igIsNavInputDown", "defaults": {}, "funcname": "IsNavInputDown", - "location": "imgui_internal:1903", + "location": "imgui_internal:1915", "namespace": "ImGui", "ov_cimguiname": "igIsNavInputDown", "ret": "bool", @@ -19470,7 +19580,7 @@ "cimguiname": "igIsNavInputTest", "defaults": {}, "funcname": "IsNavInputTest", - "location": "imgui_internal:1904", + "location": "imgui_internal:1916", "namespace": "ImGui", "ov_cimguiname": "igIsNavInputTest", "ret": "bool", @@ -19522,7 +19632,7 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", - "location": "imgui_internal:1869", + "location": "imgui_internal:1881", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpenID", "ret": "bool", @@ -19544,7 +19654,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:711", + "location": "imgui:712", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisibleNil", "ret": "bool", @@ -19568,7 +19678,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:712", + "location": "imgui:713", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisibleVec2", "ret": "bool", @@ -19611,7 +19721,7 @@ "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", - "location": "imgui_internal:1781", + "location": "imgui_internal:1792", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -19698,7 +19808,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", - "location": "imgui_internal:1782", + "location": "imgui_internal:1793", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -19730,7 +19840,7 @@ "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "imgui_internal:1845", + "location": "imgui_internal:1857", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -19756,7 +19866,7 @@ "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", - "location": "imgui_internal:1846", + "location": "imgui_internal:1858", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", @@ -19784,7 +19894,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:1843", + "location": "imgui_internal:1855", "namespace": "ImGui", "ov_cimguiname": "igItemSizeVec2", "ret": "void", @@ -19810,7 +19920,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:1844", + "location": "imgui_internal:1856", "namespace": "ImGui", "ov_cimguiname": "igItemSizeRect", "ret": "void", @@ -19832,7 +19942,7 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", - "location": "imgui_internal:1838", + "location": "imgui_internal:1849", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -20074,7 +20184,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:772", + "location": "imgui:773", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -20102,7 +20212,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:773", + "location": "imgui:774", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -20128,7 +20238,7 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", - "location": "imgui_internal:1861", + "location": "imgui_internal:1873", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -20145,7 +20255,7 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", - "location": "imgui:666", + "location": "imgui:667", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -20162,7 +20272,7 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", - "location": "imgui:665", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -20194,7 +20304,7 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "imgui_internal:1948", + "location": "imgui_internal:1961", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -20221,7 +20331,7 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui:667", + "location": "imgui:668", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -20246,7 +20356,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "imgui_internal:1862", + "location": "imgui_internal:1874", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -20270,7 +20380,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui:664", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -20299,7 +20409,7 @@ "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui:663", + "location": "imgui:664", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -20323,7 +20433,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui:662", + "location": "imgui:663", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -20340,7 +20450,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:1812", + "location": "imgui_internal:1823", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirtyNil", "ret": "void", @@ -20360,7 +20470,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:1813", + "location": "imgui_internal:1824", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirtyWindowPtr", "ret": "void", @@ -20382,7 +20492,7 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", - "location": "imgui_internal:1839", + "location": "imgui_internal:1850", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -20404,7 +20514,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:784", + "location": "imgui:785", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -20426,7 +20536,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:785", + "location": "imgui:786", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -20524,7 +20634,7 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", - "location": "imgui_internal:1877", + "location": "imgui_internal:1889", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -20541,7 +20651,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", - "location": "imgui_internal:1878", + "location": "imgui_internal:1890", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -20558,7 +20668,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", - "location": "imgui_internal:1879", + "location": "imgui_internal:1891", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -20592,7 +20702,7 @@ "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", - "location": "imgui_internal:1880", + "location": "imgui_internal:1892", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -20618,7 +20728,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", - "location": "imgui_internal:1881", + "location": "imgui_internal:1893", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -20705,35 +20815,6 @@ "stname": "" } ], - "igOpenPopupContextItem": [ - { - "args": "(const char* str_id,ImGuiPopupFlags popup_flags)", - "argsT": [ - { - "name": "str_id", - "type": "const char*" - }, - { - "name": "popup_flags", - "type": "ImGuiPopupFlags" - } - ], - "argsoriginal": "(const char* str_id=((void*)0),ImGuiPopupFlags popup_flags=1)", - "call_args": "(str_id,popup_flags)", - "cimguiname": "igOpenPopupContextItem", - "defaults": { - "popup_flags": "1", - "str_id": "NULL" - }, - "funcname": "OpenPopupContextItem", - "location": "imgui:623", - "namespace": "ImGui", - "ov_cimguiname": "igOpenPopupContextItem", - "ret": "bool", - "signature": "(const char*,ImGuiPopupFlags)", - "stname": "" - } - ], "igOpenPopupEx": [ { "args": "(ImGuiID id,ImGuiPopupFlags popup_flags)", @@ -20754,7 +20835,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "imgui_internal:1866", + "location": "imgui_internal:1878", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -20762,6 +20843,35 @@ "stname": "" } ], + "igOpenPopupOnItemClick": [ + { + "args": "(const char* str_id,ImGuiPopupFlags popup_flags)", + "argsT": [ + { + "name": "str_id", + "type": "const char*" + }, + { + "name": "popup_flags", + "type": "ImGuiPopupFlags" + } + ], + "argsoriginal": "(const char* str_id=((void*)0),ImGuiPopupFlags popup_flags=1)", + "call_args": "(str_id,popup_flags)", + "cimguiname": "igOpenPopupOnItemClick", + "defaults": { + "popup_flags": "1", + "str_id": "NULL" + }, + "funcname": "OpenPopupOnItemClick", + "location": "imgui:623", + "namespace": "ImGui", + "ov_cimguiname": "igOpenPopupOnItemClick", + "ret": "void", + "signature": "(const char*,ImGuiPopupFlags)", + "stname": "" + } + ], "igPlotEx": [ { "args": "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size)", @@ -20814,7 +20924,7 @@ "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", - "location": "imgui_internal:2017", + "location": "imgui_internal:2031", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", @@ -21107,7 +21217,7 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:682", + "location": "imgui:683", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -21124,7 +21234,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", - "location": "imgui_internal:1918", + "location": "imgui_internal:1930", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -21141,7 +21251,7 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", - "location": "imgui_internal:1893", + "location": "imgui_internal:1905", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -21192,7 +21302,7 @@ "cimguiname": "igPopItemFlag", "defaults": {}, "funcname": "PopItemFlag", - "location": "imgui_internal:1855", + "location": "imgui_internal:1867", "namespace": "ImGui", "ov_cimguiname": "igPopItemFlag", "ret": "void", @@ -21381,7 +21491,7 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", - "location": "imgui:681", + "location": "imgui:682", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -21403,7 +21513,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", - "location": "imgui_internal:1916", + "location": "imgui_internal:1928", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -21420,7 +21530,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", - "location": "imgui_internal:1917", + "location": "imgui_internal:1929", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -21442,7 +21552,7 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", - "location": "imgui_internal:1892", + "location": "imgui_internal:1904", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -21576,7 +21686,7 @@ "cimguiname": "igPushItemFlag", "defaults": {}, "funcname": "PushItemFlag", - "location": "imgui_internal:1854", + "location": "imgui_internal:1866", "namespace": "ImGui", "ov_cimguiname": "igPushItemFlag", "ret": "void", @@ -21624,7 +21734,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", - "location": "imgui_internal:1853", + "location": "imgui_internal:1865", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -21646,7 +21756,7 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", - "location": "imgui_internal:1840", + "location": "imgui_internal:1851", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -21881,7 +21991,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "imgui_internal:1951", + "location": "imgui_internal:1964", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -21919,7 +22029,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", - "location": "imgui_internal:1955", + "location": "imgui_internal:1968", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -21949,7 +22059,7 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", - "location": "imgui_internal:1952", + "location": "imgui_internal:1965", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -21983,7 +22093,7 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", - "location": "imgui_internal:1953", + "location": "imgui_internal:1966", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -22036,7 +22146,7 @@ "rounding_corners_flags": "~0" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "imgui_internal:1945", + "location": "imgui_internal:1958", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -22077,7 +22187,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "imgui_internal:1943", + "location": "imgui_internal:1956", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -22109,7 +22219,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "imgui_internal:1944", + "location": "imgui_internal:1957", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -22155,7 +22265,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", - "location": "imgui_internal:1954", + "location": "imgui_internal:1967", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -22187,7 +22297,7 @@ "flags": "ImGuiNavHighlightFlags_TypeDefault" }, "funcname": "RenderNavHighlight", - "location": "imgui_internal:1946", + "location": "imgui_internal:1959", "namespace": "ImGui", "ov_cimguiname": "igRenderNavHighlight", "ret": "void", @@ -22229,7 +22339,7 @@ "cimguiname": "igRenderRectFilledRangeH", "defaults": {}, "funcname": "RenderRectFilledRangeH", - "location": "imgui_internal:1956", + "location": "imgui_internal:1969", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledRangeH", "ret": "void", @@ -22267,7 +22377,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", - "location": "imgui_internal:1957", + "location": "imgui_internal:1970", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -22304,7 +22414,7 @@ "text_end": "NULL" }, "funcname": "RenderText", - "location": "imgui_internal:1938", + "location": "imgui_internal:1951", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -22353,7 +22463,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "imgui_internal:1940", + "location": "imgui_internal:1953", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -22406,7 +22516,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "imgui_internal:1941", + "location": "imgui_internal:1954", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -22456,7 +22566,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", - "location": "imgui_internal:1942", + "location": "imgui_internal:1955", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -22490,7 +22600,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", - "location": "imgui_internal:1939", + "location": "imgui_internal:1952", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -22514,7 +22624,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:759", + "location": "imgui:760", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -22565,7 +22675,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:774", + "location": "imgui:775", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -22589,7 +22699,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:775", + "location": "imgui:776", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -22619,7 +22729,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", - "location": "imgui_internal:1826", + "location": "imgui_internal:1837", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToBringRectIntoView", @@ -22642,7 +22752,7 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", - "location": "imgui_internal:1971", + "location": "imgui_internal:1984", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -22688,7 +22798,7 @@ "cimguiname": "igScrollbarEx", "defaults": {}, "funcname": "ScrollbarEx", - "location": "imgui_internal:1972", + "location": "imgui_internal:1985", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -22800,7 +22910,7 @@ "cimguiname": "igSeparatorEx", "defaults": {}, "funcname": "SeparatorEx", - "location": "imgui_internal:1977", + "location": "imgui_internal:1990", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", @@ -22826,7 +22936,7 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", - "location": "imgui_internal:1833", + "location": "imgui_internal:1844", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -22862,7 +22972,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:783", + "location": "imgui:784", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -22884,7 +22994,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:767", + "location": "imgui:768", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -23002,7 +23112,7 @@ "cimguiname": "igSetCurrentFont", "defaults": {}, "funcname": "SetCurrentFont", - "location": "imgui_internal:1797", + "location": "imgui_internal:1808", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -23126,7 +23236,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui:673", + "location": "imgui:674", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -23152,7 +23262,7 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", - "location": "imgui_internal:1834", + "location": "imgui_internal:1845", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -23174,7 +23284,7 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", - "location": "imgui_internal:1837", + "location": "imgui_internal:1848", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -23191,7 +23301,7 @@ "cimguiname": "igSetItemAllowOverlap", "defaults": {}, "funcname": "SetItemAllowOverlap", - "location": "imgui:708", + "location": "imgui:709", "namespace": "ImGui", "ov_cimguiname": "igSetItemAllowOverlap", "ret": "void", @@ -23208,7 +23318,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui:686", + "location": "imgui:687", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -23232,7 +23342,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui:687", + "location": "imgui:688", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -23266,7 +23376,7 @@ "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", - "location": "imgui_internal:1848", + "location": "imgui_internal:1860", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -23288,7 +23398,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:761", + "location": "imgui:762", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -23318,7 +23428,7 @@ "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", - "location": "imgui_internal:1886", + "location": "imgui_internal:1898", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -23352,7 +23462,7 @@ "cimguiname": "igSetNavIDWithRectRel", "defaults": {}, "funcname": "SetNavIDWithRectRel", - "location": "imgui_internal:1887", + "location": "imgui_internal:1899", "namespace": "ImGui", "ov_cimguiname": "igSetNavIDWithRectRel", "ret": "void", @@ -23546,7 +23656,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", - "location": "imgui_internal:1821", + "location": "imgui_internal:1832", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -23662,14 +23772,12 @@ "type": "float" } ], - "argsoriginal": "(ImGuiWindow* window,float local_x,float center_x_ratio=0.5f)", + "argsoriginal": "(ImGuiWindow* window,float local_x,float center_x_ratio)", "call_args": "(window,local_x,center_x_ratio)", "cimguiname": "igSetScrollFromPosX", - "defaults": { - "center_x_ratio": "0.5f" - }, + "defaults": {}, "funcname": "SetScrollFromPosX", - "location": "imgui_internal:1824", + "location": "imgui_internal:1835", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosXWindowPtr", "ret": "void", @@ -23720,14 +23828,12 @@ "type": "float" } ], - "argsoriginal": "(ImGuiWindow* window,float local_y,float center_y_ratio=0.5f)", + "argsoriginal": "(ImGuiWindow* window,float local_y,float center_y_ratio)", "call_args": "(window,local_y,center_y_ratio)", "cimguiname": "igSetScrollFromPosY", - "defaults": { - "center_y_ratio": "0.5f" - }, + "defaults": {}, "funcname": "SetScrollFromPosY", - "location": "imgui_internal:1825", + "location": "imgui_internal:1836", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosYWindowPtr", "ret": "void", @@ -23805,23 +23911,23 @@ "stname": "" }, { - "args": "(ImGuiWindow* window,float new_scroll_x)", + "args": "(ImGuiWindow* window,float scroll_x)", "argsT": [ { "name": "window", "type": "ImGuiWindow*" }, { - "name": "new_scroll_x", + "name": "scroll_x", "type": "float" } ], - "argsoriginal": "(ImGuiWindow* window,float new_scroll_x)", - "call_args": "(window,new_scroll_x)", + "argsoriginal": "(ImGuiWindow* window,float scroll_x)", + "call_args": "(window,scroll_x)", "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui_internal:1822", + "location": "imgui_internal:1833", "namespace": "ImGui", "ov_cimguiname": "igSetScrollXWindowPtr", "ret": "void", @@ -23851,23 +23957,23 @@ "stname": "" }, { - "args": "(ImGuiWindow* window,float new_scroll_y)", + "args": "(ImGuiWindow* window,float scroll_y)", "argsT": [ { "name": "window", "type": "ImGuiWindow*" }, { - "name": "new_scroll_y", + "name": "scroll_y", "type": "float" } ], - "argsoriginal": "(ImGuiWindow* window,float new_scroll_y)", - "call_args": "(window,new_scroll_y)", + "argsoriginal": "(ImGuiWindow* window,float scroll_y)", + "call_args": "(window,scroll_y)", "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui_internal:1823", + "location": "imgui_internal:1834", "namespace": "ImGui", "ov_cimguiname": "igSetScrollYWindowPtr", "ret": "void", @@ -23889,7 +23995,7 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui:719", + "location": "imgui:720", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -23911,7 +24017,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui:658", + "location": "imgui:659", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -23990,7 +24096,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "imgui_internal:1913", + "location": "imgui_internal:1925", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -24078,7 +24184,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui_internal:1786", + "location": "imgui_internal:1797", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsedWindowPtr", "ret": "void", @@ -24167,7 +24273,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", - "location": "imgui_internal:1787", + "location": "imgui_internal:1798", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -24255,7 +24361,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui_internal:1784", + "location": "imgui_internal:1795", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPosWindowPtr", "ret": "void", @@ -24343,7 +24449,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui_internal:1785", + "location": "imgui_internal:1796", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSizeWindowPtr", "ret": "void", @@ -24389,7 +24495,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "imgui_internal:2020", + "location": "imgui_internal:2034", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -24439,7 +24545,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", - "location": "imgui_internal:2021", + "location": "imgui_internal:2035", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -24626,7 +24732,7 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", - "location": "imgui_internal:1858", + "location": "imgui_internal:1870", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -24648,7 +24754,7 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", - "location": "imgui_internal:1803", + "location": "imgui_internal:1814", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -24749,7 +24855,7 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", - "location": "imgui_internal:1982", + "location": "imgui_internal:1995", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -25307,7 +25413,7 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "imgui_internal:1983", + "location": "imgui_internal:1996", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -25329,7 +25435,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", - "location": "imgui_internal:1807", + "location": "imgui_internal:1818", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -25427,7 +25533,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", - "location": "imgui_internal:1928", + "location": "imgui_internal:1940", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -25453,7 +25559,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", - "location": "imgui_internal:1926", + "location": "imgui_internal:1938", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -25461,7 +25567,29 @@ "stname": "" } ], - "igTabBarQueueChangeTabOrder": [ + "igTabBarProcessReorder": [ + { + "args": "(ImGuiTabBar* tab_bar)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar)", + "call_args": "(tab_bar)", + "cimguiname": "igTabBarProcessReorder", + "defaults": {}, + "funcname": "TabBarProcessReorder", + "location": "imgui_internal:1942", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarProcessReorder", + "ret": "bool", + "signature": "(ImGuiTabBar*)", + "stname": "" + } + ], + "igTabBarQueueReorder": [ { "args": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir)", "argsT": [ @@ -25480,12 +25608,12 @@ ], "argsoriginal": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir)", "call_args": "(tab_bar,tab,dir)", - "cimguiname": "igTabBarQueueChangeTabOrder", + "cimguiname": "igTabBarQueueReorder", "defaults": {}, - "funcname": "TabBarQueueChangeTabOrder", - "location": "imgui_internal:1929", + "funcname": "TabBarQueueReorder", + "location": "imgui_internal:1941", "namespace": "ImGui", - "ov_cimguiname": "igTabBarQueueChangeTabOrder", + "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", "signature": "(ImGuiTabBar*,const ImGuiTabItem*,int)", "stname": "" @@ -25509,7 +25637,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", - "location": "imgui_internal:1927", + "location": "imgui_internal:1939", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -25543,7 +25671,7 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", - "location": "imgui_internal:1932", + "location": "imgui_internal:1945", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -25551,6 +25679,34 @@ "stname": "" } ], + "igTabItemButton": [ + { + "args": "(const char* label,ImGuiTabItemFlags flags)", + "argsT": [ + { + "name": "label", + "type": "const char*" + }, + { + "name": "flags", + "type": "ImGuiTabItemFlags" + } + ], + "argsoriginal": "(const char* label,ImGuiTabItemFlags flags=0)", + "call_args": "(label,flags)", + "cimguiname": "igTabItemButton", + "defaults": { + "flags": "0" + }, + "funcname": "TabItemButton", + "location": "imgui:658", + "namespace": "ImGui", + "ov_cimguiname": "igTabItemButton", + "ret": "bool", + "signature": "(const char*,ImGuiTabItemFlags)", + "stname": "" + } + ], "igTabItemCalcSize": [ { "args": "(ImVec2 *pOut,const char* label,bool has_close_button)", @@ -25573,7 +25729,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:1931", + "location": "imgui_internal:1944", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize", @@ -25608,7 +25764,7 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", - "location": "imgui_internal:1930", + "location": "imgui_internal:1943", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -25658,7 +25814,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", - "location": "imgui_internal:1933", + "location": "imgui_internal:1946", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "bool", @@ -25680,7 +25836,7 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", - "location": "imgui_internal:2008", + "location": "imgui_internal:2022", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -25733,7 +25889,7 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "imgui_internal:2007", + "location": "imgui_internal:2021", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -25775,7 +25931,7 @@ "cimguiname": "igTempInputText", "defaults": {}, "funcname": "TempInputText", - "location": "imgui_internal:2006", + "location": "imgui_internal:2020", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -25949,7 +26105,7 @@ "text_end": "NULL" }, "funcname": "TextEx", - "location": "imgui_internal:1966", + "location": "imgui_internal:1979", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -26172,7 +26328,7 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "imgui_internal:1984", + "location": "imgui_internal:1997", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -26200,7 +26356,7 @@ "flags": "0" }, "funcname": "TreeNodeBehaviorIsOpen", - "location": "imgui_internal:1985", + "location": "imgui_internal:1998", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehaviorIsOpen", "ret": "bool", @@ -26501,7 +26657,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", - "location": "imgui_internal:1986", + "location": "imgui_internal:1999", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -26542,7 +26698,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "imgui_internal:1806", + "location": "imgui_internal:1817", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -26559,7 +26715,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "imgui_internal:1809", + "location": "imgui_internal:1820", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -26576,7 +26732,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "imgui_internal:1808", + "location": "imgui_internal:1819", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -26606,7 +26762,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", - "location": "imgui_internal:1779", + "location": "imgui_internal:1790", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index 7e1489e..bb88427 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -11,7 +11,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:472" +defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:474" defs["ImBitVector_Clear"][1]["ov_cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["ret"] = "void" defs["ImBitVector_Clear"][1]["signature"] = "()" @@ -32,7 +32,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:475" +defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:477" defs["ImBitVector_ClearBit"][1]["ov_cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["ret"] = "void" defs["ImBitVector_ClearBit"][1]["signature"] = "(int)" @@ -53,7 +53,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:471" +defs["ImBitVector_Create"][1]["location"] = "imgui_internal:473" defs["ImBitVector_Create"][1]["ov_cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["ret"] = "void" defs["ImBitVector_Create"][1]["signature"] = "(int)" @@ -74,7 +74,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:474" +defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:476" defs["ImBitVector_SetBit"][1]["ov_cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["ret"] = "void" defs["ImBitVector_SetBit"][1]["signature"] = "(int)" @@ -95,7 +95,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:473" +defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:475" defs["ImBitVector_TestBit"][1]["ov_cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["ret"] = "bool" defs["ImBitVector_TestBit"][1]["signature"] = "(int)const" @@ -116,7 +116,7 @@ defs["ImChunkStream_alloc_chunk"][1]["call_args"] = "(sz)" defs["ImChunkStream_alloc_chunk"][1]["cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["defaults"] = {} defs["ImChunkStream_alloc_chunk"][1]["funcname"] = "alloc_chunk" -defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:517" +defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:519" defs["ImChunkStream_alloc_chunk"][1]["ov_cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["ret"] = "T*" defs["ImChunkStream_alloc_chunk"][1]["signature"] = "(size_t)" @@ -135,7 +135,7 @@ defs["ImChunkStream_begin"][1]["call_args"] = "()" defs["ImChunkStream_begin"][1]["cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["defaults"] = {} defs["ImChunkStream_begin"][1]["funcname"] = "begin" -defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:518" +defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:520" defs["ImChunkStream_begin"][1]["ov_cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["ret"] = "T*" defs["ImChunkStream_begin"][1]["signature"] = "()" @@ -157,7 +157,7 @@ defs["ImChunkStream_chunk_size"][1]["call_args"] = "(p)" defs["ImChunkStream_chunk_size"][1]["cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["defaults"] = {} defs["ImChunkStream_chunk_size"][1]["funcname"] = "chunk_size" -defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:520" +defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:522" defs["ImChunkStream_chunk_size"][1]["ov_cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["ret"] = "int" defs["ImChunkStream_chunk_size"][1]["signature"] = "(const T*)" @@ -176,7 +176,7 @@ defs["ImChunkStream_clear"][1]["call_args"] = "()" defs["ImChunkStream_clear"][1]["cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["defaults"] = {} defs["ImChunkStream_clear"][1]["funcname"] = "clear" -defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:514" +defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:516" defs["ImChunkStream_clear"][1]["ov_cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["ret"] = "void" defs["ImChunkStream_clear"][1]["signature"] = "()" @@ -195,7 +195,7 @@ defs["ImChunkStream_empty"][1]["call_args"] = "()" defs["ImChunkStream_empty"][1]["cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["defaults"] = {} defs["ImChunkStream_empty"][1]["funcname"] = "empty" -defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:515" +defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:517" defs["ImChunkStream_empty"][1]["ov_cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["ret"] = "bool" defs["ImChunkStream_empty"][1]["signature"] = "()const" @@ -214,7 +214,7 @@ defs["ImChunkStream_end"][1]["call_args"] = "()" defs["ImChunkStream_end"][1]["cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["defaults"] = {} defs["ImChunkStream_end"][1]["funcname"] = "end" -defs["ImChunkStream_end"][1]["location"] = "imgui_internal:521" +defs["ImChunkStream_end"][1]["location"] = "imgui_internal:523" defs["ImChunkStream_end"][1]["ov_cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["ret"] = "T*" defs["ImChunkStream_end"][1]["signature"] = "()" @@ -236,7 +236,7 @@ defs["ImChunkStream_next_chunk"][1]["call_args"] = "(p)" defs["ImChunkStream_next_chunk"][1]["cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["defaults"] = {} defs["ImChunkStream_next_chunk"][1]["funcname"] = "next_chunk" -defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:519" +defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:521" defs["ImChunkStream_next_chunk"][1]["ov_cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["ret"] = "T*" defs["ImChunkStream_next_chunk"][1]["signature"] = "(T*)" @@ -258,7 +258,7 @@ defs["ImChunkStream_offset_from_ptr"][1]["call_args"] = "(p)" defs["ImChunkStream_offset_from_ptr"][1]["cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["defaults"] = {} defs["ImChunkStream_offset_from_ptr"][1]["funcname"] = "offset_from_ptr" -defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:522" +defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:524" defs["ImChunkStream_offset_from_ptr"][1]["ov_cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["ret"] = "int" defs["ImChunkStream_offset_from_ptr"][1]["signature"] = "(const T*)" @@ -280,7 +280,7 @@ defs["ImChunkStream_ptr_from_offset"][1]["call_args"] = "(off)" defs["ImChunkStream_ptr_from_offset"][1]["cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["defaults"] = {} defs["ImChunkStream_ptr_from_offset"][1]["funcname"] = "ptr_from_offset" -defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:523" +defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:525" defs["ImChunkStream_ptr_from_offset"][1]["ov_cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["ret"] = "T*" defs["ImChunkStream_ptr_from_offset"][1]["signature"] = "(int)" @@ -299,7 +299,7 @@ defs["ImChunkStream_size"][1]["call_args"] = "()" defs["ImChunkStream_size"][1]["cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["defaults"] = {} defs["ImChunkStream_size"][1]["funcname"] = "size" -defs["ImChunkStream_size"][1]["location"] = "imgui_internal:516" +defs["ImChunkStream_size"][1]["location"] = "imgui_internal:518" defs["ImChunkStream_size"][1]["ov_cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["ret"] = "int" defs["ImChunkStream_size"][1]["signature"] = "()const" @@ -332,7 +332,7 @@ defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" defs["ImColor_HSV"][1]["is_static_function"] = true -defs["ImColor_HSV"][1]["location"] = "imgui:1941" +defs["ImColor_HSV"][1]["location"] = "imgui:1967" defs["ImColor_HSV"][1]["nonUDT"] = 1 defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "void" @@ -349,7 +349,7 @@ defs["ImColor_ImColor"][1]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][1]["constructor"] = true defs["ImColor_ImColor"][1]["defaults"] = {} defs["ImColor_ImColor"][1]["funcname"] = "ImColor" -defs["ImColor_ImColor"][1]["location"] = "imgui:1931" +defs["ImColor_ImColor"][1]["location"] = "imgui:1957" defs["ImColor_ImColor"][1]["ov_cimguiname"] = "ImColor_ImColorNil" defs["ImColor_ImColor"][1]["signature"] = "()" defs["ImColor_ImColor"][1]["stname"] = "ImColor" @@ -375,7 +375,7 @@ defs["ImColor_ImColor"][2]["constructor"] = true defs["ImColor_ImColor"][2]["defaults"] = {} defs["ImColor_ImColor"][2]["defaults"]["a"] = "255" defs["ImColor_ImColor"][2]["funcname"] = "ImColor" -defs["ImColor_ImColor"][2]["location"] = "imgui:1932" +defs["ImColor_ImColor"][2]["location"] = "imgui:1958" defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColorInt" defs["ImColor_ImColor"][2]["signature"] = "(int,int,int,int)" defs["ImColor_ImColor"][2]["stname"] = "ImColor" @@ -391,7 +391,7 @@ defs["ImColor_ImColor"][3]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][3]["constructor"] = true defs["ImColor_ImColor"][3]["defaults"] = {} defs["ImColor_ImColor"][3]["funcname"] = "ImColor" -defs["ImColor_ImColor"][3]["location"] = "imgui:1933" +defs["ImColor_ImColor"][3]["location"] = "imgui:1959" defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColorU32" defs["ImColor_ImColor"][3]["signature"] = "(ImU32)" defs["ImColor_ImColor"][3]["stname"] = "ImColor" @@ -417,7 +417,7 @@ defs["ImColor_ImColor"][4]["constructor"] = true defs["ImColor_ImColor"][4]["defaults"] = {} defs["ImColor_ImColor"][4]["defaults"]["a"] = "1.0f" defs["ImColor_ImColor"][4]["funcname"] = "ImColor" -defs["ImColor_ImColor"][4]["location"] = "imgui:1934" +defs["ImColor_ImColor"][4]["location"] = "imgui:1960" defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColorFloat" defs["ImColor_ImColor"][4]["signature"] = "(float,float,float,float)" defs["ImColor_ImColor"][4]["stname"] = "ImColor" @@ -433,7 +433,7 @@ defs["ImColor_ImColor"][5]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][5]["constructor"] = true defs["ImColor_ImColor"][5]["defaults"] = {} defs["ImColor_ImColor"][5]["funcname"] = "ImColor" -defs["ImColor_ImColor"][5]["location"] = "imgui:1935" +defs["ImColor_ImColor"][5]["location"] = "imgui:1961" defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColorVec4" defs["ImColor_ImColor"][5]["signature"] = "(const ImVec4)" defs["ImColor_ImColor"][5]["stname"] = "ImColor" @@ -467,7 +467,7 @@ defs["ImColor_SetHSV"][1]["cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" -defs["ImColor_SetHSV"][1]["location"] = "imgui:1940" +defs["ImColor_SetHSV"][1]["location"] = "imgui:1966" defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" @@ -499,7 +499,7 @@ defs["ImDrawCmd_ImDrawCmd"][1]["cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" -defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:1986" +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2012" defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -532,7 +532,7 @@ defs["ImDrawDataBuilder_Clear"][1]["call_args"] = "()" defs["ImDrawDataBuilder_Clear"][1]["cimguiname"] = "ImDrawDataBuilder_Clear" defs["ImDrawDataBuilder_Clear"][1]["defaults"] = {} defs["ImDrawDataBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImDrawDataBuilder_Clear"][1]["location"] = "imgui_internal:565" +defs["ImDrawDataBuilder_Clear"][1]["location"] = "imgui_internal:567" defs["ImDrawDataBuilder_Clear"][1]["ov_cimguiname"] = "ImDrawDataBuilder_Clear" defs["ImDrawDataBuilder_Clear"][1]["ret"] = "void" defs["ImDrawDataBuilder_Clear"][1]["signature"] = "()" @@ -550,7 +550,7 @@ defs["ImDrawDataBuilder_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawDataBuilder_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["location"] = "imgui_internal:566" +defs["ImDrawDataBuilder_ClearFreeMemory"][1]["location"] = "imgui_internal:568" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["signature"] = "()" @@ -568,7 +568,7 @@ defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["call_args"] = "()" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["defaults"] = {} defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["funcname"] = "FlattenIntoSingleLayer" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["location"] = "imgui_internal:567" +defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["location"] = "imgui_internal:569" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ov_cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ret"] = "void" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["signature"] = "()" @@ -586,7 +586,7 @@ defs["ImDrawData_Clear"][1]["call_args"] = "()" defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" -defs["ImDrawData_Clear"][1]["location"] = "imgui:2197" +defs["ImDrawData_Clear"][1]["location"] = "imgui:2223" defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" @@ -604,7 +604,7 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["call_args"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" -defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2198" +defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2224" defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" @@ -620,7 +620,7 @@ defs["ImDrawData_ImDrawData"][1]["cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" -defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2195" +defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2221" defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" @@ -640,7 +640,7 @@ defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" -defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2199" +defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2225" defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" @@ -657,7 +657,7 @@ defs["ImDrawData_destroy"][1]["call_args"] = "(self)" defs["ImDrawData_destroy"][1]["cimguiname"] = "ImDrawData_destroy" defs["ImDrawData_destroy"][1]["defaults"] = {} defs["ImDrawData_destroy"][1]["destructor"] = true -defs["ImDrawData_destroy"][1]["location"] = "imgui:2196" +defs["ImDrawData_destroy"][1]["location"] = "imgui:2222" defs["ImDrawData_destroy"][1]["ov_cimguiname"] = "ImDrawData_destroy" defs["ImDrawData_destroy"][1]["realdestructor"] = true defs["ImDrawData_destroy"][1]["ret"] = "void" @@ -674,7 +674,7 @@ defs["ImDrawListSharedData_ImDrawListSharedData"][1]["cimguiname"] = "ImDrawList defs["ImDrawListSharedData_ImDrawListSharedData"][1]["constructor"] = true defs["ImDrawListSharedData_ImDrawListSharedData"][1]["defaults"] = {} defs["ImDrawListSharedData_ImDrawListSharedData"][1]["funcname"] = "ImDrawListSharedData" -defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:557" +defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:559" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["ov_cimguiname"] = "ImDrawListSharedData_ImDrawListSharedData" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["signature"] = "()" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["stname"] = "ImDrawListSharedData" @@ -694,7 +694,7 @@ defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["call_args"] = "(max_er defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["cimguiname"] = "ImDrawListSharedData_SetCircleSegmentMaxError" defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["defaults"] = {} defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["funcname"] = "SetCircleSegmentMaxError" -defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["location"] = "imgui_internal:558" +defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["location"] = "imgui_internal:560" defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["ov_cimguiname"] = "ImDrawListSharedData_SetCircleSegmentMaxError" defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["ret"] = "void" defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["signature"] = "(float)" @@ -728,7 +728,7 @@ defs["ImDrawListSplitter_Clear"][1]["call_args"] = "()" defs["ImDrawListSplitter_Clear"][1]["cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["defaults"] = {} defs["ImDrawListSplitter_Clear"][1]["funcname"] = "Clear" -defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2029" +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2055" defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -746,7 +746,7 @@ defs["ImDrawListSplitter_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawListSplitter_ClearFreeMemory"][1]["cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawListSplitter_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2030" +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2056" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -762,7 +762,7 @@ defs["ImDrawListSplitter_ImDrawListSplitter"][1]["cimguiname"] = "ImDrawListSpli defs["ImDrawListSplitter_ImDrawListSplitter"][1]["constructor"] = true defs["ImDrawListSplitter_ImDrawListSplitter"][1]["defaults"] = {} defs["ImDrawListSplitter_ImDrawListSplitter"][1]["funcname"] = "ImDrawListSplitter" -defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2027" +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2053" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -782,7 +782,7 @@ defs["ImDrawListSplitter_Merge"][1]["call_args"] = "(draw_list)" defs["ImDrawListSplitter_Merge"][1]["cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["defaults"] = {} defs["ImDrawListSplitter_Merge"][1]["funcname"] = "Merge" -defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2032" +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2058" defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -806,7 +806,7 @@ defs["ImDrawListSplitter_SetCurrentChannel"][1]["call_args"] = "(draw_list,chann defs["ImDrawListSplitter_SetCurrentChannel"][1]["cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["defaults"] = {} defs["ImDrawListSplitter_SetCurrentChannel"][1]["funcname"] = "SetCurrentChannel" -defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2033" +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2059" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -830,7 +830,7 @@ defs["ImDrawListSplitter_Split"][1]["call_args"] = "(draw_list,count)" defs["ImDrawListSplitter_Split"][1]["cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["defaults"] = {} defs["ImDrawListSplitter_Split"][1]["funcname"] = "Split" -defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2031" +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2057" defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -847,7 +847,7 @@ defs["ImDrawListSplitter_destroy"][1]["call_args"] = "(self)" defs["ImDrawListSplitter_destroy"][1]["cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["defaults"] = {} defs["ImDrawListSplitter_destroy"][1]["destructor"] = true -defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2028" +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2054" defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" @@ -888,7 +888,7 @@ defs["ImDrawList_AddBezierCurve"][1]["cimguiname"] = "ImDrawList_AddBezierCurve" defs["ImDrawList_AddBezierCurve"][1]["defaults"] = {} defs["ImDrawList_AddBezierCurve"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCurve"][1]["funcname"] = "AddBezierCurve" -defs["ImDrawList_AddBezierCurve"][1]["location"] = "imgui:2123" +defs["ImDrawList_AddBezierCurve"][1]["location"] = "imgui:2149" defs["ImDrawList_AddBezierCurve"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCurve" defs["ImDrawList_AddBezierCurve"][1]["ret"] = "void" defs["ImDrawList_AddBezierCurve"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -912,7 +912,7 @@ defs["ImDrawList_AddCallback"][1]["call_args"] = "(callback,callback_data)" defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" -defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2145" +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2171" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" @@ -947,7 +947,7 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" -defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2115" +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2141" defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -978,7 +978,7 @@ defs["ImDrawList_AddCircleFilled"][1]["cimguiname"] = "ImDrawList_AddCircleFille defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" -defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2116" +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2142" defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1005,7 +1005,7 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["call_args"] = "(points,num_points,col defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" -defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2122" +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2148" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1023,7 +1023,7 @@ defs["ImDrawList_AddDrawCmd"][1]["call_args"] = "()" defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" -defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2146" +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2172" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" @@ -1062,7 +1062,7 @@ defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImage"][1]["defaults"]["uv_max"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_min"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" -defs["ImDrawList_AddImage"][1]["location"] = "imgui:2129" +defs["ImDrawList_AddImage"][1]["location"] = "imgui:2155" defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1115,7 +1115,7 @@ defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv2"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv3"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv4"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" -defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2130" +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2156" defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1158,7 +1158,7 @@ defs["ImDrawList_AddImageRounded"][1]["cimguiname"] = "ImDrawList_AddImageRounde defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" -defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2131" +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2157" defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)" @@ -1189,7 +1189,7 @@ defs["ImDrawList_AddLine"][1]["cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" -defs["ImDrawList_AddLine"][1]["location"] = "imgui:2107" +defs["ImDrawList_AddLine"][1]["location"] = "imgui:2133" defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" @@ -1223,7 +1223,7 @@ defs["ImDrawList_AddNgon"][1]["cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["defaults"] = {} defs["ImDrawList_AddNgon"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddNgon"][1]["funcname"] = "AddNgon" -defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2117" +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2143" defs["ImDrawList_AddNgon"][1]["ov_cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["ret"] = "void" defs["ImDrawList_AddNgon"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1253,7 +1253,7 @@ defs["ImDrawList_AddNgonFilled"][1]["call_args"] = "(center,radius,col,num_segme defs["ImDrawList_AddNgonFilled"][1]["cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["defaults"] = {} defs["ImDrawList_AddNgonFilled"][1]["funcname"] = "AddNgonFilled" -defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2118" +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2144" defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1286,7 +1286,7 @@ defs["ImDrawList_AddPolyline"][1]["call_args"] = "(points,num_points,col,closed, defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" -defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2121" +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2147" defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,int,ImU32,bool,float)" @@ -1323,7 +1323,7 @@ defs["ImDrawList_AddQuad"][1]["cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" -defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2111" +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2137" defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1356,7 +1356,7 @@ defs["ImDrawList_AddQuadFilled"][1]["call_args"] = "(p1,p2,p3,p4,col)" defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" -defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2112" +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2138" defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1395,7 +1395,7 @@ defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" -defs["ImDrawList_AddRect"][1]["location"] = "imgui:2108" +defs["ImDrawList_AddRect"][1]["location"] = "imgui:2134" defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags,float)" @@ -1430,7 +1430,7 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" -defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2109" +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2135" defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)" @@ -1466,7 +1466,7 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["call_args"] = "(p_min,p_max,col_u defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" -defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2110" +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2136" defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" @@ -1497,7 +1497,7 @@ defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["defaults"] = {} defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" -defs["ImDrawList_AddText"][1]["location"] = "imgui:2119" +defs["ImDrawList_AddText"][1]["location"] = "imgui:2145" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddTextVec2" defs["ImDrawList_AddText"][1]["ret"] = "void" defs["ImDrawList_AddText"][1]["signature"] = "(const ImVec2,ImU32,const char*,const char*)" @@ -1540,7 +1540,7 @@ defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" -defs["ImDrawList_AddText"][2]["location"] = "imgui:2120" +defs["ImDrawList_AddText"][2]["location"] = "imgui:2146" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddTextFontPtr" defs["ImDrawList_AddText"][2]["ret"] = "void" defs["ImDrawList_AddText"][2]["signature"] = "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)" @@ -1575,7 +1575,7 @@ defs["ImDrawList_AddTriangle"][1]["cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" -defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2113" +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2139" defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1605,7 +1605,7 @@ defs["ImDrawList_AddTriangleFilled"][1]["call_args"] = "(p1,p2,p3,col)" defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" -defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2114" +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2140" defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1623,7 +1623,7 @@ defs["ImDrawList_ChannelsMerge"][1]["call_args"] = "()" defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" -defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2156" +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2182" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1644,7 +1644,7 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["call_args"] = "(n)" defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" -defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2157" +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2183" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -1665,7 +1665,7 @@ defs["ImDrawList_ChannelsSplit"][1]["call_args"] = "(count)" defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" -defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2155" +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2181" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -1683,7 +1683,7 @@ defs["ImDrawList_CloneOutput"][1]["call_args"] = "()" defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" -defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2147" +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2173" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -1704,7 +1704,7 @@ defs["ImDrawList_GetClipRectMax"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2099" +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2125" defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -1726,7 +1726,7 @@ defs["ImDrawList_GetClipRectMin"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2098" +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2124" defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -1746,7 +1746,7 @@ defs["ImDrawList_ImDrawList"][1]["cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" -defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2090" +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2116" defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(const ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" @@ -1779,7 +1779,7 @@ defs["ImDrawList_PathArcTo"][1]["cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "10" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" -defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2139" +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2165" defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -1809,7 +1809,7 @@ defs["ImDrawList_PathArcToFast"][1]["call_args"] = "(center,radius,a_min_of_12,a defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" -defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2140" +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2166" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -1840,7 +1840,7 @@ defs["ImDrawList_PathBezierCurveTo"][1]["cimguiname"] = "ImDrawList_PathBezierCu defs["ImDrawList_PathBezierCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCurveTo"][1]["funcname"] = "PathBezierCurveTo" -defs["ImDrawList_PathBezierCurveTo"][1]["location"] = "imgui:2141" +defs["ImDrawList_PathBezierCurveTo"][1]["location"] = "imgui:2167" defs["ImDrawList_PathBezierCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCurveTo" defs["ImDrawList_PathBezierCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" @@ -1858,7 +1858,7 @@ defs["ImDrawList_PathClear"][1]["call_args"] = "()" defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" -defs["ImDrawList_PathClear"][1]["location"] = "imgui:2134" +defs["ImDrawList_PathClear"][1]["location"] = "imgui:2160" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" @@ -1879,7 +1879,7 @@ defs["ImDrawList_PathFillConvex"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" -defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2137" +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2163" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -1900,7 +1900,7 @@ defs["ImDrawList_PathLineTo"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" -defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2135" +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2161" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -1921,7 +1921,7 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" -defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2136" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2162" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -1953,7 +1953,7 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" -defs["ImDrawList_PathRect"][1]["location"] = "imgui:2142" +defs["ImDrawList_PathRect"][1]["location"] = "imgui:2168" defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,ImDrawCornerFlags)" @@ -1981,7 +1981,7 @@ defs["ImDrawList_PathStroke"][1]["cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" -defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2138" +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2164" defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,bool,float)" @@ -1999,7 +1999,7 @@ defs["ImDrawList_PopClipRect"][1]["call_args"] = "()" defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" -defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2095" +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2121" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -2017,7 +2017,7 @@ defs["ImDrawList_PopTextureID"][1]["call_args"] = "()" defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" -defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2097" +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2123" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -2062,7 +2062,7 @@ defs["ImDrawList_PrimQuadUV"][1]["call_args"] = "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,co defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" -defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2166" +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2192" defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2089,7 +2089,7 @@ defs["ImDrawList_PrimRect"][1]["call_args"] = "(a,b,col)" defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" -defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2164" +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2190" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2122,7 +2122,7 @@ defs["ImDrawList_PrimRectUV"][1]["call_args"] = "(a,b,uv_a,uv_b,col)" defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" -defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2165" +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2191" defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2146,7 +2146,7 @@ defs["ImDrawList_PrimReserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" -defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2162" +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2188" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -2170,7 +2170,7 @@ defs["ImDrawList_PrimUnreserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimUnreserve"][1]["cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["defaults"] = {} defs["ImDrawList_PrimUnreserve"][1]["funcname"] = "PrimUnreserve" -defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2163" +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2189" defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -2197,7 +2197,7 @@ defs["ImDrawList_PrimVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" -defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2169" +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2195" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2218,7 +2218,7 @@ defs["ImDrawList_PrimWriteIdx"][1]["call_args"] = "(idx)" defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" -defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2168" +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2194" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -2245,7 +2245,7 @@ defs["ImDrawList_PrimWriteVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" -defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2167" +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2193" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2273,7 +2273,7 @@ defs["ImDrawList_PushClipRect"][1]["cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" -defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2093" +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2119" defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(ImVec2,ImVec2,bool)" @@ -2291,7 +2291,7 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["call_args"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" -defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2094" +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2120" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -2312,7 +2312,7 @@ defs["ImDrawList_PushTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" -defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2096" +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2122" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -2330,7 +2330,7 @@ defs["ImDrawList__ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawList__ClearFreeMemory"][1]["cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList__ClearFreeMemory"][1]["funcname"] = "_ClearFreeMemory" -defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2173" +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2199" defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -2348,7 +2348,7 @@ defs["ImDrawList__OnChangedClipRect"][1]["call_args"] = "()" defs["ImDrawList__OnChangedClipRect"][1]["cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["defaults"] = {} defs["ImDrawList__OnChangedClipRect"][1]["funcname"] = "_OnChangedClipRect" -defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2175" +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2201" defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -2366,7 +2366,7 @@ defs["ImDrawList__OnChangedTextureID"][1]["call_args"] = "()" defs["ImDrawList__OnChangedTextureID"][1]["cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["defaults"] = {} defs["ImDrawList__OnChangedTextureID"][1]["funcname"] = "_OnChangedTextureID" -defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2176" +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2202" defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -2384,7 +2384,7 @@ defs["ImDrawList__OnChangedVtxOffset"][1]["call_args"] = "()" defs["ImDrawList__OnChangedVtxOffset"][1]["cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["defaults"] = {} defs["ImDrawList__OnChangedVtxOffset"][1]["funcname"] = "_OnChangedVtxOffset" -defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2177" +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2203" defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -2402,7 +2402,7 @@ defs["ImDrawList__PopUnusedDrawCmd"][1]["call_args"] = "()" defs["ImDrawList__PopUnusedDrawCmd"][1]["cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["defaults"] = {} defs["ImDrawList__PopUnusedDrawCmd"][1]["funcname"] = "_PopUnusedDrawCmd" -defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2174" +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2200" defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2420,7 +2420,7 @@ defs["ImDrawList__ResetForNewFrame"][1]["call_args"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["defaults"] = {} defs["ImDrawList__ResetForNewFrame"][1]["funcname"] = "_ResetForNewFrame" -defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2172" +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2198" defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" @@ -2437,7 +2437,7 @@ defs["ImDrawList_destroy"][1]["call_args"] = "(self)" defs["ImDrawList_destroy"][1]["cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["defaults"] = {} defs["ImDrawList_destroy"][1]["destructor"] = true -defs["ImDrawList_destroy"][1]["location"] = "imgui:2092" +defs["ImDrawList_destroy"][1]["location"] = "imgui:2118" defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" @@ -2454,7 +2454,7 @@ defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["cimguiname"] = "ImFontAt defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["constructor"] = true defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["funcname"] = "ImFontAtlasCustomRect" -defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2269" +defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2295" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_ImFontAtlasCustomRect" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["signature"] = "()" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["stname"] = "ImFontAtlasCustomRect" @@ -2471,7 +2471,7 @@ defs["ImFontAtlasCustomRect_IsPacked"][1]["call_args"] = "()" defs["ImFontAtlasCustomRect_IsPacked"][1]["cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_IsPacked"][1]["funcname"] = "IsPacked" -defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2270" +defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2296" defs["ImFontAtlasCustomRect_IsPacked"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["ret"] = "bool" defs["ImFontAtlasCustomRect_IsPacked"][1]["signature"] = "()const" @@ -2524,7 +2524,7 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["cimguiname"] = "ImFontAtlas_AddCu defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" -defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2352" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2378" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" @@ -2548,7 +2548,7 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["call_args"] = "(width,height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" -defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2351" +defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2377" defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(int,int)" @@ -2569,7 +2569,7 @@ defs["ImFontAtlas_AddFont"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" -defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2303" +defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2329" defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" @@ -2591,7 +2591,7 @@ defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefaul defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" -defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2304" +defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2330" defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -2623,7 +2623,7 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2305" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2331" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2655,7 +2655,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2308" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2334" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2690,7 +2690,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2307" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2333" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2725,7 +2725,7 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2306" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2332" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2743,7 +2743,7 @@ defs["ImFontAtlas_Build"][1]["call_args"] = "()" defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" -defs["ImFontAtlas_Build"][1]["location"] = "imgui:2319" +defs["ImFontAtlas_Build"][1]["location"] = "imgui:2345" defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" @@ -2770,7 +2770,7 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["call_args"] = "(rect,out_uv_min,out_uv_ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" -defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2356" +defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2382" defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const" @@ -2788,7 +2788,7 @@ defs["ImFontAtlas_Clear"][1]["call_args"] = "()" defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" -defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2312" +defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2338" defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" @@ -2806,7 +2806,7 @@ defs["ImFontAtlas_ClearFonts"][1]["call_args"] = "()" defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" -defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2311" +defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2337" defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" @@ -2824,7 +2824,7 @@ defs["ImFontAtlas_ClearInputData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" -defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2309" +defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2335" defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" @@ -2842,7 +2842,7 @@ defs["ImFontAtlas_ClearTexData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" -defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2310" +defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2336" defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" @@ -2863,7 +2863,7 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["call_args"] = "(index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" -defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2353" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2379" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "ImFontAtlasCustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" @@ -2881,7 +2881,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" -defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2335" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2361" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" @@ -2899,7 +2899,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" -defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2336" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2362" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" @@ -2917,7 +2917,7 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" -defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2337" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2363" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" @@ -2935,7 +2935,7 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" -defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:2332" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:2358" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" @@ -2953,7 +2953,7 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" -defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:2334" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:2360" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" @@ -2971,7 +2971,7 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" -defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:2333" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:2359" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" @@ -2989,7 +2989,7 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" -defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:2338" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:2364" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" @@ -3007,7 +3007,7 @@ defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["funcname"] = "GetGlyphRangesVietnamese" -defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:2339" +defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:2365" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["signature"] = "()" @@ -3040,7 +3040,7 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["call_args"] = "(cursor,out_offset, defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" -defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:2357" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:2383" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" @@ -3071,7 +3071,7 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:2320" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:2346" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3102,7 +3102,7 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:2321" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:2347" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3118,7 +3118,7 @@ defs["ImFontAtlas_ImFontAtlas"][1]["cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" -defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:2301" +defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:2327" defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" @@ -3135,7 +3135,7 @@ defs["ImFontAtlas_IsBuilt"][1]["call_args"] = "()" defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" -defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:2322" +defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:2348" defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()const" @@ -3156,7 +3156,7 @@ defs["ImFontAtlas_SetTexID"][1]["call_args"] = "(id)" defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" -defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:2323" +defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:2349" defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" @@ -3173,7 +3173,7 @@ defs["ImFontAtlas_destroy"][1]["call_args"] = "(self)" defs["ImFontAtlas_destroy"][1]["cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["defaults"] = {} defs["ImFontAtlas_destroy"][1]["destructor"] = true -defs["ImFontAtlas_destroy"][1]["location"] = "imgui:2302" +defs["ImFontAtlas_destroy"][1]["location"] = "imgui:2328" defs["ImFontAtlas_destroy"][1]["ov_cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["realdestructor"] = true defs["ImFontAtlas_destroy"][1]["ret"] = "void" @@ -3190,7 +3190,7 @@ defs["ImFontConfig_ImFontConfig"][1]["cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" -defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2230" +defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2256" defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" @@ -3226,7 +3226,7 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["call_args"] = "(c)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" -defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2254" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2280" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" @@ -3247,7 +3247,7 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["call_args"] = "(ranges)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" -defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2256" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2282" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" @@ -3272,7 +3272,7 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBu defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" -defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2255" +defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2281" defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -3293,7 +3293,7 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["call_args"] = "(out_ranges)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" -defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2257" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2283" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" @@ -3311,7 +3311,7 @@ defs["ImFontGlyphRangesBuilder_Clear"][1]["call_args"] = "()" defs["ImFontGlyphRangesBuilder_Clear"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2251" +defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2277" defs["ImFontGlyphRangesBuilder_Clear"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_Clear"][1]["signature"] = "()" @@ -3332,7 +3332,7 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" -defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2252" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2278" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(size_t)const" @@ -3348,7 +3348,7 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["cimguiname"] = "Im defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" -defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2250" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2276" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -3368,7 +3368,7 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" -defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2253" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2279" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(size_t)" @@ -3392,14 +3392,14 @@ defs["ImFontGlyphRangesBuilder_destroy"][1]["stname"] = "ImFontGlyphRangesBuilde defs["ImFontGlyphRangesBuilder_destroy"]["(ImFontGlyphRangesBuilder*)"] = defs["ImFontGlyphRangesBuilder_destroy"][1] defs["ImFont_AddGlyph"] = {} defs["ImFont_AddGlyph"][1] = {} -defs["ImFont_AddGlyph"][1]["args"] = "(ImFont* self,ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)" +defs["ImFont_AddGlyph"][1]["args"] = "(ImFont* self,const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)" defs["ImFont_AddGlyph"][1]["argsT"] = {} defs["ImFont_AddGlyph"][1]["argsT"][1] = {} defs["ImFont_AddGlyph"][1]["argsT"][1]["name"] = "self" defs["ImFont_AddGlyph"][1]["argsT"][1]["type"] = "ImFont*" defs["ImFont_AddGlyph"][1]["argsT"][2] = {} defs["ImFont_AddGlyph"][1]["argsT"][2]["name"] = "src_cfg" -defs["ImFont_AddGlyph"][1]["argsT"][2]["type"] = "ImFontConfig*" +defs["ImFont_AddGlyph"][1]["argsT"][2]["type"] = "const ImFontConfig*" defs["ImFont_AddGlyph"][1]["argsT"][3] = {} defs["ImFont_AddGlyph"][1]["argsT"][3]["name"] = "c" defs["ImFont_AddGlyph"][1]["argsT"][3]["type"] = "ImWchar" @@ -3430,17 +3430,17 @@ defs["ImFont_AddGlyph"][1]["argsT"][11]["type"] = "float" defs["ImFont_AddGlyph"][1]["argsT"][12] = {} defs["ImFont_AddGlyph"][1]["argsT"][12]["name"] = "advance_x" defs["ImFont_AddGlyph"][1]["argsT"][12]["type"] = "float" -defs["ImFont_AddGlyph"][1]["argsoriginal"] = "(ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)" +defs["ImFont_AddGlyph"][1]["argsoriginal"] = "(const ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)" defs["ImFont_AddGlyph"][1]["call_args"] = "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,advance_x)" defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" -defs["ImFont_AddGlyph"][1]["location"] = "imgui:2439" +defs["ImFont_AddGlyph"][1]["location"] = "imgui:2464" defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" -defs["ImFont_AddGlyph"][1]["signature"] = "(ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" +defs["ImFont_AddGlyph"][1]["signature"] = "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" defs["ImFont_AddGlyph"][1]["stname"] = "ImFont" -defs["ImFont_AddGlyph"]["(ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)"] = defs["ImFont_AddGlyph"][1] +defs["ImFont_AddGlyph"]["(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)"] = defs["ImFont_AddGlyph"][1] defs["ImFont_AddRemapChar"] = {} defs["ImFont_AddRemapChar"][1] = {} defs["ImFont_AddRemapChar"][1]["args"] = "(ImFont* self,ImWchar dst,ImWchar src,bool overwrite_dst)" @@ -3463,7 +3463,7 @@ defs["ImFont_AddRemapChar"][1]["cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" -defs["ImFont_AddRemapChar"][1]["location"] = "imgui:2440" +defs["ImFont_AddRemapChar"][1]["location"] = "imgui:2465" defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" @@ -3481,7 +3481,7 @@ defs["ImFont_BuildLookupTable"][1]["call_args"] = "()" defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" -defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:2436" +defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:2461" defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" @@ -3522,7 +3522,7 @@ defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" -defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:2430" +defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:2455" defs["ImFont_CalcTextSizeA"][1]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "void" @@ -3553,7 +3553,7 @@ defs["ImFont_CalcWordWrapPositionA"][1]["call_args"] = "(scale,text,text_end,wra defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" -defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:2431" +defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:2456" defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)const" @@ -3571,7 +3571,7 @@ defs["ImFont_ClearOutputData"][1]["call_args"] = "()" defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" -defs["ImFont_ClearOutputData"][1]["location"] = "imgui:2437" +defs["ImFont_ClearOutputData"][1]["location"] = "imgui:2462" defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" @@ -3592,7 +3592,7 @@ defs["ImFont_FindGlyph"][1]["call_args"] = "(c)" defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" -defs["ImFont_FindGlyph"][1]["location"] = "imgui:2422" +defs["ImFont_FindGlyph"][1]["location"] = "imgui:2447" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)const" @@ -3613,7 +3613,7 @@ defs["ImFont_FindGlyphNoFallback"][1]["call_args"] = "(c)" defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" -defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:2423" +defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:2448" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)const" @@ -3634,7 +3634,7 @@ defs["ImFont_GetCharAdvance"][1]["call_args"] = "(c)" defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" -defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:2424" +defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:2449" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)const" @@ -3652,7 +3652,7 @@ defs["ImFont_GetDebugName"][1]["call_args"] = "()" defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" -defs["ImFont_GetDebugName"][1]["location"] = "imgui:2426" +defs["ImFont_GetDebugName"][1]["location"] = "imgui:2451" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()const" @@ -3673,7 +3673,7 @@ defs["ImFont_GrowIndex"][1]["call_args"] = "(new_size)" defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" -defs["ImFont_GrowIndex"][1]["location"] = "imgui:2438" +defs["ImFont_GrowIndex"][1]["location"] = "imgui:2463" defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" @@ -3689,7 +3689,7 @@ defs["ImFont_ImFont"][1]["cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" -defs["ImFont_ImFont"][1]["location"] = "imgui:2420" +defs["ImFont_ImFont"][1]["location"] = "imgui:2445" defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" @@ -3712,7 +3712,7 @@ defs["ImFont_IsGlyphRangeUnused"][1]["call_args"] = "(c_begin,c_last)" defs["ImFont_IsGlyphRangeUnused"][1]["cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["defaults"] = {} defs["ImFont_IsGlyphRangeUnused"][1]["funcname"] = "IsGlyphRangeUnused" -defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:2443" +defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:2468" defs["ImFont_IsGlyphRangeUnused"][1]["ov_cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["ret"] = "bool" defs["ImFont_IsGlyphRangeUnused"][1]["signature"] = "(unsigned int,unsigned int)" @@ -3730,7 +3730,7 @@ defs["ImFont_IsLoaded"][1]["call_args"] = "()" defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" -defs["ImFont_IsLoaded"][1]["location"] = "imgui:2425" +defs["ImFont_IsLoaded"][1]["location"] = "imgui:2450" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()const" @@ -3763,7 +3763,7 @@ defs["ImFont_RenderChar"][1]["call_args"] = "(draw_list,size,pos,col,c)" defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" -defs["ImFont_RenderChar"][1]["location"] = "imgui:2432" +defs["ImFont_RenderChar"][1]["location"] = "imgui:2457" defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const" @@ -3810,7 +3810,7 @@ defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" -defs["ImFont_RenderText"][1]["location"] = "imgui:2433" +defs["ImFont_RenderText"][1]["location"] = "imgui:2458" defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const" @@ -3831,7 +3831,7 @@ defs["ImFont_SetFallbackChar"][1]["call_args"] = "(c)" defs["ImFont_SetFallbackChar"][1]["cimguiname"] = "ImFont_SetFallbackChar" defs["ImFont_SetFallbackChar"][1]["defaults"] = {} defs["ImFont_SetFallbackChar"][1]["funcname"] = "SetFallbackChar" -defs["ImFont_SetFallbackChar"][1]["location"] = "imgui:2442" +defs["ImFont_SetFallbackChar"][1]["location"] = "imgui:2467" defs["ImFont_SetFallbackChar"][1]["ov_cimguiname"] = "ImFont_SetFallbackChar" defs["ImFont_SetFallbackChar"][1]["ret"] = "void" defs["ImFont_SetFallbackChar"][1]["signature"] = "(ImWchar)" @@ -3855,7 +3855,7 @@ defs["ImFont_SetGlyphVisible"][1]["call_args"] = "(c,visible)" defs["ImFont_SetGlyphVisible"][1]["cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["defaults"] = {} defs["ImFont_SetGlyphVisible"][1]["funcname"] = "SetGlyphVisible" -defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:2441" +defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:2466" defs["ImFont_SetGlyphVisible"][1]["ov_cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["ret"] = "void" defs["ImFont_SetGlyphVisible"][1]["signature"] = "(ImWchar,bool)" @@ -3872,7 +3872,7 @@ defs["ImFont_destroy"][1]["call_args"] = "(self)" defs["ImFont_destroy"][1]["cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["defaults"] = {} defs["ImFont_destroy"][1]["destructor"] = true -defs["ImFont_destroy"][1]["location"] = "imgui:2421" +defs["ImFont_destroy"][1]["location"] = "imgui:2446" defs["ImFont_destroy"][1]["ov_cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["realdestructor"] = true defs["ImFont_destroy"][1]["ret"] = "void" @@ -3889,7 +3889,7 @@ defs["ImGuiColumnData_ImGuiColumnData"][1]["cimguiname"] = "ImGuiColumnData_ImGu defs["ImGuiColumnData_ImGuiColumnData"][1]["constructor"] = true defs["ImGuiColumnData_ImGuiColumnData"][1]["defaults"] = {} defs["ImGuiColumnData_ImGuiColumnData"][1]["funcname"] = "ImGuiColumnData" -defs["ImGuiColumnData_ImGuiColumnData"][1]["location"] = "imgui_internal:1000" +defs["ImGuiColumnData_ImGuiColumnData"][1]["location"] = "imgui_internal:1006" defs["ImGuiColumnData_ImGuiColumnData"][1]["ov_cimguiname"] = "ImGuiColumnData_ImGuiColumnData" defs["ImGuiColumnData_ImGuiColumnData"][1]["signature"] = "()" defs["ImGuiColumnData_ImGuiColumnData"][1]["stname"] = "ImGuiColumnData" @@ -3922,7 +3922,7 @@ defs["ImGuiColumns_Clear"][1]["call_args"] = "()" defs["ImGuiColumns_Clear"][1]["cimguiname"] = "ImGuiColumns_Clear" defs["ImGuiColumns_Clear"][1]["defaults"] = {} defs["ImGuiColumns_Clear"][1]["funcname"] = "Clear" -defs["ImGuiColumns_Clear"][1]["location"] = "imgui_internal:1022" +defs["ImGuiColumns_Clear"][1]["location"] = "imgui_internal:1028" defs["ImGuiColumns_Clear"][1]["ov_cimguiname"] = "ImGuiColumns_Clear" defs["ImGuiColumns_Clear"][1]["ret"] = "void" defs["ImGuiColumns_Clear"][1]["signature"] = "()" @@ -3938,7 +3938,7 @@ defs["ImGuiColumns_ImGuiColumns"][1]["cimguiname"] = "ImGuiColumns_ImGuiColumns" defs["ImGuiColumns_ImGuiColumns"][1]["constructor"] = true defs["ImGuiColumns_ImGuiColumns"][1]["defaults"] = {} defs["ImGuiColumns_ImGuiColumns"][1]["funcname"] = "ImGuiColumns" -defs["ImGuiColumns_ImGuiColumns"][1]["location"] = "imgui_internal:1021" +defs["ImGuiColumns_ImGuiColumns"][1]["location"] = "imgui_internal:1027" defs["ImGuiColumns_ImGuiColumns"][1]["ov_cimguiname"] = "ImGuiColumns_ImGuiColumns" defs["ImGuiColumns_ImGuiColumns"][1]["signature"] = "()" defs["ImGuiColumns_ImGuiColumns"][1]["stname"] = "ImGuiColumns" @@ -3972,7 +3972,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:1323" +defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:1329" defs["ImGuiContext_ImGuiContext"][1]["ov_cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["signature"] = "(ImFontAtlas*)" defs["ImGuiContext_ImGuiContext"][1]["stname"] = "ImGuiContext" @@ -4008,7 +4008,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:1576" +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:1589" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -4029,7 +4029,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:1577" +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:1590" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -4050,7 +4050,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:1578" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:1591" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -4068,7 +4068,7 @@ defs["ImGuiIO_ClearInputCharacters"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputCharacters"][1]["cimguiname"] = "ImGuiIO_ClearInputCharacters" defs["ImGuiIO_ClearInputCharacters"][1]["defaults"] = {} defs["ImGuiIO_ClearInputCharacters"][1]["funcname"] = "ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["location"] = "imgui:1579" +defs["ImGuiIO_ClearInputCharacters"][1]["location"] = "imgui:1592" defs["ImGuiIO_ClearInputCharacters"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputCharacters" defs["ImGuiIO_ClearInputCharacters"][1]["ret"] = "void" defs["ImGuiIO_ClearInputCharacters"][1]["signature"] = "()" @@ -4084,7 +4084,7 @@ defs["ImGuiIO_ImGuiIO"][1]["cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" -defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:1627" +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:1640" defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -4105,6 +4105,24 @@ defs["ImGuiIO_destroy"][1]["ret"] = "void" defs["ImGuiIO_destroy"][1]["signature"] = "(ImGuiIO*)" defs["ImGuiIO_destroy"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_destroy"]["(ImGuiIO*)"] = defs["ImGuiIO_destroy"][1] +defs["ImGuiInputTextCallbackData_ClearSelection"] = {} +defs["ImGuiInputTextCallbackData_ClearSelection"][1] = {} +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["args"] = "(ImGuiInputTextCallbackData* self)" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["argsT"] = {} +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["argsT"][1] = {} +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["argsT"][1]["type"] = "ImGuiInputTextCallbackData*" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["call_args"] = "()" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["defaults"] = {} +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["funcname"] = "ClearSelection" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:1681" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ret"] = "void" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["signature"] = "()" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["stname"] = "ImGuiInputTextCallbackData" +defs["ImGuiInputTextCallbackData_ClearSelection"]["()"] = defs["ImGuiInputTextCallbackData_ClearSelection"][1] defs["ImGuiInputTextCallbackData_DeleteChars"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["args"] = "(ImGuiInputTextCallbackData* self,int pos,int bytes_count)" @@ -4123,7 +4141,7 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["call_args"] = "(pos,bytes_cou defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" -defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:1664" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:1678" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -4141,7 +4159,7 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:1666" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:1682" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -4157,7 +4175,7 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["cimguiname"] = defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" -defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:1663" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:1677" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -4184,12 +4202,30 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTex defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:1665" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:1679" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["stname"] = "ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_InsertChars"]["(int,const char*,const char*)"] = defs["ImGuiInputTextCallbackData_InsertChars"][1] +defs["ImGuiInputTextCallbackData_SelectAll"] = {} +defs["ImGuiInputTextCallbackData_SelectAll"][1] = {} +defs["ImGuiInputTextCallbackData_SelectAll"][1]["args"] = "(ImGuiInputTextCallbackData* self)" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["argsT"] = {} +defs["ImGuiInputTextCallbackData_SelectAll"][1]["argsT"][1] = {} +defs["ImGuiInputTextCallbackData_SelectAll"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["argsT"][1]["type"] = "ImGuiInputTextCallbackData*" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["call_args"] = "()" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["defaults"] = {} +defs["ImGuiInputTextCallbackData_SelectAll"][1]["funcname"] = "SelectAll" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:1680" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["ret"] = "void" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["signature"] = "()" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["stname"] = "ImGuiInputTextCallbackData" +defs["ImGuiInputTextCallbackData_SelectAll"]["()"] = defs["ImGuiInputTextCallbackData_SelectAll"][1] defs["ImGuiInputTextCallbackData_destroy"] = {} defs["ImGuiInputTextCallbackData_destroy"][1] = {} defs["ImGuiInputTextCallbackData_destroy"][1]["args"] = "(ImGuiInputTextCallbackData* self)" @@ -4218,7 +4254,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:867" +defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:873" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearFreeMemory"][1]["signature"] = "()" @@ -4236,7 +4272,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:876" +defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:882" defs["ImGuiInputTextState_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearSelection"][1]["signature"] = "()" @@ -4254,7 +4290,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:866" +defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:872" defs["ImGuiInputTextState_ClearText"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearText"][1]["signature"] = "()" @@ -4272,7 +4308,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:873" +defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:879" defs["ImGuiInputTextState_CursorAnimReset"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorAnimReset"][1]["signature"] = "()" @@ -4290,7 +4326,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:874" +defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:880" defs["ImGuiInputTextState_CursorClamp"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorClamp"][1]["signature"] = "()" @@ -4308,7 +4344,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:869" +defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "imgui_internal:875" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["signature"] = "()const" @@ -4326,7 +4362,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:868" +defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "imgui_internal:874" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["signature"] = "()const" @@ -4344,7 +4380,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:875" +defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:881" defs["ImGuiInputTextState_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextState_HasSelection"][1]["signature"] = "()const" @@ -4360,7 +4396,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:865" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:871" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["ov_cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["stname"] = "ImGuiInputTextState" @@ -4380,7 +4416,7 @@ defs["ImGuiInputTextState_OnKeyPressed"][1]["call_args"] = "(key)" defs["ImGuiInputTextState_OnKeyPressed"][1]["cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["defaults"] = {} defs["ImGuiInputTextState_OnKeyPressed"][1]["funcname"] = "OnKeyPressed" -defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:870" +defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:876" defs["ImGuiInputTextState_OnKeyPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["ret"] = "void" defs["ImGuiInputTextState_OnKeyPressed"][1]["signature"] = "(int)" @@ -4398,7 +4434,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:877" +defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:883" defs["ImGuiInputTextState_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_SelectAll"][1]["signature"] = "()" @@ -4432,7 +4468,7 @@ defs["ImGuiLastItemDataBackup_Backup"][1]["call_args"] = "()" defs["ImGuiLastItemDataBackup_Backup"][1]["cimguiname"] = "ImGuiLastItemDataBackup_Backup" defs["ImGuiLastItemDataBackup_Backup"][1]["defaults"] = {} defs["ImGuiLastItemDataBackup_Backup"][1]["funcname"] = "Backup" -defs["ImGuiLastItemDataBackup_Backup"][1]["location"] = "imgui_internal:1680" +defs["ImGuiLastItemDataBackup_Backup"][1]["location"] = "imgui_internal:1685" defs["ImGuiLastItemDataBackup_Backup"][1]["ov_cimguiname"] = "ImGuiLastItemDataBackup_Backup" defs["ImGuiLastItemDataBackup_Backup"][1]["ret"] = "void" defs["ImGuiLastItemDataBackup_Backup"][1]["signature"] = "()" @@ -4448,7 +4484,7 @@ defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["cimguiname"] = "ImGu defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["constructor"] = true defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["defaults"] = {} defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["funcname"] = "ImGuiLastItemDataBackup" -defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["location"] = "imgui_internal:1679" +defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["location"] = "imgui_internal:1684" defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["ov_cimguiname"] = "ImGuiLastItemDataBackup_ImGuiLastItemDataBackup" defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["signature"] = "()" defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["stname"] = "ImGuiLastItemDataBackup" @@ -4465,7 +4501,7 @@ defs["ImGuiLastItemDataBackup_Restore"][1]["call_args"] = "()" defs["ImGuiLastItemDataBackup_Restore"][1]["cimguiname"] = "ImGuiLastItemDataBackup_Restore" defs["ImGuiLastItemDataBackup_Restore"][1]["defaults"] = {} defs["ImGuiLastItemDataBackup_Restore"][1]["funcname"] = "Restore" -defs["ImGuiLastItemDataBackup_Restore"][1]["location"] = "imgui_internal:1681" +defs["ImGuiLastItemDataBackup_Restore"][1]["location"] = "imgui_internal:1686" defs["ImGuiLastItemDataBackup_Restore"][1]["ov_cimguiname"] = "ImGuiLastItemDataBackup_Restore" defs["ImGuiLastItemDataBackup_Restore"][1]["ret"] = "void" defs["ImGuiLastItemDataBackup_Restore"][1]["signature"] = "()const" @@ -4506,7 +4542,7 @@ defs["ImGuiListClipper_Begin"][1]["cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" -defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:1900" +defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:1921" defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" @@ -4524,7 +4560,7 @@ defs["ImGuiListClipper_End"][1]["call_args"] = "()" defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" -defs["ImGuiListClipper_End"][1]["location"] = "imgui:1901" +defs["ImGuiListClipper_End"][1]["location"] = "imgui:1922" defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" @@ -4532,27 +4568,19 @@ defs["ImGuiListClipper_End"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_End"]["()"] = defs["ImGuiListClipper_End"][1] defs["ImGuiListClipper_ImGuiListClipper"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1] = {} -defs["ImGuiListClipper_ImGuiListClipper"][1]["args"] = "(int items_count,float items_height)" +defs["ImGuiListClipper_ImGuiListClipper"][1]["args"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"] = {} -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][1] = {} -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][1]["name"] = "items_count" -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][1]["type"] = "int" -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][2] = {} -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][2]["name"] = "items_height" -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsT"][2]["type"] = "float" -defs["ImGuiListClipper_ImGuiListClipper"][1]["argsoriginal"] = "(int items_count=-1,float items_height=-1.0f)" -defs["ImGuiListClipper_ImGuiListClipper"][1]["call_args"] = "(items_count,items_height)" +defs["ImGuiListClipper_ImGuiListClipper"][1]["argsoriginal"] = "()" +defs["ImGuiListClipper_ImGuiListClipper"][1]["call_args"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["constructor"] = true defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} -defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"]["items_count"] = "-1" -defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:1896" +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:1916" defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "(int,float)" +defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"]["(int,float)"] = defs["ImGuiListClipper_ImGuiListClipper"][1] +defs["ImGuiListClipper_ImGuiListClipper"]["()"] = defs["ImGuiListClipper_ImGuiListClipper"][1] defs["ImGuiListClipper_Step"] = {} defs["ImGuiListClipper_Step"][1] = {} defs["ImGuiListClipper_Step"][1]["args"] = "(ImGuiListClipper* self)" @@ -4565,7 +4593,7 @@ defs["ImGuiListClipper_Step"][1]["call_args"] = "()" defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" -defs["ImGuiListClipper_Step"][1]["location"] = "imgui:1899" +defs["ImGuiListClipper_Step"][1]["location"] = "imgui:1923" defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" @@ -4582,7 +4610,7 @@ defs["ImGuiListClipper_destroy"][1]["call_args"] = "(self)" defs["ImGuiListClipper_destroy"][1]["cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["defaults"] = {} defs["ImGuiListClipper_destroy"][1]["destructor"] = true -defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:1897" +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:1917" defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" @@ -4604,7 +4632,7 @@ defs["ImGuiMenuColumns_CalcExtraSpace"][1]["call_args"] = "(avail_w)" defs["ImGuiMenuColumns_CalcExtraSpace"][1]["cimguiname"] = "ImGuiMenuColumns_CalcExtraSpace" defs["ImGuiMenuColumns_CalcExtraSpace"][1]["defaults"] = {} defs["ImGuiMenuColumns_CalcExtraSpace"][1]["funcname"] = "CalcExtraSpace" -defs["ImGuiMenuColumns_CalcExtraSpace"][1]["location"] = "imgui_internal:842" +defs["ImGuiMenuColumns_CalcExtraSpace"][1]["location"] = "imgui_internal:847" defs["ImGuiMenuColumns_CalcExtraSpace"][1]["ov_cimguiname"] = "ImGuiMenuColumns_CalcExtraSpace" defs["ImGuiMenuColumns_CalcExtraSpace"][1]["ret"] = "float" defs["ImGuiMenuColumns_CalcExtraSpace"][1]["signature"] = "(float)const" @@ -4631,7 +4659,7 @@ defs["ImGuiMenuColumns_DeclColumns"][1]["call_args"] = "(w0,w1,w2)" 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:841" +defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:846" defs["ImGuiMenuColumns_DeclColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["ret"] = "float" defs["ImGuiMenuColumns_DeclColumns"][1]["signature"] = "(float,float,float)" @@ -4647,7 +4675,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:839" +defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:844" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_ImGuiMenuColumns" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["signature"] = "()" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["stname"] = "ImGuiMenuColumns" @@ -4673,7 +4701,7 @@ defs["ImGuiMenuColumns_Update"][1]["call_args"] = "(count,spacing,clear)" 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:840" +defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:845" defs["ImGuiMenuColumns_Update"][1]["ov_cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["ret"] = "void" defs["ImGuiMenuColumns_Update"][1]["signature"] = "(int,float,bool)" @@ -4707,7 +4735,7 @@ defs["ImGuiNavMoveResult_Clear"][1]["call_args"] = "()" defs["ImGuiNavMoveResult_Clear"][1]["cimguiname"] = "ImGuiNavMoveResult_Clear" defs["ImGuiNavMoveResult_Clear"][1]["defaults"] = {} defs["ImGuiNavMoveResult_Clear"][1]["funcname"] = "Clear" -defs["ImGuiNavMoveResult_Clear"][1]["location"] = "imgui_internal:905" +defs["ImGuiNavMoveResult_Clear"][1]["location"] = "imgui_internal:911" defs["ImGuiNavMoveResult_Clear"][1]["ov_cimguiname"] = "ImGuiNavMoveResult_Clear" defs["ImGuiNavMoveResult_Clear"][1]["ret"] = "void" defs["ImGuiNavMoveResult_Clear"][1]["signature"] = "()" @@ -4723,7 +4751,7 @@ defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["cimguiname"] = "ImGuiNavMoveRe defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["constructor"] = true defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["defaults"] = {} defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["funcname"] = "ImGuiNavMoveResult" -defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["location"] = "imgui_internal:904" +defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["location"] = "imgui_internal:910" defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["ov_cimguiname"] = "ImGuiNavMoveResult_ImGuiNavMoveResult" defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["signature"] = "()" defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["stname"] = "ImGuiNavMoveResult" @@ -4756,7 +4784,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:960" +defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:966" defs["ImGuiNextItemData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextItemData_ClearFlags"][1]["signature"] = "()" @@ -4772,7 +4800,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:959" +defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:965" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["ov_cimguiname"] = "ImGuiNextItemData_ImGuiNextItemData" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["signature"] = "()" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["stname"] = "ImGuiNextItemData" @@ -4805,7 +4833,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:941" +defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:947" defs["ImGuiNextWindowData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextWindowData_ClearFlags"][1]["signature"] = "()" @@ -4821,7 +4849,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:940" +defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:946" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ImGuiNextWindowData" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["signature"] = "()" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["stname"] = "ImGuiNextWindowData" @@ -4852,7 +4880,7 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["cimguiname"] = "ImGuiOnceUpo defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" -defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:1767" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:1785" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -4885,7 +4913,7 @@ defs["ImGuiPayload_Clear"][1]["call_args"] = "()" defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" -defs["ImGuiPayload_Clear"][1]["location"] = "imgui:1695" +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:1711" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -4901,7 +4929,7 @@ defs["ImGuiPayload_ImGuiPayload"][1]["cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" -defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:1694" +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:1710" defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -4921,7 +4949,7 @@ defs["ImGuiPayload_IsDataType"][1]["call_args"] = "(type)" defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" -defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:1696" +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:1712" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -4939,7 +4967,7 @@ defs["ImGuiPayload_IsDelivery"][1]["call_args"] = "()" defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" -defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:1698" +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:1714" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -4957,7 +4985,7 @@ defs["ImGuiPayload_IsPreview"][1]["call_args"] = "()" defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" -defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:1697" +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:1713" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -4989,7 +5017,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:891" +defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:897" defs["ImGuiPopupData_ImGuiPopupData"][1]["ov_cimguiname"] = "ImGuiPopupData_ImGuiPopupData" defs["ImGuiPopupData_ImGuiPopupData"][1]["signature"] = "()" defs["ImGuiPopupData_ImGuiPopupData"][1]["stname"] = "ImGuiPopupData" @@ -5023,7 +5051,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:974" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:980" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndexPtr" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["signature"] = "(void*)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["stname"] = "ImGuiPtrOrIndex" @@ -5039,7 +5067,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:975" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:981" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndexInt" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["signature"] = "(int)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["stname"] = "ImGuiPtrOrIndex" @@ -5071,7 +5099,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:1093" +defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:1099" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["ov_cimguiname"] = "ImGuiSettingsHandler_ImGuiSettingsHandler" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["signature"] = "()" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["stname"] = "ImGuiSettingsHandler" @@ -5108,7 +5136,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][1]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][1]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][1]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:1834" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:1852" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePairInt" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" @@ -5127,7 +5155,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][2]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][2]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][2]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:1835" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:1853" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePairFloat" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" @@ -5146,7 +5174,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][3]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][3]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][3]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:1836" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:1854" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePairPtr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -5181,7 +5209,7 @@ defs["ImGuiStorage_BuildSortByKey"][1]["call_args"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" -defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:1867" +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:1885" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -5199,7 +5227,7 @@ defs["ImGuiStorage_Clear"][1]["call_args"] = "()" defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" -defs["ImGuiStorage_Clear"][1]["location"] = "imgui:1844" +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:1862" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -5224,7 +5252,7 @@ defs["ImGuiStorage_GetBool"][1]["cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" -defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:1847" +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:1865" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -5249,7 +5277,7 @@ defs["ImGuiStorage_GetBoolRef"][1]["cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" -defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:1859" +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:1877" defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -5274,7 +5302,7 @@ defs["ImGuiStorage_GetFloat"][1]["cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" -defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:1849" +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:1867" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -5299,7 +5327,7 @@ defs["ImGuiStorage_GetFloatRef"][1]["cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" -defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:1860" +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:1878" defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -5324,7 +5352,7 @@ defs["ImGuiStorage_GetInt"][1]["cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" -defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:1845" +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:1863" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -5349,7 +5377,7 @@ defs["ImGuiStorage_GetIntRef"][1]["cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" -defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:1858" +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:1876" defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -5370,7 +5398,7 @@ defs["ImGuiStorage_GetVoidPtr"][1]["call_args"] = "(key)" defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" -defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:1851" +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:1869" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -5395,7 +5423,7 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRe defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "NULL" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" -defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:1861" +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:1879" defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -5416,7 +5444,7 @@ defs["ImGuiStorage_SetAllInt"][1]["call_args"] = "(val)" defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" -defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:1864" +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:1882" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -5440,7 +5468,7 @@ defs["ImGuiStorage_SetBool"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" -defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:1848" +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:1866" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -5464,7 +5492,7 @@ defs["ImGuiStorage_SetFloat"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" -defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:1850" +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:1868" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -5488,7 +5516,7 @@ defs["ImGuiStorage_SetInt"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" -defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:1846" +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:1864" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -5512,7 +5540,7 @@ defs["ImGuiStorage_SetVoidPtr"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" -defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:1852" +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:1870" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -5534,7 +5562,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:813" +defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:818" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleModInt" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["signature"] = "(ImGuiStyleVar,int)" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["stname"] = "ImGuiStyleMod" @@ -5553,7 +5581,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:814" +defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:819" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleModFloat" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["signature"] = "(ImGuiStyleVar,float)" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["stname"] = "ImGuiStyleMod" @@ -5572,7 +5600,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:815" +defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:820" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleModVec2" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["signature"] = "(ImGuiStyleVar,ImVec2)" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["stname"] = "ImGuiStyleMod" @@ -5605,7 +5633,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:1483" +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:1496" defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -5625,7 +5653,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:1484" +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:1497" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -5662,7 +5690,7 @@ defs["ImGuiTabBar_GetTabName"][1]["call_args"] = "(tab)" defs["ImGuiTabBar_GetTabName"][1]["cimguiname"] = "ImGuiTabBar_GetTabName" defs["ImGuiTabBar_GetTabName"][1]["defaults"] = {} defs["ImGuiTabBar_GetTabName"][1]["funcname"] = "GetTabName" -defs["ImGuiTabBar_GetTabName"][1]["location"] = "imgui_internal:1748" +defs["ImGuiTabBar_GetTabName"][1]["location"] = "imgui_internal:1759" defs["ImGuiTabBar_GetTabName"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabName" defs["ImGuiTabBar_GetTabName"][1]["ret"] = "const char*" defs["ImGuiTabBar_GetTabName"][1]["signature"] = "(const ImGuiTabItem*)const" @@ -5683,7 +5711,7 @@ defs["ImGuiTabBar_GetTabOrder"][1]["call_args"] = "(tab)" defs["ImGuiTabBar_GetTabOrder"][1]["cimguiname"] = "ImGuiTabBar_GetTabOrder" defs["ImGuiTabBar_GetTabOrder"][1]["defaults"] = {} defs["ImGuiTabBar_GetTabOrder"][1]["funcname"] = "GetTabOrder" -defs["ImGuiTabBar_GetTabOrder"][1]["location"] = "imgui_internal:1747" +defs["ImGuiTabBar_GetTabOrder"][1]["location"] = "imgui_internal:1758" defs["ImGuiTabBar_GetTabOrder"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabOrder" defs["ImGuiTabBar_GetTabOrder"][1]["ret"] = "int" defs["ImGuiTabBar_GetTabOrder"][1]["signature"] = "(const ImGuiTabItem*)const" @@ -5699,7 +5727,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:1746" +defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:1757" defs["ImGuiTabBar_ImGuiTabBar"][1]["ov_cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["signature"] = "()" defs["ImGuiTabBar_ImGuiTabBar"][1]["stname"] = "ImGuiTabBar" @@ -5730,7 +5758,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:1715" +defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:1723" defs["ImGuiTabItem_ImGuiTabItem"][1]["ov_cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["signature"] = "()" defs["ImGuiTabItem_ImGuiTabItem"][1]["stname"] = "ImGuiTabItem" @@ -5761,7 +5789,7 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["cimguiname"] = "ImGuiTextBuffer_ImGu defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:1805" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:1823" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -5785,7 +5813,7 @@ defs["ImGuiTextBuffer_append"][1]["cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["defaults"] = {} defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiTextBuffer_append"][1]["funcname"] = "append" -defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:1814" +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:1832" defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -5810,7 +5838,7 @@ defs["ImGuiTextBuffer_appendf"][1]["cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" -defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:1815" +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:1833" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -5835,7 +5863,7 @@ defs["ImGuiTextBuffer_appendfv"][1]["call_args"] = "(fmt,args)" defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" -defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:1816" +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:1834" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -5853,7 +5881,7 @@ defs["ImGuiTextBuffer_begin"][1]["call_args"] = "()" defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" -defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:1807" +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:1825" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -5871,7 +5899,7 @@ defs["ImGuiTextBuffer_c_str"][1]["call_args"] = "()" defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" -defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:1813" +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:1831" defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()const" @@ -5889,7 +5917,7 @@ defs["ImGuiTextBuffer_clear"][1]["call_args"] = "()" defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" -defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:1811" +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:1829" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -5923,7 +5951,7 @@ defs["ImGuiTextBuffer_empty"][1]["call_args"] = "()" defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" -defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:1810" +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:1828" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -5941,7 +5969,7 @@ defs["ImGuiTextBuffer_end"][1]["call_args"] = "()" defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" -defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:1808" +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:1826" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -5962,7 +5990,7 @@ defs["ImGuiTextBuffer_reserve"][1]["call_args"] = "(capacity)" defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" -defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:1812" +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:1830" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -5980,7 +6008,7 @@ defs["ImGuiTextBuffer_size"][1]["call_args"] = "()" defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" -defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:1809" +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:1827" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -5998,7 +6026,7 @@ defs["ImGuiTextFilter_Build"][1]["call_args"] = "()" defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" -defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:1778" +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:1796" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -6016,7 +6044,7 @@ defs["ImGuiTextFilter_Clear"][1]["call_args"] = "()" defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" -defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:1779" +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:1797" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -6042,7 +6070,7 @@ defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" defs["ImGuiTextFilter_Draw"][1]["funcname"] = "Draw" -defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:1776" +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:1794" defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -6062,7 +6090,7 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["funcname"] = "ImGuiTextFilter" -defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:1775" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:1793" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -6079,7 +6107,7 @@ defs["ImGuiTextFilter_IsActive"][1]["call_args"] = "()" defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" -defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:1780" +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:1798" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -6104,7 +6132,7 @@ defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilte defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" -defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:1777" +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:1795" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -6136,7 +6164,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][1]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][1]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][1]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][1]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:1788" +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:1806" defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRangeNil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -6155,7 +6183,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][2]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][2]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][2]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][2]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:1789" +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:1807" defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRangeStr" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -6189,7 +6217,7 @@ defs["ImGuiTextRange_empty"][1]["call_args"] = "()" defs["ImGuiTextRange_empty"][1]["cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["defaults"] = {} defs["ImGuiTextRange_empty"][1]["funcname"] = "empty" -defs["ImGuiTextRange_empty"][1]["location"] = "imgui:1790" +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:1808" defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -6213,7 +6241,7 @@ defs["ImGuiTextRange_split"][1]["call_args"] = "(separator,out)" defs["ImGuiTextRange_split"][1]["cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["defaults"] = {} defs["ImGuiTextRange_split"][1]["funcname"] = "split" -defs["ImGuiTextRange_split"][1]["location"] = "imgui:1791" +defs["ImGuiTextRange_split"][1]["location"] = "imgui:1809" defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" @@ -6231,7 +6259,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:1078" +defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:1084" defs["ImGuiWindowSettings_GetName"][1]["ov_cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["ret"] = "char*" defs["ImGuiWindowSettings_GetName"][1]["signature"] = "()" @@ -6247,7 +6275,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:1077" +defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:1083" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["ov_cimguiname"] = "ImGuiWindowSettings_ImGuiWindowSettings" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["signature"] = "()" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["stname"] = "ImGuiWindowSettings" @@ -6278,7 +6306,7 @@ defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["cimguiname"] = "ImGuiWindowT defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["constructor"] = true defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["defaults"] = {} defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["funcname"] = "ImGuiWindowTempData" -defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["location"] = "imgui_internal:1526" +defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["location"] = "imgui_internal:1531" defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["ov_cimguiname"] = "ImGuiWindowTempData_ImGuiWindowTempData" defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["signature"] = "()" defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["stname"] = "ImGuiWindowTempData" @@ -6311,7 +6339,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:1664" +defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:1669" defs["ImGuiWindow_CalcFontSize"][1]["ov_cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["ret"] = "float" defs["ImGuiWindow_CalcFontSize"][1]["signature"] = "()const" @@ -6336,7 +6364,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:1654" +defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:1659" defs["ImGuiWindow_GetID"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDStr" defs["ImGuiWindow_GetID"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][1]["signature"] = "(const char*,const char*)" @@ -6355,7 +6383,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:1655" +defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:1660" defs["ImGuiWindow_GetID"][2]["ov_cimguiname"] = "ImGuiWindow_GetIDPtr" defs["ImGuiWindow_GetID"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][2]["signature"] = "(const void*)" @@ -6374,7 +6402,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:1656" +defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:1661" defs["ImGuiWindow_GetID"][3]["ov_cimguiname"] = "ImGuiWindow_GetIDInt" defs["ImGuiWindow_GetID"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][3]["signature"] = "(int)" @@ -6397,7 +6425,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:1660" +defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:1665" defs["ImGuiWindow_GetIDFromRectangle"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDFromRectangle"][1]["signature"] = "(const ImRect)" @@ -6422,7 +6450,7 @@ defs["ImGuiWindow_GetIDNoKeepAlive"][1]["cimguiname"] = "ImGuiWindow_GetIDNoKeep defs["ImGuiWindow_GetIDNoKeepAlive"][1]["defaults"] = {} defs["ImGuiWindow_GetIDNoKeepAlive"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["funcname"] = "GetIDNoKeepAlive" -defs["ImGuiWindow_GetIDNoKeepAlive"][1]["location"] = "imgui_internal:1657" +defs["ImGuiWindow_GetIDNoKeepAlive"][1]["location"] = "imgui_internal:1662" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDNoKeepAliveStr" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["signature"] = "(const char*,const char*)" @@ -6441,7 +6469,7 @@ defs["ImGuiWindow_GetIDNoKeepAlive"][2]["call_args"] = "(ptr)" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["cimguiname"] = "ImGuiWindow_GetIDNoKeepAlive" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["defaults"] = {} defs["ImGuiWindow_GetIDNoKeepAlive"][2]["funcname"] = "GetIDNoKeepAlive" -defs["ImGuiWindow_GetIDNoKeepAlive"][2]["location"] = "imgui_internal:1658" +defs["ImGuiWindow_GetIDNoKeepAlive"][2]["location"] = "imgui_internal:1663" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["ov_cimguiname"] = "ImGuiWindow_GetIDNoKeepAlivePtr" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["signature"] = "(const void*)" @@ -6460,7 +6488,7 @@ defs["ImGuiWindow_GetIDNoKeepAlive"][3]["call_args"] = "(n)" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["cimguiname"] = "ImGuiWindow_GetIDNoKeepAlive" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["defaults"] = {} defs["ImGuiWindow_GetIDNoKeepAlive"][3]["funcname"] = "GetIDNoKeepAlive" -defs["ImGuiWindow_GetIDNoKeepAlive"][3]["location"] = "imgui_internal:1659" +defs["ImGuiWindow_GetIDNoKeepAlive"][3]["location"] = "imgui_internal:1664" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["ov_cimguiname"] = "ImGuiWindow_GetIDNoKeepAliveInt" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["signature"] = "(int)" @@ -6484,7 +6512,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:1650" +defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:1655" defs["ImGuiWindow_ImGuiWindow"][1]["ov_cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["signature"] = "(ImGuiContext*,const char*)" defs["ImGuiWindow_ImGuiWindow"][1]["stname"] = "ImGuiWindow" @@ -6501,7 +6529,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:1667" +defs["ImGuiWindow_MenuBarHeight"][1]["location"] = "imgui_internal:1672" defs["ImGuiWindow_MenuBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarHeight" defs["ImGuiWindow_MenuBarHeight"][1]["ret"] = "float" defs["ImGuiWindow_MenuBarHeight"][1]["signature"] = "()const" @@ -6522,7 +6550,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:1668" +defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:1673" defs["ImGuiWindow_MenuBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_MenuBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["ret"] = "void" @@ -6544,7 +6572,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:1663" +defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:1668" defs["ImGuiWindow_Rect"][1]["nonUDT"] = 1 defs["ImGuiWindow_Rect"][1]["ov_cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["ret"] = "void" @@ -6563,7 +6591,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:1665" +defs["ImGuiWindow_TitleBarHeight"][1]["location"] = "imgui_internal:1670" defs["ImGuiWindow_TitleBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarHeight" defs["ImGuiWindow_TitleBarHeight"][1]["ret"] = "float" defs["ImGuiWindow_TitleBarHeight"][1]["signature"] = "()const" @@ -6584,7 +6612,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:1666" +defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:1671" defs["ImGuiWindow_TitleBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_TitleBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["ret"] = "void" @@ -6602,7 +6630,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:1652" +defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:1657" defs["ImGuiWindow_destroy"][1]["ov_cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["realdestructor"] = true defs["ImGuiWindow_destroy"][1]["ret"] = "void" @@ -6621,7 +6649,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:497" +defs["ImPool_Add"][1]["location"] = "imgui_internal:499" defs["ImPool_Add"][1]["ov_cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["ret"] = "T*" defs["ImPool_Add"][1]["signature"] = "()" @@ -6640,7 +6668,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:496" +defs["ImPool_Clear"][1]["location"] = "imgui_internal:498" defs["ImPool_Clear"][1]["ov_cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["ret"] = "void" defs["ImPool_Clear"][1]["signature"] = "()" @@ -6662,7 +6690,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:495" +defs["ImPool_Contains"][1]["location"] = "imgui_internal:497" defs["ImPool_Contains"][1]["ov_cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["ret"] = "bool" defs["ImPool_Contains"][1]["signature"] = "(const T*)const" @@ -6684,7 +6712,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:492" +defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:494" defs["ImPool_GetByIndex"][1]["ov_cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["ret"] = "T*" defs["ImPool_GetByIndex"][1]["signature"] = "(ImPoolIdx)" @@ -6706,7 +6734,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:491" +defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:493" defs["ImPool_GetByKey"][1]["ov_cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["ret"] = "T*" defs["ImPool_GetByKey"][1]["signature"] = "(ImGuiID)" @@ -6728,7 +6756,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:493" +defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:495" defs["ImPool_GetIndex"][1]["ov_cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["ret"] = "ImPoolIdx" defs["ImPool_GetIndex"][1]["signature"] = "(const T*)const" @@ -6750,7 +6778,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:494" +defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:496" defs["ImPool_GetOrAddByKey"][1]["ov_cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["ret"] = "T*" defs["ImPool_GetOrAddByKey"][1]["signature"] = "(ImGuiID)" @@ -6769,7 +6797,7 @@ defs["ImPool_GetSize"][1]["call_args"] = "()" defs["ImPool_GetSize"][1]["cimguiname"] = "ImPool_GetSize" defs["ImPool_GetSize"][1]["defaults"] = {} defs["ImPool_GetSize"][1]["funcname"] = "GetSize" -defs["ImPool_GetSize"][1]["location"] = "imgui_internal:501" +defs["ImPool_GetSize"][1]["location"] = "imgui_internal:503" defs["ImPool_GetSize"][1]["ov_cimguiname"] = "ImPool_GetSize" defs["ImPool_GetSize"][1]["ret"] = "int" defs["ImPool_GetSize"][1]["signature"] = "()const" @@ -6786,7 +6814,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:489" +defs["ImPool_ImPool"][1]["location"] = "imgui_internal:491" defs["ImPool_ImPool"][1]["ov_cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["signature"] = "()" defs["ImPool_ImPool"][1]["stname"] = "ImPool" @@ -6810,7 +6838,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:498" +defs["ImPool_Remove"][1]["location"] = "imgui_internal:500" defs["ImPool_Remove"][1]["ov_cimguiname"] = "ImPool_RemoveTPtr" defs["ImPool_Remove"][1]["ret"] = "void" defs["ImPool_Remove"][1]["signature"] = "(ImGuiID,const T*)" @@ -6833,7 +6861,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:499" +defs["ImPool_Remove"][2]["location"] = "imgui_internal:501" defs["ImPool_Remove"][2]["ov_cimguiname"] = "ImPool_RemovePoolIdx" defs["ImPool_Remove"][2]["ret"] = "void" defs["ImPool_Remove"][2]["signature"] = "(ImGuiID,ImPoolIdx)" @@ -6856,7 +6884,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:500" +defs["ImPool_Reserve"][1]["location"] = "imgui_internal:502" defs["ImPool_Reserve"][1]["ov_cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["ret"] = "void" defs["ImPool_Reserve"][1]["signature"] = "(int)" @@ -6874,7 +6902,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:490" +defs["ImPool_destroy"][1]["location"] = "imgui_internal:492" defs["ImPool_destroy"][1]["ov_cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["realdestructor"] = true defs["ImPool_destroy"][1]["ret"] = "void" @@ -6897,7 +6925,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:436" +defs["ImRect_Add"][1]["location"] = "imgui_internal:438" defs["ImRect_Add"][1]["ov_cimguiname"] = "ImRect_AddVec2" defs["ImRect_Add"][1]["ret"] = "void" defs["ImRect_Add"][1]["signature"] = "(const ImVec2)" @@ -6916,7 +6944,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:437" +defs["ImRect_Add"][2]["location"] = "imgui_internal:439" defs["ImRect_Add"][2]["ov_cimguiname"] = "ImRect_AddRect" defs["ImRect_Add"][2]["ret"] = "void" defs["ImRect_Add"][2]["signature"] = "(const ImRect)" @@ -6938,7 +6966,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:443" +defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:445" defs["ImRect_ClipWith"][1]["ov_cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["ret"] = "void" defs["ImRect_ClipWith"][1]["signature"] = "(const ImRect)" @@ -6959,7 +6987,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:444" +defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:446" defs["ImRect_ClipWithFull"][1]["ov_cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["ret"] = "void" defs["ImRect_ClipWithFull"][1]["signature"] = "(const ImRect)" @@ -6980,7 +7008,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:433" +defs["ImRect_Contains"][1]["location"] = "imgui_internal:435" defs["ImRect_Contains"][1]["ov_cimguiname"] = "ImRect_ContainsVec2" defs["ImRect_Contains"][1]["ret"] = "bool" defs["ImRect_Contains"][1]["signature"] = "(const ImVec2)const" @@ -6999,7 +7027,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:434" +defs["ImRect_Contains"][2]["location"] = "imgui_internal:436" defs["ImRect_Contains"][2]["ov_cimguiname"] = "ImRect_ContainsRect" defs["ImRect_Contains"][2]["ret"] = "bool" defs["ImRect_Contains"][2]["signature"] = "(const ImRect)const" @@ -7021,7 +7049,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:438" +defs["ImRect_Expand"][1]["location"] = "imgui_internal:440" defs["ImRect_Expand"][1]["ov_cimguiname"] = "ImRect_ExpandFloat" defs["ImRect_Expand"][1]["ret"] = "void" defs["ImRect_Expand"][1]["signature"] = "(const float)" @@ -7040,7 +7068,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:439" +defs["ImRect_Expand"][2]["location"] = "imgui_internal:441" defs["ImRect_Expand"][2]["ov_cimguiname"] = "ImRect_ExpandVec2" defs["ImRect_Expand"][2]["ret"] = "void" defs["ImRect_Expand"][2]["signature"] = "(const ImVec2)" @@ -7059,7 +7087,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:445" +defs["ImRect_Floor"][1]["location"] = "imgui_internal:447" defs["ImRect_Floor"][1]["ov_cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["ret"] = "void" defs["ImRect_Floor"][1]["signature"] = "()" @@ -7080,7 +7108,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:431" +defs["ImRect_GetBL"][1]["location"] = "imgui_internal:433" defs["ImRect_GetBL"][1]["nonUDT"] = 1 defs["ImRect_GetBL"][1]["ov_cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["ret"] = "void" @@ -7102,7 +7130,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:432" +defs["ImRect_GetBR"][1]["location"] = "imgui_internal:434" defs["ImRect_GetBR"][1]["nonUDT"] = 1 defs["ImRect_GetBR"][1]["ov_cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["ret"] = "void" @@ -7124,7 +7152,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:425" +defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:427" defs["ImRect_GetCenter"][1]["nonUDT"] = 1 defs["ImRect_GetCenter"][1]["ov_cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["ret"] = "void" @@ -7143,7 +7171,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:428" +defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:430" defs["ImRect_GetHeight"][1]["ov_cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["ret"] = "float" defs["ImRect_GetHeight"][1]["signature"] = "()const" @@ -7164,7 +7192,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:426" +defs["ImRect_GetSize"][1]["location"] = "imgui_internal:428" defs["ImRect_GetSize"][1]["nonUDT"] = 1 defs["ImRect_GetSize"][1]["ov_cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["ret"] = "void" @@ -7186,7 +7214,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:429" +defs["ImRect_GetTL"][1]["location"] = "imgui_internal:431" defs["ImRect_GetTL"][1]["nonUDT"] = 1 defs["ImRect_GetTL"][1]["ov_cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["ret"] = "void" @@ -7208,7 +7236,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:430" +defs["ImRect_GetTR"][1]["location"] = "imgui_internal:432" defs["ImRect_GetTR"][1]["nonUDT"] = 1 defs["ImRect_GetTR"][1]["ov_cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["ret"] = "void" @@ -7227,7 +7255,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:427" +defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:429" defs["ImRect_GetWidth"][1]["ov_cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["ret"] = "float" defs["ImRect_GetWidth"][1]["signature"] = "()const" @@ -7243,7 +7271,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:420" +defs["ImRect_ImRect"][1]["location"] = "imgui_internal:422" defs["ImRect_ImRect"][1]["ov_cimguiname"] = "ImRect_ImRectNil" defs["ImRect_ImRect"][1]["signature"] = "()" defs["ImRect_ImRect"][1]["stname"] = "ImRect" @@ -7262,7 +7290,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:421" +defs["ImRect_ImRect"][2]["location"] = "imgui_internal:423" defs["ImRect_ImRect"][2]["ov_cimguiname"] = "ImRect_ImRectVec2" defs["ImRect_ImRect"][2]["signature"] = "(const ImVec2,const ImVec2)" defs["ImRect_ImRect"][2]["stname"] = "ImRect" @@ -7278,7 +7306,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:422" +defs["ImRect_ImRect"][3]["location"] = "imgui_internal:424" defs["ImRect_ImRect"][3]["ov_cimguiname"] = "ImRect_ImRectVec4" defs["ImRect_ImRect"][3]["signature"] = "(const ImVec4)" defs["ImRect_ImRect"][3]["stname"] = "ImRect" @@ -7303,7 +7331,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:423" +defs["ImRect_ImRect"][4]["location"] = "imgui_internal:425" defs["ImRect_ImRect"][4]["ov_cimguiname"] = "ImRect_ImRectFloat" defs["ImRect_ImRect"][4]["signature"] = "(float,float,float,float)" defs["ImRect_ImRect"][4]["stname"] = "ImRect" @@ -7323,7 +7351,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:446" +defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:448" defs["ImRect_IsInverted"][1]["ov_cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["ret"] = "bool" defs["ImRect_IsInverted"][1]["signature"] = "()const" @@ -7344,7 +7372,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:435" +defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:437" defs["ImRect_Overlaps"][1]["ov_cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["ret"] = "bool" defs["ImRect_Overlaps"][1]["signature"] = "(const ImRect)const" @@ -7365,7 +7393,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:447" +defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:449" defs["ImRect_ToVec4"][1]["nonUDT"] = 1 defs["ImRect_ToVec4"][1]["ov_cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["ret"] = "void" @@ -7387,7 +7415,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:440" +defs["ImRect_Translate"][1]["location"] = "imgui_internal:442" defs["ImRect_Translate"][1]["ov_cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["ret"] = "void" defs["ImRect_Translate"][1]["signature"] = "(const ImVec2)" @@ -7408,7 +7436,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:441" +defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:443" defs["ImRect_TranslateX"][1]["ov_cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["ret"] = "void" defs["ImRect_TranslateX"][1]["signature"] = "(float)" @@ -7429,7 +7457,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:442" +defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:444" defs["ImRect_TranslateY"][1]["ov_cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["ret"] = "void" defs["ImRect_TranslateY"][1]["signature"] = "(float)" @@ -7461,7 +7489,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:400" +defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:402" defs["ImVec1_ImVec1"][1]["ov_cimguiname"] = "ImVec1_ImVec1Nil" defs["ImVec1_ImVec1"][1]["signature"] = "()" defs["ImVec1_ImVec1"][1]["stname"] = "ImVec1" @@ -7477,7 +7505,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:401" +defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:403" defs["ImVec1_ImVec1"][2]["ov_cimguiname"] = "ImVec1_ImVec1Float" defs["ImVec1_ImVec1"][2]["signature"] = "(float)" defs["ImVec1_ImVec1"][2]["stname"] = "ImVec1" @@ -7560,7 +7588,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:408" +defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:410" defs["ImVec2ih_ImVec2ih"][1]["ov_cimguiname"] = "ImVec2ih_ImVec2ihNil" defs["ImVec2ih_ImVec2ih"][1]["signature"] = "()" defs["ImVec2ih_ImVec2ih"][1]["stname"] = "ImVec2ih" @@ -7579,7 +7607,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:409" +defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:411" defs["ImVec2ih_ImVec2ih"][2]["ov_cimguiname"] = "ImVec2ih_ImVec2ihshort" defs["ImVec2ih_ImVec2ih"][2]["signature"] = "(short,short)" defs["ImVec2ih_ImVec2ih"][2]["stname"] = "ImVec2ih" @@ -7595,7 +7623,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:410" +defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:412" defs["ImVec2ih_ImVec2ih"][3]["ov_cimguiname"] = "ImVec2ih_ImVec2ihVec2" defs["ImVec2ih_ImVec2ih"][3]["signature"] = "(const ImVec2)" defs["ImVec2ih_ImVec2ih"][3]["stname"] = "ImVec2ih" @@ -7685,7 +7713,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:1389" +defs["ImVector_ImVector"][1]["location"] = "imgui:1401" defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVectorNil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -7702,7 +7730,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:1390" +defs["ImVector_ImVector"][2]["location"] = "imgui:1402" defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVectorVector" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector)" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -7724,7 +7752,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:1412" +defs["ImVector__grow_capacity"][1]["location"] = "imgui:1425" 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" @@ -7743,7 +7771,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:1408" +defs["ImVector_back"][1]["location"] = "imgui:1421" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_backNil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -7761,7 +7789,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:1409" +defs["ImVector_back"][2]["location"] = "imgui:1422" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back_const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -7782,7 +7810,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:1402" +defs["ImVector_begin"][1]["location"] = "imgui:1415" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_beginNil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -7799,7 +7827,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:1403" +defs["ImVector_begin"][2]["location"] = "imgui:1416" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin_const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -7819,7 +7847,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:1397" +defs["ImVector_capacity"][1]["location"] = "imgui:1410" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -7838,7 +7866,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:1401" +defs["ImVector_clear"][1]["location"] = "imgui:1414" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -7860,7 +7888,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:1426" +defs["ImVector_contains"][1]["location"] = "imgui:1439" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -7878,7 +7906,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:1392" +defs["ImVector_destroy"][1]["location"] = "imgui:1404" defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" @@ -7898,7 +7926,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:1394" +defs["ImVector_empty"][1]["location"] = "imgui:1406" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -7917,7 +7945,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:1404" +defs["ImVector_end"][1]["location"] = "imgui:1417" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_endNil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -7934,7 +7962,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:1405" +defs["ImVector_end"][2]["location"] = "imgui:1418" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end_const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -7957,7 +7985,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:1422" +defs["ImVector_erase"][1]["location"] = "imgui:1435" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_eraseNil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -7980,7 +8008,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:1423" +defs["ImVector_erase"][2]["location"] = "imgui:1436" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_eraseTPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -8003,7 +8031,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:1424" +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:1437" 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*)" @@ -8025,7 +8053,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:1427" +defs["ImVector_find"][1]["location"] = "imgui:1440" defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_findNil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -8045,7 +8073,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:1428" +defs["ImVector_find"][2]["location"] = "imgui:1441" defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find_const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -8068,7 +8096,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:1429" +defs["ImVector_find_erase"][1]["location"] = "imgui:1442" 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)" @@ -8090,7 +8118,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:1430" +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:1443" 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)" @@ -8109,7 +8137,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:1406" +defs["ImVector_front"][1]["location"] = "imgui:1419" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_frontNil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -8127,7 +8155,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:1407" +defs["ImVector_front"][2]["location"] = "imgui:1420" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front_const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -8151,7 +8179,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:1431" +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:1444" 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" @@ -8176,13 +8204,32 @@ 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:1425" +defs["ImVector_insert"][1]["location"] = "imgui:1438" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" defs["ImVector_insert"][1]["stname"] = "ImVector" defs["ImVector_insert"][1]["templated"] = true defs["ImVector_insert"]["(const T*,const T)"] = defs["ImVector_insert"][1] +defs["ImVector_max_size"] = {} +defs["ImVector_max_size"][1] = {} +defs["ImVector_max_size"][1]["args"] = "(ImVector* self)" +defs["ImVector_max_size"][1]["argsT"] = {} +defs["ImVector_max_size"][1]["argsT"][1] = {} +defs["ImVector_max_size"][1]["argsT"][1]["name"] = "self" +defs["ImVector_max_size"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_max_size"][1]["argsoriginal"] = "()" +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:1409" +defs["ImVector_max_size"][1]["ov_cimguiname"] = "ImVector_max_size" +defs["ImVector_max_size"][1]["ret"] = "int" +defs["ImVector_max_size"][1]["signature"] = "()const" +defs["ImVector_max_size"][1]["stname"] = "ImVector" +defs["ImVector_max_size"][1]["templated"] = true +defs["ImVector_max_size"]["()const"] = defs["ImVector_max_size"][1] defs["ImVector_pop_back"] = {} defs["ImVector_pop_back"][1] = {} defs["ImVector_pop_back"][1]["args"] = "(ImVector* self)" @@ -8195,7 +8242,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:1420" +defs["ImVector_pop_back"][1]["location"] = "imgui:1433" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -8217,7 +8264,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:1419" +defs["ImVector_push_back"][1]["location"] = "imgui:1432" 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)" @@ -8239,7 +8286,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:1421" +defs["ImVector_push_front"][1]["location"] = "imgui:1434" 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)" @@ -8261,7 +8308,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:1416" +defs["ImVector_reserve"][1]["location"] = "imgui:1429" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -8283,7 +8330,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:1413" +defs["ImVector_resize"][1]["location"] = "imgui:1426" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resizeNil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -8306,7 +8353,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:1414" +defs["ImVector_resize"][2]["location"] = "imgui:1427" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resizeT" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -8329,7 +8376,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:1415" +defs["ImVector_shrink"][1]["location"] = "imgui:1428" defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -8348,7 +8395,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:1395" +defs["ImVector_size"][1]["location"] = "imgui:1407" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -8367,7 +8414,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:1396" +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:1408" 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" @@ -8390,7 +8437,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:1410" +defs["ImVector_swap"][1]["location"] = "imgui:1423" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" defs["ImVector_swap"][1]["signature"] = "(ImVector*)" @@ -8413,7 +8460,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:676" +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:677" defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -8432,7 +8479,7 @@ defs["igActivateItem"][1]["call_args"] = "(id)" defs["igActivateItem"][1]["cimguiname"] = "igActivateItem" defs["igActivateItem"][1]["defaults"] = {} defs["igActivateItem"][1]["funcname"] = "ActivateItem" -defs["igActivateItem"][1]["location"] = "imgui_internal:1885" +defs["igActivateItem"][1]["location"] = "imgui_internal:1897" defs["igActivateItem"][1]["namespace"] = "ImGui" defs["igActivateItem"][1]["ov_cimguiname"] = "igActivateItem" defs["igActivateItem"][1]["ret"] = "void" @@ -8499,7 +8546,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:1970" +defs["igArrowButtonEx"][1]["location"] = "imgui_internal:1983" defs["igArrowButtonEx"][1]["namespace"] = "ImGui" defs["igArrowButtonEx"][1]["ov_cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["ret"] = "bool" @@ -8618,7 +8665,7 @@ defs["igBeginChildEx"][1]["call_args"] = "(name,id,size_arg,border,flags)" defs["igBeginChildEx"][1]["cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["defaults"] = {} defs["igBeginChildEx"][1]["funcname"] = "BeginChildEx" -defs["igBeginChildEx"][1]["location"] = "imgui_internal:1865" +defs["igBeginChildEx"][1]["location"] = "imgui_internal:1877" defs["igBeginChildEx"][1]["namespace"] = "ImGui" defs["igBeginChildEx"][1]["ov_cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["ret"] = "bool" @@ -8644,7 +8691,7 @@ defs["igBeginChildFrame"][1]["cimguiname"] = "igBeginChildFrame" defs["igBeginChildFrame"][1]["defaults"] = {} defs["igBeginChildFrame"][1]["defaults"]["flags"] = "0" defs["igBeginChildFrame"][1]["funcname"] = "BeginChildFrame" -defs["igBeginChildFrame"][1]["location"] = "imgui:722" +defs["igBeginChildFrame"][1]["location"] = "imgui:723" defs["igBeginChildFrame"][1]["namespace"] = "ImGui" defs["igBeginChildFrame"][1]["ov_cimguiname"] = "igBeginChildFrame" defs["igBeginChildFrame"][1]["ret"] = "bool" @@ -8670,7 +8717,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:1914" +defs["igBeginColumns"][1]["location"] = "imgui_internal:1926" defs["igBeginColumns"][1]["namespace"] = "ImGui" defs["igBeginColumns"][1]["ov_cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["ret"] = "void" @@ -8716,7 +8763,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:672" +defs["igBeginDragDropSource"][1]["location"] = "imgui:673" defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -8732,7 +8779,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:675" +defs["igBeginDragDropTarget"][1]["location"] = "imgui:676" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -8754,7 +8801,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:1908" +defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:1920" defs["igBeginDragDropTargetCustom"][1]["namespace"] = "ImGui" defs["igBeginDragDropTargetCustom"][1]["ov_cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["ret"] = "bool" @@ -8942,7 +8989,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:1870" +defs["igBeginPopupEx"][1]["location"] = "imgui_internal:1882" defs["igBeginPopupEx"][1]["namespace"] = "ImGui" defs["igBeginPopupEx"][1]["ov_cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["ret"] = "bool" @@ -9017,7 +9064,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:1925" +defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:1937" defs["igBeginTabBarEx"][1]["namespace"] = "ImGui" defs["igBeginTabBarEx"][1]["ov_cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["ret"] = "bool" @@ -9082,7 +9129,7 @@ defs["igBeginTooltipEx"][1]["call_args"] = "(extra_flags,tooltip_flags)" defs["igBeginTooltipEx"][1]["cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["defaults"] = {} defs["igBeginTooltipEx"][1]["funcname"] = "BeginTooltipEx" -defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:1871" +defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:1883" defs["igBeginTooltipEx"][1]["namespace"] = "ImGui" defs["igBeginTooltipEx"][1]["ov_cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["ret"] = "void" @@ -9101,7 +9148,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:1794" +defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:1805" defs["igBringWindowToDisplayBack"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBack"][1]["ov_cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["ret"] = "void" @@ -9120,7 +9167,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:1793" +defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:1804" defs["igBringWindowToDisplayFront"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayFront"][1]["ov_cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["ret"] = "void" @@ -9139,7 +9186,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:1792" +defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:1803" defs["igBringWindowToFocusFront"][1]["namespace"] = "ImGui" defs["igBringWindowToFocusFront"][1]["ov_cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["ret"] = "void" @@ -9255,7 +9302,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:1980" +defs["igButtonBehavior"][1]["location"] = "imgui_internal:1993" defs["igButtonBehavior"][1]["namespace"] = "ImGui" defs["igButtonBehavior"][1]["ov_cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["ret"] = "bool" @@ -9282,7 +9329,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:1967" +defs["igButtonEx"][1]["location"] = "imgui_internal:1980" defs["igButtonEx"][1]["namespace"] = "ImGui" defs["igButtonEx"][1]["ov_cimguiname"] = "igButtonEx" defs["igButtonEx"][1]["ret"] = "bool" @@ -9310,7 +9357,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:1851" +defs["igCalcItemSize"][1]["location"] = "imgui_internal:1863" defs["igCalcItemSize"][1]["namespace"] = "ImGui" defs["igCalcItemSize"][1]["nonUDT"] = 1 defs["igCalcItemSize"][1]["ov_cimguiname"] = "igCalcItemSize" @@ -9355,7 +9402,7 @@ defs["igCalcListClipping"][1]["call_args"] = "(items_count,items_height,out_item defs["igCalcListClipping"][1]["cimguiname"] = "igCalcListClipping" defs["igCalcListClipping"][1]["defaults"] = {} defs["igCalcListClipping"][1]["funcname"] = "CalcListClipping" -defs["igCalcListClipping"][1]["location"] = "imgui:721" +defs["igCalcListClipping"][1]["location"] = "imgui:722" defs["igCalcListClipping"][1]["namespace"] = "ImGui" defs["igCalcListClipping"][1]["ov_cimguiname"] = "igCalcListClipping" defs["igCalcListClipping"][1]["ret"] = "void" @@ -9389,7 +9436,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:726" +defs["igCalcTextSize"][1]["location"] = "imgui:727" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -9418,7 +9465,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:1884" +defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:1896" defs["igCalcTypematicRepeatAmount"][1]["namespace"] = "ImGui" defs["igCalcTypematicRepeatAmount"][1]["ov_cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["ret"] = "int" @@ -9440,7 +9487,7 @@ defs["igCalcWindowExpectedSize"][1]["call_args"] = "(window)" defs["igCalcWindowExpectedSize"][1]["cimguiname"] = "igCalcWindowExpectedSize" defs["igCalcWindowExpectedSize"][1]["defaults"] = {} defs["igCalcWindowExpectedSize"][1]["funcname"] = "CalcWindowExpectedSize" -defs["igCalcWindowExpectedSize"][1]["location"] = "imgui_internal:1780" +defs["igCalcWindowExpectedSize"][1]["location"] = "imgui_internal:1791" defs["igCalcWindowExpectedSize"][1]["namespace"] = "ImGui" defs["igCalcWindowExpectedSize"][1]["nonUDT"] = 1 defs["igCalcWindowExpectedSize"][1]["ov_cimguiname"] = "igCalcWindowExpectedSize" @@ -9463,7 +9510,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:1852" +defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:1864" defs["igCalcWrapWidthForPos"][1]["namespace"] = "ImGui" defs["igCalcWrapWidthForPos"][1]["ov_cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["ret"] = "float" @@ -9483,7 +9530,7 @@ defs["igCaptureKeyboardFromApp"][1]["cimguiname"] = "igCaptureKeyboardFromApp" defs["igCaptureKeyboardFromApp"][1]["defaults"] = {} defs["igCaptureKeyboardFromApp"][1]["defaults"]["want_capture_keyboard_value"] = "true" defs["igCaptureKeyboardFromApp"][1]["funcname"] = "CaptureKeyboardFromApp" -defs["igCaptureKeyboardFromApp"][1]["location"] = "imgui:742" +defs["igCaptureKeyboardFromApp"][1]["location"] = "imgui:743" defs["igCaptureKeyboardFromApp"][1]["namespace"] = "ImGui" defs["igCaptureKeyboardFromApp"][1]["ov_cimguiname"] = "igCaptureKeyboardFromApp" defs["igCaptureKeyboardFromApp"][1]["ret"] = "void" @@ -9503,7 +9550,7 @@ defs["igCaptureMouseFromApp"][1]["cimguiname"] = "igCaptureMouseFromApp" defs["igCaptureMouseFromApp"][1]["defaults"] = {} defs["igCaptureMouseFromApp"][1]["defaults"]["want_capture_mouse_value"] = "true" defs["igCaptureMouseFromApp"][1]["funcname"] = "CaptureMouseFromApp" -defs["igCaptureMouseFromApp"][1]["location"] = "imgui:762" +defs["igCaptureMouseFromApp"][1]["location"] = "imgui:763" defs["igCaptureMouseFromApp"][1]["namespace"] = "ImGui" defs["igCaptureMouseFromApp"][1]["ov_cimguiname"] = "igCaptureMouseFromApp" defs["igCaptureMouseFromApp"][1]["ret"] = "void" @@ -9566,7 +9613,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:1835" +defs["igClearActiveID"][1]["location"] = "imgui_internal:1846" defs["igClearActiveID"][1]["namespace"] = "ImGui" defs["igClearActiveID"][1]["ov_cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["ret"] = "void" @@ -9582,7 +9629,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:1909" +defs["igClearDragDrop"][1]["location"] = "imgui_internal:1921" defs["igClearDragDrop"][1]["namespace"] = "ImGui" defs["igClearDragDrop"][1]["ov_cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["ret"] = "void" @@ -9598,7 +9645,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:1814" +defs["igClearIniSettings"][1]["location"] = "imgui_internal:1825" defs["igClearIniSettings"][1]["namespace"] = "ImGui" defs["igClearIniSettings"][1]["ov_cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["ret"] = "void" @@ -9620,7 +9667,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:1968" +defs["igCloseButton"][1]["location"] = "imgui_internal:1981" defs["igCloseButton"][1]["namespace"] = "ImGui" defs["igCloseButton"][1]["ov_cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["ret"] = "bool" @@ -9658,7 +9705,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:1867" +defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:1879" defs["igClosePopupToLevel"][1]["namespace"] = "ImGui" defs["igClosePopupToLevel"][1]["ov_cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["ret"] = "void" @@ -9680,7 +9727,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:1868" +defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:1880" defs["igClosePopupsOverWindow"][1]["namespace"] = "ImGui" defs["igClosePopupsOverWindow"][1]["ov_cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["ret"] = "void" @@ -9702,7 +9749,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:1969" +defs["igCollapseButton"][1]["location"] = "imgui_internal:1982" defs["igCollapseButton"][1]["namespace"] = "ImGui" defs["igCollapseButton"][1]["ov_cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["ret"] = "bool" @@ -9799,7 +9846,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:730" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:731" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -9836,7 +9883,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:732" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:733" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -9873,7 +9920,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:731" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:732" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -9895,7 +9942,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:729" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:730" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -9970,7 +10017,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:2013" +defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:2027" defs["igColorEditOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorEditOptionsPopup"][1]["ov_cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["ret"] = "void" @@ -10048,7 +10095,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:2014" +defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:2028" defs["igColorPickerOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorPickerOptionsPopup"][1]["ov_cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["ret"] = "void" @@ -10073,7 +10120,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:2012" +defs["igColorTooltip"][1]["location"] = "imgui_internal:2026" defs["igColorTooltip"][1]["namespace"] = "ImGui" defs["igColorTooltip"][1]["ov_cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["ret"] = "void" @@ -10236,7 +10283,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:1815" +defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:1826" defs["igCreateNewWindowSettings"][1]["namespace"] = "ImGui" defs["igCreateNewWindowSettings"][1]["ov_cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -10245,7 +10292,7 @@ defs["igCreateNewWindowSettings"][1]["stname"] = "" defs["igCreateNewWindowSettings"]["(const char*)"] = defs["igCreateNewWindowSettings"][1] defs["igDataTypeApplyOp"] = {} defs["igDataTypeApplyOp"][1] = {} -defs["igDataTypeApplyOp"][1]["args"] = "(ImGuiDataType data_type,int op,void* output,void* arg_1,const void* arg_2)" +defs["igDataTypeApplyOp"][1]["args"] = "(ImGuiDataType data_type,int op,void* output,const void* arg_1,const void* arg_2)" defs["igDataTypeApplyOp"][1]["argsT"] = {} defs["igDataTypeApplyOp"][1]["argsT"][1] = {} defs["igDataTypeApplyOp"][1]["argsT"][1]["name"] = "data_type" @@ -10258,22 +10305,22 @@ defs["igDataTypeApplyOp"][1]["argsT"][3]["name"] = "output" defs["igDataTypeApplyOp"][1]["argsT"][3]["type"] = "void*" defs["igDataTypeApplyOp"][1]["argsT"][4] = {} defs["igDataTypeApplyOp"][1]["argsT"][4]["name"] = "arg_1" -defs["igDataTypeApplyOp"][1]["argsT"][4]["type"] = "void*" +defs["igDataTypeApplyOp"][1]["argsT"][4]["type"] = "const void*" defs["igDataTypeApplyOp"][1]["argsT"][5] = {} defs["igDataTypeApplyOp"][1]["argsT"][5]["name"] = "arg_2" defs["igDataTypeApplyOp"][1]["argsT"][5]["type"] = "const void*" -defs["igDataTypeApplyOp"][1]["argsoriginal"] = "(ImGuiDataType data_type,int op,void* output,void* arg_1,const void* arg_2)" +defs["igDataTypeApplyOp"][1]["argsoriginal"] = "(ImGuiDataType data_type,int op,void* output,const void* arg_1,const void* arg_2)" 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:2000" +defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:2013" defs["igDataTypeApplyOp"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOp"][1]["ov_cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["ret"] = "void" -defs["igDataTypeApplyOp"][1]["signature"] = "(ImGuiDataType,int,void*,void*,const void*)" +defs["igDataTypeApplyOp"][1]["signature"] = "(ImGuiDataType,int,void*,const void*,const void*)" defs["igDataTypeApplyOp"][1]["stname"] = "" -defs["igDataTypeApplyOp"]["(ImGuiDataType,int,void*,void*,const void*)"] = defs["igDataTypeApplyOp"][1] +defs["igDataTypeApplyOp"]["(ImGuiDataType,int,void*,const void*,const void*)"] = defs["igDataTypeApplyOp"][1] defs["igDataTypeApplyOpFromText"] = {} defs["igDataTypeApplyOpFromText"][1] = {} defs["igDataTypeApplyOpFromText"][1]["args"] = "(const char* buf,const char* initial_value_buf,ImGuiDataType data_type,void* p_data,const char* format)" @@ -10298,7 +10345,7 @@ defs["igDataTypeApplyOpFromText"][1]["call_args"] = "(buf,initial_value_buf,data defs["igDataTypeApplyOpFromText"][1]["cimguiname"] = "igDataTypeApplyOpFromText" defs["igDataTypeApplyOpFromText"][1]["defaults"] = {} defs["igDataTypeApplyOpFromText"][1]["funcname"] = "DataTypeApplyOpFromText" -defs["igDataTypeApplyOpFromText"][1]["location"] = "imgui_internal:2001" +defs["igDataTypeApplyOpFromText"][1]["location"] = "imgui_internal:2014" defs["igDataTypeApplyOpFromText"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOpFromText"][1]["ov_cimguiname"] = "igDataTypeApplyOpFromText" defs["igDataTypeApplyOpFromText"][1]["ret"] = "bool" @@ -10326,13 +10373,38 @@ 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:2002" +defs["igDataTypeClamp"][1]["location"] = "imgui_internal:2016" defs["igDataTypeClamp"][1]["namespace"] = "ImGui" defs["igDataTypeClamp"][1]["ov_cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["ret"] = "bool" defs["igDataTypeClamp"][1]["signature"] = "(ImGuiDataType,void*,const void*,const void*)" defs["igDataTypeClamp"][1]["stname"] = "" defs["igDataTypeClamp"]["(ImGuiDataType,void*,const void*,const void*)"] = defs["igDataTypeClamp"][1] +defs["igDataTypeCompare"] = {} +defs["igDataTypeCompare"][1] = {} +defs["igDataTypeCompare"][1]["args"] = "(ImGuiDataType data_type,const void* arg_1,const void* arg_2)" +defs["igDataTypeCompare"][1]["argsT"] = {} +defs["igDataTypeCompare"][1]["argsT"][1] = {} +defs["igDataTypeCompare"][1]["argsT"][1]["name"] = "data_type" +defs["igDataTypeCompare"][1]["argsT"][1]["type"] = "ImGuiDataType" +defs["igDataTypeCompare"][1]["argsT"][2] = {} +defs["igDataTypeCompare"][1]["argsT"][2]["name"] = "arg_1" +defs["igDataTypeCompare"][1]["argsT"][2]["type"] = "const void*" +defs["igDataTypeCompare"][1]["argsT"][3] = {} +defs["igDataTypeCompare"][1]["argsT"][3]["name"] = "arg_2" +defs["igDataTypeCompare"][1]["argsT"][3]["type"] = "const void*" +defs["igDataTypeCompare"][1]["argsoriginal"] = "(ImGuiDataType data_type,const void* arg_1,const void* arg_2)" +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:2015" +defs["igDataTypeCompare"][1]["namespace"] = "ImGui" +defs["igDataTypeCompare"][1]["ov_cimguiname"] = "igDataTypeCompare" +defs["igDataTypeCompare"][1]["ret"] = "int" +defs["igDataTypeCompare"][1]["signature"] = "(ImGuiDataType,const void*,const void*)" +defs["igDataTypeCompare"][1]["stname"] = "" +defs["igDataTypeCompare"]["(ImGuiDataType,const void*,const void*)"] = defs["igDataTypeCompare"][1] defs["igDataTypeFormatString"] = {} defs["igDataTypeFormatString"][1] = {} defs["igDataTypeFormatString"][1]["args"] = "(char* buf,int buf_size,ImGuiDataType data_type,const void* p_data,const char* format)" @@ -10357,7 +10429,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:1999" +defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:2012" defs["igDataTypeFormatString"][1]["namespace"] = "ImGui" defs["igDataTypeFormatString"][1]["ov_cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["ret"] = "int" @@ -10376,7 +10448,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:1998" +defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:2011" defs["igDataTypeGetInfo"][1]["namespace"] = "ImGui" defs["igDataTypeGetInfo"][1]["ov_cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["ret"] = "const ImGuiDataTypeInfo*" @@ -10413,7 +10485,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:778" +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:779" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" @@ -10433,7 +10505,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:2028" +defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:2042" defs["igDebugDrawItemRect"][1]["namespace"] = "ImGui" defs["igDebugDrawItemRect"][1]["ov_cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["ret"] = "void" @@ -10449,7 +10521,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:2029" +defs["igDebugStartItemPicker"][1]["location"] = "imgui_internal:2043" defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["ret"] = "void" @@ -10509,7 +10581,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:1981" +defs["igDragBehavior"][1]["location"] = "imgui_internal:1994" defs["igDragBehavior"][1]["namespace"] = "ImGui" defs["igDragBehavior"][1]["ov_cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["ret"] = "bool" @@ -11101,7 +11173,7 @@ defs["igEndChildFrame"][1]["call_args"] = "()" defs["igEndChildFrame"][1]["cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["defaults"] = {} defs["igEndChildFrame"][1]["funcname"] = "EndChildFrame" -defs["igEndChildFrame"][1]["location"] = "imgui:723" +defs["igEndChildFrame"][1]["location"] = "imgui:724" defs["igEndChildFrame"][1]["namespace"] = "ImGui" defs["igEndChildFrame"][1]["ov_cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["ret"] = "void" @@ -11117,7 +11189,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:1915" +defs["igEndColumns"][1]["location"] = "imgui_internal:1927" defs["igEndColumns"][1]["namespace"] = "ImGui" defs["igEndColumns"][1]["ov_cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["ret"] = "void" @@ -11149,7 +11221,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:674" +defs["igEndDragDropSource"][1]["location"] = "imgui:675" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -11165,7 +11237,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:677" +defs["igEndDragDropTarget"][1]["location"] = "imgui:678" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -11331,7 +11403,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:1873" +defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:1885" defs["igFindBestWindowPosForPopup"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopup"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopup"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopup" @@ -11364,13 +11436,12 @@ defs["igFindBestWindowPosForPopupEx"][1]["argsT"][6]["type"] = "const ImRect" defs["igFindBestWindowPosForPopupEx"][1]["argsT"][7] = {} defs["igFindBestWindowPosForPopupEx"][1]["argsT"][7]["name"] = "policy" defs["igFindBestWindowPosForPopupEx"][1]["argsT"][7]["type"] = "ImGuiPopupPositionPolicy" -defs["igFindBestWindowPosForPopupEx"][1]["argsoriginal"] = "(const ImVec2& ref_pos,const ImVec2& size,ImGuiDir* last_dir,const ImRect& r_outer,const ImRect& r_avoid,ImGuiPopupPositionPolicy policy=ImGuiPopupPositionPolicy_Default)" +defs["igFindBestWindowPosForPopupEx"][1]["argsoriginal"] = "(const ImVec2& ref_pos,const ImVec2& size,ImGuiDir* last_dir,const ImRect& r_outer,const ImRect& r_avoid,ImGuiPopupPositionPolicy policy)" defs["igFindBestWindowPosForPopupEx"][1]["call_args"] = "(ref_pos,size,last_dir,r_outer,r_avoid,policy)" defs["igFindBestWindowPosForPopupEx"][1]["cimguiname"] = "igFindBestWindowPosForPopupEx" defs["igFindBestWindowPosForPopupEx"][1]["defaults"] = {} -defs["igFindBestWindowPosForPopupEx"][1]["defaults"]["policy"] = "ImGuiPopupPositionPolicy_Default" defs["igFindBestWindowPosForPopupEx"][1]["funcname"] = "FindBestWindowPosForPopupEx" -defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:1874" +defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:1886" defs["igFindBestWindowPosForPopupEx"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopupEx"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopupEx"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopupEx" @@ -11393,7 +11464,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:1920" +defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:1932" defs["igFindOrCreateColumns"][1]["namespace"] = "ImGui" defs["igFindOrCreateColumns"][1]["ov_cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["ret"] = "ImGuiColumns*" @@ -11412,7 +11483,7 @@ defs["igFindOrCreateWindowSettings"][1]["call_args"] = "(name)" defs["igFindOrCreateWindowSettings"][1]["cimguiname"] = "igFindOrCreateWindowSettings" defs["igFindOrCreateWindowSettings"][1]["defaults"] = {} defs["igFindOrCreateWindowSettings"][1]["funcname"] = "FindOrCreateWindowSettings" -defs["igFindOrCreateWindowSettings"][1]["location"] = "imgui_internal:1817" +defs["igFindOrCreateWindowSettings"][1]["location"] = "imgui_internal:1828" defs["igFindOrCreateWindowSettings"][1]["namespace"] = "ImGui" defs["igFindOrCreateWindowSettings"][1]["ov_cimguiname"] = "igFindOrCreateWindowSettings" defs["igFindOrCreateWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -11435,7 +11506,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:1947" +defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:1960" defs["igFindRenderedTextEnd"][1]["namespace"] = "ImGui" defs["igFindRenderedTextEnd"][1]["ov_cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["ret"] = "const char*" @@ -11454,7 +11525,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:1818" +defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:1829" defs["igFindSettingsHandler"][1]["namespace"] = "ImGui" defs["igFindSettingsHandler"][1]["ov_cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["ret"] = "ImGuiSettingsHandler*" @@ -11473,7 +11544,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:1777" +defs["igFindWindowByID"][1]["location"] = "imgui_internal:1788" defs["igFindWindowByID"][1]["namespace"] = "ImGui" defs["igFindWindowByID"][1]["ov_cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["ret"] = "ImGuiWindow*" @@ -11492,7 +11563,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:1778" +defs["igFindWindowByName"][1]["location"] = "imgui_internal:1789" defs["igFindWindowByName"][1]["namespace"] = "ImGui" defs["igFindWindowByName"][1]["ov_cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["ret"] = "ImGuiWindow*" @@ -11511,7 +11582,7 @@ defs["igFindWindowSettings"][1]["call_args"] = "(id)" defs["igFindWindowSettings"][1]["cimguiname"] = "igFindWindowSettings" defs["igFindWindowSettings"][1]["defaults"] = {} defs["igFindWindowSettings"][1]["funcname"] = "FindWindowSettings" -defs["igFindWindowSettings"][1]["location"] = "imgui_internal:1816" +defs["igFindWindowSettings"][1]["location"] = "imgui_internal:1827" defs["igFindWindowSettings"][1]["namespace"] = "ImGui" defs["igFindWindowSettings"][1]["ov_cimguiname"] = "igFindWindowSettings" defs["igFindWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -11533,7 +11604,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:1791" +defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:1802" defs["igFocusTopMostWindowUnderOne"][1]["namespace"] = "ImGui" defs["igFocusTopMostWindowUnderOne"][1]["ov_cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["ret"] = "void" @@ -11552,7 +11623,7 @@ defs["igFocusWindow"][1]["call_args"] = "(window)" defs["igFocusWindow"][1]["cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["defaults"] = {} defs["igFocusWindow"][1]["funcname"] = "FocusWindow" -defs["igFocusWindow"][1]["location"] = "imgui_internal:1790" +defs["igFocusWindow"][1]["location"] = "imgui_internal:1801" defs["igFocusWindow"][1]["namespace"] = "ImGui" defs["igFocusWindow"][1]["ov_cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["ret"] = "void" @@ -11574,7 +11645,7 @@ defs["igFocusableItemRegister"][1]["call_args"] = "(window,id)" defs["igFocusableItemRegister"][1]["cimguiname"] = "igFocusableItemRegister" defs["igFocusableItemRegister"][1]["defaults"] = {} defs["igFocusableItemRegister"][1]["funcname"] = "FocusableItemRegister" -defs["igFocusableItemRegister"][1]["location"] = "imgui_internal:1849" +defs["igFocusableItemRegister"][1]["location"] = "imgui_internal:1861" defs["igFocusableItemRegister"][1]["namespace"] = "ImGui" defs["igFocusableItemRegister"][1]["ov_cimguiname"] = "igFocusableItemRegister" defs["igFocusableItemRegister"][1]["ret"] = "bool" @@ -11593,7 +11664,7 @@ defs["igFocusableItemUnregister"][1]["call_args"] = "(window)" defs["igFocusableItemUnregister"][1]["cimguiname"] = "igFocusableItemUnregister" defs["igFocusableItemUnregister"][1]["defaults"] = {} defs["igFocusableItemUnregister"][1]["funcname"] = "FocusableItemUnregister" -defs["igFocusableItemUnregister"][1]["location"] = "imgui_internal:1850" +defs["igFocusableItemUnregister"][1]["location"] = "imgui_internal:1862" defs["igFocusableItemUnregister"][1]["namespace"] = "ImGui" defs["igFocusableItemUnregister"][1]["ov_cimguiname"] = "igFocusableItemUnregister" defs["igFocusableItemUnregister"][1]["ret"] = "void" @@ -11612,7 +11683,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:2025" +defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:2039" defs["igGcAwakeTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcAwakeTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["ret"] = "void" @@ -11631,7 +11702,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:2024" +defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:2038" defs["igGcCompactTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["ret"] = "void" @@ -11647,7 +11718,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:1831" +defs["igGetActiveID"][1]["location"] = "imgui_internal:1842" defs["igGetActiveID"][1]["namespace"] = "ImGui" defs["igGetActiveID"][1]["ov_cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["ret"] = "ImGuiID" @@ -11663,7 +11734,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:715" +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:716" defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" @@ -11679,7 +11750,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:766" +defs["igGetClipboardText"][1]["location"] = "imgui:767" defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -11776,7 +11847,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:1922" +defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:1934" defs["igGetColumnNormFromOffset"][1]["namespace"] = "ImGui" defs["igGetColumnNormFromOffset"][1]["ov_cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["ret"] = "float" @@ -11818,7 +11889,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:1921" +defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:1933" defs["igGetColumnOffsetFromNorm"][1]["namespace"] = "ImGui" defs["igGetColumnOffsetFromNorm"][1]["ov_cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["ret"] = "float" @@ -11876,7 +11947,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:1919" +defs["igGetColumnsID"][1]["location"] = "imgui_internal:1931" defs["igGetColumnsID"][1]["namespace"] = "ImGui" defs["igGetColumnsID"][1]["ov_cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["ret"] = "ImGuiID" @@ -11935,7 +12006,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:1857" +defs["igGetContentRegionMaxAbs"][1]["location"] = "imgui_internal:1869" defs["igGetContentRegionMaxAbs"][1]["namespace"] = "ImGui" defs["igGetContentRegionMaxAbs"][1]["nonUDT"] = 1 defs["igGetContentRegionMaxAbs"][1]["ov_cimguiname"] = "igGetContentRegionMaxAbs" @@ -11968,7 +12039,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:1776" +defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:1787" defs["igGetCurrentWindow"][1]["namespace"] = "ImGui" defs["igGetCurrentWindow"][1]["ov_cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["ret"] = "ImGuiWindow*" @@ -11984,7 +12055,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:1775" +defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:1786" defs["igGetCurrentWindowRead"][1]["namespace"] = "ImGui" defs["igGetCurrentWindowRead"][1]["ov_cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["ret"] = "ImGuiWindow*" @@ -12092,7 +12163,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:1798" +defs["igGetDefaultFont"][1]["location"] = "imgui_internal:1809" defs["igGetDefaultFont"][1]["namespace"] = "ImGui" defs["igGetDefaultFont"][1]["ov_cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["ret"] = "ImFont*" @@ -12108,7 +12179,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:678" +defs["igGetDragDropPayload"][1]["location"] = "imgui:679" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -12140,7 +12211,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:717" +defs["igGetDrawListSharedData"][1]["location"] = "imgui:718" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -12156,7 +12227,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:1832" +defs["igGetFocusID"][1]["location"] = "imgui_internal:1843" defs["igGetFocusID"][1]["namespace"] = "ImGui" defs["igGetFocusID"][1]["ov_cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["ret"] = "ImGuiID" @@ -12172,7 +12243,7 @@ defs["igGetFocusScopeID"][1]["call_args"] = "()" defs["igGetFocusScopeID"][1]["cimguiname"] = "igGetFocusScopeID" defs["igGetFocusScopeID"][1]["defaults"] = {} defs["igGetFocusScopeID"][1]["funcname"] = "GetFocusScopeID" -defs["igGetFocusScopeID"][1]["location"] = "imgui_internal:1894" +defs["igGetFocusScopeID"][1]["location"] = "imgui_internal:1906" defs["igGetFocusScopeID"][1]["namespace"] = "ImGui" defs["igGetFocusScopeID"][1]["ov_cimguiname"] = "igGetFocusScopeID" defs["igGetFocusScopeID"][1]["ret"] = "ImGuiID" @@ -12240,7 +12311,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:716" +defs["igGetForegroundDrawList"][1]["location"] = "imgui:717" defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawListNil" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" @@ -12257,7 +12328,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:1799" +defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:1810" defs["igGetForegroundDrawList"][2]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][2]["ov_cimguiname"] = "igGetForegroundDrawListWindowPtr" defs["igGetForegroundDrawList"][2]["ret"] = "ImDrawList*" @@ -12274,7 +12345,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:714" +defs["igGetFrameCount"][1]["location"] = "imgui:715" defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -12322,7 +12393,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:1836" +defs["igGetHoveredID"][1]["location"] = "imgui_internal:1847" defs["igGetHoveredID"][1]["namespace"] = "ImGui" defs["igGetHoveredID"][1]["ov_cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["ret"] = "ImGuiID" @@ -12387,6 +12458,31 @@ defs["igGetID"][3]["stname"] = "" defs["igGetID"]["(const char*)"] = defs["igGetID"][1] defs["igGetID"]["(const char*,const char*)"] = defs["igGetID"][2] defs["igGetID"]["(const void*)"] = defs["igGetID"][3] +defs["igGetIDWithSeed"] = {} +defs["igGetIDWithSeed"][1] = {} +defs["igGetIDWithSeed"][1]["args"] = "(const char* str_id_begin,const char* str_id_end,ImGuiID seed)" +defs["igGetIDWithSeed"][1]["argsT"] = {} +defs["igGetIDWithSeed"][1]["argsT"][1] = {} +defs["igGetIDWithSeed"][1]["argsT"][1]["name"] = "str_id_begin" +defs["igGetIDWithSeed"][1]["argsT"][1]["type"] = "const char*" +defs["igGetIDWithSeed"][1]["argsT"][2] = {} +defs["igGetIDWithSeed"][1]["argsT"][2]["name"] = "str_id_end" +defs["igGetIDWithSeed"][1]["argsT"][2]["type"] = "const char*" +defs["igGetIDWithSeed"][1]["argsT"][3] = {} +defs["igGetIDWithSeed"][1]["argsT"][3]["name"] = "seed" +defs["igGetIDWithSeed"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igGetIDWithSeed"][1]["argsoriginal"] = "(const char* str_id_begin,const char* str_id_end,ImGuiID seed)" +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:1852" +defs["igGetIDWithSeed"][1]["namespace"] = "ImGui" +defs["igGetIDWithSeed"][1]["ov_cimguiname"] = "igGetIDWithSeed" +defs["igGetIDWithSeed"][1]["ret"] = "ImGuiID" +defs["igGetIDWithSeed"][1]["signature"] = "(const char*,const char*,ImGuiID)" +defs["igGetIDWithSeed"][1]["stname"] = "" +defs["igGetIDWithSeed"]["(const char*,const char*,ImGuiID)"] = defs["igGetIDWithSeed"][1] defs["igGetIO"] = {} defs["igGetIO"][1] = {} defs["igGetIO"][1]["args"] = "()" @@ -12416,7 +12512,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:2009" +defs["igGetInputTextState"][1]["location"] = "imgui_internal:2023" defs["igGetInputTextState"][1]["namespace"] = "ImGui" defs["igGetInputTextState"][1]["ov_cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["ret"] = "ImGuiInputTextState*" @@ -12432,7 +12528,7 @@ defs["igGetItemID"][1]["call_args"] = "()" defs["igGetItemID"][1]["cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["defaults"] = {} defs["igGetItemID"][1]["funcname"] = "GetItemID" -defs["igGetItemID"][1]["location"] = "imgui_internal:1829" +defs["igGetItemID"][1]["location"] = "imgui_internal:1840" defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -12451,7 +12547,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:706" +defs["igGetItemRectMax"][1]["location"] = "imgui:707" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -12471,7 +12567,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:705" +defs["igGetItemRectMin"][1]["location"] = "imgui:706" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -12491,7 +12587,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:707" +defs["igGetItemRectSize"][1]["location"] = "imgui:708" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -12508,7 +12604,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:1830" +defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:1841" defs["igGetItemStatusFlags"][1]["namespace"] = "ImGui" defs["igGetItemStatusFlags"][1]["ov_cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["ret"] = "ImGuiItemStatusFlags" @@ -12527,7 +12623,7 @@ defs["igGetKeyIndex"][1]["call_args"] = "(imgui_key)" defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["defaults"] = {} defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" -defs["igGetKeyIndex"][1]["location"] = "imgui:737" +defs["igGetKeyIndex"][1]["location"] = "imgui:738" defs["igGetKeyIndex"][1]["namespace"] = "ImGui" defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["ret"] = "int" @@ -12552,7 +12648,7 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key_index,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui:741" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:742" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -12568,7 +12664,7 @@ defs["igGetMergedKeyModFlags"][1]["call_args"] = "()" defs["igGetMergedKeyModFlags"][1]["cimguiname"] = "igGetMergedKeyModFlags" defs["igGetMergedKeyModFlags"][1]["defaults"] = {} defs["igGetMergedKeyModFlags"][1]["funcname"] = "GetMergedKeyModFlags" -defs["igGetMergedKeyModFlags"][1]["location"] = "imgui_internal:1905" +defs["igGetMergedKeyModFlags"][1]["location"] = "imgui_internal:1917" defs["igGetMergedKeyModFlags"][1]["namespace"] = "ImGui" defs["igGetMergedKeyModFlags"][1]["ov_cimguiname"] = "igGetMergedKeyModFlags" defs["igGetMergedKeyModFlags"][1]["ret"] = "ImGuiKeyModFlags" @@ -12584,7 +12680,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:760" +defs["igGetMouseCursor"][1]["location"] = "imgui:761" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -12611,7 +12707,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:758" +defs["igGetMouseDragDelta"][1]["location"] = "imgui:759" defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -12631,7 +12727,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:755" +defs["igGetMousePos"][1]["location"] = "imgui:756" defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -12651,7 +12747,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:756" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:757" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -12674,7 +12770,7 @@ defs["igGetNavInputAmount"][1]["call_args"] = "(n,mode)" defs["igGetNavInputAmount"][1]["cimguiname"] = "igGetNavInputAmount" defs["igGetNavInputAmount"][1]["defaults"] = {} defs["igGetNavInputAmount"][1]["funcname"] = "GetNavInputAmount" -defs["igGetNavInputAmount"][1]["location"] = "imgui_internal:1882" +defs["igGetNavInputAmount"][1]["location"] = "imgui_internal:1894" defs["igGetNavInputAmount"][1]["namespace"] = "ImGui" defs["igGetNavInputAmount"][1]["ov_cimguiname"] = "igGetNavInputAmount" defs["igGetNavInputAmount"][1]["ret"] = "float" @@ -12707,7 +12803,7 @@ defs["igGetNavInputAmount2d"][1]["defaults"] = {} defs["igGetNavInputAmount2d"][1]["defaults"]["fast_factor"] = "0.0f" defs["igGetNavInputAmount2d"][1]["defaults"]["slow_factor"] = "0.0f" defs["igGetNavInputAmount2d"][1]["funcname"] = "GetNavInputAmount2d" -defs["igGetNavInputAmount2d"][1]["location"] = "imgui_internal:1883" +defs["igGetNavInputAmount2d"][1]["location"] = "imgui_internal:1895" defs["igGetNavInputAmount2d"][1]["namespace"] = "ImGui" defs["igGetNavInputAmount2d"][1]["nonUDT"] = 1 defs["igGetNavInputAmount2d"][1]["ov_cimguiname"] = "igGetNavInputAmount2d" @@ -12788,7 +12884,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:720" +defs["igGetStateStorage"][1]["location"] = "imgui:721" defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -12824,7 +12920,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:718" +defs["igGetStyleColorName"][1]["location"] = "imgui:719" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -12892,7 +12988,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:713" +defs["igGetTime"][1]["location"] = "imgui:714" defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -12908,7 +13004,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:1872" +defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:1884" defs["igGetTopMostPopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostPopupModal"][1]["ov_cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["ret"] = "ImGuiWindow*" @@ -12962,7 +13058,7 @@ defs["igGetWindowAllowedExtentRect"][1]["call_args"] = "(window)" defs["igGetWindowAllowedExtentRect"][1]["cimguiname"] = "igGetWindowAllowedExtentRect" defs["igGetWindowAllowedExtentRect"][1]["defaults"] = {} defs["igGetWindowAllowedExtentRect"][1]["funcname"] = "GetWindowAllowedExtentRect" -defs["igGetWindowAllowedExtentRect"][1]["location"] = "imgui_internal:1783" +defs["igGetWindowAllowedExtentRect"][1]["location"] = "imgui_internal:1794" defs["igGetWindowAllowedExtentRect"][1]["namespace"] = "ImGui" defs["igGetWindowAllowedExtentRect"][1]["nonUDT"] = 1 defs["igGetWindowAllowedExtentRect"][1]["ov_cimguiname"] = "igGetWindowAllowedExtentRect" @@ -13093,7 +13189,7 @@ defs["igGetWindowResizeID"][1]["call_args"] = "(window,n)" defs["igGetWindowResizeID"][1]["cimguiname"] = "igGetWindowResizeID" defs["igGetWindowResizeID"][1]["defaults"] = {} defs["igGetWindowResizeID"][1]["funcname"] = "GetWindowResizeID" -defs["igGetWindowResizeID"][1]["location"] = "imgui_internal:1976" +defs["igGetWindowResizeID"][1]["location"] = "imgui_internal:1989" defs["igGetWindowResizeID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeID"][1]["ov_cimguiname"] = "igGetWindowResizeID" defs["igGetWindowResizeID"][1]["ret"] = "ImGuiID" @@ -13115,7 +13211,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:1975" +defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:1988" defs["igGetWindowScrollbarID"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarID"][1]["ov_cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["ret"] = "ImGuiID" @@ -13140,7 +13236,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:1974" +defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:1987" defs["igGetWindowScrollbarRect"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarRect"][1]["nonUDT"] = 1 defs["igGetWindowScrollbarRect"][1]["ov_cimguiname"] = "igGetWindowScrollbarRect" @@ -13196,7 +13292,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:351" +defs["igImAbs"][1]["location"] = "imgui_internal:353" defs["igImAbs"][1]["ov_cimguiname"] = "igImAbsFloat" defs["igImAbs"][1]["ret"] = "float" defs["igImAbs"][1]["signature"] = "(float)" @@ -13212,7 +13308,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:352" +defs["igImAbs"][2]["location"] = "imgui_internal:354" defs["igImAbs"][2]["ov_cimguiname"] = "igImAbsdouble" defs["igImAbs"][2]["ret"] = "double" defs["igImAbs"][2]["signature"] = "(double)" @@ -13234,7 +13330,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:255" +defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:257" defs["igImAlphaBlendColors"][1]["ov_cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["ret"] = "ImU32" defs["igImAlphaBlendColors"][1]["signature"] = "(ImU32,ImU32)" @@ -13267,7 +13363,7 @@ defs["igImBezierCalc"][1]["call_args"] = "(p1,p2,p3,p4,t)" defs["igImBezierCalc"][1]["cimguiname"] = "igImBezierCalc" defs["igImBezierCalc"][1]["defaults"] = {} defs["igImBezierCalc"][1]["funcname"] = "ImBezierCalc" -defs["igImBezierCalc"][1]["location"] = "imgui_internal:385" +defs["igImBezierCalc"][1]["location"] = "imgui_internal:387" defs["igImBezierCalc"][1]["nonUDT"] = 1 defs["igImBezierCalc"][1]["ov_cimguiname"] = "igImBezierCalc" defs["igImBezierCalc"][1]["ret"] = "void" @@ -13304,7 +13400,7 @@ defs["igImBezierClosestPoint"][1]["call_args"] = "(p1,p2,p3,p4,p,num_segments)" defs["igImBezierClosestPoint"][1]["cimguiname"] = "igImBezierClosestPoint" defs["igImBezierClosestPoint"][1]["defaults"] = {} defs["igImBezierClosestPoint"][1]["funcname"] = "ImBezierClosestPoint" -defs["igImBezierClosestPoint"][1]["location"] = "imgui_internal:386" +defs["igImBezierClosestPoint"][1]["location"] = "imgui_internal:388" defs["igImBezierClosestPoint"][1]["nonUDT"] = 1 defs["igImBezierClosestPoint"][1]["ov_cimguiname"] = "igImBezierClosestPoint" defs["igImBezierClosestPoint"][1]["ret"] = "void" @@ -13341,7 +13437,7 @@ defs["igImBezierClosestPointCasteljau"][1]["call_args"] = "(p1,p2,p3,p4,p,tess_t defs["igImBezierClosestPointCasteljau"][1]["cimguiname"] = "igImBezierClosestPointCasteljau" defs["igImBezierClosestPointCasteljau"][1]["defaults"] = {} defs["igImBezierClosestPointCasteljau"][1]["funcname"] = "ImBezierClosestPointCasteljau" -defs["igImBezierClosestPointCasteljau"][1]["location"] = "imgui_internal:387" +defs["igImBezierClosestPointCasteljau"][1]["location"] = "imgui_internal:389" defs["igImBezierClosestPointCasteljau"][1]["nonUDT"] = 1 defs["igImBezierClosestPointCasteljau"][1]["ov_cimguiname"] = "igImBezierClosestPointCasteljau" defs["igImBezierClosestPointCasteljau"][1]["ret"] = "void" @@ -13363,7 +13459,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:452" +defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:454" defs["igImBitArrayClearBit"][1]["ov_cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["ret"] = "void" defs["igImBitArrayClearBit"][1]["signature"] = "(ImU32*,int)" @@ -13384,7 +13480,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:453" +defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:455" defs["igImBitArraySetBit"][1]["ov_cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["ret"] = "void" defs["igImBitArraySetBit"][1]["signature"] = "(ImU32*,int)" @@ -13408,7 +13504,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:454" +defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:456" defs["igImBitArraySetBitRange"][1]["ov_cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["ret"] = "void" defs["igImBitArraySetBitRange"][1]["signature"] = "(ImU32*,int,int)" @@ -13429,7 +13525,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:451" +defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:453" defs["igImBitArrayTestBit"][1]["ov_cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["ret"] = "bool" defs["igImBitArrayTestBit"][1]["signature"] = "(const ImU32*,int)" @@ -13447,7 +13543,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:280" +defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:282" defs["igImCharIsBlankA"][1]["ov_cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["ret"] = "bool" defs["igImCharIsBlankA"][1]["signature"] = "(char)" @@ -13465,7 +13561,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:281" +defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:283" defs["igImCharIsBlankW"][1]["ov_cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["ret"] = "bool" defs["igImCharIsBlankW"][1]["signature"] = "(unsigned int)" @@ -13492,7 +13588,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:368" +defs["igImClamp"][1]["location"] = "imgui_internal:370" defs["igImClamp"][1]["nonUDT"] = 1 defs["igImClamp"][1]["ov_cimguiname"] = "igImClamp" defs["igImClamp"][1]["ret"] = "void" @@ -13514,7 +13610,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:379" +defs["igImDot"][1]["location"] = "imgui_internal:381" defs["igImDot"][1]["ov_cimguiname"] = "igImDot" defs["igImDot"][1]["ret"] = "float" defs["igImDot"][1]["signature"] = "(const ImVec2,const ImVec2)" @@ -13532,7 +13628,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:325" +defs["igImFileClose"][1]["location"] = "imgui_internal:327" defs["igImFileClose"][1]["ov_cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["ret"] = "bool" defs["igImFileClose"][1]["signature"] = "(ImFileHandle)" @@ -13550,7 +13646,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:326" +defs["igImFileGetSize"][1]["location"] = "imgui_internal:328" defs["igImFileGetSize"][1]["ov_cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["ret"] = "ImU64" defs["igImFileGetSize"][1]["signature"] = "(ImFileHandle)" @@ -13579,7 +13675,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:332" +defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:334" defs["igImFileLoadToMemory"][1]["ov_cimguiname"] = "igImFileLoadToMemory" defs["igImFileLoadToMemory"][1]["ret"] = "void*" defs["igImFileLoadToMemory"][1]["signature"] = "(const char*,const char*,size_t*,int)" @@ -13600,7 +13696,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:324" +defs["igImFileOpen"][1]["location"] = "imgui_internal:326" defs["igImFileOpen"][1]["ov_cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["ret"] = "ImFileHandle" defs["igImFileOpen"][1]["signature"] = "(const char*,const char*)" @@ -13627,7 +13723,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:327" +defs["igImFileRead"][1]["location"] = "imgui_internal:329" defs["igImFileRead"][1]["ov_cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["ret"] = "ImU64" defs["igImFileRead"][1]["signature"] = "(void*,ImU64,ImU64,ImFileHandle)" @@ -13654,7 +13750,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:328" +defs["igImFileWrite"][1]["location"] = "imgui_internal:330" defs["igImFileWrite"][1]["ov_cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["ret"] = "ImU64" defs["igImFileWrite"][1]["signature"] = "(const void*,ImU64,ImU64,ImFileHandle)" @@ -13672,7 +13768,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:376" +defs["igImFloor"][1]["location"] = "imgui_internal:378" defs["igImFloor"][1]["ov_cimguiname"] = "igImFloorFloat" defs["igImFloor"][1]["ret"] = "float" defs["igImFloor"][1]["signature"] = "(float)" @@ -13691,7 +13787,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:377" +defs["igImFloor"][2]["location"] = "imgui_internal:379" defs["igImFloor"][2]["nonUDT"] = 1 defs["igImFloor"][2]["ov_cimguiname"] = "igImFloorVec2" defs["igImFloor"][2]["ret"] = "void" @@ -13711,7 +13807,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:2038" +defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:2052" defs["igImFontAtlasBuildFinish"][1]["ov_cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["ret"] = "void" defs["igImFontAtlasBuildFinish"][1]["signature"] = "(ImFontAtlas*)" @@ -13729,7 +13825,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:2035" +defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:2049" defs["igImFontAtlasBuildInit"][1]["ov_cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["ret"] = "void" defs["igImFontAtlasBuildInit"][1]["signature"] = "(ImFontAtlas*)" @@ -13750,7 +13846,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:2040" +defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:2054" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["signature"] = "(unsigned char[256],float)" @@ -13786,7 +13882,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:2041" +defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:2055" 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)" @@ -13807,7 +13903,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:2037" +defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:2051" defs["igImFontAtlasBuildPackCustomRects"][1]["ov_cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["ret"] = "void" defs["igImFontAtlasBuildPackCustomRects"][1]["signature"] = "(ImFontAtlas*,void*)" @@ -13846,7 +13942,7 @@ defs["igImFontAtlasBuildRender1bppRectFromString"][1]["call_args"] = "(atlas,atl defs["igImFontAtlasBuildRender1bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender1bppRectFromString" defs["igImFontAtlasBuildRender1bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender1bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender1bppRectFromString" -defs["igImFontAtlasBuildRender1bppRectFromString"][1]["location"] = "imgui_internal:2039" +defs["igImFontAtlasBuildRender1bppRectFromString"][1]["location"] = "imgui_internal:2053" defs["igImFontAtlasBuildRender1bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender1bppRectFromString" defs["igImFontAtlasBuildRender1bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender1bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)" @@ -13876,7 +13972,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:2036" +defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:2050" defs["igImFontAtlasBuildSetupFont"][1]["ov_cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["ret"] = "void" defs["igImFontAtlasBuildSetupFont"][1]["signature"] = "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)" @@ -13894,7 +13990,7 @@ defs["igImFontAtlasBuildWithStbTruetype"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildWithStbTruetype"][1]["cimguiname"] = "igImFontAtlasBuildWithStbTruetype" defs["igImFontAtlasBuildWithStbTruetype"][1]["defaults"] = {} defs["igImFontAtlasBuildWithStbTruetype"][1]["funcname"] = "ImFontAtlasBuildWithStbTruetype" -defs["igImFontAtlasBuildWithStbTruetype"][1]["location"] = "imgui_internal:2034" +defs["igImFontAtlasBuildWithStbTruetype"][1]["location"] = "imgui_internal:2048" defs["igImFontAtlasBuildWithStbTruetype"][1]["ov_cimguiname"] = "igImFontAtlasBuildWithStbTruetype" defs["igImFontAtlasBuildWithStbTruetype"][1]["ret"] = "bool" defs["igImFontAtlasBuildWithStbTruetype"][1]["signature"] = "(ImFontAtlas*)" @@ -13922,7 +14018,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:274" +defs["igImFormatString"][1]["location"] = "imgui_internal:276" defs["igImFormatString"][1]["ov_cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["ret"] = "int" defs["igImFormatString"][1]["signature"] = "(char*,size_t,const char*,...)" @@ -13949,7 +14045,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:275" +defs["igImFormatStringV"][1]["location"] = "imgui_internal:277" defs["igImFormatStringV"][1]["ov_cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["ret"] = "int" defs["igImFormatStringV"][1]["signature"] = "(char*,size_t,const char*,va_list)" @@ -13970,7 +14066,7 @@ defs["igImGetDirQuadrantFromDelta"][1]["call_args"] = "(dx,dy)" defs["igImGetDirQuadrantFromDelta"][1]["cimguiname"] = "igImGetDirQuadrantFromDelta" defs["igImGetDirQuadrantFromDelta"][1]["defaults"] = {} defs["igImGetDirQuadrantFromDelta"][1]["funcname"] = "ImGetDirQuadrantFromDelta" -defs["igImGetDirQuadrantFromDelta"][1]["location"] = "imgui_internal:393" +defs["igImGetDirQuadrantFromDelta"][1]["location"] = "imgui_internal:395" defs["igImGetDirQuadrantFromDelta"][1]["ov_cimguiname"] = "igImGetDirQuadrantFromDelta" defs["igImGetDirQuadrantFromDelta"][1]["ret"] = "ImGuiDir" defs["igImGetDirQuadrantFromDelta"][1]["signature"] = "(float,float)" @@ -13995,7 +14091,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:245" +defs["igImHashData"][1]["location"] = "imgui_internal:247" defs["igImHashData"][1]["ov_cimguiname"] = "igImHashData" defs["igImHashData"][1]["ret"] = "ImU32" defs["igImHashData"][1]["signature"] = "(const void*,size_t,ImU32)" @@ -14021,7 +14117,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:246" +defs["igImHashStr"][1]["location"] = "imgui_internal:248" defs["igImHashStr"][1]["ov_cimguiname"] = "igImHashStr" defs["igImHashStr"][1]["ret"] = "ImU32" defs["igImHashStr"][1]["signature"] = "(const char*,size_t,ImU32)" @@ -14042,7 +14138,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:375" +defs["igImInvLength"][1]["location"] = "imgui_internal:377" defs["igImInvLength"][1]["ov_cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["ret"] = "float" defs["igImInvLength"][1]["signature"] = "(const ImVec2,float)" @@ -14060,7 +14156,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:258" +defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:260" defs["igImIsPowerOfTwo"][1]["ov_cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][1]["ret"] = "bool" defs["igImIsPowerOfTwo"][1]["signature"] = "(int)" @@ -14078,7 +14174,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:373" +defs["igImLengthSqr"][1]["location"] = "imgui_internal:375" defs["igImLengthSqr"][1]["ov_cimguiname"] = "igImLengthSqrVec2" defs["igImLengthSqr"][1]["ret"] = "float" defs["igImLengthSqr"][1]["signature"] = "(const ImVec2)" @@ -14094,7 +14190,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:374" +defs["igImLengthSqr"][2]["location"] = "imgui_internal:376" defs["igImLengthSqr"][2]["ov_cimguiname"] = "igImLengthSqrVec4" defs["igImLengthSqr"][2]["ret"] = "float" defs["igImLengthSqr"][2]["signature"] = "(const ImVec4)" @@ -14122,7 +14218,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:369" +defs["igImLerp"][1]["location"] = "imgui_internal:371" defs["igImLerp"][1]["nonUDT"] = 1 defs["igImLerp"][1]["ov_cimguiname"] = "igImLerpVec2Float" defs["igImLerp"][1]["ret"] = "void" @@ -14148,7 +14244,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:370" +defs["igImLerp"][2]["location"] = "imgui_internal:372" defs["igImLerp"][2]["nonUDT"] = 1 defs["igImLerp"][2]["ov_cimguiname"] = "igImLerpVec2Vec2" defs["igImLerp"][2]["ret"] = "void" @@ -14174,7 +14270,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:371" +defs["igImLerp"][3]["location"] = "imgui_internal:373" defs["igImLerp"][3]["nonUDT"] = 1 defs["igImLerp"][3]["ov_cimguiname"] = "igImLerpVec4" defs["igImLerp"][3]["ret"] = "void" @@ -14204,7 +14300,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:388" +defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:390" defs["igImLineClosestPoint"][1]["nonUDT"] = 1 defs["igImLineClosestPoint"][1]["ov_cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["ret"] = "void" @@ -14229,7 +14325,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:381" +defs["igImLinearSweep"][1]["location"] = "imgui_internal:383" defs["igImLinearSweep"][1]["ov_cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["ret"] = "float" defs["igImLinearSweep"][1]["signature"] = "(float,float,float)" @@ -14247,7 +14343,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:349" +defs["igImLog"][1]["location"] = "imgui_internal:351" defs["igImLog"][1]["ov_cimguiname"] = "igImLogFloat" defs["igImLog"][1]["ret"] = "float" defs["igImLog"][1]["signature"] = "(float)" @@ -14263,7 +14359,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:350" +defs["igImLog"][2]["location"] = "imgui_internal:352" defs["igImLog"][2]["ov_cimguiname"] = "igImLogdouble" defs["igImLog"][2]["ret"] = "double" defs["igImLog"][2]["signature"] = "(double)" @@ -14288,7 +14384,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:367" +defs["igImMax"][1]["location"] = "imgui_internal:369" defs["igImMax"][1]["nonUDT"] = 1 defs["igImMax"][1]["ov_cimguiname"] = "igImMax" defs["igImMax"][1]["ret"] = "void" @@ -14313,7 +14409,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:366" +defs["igImMin"][1]["location"] = "imgui_internal:368" defs["igImMin"][1]["nonUDT"] = 1 defs["igImMin"][1]["ov_cimguiname"] = "igImMin" defs["igImMin"][1]["ret"] = "void" @@ -14335,7 +14431,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:378" +defs["igImModPositive"][1]["location"] = "imgui_internal:380" defs["igImModPositive"][1]["ov_cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["ret"] = "int" defs["igImModPositive"][1]["signature"] = "(int,int)" @@ -14359,7 +14455,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:382" +defs["igImMul"][1]["location"] = "imgui_internal:384" defs["igImMul"][1]["nonUDT"] = 1 defs["igImMul"][1]["ov_cimguiname"] = "igImMul" defs["igImMul"][1]["ret"] = "void" @@ -14378,7 +14474,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:277" +defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:279" defs["igImParseFormatFindEnd"][1]["ov_cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["ret"] = "const char*" defs["igImParseFormatFindEnd"][1]["signature"] = "(const char*)" @@ -14396,7 +14492,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:276" +defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:278" defs["igImParseFormatFindStart"][1]["ov_cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["ret"] = "const char*" defs["igImParseFormatFindStart"][1]["signature"] = "(const char*)" @@ -14417,7 +14513,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:279" +defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:281" defs["igImParseFormatPrecision"][1]["ov_cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["ret"] = "int" defs["igImParseFormatPrecision"][1]["signature"] = "(const char*,int)" @@ -14441,7 +14537,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:278" +defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:280" defs["igImParseFormatTrimDecorations"][1]["ov_cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["ret"] = "const char*" defs["igImParseFormatTrimDecorations"][1]["signature"] = "(const char*,char*,size_t)" @@ -14462,7 +14558,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:347" +defs["igImPow"][1]["location"] = "imgui_internal:349" defs["igImPow"][1]["ov_cimguiname"] = "igImPowFloat" defs["igImPow"][1]["ret"] = "float" defs["igImPow"][1]["signature"] = "(float,float)" @@ -14481,7 +14577,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:348" +defs["igImPow"][2]["location"] = "imgui_internal:350" defs["igImPow"][2]["ov_cimguiname"] = "igImPowdouble" defs["igImPow"][2]["ret"] = "double" defs["igImPow"][2]["signature"] = "(double,double)" @@ -14509,7 +14605,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:380" +defs["igImRotate"][1]["location"] = "imgui_internal:382" defs["igImRotate"][1]["nonUDT"] = 1 defs["igImRotate"][1]["ov_cimguiname"] = "igImRotate" defs["igImRotate"][1]["ret"] = "void" @@ -14528,7 +14624,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:372" +defs["igImSaturate"][1]["location"] = "imgui_internal:374" defs["igImSaturate"][1]["ov_cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["ret"] = "float" defs["igImSaturate"][1]["signature"] = "(float)" @@ -14546,7 +14642,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:353" +defs["igImSign"][1]["location"] = "imgui_internal:355" defs["igImSign"][1]["ov_cimguiname"] = "igImSignFloat" defs["igImSign"][1]["ret"] = "float" defs["igImSign"][1]["signature"] = "(float)" @@ -14562,7 +14658,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:354" +defs["igImSign"][2]["location"] = "imgui_internal:356" defs["igImSign"][2]["ov_cimguiname"] = "igImSigndouble" defs["igImSign"][2]["ret"] = "double" defs["igImSign"][2]["signature"] = "(double)" @@ -14581,7 +14677,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:273" +defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:275" defs["igImStrSkipBlank"][1]["ov_cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["ret"] = "const char*" defs["igImStrSkipBlank"][1]["signature"] = "(const char*)" @@ -14599,7 +14695,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:272" +defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:274" defs["igImStrTrimBlanks"][1]["ov_cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["ret"] = "void" defs["igImStrTrimBlanks"][1]["signature"] = "(char*)" @@ -14620,7 +14716,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:270" +defs["igImStrbolW"][1]["location"] = "imgui_internal:272" defs["igImStrbolW"][1]["ov_cimguiname"] = "igImStrbolW" defs["igImStrbolW"][1]["ret"] = "const ImWchar*" defs["igImStrbolW"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -14644,7 +14740,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:267" +defs["igImStrchrRange"][1]["location"] = "imgui_internal:269" defs["igImStrchrRange"][1]["ov_cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["ret"] = "const char*" defs["igImStrchrRange"][1]["signature"] = "(const char*,const char*,char)" @@ -14662,7 +14758,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:265" +defs["igImStrdup"][1]["location"] = "imgui_internal:267" defs["igImStrdup"][1]["ov_cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["ret"] = "char*" defs["igImStrdup"][1]["signature"] = "(const char*)" @@ -14686,7 +14782,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:266" +defs["igImStrdupcpy"][1]["location"] = "imgui_internal:268" defs["igImStrdupcpy"][1]["ov_cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["ret"] = "char*" defs["igImStrdupcpy"][1]["signature"] = "(char*,size_t*,const char*)" @@ -14707,7 +14803,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:269" +defs["igImStreolRange"][1]["location"] = "imgui_internal:271" defs["igImStreolRange"][1]["ov_cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["ret"] = "const char*" defs["igImStreolRange"][1]["signature"] = "(const char*,const char*)" @@ -14728,7 +14824,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:262" +defs["igImStricmp"][1]["location"] = "imgui_internal:264" defs["igImStricmp"][1]["ov_cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["ret"] = "int" defs["igImStricmp"][1]["signature"] = "(const char*,const char*)" @@ -14755,7 +14851,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:271" +defs["igImStristr"][1]["location"] = "imgui_internal:273" defs["igImStristr"][1]["ov_cimguiname"] = "igImStristr" defs["igImStristr"][1]["ret"] = "const char*" defs["igImStristr"][1]["signature"] = "(const char*,const char*,const char*,const char*)" @@ -14773,7 +14869,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:268" +defs["igImStrlenW"][1]["location"] = "imgui_internal:270" defs["igImStrlenW"][1]["ov_cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["ret"] = "int" defs["igImStrlenW"][1]["signature"] = "(const ImWchar*)" @@ -14797,7 +14893,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:264" +defs["igImStrncpy"][1]["location"] = "imgui_internal:266" defs["igImStrncpy"][1]["ov_cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["ret"] = "void" defs["igImStrncpy"][1]["signature"] = "(char*,const char*,size_t)" @@ -14821,7 +14917,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:263" +defs["igImStrnicmp"][1]["location"] = "imgui_internal:265" defs["igImStrnicmp"][1]["ov_cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["ret"] = "int" defs["igImStrnicmp"][1]["signature"] = "(const char*,const char*,size_t)" @@ -14845,7 +14941,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:285" +defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:287" defs["igImTextCharFromUtf8"][1]["ov_cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["ret"] = "int" defs["igImTextCharFromUtf8"][1]["signature"] = "(unsigned int*,const char*,const char*)" @@ -14866,7 +14962,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:287" +defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:289" defs["igImTextCountCharsFromUtf8"][1]["ov_cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["ret"] = "int" defs["igImTextCountCharsFromUtf8"][1]["signature"] = "(const char*,const char*)" @@ -14887,7 +14983,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:288" +defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:290" defs["igImTextCountUtf8BytesFromChar"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromChar"][1]["signature"] = "(const char*,const char*)" @@ -14908,7 +15004,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:289" +defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:291" defs["igImTextCountUtf8BytesFromStr"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromStr"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -14939,7 +15035,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:286" +defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:288" defs["igImTextStrFromUtf8"][1]["ov_cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["ret"] = "int" defs["igImTextStrFromUtf8"][1]["signature"] = "(ImWchar*,int,const char*,const char*,const char**)" @@ -14966,7 +15062,7 @@ defs["igImTextStrToUtf8"][1]["call_args"] = "(buf,buf_size,in_text,in_text_end)" defs["igImTextStrToUtf8"][1]["cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["defaults"] = {} defs["igImTextStrToUtf8"][1]["funcname"] = "ImTextStrToUtf8" -defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:284" +defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:286" defs["igImTextStrToUtf8"][1]["ov_cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["ret"] = "int" defs["igImTextStrToUtf8"][1]["signature"] = "(char*,int,const ImWchar*,const ImWchar*)" @@ -14990,7 +15086,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:392" +defs["igImTriangleArea"][1]["location"] = "imgui_internal:394" defs["igImTriangleArea"][1]["ov_cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["ret"] = "float" defs["igImTriangleArea"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" @@ -15029,7 +15125,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:391" +defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:393" 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*)" @@ -15059,7 +15155,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:390" +defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:392" defs["igImTriangleClosestPoint"][1]["nonUDT"] = 1 defs["igImTriangleClosestPoint"][1]["ov_cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["ret"] = "void" @@ -15087,7 +15183,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:389" +defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:391" defs["igImTriangleContainsPoint"][1]["ov_cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["ret"] = "bool" defs["igImTriangleContainsPoint"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)" @@ -15105,7 +15201,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:259" +defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:261" defs["igImUpperPowerOfTwo"][1]["ov_cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["ret"] = "int" defs["igImUpperPowerOfTwo"][1]["signature"] = "(int)" @@ -15224,7 +15320,7 @@ defs["igImageButtonEx"][1]["call_args"] = "(id,texture_id,size,uv0,uv1,padding,b defs["igImageButtonEx"][1]["cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["defaults"] = {} defs["igImageButtonEx"][1]["funcname"] = "ImageButtonEx" -defs["igImageButtonEx"][1]["location"] = "imgui_internal:1973" +defs["igImageButtonEx"][1]["location"] = "imgui_internal:1986" defs["igImageButtonEx"][1]["namespace"] = "ImGui" defs["igImageButtonEx"][1]["ov_cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["ret"] = "bool" @@ -15263,7 +15359,7 @@ defs["igInitialize"][1]["call_args"] = "(context)" defs["igInitialize"][1]["cimguiname"] = "igInitialize" defs["igInitialize"][1]["defaults"] = {} defs["igInitialize"][1]["funcname"] = "Initialize" -defs["igInitialize"][1]["location"] = "imgui_internal:1802" +defs["igInitialize"][1]["location"] = "imgui_internal:1813" defs["igInitialize"][1]["namespace"] = "ImGui" defs["igInitialize"][1]["ov_cimguiname"] = "igInitialize" defs["igInitialize"][1]["ret"] = "void" @@ -15705,7 +15801,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:2005" +defs["igInputTextEx"][1]["location"] = "imgui_internal:2019" defs["igInputTextEx"][1]["namespace"] = "ImGui" defs["igInputTextEx"][1]["ov_cimguiname"] = "igInputTextEx" defs["igInputTextEx"][1]["ret"] = "bool" @@ -15831,7 +15927,7 @@ defs["igIsActiveIdUsingKey"][1]["call_args"] = "(key)" defs["igIsActiveIdUsingKey"][1]["cimguiname"] = "igIsActiveIdUsingKey" defs["igIsActiveIdUsingKey"][1]["defaults"] = {} defs["igIsActiveIdUsingKey"][1]["funcname"] = "IsActiveIdUsingKey" -defs["igIsActiveIdUsingKey"][1]["location"] = "imgui_internal:1900" +defs["igIsActiveIdUsingKey"][1]["location"] = "imgui_internal:1912" defs["igIsActiveIdUsingKey"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingKey"][1]["ov_cimguiname"] = "igIsActiveIdUsingKey" defs["igIsActiveIdUsingKey"][1]["ret"] = "bool" @@ -15850,7 +15946,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:1898" +defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:1910" defs["igIsActiveIdUsingNavDir"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavDir"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["ret"] = "bool" @@ -15869,7 +15965,7 @@ defs["igIsActiveIdUsingNavInput"][1]["call_args"] = "(input)" defs["igIsActiveIdUsingNavInput"][1]["cimguiname"] = "igIsActiveIdUsingNavInput" defs["igIsActiveIdUsingNavInput"][1]["defaults"] = {} defs["igIsActiveIdUsingNavInput"][1]["funcname"] = "IsActiveIdUsingNavInput" -defs["igIsActiveIdUsingNavInput"][1]["location"] = "imgui_internal:1899" +defs["igIsActiveIdUsingNavInput"][1]["location"] = "imgui_internal:1911" defs["igIsActiveIdUsingNavInput"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavInput"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavInput" defs["igIsActiveIdUsingNavInput"][1]["ret"] = "bool" @@ -15885,7 +15981,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:703" +defs["igIsAnyItemActive"][1]["location"] = "imgui:704" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -15901,7 +15997,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:704" +defs["igIsAnyItemFocused"][1]["location"] = "imgui:705" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -15917,7 +16013,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:702" +defs["igIsAnyItemHovered"][1]["location"] = "imgui:703" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -15933,7 +16029,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:754" +defs["igIsAnyMouseDown"][1]["location"] = "imgui:755" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -15958,7 +16054,7 @@ defs["igIsClippedEx"][1]["call_args"] = "(bb,id,clip_even_when_logged)" defs["igIsClippedEx"][1]["cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["defaults"] = {} defs["igIsClippedEx"][1]["funcname"] = "IsClippedEx" -defs["igIsClippedEx"][1]["location"] = "imgui_internal:1847" +defs["igIsClippedEx"][1]["location"] = "imgui_internal:1859" defs["igIsClippedEx"][1]["namespace"] = "ImGui" defs["igIsClippedEx"][1]["ov_cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["ret"] = "bool" @@ -15974,7 +16070,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:1910" +defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:1922" defs["igIsDragDropPayloadBeingAccepted"][1]["namespace"] = "ImGui" defs["igIsDragDropPayloadBeingAccepted"][1]["ov_cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["ret"] = "bool" @@ -15990,7 +16086,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:698" +defs["igIsItemActivated"][1]["location"] = "imgui:699" defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -16006,7 +16102,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:693" +defs["igIsItemActive"][1]["location"] = "imgui:694" defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -16026,7 +16122,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:695" +defs["igIsItemClicked"][1]["location"] = "imgui:696" defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -16042,7 +16138,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:699" +defs["igIsItemDeactivated"][1]["location"] = "imgui:700" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -16058,7 +16154,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:700" +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:701" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -16074,7 +16170,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:697" +defs["igIsItemEdited"][1]["location"] = "imgui:698" defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -16090,7 +16186,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:694" +defs["igIsItemFocused"][1]["location"] = "imgui:695" defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -16110,7 +16206,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:692" +defs["igIsItemHovered"][1]["location"] = "imgui:693" defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -16126,7 +16222,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:701" +defs["igIsItemToggledOpen"][1]["location"] = "imgui:702" defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" @@ -16142,7 +16238,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:1856" +defs["igIsItemToggledSelection"][1]["location"] = "imgui_internal:1868" defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["ret"] = "bool" @@ -16158,7 +16254,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:696" +defs["igIsItemVisible"][1]["location"] = "imgui:697" defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" @@ -16177,7 +16273,7 @@ defs["igIsKeyDown"][1]["call_args"] = "(user_key_index)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui:738" +defs["igIsKeyDown"][1]["location"] = "imgui:739" defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -16200,7 +16296,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:739" +defs["igIsKeyPressed"][1]["location"] = "imgui:740" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["ret"] = "bool" @@ -16223,7 +16319,7 @@ defs["igIsKeyPressedMap"][1]["cimguiname"] = "igIsKeyPressedMap" defs["igIsKeyPressedMap"][1]["defaults"] = {} defs["igIsKeyPressedMap"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressedMap"][1]["funcname"] = "IsKeyPressedMap" -defs["igIsKeyPressedMap"][1]["location"] = "imgui_internal:1902" +defs["igIsKeyPressedMap"][1]["location"] = "imgui_internal:1914" defs["igIsKeyPressedMap"][1]["namespace"] = "ImGui" defs["igIsKeyPressedMap"][1]["ov_cimguiname"] = "igIsKeyPressedMap" defs["igIsKeyPressedMap"][1]["ret"] = "bool" @@ -16242,7 +16338,7 @@ defs["igIsKeyReleased"][1]["call_args"] = "(user_key_index)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui:740" +defs["igIsKeyReleased"][1]["location"] = "imgui:741" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -16265,7 +16361,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:749" +defs["igIsMouseClicked"][1]["location"] = "imgui:750" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["ret"] = "bool" @@ -16284,7 +16380,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:751" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:752" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" @@ -16303,7 +16399,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:748" +defs["igIsMouseDown"][1]["location"] = "imgui:749" defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -16326,7 +16422,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:1901" +defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:1913" defs["igIsMouseDragPastThreshold"][1]["namespace"] = "ImGui" defs["igIsMouseDragPastThreshold"][1]["ov_cimguiname"] = "igIsMouseDragPastThreshold" defs["igIsMouseDragPastThreshold"][1]["ret"] = "bool" @@ -16349,7 +16445,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:757" +defs["igIsMouseDragging"][1]["location"] = "imgui:758" defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -16375,7 +16471,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:752" +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:753" defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -16395,7 +16491,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:753" +defs["igIsMousePosValid"][1]["location"] = "imgui:754" defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -16414,7 +16510,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:750" +defs["igIsMouseReleased"][1]["location"] = "imgui:751" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -16433,7 +16529,7 @@ defs["igIsNavInputDown"][1]["call_args"] = "(n)" defs["igIsNavInputDown"][1]["cimguiname"] = "igIsNavInputDown" defs["igIsNavInputDown"][1]["defaults"] = {} defs["igIsNavInputDown"][1]["funcname"] = "IsNavInputDown" -defs["igIsNavInputDown"][1]["location"] = "imgui_internal:1903" +defs["igIsNavInputDown"][1]["location"] = "imgui_internal:1915" defs["igIsNavInputDown"][1]["namespace"] = "ImGui" defs["igIsNavInputDown"][1]["ov_cimguiname"] = "igIsNavInputDown" defs["igIsNavInputDown"][1]["ret"] = "bool" @@ -16455,7 +16551,7 @@ defs["igIsNavInputTest"][1]["call_args"] = "(n,rm)" defs["igIsNavInputTest"][1]["cimguiname"] = "igIsNavInputTest" defs["igIsNavInputTest"][1]["defaults"] = {} defs["igIsNavInputTest"][1]["funcname"] = "IsNavInputTest" -defs["igIsNavInputTest"][1]["location"] = "imgui_internal:1904" +defs["igIsNavInputTest"][1]["location"] = "imgui_internal:1916" defs["igIsNavInputTest"][1]["namespace"] = "ImGui" defs["igIsNavInputTest"][1]["ov_cimguiname"] = "igIsNavInputTest" defs["igIsNavInputTest"][1]["ret"] = "bool" @@ -16498,7 +16594,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:1869" +defs["igIsPopupOpen"][2]["location"] = "imgui_internal:1881" defs["igIsPopupOpen"][2]["namespace"] = "ImGui" defs["igIsPopupOpen"][2]["ov_cimguiname"] = "igIsPopupOpenID" defs["igIsPopupOpen"][2]["ret"] = "bool" @@ -16518,7 +16614,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:711" +defs["igIsRectVisible"][1]["location"] = "imgui:712" defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisibleNil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -16538,7 +16634,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:712" +defs["igIsRectVisible"][2]["location"] = "imgui:713" defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisibleVec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -16577,7 +16673,7 @@ defs["igIsWindowChildOf"][1]["call_args"] = "(window,potential_parent)" defs["igIsWindowChildOf"][1]["cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["defaults"] = {} defs["igIsWindowChildOf"][1]["funcname"] = "IsWindowChildOf" -defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:1781" +defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:1792" defs["igIsWindowChildOf"][1]["namespace"] = "ImGui" defs["igIsWindowChildOf"][1]["ov_cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["ret"] = "bool" @@ -16652,7 +16748,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:1782" +defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:1793" defs["igIsWindowNavFocusable"][1]["namespace"] = "ImGui" defs["igIsWindowNavFocusable"][1]["ov_cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["ret"] = "bool" @@ -16678,7 +16774,7 @@ defs["igItemAdd"][1]["cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["defaults"] = {} defs["igItemAdd"][1]["defaults"]["nav_bb"] = "NULL" defs["igItemAdd"][1]["funcname"] = "ItemAdd" -defs["igItemAdd"][1]["location"] = "imgui_internal:1845" +defs["igItemAdd"][1]["location"] = "imgui_internal:1857" defs["igItemAdd"][1]["namespace"] = "ImGui" defs["igItemAdd"][1]["ov_cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["ret"] = "bool" @@ -16700,7 +16796,7 @@ defs["igItemHoverable"][1]["call_args"] = "(bb,id)" defs["igItemHoverable"][1]["cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["defaults"] = {} defs["igItemHoverable"][1]["funcname"] = "ItemHoverable" -defs["igItemHoverable"][1]["location"] = "imgui_internal:1846" +defs["igItemHoverable"][1]["location"] = "imgui_internal:1858" defs["igItemHoverable"][1]["namespace"] = "ImGui" defs["igItemHoverable"][1]["ov_cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["ret"] = "bool" @@ -16723,7 +16819,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:1843" +defs["igItemSize"][1]["location"] = "imgui_internal:1855" defs["igItemSize"][1]["namespace"] = "ImGui" defs["igItemSize"][1]["ov_cimguiname"] = "igItemSizeVec2" defs["igItemSize"][1]["ret"] = "void" @@ -16744,7 +16840,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:1844" +defs["igItemSize"][2]["location"] = "imgui_internal:1856" defs["igItemSize"][2]["namespace"] = "ImGui" defs["igItemSize"][2]["ov_cimguiname"] = "igItemSizeRect" defs["igItemSize"][2]["ret"] = "void" @@ -16764,7 +16860,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:1838" +defs["igKeepAliveID"][1]["location"] = "imgui_internal:1849" defs["igKeepAliveID"][1]["namespace"] = "ImGui" defs["igKeepAliveID"][1]["ov_cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["ret"] = "void" @@ -16966,7 +17062,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:772" +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:773" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -16989,7 +17085,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:773" +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:774" defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -17011,7 +17107,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:1861" +defs["igLogBegin"][1]["location"] = "imgui_internal:1873" defs["igLogBegin"][1]["namespace"] = "ImGui" defs["igLogBegin"][1]["ov_cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["ret"] = "void" @@ -17027,7 +17123,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:666" +defs["igLogButtons"][1]["location"] = "imgui:667" defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -17043,7 +17139,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:665" +defs["igLogFinish"][1]["location"] = "imgui:666" defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -17069,7 +17165,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:1948" +defs["igLogRenderedText"][1]["location"] = "imgui_internal:1961" defs["igLogRenderedText"][1]["namespace"] = "ImGui" defs["igLogRenderedText"][1]["ov_cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["ret"] = "void" @@ -17092,7 +17188,7 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" -defs["igLogText"][1]["location"] = "imgui:667" +defs["igLogText"][1]["location"] = "imgui:668" defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -17113,7 +17209,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:1862" +defs["igLogToBuffer"][1]["location"] = "imgui_internal:1874" defs["igLogToBuffer"][1]["namespace"] = "ImGui" defs["igLogToBuffer"][1]["ov_cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["ret"] = "void" @@ -17133,7 +17229,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:664" +defs["igLogToClipboard"][1]["location"] = "imgui:665" defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -17157,7 +17253,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:663" +defs["igLogToFile"][1]["location"] = "imgui:664" defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -17177,7 +17273,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:662" +defs["igLogToTTY"][1]["location"] = "imgui:663" defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -17193,7 +17289,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:1812" +defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:1823" defs["igMarkIniSettingsDirty"][1]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][1]["ov_cimguiname"] = "igMarkIniSettingsDirtyNil" defs["igMarkIniSettingsDirty"][1]["ret"] = "void" @@ -17210,7 +17306,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:1813" +defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:1824" defs["igMarkIniSettingsDirty"][2]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][2]["ov_cimguiname"] = "igMarkIniSettingsDirtyWindowPtr" defs["igMarkIniSettingsDirty"][2]["ret"] = "void" @@ -17230,7 +17326,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:1839" +defs["igMarkItemEdited"][1]["location"] = "imgui_internal:1850" defs["igMarkItemEdited"][1]["namespace"] = "ImGui" defs["igMarkItemEdited"][1]["ov_cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["ret"] = "void" @@ -17249,7 +17345,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:784" +defs["igMemAlloc"][1]["location"] = "imgui:785" defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -17268,7 +17364,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:785" +defs["igMemFree"][1]["location"] = "imgui:786" defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -17349,7 +17445,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:1877" +defs["igNavInitWindow"][1]["location"] = "imgui_internal:1889" defs["igNavInitWindow"][1]["namespace"] = "ImGui" defs["igNavInitWindow"][1]["ov_cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["ret"] = "void" @@ -17365,7 +17461,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:1878" +defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:1890" defs["igNavMoveRequestButNoResultYet"][1]["namespace"] = "ImGui" defs["igNavMoveRequestButNoResultYet"][1]["ov_cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["ret"] = "bool" @@ -17381,7 +17477,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:1879" +defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:1891" defs["igNavMoveRequestCancel"][1]["namespace"] = "ImGui" defs["igNavMoveRequestCancel"][1]["ov_cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["ret"] = "void" @@ -17409,7 +17505,7 @@ defs["igNavMoveRequestForward"][1]["call_args"] = "(move_dir,clip_dir,bb_rel,mov defs["igNavMoveRequestForward"][1]["cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["defaults"] = {} defs["igNavMoveRequestForward"][1]["funcname"] = "NavMoveRequestForward" -defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:1880" +defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:1892" defs["igNavMoveRequestForward"][1]["namespace"] = "ImGui" defs["igNavMoveRequestForward"][1]["ov_cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["ret"] = "void" @@ -17431,7 +17527,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:1881" +defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:1893" defs["igNavMoveRequestTryWrapping"][1]["namespace"] = "ImGui" defs["igNavMoveRequestTryWrapping"][1]["ov_cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["ret"] = "void" @@ -17509,30 +17605,6 @@ defs["igOpenPopup"][1]["ret"] = "void" defs["igOpenPopup"][1]["signature"] = "(const char*,ImGuiPopupFlags)" defs["igOpenPopup"][1]["stname"] = "" defs["igOpenPopup"]["(const char*,ImGuiPopupFlags)"] = defs["igOpenPopup"][1] -defs["igOpenPopupContextItem"] = {} -defs["igOpenPopupContextItem"][1] = {} -defs["igOpenPopupContextItem"][1]["args"] = "(const char* str_id,ImGuiPopupFlags popup_flags)" -defs["igOpenPopupContextItem"][1]["argsT"] = {} -defs["igOpenPopupContextItem"][1]["argsT"][1] = {} -defs["igOpenPopupContextItem"][1]["argsT"][1]["name"] = "str_id" -defs["igOpenPopupContextItem"][1]["argsT"][1]["type"] = "const char*" -defs["igOpenPopupContextItem"][1]["argsT"][2] = {} -defs["igOpenPopupContextItem"][1]["argsT"][2]["name"] = "popup_flags" -defs["igOpenPopupContextItem"][1]["argsT"][2]["type"] = "ImGuiPopupFlags" -defs["igOpenPopupContextItem"][1]["argsoriginal"] = "(const char* str_id=((void*)0),ImGuiPopupFlags popup_flags=1)" -defs["igOpenPopupContextItem"][1]["call_args"] = "(str_id,popup_flags)" -defs["igOpenPopupContextItem"][1]["cimguiname"] = "igOpenPopupContextItem" -defs["igOpenPopupContextItem"][1]["defaults"] = {} -defs["igOpenPopupContextItem"][1]["defaults"]["popup_flags"] = "1" -defs["igOpenPopupContextItem"][1]["defaults"]["str_id"] = "NULL" -defs["igOpenPopupContextItem"][1]["funcname"] = "OpenPopupContextItem" -defs["igOpenPopupContextItem"][1]["location"] = "imgui:623" -defs["igOpenPopupContextItem"][1]["namespace"] = "ImGui" -defs["igOpenPopupContextItem"][1]["ov_cimguiname"] = "igOpenPopupContextItem" -defs["igOpenPopupContextItem"][1]["ret"] = "bool" -defs["igOpenPopupContextItem"][1]["signature"] = "(const char*,ImGuiPopupFlags)" -defs["igOpenPopupContextItem"][1]["stname"] = "" -defs["igOpenPopupContextItem"]["(const char*,ImGuiPopupFlags)"] = defs["igOpenPopupContextItem"][1] defs["igOpenPopupEx"] = {} defs["igOpenPopupEx"][1] = {} defs["igOpenPopupEx"][1]["args"] = "(ImGuiID id,ImGuiPopupFlags popup_flags)" @@ -17549,13 +17621,37 @@ 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:1866" +defs["igOpenPopupEx"][1]["location"] = "imgui_internal:1878" defs["igOpenPopupEx"][1]["namespace"] = "ImGui" defs["igOpenPopupEx"][1]["ov_cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["ret"] = "void" defs["igOpenPopupEx"][1]["signature"] = "(ImGuiID,ImGuiPopupFlags)" defs["igOpenPopupEx"][1]["stname"] = "" defs["igOpenPopupEx"]["(ImGuiID,ImGuiPopupFlags)"] = defs["igOpenPopupEx"][1] +defs["igOpenPopupOnItemClick"] = {} +defs["igOpenPopupOnItemClick"][1] = {} +defs["igOpenPopupOnItemClick"][1]["args"] = "(const char* str_id,ImGuiPopupFlags popup_flags)" +defs["igOpenPopupOnItemClick"][1]["argsT"] = {} +defs["igOpenPopupOnItemClick"][1]["argsT"][1] = {} +defs["igOpenPopupOnItemClick"][1]["argsT"][1]["name"] = "str_id" +defs["igOpenPopupOnItemClick"][1]["argsT"][1]["type"] = "const char*" +defs["igOpenPopupOnItemClick"][1]["argsT"][2] = {} +defs["igOpenPopupOnItemClick"][1]["argsT"][2]["name"] = "popup_flags" +defs["igOpenPopupOnItemClick"][1]["argsT"][2]["type"] = "ImGuiPopupFlags" +defs["igOpenPopupOnItemClick"][1]["argsoriginal"] = "(const char* str_id=((void*)0),ImGuiPopupFlags popup_flags=1)" +defs["igOpenPopupOnItemClick"][1]["call_args"] = "(str_id,popup_flags)" +defs["igOpenPopupOnItemClick"][1]["cimguiname"] = "igOpenPopupOnItemClick" +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:623" +defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" +defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" +defs["igOpenPopupOnItemClick"][1]["ret"] = "void" +defs["igOpenPopupOnItemClick"][1]["signature"] = "(const char*,ImGuiPopupFlags)" +defs["igOpenPopupOnItemClick"][1]["stname"] = "" +defs["igOpenPopupOnItemClick"]["(const char*,ImGuiPopupFlags)"] = defs["igOpenPopupOnItemClick"][1] defs["igPlotEx"] = {} defs["igPlotEx"][1] = {} defs["igPlotEx"][1]["args"] = "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size)" @@ -17597,7 +17693,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:2017" +defs["igPlotEx"][1]["location"] = "imgui_internal:2031" defs["igPlotEx"][1]["namespace"] = "ImGui" defs["igPlotEx"][1]["ov_cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["ret"] = "int" @@ -17841,7 +17937,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:682" +defs["igPopClipRect"][1]["location"] = "imgui:683" defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -17857,7 +17953,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:1918" +defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:1930" defs["igPopColumnsBackground"][1]["namespace"] = "ImGui" defs["igPopColumnsBackground"][1]["ov_cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["ret"] = "void" @@ -17873,7 +17969,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:1893" +defs["igPopFocusScope"][1]["location"] = "imgui_internal:1905" defs["igPopFocusScope"][1]["namespace"] = "ImGui" defs["igPopFocusScope"][1]["ov_cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["ret"] = "void" @@ -17921,7 +18017,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:1855" +defs["igPopItemFlag"][1]["location"] = "imgui_internal:1867" defs["igPopItemFlag"][1]["namespace"] = "ImGui" defs["igPopItemFlag"][1]["ov_cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["ret"] = "void" @@ -18083,7 +18179,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:681" +defs["igPushClipRect"][1]["location"] = "imgui:682" defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -18102,7 +18198,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:1916" +defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:1928" defs["igPushColumnClipRect"][1]["namespace"] = "ImGui" defs["igPushColumnClipRect"][1]["ov_cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["ret"] = "void" @@ -18118,7 +18214,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:1917" +defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:1929" defs["igPushColumnsBackground"][1]["namespace"] = "ImGui" defs["igPushColumnsBackground"][1]["ov_cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["ret"] = "void" @@ -18137,7 +18233,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:1892" +defs["igPushFocusScope"][1]["location"] = "imgui_internal:1904" defs["igPushFocusScope"][1]["namespace"] = "ImGui" defs["igPushFocusScope"][1]["ov_cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["ret"] = "void" @@ -18254,7 +18350,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:1854" +defs["igPushItemFlag"][1]["location"] = "imgui_internal:1866" defs["igPushItemFlag"][1]["namespace"] = "ImGui" defs["igPushItemFlag"][1]["ov_cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["ret"] = "void" @@ -18295,7 +18391,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:1853" +defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:1865" defs["igPushMultiItemsWidths"][1]["namespace"] = "ImGui" defs["igPushMultiItemsWidths"][1]["ov_cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["ret"] = "void" @@ -18314,7 +18410,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:1840" +defs["igPushOverrideID"][1]["location"] = "imgui_internal:1851" defs["igPushOverrideID"][1]["namespace"] = "ImGui" defs["igPushOverrideID"][1]["ov_cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["ret"] = "void" @@ -18514,7 +18610,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:1951" +defs["igRenderArrow"][1]["location"] = "imgui_internal:1964" defs["igRenderArrow"][1]["namespace"] = "ImGui" defs["igRenderArrow"][1]["ov_cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["ret"] = "void" @@ -18545,7 +18641,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:1955" +defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:1968" defs["igRenderArrowPointingAt"][1]["namespace"] = "ImGui" defs["igRenderArrowPointingAt"][1]["ov_cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["ret"] = "void" @@ -18570,7 +18666,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:1952" +defs["igRenderBullet"][1]["location"] = "imgui_internal:1965" defs["igRenderBullet"][1]["namespace"] = "ImGui" defs["igRenderBullet"][1]["ov_cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["ret"] = "void" @@ -18598,7 +18694,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:1953" +defs["igRenderCheckMark"][1]["location"] = "imgui_internal:1966" defs["igRenderCheckMark"][1]["namespace"] = "ImGui" defs["igRenderCheckMark"][1]["ov_cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["ret"] = "void" @@ -18640,7 +18736,7 @@ defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"] = {} defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["rounding_corners_flags"] = "~0" defs["igRenderColorRectWithAlphaCheckerboard"][1]["funcname"] = "RenderColorRectWithAlphaCheckerboard" -defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:1945" +defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:1958" defs["igRenderColorRectWithAlphaCheckerboard"][1]["namespace"] = "ImGui" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ov_cimguiname"] = "igRenderColorRectWithAlphaCheckerboard" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ret"] = "void" @@ -18673,7 +18769,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:1943" +defs["igRenderFrame"][1]["location"] = "imgui_internal:1956" defs["igRenderFrame"][1]["namespace"] = "ImGui" defs["igRenderFrame"][1]["ov_cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["ret"] = "void" @@ -18699,7 +18795,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:1944" +defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:1957" defs["igRenderFrameBorder"][1]["namespace"] = "ImGui" defs["igRenderFrameBorder"][1]["ov_cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["ret"] = "void" @@ -18736,7 +18832,7 @@ defs["igRenderMouseCursor"][1]["call_args"] = "(draw_list,pos,scale,mouse_cursor defs["igRenderMouseCursor"][1]["cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["defaults"] = {} defs["igRenderMouseCursor"][1]["funcname"] = "RenderMouseCursor" -defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:1954" +defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:1967" defs["igRenderMouseCursor"][1]["namespace"] = "ImGui" defs["igRenderMouseCursor"][1]["ov_cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["ret"] = "void" @@ -18762,7 +18858,7 @@ defs["igRenderNavHighlight"][1]["cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["defaults"] = {} defs["igRenderNavHighlight"][1]["defaults"]["flags"] = "ImGuiNavHighlightFlags_TypeDefault" defs["igRenderNavHighlight"][1]["funcname"] = "RenderNavHighlight" -defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:1946" +defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:1959" defs["igRenderNavHighlight"][1]["namespace"] = "ImGui" defs["igRenderNavHighlight"][1]["ov_cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["ret"] = "void" @@ -18796,7 +18892,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:1956" +defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:1969" defs["igRenderRectFilledRangeH"][1]["namespace"] = "ImGui" defs["igRenderRectFilledRangeH"][1]["ov_cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["ret"] = "void" @@ -18827,7 +18923,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:1957" +defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:1970" defs["igRenderRectFilledWithHole"][1]["namespace"] = "ImGui" defs["igRenderRectFilledWithHole"][1]["ov_cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["ret"] = "void" @@ -18857,7 +18953,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:1938" +defs["igRenderText"][1]["location"] = "imgui_internal:1951" defs["igRenderText"][1]["namespace"] = "ImGui" defs["igRenderText"][1]["ov_cimguiname"] = "igRenderText" defs["igRenderText"][1]["ret"] = "void" @@ -18896,7 +18992,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:1940" +defs["igRenderTextClipped"][1]["location"] = "imgui_internal:1953" defs["igRenderTextClipped"][1]["namespace"] = "ImGui" defs["igRenderTextClipped"][1]["ov_cimguiname"] = "igRenderTextClipped" defs["igRenderTextClipped"][1]["ret"] = "void" @@ -18938,7 +19034,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:1941" +defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:1954" defs["igRenderTextClippedEx"][1]["namespace"] = "ImGui" defs["igRenderTextClippedEx"][1]["ov_cimguiname"] = "igRenderTextClippedEx" defs["igRenderTextClippedEx"][1]["ret"] = "void" @@ -18978,7 +19074,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:1942" +defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:1955" defs["igRenderTextEllipsis"][1]["namespace"] = "ImGui" defs["igRenderTextEllipsis"][1]["ov_cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["ret"] = "void" @@ -19006,7 +19102,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:1939" +defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:1952" defs["igRenderTextWrapped"][1]["namespace"] = "ImGui" defs["igRenderTextWrapped"][1]["ov_cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["ret"] = "void" @@ -19026,7 +19122,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:759" +defs["igResetMouseDragDelta"][1]["location"] = "imgui:760" defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -19069,7 +19165,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:774" +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:775" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -19089,7 +19185,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:775" +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:776" defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" @@ -19114,7 +19210,7 @@ defs["igScrollToBringRectIntoView"][1]["call_args"] = "(window,item_rect)" defs["igScrollToBringRectIntoView"][1]["cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["defaults"] = {} defs["igScrollToBringRectIntoView"][1]["funcname"] = "ScrollToBringRectIntoView" -defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:1826" +defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:1837" defs["igScrollToBringRectIntoView"][1]["namespace"] = "ImGui" defs["igScrollToBringRectIntoView"][1]["nonUDT"] = 1 defs["igScrollToBringRectIntoView"][1]["ov_cimguiname"] = "igScrollToBringRectIntoView" @@ -19134,7 +19230,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:1971" +defs["igScrollbar"][1]["location"] = "imgui_internal:1984" defs["igScrollbar"][1]["namespace"] = "ImGui" defs["igScrollbar"][1]["ov_cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["ret"] = "void" @@ -19171,7 +19267,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:1972" +defs["igScrollbarEx"][1]["location"] = "imgui_internal:1985" defs["igScrollbarEx"][1]["namespace"] = "ImGui" defs["igScrollbarEx"][1]["ov_cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["ret"] = "bool" @@ -19266,7 +19362,7 @@ defs["igSeparatorEx"][1]["call_args"] = "(flags)" defs["igSeparatorEx"][1]["cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["defaults"] = {} defs["igSeparatorEx"][1]["funcname"] = "SeparatorEx" -defs["igSeparatorEx"][1]["location"] = "imgui_internal:1977" +defs["igSeparatorEx"][1]["location"] = "imgui_internal:1990" defs["igSeparatorEx"][1]["namespace"] = "ImGui" defs["igSeparatorEx"][1]["ov_cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["ret"] = "void" @@ -19288,7 +19384,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:1833" +defs["igSetActiveID"][1]["location"] = "imgui_internal:1844" defs["igSetActiveID"][1]["namespace"] = "ImGui" defs["igSetActiveID"][1]["ov_cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["ret"] = "void" @@ -19318,7 +19414,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:783" +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:784" defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -19337,7 +19433,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:767" +defs["igSetClipboardText"][1]["location"] = "imgui:768" defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -19438,7 +19534,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:1797" +defs["igSetCurrentFont"][1]["location"] = "imgui_internal:1808" defs["igSetCurrentFont"][1]["namespace"] = "ImGui" defs["igSetCurrentFont"][1]["ov_cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["ret"] = "void" @@ -19543,7 +19639,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:673" +defs["igSetDragDropPayload"][1]["location"] = "imgui:674" defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" @@ -19565,7 +19661,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:1834" +defs["igSetFocusID"][1]["location"] = "imgui_internal:1845" defs["igSetFocusID"][1]["namespace"] = "ImGui" defs["igSetFocusID"][1]["ov_cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["ret"] = "void" @@ -19584,7 +19680,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:1837" +defs["igSetHoveredID"][1]["location"] = "imgui_internal:1848" defs["igSetHoveredID"][1]["namespace"] = "ImGui" defs["igSetHoveredID"][1]["ov_cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["ret"] = "void" @@ -19600,7 +19696,7 @@ defs["igSetItemAllowOverlap"][1]["call_args"] = "()" defs["igSetItemAllowOverlap"][1]["cimguiname"] = "igSetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["defaults"] = {} defs["igSetItemAllowOverlap"][1]["funcname"] = "SetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["location"] = "imgui:708" +defs["igSetItemAllowOverlap"][1]["location"] = "imgui:709" defs["igSetItemAllowOverlap"][1]["namespace"] = "ImGui" defs["igSetItemAllowOverlap"][1]["ov_cimguiname"] = "igSetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["ret"] = "void" @@ -19616,7 +19712,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:686" +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:687" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" @@ -19636,7 +19732,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:687" +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:688" defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -19664,7 +19760,7 @@ defs["igSetLastItemData"][1]["call_args"] = "(window,item_id,status_flags,item_r defs["igSetLastItemData"][1]["cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["defaults"] = {} defs["igSetLastItemData"][1]["funcname"] = "SetLastItemData" -defs["igSetLastItemData"][1]["location"] = "imgui_internal:1848" +defs["igSetLastItemData"][1]["location"] = "imgui_internal:1860" defs["igSetLastItemData"][1]["namespace"] = "ImGui" defs["igSetLastItemData"][1]["ov_cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["ret"] = "void" @@ -19683,7 +19779,7 @@ defs["igSetMouseCursor"][1]["call_args"] = "(cursor_type)" defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" -defs["igSetMouseCursor"][1]["location"] = "imgui:761" +defs["igSetMouseCursor"][1]["location"] = "imgui:762" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" @@ -19708,7 +19804,7 @@ defs["igSetNavID"][1]["call_args"] = "(id,nav_layer,focus_scope_id)" defs["igSetNavID"][1]["cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["defaults"] = {} defs["igSetNavID"][1]["funcname"] = "SetNavID" -defs["igSetNavID"][1]["location"] = "imgui_internal:1886" +defs["igSetNavID"][1]["location"] = "imgui_internal:1898" defs["igSetNavID"][1]["namespace"] = "ImGui" defs["igSetNavID"][1]["ov_cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["ret"] = "void" @@ -19736,7 +19832,7 @@ defs["igSetNavIDWithRectRel"][1]["call_args"] = "(id,nav_layer,focus_scope_id,re defs["igSetNavIDWithRectRel"][1]["cimguiname"] = "igSetNavIDWithRectRel" defs["igSetNavIDWithRectRel"][1]["defaults"] = {} defs["igSetNavIDWithRectRel"][1]["funcname"] = "SetNavIDWithRectRel" -defs["igSetNavIDWithRectRel"][1]["location"] = "imgui_internal:1887" +defs["igSetNavIDWithRectRel"][1]["location"] = "imgui_internal:1899" defs["igSetNavIDWithRectRel"][1]["namespace"] = "ImGui" defs["igSetNavIDWithRectRel"][1]["ov_cimguiname"] = "igSetNavIDWithRectRel" defs["igSetNavIDWithRectRel"][1]["ret"] = "void" @@ -19901,7 +19997,7 @@ defs["igSetNextWindowScroll"][1]["call_args"] = "(scroll)" defs["igSetNextWindowScroll"][1]["cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["defaults"] = {} defs["igSetNextWindowScroll"][1]["funcname"] = "SetNextWindowScroll" -defs["igSetNextWindowScroll"][1]["location"] = "imgui_internal:1821" +defs["igSetNextWindowScroll"][1]["location"] = "imgui_internal:1832" defs["igSetNextWindowScroll"][1]["namespace"] = "ImGui" defs["igSetNextWindowScroll"][1]["ov_cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["ret"] = "void" @@ -19995,13 +20091,12 @@ defs["igSetScrollFromPosX"][2]["argsT"][2]["type"] = "float" defs["igSetScrollFromPosX"][2]["argsT"][3] = {} defs["igSetScrollFromPosX"][2]["argsT"][3]["name"] = "center_x_ratio" defs["igSetScrollFromPosX"][2]["argsT"][3]["type"] = "float" -defs["igSetScrollFromPosX"][2]["argsoriginal"] = "(ImGuiWindow* window,float local_x,float center_x_ratio=0.5f)" +defs["igSetScrollFromPosX"][2]["argsoriginal"] = "(ImGuiWindow* window,float local_x,float center_x_ratio)" defs["igSetScrollFromPosX"][2]["call_args"] = "(window,local_x,center_x_ratio)" defs["igSetScrollFromPosX"][2]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][2]["defaults"] = {} -defs["igSetScrollFromPosX"][2]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][2]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:1824" +defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:1835" defs["igSetScrollFromPosX"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][2]["ov_cimguiname"] = "igSetScrollFromPosXWindowPtr" defs["igSetScrollFromPosX"][2]["ret"] = "void" @@ -20043,13 +20138,12 @@ defs["igSetScrollFromPosY"][2]["argsT"][2]["type"] = "float" defs["igSetScrollFromPosY"][2]["argsT"][3] = {} defs["igSetScrollFromPosY"][2]["argsT"][3]["name"] = "center_y_ratio" defs["igSetScrollFromPosY"][2]["argsT"][3]["type"] = "float" -defs["igSetScrollFromPosY"][2]["argsoriginal"] = "(ImGuiWindow* window,float local_y,float center_y_ratio=0.5f)" +defs["igSetScrollFromPosY"][2]["argsoriginal"] = "(ImGuiWindow* window,float local_y,float center_y_ratio)" defs["igSetScrollFromPosY"][2]["call_args"] = "(window,local_y,center_y_ratio)" defs["igSetScrollFromPosY"][2]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][2]["defaults"] = {} -defs["igSetScrollFromPosY"][2]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][2]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:1825" +defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:1836" defs["igSetScrollFromPosY"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][2]["ov_cimguiname"] = "igSetScrollFromPosYWindowPtr" defs["igSetScrollFromPosY"][2]["ret"] = "void" @@ -20116,20 +20210,20 @@ defs["igSetScrollX"][1]["ret"] = "void" defs["igSetScrollX"][1]["signature"] = "(float)" defs["igSetScrollX"][1]["stname"] = "" defs["igSetScrollX"][2] = {} -defs["igSetScrollX"][2]["args"] = "(ImGuiWindow* window,float new_scroll_x)" +defs["igSetScrollX"][2]["args"] = "(ImGuiWindow* window,float scroll_x)" defs["igSetScrollX"][2]["argsT"] = {} defs["igSetScrollX"][2]["argsT"][1] = {} defs["igSetScrollX"][2]["argsT"][1]["name"] = "window" defs["igSetScrollX"][2]["argsT"][1]["type"] = "ImGuiWindow*" defs["igSetScrollX"][2]["argsT"][2] = {} -defs["igSetScrollX"][2]["argsT"][2]["name"] = "new_scroll_x" +defs["igSetScrollX"][2]["argsT"][2]["name"] = "scroll_x" defs["igSetScrollX"][2]["argsT"][2]["type"] = "float" -defs["igSetScrollX"][2]["argsoriginal"] = "(ImGuiWindow* window,float new_scroll_x)" -defs["igSetScrollX"][2]["call_args"] = "(window,new_scroll_x)" +defs["igSetScrollX"][2]["argsoriginal"] = "(ImGuiWindow* window,float scroll_x)" +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:1822" +defs["igSetScrollX"][2]["location"] = "imgui_internal:1833" defs["igSetScrollX"][2]["namespace"] = "ImGui" defs["igSetScrollX"][2]["ov_cimguiname"] = "igSetScrollXWindowPtr" defs["igSetScrollX"][2]["ret"] = "void" @@ -20156,20 +20250,20 @@ defs["igSetScrollY"][1]["ret"] = "void" defs["igSetScrollY"][1]["signature"] = "(float)" defs["igSetScrollY"][1]["stname"] = "" defs["igSetScrollY"][2] = {} -defs["igSetScrollY"][2]["args"] = "(ImGuiWindow* window,float new_scroll_y)" +defs["igSetScrollY"][2]["args"] = "(ImGuiWindow* window,float scroll_y)" defs["igSetScrollY"][2]["argsT"] = {} defs["igSetScrollY"][2]["argsT"][1] = {} defs["igSetScrollY"][2]["argsT"][1]["name"] = "window" defs["igSetScrollY"][2]["argsT"][1]["type"] = "ImGuiWindow*" defs["igSetScrollY"][2]["argsT"][2] = {} -defs["igSetScrollY"][2]["argsT"][2]["name"] = "new_scroll_y" +defs["igSetScrollY"][2]["argsT"][2]["name"] = "scroll_y" defs["igSetScrollY"][2]["argsT"][2]["type"] = "float" -defs["igSetScrollY"][2]["argsoriginal"] = "(ImGuiWindow* window,float new_scroll_y)" -defs["igSetScrollY"][2]["call_args"] = "(window,new_scroll_y)" +defs["igSetScrollY"][2]["argsoriginal"] = "(ImGuiWindow* window,float scroll_y)" +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:1823" +defs["igSetScrollY"][2]["location"] = "imgui_internal:1834" defs["igSetScrollY"][2]["namespace"] = "ImGui" defs["igSetScrollY"][2]["ov_cimguiname"] = "igSetScrollYWindowPtr" defs["igSetScrollY"][2]["ret"] = "void" @@ -20189,7 +20283,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:719" +defs["igSetStateStorage"][1]["location"] = "imgui:720" defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -20208,7 +20302,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:658" +defs["igSetTabItemClosed"][1]["location"] = "imgui:659" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -20275,7 +20369,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:1913" +defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:1925" defs["igSetWindowClipRectBeforeSetChannel"][1]["namespace"] = "ImGui" defs["igSetWindowClipRectBeforeSetChannel"][1]["ov_cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["ret"] = "void" @@ -20346,7 +20440,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:1786" +defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:1797" defs["igSetWindowCollapsed"][3]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][3]["ov_cimguiname"] = "igSetWindowCollapsedWindowPtr" defs["igSetWindowCollapsed"][3]["ret"] = "void" @@ -20426,7 +20520,7 @@ defs["igSetWindowHitTestHole"][1]["call_args"] = "(window,pos,size)" defs["igSetWindowHitTestHole"][1]["cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["defaults"] = {} defs["igSetWindowHitTestHole"][1]["funcname"] = "SetWindowHitTestHole" -defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:1787" +defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:1798" defs["igSetWindowHitTestHole"][1]["namespace"] = "ImGui" defs["igSetWindowHitTestHole"][1]["ov_cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["ret"] = "void" @@ -20497,7 +20591,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:1784" +defs["igSetWindowPos"][3]["location"] = "imgui_internal:1795" defs["igSetWindowPos"][3]["namespace"] = "ImGui" defs["igSetWindowPos"][3]["ov_cimguiname"] = "igSetWindowPosWindowPtr" defs["igSetWindowPos"][3]["ret"] = "void" @@ -20570,7 +20664,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:1785" +defs["igSetWindowSize"][3]["location"] = "imgui_internal:1796" defs["igSetWindowSize"][3]["namespace"] = "ImGui" defs["igSetWindowSize"][3]["ov_cimguiname"] = "igSetWindowSizeWindowPtr" defs["igSetWindowSize"][3]["ret"] = "void" @@ -20609,7 +20703,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:2020" +defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:2034" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ov_cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ret"] = "void" @@ -20649,7 +20743,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:2021" +defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:2035" defs["igShadeVertsLinearUV"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearUV"][1]["ov_cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["ret"] = "void" @@ -20808,7 +20902,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:1858" +defs["igShrinkWidths"][1]["location"] = "imgui_internal:1870" defs["igShrinkWidths"][1]["namespace"] = "ImGui" defs["igShrinkWidths"][1]["ov_cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["ret"] = "void" @@ -20827,7 +20921,7 @@ defs["igShutdown"][1]["call_args"] = "(context)" defs["igShutdown"][1]["cimguiname"] = "igShutdown" defs["igShutdown"][1]["defaults"] = {} defs["igShutdown"][1]["funcname"] = "Shutdown" -defs["igShutdown"][1]["location"] = "imgui_internal:1803" +defs["igShutdown"][1]["location"] = "imgui_internal:1814" defs["igShutdown"][1]["namespace"] = "ImGui" defs["igShutdown"][1]["ov_cimguiname"] = "igShutdown" defs["igShutdown"][1]["ret"] = "void" @@ -20908,7 +21002,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:1982" +defs["igSliderBehavior"][1]["location"] = "imgui_internal:1995" defs["igSliderBehavior"][1]["namespace"] = "ImGui" defs["igSliderBehavior"][1]["ov_cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["ret"] = "bool" @@ -21357,7 +21451,7 @@ defs["igSplitterBehavior"][1]["defaults"] = {} 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:1983" +defs["igSplitterBehavior"][1]["location"] = "imgui_internal:1996" defs["igSplitterBehavior"][1]["namespace"] = "ImGui" defs["igSplitterBehavior"][1]["ov_cimguiname"] = "igSplitterBehavior" defs["igSplitterBehavior"][1]["ret"] = "bool" @@ -21376,7 +21470,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:1807" +defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:1818" defs["igStartMouseMovingWindow"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindow"][1]["ov_cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["ret"] = "void" @@ -21458,7 +21552,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:1928" +defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:1940" defs["igTabBarCloseTab"][1]["namespace"] = "ImGui" defs["igTabBarCloseTab"][1]["ov_cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["ret"] = "void" @@ -21480,38 +21574,57 @@ 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:1926" +defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:1938" defs["igTabBarFindTabByID"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByID"][1]["ov_cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["ret"] = "ImGuiTabItem*" defs["igTabBarFindTabByID"][1]["signature"] = "(ImGuiTabBar*,ImGuiID)" defs["igTabBarFindTabByID"][1]["stname"] = "" defs["igTabBarFindTabByID"]["(ImGuiTabBar*,ImGuiID)"] = defs["igTabBarFindTabByID"][1] -defs["igTabBarQueueChangeTabOrder"] = {} -defs["igTabBarQueueChangeTabOrder"][1] = {} -defs["igTabBarQueueChangeTabOrder"][1]["args"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir)" -defs["igTabBarQueueChangeTabOrder"][1]["argsT"] = {} -defs["igTabBarQueueChangeTabOrder"][1]["argsT"][1] = {} -defs["igTabBarQueueChangeTabOrder"][1]["argsT"][1]["name"] = "tab_bar" -defs["igTabBarQueueChangeTabOrder"][1]["argsT"][1]["type"] = "ImGuiTabBar*" -defs["igTabBarQueueChangeTabOrder"][1]["argsT"][2] = {} -defs["igTabBarQueueChangeTabOrder"][1]["argsT"][2]["name"] = "tab" -defs["igTabBarQueueChangeTabOrder"][1]["argsT"][2]["type"] = "const ImGuiTabItem*" -defs["igTabBarQueueChangeTabOrder"][1]["argsT"][3] = {} -defs["igTabBarQueueChangeTabOrder"][1]["argsT"][3]["name"] = "dir" -defs["igTabBarQueueChangeTabOrder"][1]["argsT"][3]["type"] = "int" -defs["igTabBarQueueChangeTabOrder"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir)" -defs["igTabBarQueueChangeTabOrder"][1]["call_args"] = "(tab_bar,tab,dir)" -defs["igTabBarQueueChangeTabOrder"][1]["cimguiname"] = "igTabBarQueueChangeTabOrder" -defs["igTabBarQueueChangeTabOrder"][1]["defaults"] = {} -defs["igTabBarQueueChangeTabOrder"][1]["funcname"] = "TabBarQueueChangeTabOrder" -defs["igTabBarQueueChangeTabOrder"][1]["location"] = "imgui_internal:1929" -defs["igTabBarQueueChangeTabOrder"][1]["namespace"] = "ImGui" -defs["igTabBarQueueChangeTabOrder"][1]["ov_cimguiname"] = "igTabBarQueueChangeTabOrder" -defs["igTabBarQueueChangeTabOrder"][1]["ret"] = "void" -defs["igTabBarQueueChangeTabOrder"][1]["signature"] = "(ImGuiTabBar*,const ImGuiTabItem*,int)" -defs["igTabBarQueueChangeTabOrder"][1]["stname"] = "" -defs["igTabBarQueueChangeTabOrder"]["(ImGuiTabBar*,const ImGuiTabItem*,int)"] = defs["igTabBarQueueChangeTabOrder"][1] +defs["igTabBarProcessReorder"] = {} +defs["igTabBarProcessReorder"][1] = {} +defs["igTabBarProcessReorder"][1]["args"] = "(ImGuiTabBar* tab_bar)" +defs["igTabBarProcessReorder"][1]["argsT"] = {} +defs["igTabBarProcessReorder"][1]["argsT"][1] = {} +defs["igTabBarProcessReorder"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarProcessReorder"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarProcessReorder"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar)" +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:1942" +defs["igTabBarProcessReorder"][1]["namespace"] = "ImGui" +defs["igTabBarProcessReorder"][1]["ov_cimguiname"] = "igTabBarProcessReorder" +defs["igTabBarProcessReorder"][1]["ret"] = "bool" +defs["igTabBarProcessReorder"][1]["signature"] = "(ImGuiTabBar*)" +defs["igTabBarProcessReorder"][1]["stname"] = "" +defs["igTabBarProcessReorder"]["(ImGuiTabBar*)"] = defs["igTabBarProcessReorder"][1] +defs["igTabBarQueueReorder"] = {} +defs["igTabBarQueueReorder"][1] = {} +defs["igTabBarQueueReorder"][1]["args"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir)" +defs["igTabBarQueueReorder"][1]["argsT"] = {} +defs["igTabBarQueueReorder"][1]["argsT"][1] = {} +defs["igTabBarQueueReorder"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarQueueReorder"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarQueueReorder"][1]["argsT"][2] = {} +defs["igTabBarQueueReorder"][1]["argsT"][2]["name"] = "tab" +defs["igTabBarQueueReorder"][1]["argsT"][2]["type"] = "const ImGuiTabItem*" +defs["igTabBarQueueReorder"][1]["argsT"][3] = {} +defs["igTabBarQueueReorder"][1]["argsT"][3]["name"] = "dir" +defs["igTabBarQueueReorder"][1]["argsT"][3]["type"] = "int" +defs["igTabBarQueueReorder"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir)" +defs["igTabBarQueueReorder"][1]["call_args"] = "(tab_bar,tab,dir)" +defs["igTabBarQueueReorder"][1]["cimguiname"] = "igTabBarQueueReorder" +defs["igTabBarQueueReorder"][1]["defaults"] = {} +defs["igTabBarQueueReorder"][1]["funcname"] = "TabBarQueueReorder" +defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:1941" +defs["igTabBarQueueReorder"][1]["namespace"] = "ImGui" +defs["igTabBarQueueReorder"][1]["ov_cimguiname"] = "igTabBarQueueReorder" +defs["igTabBarQueueReorder"][1]["ret"] = "void" +defs["igTabBarQueueReorder"][1]["signature"] = "(ImGuiTabBar*,const ImGuiTabItem*,int)" +defs["igTabBarQueueReorder"][1]["stname"] = "" +defs["igTabBarQueueReorder"]["(ImGuiTabBar*,const ImGuiTabItem*,int)"] = defs["igTabBarQueueReorder"][1] defs["igTabBarRemoveTab"] = {} defs["igTabBarRemoveTab"][1] = {} defs["igTabBarRemoveTab"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiID tab_id)" @@ -21527,7 +21640,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:1927" +defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:1939" defs["igTabBarRemoveTab"][1]["namespace"] = "ImGui" defs["igTabBarRemoveTab"][1]["ov_cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["ret"] = "void" @@ -21555,13 +21668,36 @@ 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:1932" +defs["igTabItemBackground"][1]["location"] = "imgui_internal:1945" defs["igTabItemBackground"][1]["namespace"] = "ImGui" defs["igTabItemBackground"][1]["ov_cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["ret"] = "void" defs["igTabItemBackground"][1]["signature"] = "(ImDrawList*,const ImRect,ImGuiTabItemFlags,ImU32)" defs["igTabItemBackground"][1]["stname"] = "" defs["igTabItemBackground"]["(ImDrawList*,const ImRect,ImGuiTabItemFlags,ImU32)"] = defs["igTabItemBackground"][1] +defs["igTabItemButton"] = {} +defs["igTabItemButton"][1] = {} +defs["igTabItemButton"][1]["args"] = "(const char* label,ImGuiTabItemFlags flags)" +defs["igTabItemButton"][1]["argsT"] = {} +defs["igTabItemButton"][1]["argsT"][1] = {} +defs["igTabItemButton"][1]["argsT"][1]["name"] = "label" +defs["igTabItemButton"][1]["argsT"][1]["type"] = "const char*" +defs["igTabItemButton"][1]["argsT"][2] = {} +defs["igTabItemButton"][1]["argsT"][2]["name"] = "flags" +defs["igTabItemButton"][1]["argsT"][2]["type"] = "ImGuiTabItemFlags" +defs["igTabItemButton"][1]["argsoriginal"] = "(const char* label,ImGuiTabItemFlags flags=0)" +defs["igTabItemButton"][1]["call_args"] = "(label,flags)" +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:658" +defs["igTabItemButton"][1]["namespace"] = "ImGui" +defs["igTabItemButton"][1]["ov_cimguiname"] = "igTabItemButton" +defs["igTabItemButton"][1]["ret"] = "bool" +defs["igTabItemButton"][1]["signature"] = "(const char*,ImGuiTabItemFlags)" +defs["igTabItemButton"][1]["stname"] = "" +defs["igTabItemButton"]["(const char*,ImGuiTabItemFlags)"] = defs["igTabItemButton"][1] defs["igTabItemCalcSize"] = {} defs["igTabItemCalcSize"][1] = {} defs["igTabItemCalcSize"][1]["args"] = "(ImVec2 *pOut,const char* label,bool has_close_button)" @@ -21580,7 +21716,7 @@ defs["igTabItemCalcSize"][1]["call_args"] = "(label,has_close_button)" defs["igTabItemCalcSize"][1]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][1]["defaults"] = {} defs["igTabItemCalcSize"][1]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:1931" +defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:1944" defs["igTabItemCalcSize"][1]["namespace"] = "ImGui" defs["igTabItemCalcSize"][1]["nonUDT"] = 1 defs["igTabItemCalcSize"][1]["ov_cimguiname"] = "igTabItemCalcSize" @@ -21609,7 +21745,7 @@ defs["igTabItemEx"][1]["call_args"] = "(tab_bar,label,p_open,flags)" defs["igTabItemEx"][1]["cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["defaults"] = {} defs["igTabItemEx"][1]["funcname"] = "TabItemEx" -defs["igTabItemEx"][1]["location"] = "imgui_internal:1930" +defs["igTabItemEx"][1]["location"] = "imgui_internal:1943" defs["igTabItemEx"][1]["namespace"] = "ImGui" defs["igTabItemEx"][1]["ov_cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["ret"] = "bool" @@ -21649,7 +21785,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:1933" +defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:1946" defs["igTabItemLabelAndCloseButton"][1]["namespace"] = "ImGui" defs["igTabItemLabelAndCloseButton"][1]["ov_cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["ret"] = "bool" @@ -21668,7 +21804,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:2008" +defs["igTempInputIsActive"][1]["location"] = "imgui_internal:2022" defs["igTempInputIsActive"][1]["namespace"] = "ImGui" defs["igTempInputIsActive"][1]["ov_cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["ret"] = "bool" @@ -21710,7 +21846,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:2007" +defs["igTempInputScalar"][1]["location"] = "imgui_internal:2021" defs["igTempInputScalar"][1]["namespace"] = "ImGui" defs["igTempInputScalar"][1]["ov_cimguiname"] = "igTempInputScalar" defs["igTempInputScalar"][1]["ret"] = "bool" @@ -21744,7 +21880,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:2006" +defs["igTempInputText"][1]["location"] = "imgui_internal:2020" defs["igTempInputText"][1]["namespace"] = "ImGui" defs["igTempInputText"][1]["ov_cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["ret"] = "bool" @@ -21890,7 +22026,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:1966" +defs["igTextEx"][1]["location"] = "imgui_internal:1979" defs["igTextEx"][1]["namespace"] = "ImGui" defs["igTextEx"][1]["ov_cimguiname"] = "igTextEx" defs["igTextEx"][1]["ret"] = "void" @@ -22078,7 +22214,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:1984" +defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:1997" defs["igTreeNodeBehavior"][1]["namespace"] = "ImGui" defs["igTreeNodeBehavior"][1]["ov_cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["ret"] = "bool" @@ -22101,7 +22237,7 @@ defs["igTreeNodeBehaviorIsOpen"][1]["cimguiname"] = "igTreeNodeBehaviorIsOpen" defs["igTreeNodeBehaviorIsOpen"][1]["defaults"] = {} defs["igTreeNodeBehaviorIsOpen"][1]["defaults"]["flags"] = "0" defs["igTreeNodeBehaviorIsOpen"][1]["funcname"] = "TreeNodeBehaviorIsOpen" -defs["igTreeNodeBehaviorIsOpen"][1]["location"] = "imgui_internal:1985" +defs["igTreeNodeBehaviorIsOpen"][1]["location"] = "imgui_internal:1998" defs["igTreeNodeBehaviorIsOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeBehaviorIsOpen"][1]["ov_cimguiname"] = "igTreeNodeBehaviorIsOpen" defs["igTreeNodeBehaviorIsOpen"][1]["ret"] = "bool" @@ -22357,7 +22493,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:1986" +defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:1999" defs["igTreePushOverrideID"][1]["namespace"] = "ImGui" defs["igTreePushOverrideID"][1]["ov_cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["ret"] = "void" @@ -22393,7 +22529,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:1806" +defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:1817" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["namespace"] = "ImGui" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ov_cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ret"] = "void" @@ -22409,7 +22545,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:1809" +defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:1820" defs["igUpdateMouseMovingWindowEndFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowEndFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["ret"] = "void" @@ -22425,7 +22561,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:1808" +defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:1819" defs["igUpdateMouseMovingWindowNewFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowNewFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["ret"] = "void" @@ -22450,7 +22586,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:1779" +defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:1790" defs["igUpdateWindowParentAndRootLinks"][1]["namespace"] = "ImGui" defs["igUpdateWindowParentAndRootLinks"][1]["ov_cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["ret"] = "void" diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index b088765..ebb60a9 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -1223,6 +1223,11 @@ "name": "ImGuiInputTextFlags_CallbackResize", "value": "1 << 18" }, + { + "calc_value": 524288, + "name": "ImGuiInputTextFlags_CallbackEdit", + "value": "1 << 19" + }, { "calc_value": 1048576, "name": "ImGuiInputTextFlags_Multiline", @@ -1975,6 +1980,11 @@ "calc_value": 1, "name": "ImGuiPopupPositionPolicy_ComboBox", "value": "1" + }, + { + "calc_value": 2, + "name": "ImGuiPopupPositionPolicy_Tooltip", + "value": "2" } ], "ImGuiSelectableFlagsPrivate_": [ @@ -2007,6 +2017,11 @@ "calc_value": 33554432, "name": "ImGuiSelectableFlags_SetNavIdOnHover", "value": "1 << 25" + }, + { + "calc_value": 67108864, + "name": "ImGuiSelectableFlags_NoPadWithHalfSpacing", + "value": "1 << 26" } ], "ImGuiSelectableFlags_": [ @@ -2083,7 +2098,7 @@ }, { "calc_value": 16, - "name": "ImGuiSliderFlags_ClampOnInput", + "name": "ImGuiSliderFlags_AlwaysClamp", "value": "1 << 4" }, { @@ -2308,6 +2323,11 @@ "calc_value": 1048576, "name": "ImGuiTabItemFlags_NoCloseButton", "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiTabItemFlags_Button", + "value": "1 << 21" } ], "ImGuiTabItemFlags_": [ @@ -2340,6 +2360,21 @@ "calc_value": 16, "name": "ImGuiTabItemFlags_NoTooltip", "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiTabItemFlags_NoReorder", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiTabItemFlags_Leading", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiTabItemFlags_Trailing", + "value": "1 << 7" } ], "ImGuiTextFlags_": [ @@ -2609,122 +2644,122 @@ ] }, "locations": { - "ImBitVector": "imgui_internal:468", - "ImColor": "imgui:1927", - "ImDrawChannel": "imgui:2013", - "ImDrawCmd": "imgui:1976", - "ImDrawCornerFlags_": "imgui:2036", - "ImDrawData": "imgui:2183", - "ImDrawDataBuilder": "imgui_internal:561", - "ImDrawList": "imgui:2069", - "ImDrawListFlags_": "imgui:2052", - "ImDrawListSharedData": "imgui_internal:542", - "ImDrawListSplitter": "imgui:2021", - "ImDrawVert": "imgui:1998", - "ImFont": "imgui:2394", - "ImFontAtlas": "imgui:2299", - "ImFontAtlasCustomRect": "imgui:2261", - "ImFontAtlasFlags_": "imgui:2274", - "ImFontConfig": "imgui:2206", - "ImFontGlyph": "imgui:2235", - "ImFontGlyphRangesBuilder": "imgui:2246", - "ImGuiAxis": "imgui_internal:697", - "ImGuiBackendFlags_": "imgui:1124", - "ImGuiButtonFlagsPrivate_": "imgui_internal:612", - "ImGuiButtonFlags_": "imgui:1235", - "ImGuiCol_": "imgui:1134", - "ImGuiColorEditFlags_": "imgui:1248", - "ImGuiColorMod": "imgui_internal:802", - "ImGuiColumnData": "imgui_internal:993", - "ImGuiColumns": "imgui_internal:1003", - "ImGuiColumnsFlags_": "imgui_internal:982", - "ImGuiComboFlags_": "imgui:917", - "ImGuiCond_": "imgui:1340", - "ImGuiConfigFlags_": "imgui:1108", - "ImGuiContext": "imgui_internal:1100", - "ImGuiDataTypeInfo": "imgui_internal:786", - "ImGuiDataTypePrivate_": "imgui_internal:794", - "ImGuiDataTypeTempStorage": "imgui_internal:780", - "ImGuiDataType_": "imgui:1008", - "ImGuiDir_": "imgui:1024", - "ImGuiDragDropFlags_": "imgui:986", - "ImGuiFocusedFlags_": "imgui:958", - "ImGuiGroupData": "imgui_internal:819", - "ImGuiHoveredFlags_": "imgui:970", - "ImGuiIO": "imgui:1493", - "ImGuiInputReadMode": "imgui_internal:721", - "ImGuiInputSource": "imgui_internal:710", - "ImGuiInputTextCallbackData": "imgui:1642", - "ImGuiInputTextFlags_": "imgui:835", - "ImGuiInputTextState": "imgui_internal:847", - "ImGuiItemFlags_": "imgui_internal:576", - "ImGuiItemStatusFlags_": "imgui_internal:591", - "ImGuiKeyModFlags_": "imgui:1063", - "ImGuiKey_": "imgui:1035", - "ImGuiLastItemDataBackup": "imgui_internal:1672", - "ImGuiLayoutType_": "imgui_internal:681", - "ImGuiListClipper": "imgui:1883", - "ImGuiLogType": "imgui_internal:687", - "ImGuiMenuColumns": "imgui_internal:833", - "ImGuiMouseButton_": "imgui:1307", - "ImGuiMouseCursor_": "imgui:1317", - "ImGuiNavDirSourceFlags_": "imgui_internal:740", - "ImGuiNavForward": "imgui_internal:760", - "ImGuiNavHighlightFlags_": "imgui_internal:731", - "ImGuiNavInput_": "imgui:1076", - "ImGuiNavLayer": "imgui_internal:767", - "ImGuiNavMoveFlags_": "imgui_internal:748", - "ImGuiNavMoveResult": "imgui_internal:894", - "ImGuiNextItemData": "imgui_internal:951", - "ImGuiNextItemDataFlags_": "imgui_internal:944", - "ImGuiNextWindowData": "imgui_internal:922", - "ImGuiNextWindowDataFlags_": "imgui_internal:908", - "ImGuiOnceUponAFrame": "imgui:1765", - "ImGuiPayload": "imgui:1680", - "ImGuiPlotType": "imgui_internal:704", - "ImGuiPopupData": "imgui_internal:881", - "ImGuiPopupFlags_": "imgui:890", - "ImGuiPopupPositionPolicy": "imgui_internal:774", - "ImGuiPtrOrIndex": "imgui_internal:969", - "ImGuiSelectableFlagsPrivate_": "imgui_internal:642", - "ImGuiSelectableFlags_": "imgui:906", - "ImGuiSeparatorFlags_": "imgui_internal:659", - "ImGuiSettingsHandler": "imgui_internal:1081", - "ImGuiShrinkWidthItem": "imgui_internal:963", - "ImGuiSizeCallbackData": "imgui:1671", - "ImGuiSliderFlagsPrivate_": "imgui_internal:635", - "ImGuiSliderFlags_": "imgui:1295", - "ImGuiStorage": "imgui:1827", - "ImGuiStoragePair": "imgui:1830", - "ImGuiStyle": "imgui:1441", - "ImGuiStyleMod": "imgui_internal:809", - "ImGuiStyleVar_": "imgui:1200", - "ImGuiTabBar": "imgui_internal:1719", - "ImGuiTabBarFlagsPrivate_": "imgui_internal:1689", - "ImGuiTabBarFlags_": "imgui:931", - "ImGuiTabItem": "imgui_internal:1703", - "ImGuiTabItemFlagsPrivate_": "imgui_internal:1697", - "ImGuiTabItemFlags_": "imgui:947", - "ImGuiTextBuffer": "imgui:1800", - "ImGuiTextFilter": "imgui:1773", - "ImGuiTextFlags_": "imgui_internal:667", - "ImGuiTextRange": "imgui:1783", - "ImGuiTooltipFlags_": "imgui_internal:673", - "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:654", - "ImGuiTreeNodeFlags_": "imgui:863", - "ImGuiWindow": "imgui_internal:1563", - "ImGuiWindowFlags_": "imgui:794", - "ImGuiWindowSettings": "imgui_internal:1069", - "ImGuiWindowTempData": "imgui_internal:1471", - "ImRect": "imgui_internal:415", - "ImVec1": "imgui_internal:397", + "ImBitVector": "imgui_internal:470", + "ImColor": "imgui:1953", + "ImDrawChannel": "imgui:2039", + "ImDrawCmd": "imgui:2002", + "ImDrawCornerFlags_": "imgui:2062", + "ImDrawData": "imgui:2209", + "ImDrawDataBuilder": "imgui_internal:563", + "ImDrawList": "imgui:2095", + "ImDrawListFlags_": "imgui:2078", + "ImDrawListSharedData": "imgui_internal:544", + "ImDrawListSplitter": "imgui:2047", + "ImDrawVert": "imgui:2024", + "ImFont": "imgui:2420", + "ImFontAtlas": "imgui:2325", + "ImFontAtlasCustomRect": "imgui:2287", + "ImFontAtlasFlags_": "imgui:2300", + "ImFontConfig": "imgui:2232", + "ImFontGlyph": "imgui:2261", + "ImFontGlyphRangesBuilder": "imgui:2272", + "ImGuiAxis": "imgui_internal:700", + "ImGuiBackendFlags_": "imgui:1131", + "ImGuiButtonFlagsPrivate_": "imgui_internal:614", + "ImGuiButtonFlags_": "imgui:1242", + "ImGuiCol_": "imgui:1141", + "ImGuiColorEditFlags_": "imgui:1255", + "ImGuiColorMod": "imgui_internal:807", + "ImGuiColumnData": "imgui_internal:999", + "ImGuiColumns": "imgui_internal:1009", + "ImGuiColumnsFlags_": "imgui_internal:988", + "ImGuiComboFlags_": "imgui:921", + "ImGuiCond_": "imgui:1352", + "ImGuiConfigFlags_": "imgui:1115", + "ImGuiContext": "imgui_internal:1106", + "ImGuiDataTypeInfo": "imgui_internal:790", + "ImGuiDataTypePrivate_": "imgui_internal:799", + "ImGuiDataTypeTempStorage": "imgui_internal:784", + "ImGuiDataType_": "imgui:1015", + "ImGuiDir_": "imgui:1031", + "ImGuiDragDropFlags_": "imgui:993", + "ImGuiFocusedFlags_": "imgui:965", + "ImGuiGroupData": "imgui_internal:824", + "ImGuiHoveredFlags_": "imgui:977", + "ImGuiIO": "imgui:1506", + "ImGuiInputReadMode": "imgui_internal:724", + "ImGuiInputSource": "imgui_internal:713", + "ImGuiInputTextCallbackData": "imgui:1656", + "ImGuiInputTextFlags_": "imgui:836", + "ImGuiInputTextState": "imgui_internal:852", + "ImGuiItemFlags_": "imgui_internal:578", + "ImGuiItemStatusFlags_": "imgui_internal:593", + "ImGuiKeyModFlags_": "imgui:1070", + "ImGuiKey_": "imgui:1042", + "ImGuiLastItemDataBackup": "imgui_internal:1677", + "ImGuiLayoutType_": "imgui_internal:684", + "ImGuiListClipper": "imgui:1905", + "ImGuiLogType": "imgui_internal:690", + "ImGuiMenuColumns": "imgui_internal:838", + "ImGuiMouseButton_": "imgui:1319", + "ImGuiMouseCursor_": "imgui:1329", + "ImGuiNavDirSourceFlags_": "imgui_internal:743", + "ImGuiNavForward": "imgui_internal:763", + "ImGuiNavHighlightFlags_": "imgui_internal:734", + "ImGuiNavInput_": "imgui:1083", + "ImGuiNavLayer": "imgui_internal:770", + "ImGuiNavMoveFlags_": "imgui_internal:751", + "ImGuiNavMoveResult": "imgui_internal:900", + "ImGuiNextItemData": "imgui_internal:957", + "ImGuiNextItemDataFlags_": "imgui_internal:950", + "ImGuiNextWindowData": "imgui_internal:928", + "ImGuiNextWindowDataFlags_": "imgui_internal:914", + "ImGuiOnceUponAFrame": "imgui:1783", + "ImGuiPayload": "imgui:1696", + "ImGuiPlotType": "imgui_internal:707", + "ImGuiPopupData": "imgui_internal:887", + "ImGuiPopupFlags_": "imgui:894", + "ImGuiPopupPositionPolicy": "imgui_internal:777", + "ImGuiPtrOrIndex": "imgui_internal:975", + "ImGuiSelectableFlagsPrivate_": "imgui_internal:644", + "ImGuiSelectableFlags_": "imgui:910", + "ImGuiSeparatorFlags_": "imgui_internal:662", + "ImGuiSettingsHandler": "imgui_internal:1087", + "ImGuiShrinkWidthItem": "imgui_internal:969", + "ImGuiSizeCallbackData": "imgui:1687", + "ImGuiSliderFlagsPrivate_": "imgui_internal:637", + "ImGuiSliderFlags_": "imgui:1302", + "ImGuiStorage": "imgui:1845", + "ImGuiStoragePair": "imgui:1848", + "ImGuiStyle": "imgui:1454", + "ImGuiStyleMod": "imgui_internal:814", + "ImGuiStyleVar_": "imgui:1207", + "ImGuiTabBar": "imgui_internal:1727", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:1694", + "ImGuiTabBarFlags_": "imgui:935", + "ImGuiTabItem": "imgui_internal:1709", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:1702", + "ImGuiTabItemFlags_": "imgui:951", + "ImGuiTextBuffer": "imgui:1818", + "ImGuiTextFilter": "imgui:1791", + "ImGuiTextFlags_": "imgui_internal:670", + "ImGuiTextRange": "imgui:1801", + "ImGuiTooltipFlags_": "imgui_internal:676", + "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:657", + "ImGuiTreeNodeFlags_": "imgui:865", + "ImGuiWindow": "imgui_internal:1567", + "ImGuiWindowFlags_": "imgui:795", + "ImGuiWindowSettings": "imgui_internal:1075", + "ImGuiWindowTempData": "imgui_internal:1477", + "ImRect": "imgui_internal:417", + "ImVec1": "imgui_internal:399", "ImVec2": "imgui:211", - "ImVec2ih": "imgui_internal:405", + "ImVec2ih": "imgui_internal:407", "ImVec4": "imgui:224", - "STB_TexteditState": "imstb_textedit:319", - "StbTexteditRow": "imstb_textedit:362", - "StbUndoRecord": "imstb_textedit:301", - "StbUndoState": "imstb_textedit:310" + "STB_TexteditState": "imstb_textedit:317", + "StbTexteditRow": "imstb_textedit:364", + "StbUndoRecord": "imstb_textedit:299", + "StbUndoState": "imstb_textedit:308" }, "structs": { "ImBitVector": [ @@ -2989,10 +3024,6 @@ "name": "FallbackGlyph", "type": "const ImFontGlyph*" }, - { - "name": "DisplayOffset", - "type": "ImVec2" - }, { "name": "ContainerAtlas", "type": "ImFontAtlas*" @@ -3762,10 +3793,6 @@ "name": "NavInitResultRectRel", "type": "ImRect" }, - { - "name": "NavMoveFromClampedRefRect", - "type": "bool" - }, { "name": "NavMoveRequest", "type": "bool" @@ -4062,6 +4089,10 @@ "name": "PlatformImeLastPos", "type": "ImVec2" }, + { + "name": "PlatformLocaleDecimalPoint", + "type": "char" + }, { "name": "SettingsLoaded", "type": "bool" @@ -4164,6 +4195,10 @@ "name": "Size", "type": "size_t" }, + { + "name": "Name", + "type": "const char*" + }, { "name": "PrintFmt", "type": "const char*" @@ -4666,6 +4701,10 @@ "name": "SelectedAllMouseLock", "type": "bool" }, + { + "name": "Edited", + "type": "bool" + }, { "name": "UserFlags", "type": "ImGuiInputTextFlags" @@ -5131,7 +5170,7 @@ "type": "float" }, { - "name": "TabMinWidthForUnselectedCloseButton", + "name": "TabMinWidthForCloseButton", "type": "float" }, { @@ -5233,15 +5272,11 @@ "type": "float" }, { - "name": "OffsetMax", + "name": "WidthAllTabs", "type": "float" }, { - "name": "OffsetMaxIdeal", - "type": "float" - }, - { - "name": "OffsetNextTab", + "name": "WidthAllTabsIdeal", "type": "float" }, { @@ -5260,6 +5295,14 @@ "name": "ScrollingSpeed", "type": "float" }, + { + "name": "ScrollingRectMinX", + "type": "float" + }, + { + "name": "ScrollingRectMaxX", + "type": "float" + }, { "name": "Flags", "type": "ImGuiTabBarFlags" @@ -5272,6 +5315,10 @@ "name": "ReorderRequestDir", "type": "ImS8" }, + { + "name": "TabsActiveCount", + "type": "ImS8" + }, { "name": "WantLayout", "type": "bool" @@ -5280,6 +5327,10 @@ "name": "VisibleTabWasSubmitted", "type": "bool" }, + { + "name": "TabsAddedNew", + "type": "bool" + }, { "name": "LastTabItemIdx", "type": "short" @@ -5326,6 +5377,14 @@ "name": "NameOffset", "type": "ImS16" }, + { + "name": "BeginOrder", + "type": "ImS8" + }, + { + "name": "IndexDuringLayout", + "type": "ImS8" + }, { "name": "WantClose", "type": "bool" @@ -5437,6 +5496,10 @@ "name": "ScrollTargetCenterRatio", "type": "ImVec2" }, + { + "name": "ScrollTargetEdgeSnapDist", + "type": "ImVec2" + }, { "name": "ScrollbarSizes", "type": "ImVec2" @@ -5769,10 +5832,6 @@ "name": "NavLayerCurrent", "type": "ImGuiNavLayer" }, - { - "name": "NavLayerCurrentMask", - "type": "int" - }, { "name": "NavLayerActiveMask", "type": "int" @@ -5951,6 +6010,10 @@ "name": "insert_mode", "type": "unsigned char" }, + { + "name": "row_count_per_page", + "type": "int" + }, { "name": "cursor_at_end_of_line", "type": "unsigned char" diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index b40fcca..41b0e2b 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -967,13 +967,17 @@ defs["enums"]["ImGuiInputTextFlags_"][20]["calc_value"] = 262144 defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackResize" defs["enums"]["ImGuiInputTextFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiInputTextFlags_"][21] = {} -defs["enums"]["ImGuiInputTextFlags_"][21]["calc_value"] = 1048576 -defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_Multiline" -defs["enums"]["ImGuiInputTextFlags_"][21]["value"] = "1 << 20" +defs["enums"]["ImGuiInputTextFlags_"][21]["calc_value"] = 524288 +defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][21]["value"] = "1 << 19" defs["enums"]["ImGuiInputTextFlags_"][22] = {} -defs["enums"]["ImGuiInputTextFlags_"][22]["calc_value"] = 2097152 -defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_NoMarkEdited" -defs["enums"]["ImGuiInputTextFlags_"][22]["value"] = "1 << 21" +defs["enums"]["ImGuiInputTextFlags_"][22]["calc_value"] = 1048576 +defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_Multiline" +defs["enums"]["ImGuiInputTextFlags_"][22]["value"] = "1 << 20" +defs["enums"]["ImGuiInputTextFlags_"][23] = {} +defs["enums"]["ImGuiInputTextFlags_"][23]["calc_value"] = 2097152 +defs["enums"]["ImGuiInputTextFlags_"][23]["name"] = "ImGuiInputTextFlags_NoMarkEdited" +defs["enums"]["ImGuiInputTextFlags_"][23]["value"] = "1 << 21" defs["enums"]["ImGuiItemFlags_"] = {} defs["enums"]["ImGuiItemFlags_"][1] = {} defs["enums"]["ImGuiItemFlags_"][1]["calc_value"] = 0 @@ -1557,6 +1561,10 @@ defs["enums"]["ImGuiPopupPositionPolicy"][2] = {} defs["enums"]["ImGuiPopupPositionPolicy"][2]["calc_value"] = 1 defs["enums"]["ImGuiPopupPositionPolicy"][2]["name"] = "ImGuiPopupPositionPolicy_ComboBox" defs["enums"]["ImGuiPopupPositionPolicy"][2]["value"] = "1" +defs["enums"]["ImGuiPopupPositionPolicy"][3] = {} +defs["enums"]["ImGuiPopupPositionPolicy"][3]["calc_value"] = 2 +defs["enums"]["ImGuiPopupPositionPolicy"][3]["name"] = "ImGuiPopupPositionPolicy_Tooltip" +defs["enums"]["ImGuiPopupPositionPolicy"][3]["value"] = "2" defs["enums"]["ImGuiSelectableFlagsPrivate_"] = {} defs["enums"]["ImGuiSelectableFlagsPrivate_"][1] = {} defs["enums"]["ImGuiSelectableFlagsPrivate_"][1]["calc_value"] = 1048576 @@ -1582,6 +1590,10 @@ defs["enums"]["ImGuiSelectableFlagsPrivate_"][6] = {} defs["enums"]["ImGuiSelectableFlagsPrivate_"][6]["calc_value"] = 33554432 defs["enums"]["ImGuiSelectableFlagsPrivate_"][6]["name"] = "ImGuiSelectableFlags_SetNavIdOnHover" defs["enums"]["ImGuiSelectableFlagsPrivate_"][6]["value"] = "1 << 25" +defs["enums"]["ImGuiSelectableFlagsPrivate_"][7] = {} +defs["enums"]["ImGuiSelectableFlagsPrivate_"][7]["calc_value"] = 67108864 +defs["enums"]["ImGuiSelectableFlagsPrivate_"][7]["name"] = "ImGuiSelectableFlags_NoPadWithHalfSpacing" +defs["enums"]["ImGuiSelectableFlagsPrivate_"][7]["value"] = "1 << 26" defs["enums"]["ImGuiSelectableFlags_"] = {} defs["enums"]["ImGuiSelectableFlags_"][1] = {} defs["enums"]["ImGuiSelectableFlags_"][1]["calc_value"] = 0 @@ -1640,7 +1652,7 @@ defs["enums"]["ImGuiSliderFlags_"][1]["name"] = "ImGuiSliderFlags_None" defs["enums"]["ImGuiSliderFlags_"][1]["value"] = "0" defs["enums"]["ImGuiSliderFlags_"][2] = {} defs["enums"]["ImGuiSliderFlags_"][2]["calc_value"] = 16 -defs["enums"]["ImGuiSliderFlags_"][2]["name"] = "ImGuiSliderFlags_ClampOnInput" +defs["enums"]["ImGuiSliderFlags_"][2]["name"] = "ImGuiSliderFlags_AlwaysClamp" defs["enums"]["ImGuiSliderFlags_"][2]["value"] = "1 << 4" defs["enums"]["ImGuiSliderFlags_"][3] = {} defs["enums"]["ImGuiSliderFlags_"][3]["calc_value"] = 32 @@ -1818,6 +1830,10 @@ defs["enums"]["ImGuiTabItemFlagsPrivate_"][1] = {} defs["enums"]["ImGuiTabItemFlagsPrivate_"][1]["calc_value"] = 1048576 defs["enums"]["ImGuiTabItemFlagsPrivate_"][1]["name"] = "ImGuiTabItemFlags_NoCloseButton" defs["enums"]["ImGuiTabItemFlagsPrivate_"][1]["value"] = "1 << 20" +defs["enums"]["ImGuiTabItemFlagsPrivate_"][2] = {} +defs["enums"]["ImGuiTabItemFlagsPrivate_"][2]["calc_value"] = 2097152 +defs["enums"]["ImGuiTabItemFlagsPrivate_"][2]["name"] = "ImGuiTabItemFlags_Button" +defs["enums"]["ImGuiTabItemFlagsPrivate_"][2]["value"] = "1 << 21" defs["enums"]["ImGuiTabItemFlags_"] = {} defs["enums"]["ImGuiTabItemFlags_"][1] = {} defs["enums"]["ImGuiTabItemFlags_"][1]["calc_value"] = 0 @@ -1843,6 +1859,18 @@ defs["enums"]["ImGuiTabItemFlags_"][6] = {} defs["enums"]["ImGuiTabItemFlags_"][6]["calc_value"] = 16 defs["enums"]["ImGuiTabItemFlags_"][6]["name"] = "ImGuiTabItemFlags_NoTooltip" defs["enums"]["ImGuiTabItemFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiTabItemFlags_"][7] = {} +defs["enums"]["ImGuiTabItemFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiTabItemFlags_"][7]["name"] = "ImGuiTabItemFlags_NoReorder" +defs["enums"]["ImGuiTabItemFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiTabItemFlags_"][8] = {} +defs["enums"]["ImGuiTabItemFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiTabItemFlags_"][8]["name"] = "ImGuiTabItemFlags_Leading" +defs["enums"]["ImGuiTabItemFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiTabItemFlags_"][9] = {} +defs["enums"]["ImGuiTabItemFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiTabItemFlags_"][9]["name"] = "ImGuiTabItemFlags_Trailing" +defs["enums"]["ImGuiTabItemFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiTextFlags_"] = {} defs["enums"]["ImGuiTextFlags_"][1] = {} defs["enums"]["ImGuiTextFlags_"][1]["calc_value"] = 0 @@ -2053,122 +2081,122 @@ defs["enums"]["ImGuiWindowFlags_"][30]["calc_value"] = 268435456 defs["enums"]["ImGuiWindowFlags_"][30]["name"] = "ImGuiWindowFlags_ChildMenu" defs["enums"]["ImGuiWindowFlags_"][30]["value"] = "1 << 28" defs["locations"] = {} -defs["locations"]["ImBitVector"] = "imgui_internal:468" -defs["locations"]["ImColor"] = "imgui:1927" -defs["locations"]["ImDrawChannel"] = "imgui:2013" -defs["locations"]["ImDrawCmd"] = "imgui:1976" -defs["locations"]["ImDrawCornerFlags_"] = "imgui:2036" -defs["locations"]["ImDrawData"] = "imgui:2183" -defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:561" -defs["locations"]["ImDrawList"] = "imgui:2069" -defs["locations"]["ImDrawListFlags_"] = "imgui:2052" -defs["locations"]["ImDrawListSharedData"] = "imgui_internal:542" -defs["locations"]["ImDrawListSplitter"] = "imgui:2021" -defs["locations"]["ImDrawVert"] = "imgui:1998" -defs["locations"]["ImFont"] = "imgui:2394" -defs["locations"]["ImFontAtlas"] = "imgui:2299" -defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2261" -defs["locations"]["ImFontAtlasFlags_"] = "imgui:2274" -defs["locations"]["ImFontConfig"] = "imgui:2206" -defs["locations"]["ImFontGlyph"] = "imgui:2235" -defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2246" -defs["locations"]["ImGuiAxis"] = "imgui_internal:697" -defs["locations"]["ImGuiBackendFlags_"] = "imgui:1124" -defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:612" -defs["locations"]["ImGuiButtonFlags_"] = "imgui:1235" -defs["locations"]["ImGuiCol_"] = "imgui:1134" -defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1248" -defs["locations"]["ImGuiColorMod"] = "imgui_internal:802" -defs["locations"]["ImGuiColumnData"] = "imgui_internal:993" -defs["locations"]["ImGuiColumns"] = "imgui_internal:1003" -defs["locations"]["ImGuiColumnsFlags_"] = "imgui_internal:982" -defs["locations"]["ImGuiComboFlags_"] = "imgui:917" -defs["locations"]["ImGuiCond_"] = "imgui:1340" -defs["locations"]["ImGuiConfigFlags_"] = "imgui:1108" -defs["locations"]["ImGuiContext"] = "imgui_internal:1100" -defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:786" -defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:794" -defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:780" -defs["locations"]["ImGuiDataType_"] = "imgui:1008" -defs["locations"]["ImGuiDir_"] = "imgui:1024" -defs["locations"]["ImGuiDragDropFlags_"] = "imgui:986" -defs["locations"]["ImGuiFocusedFlags_"] = "imgui:958" -defs["locations"]["ImGuiGroupData"] = "imgui_internal:819" -defs["locations"]["ImGuiHoveredFlags_"] = "imgui:970" -defs["locations"]["ImGuiIO"] = "imgui:1493" -defs["locations"]["ImGuiInputReadMode"] = "imgui_internal:721" -defs["locations"]["ImGuiInputSource"] = "imgui_internal:710" -defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:1642" -defs["locations"]["ImGuiInputTextFlags_"] = "imgui:835" -defs["locations"]["ImGuiInputTextState"] = "imgui_internal:847" -defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:576" -defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:591" -defs["locations"]["ImGuiKeyModFlags_"] = "imgui:1063" -defs["locations"]["ImGuiKey_"] = "imgui:1035" -defs["locations"]["ImGuiLastItemDataBackup"] = "imgui_internal:1672" -defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:681" -defs["locations"]["ImGuiListClipper"] = "imgui:1883" -defs["locations"]["ImGuiLogType"] = "imgui_internal:687" -defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:833" -defs["locations"]["ImGuiMouseButton_"] = "imgui:1307" -defs["locations"]["ImGuiMouseCursor_"] = "imgui:1317" -defs["locations"]["ImGuiNavDirSourceFlags_"] = "imgui_internal:740" -defs["locations"]["ImGuiNavForward"] = "imgui_internal:760" -defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:731" -defs["locations"]["ImGuiNavInput_"] = "imgui:1076" -defs["locations"]["ImGuiNavLayer"] = "imgui_internal:767" -defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:748" -defs["locations"]["ImGuiNavMoveResult"] = "imgui_internal:894" -defs["locations"]["ImGuiNextItemData"] = "imgui_internal:951" -defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:944" -defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:922" -defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:908" -defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:1765" -defs["locations"]["ImGuiPayload"] = "imgui:1680" -defs["locations"]["ImGuiPlotType"] = "imgui_internal:704" -defs["locations"]["ImGuiPopupData"] = "imgui_internal:881" -defs["locations"]["ImGuiPopupFlags_"] = "imgui:890" -defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:774" -defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:969" -defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:642" -defs["locations"]["ImGuiSelectableFlags_"] = "imgui:906" -defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:659" -defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1081" -defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:963" -defs["locations"]["ImGuiSizeCallbackData"] = "imgui:1671" -defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:635" -defs["locations"]["ImGuiSliderFlags_"] = "imgui:1295" -defs["locations"]["ImGuiStorage"] = "imgui:1827" -defs["locations"]["ImGuiStoragePair"] = "imgui:1830" -defs["locations"]["ImGuiStyle"] = "imgui:1441" -defs["locations"]["ImGuiStyleMod"] = "imgui_internal:809" -defs["locations"]["ImGuiStyleVar_"] = "imgui:1200" -defs["locations"]["ImGuiTabBar"] = "imgui_internal:1719" -defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:1689" -defs["locations"]["ImGuiTabBarFlags_"] = "imgui:931" -defs["locations"]["ImGuiTabItem"] = "imgui_internal:1703" -defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:1697" -defs["locations"]["ImGuiTabItemFlags_"] = "imgui:947" -defs["locations"]["ImGuiTextBuffer"] = "imgui:1800" -defs["locations"]["ImGuiTextFilter"] = "imgui:1773" -defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:667" -defs["locations"]["ImGuiTextRange"] = "imgui:1783" -defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:673" -defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:654" -defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:863" -defs["locations"]["ImGuiWindow"] = "imgui_internal:1563" -defs["locations"]["ImGuiWindowFlags_"] = "imgui:794" -defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1069" -defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:1471" -defs["locations"]["ImRect"] = "imgui_internal:415" -defs["locations"]["ImVec1"] = "imgui_internal:397" +defs["locations"]["ImBitVector"] = "imgui_internal:470" +defs["locations"]["ImColor"] = "imgui:1953" +defs["locations"]["ImDrawChannel"] = "imgui:2039" +defs["locations"]["ImDrawCmd"] = "imgui:2002" +defs["locations"]["ImDrawCornerFlags_"] = "imgui:2062" +defs["locations"]["ImDrawData"] = "imgui:2209" +defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:563" +defs["locations"]["ImDrawList"] = "imgui:2095" +defs["locations"]["ImDrawListFlags_"] = "imgui:2078" +defs["locations"]["ImDrawListSharedData"] = "imgui_internal:544" +defs["locations"]["ImDrawListSplitter"] = "imgui:2047" +defs["locations"]["ImDrawVert"] = "imgui:2024" +defs["locations"]["ImFont"] = "imgui:2420" +defs["locations"]["ImFontAtlas"] = "imgui:2325" +defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2287" +defs["locations"]["ImFontAtlasFlags_"] = "imgui:2300" +defs["locations"]["ImFontConfig"] = "imgui:2232" +defs["locations"]["ImFontGlyph"] = "imgui:2261" +defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2272" +defs["locations"]["ImGuiAxis"] = "imgui_internal:700" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1131" +defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:614" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1242" +defs["locations"]["ImGuiCol_"] = "imgui:1141" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1255" +defs["locations"]["ImGuiColorMod"] = "imgui_internal:807" +defs["locations"]["ImGuiColumnData"] = "imgui_internal:999" +defs["locations"]["ImGuiColumns"] = "imgui_internal:1009" +defs["locations"]["ImGuiColumnsFlags_"] = "imgui_internal:988" +defs["locations"]["ImGuiComboFlags_"] = "imgui:921" +defs["locations"]["ImGuiCond_"] = "imgui:1352" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1115" +defs["locations"]["ImGuiContext"] = "imgui_internal:1106" +defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:790" +defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:799" +defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:784" +defs["locations"]["ImGuiDataType_"] = "imgui:1015" +defs["locations"]["ImGuiDir_"] = "imgui:1031" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:993" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:965" +defs["locations"]["ImGuiGroupData"] = "imgui_internal:824" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:977" +defs["locations"]["ImGuiIO"] = "imgui:1506" +defs["locations"]["ImGuiInputReadMode"] = "imgui_internal:724" +defs["locations"]["ImGuiInputSource"] = "imgui_internal:713" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:1656" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:836" +defs["locations"]["ImGuiInputTextState"] = "imgui_internal:852" +defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:578" +defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:593" +defs["locations"]["ImGuiKeyModFlags_"] = "imgui:1070" +defs["locations"]["ImGuiKey_"] = "imgui:1042" +defs["locations"]["ImGuiLastItemDataBackup"] = "imgui_internal:1677" +defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:684" +defs["locations"]["ImGuiListClipper"] = "imgui:1905" +defs["locations"]["ImGuiLogType"] = "imgui_internal:690" +defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:838" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1319" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1329" +defs["locations"]["ImGuiNavDirSourceFlags_"] = "imgui_internal:743" +defs["locations"]["ImGuiNavForward"] = "imgui_internal:763" +defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:734" +defs["locations"]["ImGuiNavInput_"] = "imgui:1083" +defs["locations"]["ImGuiNavLayer"] = "imgui_internal:770" +defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:751" +defs["locations"]["ImGuiNavMoveResult"] = "imgui_internal:900" +defs["locations"]["ImGuiNextItemData"] = "imgui_internal:957" +defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:950" +defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:928" +defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:914" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:1783" +defs["locations"]["ImGuiPayload"] = "imgui:1696" +defs["locations"]["ImGuiPlotType"] = "imgui_internal:707" +defs["locations"]["ImGuiPopupData"] = "imgui_internal:887" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:894" +defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:777" +defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:975" +defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:644" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:910" +defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:662" +defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1087" +defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:969" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:1687" +defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:637" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1302" +defs["locations"]["ImGuiStorage"] = "imgui:1845" +defs["locations"]["ImGuiStoragePair"] = "imgui:1848" +defs["locations"]["ImGuiStyle"] = "imgui:1454" +defs["locations"]["ImGuiStyleMod"] = "imgui_internal:814" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1207" +defs["locations"]["ImGuiTabBar"] = "imgui_internal:1727" +defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:1694" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:935" +defs["locations"]["ImGuiTabItem"] = "imgui_internal:1709" +defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:1702" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:951" +defs["locations"]["ImGuiTextBuffer"] = "imgui:1818" +defs["locations"]["ImGuiTextFilter"] = "imgui:1791" +defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:670" +defs["locations"]["ImGuiTextRange"] = "imgui:1801" +defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:676" +defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:657" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:865" +defs["locations"]["ImGuiWindow"] = "imgui_internal:1567" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:795" +defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1075" +defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:1477" +defs["locations"]["ImRect"] = "imgui_internal:417" +defs["locations"]["ImVec1"] = "imgui_internal:399" defs["locations"]["ImVec2"] = "imgui:211" -defs["locations"]["ImVec2ih"] = "imgui_internal:405" +defs["locations"]["ImVec2ih"] = "imgui_internal:407" defs["locations"]["ImVec4"] = "imgui:224" -defs["locations"]["STB_TexteditState"] = "imstb_textedit:319" -defs["locations"]["StbTexteditRow"] = "imstb_textedit:362" -defs["locations"]["StbUndoRecord"] = "imstb_textedit:301" -defs["locations"]["StbUndoState"] = "imstb_textedit:310" +defs["locations"]["STB_TexteditState"] = "imstb_textedit:317" +defs["locations"]["StbTexteditRow"] = "imstb_textedit:364" +defs["locations"]["StbUndoRecord"] = "imstb_textedit:299" +defs["locations"]["StbUndoState"] = "imstb_textedit:308" defs["structs"] = {} defs["structs"]["ImBitVector"] = {} defs["structs"]["ImBitVector"][1] = {} @@ -2367,42 +2395,39 @@ defs["structs"]["ImFont"][6] = {} defs["structs"]["ImFont"][6]["name"] = "FallbackGlyph" defs["structs"]["ImFont"][6]["type"] = "const ImFontGlyph*" defs["structs"]["ImFont"][7] = {} -defs["structs"]["ImFont"][7]["name"] = "DisplayOffset" -defs["structs"]["ImFont"][7]["type"] = "ImVec2" +defs["structs"]["ImFont"][7]["name"] = "ContainerAtlas" +defs["structs"]["ImFont"][7]["type"] = "ImFontAtlas*" defs["structs"]["ImFont"][8] = {} -defs["structs"]["ImFont"][8]["name"] = "ContainerAtlas" -defs["structs"]["ImFont"][8]["type"] = "ImFontAtlas*" +defs["structs"]["ImFont"][8]["name"] = "ConfigData" +defs["structs"]["ImFont"][8]["type"] = "const ImFontConfig*" defs["structs"]["ImFont"][9] = {} -defs["structs"]["ImFont"][9]["name"] = "ConfigData" -defs["structs"]["ImFont"][9]["type"] = "const ImFontConfig*" +defs["structs"]["ImFont"][9]["name"] = "ConfigDataCount" +defs["structs"]["ImFont"][9]["type"] = "short" defs["structs"]["ImFont"][10] = {} -defs["structs"]["ImFont"][10]["name"] = "ConfigDataCount" -defs["structs"]["ImFont"][10]["type"] = "short" +defs["structs"]["ImFont"][10]["name"] = "FallbackChar" +defs["structs"]["ImFont"][10]["type"] = "ImWchar" defs["structs"]["ImFont"][11] = {} -defs["structs"]["ImFont"][11]["name"] = "FallbackChar" +defs["structs"]["ImFont"][11]["name"] = "EllipsisChar" defs["structs"]["ImFont"][11]["type"] = "ImWchar" defs["structs"]["ImFont"][12] = {} -defs["structs"]["ImFont"][12]["name"] = "EllipsisChar" -defs["structs"]["ImFont"][12]["type"] = "ImWchar" +defs["structs"]["ImFont"][12]["name"] = "DirtyLookupTables" +defs["structs"]["ImFont"][12]["type"] = "bool" defs["structs"]["ImFont"][13] = {} -defs["structs"]["ImFont"][13]["name"] = "DirtyLookupTables" -defs["structs"]["ImFont"][13]["type"] = "bool" +defs["structs"]["ImFont"][13]["name"] = "Scale" +defs["structs"]["ImFont"][13]["type"] = "float" defs["structs"]["ImFont"][14] = {} -defs["structs"]["ImFont"][14]["name"] = "Scale" +defs["structs"]["ImFont"][14]["name"] = "Ascent" defs["structs"]["ImFont"][14]["type"] = "float" defs["structs"]["ImFont"][15] = {} -defs["structs"]["ImFont"][15]["name"] = "Ascent" +defs["structs"]["ImFont"][15]["name"] = "Descent" defs["structs"]["ImFont"][15]["type"] = "float" defs["structs"]["ImFont"][16] = {} -defs["structs"]["ImFont"][16]["name"] = "Descent" -defs["structs"]["ImFont"][16]["type"] = "float" +defs["structs"]["ImFont"][16]["name"] = "MetricsTotalSurface" +defs["structs"]["ImFont"][16]["type"] = "int" defs["structs"]["ImFont"][17] = {} -defs["structs"]["ImFont"][17]["name"] = "MetricsTotalSurface" -defs["structs"]["ImFont"][17]["type"] = "int" -defs["structs"]["ImFont"][18] = {} -defs["structs"]["ImFont"][18]["name"] = "Used4kPagesMap[(0xFFFF+1)/4096/8]" -defs["structs"]["ImFont"][18]["size"] = 2 -defs["structs"]["ImFont"][18]["type"] = "ImU8" +defs["structs"]["ImFont"][17]["name"] = "Used4kPagesMap[(0xFFFF+1)/4096/8]" +defs["structs"]["ImFont"][17]["size"] = 2 +defs["structs"]["ImFont"][17]["type"] = "ImU8" defs["structs"]["ImFontAtlas"] = {} defs["structs"]["ImFontAtlas"][1] = {} defs["structs"]["ImFontAtlas"][1]["name"] = "Locked" @@ -2947,232 +2972,232 @@ defs["structs"]["ImGuiContext"][93] = {} defs["structs"]["ImGuiContext"][93]["name"] = "NavInitResultRectRel" defs["structs"]["ImGuiContext"][93]["type"] = "ImRect" defs["structs"]["ImGuiContext"][94] = {} -defs["structs"]["ImGuiContext"][94]["name"] = "NavMoveFromClampedRefRect" +defs["structs"]["ImGuiContext"][94]["name"] = "NavMoveRequest" defs["structs"]["ImGuiContext"][94]["type"] = "bool" defs["structs"]["ImGuiContext"][95] = {} -defs["structs"]["ImGuiContext"][95]["name"] = "NavMoveRequest" -defs["structs"]["ImGuiContext"][95]["type"] = "bool" +defs["structs"]["ImGuiContext"][95]["name"] = "NavMoveRequestFlags" +defs["structs"]["ImGuiContext"][95]["type"] = "ImGuiNavMoveFlags" defs["structs"]["ImGuiContext"][96] = {} -defs["structs"]["ImGuiContext"][96]["name"] = "NavMoveRequestFlags" -defs["structs"]["ImGuiContext"][96]["type"] = "ImGuiNavMoveFlags" +defs["structs"]["ImGuiContext"][96]["name"] = "NavMoveRequestForward" +defs["structs"]["ImGuiContext"][96]["type"] = "ImGuiNavForward" defs["structs"]["ImGuiContext"][97] = {} -defs["structs"]["ImGuiContext"][97]["name"] = "NavMoveRequestForward" -defs["structs"]["ImGuiContext"][97]["type"] = "ImGuiNavForward" +defs["structs"]["ImGuiContext"][97]["name"] = "NavMoveRequestKeyMods" +defs["structs"]["ImGuiContext"][97]["type"] = "ImGuiKeyModFlags" defs["structs"]["ImGuiContext"][98] = {} -defs["structs"]["ImGuiContext"][98]["name"] = "NavMoveRequestKeyMods" -defs["structs"]["ImGuiContext"][98]["type"] = "ImGuiKeyModFlags" +defs["structs"]["ImGuiContext"][98]["name"] = "NavMoveDir" +defs["structs"]["ImGuiContext"][98]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][99] = {} -defs["structs"]["ImGuiContext"][99]["name"] = "NavMoveDir" +defs["structs"]["ImGuiContext"][99]["name"] = "NavMoveDirLast" defs["structs"]["ImGuiContext"][99]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][100] = {} -defs["structs"]["ImGuiContext"][100]["name"] = "NavMoveDirLast" +defs["structs"]["ImGuiContext"][100]["name"] = "NavMoveClipDir" defs["structs"]["ImGuiContext"][100]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][101] = {} -defs["structs"]["ImGuiContext"][101]["name"] = "NavMoveClipDir" -defs["structs"]["ImGuiContext"][101]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][101]["name"] = "NavMoveResultLocal" +defs["structs"]["ImGuiContext"][101]["type"] = "ImGuiNavMoveResult" defs["structs"]["ImGuiContext"][102] = {} -defs["structs"]["ImGuiContext"][102]["name"] = "NavMoveResultLocal" +defs["structs"]["ImGuiContext"][102]["name"] = "NavMoveResultLocalVisibleSet" defs["structs"]["ImGuiContext"][102]["type"] = "ImGuiNavMoveResult" defs["structs"]["ImGuiContext"][103] = {} -defs["structs"]["ImGuiContext"][103]["name"] = "NavMoveResultLocalVisibleSet" +defs["structs"]["ImGuiContext"][103]["name"] = "NavMoveResultOther" defs["structs"]["ImGuiContext"][103]["type"] = "ImGuiNavMoveResult" defs["structs"]["ImGuiContext"][104] = {} -defs["structs"]["ImGuiContext"][104]["name"] = "NavMoveResultOther" -defs["structs"]["ImGuiContext"][104]["type"] = "ImGuiNavMoveResult" +defs["structs"]["ImGuiContext"][104]["name"] = "NavWrapRequestWindow" +defs["structs"]["ImGuiContext"][104]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][105] = {} -defs["structs"]["ImGuiContext"][105]["name"] = "NavWrapRequestWindow" -defs["structs"]["ImGuiContext"][105]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][105]["name"] = "NavWrapRequestFlags" +defs["structs"]["ImGuiContext"][105]["type"] = "ImGuiNavMoveFlags" defs["structs"]["ImGuiContext"][106] = {} -defs["structs"]["ImGuiContext"][106]["name"] = "NavWrapRequestFlags" -defs["structs"]["ImGuiContext"][106]["type"] = "ImGuiNavMoveFlags" +defs["structs"]["ImGuiContext"][106]["name"] = "NavWindowingTarget" +defs["structs"]["ImGuiContext"][106]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][107] = {} -defs["structs"]["ImGuiContext"][107]["name"] = "NavWindowingTarget" +defs["structs"]["ImGuiContext"][107]["name"] = "NavWindowingTargetAnim" defs["structs"]["ImGuiContext"][107]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][108] = {} -defs["structs"]["ImGuiContext"][108]["name"] = "NavWindowingTargetAnim" +defs["structs"]["ImGuiContext"][108]["name"] = "NavWindowingListWindow" defs["structs"]["ImGuiContext"][108]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][109] = {} -defs["structs"]["ImGuiContext"][109]["name"] = "NavWindowingListWindow" -defs["structs"]["ImGuiContext"][109]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][109]["name"] = "NavWindowingTimer" +defs["structs"]["ImGuiContext"][109]["type"] = "float" defs["structs"]["ImGuiContext"][110] = {} -defs["structs"]["ImGuiContext"][110]["name"] = "NavWindowingTimer" +defs["structs"]["ImGuiContext"][110]["name"] = "NavWindowingHighlightAlpha" defs["structs"]["ImGuiContext"][110]["type"] = "float" defs["structs"]["ImGuiContext"][111] = {} -defs["structs"]["ImGuiContext"][111]["name"] = "NavWindowingHighlightAlpha" -defs["structs"]["ImGuiContext"][111]["type"] = "float" +defs["structs"]["ImGuiContext"][111]["name"] = "NavWindowingToggleLayer" +defs["structs"]["ImGuiContext"][111]["type"] = "bool" defs["structs"]["ImGuiContext"][112] = {} -defs["structs"]["ImGuiContext"][112]["name"] = "NavWindowingToggleLayer" -defs["structs"]["ImGuiContext"][112]["type"] = "bool" +defs["structs"]["ImGuiContext"][112]["name"] = "FocusRequestCurrWindow" +defs["structs"]["ImGuiContext"][112]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][113] = {} -defs["structs"]["ImGuiContext"][113]["name"] = "FocusRequestCurrWindow" +defs["structs"]["ImGuiContext"][113]["name"] = "FocusRequestNextWindow" defs["structs"]["ImGuiContext"][113]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][114] = {} -defs["structs"]["ImGuiContext"][114]["name"] = "FocusRequestNextWindow" -defs["structs"]["ImGuiContext"][114]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][114]["name"] = "FocusRequestCurrCounterRegular" +defs["structs"]["ImGuiContext"][114]["type"] = "int" defs["structs"]["ImGuiContext"][115] = {} -defs["structs"]["ImGuiContext"][115]["name"] = "FocusRequestCurrCounterRegular" +defs["structs"]["ImGuiContext"][115]["name"] = "FocusRequestCurrCounterTabStop" defs["structs"]["ImGuiContext"][115]["type"] = "int" defs["structs"]["ImGuiContext"][116] = {} -defs["structs"]["ImGuiContext"][116]["name"] = "FocusRequestCurrCounterTabStop" +defs["structs"]["ImGuiContext"][116]["name"] = "FocusRequestNextCounterRegular" defs["structs"]["ImGuiContext"][116]["type"] = "int" defs["structs"]["ImGuiContext"][117] = {} -defs["structs"]["ImGuiContext"][117]["name"] = "FocusRequestNextCounterRegular" +defs["structs"]["ImGuiContext"][117]["name"] = "FocusRequestNextCounterTabStop" defs["structs"]["ImGuiContext"][117]["type"] = "int" defs["structs"]["ImGuiContext"][118] = {} -defs["structs"]["ImGuiContext"][118]["name"] = "FocusRequestNextCounterTabStop" -defs["structs"]["ImGuiContext"][118]["type"] = "int" +defs["structs"]["ImGuiContext"][118]["name"] = "FocusTabPressed" +defs["structs"]["ImGuiContext"][118]["type"] = "bool" defs["structs"]["ImGuiContext"][119] = {} -defs["structs"]["ImGuiContext"][119]["name"] = "FocusTabPressed" -defs["structs"]["ImGuiContext"][119]["type"] = "bool" +defs["structs"]["ImGuiContext"][119]["name"] = "DrawData" +defs["structs"]["ImGuiContext"][119]["type"] = "ImDrawData" defs["structs"]["ImGuiContext"][120] = {} -defs["structs"]["ImGuiContext"][120]["name"] = "DrawData" -defs["structs"]["ImGuiContext"][120]["type"] = "ImDrawData" +defs["structs"]["ImGuiContext"][120]["name"] = "DrawDataBuilder" +defs["structs"]["ImGuiContext"][120]["type"] = "ImDrawDataBuilder" defs["structs"]["ImGuiContext"][121] = {} -defs["structs"]["ImGuiContext"][121]["name"] = "DrawDataBuilder" -defs["structs"]["ImGuiContext"][121]["type"] = "ImDrawDataBuilder" +defs["structs"]["ImGuiContext"][121]["name"] = "DimBgRatio" +defs["structs"]["ImGuiContext"][121]["type"] = "float" defs["structs"]["ImGuiContext"][122] = {} -defs["structs"]["ImGuiContext"][122]["name"] = "DimBgRatio" -defs["structs"]["ImGuiContext"][122]["type"] = "float" +defs["structs"]["ImGuiContext"][122]["name"] = "BackgroundDrawList" +defs["structs"]["ImGuiContext"][122]["type"] = "ImDrawList" defs["structs"]["ImGuiContext"][123] = {} -defs["structs"]["ImGuiContext"][123]["name"] = "BackgroundDrawList" +defs["structs"]["ImGuiContext"][123]["name"] = "ForegroundDrawList" defs["structs"]["ImGuiContext"][123]["type"] = "ImDrawList" defs["structs"]["ImGuiContext"][124] = {} -defs["structs"]["ImGuiContext"][124]["name"] = "ForegroundDrawList" -defs["structs"]["ImGuiContext"][124]["type"] = "ImDrawList" +defs["structs"]["ImGuiContext"][124]["name"] = "MouseCursor" +defs["structs"]["ImGuiContext"][124]["type"] = "ImGuiMouseCursor" defs["structs"]["ImGuiContext"][125] = {} -defs["structs"]["ImGuiContext"][125]["name"] = "MouseCursor" -defs["structs"]["ImGuiContext"][125]["type"] = "ImGuiMouseCursor" +defs["structs"]["ImGuiContext"][125]["name"] = "DragDropActive" +defs["structs"]["ImGuiContext"][125]["type"] = "bool" defs["structs"]["ImGuiContext"][126] = {} -defs["structs"]["ImGuiContext"][126]["name"] = "DragDropActive" +defs["structs"]["ImGuiContext"][126]["name"] = "DragDropWithinSource" defs["structs"]["ImGuiContext"][126]["type"] = "bool" defs["structs"]["ImGuiContext"][127] = {} -defs["structs"]["ImGuiContext"][127]["name"] = "DragDropWithinSource" +defs["structs"]["ImGuiContext"][127]["name"] = "DragDropWithinTarget" defs["structs"]["ImGuiContext"][127]["type"] = "bool" defs["structs"]["ImGuiContext"][128] = {} -defs["structs"]["ImGuiContext"][128]["name"] = "DragDropWithinTarget" -defs["structs"]["ImGuiContext"][128]["type"] = "bool" +defs["structs"]["ImGuiContext"][128]["name"] = "DragDropSourceFlags" +defs["structs"]["ImGuiContext"][128]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][129] = {} -defs["structs"]["ImGuiContext"][129]["name"] = "DragDropSourceFlags" -defs["structs"]["ImGuiContext"][129]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][129]["name"] = "DragDropSourceFrameCount" +defs["structs"]["ImGuiContext"][129]["type"] = "int" defs["structs"]["ImGuiContext"][130] = {} -defs["structs"]["ImGuiContext"][130]["name"] = "DragDropSourceFrameCount" +defs["structs"]["ImGuiContext"][130]["name"] = "DragDropMouseButton" defs["structs"]["ImGuiContext"][130]["type"] = "int" defs["structs"]["ImGuiContext"][131] = {} -defs["structs"]["ImGuiContext"][131]["name"] = "DragDropMouseButton" -defs["structs"]["ImGuiContext"][131]["type"] = "int" +defs["structs"]["ImGuiContext"][131]["name"] = "DragDropPayload" +defs["structs"]["ImGuiContext"][131]["type"] = "ImGuiPayload" defs["structs"]["ImGuiContext"][132] = {} -defs["structs"]["ImGuiContext"][132]["name"] = "DragDropPayload" -defs["structs"]["ImGuiContext"][132]["type"] = "ImGuiPayload" +defs["structs"]["ImGuiContext"][132]["name"] = "DragDropTargetRect" +defs["structs"]["ImGuiContext"][132]["type"] = "ImRect" defs["structs"]["ImGuiContext"][133] = {} -defs["structs"]["ImGuiContext"][133]["name"] = "DragDropTargetRect" -defs["structs"]["ImGuiContext"][133]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][133]["name"] = "DragDropTargetId" +defs["structs"]["ImGuiContext"][133]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][134] = {} -defs["structs"]["ImGuiContext"][134]["name"] = "DragDropTargetId" -defs["structs"]["ImGuiContext"][134]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][134]["name"] = "DragDropAcceptFlags" +defs["structs"]["ImGuiContext"][134]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][135] = {} -defs["structs"]["ImGuiContext"][135]["name"] = "DragDropAcceptFlags" -defs["structs"]["ImGuiContext"][135]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][135]["name"] = "DragDropAcceptIdCurrRectSurface" +defs["structs"]["ImGuiContext"][135]["type"] = "float" defs["structs"]["ImGuiContext"][136] = {} -defs["structs"]["ImGuiContext"][136]["name"] = "DragDropAcceptIdCurrRectSurface" -defs["structs"]["ImGuiContext"][136]["type"] = "float" +defs["structs"]["ImGuiContext"][136]["name"] = "DragDropAcceptIdCurr" +defs["structs"]["ImGuiContext"][136]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][137] = {} -defs["structs"]["ImGuiContext"][137]["name"] = "DragDropAcceptIdCurr" +defs["structs"]["ImGuiContext"][137]["name"] = "DragDropAcceptIdPrev" defs["structs"]["ImGuiContext"][137]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][138] = {} -defs["structs"]["ImGuiContext"][138]["name"] = "DragDropAcceptIdPrev" -defs["structs"]["ImGuiContext"][138]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][138]["name"] = "DragDropAcceptFrameCount" +defs["structs"]["ImGuiContext"][138]["type"] = "int" defs["structs"]["ImGuiContext"][139] = {} -defs["structs"]["ImGuiContext"][139]["name"] = "DragDropAcceptFrameCount" -defs["structs"]["ImGuiContext"][139]["type"] = "int" +defs["structs"]["ImGuiContext"][139]["name"] = "DragDropHoldJustPressedId" +defs["structs"]["ImGuiContext"][139]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][140] = {} -defs["structs"]["ImGuiContext"][140]["name"] = "DragDropHoldJustPressedId" -defs["structs"]["ImGuiContext"][140]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][140]["name"] = "DragDropPayloadBufHeap" +defs["structs"]["ImGuiContext"][140]["template_type"] = "unsigned char" +defs["structs"]["ImGuiContext"][140]["type"] = "ImVector_unsigned_char" defs["structs"]["ImGuiContext"][141] = {} -defs["structs"]["ImGuiContext"][141]["name"] = "DragDropPayloadBufHeap" -defs["structs"]["ImGuiContext"][141]["template_type"] = "unsigned char" -defs["structs"]["ImGuiContext"][141]["type"] = "ImVector_unsigned_char" +defs["structs"]["ImGuiContext"][141]["name"] = "DragDropPayloadBufLocal[16]" +defs["structs"]["ImGuiContext"][141]["size"] = 16 +defs["structs"]["ImGuiContext"][141]["type"] = "unsigned char" defs["structs"]["ImGuiContext"][142] = {} -defs["structs"]["ImGuiContext"][142]["name"] = "DragDropPayloadBufLocal[16]" -defs["structs"]["ImGuiContext"][142]["size"] = 16 -defs["structs"]["ImGuiContext"][142]["type"] = "unsigned char" +defs["structs"]["ImGuiContext"][142]["name"] = "CurrentTabBar" +defs["structs"]["ImGuiContext"][142]["type"] = "ImGuiTabBar*" defs["structs"]["ImGuiContext"][143] = {} -defs["structs"]["ImGuiContext"][143]["name"] = "CurrentTabBar" -defs["structs"]["ImGuiContext"][143]["type"] = "ImGuiTabBar*" +defs["structs"]["ImGuiContext"][143]["name"] = "TabBars" +defs["structs"]["ImGuiContext"][143]["template_type"] = "ImGuiTabBar" +defs["structs"]["ImGuiContext"][143]["type"] = "ImPool_ImGuiTabBar" defs["structs"]["ImGuiContext"][144] = {} -defs["structs"]["ImGuiContext"][144]["name"] = "TabBars" -defs["structs"]["ImGuiContext"][144]["template_type"] = "ImGuiTabBar" -defs["structs"]["ImGuiContext"][144]["type"] = "ImPool_ImGuiTabBar" +defs["structs"]["ImGuiContext"][144]["name"] = "CurrentTabBarStack" +defs["structs"]["ImGuiContext"][144]["template_type"] = "ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][144]["type"] = "ImVector_ImGuiPtrOrIndex" defs["structs"]["ImGuiContext"][145] = {} -defs["structs"]["ImGuiContext"][145]["name"] = "CurrentTabBarStack" -defs["structs"]["ImGuiContext"][145]["template_type"] = "ImGuiPtrOrIndex" -defs["structs"]["ImGuiContext"][145]["type"] = "ImVector_ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][145]["name"] = "ShrinkWidthBuffer" +defs["structs"]["ImGuiContext"][145]["template_type"] = "ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][145]["type"] = "ImVector_ImGuiShrinkWidthItem" defs["structs"]["ImGuiContext"][146] = {} -defs["structs"]["ImGuiContext"][146]["name"] = "ShrinkWidthBuffer" -defs["structs"]["ImGuiContext"][146]["template_type"] = "ImGuiShrinkWidthItem" -defs["structs"]["ImGuiContext"][146]["type"] = "ImVector_ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][146]["name"] = "LastValidMousePos" +defs["structs"]["ImGuiContext"][146]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][147] = {} -defs["structs"]["ImGuiContext"][147]["name"] = "LastValidMousePos" -defs["structs"]["ImGuiContext"][147]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][147]["name"] = "InputTextState" +defs["structs"]["ImGuiContext"][147]["type"] = "ImGuiInputTextState" defs["structs"]["ImGuiContext"][148] = {} -defs["structs"]["ImGuiContext"][148]["name"] = "InputTextState" -defs["structs"]["ImGuiContext"][148]["type"] = "ImGuiInputTextState" +defs["structs"]["ImGuiContext"][148]["name"] = "InputTextPasswordFont" +defs["structs"]["ImGuiContext"][148]["type"] = "ImFont" defs["structs"]["ImGuiContext"][149] = {} -defs["structs"]["ImGuiContext"][149]["name"] = "InputTextPasswordFont" -defs["structs"]["ImGuiContext"][149]["type"] = "ImFont" +defs["structs"]["ImGuiContext"][149]["name"] = "TempInputId" +defs["structs"]["ImGuiContext"][149]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][150] = {} -defs["structs"]["ImGuiContext"][150]["name"] = "TempInputId" -defs["structs"]["ImGuiContext"][150]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][150]["name"] = "ColorEditOptions" +defs["structs"]["ImGuiContext"][150]["type"] = "ImGuiColorEditFlags" defs["structs"]["ImGuiContext"][151] = {} -defs["structs"]["ImGuiContext"][151]["name"] = "ColorEditOptions" -defs["structs"]["ImGuiContext"][151]["type"] = "ImGuiColorEditFlags" +defs["structs"]["ImGuiContext"][151]["name"] = "ColorEditLastHue" +defs["structs"]["ImGuiContext"][151]["type"] = "float" defs["structs"]["ImGuiContext"][152] = {} -defs["structs"]["ImGuiContext"][152]["name"] = "ColorEditLastHue" +defs["structs"]["ImGuiContext"][152]["name"] = "ColorEditLastSat" defs["structs"]["ImGuiContext"][152]["type"] = "float" defs["structs"]["ImGuiContext"][153] = {} -defs["structs"]["ImGuiContext"][153]["name"] = "ColorEditLastSat" +defs["structs"]["ImGuiContext"][153]["name"] = "ColorEditLastColor[3]" +defs["structs"]["ImGuiContext"][153]["size"] = 3 defs["structs"]["ImGuiContext"][153]["type"] = "float" defs["structs"]["ImGuiContext"][154] = {} -defs["structs"]["ImGuiContext"][154]["name"] = "ColorEditLastColor[3]" -defs["structs"]["ImGuiContext"][154]["size"] = 3 -defs["structs"]["ImGuiContext"][154]["type"] = "float" +defs["structs"]["ImGuiContext"][154]["name"] = "ColorPickerRef" +defs["structs"]["ImGuiContext"][154]["type"] = "ImVec4" defs["structs"]["ImGuiContext"][155] = {} -defs["structs"]["ImGuiContext"][155]["name"] = "ColorPickerRef" -defs["structs"]["ImGuiContext"][155]["type"] = "ImVec4" +defs["structs"]["ImGuiContext"][155]["name"] = "SliderCurrentAccum" +defs["structs"]["ImGuiContext"][155]["type"] = "float" defs["structs"]["ImGuiContext"][156] = {} -defs["structs"]["ImGuiContext"][156]["name"] = "SliderCurrentAccum" -defs["structs"]["ImGuiContext"][156]["type"] = "float" +defs["structs"]["ImGuiContext"][156]["name"] = "SliderCurrentAccumDirty" +defs["structs"]["ImGuiContext"][156]["type"] = "bool" defs["structs"]["ImGuiContext"][157] = {} -defs["structs"]["ImGuiContext"][157]["name"] = "SliderCurrentAccumDirty" +defs["structs"]["ImGuiContext"][157]["name"] = "DragCurrentAccumDirty" defs["structs"]["ImGuiContext"][157]["type"] = "bool" defs["structs"]["ImGuiContext"][158] = {} -defs["structs"]["ImGuiContext"][158]["name"] = "DragCurrentAccumDirty" -defs["structs"]["ImGuiContext"][158]["type"] = "bool" +defs["structs"]["ImGuiContext"][158]["name"] = "DragCurrentAccum" +defs["structs"]["ImGuiContext"][158]["type"] = "float" defs["structs"]["ImGuiContext"][159] = {} -defs["structs"]["ImGuiContext"][159]["name"] = "DragCurrentAccum" +defs["structs"]["ImGuiContext"][159]["name"] = "DragSpeedDefaultRatio" defs["structs"]["ImGuiContext"][159]["type"] = "float" defs["structs"]["ImGuiContext"][160] = {} -defs["structs"]["ImGuiContext"][160]["name"] = "DragSpeedDefaultRatio" +defs["structs"]["ImGuiContext"][160]["name"] = "ScrollbarClickDeltaToGrabCenter" defs["structs"]["ImGuiContext"][160]["type"] = "float" defs["structs"]["ImGuiContext"][161] = {} -defs["structs"]["ImGuiContext"][161]["name"] = "ScrollbarClickDeltaToGrabCenter" -defs["structs"]["ImGuiContext"][161]["type"] = "float" +defs["structs"]["ImGuiContext"][161]["name"] = "TooltipOverrideCount" +defs["structs"]["ImGuiContext"][161]["type"] = "int" defs["structs"]["ImGuiContext"][162] = {} -defs["structs"]["ImGuiContext"][162]["name"] = "TooltipOverrideCount" -defs["structs"]["ImGuiContext"][162]["type"] = "int" +defs["structs"]["ImGuiContext"][162]["name"] = "ClipboardHandlerData" +defs["structs"]["ImGuiContext"][162]["template_type"] = "char" +defs["structs"]["ImGuiContext"][162]["type"] = "ImVector_char" defs["structs"]["ImGuiContext"][163] = {} -defs["structs"]["ImGuiContext"][163]["name"] = "ClipboardHandlerData" -defs["structs"]["ImGuiContext"][163]["template_type"] = "char" -defs["structs"]["ImGuiContext"][163]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][163]["name"] = "MenusIdSubmittedThisFrame" +defs["structs"]["ImGuiContext"][163]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][163]["type"] = "ImVector_ImGuiID" defs["structs"]["ImGuiContext"][164] = {} -defs["structs"]["ImGuiContext"][164]["name"] = "MenusIdSubmittedThisFrame" -defs["structs"]["ImGuiContext"][164]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiContext"][164]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][164]["name"] = "PlatformImePos" +defs["structs"]["ImGuiContext"][164]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][165] = {} -defs["structs"]["ImGuiContext"][165]["name"] = "PlatformImePos" +defs["structs"]["ImGuiContext"][165]["name"] = "PlatformImeLastPos" defs["structs"]["ImGuiContext"][165]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][166] = {} -defs["structs"]["ImGuiContext"][166]["name"] = "PlatformImeLastPos" -defs["structs"]["ImGuiContext"][166]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][166]["name"] = "PlatformLocaleDecimalPoint" +defs["structs"]["ImGuiContext"][166]["type"] = "char" defs["structs"]["ImGuiContext"][167] = {} defs["structs"]["ImGuiContext"][167]["name"] = "SettingsLoaded" defs["structs"]["ImGuiContext"][167]["type"] = "bool" @@ -3251,11 +3276,14 @@ defs["structs"]["ImGuiDataTypeInfo"][1] = {} defs["structs"]["ImGuiDataTypeInfo"][1]["name"] = "Size" defs["structs"]["ImGuiDataTypeInfo"][1]["type"] = "size_t" defs["structs"]["ImGuiDataTypeInfo"][2] = {} -defs["structs"]["ImGuiDataTypeInfo"][2]["name"] = "PrintFmt" +defs["structs"]["ImGuiDataTypeInfo"][2]["name"] = "Name" defs["structs"]["ImGuiDataTypeInfo"][2]["type"] = "const char*" defs["structs"]["ImGuiDataTypeInfo"][3] = {} -defs["structs"]["ImGuiDataTypeInfo"][3]["name"] = "ScanFmt" +defs["structs"]["ImGuiDataTypeInfo"][3]["name"] = "PrintFmt" defs["structs"]["ImGuiDataTypeInfo"][3]["type"] = "const char*" +defs["structs"]["ImGuiDataTypeInfo"][4] = {} +defs["structs"]["ImGuiDataTypeInfo"][4]["name"] = "ScanFmt" +defs["structs"]["ImGuiDataTypeInfo"][4]["type"] = "const char*" defs["structs"]["ImGuiDataTypeTempStorage"] = {} defs["structs"]["ImGuiDataTypeTempStorage"][1] = {} defs["structs"]["ImGuiDataTypeTempStorage"][1]["name"] = "Data[8]" @@ -3631,14 +3659,17 @@ defs["structs"]["ImGuiInputTextState"][13] = {} defs["structs"]["ImGuiInputTextState"][13]["name"] = "SelectedAllMouseLock" defs["structs"]["ImGuiInputTextState"][13]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][14] = {} -defs["structs"]["ImGuiInputTextState"][14]["name"] = "UserFlags" -defs["structs"]["ImGuiInputTextState"][14]["type"] = "ImGuiInputTextFlags" +defs["structs"]["ImGuiInputTextState"][14]["name"] = "Edited" +defs["structs"]["ImGuiInputTextState"][14]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][15] = {} -defs["structs"]["ImGuiInputTextState"][15]["name"] = "UserCallback" -defs["structs"]["ImGuiInputTextState"][15]["type"] = "ImGuiInputTextCallback" +defs["structs"]["ImGuiInputTextState"][15]["name"] = "UserFlags" +defs["structs"]["ImGuiInputTextState"][15]["type"] = "ImGuiInputTextFlags" defs["structs"]["ImGuiInputTextState"][16] = {} -defs["structs"]["ImGuiInputTextState"][16]["name"] = "UserCallbackData" -defs["structs"]["ImGuiInputTextState"][16]["type"] = "void*" +defs["structs"]["ImGuiInputTextState"][16]["name"] = "UserCallback" +defs["structs"]["ImGuiInputTextState"][16]["type"] = "ImGuiInputTextCallback" +defs["structs"]["ImGuiInputTextState"][17] = {} +defs["structs"]["ImGuiInputTextState"][17]["name"] = "UserCallbackData" +defs["structs"]["ImGuiInputTextState"][17]["type"] = "void*" defs["structs"]["ImGuiLastItemDataBackup"] = {} defs["structs"]["ImGuiLastItemDataBackup"][1] = {} defs["structs"]["ImGuiLastItemDataBackup"][1]["name"] = "LastItemId" @@ -3972,7 +4003,7 @@ defs["structs"]["ImGuiStyle"][26] = {} defs["structs"]["ImGuiStyle"][26]["name"] = "TabBorderSize" defs["structs"]["ImGuiStyle"][26]["type"] = "float" defs["structs"]["ImGuiStyle"][27] = {} -defs["structs"]["ImGuiStyle"][27]["name"] = "TabMinWidthForUnselectedCloseButton" +defs["structs"]["ImGuiStyle"][27]["name"] = "TabMinWidthForCloseButton" defs["structs"]["ImGuiStyle"][27]["type"] = "float" defs["structs"]["ImGuiStyle"][28] = {} defs["structs"]["ImGuiStyle"][28]["name"] = "ColorButtonPosition" @@ -4048,50 +4079,59 @@ defs["structs"]["ImGuiTabBar"][9] = {} defs["structs"]["ImGuiTabBar"][9]["name"] = "LastTabContentHeight" defs["structs"]["ImGuiTabBar"][9]["type"] = "float" defs["structs"]["ImGuiTabBar"][10] = {} -defs["structs"]["ImGuiTabBar"][10]["name"] = "OffsetMax" +defs["structs"]["ImGuiTabBar"][10]["name"] = "WidthAllTabs" defs["structs"]["ImGuiTabBar"][10]["type"] = "float" defs["structs"]["ImGuiTabBar"][11] = {} -defs["structs"]["ImGuiTabBar"][11]["name"] = "OffsetMaxIdeal" +defs["structs"]["ImGuiTabBar"][11]["name"] = "WidthAllTabsIdeal" defs["structs"]["ImGuiTabBar"][11]["type"] = "float" defs["structs"]["ImGuiTabBar"][12] = {} -defs["structs"]["ImGuiTabBar"][12]["name"] = "OffsetNextTab" +defs["structs"]["ImGuiTabBar"][12]["name"] = "ScrollingAnim" defs["structs"]["ImGuiTabBar"][12]["type"] = "float" defs["structs"]["ImGuiTabBar"][13] = {} -defs["structs"]["ImGuiTabBar"][13]["name"] = "ScrollingAnim" +defs["structs"]["ImGuiTabBar"][13]["name"] = "ScrollingTarget" defs["structs"]["ImGuiTabBar"][13]["type"] = "float" defs["structs"]["ImGuiTabBar"][14] = {} -defs["structs"]["ImGuiTabBar"][14]["name"] = "ScrollingTarget" +defs["structs"]["ImGuiTabBar"][14]["name"] = "ScrollingTargetDistToVisibility" defs["structs"]["ImGuiTabBar"][14]["type"] = "float" defs["structs"]["ImGuiTabBar"][15] = {} -defs["structs"]["ImGuiTabBar"][15]["name"] = "ScrollingTargetDistToVisibility" +defs["structs"]["ImGuiTabBar"][15]["name"] = "ScrollingSpeed" defs["structs"]["ImGuiTabBar"][15]["type"] = "float" defs["structs"]["ImGuiTabBar"][16] = {} -defs["structs"]["ImGuiTabBar"][16]["name"] = "ScrollingSpeed" +defs["structs"]["ImGuiTabBar"][16]["name"] = "ScrollingRectMinX" defs["structs"]["ImGuiTabBar"][16]["type"] = "float" defs["structs"]["ImGuiTabBar"][17] = {} -defs["structs"]["ImGuiTabBar"][17]["name"] = "Flags" -defs["structs"]["ImGuiTabBar"][17]["type"] = "ImGuiTabBarFlags" +defs["structs"]["ImGuiTabBar"][17]["name"] = "ScrollingRectMaxX" +defs["structs"]["ImGuiTabBar"][17]["type"] = "float" defs["structs"]["ImGuiTabBar"][18] = {} -defs["structs"]["ImGuiTabBar"][18]["name"] = "ReorderRequestTabId" -defs["structs"]["ImGuiTabBar"][18]["type"] = "ImGuiID" +defs["structs"]["ImGuiTabBar"][18]["name"] = "Flags" +defs["structs"]["ImGuiTabBar"][18]["type"] = "ImGuiTabBarFlags" defs["structs"]["ImGuiTabBar"][19] = {} -defs["structs"]["ImGuiTabBar"][19]["name"] = "ReorderRequestDir" -defs["structs"]["ImGuiTabBar"][19]["type"] = "ImS8" +defs["structs"]["ImGuiTabBar"][19]["name"] = "ReorderRequestTabId" +defs["structs"]["ImGuiTabBar"][19]["type"] = "ImGuiID" defs["structs"]["ImGuiTabBar"][20] = {} -defs["structs"]["ImGuiTabBar"][20]["name"] = "WantLayout" -defs["structs"]["ImGuiTabBar"][20]["type"] = "bool" +defs["structs"]["ImGuiTabBar"][20]["name"] = "ReorderRequestDir" +defs["structs"]["ImGuiTabBar"][20]["type"] = "ImS8" defs["structs"]["ImGuiTabBar"][21] = {} -defs["structs"]["ImGuiTabBar"][21]["name"] = "VisibleTabWasSubmitted" -defs["structs"]["ImGuiTabBar"][21]["type"] = "bool" +defs["structs"]["ImGuiTabBar"][21]["name"] = "TabsActiveCount" +defs["structs"]["ImGuiTabBar"][21]["type"] = "ImS8" defs["structs"]["ImGuiTabBar"][22] = {} -defs["structs"]["ImGuiTabBar"][22]["name"] = "LastTabItemIdx" -defs["structs"]["ImGuiTabBar"][22]["type"] = "short" +defs["structs"]["ImGuiTabBar"][22]["name"] = "WantLayout" +defs["structs"]["ImGuiTabBar"][22]["type"] = "bool" defs["structs"]["ImGuiTabBar"][23] = {} -defs["structs"]["ImGuiTabBar"][23]["name"] = "FramePadding" -defs["structs"]["ImGuiTabBar"][23]["type"] = "ImVec2" +defs["structs"]["ImGuiTabBar"][23]["name"] = "VisibleTabWasSubmitted" +defs["structs"]["ImGuiTabBar"][23]["type"] = "bool" defs["structs"]["ImGuiTabBar"][24] = {} -defs["structs"]["ImGuiTabBar"][24]["name"] = "TabsNames" -defs["structs"]["ImGuiTabBar"][24]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiTabBar"][24]["name"] = "TabsAddedNew" +defs["structs"]["ImGuiTabBar"][24]["type"] = "bool" +defs["structs"]["ImGuiTabBar"][25] = {} +defs["structs"]["ImGuiTabBar"][25]["name"] = "LastTabItemIdx" +defs["structs"]["ImGuiTabBar"][25]["type"] = "short" +defs["structs"]["ImGuiTabBar"][26] = {} +defs["structs"]["ImGuiTabBar"][26]["name"] = "FramePadding" +defs["structs"]["ImGuiTabBar"][26]["type"] = "ImVec2" +defs["structs"]["ImGuiTabBar"][27] = {} +defs["structs"]["ImGuiTabBar"][27]["name"] = "TabsNames" +defs["structs"]["ImGuiTabBar"][27]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiTabItem"] = {} defs["structs"]["ImGuiTabItem"][1] = {} defs["structs"]["ImGuiTabItem"][1]["name"] = "ID" @@ -4118,8 +4158,14 @@ defs["structs"]["ImGuiTabItem"][8] = {} defs["structs"]["ImGuiTabItem"][8]["name"] = "NameOffset" defs["structs"]["ImGuiTabItem"][8]["type"] = "ImS16" defs["structs"]["ImGuiTabItem"][9] = {} -defs["structs"]["ImGuiTabItem"][9]["name"] = "WantClose" -defs["structs"]["ImGuiTabItem"][9]["type"] = "bool" +defs["structs"]["ImGuiTabItem"][9]["name"] = "BeginOrder" +defs["structs"]["ImGuiTabItem"][9]["type"] = "ImS8" +defs["structs"]["ImGuiTabItem"][10] = {} +defs["structs"]["ImGuiTabItem"][10]["name"] = "IndexDuringLayout" +defs["structs"]["ImGuiTabItem"][10]["type"] = "ImS8" +defs["structs"]["ImGuiTabItem"][11] = {} +defs["structs"]["ImGuiTabItem"][11]["name"] = "WantClose" +defs["structs"]["ImGuiTabItem"][11]["type"] = "bool" defs["structs"]["ImGuiTextBuffer"] = {} defs["structs"]["ImGuiTextBuffer"][1] = {} defs["structs"]["ImGuiTextBuffer"][1]["name"] = "Buf" @@ -4200,189 +4246,192 @@ defs["structs"]["ImGuiWindow"][18] = {} defs["structs"]["ImGuiWindow"][18]["name"] = "ScrollTargetCenterRatio" defs["structs"]["ImGuiWindow"][18]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][19] = {} -defs["structs"]["ImGuiWindow"][19]["name"] = "ScrollbarSizes" +defs["structs"]["ImGuiWindow"][19]["name"] = "ScrollTargetEdgeSnapDist" defs["structs"]["ImGuiWindow"][19]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][20] = {} -defs["structs"]["ImGuiWindow"][20]["name"] = "ScrollbarX" -defs["structs"]["ImGuiWindow"][20]["type"] = "bool" +defs["structs"]["ImGuiWindow"][20]["name"] = "ScrollbarSizes" +defs["structs"]["ImGuiWindow"][20]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][21] = {} -defs["structs"]["ImGuiWindow"][21]["name"] = "ScrollbarY" +defs["structs"]["ImGuiWindow"][21]["name"] = "ScrollbarX" defs["structs"]["ImGuiWindow"][21]["type"] = "bool" defs["structs"]["ImGuiWindow"][22] = {} -defs["structs"]["ImGuiWindow"][22]["name"] = "Active" +defs["structs"]["ImGuiWindow"][22]["name"] = "ScrollbarY" defs["structs"]["ImGuiWindow"][22]["type"] = "bool" defs["structs"]["ImGuiWindow"][23] = {} -defs["structs"]["ImGuiWindow"][23]["name"] = "WasActive" +defs["structs"]["ImGuiWindow"][23]["name"] = "Active" defs["structs"]["ImGuiWindow"][23]["type"] = "bool" defs["structs"]["ImGuiWindow"][24] = {} -defs["structs"]["ImGuiWindow"][24]["name"] = "WriteAccessed" +defs["structs"]["ImGuiWindow"][24]["name"] = "WasActive" defs["structs"]["ImGuiWindow"][24]["type"] = "bool" defs["structs"]["ImGuiWindow"][25] = {} -defs["structs"]["ImGuiWindow"][25]["name"] = "Collapsed" +defs["structs"]["ImGuiWindow"][25]["name"] = "WriteAccessed" defs["structs"]["ImGuiWindow"][25]["type"] = "bool" defs["structs"]["ImGuiWindow"][26] = {} -defs["structs"]["ImGuiWindow"][26]["name"] = "WantCollapseToggle" +defs["structs"]["ImGuiWindow"][26]["name"] = "Collapsed" defs["structs"]["ImGuiWindow"][26]["type"] = "bool" defs["structs"]["ImGuiWindow"][27] = {} -defs["structs"]["ImGuiWindow"][27]["name"] = "SkipItems" +defs["structs"]["ImGuiWindow"][27]["name"] = "WantCollapseToggle" defs["structs"]["ImGuiWindow"][27]["type"] = "bool" defs["structs"]["ImGuiWindow"][28] = {} -defs["structs"]["ImGuiWindow"][28]["name"] = "Appearing" +defs["structs"]["ImGuiWindow"][28]["name"] = "SkipItems" defs["structs"]["ImGuiWindow"][28]["type"] = "bool" defs["structs"]["ImGuiWindow"][29] = {} -defs["structs"]["ImGuiWindow"][29]["name"] = "Hidden" +defs["structs"]["ImGuiWindow"][29]["name"] = "Appearing" defs["structs"]["ImGuiWindow"][29]["type"] = "bool" defs["structs"]["ImGuiWindow"][30] = {} -defs["structs"]["ImGuiWindow"][30]["name"] = "IsFallbackWindow" +defs["structs"]["ImGuiWindow"][30]["name"] = "Hidden" defs["structs"]["ImGuiWindow"][30]["type"] = "bool" defs["structs"]["ImGuiWindow"][31] = {} -defs["structs"]["ImGuiWindow"][31]["name"] = "HasCloseButton" +defs["structs"]["ImGuiWindow"][31]["name"] = "IsFallbackWindow" defs["structs"]["ImGuiWindow"][31]["type"] = "bool" defs["structs"]["ImGuiWindow"][32] = {} -defs["structs"]["ImGuiWindow"][32]["name"] = "ResizeBorderHeld" -defs["structs"]["ImGuiWindow"][32]["type"] = "signed char" +defs["structs"]["ImGuiWindow"][32]["name"] = "HasCloseButton" +defs["structs"]["ImGuiWindow"][32]["type"] = "bool" defs["structs"]["ImGuiWindow"][33] = {} -defs["structs"]["ImGuiWindow"][33]["name"] = "BeginCount" -defs["structs"]["ImGuiWindow"][33]["type"] = "short" +defs["structs"]["ImGuiWindow"][33]["name"] = "ResizeBorderHeld" +defs["structs"]["ImGuiWindow"][33]["type"] = "signed char" defs["structs"]["ImGuiWindow"][34] = {} -defs["structs"]["ImGuiWindow"][34]["name"] = "BeginOrderWithinParent" +defs["structs"]["ImGuiWindow"][34]["name"] = "BeginCount" defs["structs"]["ImGuiWindow"][34]["type"] = "short" defs["structs"]["ImGuiWindow"][35] = {} -defs["structs"]["ImGuiWindow"][35]["name"] = "BeginOrderWithinContext" +defs["structs"]["ImGuiWindow"][35]["name"] = "BeginOrderWithinParent" defs["structs"]["ImGuiWindow"][35]["type"] = "short" defs["structs"]["ImGuiWindow"][36] = {} -defs["structs"]["ImGuiWindow"][36]["name"] = "PopupId" -defs["structs"]["ImGuiWindow"][36]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][36]["name"] = "BeginOrderWithinContext" +defs["structs"]["ImGuiWindow"][36]["type"] = "short" defs["structs"]["ImGuiWindow"][37] = {} -defs["structs"]["ImGuiWindow"][37]["name"] = "AutoFitFramesX" -defs["structs"]["ImGuiWindow"][37]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][37]["name"] = "PopupId" +defs["structs"]["ImGuiWindow"][37]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][38] = {} -defs["structs"]["ImGuiWindow"][38]["name"] = "AutoFitFramesY" +defs["structs"]["ImGuiWindow"][38]["name"] = "AutoFitFramesX" defs["structs"]["ImGuiWindow"][38]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][39] = {} -defs["structs"]["ImGuiWindow"][39]["name"] = "AutoFitChildAxises" +defs["structs"]["ImGuiWindow"][39]["name"] = "AutoFitFramesY" defs["structs"]["ImGuiWindow"][39]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][40] = {} -defs["structs"]["ImGuiWindow"][40]["name"] = "AutoFitOnlyGrows" -defs["structs"]["ImGuiWindow"][40]["type"] = "bool" +defs["structs"]["ImGuiWindow"][40]["name"] = "AutoFitChildAxises" +defs["structs"]["ImGuiWindow"][40]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][41] = {} -defs["structs"]["ImGuiWindow"][41]["name"] = "AutoPosLastDirection" -defs["structs"]["ImGuiWindow"][41]["type"] = "ImGuiDir" +defs["structs"]["ImGuiWindow"][41]["name"] = "AutoFitOnlyGrows" +defs["structs"]["ImGuiWindow"][41]["type"] = "bool" defs["structs"]["ImGuiWindow"][42] = {} -defs["structs"]["ImGuiWindow"][42]["name"] = "HiddenFramesCanSkipItems" -defs["structs"]["ImGuiWindow"][42]["type"] = "int" +defs["structs"]["ImGuiWindow"][42]["name"] = "AutoPosLastDirection" +defs["structs"]["ImGuiWindow"][42]["type"] = "ImGuiDir" defs["structs"]["ImGuiWindow"][43] = {} -defs["structs"]["ImGuiWindow"][43]["name"] = "HiddenFramesCannotSkipItems" +defs["structs"]["ImGuiWindow"][43]["name"] = "HiddenFramesCanSkipItems" defs["structs"]["ImGuiWindow"][43]["type"] = "int" defs["structs"]["ImGuiWindow"][44] = {} -defs["structs"]["ImGuiWindow"][44]["name"] = "SetWindowPosAllowFlags" -defs["structs"]["ImGuiWindow"][44]["type"] = "ImGuiCond" +defs["structs"]["ImGuiWindow"][44]["name"] = "HiddenFramesCannotSkipItems" +defs["structs"]["ImGuiWindow"][44]["type"] = "int" defs["structs"]["ImGuiWindow"][45] = {} -defs["structs"]["ImGuiWindow"][45]["name"] = "SetWindowSizeAllowFlags" +defs["structs"]["ImGuiWindow"][45]["name"] = "SetWindowPosAllowFlags" defs["structs"]["ImGuiWindow"][45]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][46] = {} -defs["structs"]["ImGuiWindow"][46]["name"] = "SetWindowCollapsedAllowFlags" +defs["structs"]["ImGuiWindow"][46]["name"] = "SetWindowSizeAllowFlags" defs["structs"]["ImGuiWindow"][46]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][47] = {} -defs["structs"]["ImGuiWindow"][47]["name"] = "SetWindowPosVal" -defs["structs"]["ImGuiWindow"][47]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][47]["name"] = "SetWindowCollapsedAllowFlags" +defs["structs"]["ImGuiWindow"][47]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][48] = {} -defs["structs"]["ImGuiWindow"][48]["name"] = "SetWindowPosPivot" +defs["structs"]["ImGuiWindow"][48]["name"] = "SetWindowPosVal" defs["structs"]["ImGuiWindow"][48]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][49] = {} -defs["structs"]["ImGuiWindow"][49]["name"] = "IDStack" -defs["structs"]["ImGuiWindow"][49]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiWindow"][49]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiWindow"][49]["name"] = "SetWindowPosPivot" +defs["structs"]["ImGuiWindow"][49]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][50] = {} -defs["structs"]["ImGuiWindow"][50]["name"] = "DC" -defs["structs"]["ImGuiWindow"][50]["type"] = "ImGuiWindowTempData" +defs["structs"]["ImGuiWindow"][50]["name"] = "IDStack" +defs["structs"]["ImGuiWindow"][50]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][50]["type"] = "ImVector_ImGuiID" defs["structs"]["ImGuiWindow"][51] = {} -defs["structs"]["ImGuiWindow"][51]["name"] = "OuterRectClipped" -defs["structs"]["ImGuiWindow"][51]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][51]["name"] = "DC" +defs["structs"]["ImGuiWindow"][51]["type"] = "ImGuiWindowTempData" defs["structs"]["ImGuiWindow"][52] = {} -defs["structs"]["ImGuiWindow"][52]["name"] = "InnerRect" +defs["structs"]["ImGuiWindow"][52]["name"] = "OuterRectClipped" defs["structs"]["ImGuiWindow"][52]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][53] = {} -defs["structs"]["ImGuiWindow"][53]["name"] = "InnerClipRect" +defs["structs"]["ImGuiWindow"][53]["name"] = "InnerRect" defs["structs"]["ImGuiWindow"][53]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][54] = {} -defs["structs"]["ImGuiWindow"][54]["name"] = "WorkRect" +defs["structs"]["ImGuiWindow"][54]["name"] = "InnerClipRect" defs["structs"]["ImGuiWindow"][54]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][55] = {} -defs["structs"]["ImGuiWindow"][55]["name"] = "ParentWorkRect" +defs["structs"]["ImGuiWindow"][55]["name"] = "WorkRect" defs["structs"]["ImGuiWindow"][55]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][56] = {} -defs["structs"]["ImGuiWindow"][56]["name"] = "ClipRect" +defs["structs"]["ImGuiWindow"][56]["name"] = "ParentWorkRect" defs["structs"]["ImGuiWindow"][56]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][57] = {} -defs["structs"]["ImGuiWindow"][57]["name"] = "ContentRegionRect" +defs["structs"]["ImGuiWindow"][57]["name"] = "ClipRect" defs["structs"]["ImGuiWindow"][57]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][58] = {} -defs["structs"]["ImGuiWindow"][58]["name"] = "HitTestHoleSize" -defs["structs"]["ImGuiWindow"][58]["type"] = "ImVec2ih" +defs["structs"]["ImGuiWindow"][58]["name"] = "ContentRegionRect" +defs["structs"]["ImGuiWindow"][58]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][59] = {} -defs["structs"]["ImGuiWindow"][59]["name"] = "HitTestHoleOffset" +defs["structs"]["ImGuiWindow"][59]["name"] = "HitTestHoleSize" defs["structs"]["ImGuiWindow"][59]["type"] = "ImVec2ih" defs["structs"]["ImGuiWindow"][60] = {} -defs["structs"]["ImGuiWindow"][60]["name"] = "LastFrameActive" -defs["structs"]["ImGuiWindow"][60]["type"] = "int" +defs["structs"]["ImGuiWindow"][60]["name"] = "HitTestHoleOffset" +defs["structs"]["ImGuiWindow"][60]["type"] = "ImVec2ih" defs["structs"]["ImGuiWindow"][61] = {} -defs["structs"]["ImGuiWindow"][61]["name"] = "LastTimeActive" -defs["structs"]["ImGuiWindow"][61]["type"] = "float" +defs["structs"]["ImGuiWindow"][61]["name"] = "LastFrameActive" +defs["structs"]["ImGuiWindow"][61]["type"] = "int" defs["structs"]["ImGuiWindow"][62] = {} -defs["structs"]["ImGuiWindow"][62]["name"] = "ItemWidthDefault" +defs["structs"]["ImGuiWindow"][62]["name"] = "LastTimeActive" defs["structs"]["ImGuiWindow"][62]["type"] = "float" defs["structs"]["ImGuiWindow"][63] = {} -defs["structs"]["ImGuiWindow"][63]["name"] = "StateStorage" -defs["structs"]["ImGuiWindow"][63]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiWindow"][63]["name"] = "ItemWidthDefault" +defs["structs"]["ImGuiWindow"][63]["type"] = "float" defs["structs"]["ImGuiWindow"][64] = {} -defs["structs"]["ImGuiWindow"][64]["name"] = "ColumnsStorage" -defs["structs"]["ImGuiWindow"][64]["template_type"] = "ImGuiColumns" -defs["structs"]["ImGuiWindow"][64]["type"] = "ImVector_ImGuiColumns" +defs["structs"]["ImGuiWindow"][64]["name"] = "StateStorage" +defs["structs"]["ImGuiWindow"][64]["type"] = "ImGuiStorage" defs["structs"]["ImGuiWindow"][65] = {} -defs["structs"]["ImGuiWindow"][65]["name"] = "FontWindowScale" -defs["structs"]["ImGuiWindow"][65]["type"] = "float" +defs["structs"]["ImGuiWindow"][65]["name"] = "ColumnsStorage" +defs["structs"]["ImGuiWindow"][65]["template_type"] = "ImGuiColumns" +defs["structs"]["ImGuiWindow"][65]["type"] = "ImVector_ImGuiColumns" defs["structs"]["ImGuiWindow"][66] = {} -defs["structs"]["ImGuiWindow"][66]["name"] = "SettingsOffset" -defs["structs"]["ImGuiWindow"][66]["type"] = "int" +defs["structs"]["ImGuiWindow"][66]["name"] = "FontWindowScale" +defs["structs"]["ImGuiWindow"][66]["type"] = "float" defs["structs"]["ImGuiWindow"][67] = {} -defs["structs"]["ImGuiWindow"][67]["name"] = "DrawList" -defs["structs"]["ImGuiWindow"][67]["type"] = "ImDrawList*" +defs["structs"]["ImGuiWindow"][67]["name"] = "SettingsOffset" +defs["structs"]["ImGuiWindow"][67]["type"] = "int" defs["structs"]["ImGuiWindow"][68] = {} -defs["structs"]["ImGuiWindow"][68]["name"] = "DrawListInst" -defs["structs"]["ImGuiWindow"][68]["type"] = "ImDrawList" +defs["structs"]["ImGuiWindow"][68]["name"] = "DrawList" +defs["structs"]["ImGuiWindow"][68]["type"] = "ImDrawList*" defs["structs"]["ImGuiWindow"][69] = {} -defs["structs"]["ImGuiWindow"][69]["name"] = "ParentWindow" -defs["structs"]["ImGuiWindow"][69]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][69]["name"] = "DrawListInst" +defs["structs"]["ImGuiWindow"][69]["type"] = "ImDrawList" defs["structs"]["ImGuiWindow"][70] = {} -defs["structs"]["ImGuiWindow"][70]["name"] = "RootWindow" +defs["structs"]["ImGuiWindow"][70]["name"] = "ParentWindow" defs["structs"]["ImGuiWindow"][70]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][71] = {} -defs["structs"]["ImGuiWindow"][71]["name"] = "RootWindowForTitleBarHighlight" +defs["structs"]["ImGuiWindow"][71]["name"] = "RootWindow" defs["structs"]["ImGuiWindow"][71]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][72] = {} -defs["structs"]["ImGuiWindow"][72]["name"] = "RootWindowForNav" +defs["structs"]["ImGuiWindow"][72]["name"] = "RootWindowForTitleBarHighlight" defs["structs"]["ImGuiWindow"][72]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][73] = {} -defs["structs"]["ImGuiWindow"][73]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][73]["name"] = "RootWindowForNav" defs["structs"]["ImGuiWindow"][73]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][74] = {} -defs["structs"]["ImGuiWindow"][74]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" -defs["structs"]["ImGuiWindow"][74]["size"] = 2 -defs["structs"]["ImGuiWindow"][74]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][74]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][74]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][75] = {} -defs["structs"]["ImGuiWindow"][75]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][75]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" defs["structs"]["ImGuiWindow"][75]["size"] = 2 -defs["structs"]["ImGuiWindow"][75]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][75]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][76] = {} -defs["structs"]["ImGuiWindow"][76]["name"] = "MemoryCompacted" -defs["structs"]["ImGuiWindow"][76]["type"] = "bool" +defs["structs"]["ImGuiWindow"][76]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][76]["size"] = 2 +defs["structs"]["ImGuiWindow"][76]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][77] = {} -defs["structs"]["ImGuiWindow"][77]["name"] = "MemoryDrawListIdxCapacity" -defs["structs"]["ImGuiWindow"][77]["type"] = "int" +defs["structs"]["ImGuiWindow"][77]["name"] = "MemoryCompacted" +defs["structs"]["ImGuiWindow"][77]["type"] = "bool" defs["structs"]["ImGuiWindow"][78] = {} -defs["structs"]["ImGuiWindow"][78]["name"] = "MemoryDrawListVtxCapacity" +defs["structs"]["ImGuiWindow"][78]["name"] = "MemoryDrawListIdxCapacity" defs["structs"]["ImGuiWindow"][78]["type"] = "int" +defs["structs"]["ImGuiWindow"][79] = {} +defs["structs"]["ImGuiWindow"][79]["name"] = "MemoryDrawListVtxCapacity" +defs["structs"]["ImGuiWindow"][79]["type"] = "int" defs["structs"]["ImGuiWindowSettings"] = {} defs["structs"]["ImGuiWindowSettings"][1] = {} defs["structs"]["ImGuiWindowSettings"][1]["name"] = "ID" @@ -4449,89 +4498,86 @@ defs["structs"]["ImGuiWindowTempData"][16] = {} defs["structs"]["ImGuiWindowTempData"][16]["name"] = "NavLayerCurrent" defs["structs"]["ImGuiWindowTempData"][16]["type"] = "ImGuiNavLayer" defs["structs"]["ImGuiWindowTempData"][17] = {} -defs["structs"]["ImGuiWindowTempData"][17]["name"] = "NavLayerCurrentMask" +defs["structs"]["ImGuiWindowTempData"][17]["name"] = "NavLayerActiveMask" defs["structs"]["ImGuiWindowTempData"][17]["type"] = "int" defs["structs"]["ImGuiWindowTempData"][18] = {} -defs["structs"]["ImGuiWindowTempData"][18]["name"] = "NavLayerActiveMask" +defs["structs"]["ImGuiWindowTempData"][18]["name"] = "NavLayerActiveMaskNext" defs["structs"]["ImGuiWindowTempData"][18]["type"] = "int" defs["structs"]["ImGuiWindowTempData"][19] = {} -defs["structs"]["ImGuiWindowTempData"][19]["name"] = "NavLayerActiveMaskNext" -defs["structs"]["ImGuiWindowTempData"][19]["type"] = "int" +defs["structs"]["ImGuiWindowTempData"][19]["name"] = "NavFocusScopeIdCurrent" +defs["structs"]["ImGuiWindowTempData"][19]["type"] = "ImGuiID" defs["structs"]["ImGuiWindowTempData"][20] = {} -defs["structs"]["ImGuiWindowTempData"][20]["name"] = "NavFocusScopeIdCurrent" -defs["structs"]["ImGuiWindowTempData"][20]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindowTempData"][20]["name"] = "NavHideHighlightOneFrame" +defs["structs"]["ImGuiWindowTempData"][20]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][21] = {} -defs["structs"]["ImGuiWindowTempData"][21]["name"] = "NavHideHighlightOneFrame" +defs["structs"]["ImGuiWindowTempData"][21]["name"] = "NavHasScroll" defs["structs"]["ImGuiWindowTempData"][21]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][22] = {} -defs["structs"]["ImGuiWindowTempData"][22]["name"] = "NavHasScroll" +defs["structs"]["ImGuiWindowTempData"][22]["name"] = "MenuBarAppending" defs["structs"]["ImGuiWindowTempData"][22]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][23] = {} -defs["structs"]["ImGuiWindowTempData"][23]["name"] = "MenuBarAppending" -defs["structs"]["ImGuiWindowTempData"][23]["type"] = "bool" +defs["structs"]["ImGuiWindowTempData"][23]["name"] = "MenuBarOffset" +defs["structs"]["ImGuiWindowTempData"][23]["type"] = "ImVec2" defs["structs"]["ImGuiWindowTempData"][24] = {} -defs["structs"]["ImGuiWindowTempData"][24]["name"] = "MenuBarOffset" -defs["structs"]["ImGuiWindowTempData"][24]["type"] = "ImVec2" +defs["structs"]["ImGuiWindowTempData"][24]["name"] = "MenuColumns" +defs["structs"]["ImGuiWindowTempData"][24]["type"] = "ImGuiMenuColumns" defs["structs"]["ImGuiWindowTempData"][25] = {} -defs["structs"]["ImGuiWindowTempData"][25]["name"] = "MenuColumns" -defs["structs"]["ImGuiWindowTempData"][25]["type"] = "ImGuiMenuColumns" +defs["structs"]["ImGuiWindowTempData"][25]["name"] = "TreeDepth" +defs["structs"]["ImGuiWindowTempData"][25]["type"] = "int" defs["structs"]["ImGuiWindowTempData"][26] = {} -defs["structs"]["ImGuiWindowTempData"][26]["name"] = "TreeDepth" -defs["structs"]["ImGuiWindowTempData"][26]["type"] = "int" +defs["structs"]["ImGuiWindowTempData"][26]["name"] = "TreeJumpToParentOnPopMask" +defs["structs"]["ImGuiWindowTempData"][26]["type"] = "ImU32" defs["structs"]["ImGuiWindowTempData"][27] = {} -defs["structs"]["ImGuiWindowTempData"][27]["name"] = "TreeJumpToParentOnPopMask" -defs["structs"]["ImGuiWindowTempData"][27]["type"] = "ImU32" +defs["structs"]["ImGuiWindowTempData"][27]["name"] = "ChildWindows" +defs["structs"]["ImGuiWindowTempData"][27]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindowTempData"][27]["type"] = "ImVector_ImGuiWindowPtr" defs["structs"]["ImGuiWindowTempData"][28] = {} -defs["structs"]["ImGuiWindowTempData"][28]["name"] = "ChildWindows" -defs["structs"]["ImGuiWindowTempData"][28]["template_type"] = "ImGuiWindow*" -defs["structs"]["ImGuiWindowTempData"][28]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiWindowTempData"][28]["name"] = "StateStorage" +defs["structs"]["ImGuiWindowTempData"][28]["type"] = "ImGuiStorage*" defs["structs"]["ImGuiWindowTempData"][29] = {} -defs["structs"]["ImGuiWindowTempData"][29]["name"] = "StateStorage" -defs["structs"]["ImGuiWindowTempData"][29]["type"] = "ImGuiStorage*" +defs["structs"]["ImGuiWindowTempData"][29]["name"] = "CurrentColumns" +defs["structs"]["ImGuiWindowTempData"][29]["type"] = "ImGuiColumns*" defs["structs"]["ImGuiWindowTempData"][30] = {} -defs["structs"]["ImGuiWindowTempData"][30]["name"] = "CurrentColumns" -defs["structs"]["ImGuiWindowTempData"][30]["type"] = "ImGuiColumns*" +defs["structs"]["ImGuiWindowTempData"][30]["name"] = "LayoutType" +defs["structs"]["ImGuiWindowTempData"][30]["type"] = "ImGuiLayoutType" defs["structs"]["ImGuiWindowTempData"][31] = {} -defs["structs"]["ImGuiWindowTempData"][31]["name"] = "LayoutType" +defs["structs"]["ImGuiWindowTempData"][31]["name"] = "ParentLayoutType" defs["structs"]["ImGuiWindowTempData"][31]["type"] = "ImGuiLayoutType" defs["structs"]["ImGuiWindowTempData"][32] = {} -defs["structs"]["ImGuiWindowTempData"][32]["name"] = "ParentLayoutType" -defs["structs"]["ImGuiWindowTempData"][32]["type"] = "ImGuiLayoutType" +defs["structs"]["ImGuiWindowTempData"][32]["name"] = "FocusCounterRegular" +defs["structs"]["ImGuiWindowTempData"][32]["type"] = "int" defs["structs"]["ImGuiWindowTempData"][33] = {} -defs["structs"]["ImGuiWindowTempData"][33]["name"] = "FocusCounterRegular" +defs["structs"]["ImGuiWindowTempData"][33]["name"] = "FocusCounterTabStop" defs["structs"]["ImGuiWindowTempData"][33]["type"] = "int" defs["structs"]["ImGuiWindowTempData"][34] = {} -defs["structs"]["ImGuiWindowTempData"][34]["name"] = "FocusCounterTabStop" -defs["structs"]["ImGuiWindowTempData"][34]["type"] = "int" +defs["structs"]["ImGuiWindowTempData"][34]["name"] = "ItemFlags" +defs["structs"]["ImGuiWindowTempData"][34]["type"] = "ImGuiItemFlags" defs["structs"]["ImGuiWindowTempData"][35] = {} -defs["structs"]["ImGuiWindowTempData"][35]["name"] = "ItemFlags" -defs["structs"]["ImGuiWindowTempData"][35]["type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiWindowTempData"][35]["name"] = "ItemWidth" +defs["structs"]["ImGuiWindowTempData"][35]["type"] = "float" defs["structs"]["ImGuiWindowTempData"][36] = {} -defs["structs"]["ImGuiWindowTempData"][36]["name"] = "ItemWidth" +defs["structs"]["ImGuiWindowTempData"][36]["name"] = "TextWrapPos" defs["structs"]["ImGuiWindowTempData"][36]["type"] = "float" defs["structs"]["ImGuiWindowTempData"][37] = {} -defs["structs"]["ImGuiWindowTempData"][37]["name"] = "TextWrapPos" -defs["structs"]["ImGuiWindowTempData"][37]["type"] = "float" +defs["structs"]["ImGuiWindowTempData"][37]["name"] = "ItemFlagsStack" +defs["structs"]["ImGuiWindowTempData"][37]["template_type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiWindowTempData"][37]["type"] = "ImVector_ImGuiItemFlags" defs["structs"]["ImGuiWindowTempData"][38] = {} -defs["structs"]["ImGuiWindowTempData"][38]["name"] = "ItemFlagsStack" -defs["structs"]["ImGuiWindowTempData"][38]["template_type"] = "ImGuiItemFlags" -defs["structs"]["ImGuiWindowTempData"][38]["type"] = "ImVector_ImGuiItemFlags" +defs["structs"]["ImGuiWindowTempData"][38]["name"] = "ItemWidthStack" +defs["structs"]["ImGuiWindowTempData"][38]["template_type"] = "float" +defs["structs"]["ImGuiWindowTempData"][38]["type"] = "ImVector_float" defs["structs"]["ImGuiWindowTempData"][39] = {} -defs["structs"]["ImGuiWindowTempData"][39]["name"] = "ItemWidthStack" +defs["structs"]["ImGuiWindowTempData"][39]["name"] = "TextWrapPosStack" defs["structs"]["ImGuiWindowTempData"][39]["template_type"] = "float" defs["structs"]["ImGuiWindowTempData"][39]["type"] = "ImVector_float" defs["structs"]["ImGuiWindowTempData"][40] = {} -defs["structs"]["ImGuiWindowTempData"][40]["name"] = "TextWrapPosStack" -defs["structs"]["ImGuiWindowTempData"][40]["template_type"] = "float" -defs["structs"]["ImGuiWindowTempData"][40]["type"] = "ImVector_float" +defs["structs"]["ImGuiWindowTempData"][40]["name"] = "GroupStack" +defs["structs"]["ImGuiWindowTempData"][40]["template_type"] = "ImGuiGroupData" +defs["structs"]["ImGuiWindowTempData"][40]["type"] = "ImVector_ImGuiGroupData" defs["structs"]["ImGuiWindowTempData"][41] = {} -defs["structs"]["ImGuiWindowTempData"][41]["name"] = "GroupStack" -defs["structs"]["ImGuiWindowTempData"][41]["template_type"] = "ImGuiGroupData" -defs["structs"]["ImGuiWindowTempData"][41]["type"] = "ImVector_ImGuiGroupData" -defs["structs"]["ImGuiWindowTempData"][42] = {} -defs["structs"]["ImGuiWindowTempData"][42]["name"] = "StackSizesBackup[6]" -defs["structs"]["ImGuiWindowTempData"][42]["size"] = 6 -defs["structs"]["ImGuiWindowTempData"][42]["type"] = "short" +defs["structs"]["ImGuiWindowTempData"][41]["name"] = "StackSizesBackup[6]" +defs["structs"]["ImGuiWindowTempData"][41]["size"] = 6 +defs["structs"]["ImGuiWindowTempData"][41]["type"] = "short" defs["structs"]["ImRect"] = {} defs["structs"]["ImRect"][1] = {} defs["structs"]["ImRect"][1]["name"] = "Min" @@ -4584,32 +4630,35 @@ defs["structs"]["STB_TexteditState"][4] = {} defs["structs"]["STB_TexteditState"][4]["name"] = "insert_mode" defs["structs"]["STB_TexteditState"][4]["type"] = "unsigned char" defs["structs"]["STB_TexteditState"][5] = {} -defs["structs"]["STB_TexteditState"][5]["name"] = "cursor_at_end_of_line" -defs["structs"]["STB_TexteditState"][5]["type"] = "unsigned char" +defs["structs"]["STB_TexteditState"][5]["name"] = "row_count_per_page" +defs["structs"]["STB_TexteditState"][5]["type"] = "int" defs["structs"]["STB_TexteditState"][6] = {} -defs["structs"]["STB_TexteditState"][6]["name"] = "initialized" +defs["structs"]["STB_TexteditState"][6]["name"] = "cursor_at_end_of_line" defs["structs"]["STB_TexteditState"][6]["type"] = "unsigned char" defs["structs"]["STB_TexteditState"][7] = {} -defs["structs"]["STB_TexteditState"][7]["name"] = "has_preferred_x" +defs["structs"]["STB_TexteditState"][7]["name"] = "initialized" defs["structs"]["STB_TexteditState"][7]["type"] = "unsigned char" defs["structs"]["STB_TexteditState"][8] = {} -defs["structs"]["STB_TexteditState"][8]["name"] = "single_line" +defs["structs"]["STB_TexteditState"][8]["name"] = "has_preferred_x" defs["structs"]["STB_TexteditState"][8]["type"] = "unsigned char" defs["structs"]["STB_TexteditState"][9] = {} -defs["structs"]["STB_TexteditState"][9]["name"] = "padding1" +defs["structs"]["STB_TexteditState"][9]["name"] = "single_line" defs["structs"]["STB_TexteditState"][9]["type"] = "unsigned char" defs["structs"]["STB_TexteditState"][10] = {} -defs["structs"]["STB_TexteditState"][10]["name"] = "padding2" +defs["structs"]["STB_TexteditState"][10]["name"] = "padding1" defs["structs"]["STB_TexteditState"][10]["type"] = "unsigned char" defs["structs"]["STB_TexteditState"][11] = {} -defs["structs"]["STB_TexteditState"][11]["name"] = "padding3" +defs["structs"]["STB_TexteditState"][11]["name"] = "padding2" defs["structs"]["STB_TexteditState"][11]["type"] = "unsigned char" defs["structs"]["STB_TexteditState"][12] = {} -defs["structs"]["STB_TexteditState"][12]["name"] = "preferred_x" -defs["structs"]["STB_TexteditState"][12]["type"] = "float" +defs["structs"]["STB_TexteditState"][12]["name"] = "padding3" +defs["structs"]["STB_TexteditState"][12]["type"] = "unsigned char" defs["structs"]["STB_TexteditState"][13] = {} -defs["structs"]["STB_TexteditState"][13]["name"] = "undostate" -defs["structs"]["STB_TexteditState"][13]["type"] = "StbUndoState" +defs["structs"]["STB_TexteditState"][13]["name"] = "preferred_x" +defs["structs"]["STB_TexteditState"][13]["type"] = "float" +defs["structs"]["STB_TexteditState"][14] = {} +defs["structs"]["STB_TexteditState"][14]["name"] = "undostate" +defs["structs"]["STB_TexteditState"][14]["type"] = "StbUndoState" defs["structs"]["StbTexteditRow"] = {} defs["structs"]["StbTexteditRow"][1] = {} defs["structs"]["StbTexteditRow"][1]["name"] = "x0" diff --git a/imgui b/imgui index 95c99aa..e5cb04b 160000 --- a/imgui +++ b/imgui @@ -1 +1 @@ -Subproject commit 95c99aaa4be611716093edcb6b01146ab9483f30 +Subproject commit e5cb04b132cba94f902beb6186cb58b864777012