From 4230a5566e4524c2df794d94d4dd387c5ac8a48a Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Tue, 15 Nov 2022 17:38:24 +0100 Subject: [PATCH] pull imgui 1.89 and generate --- cimgui.cpp | 322 +- cimgui.h | 634 ++-- generator/output/definitions.json | 4037 ++++++++++++++--------- generator/output/definitions.lua | 3959 +++++++++++++--------- generator/output/impl_definitions.json | 34 +- generator/output/impl_definitions.lua | 34 +- generator/output/overloads.txt | 23 +- generator/output/structs_and_enums.json | 999 +++--- generator/output/structs_and_enums.lua | 3126 ++++++++++-------- generator/output/typedefs_dict.json | 11 +- generator/output/typedefs_dict.lua | 11 +- imgui | 2 +- 12 files changed, 7758 insertions(+), 5434 deletions(-) diff --git a/cimgui.cpp b/cimgui.cpp index 741537c..c11c8cd 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.88" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.89" from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //docking branch #ifdef IMGUI_ENABLE_FREETYPE @@ -224,6 +224,10 @@ CIMGUI_API void igSetNextWindowFocus() { return ImGui::SetNextWindowFocus(); } +CIMGUI_API void igSetNextWindowScroll(const ImVec2 scroll) +{ + return ImGui::SetNextWindowScroll(scroll); +} CIMGUI_API void igSetNextWindowBgAlpha(float alpha) { return ImGui::SetNextWindowBgAlpha(alpha); @@ -634,14 +638,6 @@ CIMGUI_API bool igArrowButton(const char* str_id,ImGuiDir dir) { return ImGui::ArrowButton(str_id,dir); } -CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col) -{ - return ImGui::Image(user_texture_id,size,uv0,uv1,tint_col,border_col); -} -CIMGUI_API bool igImageButton(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,int frame_padding,const ImVec4 bg_col,const ImVec4 tint_col) -{ - return ImGui::ImageButton(user_texture_id,size,uv0,uv1,frame_padding,bg_col,tint_col); -} CIMGUI_API bool igCheckbox(const char* label,bool* v) { return ImGui::Checkbox(label,v); @@ -670,6 +666,14 @@ CIMGUI_API void igBullet() { return ImGui::Bullet(); } +CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col) +{ + return ImGui::Image(user_texture_id,size,uv0,uv1,tint_col,border_col); +} +CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) +{ + return ImGui::ImageButton(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col); +} CIMGUI_API bool igBeginCombo(const char* label,const char* preview_value,ImGuiComboFlags flags) { return ImGui::BeginCombo(label,preview_value,flags); @@ -1481,15 +1485,15 @@ CIMGUI_API void igColorConvertHSVtoRGB(float h,float s,float v,float* out_r,floa { return ImGui::ColorConvertHSVtoRGB(h,s,v,*out_r,*out_g,*out_b); } -CIMGUI_API bool igIsKeyDown(ImGuiKey key) +CIMGUI_API bool igIsKeyDown_Nil(ImGuiKey key) { return ImGui::IsKeyDown(key); } -CIMGUI_API bool igIsKeyPressed(ImGuiKey key,bool repeat) +CIMGUI_API bool igIsKeyPressed_Bool(ImGuiKey key,bool repeat) { return ImGui::IsKeyPressed(key,repeat); } -CIMGUI_API bool igIsKeyReleased(ImGuiKey key) +CIMGUI_API bool igIsKeyReleased_Nil(ImGuiKey key) { return ImGui::IsKeyReleased(key); } @@ -1505,15 +1509,15 @@ CIMGUI_API void igSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard) { return ImGui::SetNextFrameWantCaptureKeyboard(want_capture_keyboard); } -CIMGUI_API bool igIsMouseDown(ImGuiMouseButton button) +CIMGUI_API bool igIsMouseDown_Nil(ImGuiMouseButton button) { return ImGui::IsMouseDown(button); } -CIMGUI_API bool igIsMouseClicked(ImGuiMouseButton button,bool repeat) +CIMGUI_API bool igIsMouseClicked_Bool(ImGuiMouseButton button,bool repeat) { return ImGui::IsMouseClicked(button,repeat); } -CIMGUI_API bool igIsMouseReleased(ImGuiMouseButton button) +CIMGUI_API bool igIsMouseReleased_Nil(ImGuiMouseButton button) { return ImGui::IsMouseReleased(button); } @@ -2065,7 +2069,7 @@ CIMGUI_API void ImDrawListSplitter_SetCurrentChannel(ImDrawListSplitter* self,Im { return self->SetCurrentChannel(draw_list,channel_idx); } -CIMGUI_API ImDrawList* ImDrawList_ImDrawList(const ImDrawListSharedData* shared_data) +CIMGUI_API ImDrawList* ImDrawList_ImDrawList(ImDrawListSharedData* shared_data) { return IM_NEW(ImDrawList)(shared_data); } @@ -2469,6 +2473,10 @@ CIMGUI_API const ImWchar* ImFontAtlas_GetGlyphRangesDefault(ImFontAtlas* self) { return self->GetGlyphRangesDefault(); } +CIMGUI_API const ImWchar* ImFontAtlas_GetGlyphRangesGreek(ImFontAtlas* self) +{ + return self->GetGlyphRangesGreek(); +} CIMGUI_API const ImWchar* ImFontAtlas_GetGlyphRangesKorean(ImFontAtlas* self) { return self->GetGlyphRangesKorean(); @@ -2629,7 +2637,7 @@ CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self) { IM_DELETE(self); } -CIMGUI_API int igGetKeyIndex(ImGuiKey key) +CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key) { return ImGui::GetKeyIndex(key); } @@ -2709,6 +2717,10 @@ CIMGUI_API const char* igImStrSkipBlank(const char* str) { return ImStrSkipBlank(str); } +CIMGUI_API char igImToUpper(char c) +{ + return ImToUpper(c); +} CIMGUI_API bool igImCharIsBlankA(char c) { return ImCharIsBlankA(c); @@ -3160,6 +3172,26 @@ CIMGUI_API void ImBitVector_ClearBit(ImBitVector* self,int n) { return self->ClearBit(n); } +CIMGUI_API void ImGuiTextIndex_clear(ImGuiTextIndex* self) +{ + return self->clear(); +} +CIMGUI_API int ImGuiTextIndex_size(ImGuiTextIndex* self) +{ + return self->size(); +} +CIMGUI_API const char* ImGuiTextIndex_get_line_begin(ImGuiTextIndex* self,const char* base,int n) +{ + return self->get_line_begin(base,n); +} +CIMGUI_API const char* ImGuiTextIndex_get_line_end(ImGuiTextIndex* self,const char* base,int n) +{ + return self->get_line_end(base,n); +} +CIMGUI_API void ImGuiTextIndex_append(ImGuiTextIndex* self,const char* base,int old_size,int new_size) +{ + return self->append(base,old_size,new_size); +} CIMGUI_API ImDrawListSharedData* ImDrawListSharedData_ImDrawListSharedData(void) { return IM_NEW(ImDrawListSharedData)(); @@ -3368,6 +3400,34 @@ CIMGUI_API void ImGuiInputEvent_destroy(ImGuiInputEvent* self) { IM_DELETE(self); } +CIMGUI_API ImGuiKeyRoutingData* ImGuiKeyRoutingData_ImGuiKeyRoutingData(void) +{ + return IM_NEW(ImGuiKeyRoutingData)(); +} +CIMGUI_API void ImGuiKeyRoutingData_destroy(ImGuiKeyRoutingData* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImGuiKeyRoutingTable* ImGuiKeyRoutingTable_ImGuiKeyRoutingTable(void) +{ + return IM_NEW(ImGuiKeyRoutingTable)(); +} +CIMGUI_API void ImGuiKeyRoutingTable_destroy(ImGuiKeyRoutingTable* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiKeyRoutingTable_Clear(ImGuiKeyRoutingTable* self) +{ + return self->Clear(); +} +CIMGUI_API ImGuiKeyOwnerData* ImGuiKeyOwnerData_ImGuiKeyOwnerData(void) +{ + return IM_NEW(ImGuiKeyOwnerData)(); +} +CIMGUI_API void ImGuiKeyOwnerData_destroy(ImGuiKeyOwnerData* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiListClipperRange ImGuiListClipperRange_FromIndices(int min,int max) { return ImGuiListClipperRange::FromIndices(min,max); @@ -3916,10 +3976,6 @@ CIMGUI_API ImGuiSettingsHandler* igFindSettingsHandler(const char* type_name) { return ImGui::FindSettingsHandler(type_name); } -CIMGUI_API void igSetNextWindowScroll(const ImVec2 scroll) -{ - return ImGui::SetNextWindowScroll(scroll); -} CIMGUI_API void igSetScrollX_WindowPtr(ImGuiWindow* window,float scroll_x) { return ImGui::SetScrollX(window,scroll_x); @@ -4192,22 +4248,6 @@ CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlag { return ImGui::NavMoveRequestTryWrapping(window,move_flags); } -CIMGUI_API const char* igGetNavInputName(ImGuiNavInput n) -{ - return ImGui::GetNavInputName(n); -} -CIMGUI_API float igGetNavInputAmount(ImGuiNavInput n,ImGuiNavReadMode mode) -{ - return ImGui::GetNavInputAmount(n,mode); -} -CIMGUI_API void igGetNavInputAmount2d(ImVec2 *pOut,ImGuiNavDirSourceFlags dir_sources,ImGuiNavReadMode mode,float slow_factor,float fast_factor) -{ - *pOut = ImGui::GetNavInputAmount2d(dir_sources,mode,slow_factor,fast_factor); -} -CIMGUI_API int igCalcTypematicRepeatAmount(float t0,float t1,float repeat_delay,float repeat_rate) -{ - return ImGui::CalcTypematicRepeatAmount(t0,t1,repeat_delay,repeat_rate); -} CIMGUI_API void igActivateItem(ImGuiID id) { return ImGui::ActivateItem(id); @@ -4220,26 +4260,14 @@ CIMGUI_API void igSetNavID(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scop { return ImGui::SetNavID(id,nav_layer,focus_scope_id,rect_rel); } -CIMGUI_API void igPushFocusScope(ImGuiID id) -{ - return ImGui::PushFocusScope(id); -} -CIMGUI_API void igPopFocusScope() -{ - return ImGui::PopFocusScope(); -} -CIMGUI_API ImGuiID igGetFocusedFocusScope() -{ - return ImGui::GetFocusedFocusScope(); -} -CIMGUI_API ImGuiID igGetFocusScope() -{ - return ImGui::GetFocusScope(); -} CIMGUI_API bool igIsNamedKey(ImGuiKey key) { return ImGui::IsNamedKey(key); } +CIMGUI_API bool igIsNamedKeyOrModKey(ImGuiKey key) +{ + return ImGui::IsNamedKeyOrModKey(key); +} CIMGUI_API bool igIsLegacyKey(ImGuiKey key) { return ImGui::IsLegacyKey(key); @@ -4248,53 +4276,113 @@ CIMGUI_API bool igIsGamepadKey(ImGuiKey key) { return ImGui::IsGamepadKey(key); } +CIMGUI_API bool igIsAliasKey(ImGuiKey key) +{ + return ImGui::IsAliasKey(key); +} +CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiKey key) +{ + return ImGui::ConvertSingleModFlagToKey(key); +} CIMGUI_API ImGuiKeyData* igGetKeyData(ImGuiKey key) { return ImGui::GetKeyData(key); } -CIMGUI_API void igSetItemUsingMouseWheel() +CIMGUI_API void igGetKeyChordName(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size) { - return ImGui::SetItemUsingMouseWheel(); + return ImGui::GetKeyChordName(key_chord,out_buf,out_buf_size); } -CIMGUI_API void igSetActiveIdUsingNavAndKeys() +CIMGUI_API ImGuiKey igMouseButtonToKey(ImGuiMouseButton button) { - return ImGui::SetActiveIdUsingNavAndKeys(); -} -CIMGUI_API bool igIsActiveIdUsingNavDir(ImGuiDir dir) -{ - return ImGui::IsActiveIdUsingNavDir(dir); -} -CIMGUI_API bool igIsActiveIdUsingNavInput(ImGuiNavInput input) -{ - return ImGui::IsActiveIdUsingNavInput(input); -} -CIMGUI_API bool igIsActiveIdUsingKey(ImGuiKey key) -{ - return ImGui::IsActiveIdUsingKey(key); -} -CIMGUI_API void igSetActiveIdUsingKey(ImGuiKey key) -{ - return ImGui::SetActiveIdUsingKey(key); + return ImGui::MouseButtonToKey(button); } CIMGUI_API bool igIsMouseDragPastThreshold(ImGuiMouseButton button,float lock_threshold) { return ImGui::IsMouseDragPastThreshold(button,lock_threshold); } -CIMGUI_API bool igIsNavInputDown(ImGuiNavInput n) +CIMGUI_API void igGetKeyVector2d(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down) { - return ImGui::IsNavInputDown(n); + *pOut = ImGui::GetKeyVector2d(key_left,key_right,key_up,key_down); } -CIMGUI_API bool igIsNavInputTest(ImGuiNavInput n,ImGuiNavReadMode rm) +CIMGUI_API float igGetNavTweakPressedAmount(ImGuiAxis axis) { - return ImGui::IsNavInputTest(n,rm); + return ImGui::GetNavTweakPressedAmount(axis); } -CIMGUI_API ImGuiModFlags igGetMergedModFlags() +CIMGUI_API int igCalcTypematicRepeatAmount(float t0,float t1,float repeat_delay,float repeat_rate) { - return ImGui::GetMergedModFlags(); + return ImGui::CalcTypematicRepeatAmount(t0,t1,repeat_delay,repeat_rate); } -CIMGUI_API bool igIsKeyPressedMap(ImGuiKey key,bool repeat) +CIMGUI_API void igGetTypematicRepeatRate(ImGuiInputFlags flags,float* repeat_delay,float* repeat_rate) { - return ImGui::IsKeyPressedMap(key,repeat); + return ImGui::GetTypematicRepeatRate(flags,repeat_delay,repeat_rate); +} +CIMGUI_API void igSetActiveIdUsingAllKeyboardKeys() +{ + return ImGui::SetActiveIdUsingAllKeyboardKeys(); +} +CIMGUI_API bool igIsActiveIdUsingNavDir(ImGuiDir dir) +{ + return ImGui::IsActiveIdUsingNavDir(dir); +} +CIMGUI_API ImGuiID igGetKeyOwner(ImGuiKey key) +{ + return ImGui::GetKeyOwner(key); +} +CIMGUI_API void igSetKeyOwner(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags) +{ + return ImGui::SetKeyOwner(key,owner_id,flags); +} +CIMGUI_API void igSetItemKeyOwner(ImGuiKey key,ImGuiInputFlags flags) +{ + return ImGui::SetItemKeyOwner(key,flags); +} +CIMGUI_API bool igTestKeyOwner(ImGuiKey key,ImGuiID owner_id) +{ + return ImGui::TestKeyOwner(key,owner_id); +} +CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiKey key) +{ + return ImGui::GetKeyOwnerData(key); +} +CIMGUI_API bool igIsKeyDown_ID(ImGuiKey key,ImGuiID owner_id) +{ + return ImGui::IsKeyDown(key,owner_id); +} +CIMGUI_API bool igIsKeyPressed_ID(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags) +{ + return ImGui::IsKeyPressed(key,owner_id,flags); +} +CIMGUI_API bool igIsKeyReleased_ID(ImGuiKey key,ImGuiID owner_id) +{ + return ImGui::IsKeyReleased(key,owner_id); +} +CIMGUI_API bool igIsMouseDown_ID(ImGuiMouseButton button,ImGuiID owner_id) +{ + return ImGui::IsMouseDown(button,owner_id); +} +CIMGUI_API bool igIsMouseClicked_ID(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags) +{ + return ImGui::IsMouseClicked(button,owner_id,flags); +} +CIMGUI_API bool igIsMouseReleased_ID(ImGuiMouseButton button,ImGuiID owner_id) +{ + return ImGui::IsMouseReleased(button,owner_id); +} +CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags) +{ + return ImGui::Shortcut(key_chord,owner_id,flags); +} +CIMGUI_API bool igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags) +{ + return ImGui::SetShortcutRouting(key_chord,owner_id,flags); +} +CIMGUI_API bool igTestShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id) +{ + return ImGui::TestShortcutRouting(key_chord,owner_id); +} +CIMGUI_API ImGuiKeyRoutingData* igGetShortcutRoutingData(ImGuiKeyChord key_chord) +{ + return ImGui::GetShortcutRoutingData(key_chord); } CIMGUI_API void igDockContextInitialize(ImGuiContext* ctx) { @@ -4340,9 +4428,13 @@ CIMGUI_API void igDockContextQueueUndockNode(ImGuiContext* ctx,ImGuiDockNode* no { return ImGui::DockContextQueueUndockNode(ctx,node); } -CIMGUI_API bool igDockContextCalcDropPosForDocking(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos) +CIMGUI_API bool igDockContextCalcDropPosForDocking(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos) { - return ImGui::DockContextCalcDropPosForDocking(target,target_node,payload,split_dir,split_outer,out_pos); + return ImGui::DockContextCalcDropPosForDocking(target,target_node,payload_window,payload_node,split_dir,split_outer,out_pos); +} +CIMGUI_API ImGuiDockNode* igDockContextFindNodeByID(ImGuiContext* ctx,ImGuiID id) +{ + return ImGui::DockContextFindNodeByID(ctx,id); } CIMGUI_API bool igDockNodeBeginAmendTabBar(ImGuiDockNode* node) { @@ -4448,6 +4540,18 @@ CIMGUI_API void igDockBuilderFinish(ImGuiID node_id) { return ImGui::DockBuilderFinish(node_id); } +CIMGUI_API void igPushFocusScope(ImGuiID id) +{ + return ImGui::PushFocusScope(id); +} +CIMGUI_API void igPopFocusScope() +{ + return ImGui::PopFocusScope(); +} +CIMGUI_API ImGuiID igGetCurrentFocusScope() +{ + return ImGui::GetCurrentFocusScope(); +} CIMGUI_API bool igIsDragDropActive() { return ImGui::IsDragDropActive(); @@ -4464,6 +4568,10 @@ CIMGUI_API bool igIsDragDropPayloadBeingAccepted() { return ImGui::IsDragDropPayloadBeingAccepted(); } +CIMGUI_API void igRenderDragDropTargetRect(const ImRect bb) +{ + return ImGui::RenderDragDropTargetRect(bb); +} CIMGUI_API void igSetWindowClipRectBeforeSetChannel(ImGuiWindow* window,const ImRect clip_rect) { return ImGui::SetWindowClipRectBeforeSetChannel(window,clip_rect); @@ -4576,6 +4684,10 @@ CIMGUI_API void igTableDrawContextMenu(ImGuiTable* table) { return ImGui::TableDrawContextMenu(table); } +CIMGUI_API bool igTableBeginContextMenuPopup(ImGuiTable* table) +{ + return ImGui::TableBeginContextMenuPopup(table); +} CIMGUI_API void igTableMergeDrawChannels(ImGuiTable* table) { return ImGui::TableMergeDrawChannels(table); @@ -4728,9 +4840,13 @@ CIMGUI_API bool igTabItemEx(ImGuiTabBar* tab_bar,const char* label,bool* p_open, { return ImGui::TabItemEx(tab_bar,label,p_open,flags,docked_window); } -CIMGUI_API void igTabItemCalcSize(ImVec2 *pOut,const char* label,bool has_close_button) +CIMGUI_API void igTabItemCalcSize_Str(ImVec2 *pOut,const char* label,bool has_close_button_or_unsaved_marker) { - *pOut = ImGui::TabItemCalcSize(label,has_close_button); + *pOut = ImGui::TabItemCalcSize(label,has_close_button_or_unsaved_marker); +} +CIMGUI_API void igTabItemCalcSize_WindowPtr(ImVec2 *pOut,ImGuiWindow* window) +{ + *pOut = ImGui::TabItemCalcSize(window); } CIMGUI_API void igTabItemBackground(ImDrawList* draw_list,const ImRect bb,ImGuiTabItemFlags flags,ImU32 col) { @@ -4844,9 +4960,9 @@ CIMGUI_API bool igScrollbarEx(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p { return ImGui::ScrollbarEx(bb,id,axis,p_scroll_v,avail_v,contents_v,flags); } -CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec2 padding,const ImVec4 bg_col,const ImVec4 tint_col) +CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) { - return ImGui::ImageButtonEx(id,texture_id,size,uv0,uv1,padding,bg_col,tint_col); + return ImGui::ImageButtonEx(id,texture_id,size,uv0,uv1,bg_col,tint_col); } CIMGUI_API void igGetWindowScrollbarRect(ImRect *pOut,ImGuiWindow* window,ImGuiAxis axis) { @@ -4896,14 +5012,18 @@ CIMGUI_API bool igTreeNodeBehavior(ImGuiID id,ImGuiTreeNodeFlags flags,const cha { return ImGui::TreeNodeBehavior(id,flags,label,label_end); } -CIMGUI_API bool igTreeNodeBehaviorIsOpen(ImGuiID id,ImGuiTreeNodeFlags flags) -{ - return ImGui::TreeNodeBehaviorIsOpen(id,flags); -} CIMGUI_API void igTreePushOverrideID(ImGuiID id) { return ImGui::TreePushOverrideID(id); } +CIMGUI_API void igTreeNodeSetOpen(ImGuiID id,bool open) +{ + return ImGui::TreeNodeSetOpen(id,open); +} +CIMGUI_API bool igTreeNodeUpdateNextOpen(ImGuiID id,ImGuiTreeNodeFlags flags) +{ + return ImGui::TreeNodeUpdateNextOpen(id,flags); +} CIMGUI_API const ImGuiDataTypeInfo* igDataTypeGetInfo(ImGuiDataType data_type) { return ImGui::DataTypeGetInfo(data_type); @@ -5003,6 +5123,22 @@ CIMGUI_API void igErrorCheckEndWindowRecover(ImGuiErrorLogCallback log_callback, { return ImGui::ErrorCheckEndWindowRecover(log_callback,user_data); } +CIMGUI_API void igErrorCheckUsingSetCursorPosToExtendParentBoundaries() +{ + return ImGui::ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); +} +CIMGUI_API void igDebugLocateItem(ImGuiID target_id) +{ + return ImGui::DebugLocateItem(target_id); +} +CIMGUI_API void igDebugLocateItemOnHover(ImGuiID target_id) +{ + return ImGui::DebugLocateItemOnHover(target_id); +} +CIMGUI_API void igDebugLocateItemResolveWithLastItem() +{ + return ImGui::DebugLocateItemResolveWithLastItem(); +} CIMGUI_API void igDebugDrawItemRect(ImU32 col) { return ImGui::DebugDrawItemRect(col); @@ -5087,6 +5223,10 @@ CIMGUI_API void igDebugRenderViewportThumbnail(ImDrawList* draw_list,ImGuiViewpo { return ImGui::DebugRenderViewportThumbnail(draw_list,viewport,bb); } +CIMGUI_API bool igIsKeyPressedMap(ImGuiKey key,bool repeat) +{ + return ImGui::IsKeyPressedMap(key,repeat); +} CIMGUI_API const ImFontBuilderIO* igImFontAtlasGetBuilderForStbTruetype() { return ImFontAtlasGetBuilderForStbTruetype(); diff --git a/cimgui.h b/cimgui.h index 08e57db..5a2d5c1 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.88" from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.89" from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //docking branch #ifndef CIMGUI_INCLUDED @@ -148,8 +148,6 @@ typedef int ImGuiCol; typedef int ImGuiCond; typedef int ImGuiDataType; typedef int ImGuiDir; -typedef int ImGuiKey; -typedef int ImGuiNavInput; typedef int ImGuiMouseButton; typedef int ImGuiMouseCursor; typedef int ImGuiSortDirection; @@ -168,7 +166,7 @@ typedef int ImGuiDragDropFlags; typedef int ImGuiFocusedFlags; typedef int ImGuiHoveredFlags; typedef int ImGuiInputTextFlags; -typedef int ImGuiModFlags; +typedef int ImGuiKeyChord; typedef int ImGuiPopupFlags; typedef int ImGuiSelectableFlags; typedef int ImGuiSliderFlags; @@ -240,7 +238,7 @@ typedef enum { ImGuiWindowFlags_Popup = 1 << 26, ImGuiWindowFlags_Modal = 1 << 27, ImGuiWindowFlags_ChildMenu = 1 << 28, - ImGuiWindowFlags_DockNodeHost = 1 << 29 + ImGuiWindowFlags_DockNodeHost = 1 << 29, }ImGuiWindowFlags_; typedef enum { ImGuiInputTextFlags_None = 0, @@ -263,7 +261,8 @@ typedef enum { ImGuiInputTextFlags_NoUndoRedo = 1 << 16, ImGuiInputTextFlags_CharsScientific = 1 << 17, ImGuiInputTextFlags_CallbackResize = 1 << 18, - ImGuiInputTextFlags_CallbackEdit = 1 << 19 + ImGuiInputTextFlags_CallbackEdit = 1 << 19, + ImGuiInputTextFlags_EscapeClearsAll = 1 << 20, }ImGuiInputTextFlags_; typedef enum { ImGuiTreeNodeFlags_None = 0, @@ -281,7 +280,7 @@ typedef enum { ImGuiTreeNodeFlags_SpanAvailWidth = 1 << 11, ImGuiTreeNodeFlags_SpanFullWidth = 1 << 12, ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 13, - ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog + ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog, }ImGuiTreeNodeFlags_; typedef enum { ImGuiPopupFlags_None = 0, @@ -294,7 +293,7 @@ typedef enum { ImGuiPopupFlags_NoOpenOverItems = 1 << 6, ImGuiPopupFlags_AnyPopupId = 1 << 7, ImGuiPopupFlags_AnyPopupLevel = 1 << 8, - ImGuiPopupFlags_AnyPopup = ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel + ImGuiPopupFlags_AnyPopup = ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel, }ImGuiPopupFlags_; typedef enum { ImGuiSelectableFlags_None = 0, @@ -302,7 +301,7 @@ typedef enum { ImGuiSelectableFlags_SpanAllColumns = 1 << 1, ImGuiSelectableFlags_AllowDoubleClick = 1 << 2, ImGuiSelectableFlags_Disabled = 1 << 3, - ImGuiSelectableFlags_AllowItemOverlap = 1 << 4 + ImGuiSelectableFlags_AllowItemOverlap = 1 << 4, }ImGuiSelectableFlags_; typedef enum { ImGuiComboFlags_None = 0, @@ -313,7 +312,7 @@ typedef enum { ImGuiComboFlags_HeightLargest = 1 << 4, ImGuiComboFlags_NoArrowButton = 1 << 5, ImGuiComboFlags_NoPreview = 1 << 6, - ImGuiComboFlags_HeightMask_ = ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest + ImGuiComboFlags_HeightMask_ = ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest, }ImGuiComboFlags_; typedef enum { ImGuiTabBarFlags_None = 0, @@ -326,7 +325,7 @@ typedef enum { ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 6, ImGuiTabBarFlags_FittingPolicyScroll = 1 << 7, ImGuiTabBarFlags_FittingPolicyMask_ = ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll, - ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyResizeDown + ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyResizeDown, }ImGuiTabBarFlags_; typedef enum { ImGuiTabItemFlags_None = 0, @@ -337,7 +336,7 @@ typedef enum { ImGuiTabItemFlags_NoTooltip = 1 << 4, ImGuiTabItemFlags_NoReorder = 1 << 5, ImGuiTabItemFlags_Leading = 1 << 6, - ImGuiTabItemFlags_Trailing = 1 << 7 + ImGuiTabItemFlags_Trailing = 1 << 7, }ImGuiTabItemFlags_; typedef enum { ImGuiTableFlags_None = 0, @@ -375,7 +374,7 @@ typedef enum { ImGuiTableFlags_ScrollY = 1 << 25, ImGuiTableFlags_SortMulti = 1 << 26, ImGuiTableFlags_SortTristate = 1 << 27, - ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame + ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame, }ImGuiTableFlags_; typedef enum { ImGuiTableColumnFlags_None = 0, @@ -404,17 +403,17 @@ typedef enum { ImGuiTableColumnFlags_WidthMask_ = ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed, ImGuiTableColumnFlags_IndentMask_ = ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable, ImGuiTableColumnFlags_StatusMask_ = ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered, - ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30 + ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30, }ImGuiTableColumnFlags_; typedef enum { ImGuiTableRowFlags_None = 0, - ImGuiTableRowFlags_Headers = 1 << 0 + ImGuiTableRowFlags_Headers = 1 << 0, }ImGuiTableRowFlags_; typedef enum { ImGuiTableBgTarget_None = 0, ImGuiTableBgTarget_RowBg0 = 1, ImGuiTableBgTarget_RowBg1 = 2, - ImGuiTableBgTarget_CellBg = 3 + ImGuiTableBgTarget_CellBg = 3, }ImGuiTableBgTarget_; typedef enum { ImGuiFocusedFlags_None = 0, @@ -423,7 +422,7 @@ typedef enum { ImGuiFocusedFlags_AnyWindow = 1 << 2, ImGuiFocusedFlags_NoPopupHierarchy = 1 << 3, ImGuiFocusedFlags_DockHierarchy = 1 << 4, - ImGuiFocusedFlags_RootAndChildWindows = ImGuiFocusedFlags_RootWindow | ImGuiFocusedFlags_ChildWindows + ImGuiFocusedFlags_RootAndChildWindows = ImGuiFocusedFlags_RootWindow | ImGuiFocusedFlags_ChildWindows, }ImGuiFocusedFlags_; typedef enum { ImGuiHoveredFlags_None = 0, @@ -438,7 +437,10 @@ typedef enum { ImGuiHoveredFlags_AllowWhenDisabled = 1 << 9, ImGuiHoveredFlags_NoNavOverride = 1 << 10, ImGuiHoveredFlags_RectOnly = ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped, - ImGuiHoveredFlags_RootAndChildWindows = ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows + ImGuiHoveredFlags_RootAndChildWindows = ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows, + ImGuiHoveredFlags_DelayNormal = 1 << 11, + ImGuiHoveredFlags_DelayShort = 1 << 12, + ImGuiHoveredFlags_NoSharedDelay = 1 << 13, }ImGuiHoveredFlags_; typedef enum { ImGuiDockNodeFlags_None = 0, @@ -447,7 +449,7 @@ typedef enum { ImGuiDockNodeFlags_PassthruCentralNode = 1 << 3, ImGuiDockNodeFlags_NoSplit = 1 << 4, ImGuiDockNodeFlags_NoResize = 1 << 5, - ImGuiDockNodeFlags_AutoHideTabBar = 1 << 6 + ImGuiDockNodeFlags_AutoHideTabBar = 1 << 6, }ImGuiDockNodeFlags_; typedef enum { ImGuiDragDropFlags_None = 0, @@ -460,7 +462,7 @@ typedef enum { ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10, ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11, ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12, - ImGuiDragDropFlags_AcceptPeekOnly = ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect + ImGuiDragDropFlags_AcceptPeekOnly = ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect, }ImGuiDragDropFlags_; typedef enum { ImGuiDataType_S8, @@ -489,118 +491,166 @@ typedef enum { ImGuiSortDirection_Descending = 2 }ImGuiSortDirection_; typedef enum { - ImGuiKey_None = 0, - ImGuiKey_Tab = 512, - ImGuiKey_LeftArrow, - ImGuiKey_RightArrow, - ImGuiKey_UpArrow, - ImGuiKey_DownArrow, - ImGuiKey_PageUp, - ImGuiKey_PageDown, - ImGuiKey_Home, - ImGuiKey_End, - ImGuiKey_Insert, - ImGuiKey_Delete, - ImGuiKey_Backspace, - ImGuiKey_Space, - ImGuiKey_Enter, - ImGuiKey_Escape, - ImGuiKey_LeftCtrl, ImGuiKey_LeftShift, ImGuiKey_LeftAlt, ImGuiKey_LeftSuper, - ImGuiKey_RightCtrl, ImGuiKey_RightShift, ImGuiKey_RightAlt, ImGuiKey_RightSuper, - ImGuiKey_Menu, - ImGuiKey_0, ImGuiKey_1, ImGuiKey_2, ImGuiKey_3, ImGuiKey_4, ImGuiKey_5, ImGuiKey_6, ImGuiKey_7, ImGuiKey_8, ImGuiKey_9, - ImGuiKey_A, ImGuiKey_B, ImGuiKey_C, ImGuiKey_D, ImGuiKey_E, ImGuiKey_F, ImGuiKey_G, ImGuiKey_H, ImGuiKey_I, ImGuiKey_J, - ImGuiKey_K, ImGuiKey_L, ImGuiKey_M, ImGuiKey_N, ImGuiKey_O, ImGuiKey_P, ImGuiKey_Q, ImGuiKey_R, ImGuiKey_S, ImGuiKey_T, - ImGuiKey_U, ImGuiKey_V, ImGuiKey_W, ImGuiKey_X, ImGuiKey_Y, ImGuiKey_Z, - ImGuiKey_F1, ImGuiKey_F2, ImGuiKey_F3, ImGuiKey_F4, ImGuiKey_F5, ImGuiKey_F6, - ImGuiKey_F7, ImGuiKey_F8, ImGuiKey_F9, ImGuiKey_F10, ImGuiKey_F11, ImGuiKey_F12, - ImGuiKey_Apostrophe, - ImGuiKey_Comma, - ImGuiKey_Minus, - ImGuiKey_Period, - ImGuiKey_Slash, - ImGuiKey_Semicolon, - ImGuiKey_Equal, - ImGuiKey_LeftBracket, - ImGuiKey_Backslash, - ImGuiKey_RightBracket, - ImGuiKey_GraveAccent, - ImGuiKey_CapsLock, - ImGuiKey_ScrollLock, - ImGuiKey_NumLock, - ImGuiKey_PrintScreen, - ImGuiKey_Pause, - ImGuiKey_Keypad0, ImGuiKey_Keypad1, ImGuiKey_Keypad2, ImGuiKey_Keypad3, ImGuiKey_Keypad4, - ImGuiKey_Keypad5, ImGuiKey_Keypad6, ImGuiKey_Keypad7, ImGuiKey_Keypad8, ImGuiKey_Keypad9, - ImGuiKey_KeypadDecimal, - ImGuiKey_KeypadDivide, - ImGuiKey_KeypadMultiply, - ImGuiKey_KeypadSubtract, - ImGuiKey_KeypadAdd, - ImGuiKey_KeypadEnter, - ImGuiKey_KeypadEqual, - ImGuiKey_GamepadStart, - ImGuiKey_GamepadBack, - ImGuiKey_GamepadFaceUp, - ImGuiKey_GamepadFaceDown, - ImGuiKey_GamepadFaceLeft, - ImGuiKey_GamepadFaceRight, - ImGuiKey_GamepadDpadUp, - ImGuiKey_GamepadDpadDown, - ImGuiKey_GamepadDpadLeft, - ImGuiKey_GamepadDpadRight, - ImGuiKey_GamepadL1, - ImGuiKey_GamepadR1, - ImGuiKey_GamepadL2, - ImGuiKey_GamepadR2, - ImGuiKey_GamepadL3, - ImGuiKey_GamepadR3, - ImGuiKey_GamepadLStickUp, - ImGuiKey_GamepadLStickDown, - ImGuiKey_GamepadLStickLeft, - ImGuiKey_GamepadLStickRight, - ImGuiKey_GamepadRStickUp, - ImGuiKey_GamepadRStickDown, - ImGuiKey_GamepadRStickLeft, - ImGuiKey_GamepadRStickRight, - ImGuiKey_ModCtrl, ImGuiKey_ModShift, ImGuiKey_ModAlt, ImGuiKey_ModSuper, - ImGuiKey_COUNT, - ImGuiKey_NamedKey_BEGIN = 512, - ImGuiKey_NamedKey_END = ImGuiKey_COUNT, - ImGuiKey_NamedKey_COUNT = ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN, - ImGuiKey_KeysData_SIZE = ImGuiKey_COUNT, - ImGuiKey_KeysData_OFFSET = 0 -}ImGuiKey_; +ImGuiKey_None=0, +ImGuiKey_Tab=512, +ImGuiKey_LeftArrow=513, +ImGuiKey_RightArrow=514, +ImGuiKey_UpArrow=515, +ImGuiKey_DownArrow=516, +ImGuiKey_PageUp=517, +ImGuiKey_PageDown=518, +ImGuiKey_Home=519, +ImGuiKey_End=520, +ImGuiKey_Insert=521, +ImGuiKey_Delete=522, +ImGuiKey_Backspace=523, +ImGuiKey_Space=524, +ImGuiKey_Enter=525, +ImGuiKey_Escape=526, +ImGuiKey_LeftCtrl=527, +ImGuiKey_LeftShift=528, +ImGuiKey_LeftAlt=529, +ImGuiKey_LeftSuper=530, +ImGuiKey_RightCtrl=531, +ImGuiKey_RightShift=532, +ImGuiKey_RightAlt=533, +ImGuiKey_RightSuper=534, +ImGuiKey_Menu=535, +ImGuiKey_0=536, +ImGuiKey_1=537, +ImGuiKey_2=538, +ImGuiKey_3=539, +ImGuiKey_4=540, +ImGuiKey_5=541, +ImGuiKey_6=542, +ImGuiKey_7=543, +ImGuiKey_8=544, +ImGuiKey_9=545, +ImGuiKey_A=546, +ImGuiKey_B=547, +ImGuiKey_C=548, +ImGuiKey_D=549, +ImGuiKey_E=550, +ImGuiKey_F=551, +ImGuiKey_G=552, +ImGuiKey_H=553, +ImGuiKey_I=554, +ImGuiKey_J=555, +ImGuiKey_K=556, +ImGuiKey_L=557, +ImGuiKey_M=558, +ImGuiKey_N=559, +ImGuiKey_O=560, +ImGuiKey_P=561, +ImGuiKey_Q=562, +ImGuiKey_R=563, +ImGuiKey_S=564, +ImGuiKey_T=565, +ImGuiKey_U=566, +ImGuiKey_V=567, +ImGuiKey_W=568, +ImGuiKey_X=569, +ImGuiKey_Y=570, +ImGuiKey_Z=571, +ImGuiKey_F1=572, +ImGuiKey_F2=573, +ImGuiKey_F3=574, +ImGuiKey_F4=575, +ImGuiKey_F5=576, +ImGuiKey_F6=577, +ImGuiKey_F7=578, +ImGuiKey_F8=579, +ImGuiKey_F9=580, +ImGuiKey_F10=581, +ImGuiKey_F11=582, +ImGuiKey_F12=583, +ImGuiKey_Apostrophe=584, +ImGuiKey_Comma=585, +ImGuiKey_Minus=586, +ImGuiKey_Period=587, +ImGuiKey_Slash=588, +ImGuiKey_Semicolon=589, +ImGuiKey_Equal=590, +ImGuiKey_LeftBracket=591, +ImGuiKey_Backslash=592, +ImGuiKey_RightBracket=593, +ImGuiKey_GraveAccent=594, +ImGuiKey_CapsLock=595, +ImGuiKey_ScrollLock=596, +ImGuiKey_NumLock=597, +ImGuiKey_PrintScreen=598, +ImGuiKey_Pause=599, +ImGuiKey_Keypad0=600, +ImGuiKey_Keypad1=601, +ImGuiKey_Keypad2=602, +ImGuiKey_Keypad3=603, +ImGuiKey_Keypad4=604, +ImGuiKey_Keypad5=605, +ImGuiKey_Keypad6=606, +ImGuiKey_Keypad7=607, +ImGuiKey_Keypad8=608, +ImGuiKey_Keypad9=609, +ImGuiKey_KeypadDecimal=610, +ImGuiKey_KeypadDivide=611, +ImGuiKey_KeypadMultiply=612, +ImGuiKey_KeypadSubtract=613, +ImGuiKey_KeypadAdd=614, +ImGuiKey_KeypadEnter=615, +ImGuiKey_KeypadEqual=616, +ImGuiKey_GamepadStart=617, +ImGuiKey_GamepadBack=618, +ImGuiKey_GamepadFaceLeft=619, +ImGuiKey_GamepadFaceRight=620, +ImGuiKey_GamepadFaceUp=621, +ImGuiKey_GamepadFaceDown=622, +ImGuiKey_GamepadDpadLeft=623, +ImGuiKey_GamepadDpadRight=624, +ImGuiKey_GamepadDpadUp=625, +ImGuiKey_GamepadDpadDown=626, +ImGuiKey_GamepadL1=627, +ImGuiKey_GamepadR1=628, +ImGuiKey_GamepadL2=629, +ImGuiKey_GamepadR2=630, +ImGuiKey_GamepadL3=631, +ImGuiKey_GamepadR3=632, +ImGuiKey_GamepadLStickLeft=633, +ImGuiKey_GamepadLStickRight=634, +ImGuiKey_GamepadLStickUp=635, +ImGuiKey_GamepadLStickDown=636, +ImGuiKey_GamepadRStickLeft=637, +ImGuiKey_GamepadRStickRight=638, +ImGuiKey_GamepadRStickUp=639, +ImGuiKey_GamepadRStickDown=640, +ImGuiKey_MouseLeft=641, +ImGuiKey_MouseRight=642, +ImGuiKey_MouseMiddle=643, +ImGuiKey_MouseX1=644, +ImGuiKey_MouseX2=645, +ImGuiKey_MouseWheelX=646, +ImGuiKey_MouseWheelY=647, +ImGuiKey_ReservedForModCtrl=648, +ImGuiKey_ReservedForModShift=649, +ImGuiKey_ReservedForModAlt=650, +ImGuiKey_ReservedForModSuper=651, +ImGuiKey_COUNT=652, +ImGuiMod_None=0, +ImGuiMod_Ctrl=1 << 12, +ImGuiMod_Shift=1 << 13, +ImGuiMod_Alt=1 << 14, +ImGuiMod_Super=1 << 15, +ImGuiMod_Mask_=0xF000, +ImGuiMod_Shortcut=ImGuiMod_Ctrl, +ImGuiKey_NamedKey_BEGIN=512, +ImGuiKey_NamedKey_END=ImGuiKey_COUNT, +ImGuiKey_NamedKey_COUNT=ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN, +ImGuiKey_KeysData_SIZE=ImGuiKey_COUNT, +ImGuiKey_KeysData_OFFSET=0, +}ImGuiKey; typedef enum { - ImGuiModFlags_None = 0, - ImGuiModFlags_Ctrl = 1 << 0, - ImGuiModFlags_Shift = 1 << 1, - ImGuiModFlags_Alt = 1 << 2, - ImGuiModFlags_Super = 1 << 3 -}ImGuiModFlags_; -typedef enum { - ImGuiNavInput_Activate, - ImGuiNavInput_Cancel, - ImGuiNavInput_Input, - ImGuiNavInput_Menu, - ImGuiNavInput_DpadLeft, - ImGuiNavInput_DpadRight, - ImGuiNavInput_DpadUp, - ImGuiNavInput_DpadDown, - ImGuiNavInput_LStickLeft, - ImGuiNavInput_LStickRight, - ImGuiNavInput_LStickUp, - ImGuiNavInput_LStickDown, - ImGuiNavInput_FocusPrev, - ImGuiNavInput_FocusNext, - ImGuiNavInput_TweakSlow, - ImGuiNavInput_TweakFast, - ImGuiNavInput_KeyLeft_, - ImGuiNavInput_KeyRight_, - ImGuiNavInput_KeyUp_, - ImGuiNavInput_KeyDown_, - ImGuiNavInput_COUNT -}ImGuiNavInput_; + ImGuiNavInput_Activate, ImGuiNavInput_Cancel, ImGuiNavInput_Input, ImGuiNavInput_Menu, ImGuiNavInput_DpadLeft, ImGuiNavInput_DpadRight, ImGuiNavInput_DpadUp, ImGuiNavInput_DpadDown, + ImGuiNavInput_LStickLeft, ImGuiNavInput_LStickRight, ImGuiNavInput_LStickUp, ImGuiNavInput_LStickDown, ImGuiNavInput_FocusPrev, ImGuiNavInput_FocusNext, ImGuiNavInput_TweakSlow, ImGuiNavInput_TweakFast, + ImGuiNavInput_COUNT, +}ImGuiNavInput; typedef enum { ImGuiConfigFlags_None = 0, ImGuiConfigFlags_NavEnableKeyboard = 1 << 0, @@ -614,7 +664,7 @@ typedef enum { ImGuiConfigFlags_DpiEnableScaleViewports= 1 << 14, ImGuiConfigFlags_DpiEnableScaleFonts = 1 << 15, ImGuiConfigFlags_IsSRGB = 1 << 20, - ImGuiConfigFlags_IsTouchScreen = 1 << 21 + ImGuiConfigFlags_IsTouchScreen = 1 << 21, }ImGuiConfigFlags_; typedef enum { ImGuiBackendFlags_None = 0, @@ -624,7 +674,7 @@ typedef enum { ImGuiBackendFlags_RendererHasVtxOffset = 1 << 3, ImGuiBackendFlags_PlatformHasViewports = 1 << 10, ImGuiBackendFlags_HasMouseHoveredViewport=1 << 11, - ImGuiBackendFlags_RendererHasViewports = 1 << 12 + ImGuiBackendFlags_RendererHasViewports = 1 << 12, }ImGuiBackendFlags_; typedef enum { ImGuiCol_Text, @@ -718,7 +768,7 @@ typedef enum { ImGuiButtonFlags_MouseButtonRight = 1 << 1, ImGuiButtonFlags_MouseButtonMiddle = 1 << 2, ImGuiButtonFlags_MouseButtonMask_ = ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle, - ImGuiButtonFlags_MouseButtonDefault_ = ImGuiButtonFlags_MouseButtonLeft + ImGuiButtonFlags_MouseButtonDefault_ = ImGuiButtonFlags_MouseButtonLeft, }ImGuiButtonFlags_; typedef enum { ImGuiColorEditFlags_None = 0, @@ -749,7 +799,7 @@ typedef enum { ImGuiColorEditFlags_DisplayMask_ = ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_DisplayHSV | ImGuiColorEditFlags_DisplayHex, ImGuiColorEditFlags_DataTypeMask_ = ImGuiColorEditFlags_Uint8 | ImGuiColorEditFlags_Float, ImGuiColorEditFlags_PickerMask_ = ImGuiColorEditFlags_PickerHueWheel | ImGuiColorEditFlags_PickerHueBar, - ImGuiColorEditFlags_InputMask_ = ImGuiColorEditFlags_InputRGB | ImGuiColorEditFlags_InputHSV + ImGuiColorEditFlags_InputMask_ = ImGuiColorEditFlags_InputRGB | ImGuiColorEditFlags_InputHSV, }ImGuiColorEditFlags_; typedef enum { ImGuiSliderFlags_None = 0, @@ -757,7 +807,7 @@ typedef enum { ImGuiSliderFlags_Logarithmic = 1 << 5, ImGuiSliderFlags_NoRoundToFormat = 1 << 6, ImGuiSliderFlags_NoInput = 1 << 7, - ImGuiSliderFlags_InvalidMask_ = 0x7000000F + ImGuiSliderFlags_InvalidMask_ = 0x7000000F, }ImGuiSliderFlags_; typedef enum { ImGuiMouseButton_Left = 0, @@ -783,7 +833,7 @@ typedef enum { ImGuiCond_Always = 1 << 0, ImGuiCond_Once = 1 << 1, ImGuiCond_FirstUseEver = 1 << 2, - ImGuiCond_Appearing = 1 << 3 + ImGuiCond_Appearing = 1 << 3, }ImGuiCond_; struct ImGuiStyle { @@ -852,6 +902,8 @@ struct ImGuiIO float MouseDragThreshold; float KeyRepeatDelay; float KeyRepeatRate; + float HoverDelayNormal; + float HoverDelayShort; void* UserData; ImFontAtlas*Fonts; float FontGlobalScale; @@ -870,6 +922,7 @@ struct ImGuiIO bool ConfigMacOSXBehaviors; bool ConfigInputTrickleEventQueue; bool ConfigInputTextCursorBlink; + bool ConfigInputTextEnterKeepActive; bool ConfigDragClickToInputText; bool ConfigWindowsResizeFromEdges; bool ConfigWindowsMoveFromTitleBarOnly; @@ -900,6 +953,7 @@ struct ImGuiIO ImVec2 MouseDelta; int KeyMap[ImGuiKey_COUNT]; bool KeysDown[ImGuiKey_COUNT]; + float NavInputs[ImGuiNavInput_COUNT]; ImVec2 MousePos; bool MouseDown[5]; float MouseWheel; @@ -909,8 +963,7 @@ struct ImGuiIO bool KeyShift; bool KeyAlt; bool KeySuper; - float NavInputs[ImGuiNavInput_COUNT]; - ImGuiModFlags KeyMods; + ImGuiKeyChord KeyMods; ImGuiKeyData KeysData[ImGuiKey_KeysData_SIZE]; bool WantCaptureMouseUnlessPopupClose; ImVec2 MousePosPrev; @@ -927,8 +980,6 @@ struct ImGuiIO float MouseDownDurationPrev[5]; ImVec2 MouseDragMaxDistanceAbs[5]; float MouseDragMaxDistanceSqr[5]; - float NavInputsDownDuration[ImGuiNavInput_COUNT]; - float NavInputsDownDurationPrev[ImGuiNavInput_COUNT]; float PenPressure; bool AppFocusLost; bool AppAcceptingEvents; @@ -1102,14 +1153,14 @@ typedef enum { ImDrawFlags_RoundCornersRight = ImDrawFlags_RoundCornersBottomRight | ImDrawFlags_RoundCornersTopRight, ImDrawFlags_RoundCornersAll = ImDrawFlags_RoundCornersTopLeft | ImDrawFlags_RoundCornersTopRight | ImDrawFlags_RoundCornersBottomLeft | ImDrawFlags_RoundCornersBottomRight, ImDrawFlags_RoundCornersDefault_ = ImDrawFlags_RoundCornersAll, - ImDrawFlags_RoundCornersMask_ = ImDrawFlags_RoundCornersAll | ImDrawFlags_RoundCornersNone + ImDrawFlags_RoundCornersMask_ = ImDrawFlags_RoundCornersAll | ImDrawFlags_RoundCornersNone, }ImDrawFlags_; typedef enum { ImDrawListFlags_None = 0, ImDrawListFlags_AntiAliasedLines = 1 << 0, ImDrawListFlags_AntiAliasedLinesUseTex = 1 << 1, ImDrawListFlags_AntiAliasedFill = 1 << 2, - ImDrawListFlags_AllowVtxOffset = 1 << 3 + ImDrawListFlags_AllowVtxOffset = 1 << 3, }ImDrawListFlags_; typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; @@ -1126,7 +1177,7 @@ struct ImDrawList ImVector_ImDrawVert VtxBuffer; ImDrawListFlags Flags; unsigned int _VtxCurrentIdx; - const ImDrawListSharedData* _Data; + ImDrawListSharedData* _Data; const char* _OwnerName; ImDrawVert* _VtxWritePtr; ImDrawIdx* _IdxWritePtr; @@ -1200,7 +1251,7 @@ typedef enum { ImFontAtlasFlags_None = 0, ImFontAtlasFlags_NoPowerOfTwoHeight = 1 << 0, ImFontAtlasFlags_NoMouseCursors = 1 << 1, - ImFontAtlasFlags_NoBakedLines = 1 << 2 + ImFontAtlasFlags_NoBakedLines = 1 << 2, }ImFontAtlasFlags_; typedef struct ImVector_ImFontPtr {int Size;int Capacity;ImFont** Data;} ImVector_ImFontPtr; @@ -1270,7 +1321,7 @@ typedef enum { ImGuiViewportFlags_TopMost = 1 << 9, ImGuiViewportFlags_Minimized = 1 << 10, ImGuiViewportFlags_NoAutoMerge = 1 << 11, - ImGuiViewportFlags_CanHostOtherWindows = 1 << 12 + ImGuiViewportFlags_CanHostOtherWindows = 1 << 12, }ImGuiViewportFlags_; struct ImGuiViewport { @@ -1376,11 +1427,11 @@ typedef int ImGuiDataAuthority; typedef int ImGuiLayoutType; typedef int ImGuiActivateFlags; typedef int ImGuiDebugLogFlags; +typedef int ImGuiInputFlags; typedef int ImGuiItemFlags; typedef int ImGuiItemStatusFlags; typedef int ImGuiOldColumnFlags; typedef int ImGuiNavHighlightFlags; -typedef int ImGuiNavDirSourceFlags; typedef int ImGuiNavMoveFlags; typedef int ImGuiNextItemDataFlags; typedef int ImGuiNextWindowDataFlags; @@ -1451,6 +1502,14 @@ struct ImBitVector ImVector_ImU32 Storage; }; typedef int ImPoolIdx; +typedef struct ImGuiTextIndex ImGuiTextIndex; +typedef struct ImVector_int {int Size;int Capacity;int* Data;} ImVector_int; + +struct ImGuiTextIndex +{ + ImVector_int LineOffsets; + int EndOffset; +}; struct ImDrawListSharedData { ImVec2 TexUvWhitePixel; @@ -1460,6 +1519,7 @@ struct ImDrawListSharedData float CircleSegmentMaxError; ImVec4 ClipRectFullscreen; ImDrawListFlags InitialFlags; + ImVector_ImVec2 TempBuffer; ImVec2 ArcFastVtx[48]; float ArcFastRadiusCutoff; ImU8 CircleSegmentCounts[64]; @@ -1481,7 +1541,8 @@ typedef enum { ImGuiItemFlags_SelectableDontClosePopup = 1 << 5, ImGuiItemFlags_MixedValue = 1 << 6, ImGuiItemFlags_ReadOnly = 1 << 7, - ImGuiItemFlags_Inputable = 1 << 8 + ImGuiItemFlags_NoWindowHoverableCheck = 1 << 8, + ImGuiItemFlags_Inputable = 1 << 10, }ImGuiItemFlags_; typedef enum { ImGuiItemStatusFlags_None = 0, @@ -1493,12 +1554,13 @@ typedef enum { ImGuiItemStatusFlags_HasDeactivated = 1 << 5, ImGuiItemStatusFlags_Deactivated = 1 << 6, ImGuiItemStatusFlags_HoveredWindow = 1 << 7, - ImGuiItemStatusFlags_FocusedByTabbing = 1 << 8 + ImGuiItemStatusFlags_FocusedByTabbing = 1 << 8, + ImGuiItemStatusFlags_Visible = 1 << 9, }ImGuiItemStatusFlags_; typedef enum { ImGuiInputTextFlags_Multiline = 1 << 26, ImGuiInputTextFlags_NoMarkEdited = 1 << 27, - ImGuiInputTextFlags_MergedItem = 1 << 28 + ImGuiInputTextFlags_MergedItem = 1 << 28, }ImGuiInputTextFlagsPrivate_; typedef enum { ImGuiButtonFlags_PressedOnClick = 1 << 4, @@ -1516,15 +1578,17 @@ typedef enum { ImGuiButtonFlags_NoHoldingActiveId = 1 << 17, ImGuiButtonFlags_NoNavFocus = 1 << 18, ImGuiButtonFlags_NoHoveredOnFocus = 1 << 19, + ImGuiButtonFlags_NoSetKeyOwner = 1 << 20, + ImGuiButtonFlags_NoTestKeyOwner = 1 << 21, ImGuiButtonFlags_PressedOnMask_ = ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnClickReleaseAnywhere | ImGuiButtonFlags_PressedOnRelease | ImGuiButtonFlags_PressedOnDoubleClick | ImGuiButtonFlags_PressedOnDragDropHold, - ImGuiButtonFlags_PressedOnDefault_ = ImGuiButtonFlags_PressedOnClickRelease + ImGuiButtonFlags_PressedOnDefault_ = ImGuiButtonFlags_PressedOnClickRelease, }ImGuiButtonFlagsPrivate_; typedef enum { - ImGuiComboFlags_CustomPreview = 1 << 20 + ImGuiComboFlags_CustomPreview = 1 << 20, }ImGuiComboFlagsPrivate_; typedef enum { ImGuiSliderFlags_Vertical = 1 << 20, - ImGuiSliderFlags_ReadOnly = 1 << 21 + ImGuiSliderFlags_ReadOnly = 1 << 21, }ImGuiSliderFlagsPrivate_; typedef enum { ImGuiSelectableFlags_NoHoldingActiveID = 1 << 20, @@ -1534,24 +1598,25 @@ typedef enum { ImGuiSelectableFlags_SpanAvailWidth = 1 << 24, ImGuiSelectableFlags_DrawHoveredWhenHeld = 1 << 25, ImGuiSelectableFlags_SetNavIdOnHover = 1 << 26, - ImGuiSelectableFlags_NoPadWithHalfSpacing = 1 << 27 + ImGuiSelectableFlags_NoPadWithHalfSpacing = 1 << 27, + ImGuiSelectableFlags_NoSetKeyOwner = 1 << 28, }ImGuiSelectableFlagsPrivate_; typedef enum { - ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 20 + ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 20, }ImGuiTreeNodeFlagsPrivate_; typedef enum { ImGuiSeparatorFlags_None = 0, ImGuiSeparatorFlags_Horizontal = 1 << 0, ImGuiSeparatorFlags_Vertical = 1 << 1, - ImGuiSeparatorFlags_SpanAllColumns = 1 << 2 + ImGuiSeparatorFlags_SpanAllColumns = 1 << 2, }ImGuiSeparatorFlags_; typedef enum { ImGuiTextFlags_None = 0, - ImGuiTextFlags_NoWidthForLargeClippedText = 1 << 0 + ImGuiTextFlags_NoWidthForLargeClippedText = 1 << 0, }ImGuiTextFlags_; typedef enum { ImGuiTooltipFlags_None = 0, - ImGuiTooltipFlags_OverridePreviousTooltip = 1 << 0 + ImGuiTooltipFlags_OverridePreviousTooltip = 1 << 0, }ImGuiTooltipFlags_; typedef enum { ImGuiLayoutType_Horizontal = 0, @@ -1562,7 +1627,7 @@ typedef enum { ImGuiLogType_TTY, ImGuiLogType_File, ImGuiLogType_Buffer, - ImGuiLogType_Clipboard + ImGuiLogType_Clipboard, }ImGuiLogType; typedef enum { ImGuiAxis_None = -1, @@ -1571,12 +1636,12 @@ typedef enum { }ImGuiAxis; typedef enum { ImGuiPlotType_Lines, - ImGuiPlotType_Histogram + ImGuiPlotType_Histogram, }ImGuiPlotType; typedef enum { ImGuiPopupPositionPolicy_Default, ImGuiPopupPositionPolicy_ComboBox, - ImGuiPopupPositionPolicy_Tooltip + ImGuiPopupPositionPolicy_Tooltip, }ImGuiPopupPositionPolicy; typedef struct ImGuiDataTypeTempStorage ImGuiDataTypeTempStorage; struct ImGuiDataTypeTempStorage @@ -1593,7 +1658,7 @@ struct ImGuiDataTypeInfo typedef enum { ImGuiDataType_String = ImGuiDataType_COUNT + 1, ImGuiDataType_Pointer, - ImGuiDataType_ID + ImGuiDataType_ID, }ImGuiDataTypePrivate_; struct ImGuiColorMod { @@ -1661,7 +1726,7 @@ struct ImGuiPopupData { ImGuiID PopupId; ImGuiWindow* Window; - ImGuiWindow* SourceWindow; + ImGuiWindow* BackupNavWindow; int ParentNavLayer; int OpenFrameCount; ImGuiID OpenParentId; @@ -1680,7 +1745,7 @@ typedef enum { ImGuiNextWindowDataFlags_HasScroll = 1 << 7, ImGuiNextWindowDataFlags_HasViewport = 1 << 8, ImGuiNextWindowDataFlags_HasDock = 1 << 9, - ImGuiNextWindowDataFlags_HasWindowClass = 1 << 10 + ImGuiNextWindowDataFlags_HasWindowClass = 1 << 10, }ImGuiNextWindowDataFlags_; struct ImGuiNextWindowData { @@ -1708,7 +1773,7 @@ struct ImGuiNextWindowData typedef enum { ImGuiNextItemDataFlags_None = 0, ImGuiNextItemDataFlags_HasWidth = 1 << 0, - ImGuiNextItemDataFlags_HasOpen = 1 << 1 + ImGuiNextItemDataFlags_HasOpen = 1 << 1, }ImGuiNextItemDataFlags_; struct ImGuiNextItemData { @@ -1762,12 +1827,6 @@ struct ImGuiPtrOrIndex typedef struct ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN {ImU32 Storage[(ImGuiKey_NamedKey_COUNT+31)>>5];} ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN; typedef ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN ImBitArrayForNamedKeys; -typedef enum { - ImGuiKey_LegacyNativeKey_BEGIN = 0, - ImGuiKey_LegacyNativeKey_END = 512, - ImGuiKey_Gamepad_BEGIN = ImGuiKey_GamepadStart, - ImGuiKey_Gamepad_END = ImGuiKey_GamepadRStickRight + 1 -}ImGuiKeyPrivate_; typedef enum { ImGuiInputEventType_None = 0, ImGuiInputEventType_MousePos, @@ -1833,14 +1892,59 @@ struct ImGuiInputEvent }; bool AddedByTestEngine; }; +typedef ImS16 ImGuiKeyRoutingIndex; +typedef struct ImGuiKeyRoutingData ImGuiKeyRoutingData; +struct ImGuiKeyRoutingData +{ + ImGuiKeyRoutingIndex NextEntryIndex; + ImU16 Mods; + ImU8 RoutingNextScore; + ImGuiID RoutingCurr; + ImGuiID RoutingNext; +}; +typedef struct ImGuiKeyRoutingTable ImGuiKeyRoutingTable; +typedef struct ImVector_ImGuiKeyRoutingData {int Size;int Capacity;ImGuiKeyRoutingData* Data;} ImVector_ImGuiKeyRoutingData; + +struct ImGuiKeyRoutingTable +{ + ImGuiKeyRoutingIndex Index[ImGuiKey_NamedKey_COUNT]; + ImVector_ImGuiKeyRoutingData Entries; + ImVector_ImGuiKeyRoutingData EntriesNext; +}; +typedef struct ImGuiKeyOwnerData ImGuiKeyOwnerData; +struct ImGuiKeyOwnerData +{ + ImGuiID OwnerCurr; + ImGuiID OwnerNext; + bool LockThisFrame; + bool LockUntilRelease; +}; typedef enum { - ImGuiNavReadMode_Down, - ImGuiNavReadMode_Pressed, - ImGuiNavReadMode_Released, - ImGuiNavReadMode_Repeat, - ImGuiNavReadMode_RepeatSlow, - ImGuiNavReadMode_RepeatFast -}ImGuiNavReadMode; + ImGuiInputFlags_None = 0, + ImGuiInputFlags_Repeat = 1 << 0, + ImGuiInputFlags_RepeatRateDefault = 1 << 1, + ImGuiInputFlags_RepeatRateNavMove = 1 << 2, + ImGuiInputFlags_RepeatRateNavTweak = 1 << 3, + ImGuiInputFlags_RepeatRateMask_ = ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak, + ImGuiInputFlags_CondHovered = 1 << 4, + ImGuiInputFlags_CondActive = 1 << 5, + ImGuiInputFlags_CondDefault_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, + ImGuiInputFlags_CondMask_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, + ImGuiInputFlags_LockThisFrame = 1 << 6, + ImGuiInputFlags_LockUntilRelease = 1 << 7, + ImGuiInputFlags_RouteFocused = 1 << 8, + ImGuiInputFlags_RouteGlobalLow = 1 << 9, + ImGuiInputFlags_RouteGlobal = 1 << 10, + ImGuiInputFlags_RouteGlobalHigh = 1 << 11, + ImGuiInputFlags_RouteMask_ = ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh, + ImGuiInputFlags_RouteAlways = 1 << 12, + ImGuiInputFlags_RouteUnlessBgFocused= 1 << 13, + ImGuiInputFlags_RouteExtraMask_ = ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused, + ImGuiInputFlags_SupportedByIsKeyPressed = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_, + ImGuiInputFlags_SupportedByShortcut = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_, + ImGuiInputFlags_SupportedBySetKeyOwner = ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease, + ImGuiInputFlags_SupportedBySetItemKeyOwner = ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_, +}ImGuiInputFlags_; typedef struct ImGuiListClipperRange ImGuiListClipperRange; struct ImGuiListClipperRange { @@ -1865,7 +1969,7 @@ typedef enum { ImGuiActivateFlags_None = 0, ImGuiActivateFlags_PreferInput = 1 << 0, ImGuiActivateFlags_PreferTweak = 1 << 1, - ImGuiActivateFlags_TryToPreserveState = 1 << 2 + ImGuiActivateFlags_TryToPreserveState = 1 << 2, }ImGuiActivateFlags_; typedef enum { ImGuiScrollFlags_None = 0, @@ -1877,22 +1981,15 @@ typedef enum { ImGuiScrollFlags_AlwaysCenterY = 1 << 5, ImGuiScrollFlags_NoScrollParent = 1 << 6, ImGuiScrollFlags_MaskX_ = ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_KeepVisibleCenterX | ImGuiScrollFlags_AlwaysCenterX, - ImGuiScrollFlags_MaskY_ = ImGuiScrollFlags_KeepVisibleEdgeY | ImGuiScrollFlags_KeepVisibleCenterY | ImGuiScrollFlags_AlwaysCenterY + ImGuiScrollFlags_MaskY_ = ImGuiScrollFlags_KeepVisibleEdgeY | ImGuiScrollFlags_KeepVisibleCenterY | ImGuiScrollFlags_AlwaysCenterY, }ImGuiScrollFlags_; typedef enum { ImGuiNavHighlightFlags_None = 0, ImGuiNavHighlightFlags_TypeDefault = 1 << 0, ImGuiNavHighlightFlags_TypeThin = 1 << 1, ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2, - ImGuiNavHighlightFlags_NoRounding = 1 << 3 + ImGuiNavHighlightFlags_NoRounding = 1 << 3, }ImGuiNavHighlightFlags_; -typedef enum { - ImGuiNavDirSourceFlags_None = 0, - ImGuiNavDirSourceFlags_RawKeyboard = 1 << 0, - ImGuiNavDirSourceFlags_Keyboard = 1 << 1, - ImGuiNavDirSourceFlags_PadDPad = 1 << 2, - ImGuiNavDirSourceFlags_PadLStick = 1 << 3 -}ImGuiNavDirSourceFlags_; typedef enum { ImGuiNavMoveFlags_None = 0, ImGuiNavMoveFlags_LoopX = 1 << 0, @@ -1907,7 +2004,7 @@ typedef enum { ImGuiNavMoveFlags_FocusApi = 1 << 9, ImGuiNavMoveFlags_Tabbing = 1 << 10, ImGuiNavMoveFlags_Activate = 1 << 11, - ImGuiNavMoveFlags_DontSetNavHighlight = 1 << 12 + ImGuiNavMoveFlags_DontSetNavHighlight = 1 << 12, }ImGuiNavMoveFlags_; typedef enum { ImGuiNavLayer_Main = 0, @@ -1931,7 +2028,7 @@ typedef enum { ImGuiOldColumnFlags_NoResize = 1 << 1, ImGuiOldColumnFlags_NoPreserveWidths = 1 << 2, ImGuiOldColumnFlags_NoForceWithinWindow = 1 << 3, - ImGuiOldColumnFlags_GrowParentContentsSize = 1 << 4 + ImGuiOldColumnFlags_GrowParentContentsSize = 1 << 4, }ImGuiOldColumnFlags_; struct ImGuiOldColumnData { @@ -1984,13 +2081,13 @@ typedef enum { typedef enum { ImGuiDataAuthority_Auto, ImGuiDataAuthority_DockNode, - ImGuiDataAuthority_Window + ImGuiDataAuthority_Window, }ImGuiDataAuthority_; typedef enum { ImGuiDockNodeState_Unknown, ImGuiDockNodeState_HostWindowHiddenBecauseSingleWindow, ImGuiDockNodeState_HostWindowHiddenBecauseWindowsAreResizing, - ImGuiDockNodeState_HostWindowVisible + ImGuiDockNodeState_HostWindowVisible, }ImGuiDockNodeState; typedef struct ImVector_ImGuiWindowPtr {int Size;int Capacity;ImGuiWindow** Data;} ImVector_ImGuiWindowPtr; @@ -2120,11 +2217,12 @@ typedef enum { ImGuiDebugLogFlags_EventFocus = 1 << 1, ImGuiDebugLogFlags_EventPopup = 1 << 2, ImGuiDebugLogFlags_EventNav = 1 << 3, - ImGuiDebugLogFlags_EventIO = 1 << 4, - ImGuiDebugLogFlags_EventDocking = 1 << 5, - ImGuiDebugLogFlags_EventViewport = 1 << 6, - ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport, - ImGuiDebugLogFlags_OutputToTTY = 1 << 10 + ImGuiDebugLogFlags_EventClipper = 1 << 4, + ImGuiDebugLogFlags_EventIO = 1 << 5, + ImGuiDebugLogFlags_EventDocking = 1 << 6, + ImGuiDebugLogFlags_EventViewport = 1 << 7, + ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport, + ImGuiDebugLogFlags_OutputToTTY = 1 << 10, }ImGuiDebugLogFlags_; struct ImGuiMetricsConfig { @@ -2250,17 +2348,14 @@ struct ImGuiContext ImGuiWindow* CurrentWindow; ImGuiWindow* HoveredWindow; ImGuiWindow* HoveredWindowUnderMovingWindow; - ImGuiDockNode* HoveredDockNode; ImGuiWindow* MovingWindow; ImGuiWindow* WheelingWindow; ImVec2 WheelingWindowRefMousePos; - float WheelingWindowTimer; + float WheelingWindowReleaseTimer; ImGuiID DebugHookIdInfo; ImGuiID HoveredId; ImGuiID HoveredIdPreviousFrame; bool HoveredIdAllowOverlap; - bool HoveredIdUsingMouseWheel; - bool HoveredIdPreviousFrameUsingMouseWheel; bool HoveredIdDisabled; float HoveredIdTimer; float HoveredIdNotActiveTimer; @@ -2283,11 +2378,14 @@ struct ImGuiContext ImGuiWindow* ActiveIdPreviousFrameWindow; ImGuiID LastActiveId; float LastActiveIdTimer; - bool ActiveIdUsingMouseWheel; + ImGuiKeyOwnerData KeysOwnerData[ImGuiKey_NamedKey_COUNT]; + ImGuiKeyRoutingTable KeysRoutingTable; ImU32 ActiveIdUsingNavDirMask; + bool ActiveIdUsingAllKeyboardKeys; ImU32 ActiveIdUsingNavInputMask; - ImBitArrayForNamedKeys ActiveIdUsingKeyInputMask; + ImGuiID CurrentFocusScopeId; ImGuiItemFlags CurrentItemFlags; + ImGuiID DebugLocateId; ImGuiNextItemData NextItemData; ImGuiLastItemData LastItemData; ImGuiNextWindowData NextWindowData; @@ -2318,7 +2416,7 @@ struct ImGuiContext ImGuiActivateFlags NavActivateFlags; ImGuiID NavJustMovedToId; ImGuiID NavJustMovedToFocusScopeId; - ImGuiModFlags NavJustMovedToKeyMods; + ImGuiKeyChord NavJustMovedToKeyMods; ImGuiID NavNextActivateId; ImGuiActivateFlags NavNextActivateFlags; ImGuiInputSource NavInputSource; @@ -2337,7 +2435,7 @@ struct ImGuiContext bool NavMoveForwardToNextFrame; ImGuiNavMoveFlags NavMoveFlags; ImGuiScrollFlags NavMoveScrollFlags; - ImGuiModFlags NavMoveKeyMods; + ImGuiKeyChord NavMoveKeyMods; ImGuiDir NavMoveDir; ImGuiDir NavMoveDirForDebug; ImGuiDir NavMoveClipDir; @@ -2350,12 +2448,16 @@ struct ImGuiContext ImGuiNavItemData NavMoveResultLocalVisible; ImGuiNavItemData NavMoveResultOther; ImGuiNavItemData NavTabbingResultFirst; + ImGuiKeyChord ConfigNavWindowingKeyNext; + ImGuiKeyChord ConfigNavWindowingKeyPrev; ImGuiWindow* NavWindowingTarget; ImGuiWindow* NavWindowingTargetAnim; ImGuiWindow* NavWindowingListWindow; float NavWindowingTimer; float NavWindowingHighlightAlpha; bool NavWindowingToggleLayer; + ImVec2 NavWindowingAccumDeltaPos; + ImVec2 NavWindowingAccumDeltaSize; float DimBgRatio; ImGuiMouseCursor MouseCursor; bool DragDropActive; @@ -2387,6 +2489,10 @@ struct ImGuiContext ImPool_ImGuiTabBar TabBars; ImVector_ImGuiPtrOrIndex CurrentTabBarStack; ImVector_ImGuiShrinkWidthItem ShrinkWidthBuffer; + ImGuiID HoverDelayId; + ImGuiID HoverDelayIdPreviousFrame; + float HoverDelayTimer; + float HoverDelayClearTimer; ImVec2 MouseLastValidPos; ImGuiInputTextState InputTextState; ImFont InputTextPasswordFont; @@ -2407,7 +2513,6 @@ struct ImGuiContext float DisabledAlphaBackup; short DisabledStackSize; short TooltipOverrideCount; - float TooltipSlowDelay; ImVector_char ClipboardHandlerData; ImVector_ImGuiID MenusIdSubmittedThisFrame; ImGuiPlatformImeData PlatformImeData; @@ -2436,11 +2541,15 @@ struct ImGuiContext int LogDepthToExpandDefault; ImGuiDebugLogFlags DebugLogFlags; ImGuiTextBuffer DebugLogBuf; + ImGuiTextIndex DebugLogIndex; + ImU8 DebugLocateFrames; bool DebugItemPickerActive; + ImU8 DebugItemPickerMouseButton; ImGuiID DebugItemPickerBreakId; ImGuiMetricsConfig DebugMetricsConfig; ImGuiStackTool DebugStackTool; - float FramerateSecPerFrame[120]; + ImGuiDockNode* DebugHoveredDockNode; + float FramerateSecPerFrame[60]; int FramerateSecPerFrameIdx; int FramerateSecPerFrameCount; float FramerateSecPerFrameAccum; @@ -2461,6 +2570,7 @@ struct ImGuiWindowTempData float CurrLineTextBaseOffset; float PrevLineTextBaseOffset; bool IsSameLine; + bool IsSetPos; ImVec1 Indent; ImVec1 ColumnsOffset; ImVec1 GroupOffset; @@ -2468,7 +2578,6 @@ struct ImGuiWindowTempData ImGuiNavLayer NavLayerCurrent; short NavLayersActiveMask; short NavLayersActiveMaskNext; - ImGuiID NavFocusScopeIdCurrent; bool NavHideHighlightOneFrame; bool NavHasScroll; bool MenuBarAppending; @@ -2533,6 +2642,7 @@ struct ImGuiWindow bool HasCloseButton; signed char ResizeBorderHeld; short BeginCount; + short BeginCountPreviousFrame; short BeginOrderWithinParent; short BeginOrderWithinContext; short FocusOrder; @@ -2583,6 +2693,7 @@ struct ImGuiWindow ImGuiWindow* NavLastChildNavWindow; ImGuiID NavLastIds[ImGuiNavLayer_COUNT]; ImRect NavRectRel[ImGuiNavLayer_COUNT]; + ImGuiID NavRootFocusScopeId; int MemoryDrawListIdxCapacity; int MemoryDrawListVtxCapacity; bool MemoryCompacted; @@ -2601,14 +2712,14 @@ struct ImGuiWindow typedef enum { ImGuiTabBarFlags_DockNode = 1 << 20, ImGuiTabBarFlags_IsFocused = 1 << 21, - ImGuiTabBarFlags_SaveSettings = 1 << 22 + ImGuiTabBarFlags_SaveSettings = 1 << 22, }ImGuiTabBarFlagsPrivate_; typedef enum { ImGuiTabItemFlags_SectionMask_ = ImGuiTabItemFlags_Leading | ImGuiTabItemFlags_Trailing, ImGuiTabItemFlags_NoCloseButton = 1 << 20, ImGuiTabItemFlags_Button = 1 << 21, ImGuiTabItemFlags_Unsorted = 1 << 22, - ImGuiTabItemFlags_Preview = 1 << 23 + ImGuiTabItemFlags_Preview = 1 << 23, }ImGuiTabItemFlagsPrivate_; struct ImGuiTabItem { @@ -2915,6 +3026,7 @@ typedef ImVector ImVector_ImGuiGroupData; typedef ImVector ImVector_ImGuiID; typedef ImVector ImVector_ImGuiInputEvent; typedef ImVector ImVector_ImGuiItemFlags; +typedef ImVector ImVector_ImGuiKeyRoutingData; typedef ImVector ImVector_ImGuiListClipperData; typedef ImVector ImVector_ImGuiListClipperRange; typedef ImVector ImVector_ImGuiOldColumnData; @@ -2944,6 +3056,7 @@ typedef ImVector ImVector_ImWchar; typedef ImVector ImVector_char; typedef ImVector ImVector_const_charPtr; typedef ImVector ImVector_float; +typedef ImVector ImVector_int; typedef ImVector ImVector_unsigned_char; #endif //CIMGUI_DEFINE_ENUMS_AND_STRUCTS CIMGUI_API ImVec2* ImVec2_ImVec2_Nil(void); @@ -2997,6 +3110,7 @@ CIMGUI_API void igSetNextWindowSizeConstraints(const ImVec2 size_min,const ImVec CIMGUI_API void igSetNextWindowContentSize(const ImVec2 size); CIMGUI_API void igSetNextWindowCollapsed(bool collapsed,ImGuiCond cond); CIMGUI_API void igSetNextWindowFocus(void); +CIMGUI_API void igSetNextWindowScroll(const ImVec2 scroll); CIMGUI_API void igSetNextWindowBgAlpha(float alpha); CIMGUI_API void igSetNextWindowViewport(ImGuiID viewport_id); CIMGUI_API void igSetWindowPos_Vec2(const ImVec2 pos,ImGuiCond cond); @@ -3095,8 +3209,6 @@ CIMGUI_API bool igButton(const char* label,const ImVec2 size); CIMGUI_API bool igSmallButton(const char* label); CIMGUI_API bool igInvisibleButton(const char* str_id,const ImVec2 size,ImGuiButtonFlags flags); CIMGUI_API bool igArrowButton(const char* str_id,ImGuiDir dir); -CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col); -CIMGUI_API bool igImageButton(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,int frame_padding,const ImVec4 bg_col,const ImVec4 tint_col); CIMGUI_API bool igCheckbox(const char* label,bool* v); CIMGUI_API bool igCheckboxFlags_IntPtr(const char* label,int* flags,int flags_value); CIMGUI_API bool igCheckboxFlags_UintPtr(const char* label,unsigned int* flags,unsigned int flags_value); @@ -3104,6 +3216,8 @@ CIMGUI_API bool igRadioButton_Bool(const char* label,bool active); CIMGUI_API bool igRadioButton_IntPtr(const char* label,int* v,int v_button); CIMGUI_API void igProgressBar(float fraction,const ImVec2 size_arg,const char* overlay); CIMGUI_API void igBullet(void); +CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col); +CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); CIMGUI_API bool igBeginCombo(const char* label,const char* preview_value,ImGuiComboFlags flags); CIMGUI_API void igEndCombo(void); CIMGUI_API bool igCombo_Str_arr(const char* label,int* current_item,const char* const items[],int items_count,int popup_max_height_in_items); @@ -3302,15 +3416,15 @@ CIMGUI_API void igColorConvertU32ToFloat4(ImVec4 *pOut,ImU32 in); CIMGUI_API ImU32 igColorConvertFloat4ToU32(const ImVec4 in); CIMGUI_API void igColorConvertRGBtoHSV(float r,float g,float b,float* out_h,float* out_s,float* out_v); CIMGUI_API void igColorConvertHSVtoRGB(float h,float s,float v,float* out_r,float* out_g,float* out_b); -CIMGUI_API bool igIsKeyDown(ImGuiKey key); -CIMGUI_API bool igIsKeyPressed(ImGuiKey key,bool repeat); -CIMGUI_API bool igIsKeyReleased(ImGuiKey key); +CIMGUI_API bool igIsKeyDown_Nil(ImGuiKey key); +CIMGUI_API bool igIsKeyPressed_Bool(ImGuiKey key,bool repeat); +CIMGUI_API bool igIsKeyReleased_Nil(ImGuiKey key); CIMGUI_API int igGetKeyPressedAmount(ImGuiKey key,float repeat_delay,float rate); CIMGUI_API const char* igGetKeyName(ImGuiKey key); CIMGUI_API void igSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard); -CIMGUI_API bool igIsMouseDown(ImGuiMouseButton button); -CIMGUI_API bool igIsMouseClicked(ImGuiMouseButton button,bool repeat); -CIMGUI_API bool igIsMouseReleased(ImGuiMouseButton button); +CIMGUI_API bool igIsMouseDown_Nil(ImGuiMouseButton button); +CIMGUI_API bool igIsMouseClicked_Bool(ImGuiMouseButton button,bool repeat); +CIMGUI_API bool igIsMouseReleased_Nil(ImGuiMouseButton button); CIMGUI_API bool igIsMouseDoubleClicked(ImGuiMouseButton button); CIMGUI_API int igGetMouseClickedCount(ImGuiMouseButton button); CIMGUI_API bool igIsMouseHoveringRect(const ImVec2 r_min,const ImVec2 r_max,bool clip); @@ -3448,7 +3562,7 @@ CIMGUI_API void ImDrawListSplitter_ClearFreeMemory(ImDrawListSplitter* self); CIMGUI_API void ImDrawListSplitter_Split(ImDrawListSplitter* self,ImDrawList* draw_list,int count); CIMGUI_API void ImDrawListSplitter_Merge(ImDrawListSplitter* self,ImDrawList* draw_list); CIMGUI_API void ImDrawListSplitter_SetCurrentChannel(ImDrawListSplitter* self,ImDrawList* draw_list,int channel_idx); -CIMGUI_API ImDrawList* ImDrawList_ImDrawList(const ImDrawListSharedData* shared_data); +CIMGUI_API ImDrawList* ImDrawList_ImDrawList(ImDrawListSharedData* shared_data); CIMGUI_API void ImDrawList_destroy(ImDrawList* self); CIMGUI_API void ImDrawList_PushClipRect(ImDrawList* self,const ImVec2 clip_rect_min,const ImVec2 clip_rect_max,bool intersect_with_current_clip_rect); CIMGUI_API void ImDrawList_PushClipRectFullScreen(ImDrawList* self); @@ -3549,6 +3663,7 @@ CIMGUI_API void ImFontAtlas_GetTexDataAsRGBA32(ImFontAtlas* self,unsigned char** CIMGUI_API bool ImFontAtlas_IsBuilt(ImFontAtlas* self); CIMGUI_API void ImFontAtlas_SetTexID(ImFontAtlas* self,ImTextureID id); CIMGUI_API const ImWchar* ImFontAtlas_GetGlyphRangesDefault(ImFontAtlas* self); +CIMGUI_API const ImWchar* ImFontAtlas_GetGlyphRangesGreek(ImFontAtlas* self); CIMGUI_API const ImWchar* ImFontAtlas_GetGlyphRangesKorean(ImFontAtlas* self); CIMGUI_API const ImWchar* ImFontAtlas_GetGlyphRangesJapanese(ImFontAtlas* self); CIMGUI_API const ImWchar* ImFontAtlas_GetGlyphRangesChineseFull(ImFontAtlas* self); @@ -3589,7 +3704,7 @@ CIMGUI_API ImGuiPlatformMonitor* ImGuiPlatformMonitor_ImGuiPlatformMonitor(void) CIMGUI_API void ImGuiPlatformMonitor_destroy(ImGuiPlatformMonitor* self); CIMGUI_API ImGuiPlatformImeData* ImGuiPlatformImeData_ImGuiPlatformImeData(void); CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self); -CIMGUI_API int igGetKeyIndex(ImGuiKey key); +CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key); CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImU32 seed); CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImU32 seed); CIMGUI_API void igImQsort(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*)); @@ -3609,6 +3724,7 @@ CIMGUI_API const ImWchar* igImStrbolW(const ImWchar* buf_mid_line,const ImWchar* CIMGUI_API const char* igImStristr(const char* haystack,const char* haystack_end,const char* needle,const char* needle_end); CIMGUI_API void igImStrTrimBlanks(char* str); CIMGUI_API const char* igImStrSkipBlank(const char* str); +CIMGUI_API char igImToUpper(char c); CIMGUI_API bool igImCharIsBlankA(char c); CIMGUI_API bool igImCharIsBlankW(unsigned int c); CIMGUI_API int igImFormatString(char* buf,size_t buf_size,const char* fmt,...); @@ -3720,6 +3836,11 @@ CIMGUI_API void ImBitVector_Clear(ImBitVector* self); CIMGUI_API bool ImBitVector_TestBit(ImBitVector* self,int n); CIMGUI_API void ImBitVector_SetBit(ImBitVector* self,int n); CIMGUI_API void ImBitVector_ClearBit(ImBitVector* self,int n); +CIMGUI_API void ImGuiTextIndex_clear(ImGuiTextIndex* self); +CIMGUI_API int ImGuiTextIndex_size(ImGuiTextIndex* self); +CIMGUI_API const char* ImGuiTextIndex_get_line_begin(ImGuiTextIndex* self,const char* base,int n); +CIMGUI_API const char* ImGuiTextIndex_get_line_end(ImGuiTextIndex* self,const char* base,int n); +CIMGUI_API void ImGuiTextIndex_append(ImGuiTextIndex* self,const char* base,int old_size,int new_size); CIMGUI_API ImDrawListSharedData* ImDrawListSharedData_ImDrawListSharedData(void); CIMGUI_API void ImDrawListSharedData_destroy(ImDrawListSharedData* self); CIMGUI_API void ImDrawListSharedData_SetCircleTessellationMaxError(ImDrawListSharedData* self,float max_error); @@ -3772,6 +3893,13 @@ CIMGUI_API void ImGuiPtrOrIndex_destroy(ImGuiPtrOrIndex* self); CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(int index); CIMGUI_API ImGuiInputEvent* ImGuiInputEvent_ImGuiInputEvent(void); CIMGUI_API void ImGuiInputEvent_destroy(ImGuiInputEvent* self); +CIMGUI_API ImGuiKeyRoutingData* ImGuiKeyRoutingData_ImGuiKeyRoutingData(void); +CIMGUI_API void ImGuiKeyRoutingData_destroy(ImGuiKeyRoutingData* self); +CIMGUI_API ImGuiKeyRoutingTable* ImGuiKeyRoutingTable_ImGuiKeyRoutingTable(void); +CIMGUI_API void ImGuiKeyRoutingTable_destroy(ImGuiKeyRoutingTable* self); +CIMGUI_API void ImGuiKeyRoutingTable_Clear(ImGuiKeyRoutingTable* self); +CIMGUI_API ImGuiKeyOwnerData* ImGuiKeyOwnerData_ImGuiKeyOwnerData(void); +CIMGUI_API void ImGuiKeyOwnerData_destroy(ImGuiKeyOwnerData* self); CIMGUI_API ImGuiListClipperRange ImGuiListClipperRange_FromIndices(int min,int max); CIMGUI_API ImGuiListClipperRange ImGuiListClipperRange_FromPositions(float y1,float y2,int off_min,int off_max); CIMGUI_API ImGuiListClipperData* ImGuiListClipperData_ImGuiListClipperData(void); @@ -3909,7 +4037,6 @@ CIMGUI_API ImGuiWindowSettings* igFindOrCreateWindowSettings(const char* name); CIMGUI_API void igAddSettingsHandler(const ImGuiSettingsHandler* handler); CIMGUI_API void igRemoveSettingsHandler(const char* type_name); CIMGUI_API ImGuiSettingsHandler* igFindSettingsHandler(const char* type_name); -CIMGUI_API void igSetNextWindowScroll(const ImVec2 scroll); CIMGUI_API void igSetScrollX_WindowPtr(ImGuiWindow* window,float scroll_x); CIMGUI_API void igSetScrollY_WindowPtr(ImGuiWindow* window,float scroll_y); CIMGUI_API void igSetScrollFromPosX_WindowPtr(ImGuiWindow* window,float local_x,float center_x_ratio); @@ -3978,32 +4105,40 @@ CIMGUI_API void igNavMoveRequestResolveWithLastItem(ImGuiNavItemData* result); CIMGUI_API void igNavMoveRequestCancel(void); CIMGUI_API void igNavMoveRequestApplyResult(void); CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlags move_flags); -CIMGUI_API const char* igGetNavInputName(ImGuiNavInput n); -CIMGUI_API float igGetNavInputAmount(ImGuiNavInput n,ImGuiNavReadMode mode); -CIMGUI_API void igGetNavInputAmount2d(ImVec2 *pOut,ImGuiNavDirSourceFlags dir_sources,ImGuiNavReadMode mode,float slow_factor,float fast_factor); -CIMGUI_API int igCalcTypematicRepeatAmount(float t0,float t1,float repeat_delay,float repeat_rate); CIMGUI_API void igActivateItem(ImGuiID id); CIMGUI_API void igSetNavWindow(ImGuiWindow* window); CIMGUI_API void igSetNavID(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel); -CIMGUI_API void igPushFocusScope(ImGuiID id); -CIMGUI_API void igPopFocusScope(void); -CIMGUI_API ImGuiID igGetFocusedFocusScope(void); -CIMGUI_API ImGuiID igGetFocusScope(void); CIMGUI_API bool igIsNamedKey(ImGuiKey key); +CIMGUI_API bool igIsNamedKeyOrModKey(ImGuiKey key); CIMGUI_API bool igIsLegacyKey(ImGuiKey key); CIMGUI_API bool igIsGamepadKey(ImGuiKey key); +CIMGUI_API bool igIsAliasKey(ImGuiKey key); +CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiKey key); CIMGUI_API ImGuiKeyData* igGetKeyData(ImGuiKey key); -CIMGUI_API void igSetItemUsingMouseWheel(void); -CIMGUI_API void igSetActiveIdUsingNavAndKeys(void); -CIMGUI_API bool igIsActiveIdUsingNavDir(ImGuiDir dir); -CIMGUI_API bool igIsActiveIdUsingNavInput(ImGuiNavInput input); -CIMGUI_API bool igIsActiveIdUsingKey(ImGuiKey key); -CIMGUI_API void igSetActiveIdUsingKey(ImGuiKey key); +CIMGUI_API void igGetKeyChordName(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size); +CIMGUI_API ImGuiKey igMouseButtonToKey(ImGuiMouseButton button); CIMGUI_API bool igIsMouseDragPastThreshold(ImGuiMouseButton button,float lock_threshold); -CIMGUI_API bool igIsNavInputDown(ImGuiNavInput n); -CIMGUI_API bool igIsNavInputTest(ImGuiNavInput n,ImGuiNavReadMode rm); -CIMGUI_API ImGuiModFlags igGetMergedModFlags(void); -CIMGUI_API bool igIsKeyPressedMap(ImGuiKey key,bool repeat); +CIMGUI_API void igGetKeyVector2d(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down); +CIMGUI_API float igGetNavTweakPressedAmount(ImGuiAxis axis); +CIMGUI_API int igCalcTypematicRepeatAmount(float t0,float t1,float repeat_delay,float repeat_rate); +CIMGUI_API void igGetTypematicRepeatRate(ImGuiInputFlags flags,float* repeat_delay,float* repeat_rate); +CIMGUI_API void igSetActiveIdUsingAllKeyboardKeys(void); +CIMGUI_API bool igIsActiveIdUsingNavDir(ImGuiDir dir); +CIMGUI_API ImGuiID igGetKeyOwner(ImGuiKey key); +CIMGUI_API void igSetKeyOwner(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API void igSetItemKeyOwner(ImGuiKey key,ImGuiInputFlags flags); +CIMGUI_API bool igTestKeyOwner(ImGuiKey key,ImGuiID owner_id); +CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiKey key); +CIMGUI_API bool igIsKeyDown_ID(ImGuiKey key,ImGuiID owner_id); +CIMGUI_API bool igIsKeyPressed_ID(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API bool igIsKeyReleased_ID(ImGuiKey key,ImGuiID owner_id); +CIMGUI_API bool igIsMouseDown_ID(ImGuiMouseButton button,ImGuiID owner_id); +CIMGUI_API bool igIsMouseClicked_ID(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API bool igIsMouseReleased_ID(ImGuiMouseButton button,ImGuiID owner_id); +CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API bool igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API bool igTestShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id); +CIMGUI_API ImGuiKeyRoutingData* igGetShortcutRoutingData(ImGuiKeyChord key_chord); CIMGUI_API void igDockContextInitialize(ImGuiContext* ctx); CIMGUI_API void igDockContextShutdown(ImGuiContext* ctx); CIMGUI_API void igDockContextClearNodes(ImGuiContext* ctx,ImGuiID root_id,bool clear_settings_refs); @@ -4015,7 +4150,8 @@ CIMGUI_API ImGuiID igDockContextGenNodeID(ImGuiContext* ctx); CIMGUI_API void igDockContextQueueDock(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer); CIMGUI_API void igDockContextQueueUndockWindow(ImGuiContext* ctx,ImGuiWindow* window); CIMGUI_API void igDockContextQueueUndockNode(ImGuiContext* ctx,ImGuiDockNode* node); -CIMGUI_API bool igDockContextCalcDropPosForDocking(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos); +CIMGUI_API bool igDockContextCalcDropPosForDocking(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos); +CIMGUI_API ImGuiDockNode* igDockContextFindNodeByID(ImGuiContext* ctx,ImGuiID id); CIMGUI_API bool igDockNodeBeginAmendTabBar(ImGuiDockNode* node); CIMGUI_API void igDockNodeEndAmendTabBar(void); CIMGUI_API ImGuiDockNode* igDockNodeGetRootNode(ImGuiDockNode* node); @@ -4042,10 +4178,14 @@ CIMGUI_API void igDockBuilderCopyDockSpace(ImGuiID src_dockspace_id,ImGuiID dst_ CIMGUI_API void igDockBuilderCopyNode(ImGuiID src_node_id,ImGuiID dst_node_id,ImVector_ImGuiID* out_node_remap_pairs); CIMGUI_API void igDockBuilderCopyWindowSettings(const char* src_name,const char* dst_name); CIMGUI_API void igDockBuilderFinish(ImGuiID node_id); +CIMGUI_API void igPushFocusScope(ImGuiID id); +CIMGUI_API void igPopFocusScope(void); +CIMGUI_API ImGuiID igGetCurrentFocusScope(void); CIMGUI_API bool igIsDragDropActive(void); CIMGUI_API bool igBeginDragDropTargetCustom(const ImRect bb,ImGuiID id); CIMGUI_API void igClearDragDrop(void); CIMGUI_API bool igIsDragDropPayloadBeingAccepted(void); +CIMGUI_API void igRenderDragDropTargetRect(const ImRect bb); CIMGUI_API void igSetWindowClipRectBeforeSetChannel(ImGuiWindow* window,const ImRect clip_rect); CIMGUI_API void igBeginColumns(const char* str_id,int count,ImGuiOldColumnFlags flags); CIMGUI_API void igEndColumns(void); @@ -4074,6 +4214,7 @@ CIMGUI_API void igTableUpdateBorders(ImGuiTable* table); CIMGUI_API void igTableUpdateColumnsWeightFromWidth(ImGuiTable* table); CIMGUI_API void igTableDrawBorders(ImGuiTable* table); CIMGUI_API void igTableDrawContextMenu(ImGuiTable* table); +CIMGUI_API bool igTableBeginContextMenuPopup(ImGuiTable* table); CIMGUI_API void igTableMergeDrawChannels(ImGuiTable* table); CIMGUI_API ImGuiTableInstanceData* igTableGetInstanceData(ImGuiTable* table,int instance_no); CIMGUI_API void igTableSortSpecsSanitize(ImGuiTable* table); @@ -4112,7 +4253,8 @@ CIMGUI_API void igTabBarQueueReorder(ImGuiTabBar* tab_bar,const ImGuiTabItem* ta CIMGUI_API void igTabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos); CIMGUI_API bool igTabBarProcessReorder(ImGuiTabBar* tab_bar); CIMGUI_API bool igTabItemEx(ImGuiTabBar* tab_bar,const char* label,bool* p_open,ImGuiTabItemFlags flags,ImGuiWindow* docked_window); -CIMGUI_API void igTabItemCalcSize(ImVec2 *pOut,const char* label,bool has_close_button); +CIMGUI_API void igTabItemCalcSize_Str(ImVec2 *pOut,const char* label,bool has_close_button_or_unsaved_marker); +CIMGUI_API void igTabItemCalcSize_WindowPtr(ImVec2 *pOut,ImGuiWindow* window); CIMGUI_API void igTabItemBackground(ImDrawList* draw_list,const ImRect bb,ImGuiTabItemFlags flags,ImU32 col); CIMGUI_API void igTabItemLabelAndCloseButton(ImDrawList* draw_list,const ImRect bb,ImGuiTabItemFlags flags,ImVec2 frame_padding,const char* label,ImGuiID tab_id,ImGuiID close_button_id,bool is_contents_visible,bool* out_just_closed,bool* out_text_clipped); CIMGUI_API void igRenderText(ImVec2 pos,const char* text,const char* text_end,bool hide_text_after_hash); @@ -4141,7 +4283,7 @@ CIMGUI_API bool igCollapseButton(ImGuiID id,const ImVec2 pos,ImGuiDockNode* dock CIMGUI_API bool igArrowButtonEx(const char* str_id,ImGuiDir dir,ImVec2 size_arg,ImGuiButtonFlags flags); CIMGUI_API void igScrollbar(ImGuiAxis axis); CIMGUI_API bool igScrollbarEx(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags flags); -CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec2 padding,const ImVec4 bg_col,const ImVec4 tint_col); +CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); CIMGUI_API void igGetWindowScrollbarRect(ImRect *pOut,ImGuiWindow* window,ImGuiAxis axis); CIMGUI_API ImGuiID igGetWindowScrollbarID(ImGuiWindow* window,ImGuiAxis axis); CIMGUI_API ImGuiID igGetWindowResizeCornerID(ImGuiWindow* window,int n); @@ -4154,8 +4296,9 @@ CIMGUI_API bool igDragBehavior(ImGuiID id,ImGuiDataType data_type,void* p_v,floa CIMGUI_API bool igSliderBehavior(const ImRect bb,ImGuiID id,ImGuiDataType data_type,void* p_v,const void* p_min,const void* p_max,const char* format,ImGuiSliderFlags flags,ImRect* out_grab_bb); CIMGUI_API bool igSplitterBehavior(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend,float hover_visibility_delay,ImU32 bg_col); CIMGUI_API bool igTreeNodeBehavior(ImGuiID id,ImGuiTreeNodeFlags flags,const char* label,const char* label_end); -CIMGUI_API bool igTreeNodeBehaviorIsOpen(ImGuiID id,ImGuiTreeNodeFlags flags); CIMGUI_API void igTreePushOverrideID(ImGuiID id); +CIMGUI_API void igTreeNodeSetOpen(ImGuiID id,bool open); +CIMGUI_API bool igTreeNodeUpdateNextOpen(ImGuiID id,ImGuiTreeNodeFlags flags); 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,const void* arg_1,const void* arg_2); @@ -4180,6 +4323,10 @@ CIMGUI_API void igDebugLog(const char* fmt,...); CIMGUI_API void igDebugLogV(const char* fmt,va_list args); CIMGUI_API void igErrorCheckEndFrameRecover(ImGuiErrorLogCallback log_callback,void* user_data); CIMGUI_API void igErrorCheckEndWindowRecover(ImGuiErrorLogCallback log_callback,void* user_data); +CIMGUI_API void igErrorCheckUsingSetCursorPosToExtendParentBoundaries(void); +CIMGUI_API void igDebugLocateItem(ImGuiID target_id); +CIMGUI_API void igDebugLocateItemOnHover(ImGuiID target_id); +CIMGUI_API void igDebugLocateItemResolveWithLastItem(void); CIMGUI_API void igDebugDrawItemRect(ImU32 col); CIMGUI_API void igDebugStartItemPicker(void); CIMGUI_API void igShowFontAtlas(ImFontAtlas* atlas); @@ -4201,6 +4348,7 @@ CIMGUI_API void igDebugNodeWindowsList(ImVector_ImGuiWindowPtr* windows,const ch CIMGUI_API void igDebugNodeWindowsListByBeginStackParent(ImGuiWindow** windows,int windows_size,ImGuiWindow* parent_in_begin_stack); CIMGUI_API void igDebugNodeViewport(ImGuiViewportP* viewport); CIMGUI_API void igDebugRenderViewportThumbnail(ImDrawList* draw_list,ImGuiViewportP* viewport,const ImRect bb); +CIMGUI_API bool igIsKeyPressedMap(ImGuiKey key,bool repeat); CIMGUI_API const ImFontBuilderIO* igImFontAtlasGetBuilderForStbTruetype(void); CIMGUI_API void igImFontAtlasBuildInit(ImFontAtlas* atlas); CIMGUI_API void igImFontAtlasBuildSetupFont(ImFontAtlas* atlas,ImFont* font,ImFontConfig* font_config,float ascent,float descent); diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 3f3a8fa..110ed49 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -13,7 +13,7 @@ "cimguiname": "ImBitArray_ClearAllBits", "defaults": {}, "funcname": "ClearAllBits", - "location": "imgui_internal:569", + "location": "imgui_internal:576", "ov_cimguiname": "ImBitArray_ClearAllBits", "ret": "void", "signature": "()", @@ -39,7 +39,7 @@ "cimguiname": "ImBitArray_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:573", + "location": "imgui_internal:580", "ov_cimguiname": "ImBitArray_ClearBit", "ret": "void", "signature": "(int)", @@ -57,7 +57,7 @@ "constructor": true, "defaults": {}, "funcname": "ImBitArray", - "location": "imgui_internal:568", + "location": "imgui_internal:575", "ov_cimguiname": "ImBitArray_ImBitArray", "signature": "()", "stname": "ImBitArray", @@ -78,7 +78,7 @@ "cimguiname": "ImBitArray_SetAllBits", "defaults": {}, "funcname": "SetAllBits", - "location": "imgui_internal:570", + "location": "imgui_internal:577", "ov_cimguiname": "ImBitArray_SetAllBits", "ret": "void", "signature": "()", @@ -104,7 +104,7 @@ "cimguiname": "ImBitArray_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:572", + "location": "imgui_internal:579", "ov_cimguiname": "ImBitArray_SetBit", "ret": "void", "signature": "(int)", @@ -134,7 +134,7 @@ "cimguiname": "ImBitArray_SetBitRange", "defaults": {}, "funcname": "SetBitRange", - "location": "imgui_internal:574", + "location": "imgui_internal:581", "ov_cimguiname": "ImBitArray_SetBitRange", "ret": "void", "signature": "(int,int)", @@ -160,7 +160,7 @@ "cimguiname": "ImBitArray_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:571", + "location": "imgui_internal:578", "ov_cimguiname": "ImBitArray_TestBit", "ret": "bool", "signature": "(int)const", @@ -202,7 +202,7 @@ "cimguiname": "ImBitVector_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:584", + "location": "imgui_internal:591", "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -227,7 +227,7 @@ "cimguiname": "ImBitVector_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:587", + "location": "imgui_internal:594", "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -252,7 +252,7 @@ "cimguiname": "ImBitVector_Create", "defaults": {}, "funcname": "Create", - "location": "imgui_internal:583", + "location": "imgui_internal:590", "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -277,7 +277,7 @@ "cimguiname": "ImBitVector_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:586", + "location": "imgui_internal:593", "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -302,7 +302,7 @@ "cimguiname": "ImBitVector_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:585", + "location": "imgui_internal:592", "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -327,7 +327,7 @@ "cimguiname": "ImChunkStream_alloc_chunk", "defaults": {}, "funcname": "alloc_chunk", - "location": "imgui_internal:690", + "location": "imgui_internal:697", "ov_cimguiname": "ImChunkStream_alloc_chunk", "ret": "T*", "signature": "(size_t)", @@ -349,7 +349,7 @@ "cimguiname": "ImChunkStream_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:691", + "location": "imgui_internal:698", "ov_cimguiname": "ImChunkStream_begin", "ret": "T*", "signature": "()", @@ -375,7 +375,7 @@ "cimguiname": "ImChunkStream_chunk_size", "defaults": {}, "funcname": "chunk_size", - "location": "imgui_internal:693", + "location": "imgui_internal:700", "ov_cimguiname": "ImChunkStream_chunk_size", "ret": "int", "signature": "(const T*)", @@ -397,7 +397,7 @@ "cimguiname": "ImChunkStream_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:687", + "location": "imgui_internal:694", "ov_cimguiname": "ImChunkStream_clear", "ret": "void", "signature": "()", @@ -419,7 +419,7 @@ "cimguiname": "ImChunkStream_empty", "defaults": {}, "funcname": "empty", - "location": "imgui_internal:688", + "location": "imgui_internal:695", "ov_cimguiname": "ImChunkStream_empty", "ret": "bool", "signature": "()const", @@ -441,7 +441,7 @@ "cimguiname": "ImChunkStream_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:694", + "location": "imgui_internal:701", "ov_cimguiname": "ImChunkStream_end", "ret": "T*", "signature": "()", @@ -467,7 +467,7 @@ "cimguiname": "ImChunkStream_next_chunk", "defaults": {}, "funcname": "next_chunk", - "location": "imgui_internal:692", + "location": "imgui_internal:699", "ov_cimguiname": "ImChunkStream_next_chunk", "ret": "T*", "signature": "(T*)", @@ -493,7 +493,7 @@ "cimguiname": "ImChunkStream_offset_from_ptr", "defaults": {}, "funcname": "offset_from_ptr", - "location": "imgui_internal:695", + "location": "imgui_internal:702", "ov_cimguiname": "ImChunkStream_offset_from_ptr", "ret": "int", "signature": "(const T*)", @@ -519,7 +519,7 @@ "cimguiname": "ImChunkStream_ptr_from_offset", "defaults": {}, "funcname": "ptr_from_offset", - "location": "imgui_internal:696", + "location": "imgui_internal:703", "ov_cimguiname": "ImChunkStream_ptr_from_offset", "ret": "T*", "signature": "(int)", @@ -541,7 +541,7 @@ "cimguiname": "ImChunkStream_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:689", + "location": "imgui_internal:696", "ov_cimguiname": "ImChunkStream_size", "ret": "int", "signature": "()const", @@ -568,7 +568,7 @@ "cimguiname": "ImChunkStream_swap", "defaults": {}, "funcname": "swap", - "location": "imgui_internal:697", + "location": "imgui_internal:704", "ov_cimguiname": "ImChunkStream_swap", "ret": "void", "signature": "(ImChunkStream_T *)", @@ -609,7 +609,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:2479", + "location": "imgui:2472", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -627,7 +627,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2469", + "location": "imgui:2462", "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -660,7 +660,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:2470", + "location": "imgui:2463", "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -679,7 +679,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2471", + "location": "imgui:2464", "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -712,7 +712,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:2472", + "location": "imgui:2465", "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -731,7 +731,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2473", + "location": "imgui:2466", "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -769,7 +769,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:2478", + "location": "imgui:2471", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -809,7 +809,7 @@ "cimguiname": "ImDrawCmd_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:2527", + "location": "imgui:2520", "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -826,7 +826,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:2524", + "location": "imgui:2517", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -865,7 +865,7 @@ "cimguiname": "ImDrawDataBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:756", + "location": "imgui_internal:780", "ov_cimguiname": "ImDrawDataBuilder_Clear", "ret": "void", "signature": "()", @@ -886,7 +886,7 @@ "cimguiname": "ImDrawDataBuilder_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:757", + "location": "imgui_internal:781", "ov_cimguiname": "ImDrawDataBuilder_ClearFreeMemory", "ret": "void", "signature": "()", @@ -907,7 +907,7 @@ "cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", "defaults": {}, "funcname": "FlattenIntoSingleLayer", - "location": "imgui_internal:759", + "location": "imgui_internal:783", "ov_cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", "ret": "void", "signature": "()", @@ -928,7 +928,7 @@ "cimguiname": "ImDrawDataBuilder_GetDrawListCount", "defaults": {}, "funcname": "GetDrawListCount", - "location": "imgui_internal:758", + "location": "imgui_internal:782", "ov_cimguiname": "ImDrawDataBuilder_GetDrawListCount", "ret": "int", "signature": "()const", @@ -949,7 +949,7 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2761", + "location": "imgui:2754", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -970,7 +970,7 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui:2762", + "location": "imgui:2755", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -987,7 +987,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", - "location": "imgui:2760", + "location": "imgui:2753", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -1011,7 +1011,7 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui:2763", + "location": "imgui:2756", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -1047,7 +1047,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSharedData", - "location": "imgui_internal:748", + "location": "imgui_internal:772", "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "signature": "()", "stname": "ImDrawListSharedData" @@ -1071,7 +1071,7 @@ "cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "defaults": {}, "funcname": "SetCircleTessellationMaxError", - "location": "imgui_internal:749", + "location": "imgui_internal:773", "ov_cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "ret": "void", "signature": "(float)", @@ -1111,7 +1111,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2572", + "location": "imgui:2565", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -1132,7 +1132,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:2573", + "location": "imgui:2566", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -1149,7 +1149,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:2570", + "location": "imgui:2563", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -1173,7 +1173,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:2575", + "location": "imgui:2568", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -1202,7 +1202,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:2576", + "location": "imgui:2569", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1231,7 +1231,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:2574", + "location": "imgui:2567", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1251,7 +1251,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2571", + "location": "imgui:2564", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -1303,7 +1303,7 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", - "location": "imgui:2675", + "location": "imgui:2668", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1350,7 +1350,7 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", - "location": "imgui:2676", + "location": "imgui:2669", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1379,7 +1379,7 @@ "cimguiname": "ImDrawList_AddCallback", "defaults": {}, "funcname": "AddCallback", - "location": "imgui:2700", + "location": "imgui:2693", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -1423,7 +1423,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:2667", + "location": "imgui:2660", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1462,7 +1462,7 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:2668", + "location": "imgui:2661", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1495,7 +1495,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:2674", + "location": "imgui:2667", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1516,7 +1516,7 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui:2701", + "location": "imgui:2694", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -1565,7 +1565,7 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:2682", + "location": "imgui:2675", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1632,7 +1632,7 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:2683", + "location": "imgui:2676", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1687,7 +1687,7 @@ "flags": "0" }, "funcname": "AddImageRounded", - "location": "imgui:2684", + "location": "imgui:2677", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1726,7 +1726,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:2659", + "location": "imgui:2652", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1769,7 +1769,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:2669", + "location": "imgui:2662", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1806,7 +1806,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:2670", + "location": "imgui:2663", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1847,7 +1847,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", - "location": "imgui:2673", + "location": "imgui:2666", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -1894,7 +1894,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:2663", + "location": "imgui:2656", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1935,7 +1935,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:2664", + "location": "imgui:2657", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1984,7 +1984,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:2660", + "location": "imgui:2653", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -2028,7 +2028,7 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", - "location": "imgui:2661", + "location": "imgui:2654", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -2073,7 +2073,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:2662", + "location": "imgui:2655", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -2112,7 +2112,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2671", + "location": "imgui:2664", "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -2167,7 +2167,7 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:2672", + "location": "imgui:2665", "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -2210,7 +2210,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:2665", + "location": "imgui:2658", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2247,7 +2247,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:2666", + "location": "imgui:2659", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2268,7 +2268,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui:2711", + "location": "imgui:2704", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -2293,7 +2293,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui:2712", + "location": "imgui:2705", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2318,7 +2318,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui:2710", + "location": "imgui:2703", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2339,7 +2339,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", - "location": "imgui:2702", + "location": "imgui:2695", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2364,7 +2364,7 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:2650", + "location": "imgui:2643", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -2390,7 +2390,7 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:2649", + "location": "imgui:2642", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -2400,22 +2400,22 @@ ], "ImDrawList_ImDrawList": [ { - "args": "(const ImDrawListSharedData* shared_data)", + "args": "(ImDrawListSharedData* shared_data)", "argsT": [ { "name": "shared_data", - "type": "const ImDrawListSharedData*" + "type": "ImDrawListSharedData*" } ], - "argsoriginal": "(const ImDrawListSharedData* shared_data)", + "argsoriginal": "(ImDrawListSharedData* shared_data)", "call_args": "(shared_data)", "cimguiname": "ImDrawList_ImDrawList", "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:2641", + "location": "imgui:2634", "ov_cimguiname": "ImDrawList_ImDrawList", - "signature": "(const ImDrawListSharedData*)", + "signature": "(ImDrawListSharedData*)", "stname": "ImDrawList" } ], @@ -2455,7 +2455,7 @@ "num_segments": "0" }, "funcname": "PathArcTo", - "location": "imgui:2693", + "location": "imgui:2686", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2492,7 +2492,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:2694", + "location": "imgui:2687", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2531,7 +2531,7 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", - "location": "imgui:2695", + "location": "imgui:2688", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2566,7 +2566,7 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", - "location": "imgui:2696", + "location": "imgui:2689", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -2587,7 +2587,7 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:2688", + "location": "imgui:2681", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -2612,7 +2612,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:2691", + "location": "imgui:2684", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2637,7 +2637,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:2689", + "location": "imgui:2682", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2662,7 +2662,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:2690", + "location": "imgui:2683", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2702,7 +2702,7 @@ "rounding": "0.0f" }, "funcname": "PathRect", - "location": "imgui:2697", + "location": "imgui:2690", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2738,7 +2738,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:2692", + "location": "imgui:2685", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -2759,7 +2759,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:2646", + "location": "imgui:2639", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2780,7 +2780,7 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": {}, "funcname": "PopTextureID", - "location": "imgui:2648", + "location": "imgui:2641", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -2837,7 +2837,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui:2721", + "location": "imgui:2714", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2870,7 +2870,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", - "location": "imgui:2719", + "location": "imgui:2712", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2911,7 +2911,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui:2720", + "location": "imgui:2713", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2940,7 +2940,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", - "location": "imgui:2717", + "location": "imgui:2710", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -2969,7 +2969,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui:2718", + "location": "imgui:2711", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -3002,7 +3002,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", - "location": "imgui:2724", + "location": "imgui:2717", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3027,7 +3027,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui:2723", + "location": "imgui:2716", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -3060,7 +3060,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui:2722", + "location": "imgui:2715", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3095,7 +3095,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:2644", + "location": "imgui:2637", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", @@ -3116,7 +3116,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:2645", + "location": "imgui:2638", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -3141,7 +3141,7 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": {}, "funcname": "PushTextureID", - "location": "imgui:2647", + "location": "imgui:2640", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -3166,7 +3166,7 @@ "cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", - "location": "imgui:2739", + "location": "imgui:2732", "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -3187,7 +3187,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:2733", + "location": "imgui:2726", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -3208,7 +3208,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:2736", + "location": "imgui:2729", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -3229,7 +3229,7 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": {}, "funcname": "_OnChangedTextureID", - "location": "imgui:2737", + "location": "imgui:2730", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -3250,7 +3250,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:2738", + "location": "imgui:2731", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -3291,7 +3291,7 @@ "cimguiname": "ImDrawList__PathArcToFastEx", "defaults": {}, "funcname": "_PathArcToFastEx", - "location": "imgui:2740", + "location": "imgui:2733", "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -3332,7 +3332,7 @@ "cimguiname": "ImDrawList__PathArcToN", "defaults": {}, "funcname": "_PathArcToN", - "location": "imgui:2741", + "location": "imgui:2734", "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -3353,7 +3353,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:2734", + "location": "imgui:2727", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -3374,7 +3374,7 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:2732", + "location": "imgui:2725", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", @@ -3395,7 +3395,7 @@ "cimguiname": "ImDrawList__TryMergeDrawCmds", "defaults": {}, "funcname": "_TryMergeDrawCmds", - "location": "imgui:2735", + "location": "imgui:2728", "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -3415,7 +3415,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2643", + "location": "imgui:2636", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -3433,7 +3433,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasCustomRect", - "location": "imgui:2834", + "location": "imgui:2827", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -3453,7 +3453,7 @@ "cimguiname": "ImFontAtlasCustomRect_IsPacked", "defaults": {}, "funcname": "IsPacked", - "location": "imgui:2835", + "location": "imgui:2828", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -3519,7 +3519,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", - "location": "imgui:2918", + "location": "imgui:2912", "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -3548,7 +3548,7 @@ "cimguiname": "ImFontAtlas_AddCustomRectRegular", "defaults": {}, "funcname": "AddCustomRectRegular", - "location": "imgui:2917", + "location": "imgui:2911", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -3573,7 +3573,7 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", - "location": "imgui:2868", + "location": "imgui:2861", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3600,7 +3600,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui:2869", + "location": "imgui:2862", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3640,7 +3640,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", - "location": "imgui:2870", + "location": "imgui:2863", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3680,7 +3680,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui:2873", + "location": "imgui:2866", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3724,7 +3724,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui:2872", + "location": "imgui:2865", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3768,7 +3768,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui:2871", + "location": "imgui:2864", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3789,7 +3789,7 @@ "cimguiname": "ImFontAtlas_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2884", + "location": "imgui:2877", "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -3822,7 +3822,7 @@ "cimguiname": "ImFontAtlas_CalcCustomRectUV", "defaults": {}, "funcname": "CalcCustomRectUV", - "location": "imgui:2922", + "location": "imgui:2916", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -3843,7 +3843,7 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2877", + "location": "imgui:2870", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -3864,7 +3864,7 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", - "location": "imgui:2876", + "location": "imgui:2869", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -3885,7 +3885,7 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", - "location": "imgui:2874", + "location": "imgui:2867", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -3906,7 +3906,7 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", - "location": "imgui:2875", + "location": "imgui:2868", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -3931,7 +3931,7 @@ "cimguiname": "ImFontAtlas_GetCustomRectByIndex", "defaults": {}, "funcname": "GetCustomRectByIndex", - "location": "imgui:2919", + "location": "imgui:2913", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -3952,7 +3952,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "defaults": {}, "funcname": "GetGlyphRangesChineseFull", - "location": "imgui:2900", + "location": "imgui:2894", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -3973,7 +3973,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", - "location": "imgui:2901", + "location": "imgui:2895", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -3994,7 +3994,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "defaults": {}, "funcname": "GetGlyphRangesCyrillic", - "location": "imgui:2902", + "location": "imgui:2896", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -4015,13 +4015,34 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui:2897", + "location": "imgui:2890", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", "stname": "ImFontAtlas" } ], + "ImFontAtlas_GetGlyphRangesGreek": [ + { + "args": "(ImFontAtlas* self)", + "argsT": [ + { + "name": "self", + "type": "ImFontAtlas*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImFontAtlas_GetGlyphRangesGreek", + "defaults": {}, + "funcname": "GetGlyphRangesGreek", + "location": "imgui:2891", + "ov_cimguiname": "ImFontAtlas_GetGlyphRangesGreek", + "ret": "const ImWchar*", + "signature": "()", + "stname": "ImFontAtlas" + } + ], "ImFontAtlas_GetGlyphRangesJapanese": [ { "args": "(ImFontAtlas* self)", @@ -4036,7 +4057,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "defaults": {}, "funcname": "GetGlyphRangesJapanese", - "location": "imgui:2899", + "location": "imgui:2893", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -4057,7 +4078,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "defaults": {}, "funcname": "GetGlyphRangesKorean", - "location": "imgui:2898", + "location": "imgui:2892", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -4078,7 +4099,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesThai", "defaults": {}, "funcname": "GetGlyphRangesThai", - "location": "imgui:2903", + "location": "imgui:2897", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -4099,7 +4120,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "defaults": {}, "funcname": "GetGlyphRangesVietnamese", - "location": "imgui:2904", + "location": "imgui:2898", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -4140,7 +4161,7 @@ "cimguiname": "ImFontAtlas_GetMouseCursorTexData", "defaults": {}, "funcname": "GetMouseCursorTexData", - "location": "imgui:2923", + "location": "imgui:2917", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -4179,7 +4200,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", - "location": "imgui:2885", + "location": "imgui:2878", "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4218,7 +4239,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", - "location": "imgui:2886", + "location": "imgui:2879", "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4235,7 +4256,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui:2866", + "location": "imgui:2859", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -4255,7 +4276,7 @@ "cimguiname": "ImFontAtlas_IsBuilt", "defaults": {}, "funcname": "IsBuilt", - "location": "imgui:2887", + "location": "imgui:2880", "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -4280,7 +4301,7 @@ "cimguiname": "ImFontAtlas_SetTexID", "defaults": {}, "funcname": "SetTexID", - "location": "imgui:2888", + "location": "imgui:2881", "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -4300,7 +4321,7 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2867", + "location": "imgui:2860", "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -4318,7 +4339,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui:2794", + "location": "imgui:2787", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -4361,7 +4382,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", - "location": "imgui:2819", + "location": "imgui:2812", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -4386,7 +4407,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", - "location": "imgui:2821", + "location": "imgui:2814", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -4417,7 +4438,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2820", + "location": "imgui:2813", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -4442,7 +4463,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", - "location": "imgui:2822", + "location": "imgui:2815", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -4463,7 +4484,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2816", + "location": "imgui:2809", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4488,7 +4509,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", - "location": "imgui:2817", + "location": "imgui:2810", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4505,7 +4526,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui:2815", + "location": "imgui:2808", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4529,7 +4550,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui:2818", + "location": "imgui:2811", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4613,7 +4634,7 @@ "cimguiname": "ImFont_AddGlyph", "defaults": {}, "funcname": "AddGlyph", - "location": "imgui:3010", + "location": "imgui:3004", "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", @@ -4648,7 +4669,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", - "location": "imgui:3011", + "location": "imgui:3005", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -4669,7 +4690,7 @@ "cimguiname": "ImFont_BuildLookupTable", "defaults": {}, "funcname": "BuildLookupTable", - "location": "imgui:3007", + "location": "imgui:3001", "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -4721,7 +4742,7 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui:3001", + "location": "imgui:2995", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -4759,7 +4780,7 @@ "cimguiname": "ImFont_CalcWordWrapPositionA", "defaults": {}, "funcname": "CalcWordWrapPositionA", - "location": "imgui:3002", + "location": "imgui:2996", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)const", @@ -4780,7 +4801,7 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:3008", + "location": "imgui:3002", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -4805,7 +4826,7 @@ "cimguiname": "ImFont_FindGlyph", "defaults": {}, "funcname": "FindGlyph", - "location": "imgui:2993", + "location": "imgui:2987", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4830,7 +4851,7 @@ "cimguiname": "ImFont_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui:2994", + "location": "imgui:2988", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4855,7 +4876,7 @@ "cimguiname": "ImFont_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui:2995", + "location": "imgui:2989", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)const", @@ -4876,7 +4897,7 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", - "location": "imgui:2997", + "location": "imgui:2991", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -4901,7 +4922,7 @@ "cimguiname": "ImFont_GrowIndex", "defaults": {}, "funcname": "GrowIndex", - "location": "imgui:3009", + "location": "imgui:3003", "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -4918,7 +4939,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", - "location": "imgui:2991", + "location": "imgui:2985", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -4946,7 +4967,7 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui:3013", + "location": "imgui:3007", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -4967,7 +4988,7 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", - "location": "imgui:2996", + "location": "imgui:2990", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -5008,7 +5029,7 @@ "cimguiname": "ImFont_RenderChar", "defaults": {}, "funcname": "RenderChar", - "location": "imgui:3003", + "location": "imgui:2997", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const", @@ -5068,7 +5089,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui:3004", + "location": "imgui:2998", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", @@ -5097,7 +5118,7 @@ "cimguiname": "ImFont_SetGlyphVisible", "defaults": {}, "funcname": "SetGlyphVisible", - "location": "imgui:3012", + "location": "imgui:3006", "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -5117,7 +5138,7 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2992", + "location": "imgui:2986", "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -5135,7 +5156,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiComboPreviewData", - "location": "imgui_internal:977", + "location": "imgui_internal:1012", "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", "signature": "()", "stname": "ImGuiComboPreviewData" @@ -5170,7 +5191,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContextHook", - "location": "imgui_internal:1745", + "location": "imgui_internal:1866", "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5210,7 +5231,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", - "location": "imgui_internal:2030", + "location": "imgui_internal:2169", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5245,7 +5266,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockContext", - "location": "imgui_internal:1575", + "location": "imgui_internal:1695", "ov_cimguiname": "ImGuiDockContext_ImGuiDockContext", "signature": "()", "stname": "ImGuiDockContext" @@ -5285,7 +5306,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockNode", - "location": "imgui_internal:1532", + "location": "imgui_internal:1652", "ov_cimguiname": "ImGuiDockNode_ImGuiDockNode", "signature": "(ImGuiID)", "stname": "ImGuiDockNode" @@ -5305,7 +5326,7 @@ "cimguiname": "ImGuiDockNode_IsCentralNode", "defaults": {}, "funcname": "IsCentralNode", - "location": "imgui_internal:1537", + "location": "imgui_internal:1657", "ov_cimguiname": "ImGuiDockNode_IsCentralNode", "ret": "bool", "signature": "()const", @@ -5326,7 +5347,7 @@ "cimguiname": "ImGuiDockNode_IsDockSpace", "defaults": {}, "funcname": "IsDockSpace", - "location": "imgui_internal:1535", + "location": "imgui_internal:1655", "ov_cimguiname": "ImGuiDockNode_IsDockSpace", "ret": "bool", "signature": "()const", @@ -5347,7 +5368,7 @@ "cimguiname": "ImGuiDockNode_IsEmpty", "defaults": {}, "funcname": "IsEmpty", - "location": "imgui_internal:1542", + "location": "imgui_internal:1662", "ov_cimguiname": "ImGuiDockNode_IsEmpty", "ret": "bool", "signature": "()const", @@ -5368,7 +5389,7 @@ "cimguiname": "ImGuiDockNode_IsFloatingNode", "defaults": {}, "funcname": "IsFloatingNode", - "location": "imgui_internal:1536", + "location": "imgui_internal:1656", "ov_cimguiname": "ImGuiDockNode_IsFloatingNode", "ret": "bool", "signature": "()const", @@ -5389,7 +5410,7 @@ "cimguiname": "ImGuiDockNode_IsHiddenTabBar", "defaults": {}, "funcname": "IsHiddenTabBar", - "location": "imgui_internal:1538", + "location": "imgui_internal:1658", "ov_cimguiname": "ImGuiDockNode_IsHiddenTabBar", "ret": "bool", "signature": "()const", @@ -5410,7 +5431,7 @@ "cimguiname": "ImGuiDockNode_IsLeafNode", "defaults": {}, "funcname": "IsLeafNode", - "location": "imgui_internal:1541", + "location": "imgui_internal:1661", "ov_cimguiname": "ImGuiDockNode_IsLeafNode", "ret": "bool", "signature": "()const", @@ -5431,7 +5452,7 @@ "cimguiname": "ImGuiDockNode_IsNoTabBar", "defaults": {}, "funcname": "IsNoTabBar", - "location": "imgui_internal:1539", + "location": "imgui_internal:1659", "ov_cimguiname": "ImGuiDockNode_IsNoTabBar", "ret": "bool", "signature": "()const", @@ -5452,7 +5473,7 @@ "cimguiname": "ImGuiDockNode_IsRootNode", "defaults": {}, "funcname": "IsRootNode", - "location": "imgui_internal:1534", + "location": "imgui_internal:1654", "ov_cimguiname": "ImGuiDockNode_IsRootNode", "ret": "bool", "signature": "()const", @@ -5473,7 +5494,7 @@ "cimguiname": "ImGuiDockNode_IsSplitNode", "defaults": {}, "funcname": "IsSplitNode", - "location": "imgui_internal:1540", + "location": "imgui_internal:1660", "ov_cimguiname": "ImGuiDockNode_IsSplitNode", "ret": "bool", "signature": "()const", @@ -5498,7 +5519,7 @@ "cimguiname": "ImGuiDockNode_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:1543", + "location": "imgui_internal:1663", "nonUDT": 1, "ov_cimguiname": "ImGuiDockNode_Rect", "ret": "void", @@ -5524,7 +5545,7 @@ "cimguiname": "ImGuiDockNode_SetLocalFlags", "defaults": {}, "funcname": "SetLocalFlags", - "location": "imgui_internal:1545", + "location": "imgui_internal:1665", "ov_cimguiname": "ImGuiDockNode_SetLocalFlags", "ret": "void", "signature": "(ImGuiDockNodeFlags)", @@ -5545,7 +5566,7 @@ "cimguiname": "ImGuiDockNode_UpdateMergedFlags", "defaults": {}, "funcname": "UpdateMergedFlags", - "location": "imgui_internal:1546", + "location": "imgui_internal:1666", "ov_cimguiname": "ImGuiDockNode_UpdateMergedFlags", "ret": "void", "signature": "()", @@ -5565,7 +5586,7 @@ "cimguiname": "ImGuiDockNode_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1533", + "location": "imgui_internal:1653", "ov_cimguiname": "ImGuiDockNode_destroy", "realdestructor": true, "ret": "void", @@ -5591,7 +5612,7 @@ "cimguiname": "ImGuiIO_AddFocusEvent", "defaults": {}, "funcname": "AddFocusEvent", - "location": "imgui:2069", + "location": "imgui:2063", "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -5616,7 +5637,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:2070", + "location": "imgui:2064", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -5641,7 +5662,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:2071", + "location": "imgui:2065", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -5666,7 +5687,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:2072", + "location": "imgui:2066", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -5699,7 +5720,7 @@ "cimguiname": "ImGuiIO_AddKeyAnalogEvent", "defaults": {}, "funcname": "AddKeyAnalogEvent", - "location": "imgui:2064", + "location": "imgui:2058", "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -5728,7 +5749,7 @@ "cimguiname": "ImGuiIO_AddKeyEvent", "defaults": {}, "funcname": "AddKeyEvent", - "location": "imgui:2063", + "location": "imgui:2057", "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -5757,7 +5778,7 @@ "cimguiname": "ImGuiIO_AddMouseButtonEvent", "defaults": {}, "funcname": "AddMouseButtonEvent", - "location": "imgui:2066", + "location": "imgui:2060", "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -5786,7 +5807,7 @@ "cimguiname": "ImGuiIO_AddMousePosEvent", "defaults": {}, "funcname": "AddMousePosEvent", - "location": "imgui:2065", + "location": "imgui:2059", "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", @@ -5811,7 +5832,7 @@ "cimguiname": "ImGuiIO_AddMouseViewportEvent", "defaults": {}, "funcname": "AddMouseViewportEvent", - "location": "imgui:2068", + "location": "imgui:2062", "ov_cimguiname": "ImGuiIO_AddMouseViewportEvent", "ret": "void", "signature": "(ImGuiID)", @@ -5840,7 +5861,7 @@ "cimguiname": "ImGuiIO_AddMouseWheelEvent", "defaults": {}, "funcname": "AddMouseWheelEvent", - "location": "imgui:2067", + "location": "imgui:2061", "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", @@ -5861,7 +5882,7 @@ "cimguiname": "ImGuiIO_ClearInputCharacters", "defaults": {}, "funcname": "ClearInputCharacters", - "location": "imgui:2076", + "location": "imgui:2070", "ov_cimguiname": "ImGuiIO_ClearInputCharacters", "ret": "void", "signature": "()", @@ -5882,7 +5903,7 @@ "cimguiname": "ImGuiIO_ClearInputKeys", "defaults": {}, "funcname": "ClearInputKeys", - "location": "imgui:2077", + "location": "imgui:2071", "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", @@ -5899,7 +5920,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:2153", + "location": "imgui:2146", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -5923,7 +5944,7 @@ "cimguiname": "ImGuiIO_SetAppAcceptingEvents", "defaults": {}, "funcname": "SetAppAcceptingEvents", - "location": "imgui:2075", + "location": "imgui:2069", "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -5962,7 +5983,7 @@ "native_legacy_index": "-1" }, "funcname": "SetKeyEventNativeData", - "location": "imgui:2074", + "location": "imgui:2068", "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -5998,7 +6019,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputEvent", - "location": "imgui_internal:1247", + "location": "imgui_internal:1294", "ov_cimguiname": "ImGuiInputEvent_ImGuiInputEvent", "signature": "()", "stname": "ImGuiInputEvent" @@ -6037,7 +6058,7 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui:2194", + "location": "imgui:2187", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -6066,7 +6087,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:2191", + "location": "imgui:2184", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -6087,7 +6108,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:2195", + "location": "imgui:2188", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -6104,7 +6125,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:2190", + "location": "imgui:2183", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -6138,7 +6159,7 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:2192", + "location": "imgui:2185", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -6159,7 +6180,7 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui:2193", + "location": "imgui:2186", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -6199,7 +6220,7 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1035", + "location": "imgui_internal:1070", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6220,7 +6241,7 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui_internal:1044", + "location": "imgui_internal:1079", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -6241,7 +6262,7 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": {}, "funcname": "ClearText", - "location": "imgui_internal:1034", + "location": "imgui_internal:1069", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -6262,7 +6283,7 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", - "location": "imgui_internal:1041", + "location": "imgui_internal:1076", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -6283,7 +6304,7 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", - "location": "imgui_internal:1042", + "location": "imgui_internal:1077", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -6304,7 +6325,7 @@ "cimguiname": "ImGuiInputTextState_GetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui_internal:1045", + "location": "imgui_internal:1080", "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", "ret": "int", "signature": "()const", @@ -6325,7 +6346,7 @@ "cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "defaults": {}, "funcname": "GetRedoAvailCount", - "location": "imgui_internal:1037", + "location": "imgui_internal:1072", "ov_cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "ret": "int", "signature": "()const", @@ -6346,7 +6367,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionEnd", "defaults": {}, "funcname": "GetSelectionEnd", - "location": "imgui_internal:1047", + "location": "imgui_internal:1082", "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", @@ -6367,7 +6388,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionStart", "defaults": {}, "funcname": "GetSelectionStart", - "location": "imgui_internal:1046", + "location": "imgui_internal:1081", "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", "ret": "int", "signature": "()const", @@ -6388,7 +6409,7 @@ "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "defaults": {}, "funcname": "GetUndoAvailCount", - "location": "imgui_internal:1036", + "location": "imgui_internal:1071", "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "ret": "int", "signature": "()const", @@ -6409,7 +6430,7 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui_internal:1043", + "location": "imgui_internal:1078", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -6426,7 +6447,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextState", - "location": "imgui_internal:1033", + "location": "imgui_internal:1068", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "signature": "()", "stname": "ImGuiInputTextState" @@ -6450,7 +6471,7 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": {}, "funcname": "OnKeyPressed", - "location": "imgui_internal:1038", + "location": "imgui_internal:1073", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", @@ -6471,7 +6492,7 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui_internal:1048", + "location": "imgui_internal:1083", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -6497,6 +6518,132 @@ "stname": "ImGuiInputTextState" } ], + "ImGuiKeyOwnerData_ImGuiKeyOwnerData": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiKeyOwnerData_ImGuiKeyOwnerData", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiKeyOwnerData", + "location": "imgui_internal:1336", + "ov_cimguiname": "ImGuiKeyOwnerData_ImGuiKeyOwnerData", + "signature": "()", + "stname": "ImGuiKeyOwnerData" + } + ], + "ImGuiKeyOwnerData_destroy": [ + { + "args": "(ImGuiKeyOwnerData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiKeyOwnerData*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiKeyOwnerData_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiKeyOwnerData_destroy", + "ret": "void", + "signature": "(ImGuiKeyOwnerData*)", + "stname": "ImGuiKeyOwnerData" + } + ], + "ImGuiKeyRoutingData_ImGuiKeyRoutingData": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiKeyRoutingData_ImGuiKeyRoutingData", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiKeyRoutingData", + "location": "imgui_internal:1312", + "ov_cimguiname": "ImGuiKeyRoutingData_ImGuiKeyRoutingData", + "signature": "()", + "stname": "ImGuiKeyRoutingData" + } + ], + "ImGuiKeyRoutingData_destroy": [ + { + "args": "(ImGuiKeyRoutingData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiKeyRoutingData*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiKeyRoutingData_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiKeyRoutingData_destroy", + "ret": "void", + "signature": "(ImGuiKeyRoutingData*)", + "stname": "ImGuiKeyRoutingData" + } + ], + "ImGuiKeyRoutingTable_Clear": [ + { + "args": "(ImGuiKeyRoutingTable* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiKeyRoutingTable*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiKeyRoutingTable_Clear", + "defaults": {}, + "funcname": "Clear", + "location": "imgui_internal:1324", + "ov_cimguiname": "ImGuiKeyRoutingTable_Clear", + "ret": "void", + "signature": "()", + "stname": "ImGuiKeyRoutingTable" + } + ], + "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiKeyRoutingTable", + "location": "imgui_internal:1323", + "ov_cimguiname": "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", + "signature": "()", + "stname": "ImGuiKeyRoutingTable" + } + ], + "ImGuiKeyRoutingTable_destroy": [ + { + "args": "(ImGuiKeyRoutingTable* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiKeyRoutingTable*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiKeyRoutingTable_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiKeyRoutingTable_destroy", + "ret": "void", + "signature": "(ImGuiKeyRoutingTable*)", + "stname": "ImGuiKeyRoutingTable" + } + ], "ImGuiLastItemData_ImGuiLastItemData": [ { "args": "()", @@ -6507,7 +6654,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiLastItemData", - "location": "imgui_internal:1139", + "location": "imgui_internal:1174", "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", "stname": "ImGuiLastItemData" @@ -6542,7 +6689,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipperData", - "location": "imgui_internal:1286", + "location": "imgui_internal:1412", "ov_cimguiname": "ImGuiListClipperData_ImGuiListClipperData", "signature": "()", "stname": "ImGuiListClipperData" @@ -6566,7 +6713,7 @@ "cimguiname": "ImGuiListClipperData_Reset", "defaults": {}, "funcname": "Reset", - "location": "imgui_internal:1287", + "location": "imgui_internal:1413", "ov_cimguiname": "ImGuiListClipperData_Reset", "ret": "void", "signature": "(ImGuiListClipper*)", @@ -6611,7 +6758,7 @@ "defaults": {}, "funcname": "FromIndices", "is_static_function": true, - "location": "imgui_internal:1273", + "location": "imgui_internal:1399", "ov_cimguiname": "ImGuiListClipperRange_FromIndices", "ret": "ImGuiListClipperRange", "signature": "(int,int)", @@ -6645,7 +6792,7 @@ "defaults": {}, "funcname": "FromPositions", "is_static_function": true, - "location": "imgui_internal:1274", + "location": "imgui_internal:1400", "ov_cimguiname": "ImGuiListClipperRange_FromPositions", "ret": "ImGuiListClipperRange", "signature": "(float,float,int,int)", @@ -6676,7 +6823,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui:2427", + "location": "imgui:2420", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -6697,7 +6844,7 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", - "location": "imgui:2428", + "location": "imgui:2421", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", @@ -6726,7 +6873,7 @@ "cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", "defaults": {}, "funcname": "ForceDisplayRangeByIndices", - "location": "imgui:2432", + "location": "imgui:2425", "ov_cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", "ret": "void", "signature": "(int,int)", @@ -6743,7 +6890,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:2425", + "location": "imgui:2418", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" @@ -6763,7 +6910,7 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", - "location": "imgui:2429", + "location": "imgui:2422", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -6783,7 +6930,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2426", + "location": "imgui:2419", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -6809,7 +6956,7 @@ "cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "defaults": {}, "funcname": "CalcNextTotalWidth", - "location": "imgui_internal:1011", + "location": "imgui_internal:1046", "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "ret": "void", "signature": "(bool)", @@ -6846,7 +6993,7 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", - "location": "imgui_internal:1010", + "location": "imgui_internal:1045", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float,float)", @@ -6863,7 +7010,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", - "location": "imgui_internal:1008", + "location": "imgui_internal:1043", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -6891,7 +7038,7 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", - "location": "imgui_internal:1009", + "location": "imgui_internal:1044", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(float,bool)", @@ -6927,7 +7074,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMetricsConfig", - "location": "imgui_internal:1696", + "location": "imgui_internal:1817", "ov_cimguiname": "ImGuiMetricsConfig_ImGuiMetricsConfig", "signature": "()", "stname": "ImGuiMetricsConfig" @@ -6966,7 +7113,7 @@ "cimguiname": "ImGuiNavItemData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1372", + "location": "imgui_internal:1489", "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", @@ -6983,7 +7130,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNavItemData", - "location": "imgui_internal:1371", + "location": "imgui_internal:1488", "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", "stname": "ImGuiNavItemData" @@ -7022,7 +7169,7 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1126", + "location": "imgui_internal:1161", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -7039,7 +7186,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", - "location": "imgui_internal:1125", + "location": "imgui_internal:1160", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -7078,7 +7225,7 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1107", + "location": "imgui_internal:1142", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -7095,7 +7242,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", - "location": "imgui_internal:1106", + "location": "imgui_internal:1141", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -7130,7 +7277,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumnData", - "location": "imgui_internal:1407", + "location": "imgui_internal:1524", "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -7165,7 +7312,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumns", - "location": "imgui_internal:1428", + "location": "imgui_internal:1545", "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -7200,7 +7347,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:2291", + "location": "imgui:2284", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -7239,7 +7386,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2245", + "location": "imgui:2238", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -7256,7 +7403,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:2244", + "location": "imgui:2237", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -7280,7 +7427,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:2246", + "location": "imgui:2239", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -7301,7 +7448,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:2248", + "location": "imgui:2241", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -7322,7 +7469,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:2247", + "location": "imgui:2240", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -7358,7 +7505,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformIO", - "location": "imgui:3187", + "location": "imgui:3181", "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", "signature": "()", "stname": "ImGuiPlatformIO" @@ -7393,7 +7540,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformImeData", - "location": "imgui:3207", + "location": "imgui:3201", "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -7428,7 +7575,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformMonitor", - "location": "imgui:3197", + "location": "imgui:3191", "ov_cimguiname": "ImGuiPlatformMonitor_ImGuiPlatformMonitor", "signature": "()", "stname": "ImGuiPlatformMonitor" @@ -7463,7 +7610,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", - "location": "imgui_internal:1063", + "location": "imgui_internal:1098", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -7503,7 +7650,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1179", + "location": "imgui_internal:1214", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -7522,7 +7669,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1180", + "location": "imgui_internal:1215", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -7557,7 +7704,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", - "location": "imgui_internal:1661", + "location": "imgui_internal:1781", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -7592,7 +7739,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackLevelInfo", - "location": "imgui_internal:1714", + "location": "imgui_internal:1835", "ov_cimguiname": "ImGuiStackLevelInfo_ImGuiStackLevelInfo", "signature": "()", "stname": "ImGuiStackLevelInfo" @@ -7631,7 +7778,7 @@ "cimguiname": "ImGuiStackSizes_CompareWithCurrentState", "defaults": {}, "funcname": "CompareWithCurrentState", - "location": "imgui_internal:1156", + "location": "imgui_internal:1191", "ov_cimguiname": "ImGuiStackSizes_CompareWithCurrentState", "ret": "void", "signature": "()", @@ -7648,7 +7795,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackSizes", - "location": "imgui_internal:1154", + "location": "imgui_internal:1189", "ov_cimguiname": "ImGuiStackSizes_ImGuiStackSizes", "signature": "()", "stname": "ImGuiStackSizes" @@ -7668,7 +7815,7 @@ "cimguiname": "ImGuiStackSizes_SetToCurrentState", "defaults": {}, "funcname": "SetToCurrentState", - "location": "imgui_internal:1155", + "location": "imgui_internal:1190", "ov_cimguiname": "ImGuiStackSizes_SetToCurrentState", "ret": "void", "signature": "()", @@ -7704,7 +7851,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackTool", - "location": "imgui_internal:1727", + "location": "imgui_internal:1848", "ov_cimguiname": "ImGuiStackTool_ImGuiStackTool", "signature": "()", "stname": "ImGuiStackTool" @@ -7748,7 +7895,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2358", + "location": "imgui:2351", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" @@ -7771,7 +7918,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2359", + "location": "imgui:2352", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" @@ -7794,7 +7941,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2360", + "location": "imgui:2353", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -7833,7 +7980,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:2391", + "location": "imgui:2384", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -7854,7 +8001,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2368", + "location": "imgui:2361", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -7885,7 +8032,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:2371", + "location": "imgui:2364", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -7916,7 +8063,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:2383", + "location": "imgui:2376", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -7947,7 +8094,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:2373", + "location": "imgui:2366", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -7978,7 +8125,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:2384", + "location": "imgui:2377", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -8009,7 +8156,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:2369", + "location": "imgui:2362", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -8040,7 +8187,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:2382", + "location": "imgui:2375", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -8065,7 +8212,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:2375", + "location": "imgui:2368", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -8096,7 +8243,7 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:2385", + "location": "imgui:2378", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -8121,7 +8268,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:2388", + "location": "imgui:2381", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -8150,7 +8297,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:2372", + "location": "imgui:2365", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -8179,7 +8326,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:2374", + "location": "imgui:2367", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -8208,7 +8355,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:2370", + "location": "imgui:2363", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -8237,7 +8384,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:2376", + "location": "imgui:2369", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -8263,7 +8410,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:962", + "location": "imgui_internal:997", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Int", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -8286,7 +8433,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:963", + "location": "imgui_internal:998", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Float", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -8309,7 +8456,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:964", + "location": "imgui_internal:999", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Vec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -8344,7 +8491,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:1962", + "location": "imgui:1953", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -8368,7 +8515,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:1963", + "location": "imgui:1954", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -8412,7 +8559,7 @@ "cimguiname": "ImGuiTabBar_GetTabName", "defaults": {}, "funcname": "GetTabName", - "location": "imgui_internal:2462", + "location": "imgui_internal:2611", "ov_cimguiname": "ImGuiTabBar_GetTabName", "ret": "const char*", "signature": "(const ImGuiTabItem*)const", @@ -8437,7 +8584,7 @@ "cimguiname": "ImGuiTabBar_GetTabOrder", "defaults": {}, "funcname": "GetTabOrder", - "location": "imgui_internal:2461", + "location": "imgui_internal:2610", "ov_cimguiname": "ImGuiTabBar_GetTabOrder", "ret": "int", "signature": "(const ImGuiTabItem*)const", @@ -8454,7 +8601,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", - "location": "imgui_internal:2460", + "location": "imgui_internal:2609", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -8489,7 +8636,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", - "location": "imgui_internal:2422", + "location": "imgui_internal:2571", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -8524,7 +8671,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSettings", - "location": "imgui_internal:2708", + "location": "imgui_internal:2857", "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -8559,7 +8706,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:2259", + "location": "imgui:2252", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -8594,7 +8741,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumn", - "location": "imgui_internal:2531", + "location": "imgui_internal:2680", "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -8629,7 +8776,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableInstanceData", - "location": "imgui_internal:2558", + "location": "imgui_internal:2707", "ov_cimguiname": "ImGuiTableInstanceData_ImGuiTableInstanceData", "signature": "()", "stname": "ImGuiTableInstanceData" @@ -8668,7 +8815,7 @@ "cimguiname": "ImGuiTableSettings_GetColumnSettings", "defaults": {}, "funcname": "GetColumnSettings", - "location": "imgui_internal:2731", + "location": "imgui_internal:2880", "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -8685,7 +8832,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSettings", - "location": "imgui_internal:2730", + "location": "imgui_internal:2879", "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -8720,7 +8867,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:2272", + "location": "imgui:2265", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -8755,7 +8902,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableTempData", - "location": "imgui_internal:2693", + "location": "imgui_internal:2842", "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", "signature": "()", "stname": "ImGuiTableTempData" @@ -8790,7 +8937,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTable", - "location": "imgui_internal:2669", + "location": "imgui_internal:2818", "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -8809,7 +8956,7 @@ "cimguiname": "ImGuiTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2670", + "location": "imgui_internal:2819", "ov_cimguiname": "ImGuiTable_destroy", "realdestructor": true, "ret": "void", @@ -8827,7 +8974,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:2329", + "location": "imgui:2322", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -8857,7 +9004,7 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:2338", + "location": "imgui:2331", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -8887,7 +9034,7 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:2339", + "location": "imgui:2332", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -8917,7 +9064,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:2340", + "location": "imgui:2333", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -8938,7 +9085,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2331", + "location": "imgui:2324", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -8959,7 +9106,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:2337", + "location": "imgui:2330", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -8980,7 +9127,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2335", + "location": "imgui:2328", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -9020,7 +9167,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2334", + "location": "imgui:2327", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -9041,7 +9188,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:2332", + "location": "imgui:2325", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -9066,7 +9213,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2336", + "location": "imgui:2329", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -9087,7 +9234,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:2333", + "location": "imgui:2326", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -9108,7 +9255,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2302", + "location": "imgui:2295", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -9129,7 +9276,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2303", + "location": "imgui:2296", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -9161,7 +9308,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:2300", + "location": "imgui:2293", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -9185,7 +9332,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:2299", + "location": "imgui:2292", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -9205,7 +9352,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:2304", + "location": "imgui:2297", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -9236,7 +9383,7 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:2301", + "location": "imgui:2294", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -9262,6 +9409,139 @@ "stname": "ImGuiTextFilter" } ], + "ImGuiTextIndex_append": [ + { + "args": "(ImGuiTextIndex* self,const char* base,int old_size,int new_size)", + "argsT": [ + { + "name": "self", + "type": "ImGuiTextIndex*" + }, + { + "name": "base", + "type": "const char*" + }, + { + "name": "old_size", + "type": "int" + }, + { + "name": "new_size", + "type": "int" + } + ], + "argsoriginal": "(const char* base,int old_size,int new_size)", + "call_args": "(base,old_size,new_size)", + "cimguiname": "ImGuiTextIndex_append", + "defaults": {}, + "funcname": "append", + "location": "imgui_internal:719", + "ov_cimguiname": "ImGuiTextIndex_append", + "ret": "void", + "signature": "(const char*,int,int)", + "stname": "ImGuiTextIndex" + } + ], + "ImGuiTextIndex_clear": [ + { + "args": "(ImGuiTextIndex* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiTextIndex*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiTextIndex_clear", + "defaults": {}, + "funcname": "clear", + "location": "imgui_internal:715", + "ov_cimguiname": "ImGuiTextIndex_clear", + "ret": "void", + "signature": "()", + "stname": "ImGuiTextIndex" + } + ], + "ImGuiTextIndex_get_line_begin": [ + { + "args": "(ImGuiTextIndex* self,const char* base,int n)", + "argsT": [ + { + "name": "self", + "type": "ImGuiTextIndex*" + }, + { + "name": "base", + "type": "const char*" + }, + { + "name": "n", + "type": "int" + } + ], + "argsoriginal": "(const char* base,int n)", + "call_args": "(base,n)", + "cimguiname": "ImGuiTextIndex_get_line_begin", + "defaults": {}, + "funcname": "get_line_begin", + "location": "imgui_internal:717", + "ov_cimguiname": "ImGuiTextIndex_get_line_begin", + "ret": "const char*", + "signature": "(const char*,int)", + "stname": "ImGuiTextIndex" + } + ], + "ImGuiTextIndex_get_line_end": [ + { + "args": "(ImGuiTextIndex* self,const char* base,int n)", + "argsT": [ + { + "name": "self", + "type": "ImGuiTextIndex*" + }, + { + "name": "base", + "type": "const char*" + }, + { + "name": "n", + "type": "int" + } + ], + "argsoriginal": "(const char* base,int n)", + "call_args": "(base,n)", + "cimguiname": "ImGuiTextIndex_get_line_end", + "defaults": {}, + "funcname": "get_line_end", + "location": "imgui_internal:718", + "ov_cimguiname": "ImGuiTextIndex_get_line_end", + "ret": "const char*", + "signature": "(const char*,int)", + "stname": "ImGuiTextIndex" + } + ], + "ImGuiTextIndex_size": [ + { + "args": "(ImGuiTextIndex* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiTextIndex*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiTextIndex_size", + "defaults": {}, + "funcname": "size", + "location": "imgui_internal:716", + "ov_cimguiname": "ImGuiTextIndex_size", + "ret": "int", + "signature": "()", + "stname": "ImGuiTextIndex" + } + ], "ImGuiTextRange_ImGuiTextRange": [ { "args": "()", @@ -9272,7 +9552,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2312", + "location": "imgui:2305", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -9295,7 +9575,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2313", + "location": "imgui:2306", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -9334,7 +9614,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2314", + "location": "imgui:2307", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -9363,7 +9643,7 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:2315", + "location": "imgui:2308", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -9392,7 +9672,7 @@ "cimguiname": "ImGuiViewportP_CalcWorkRectPos", "defaults": {}, "funcname": "CalcWorkRectPos", - "location": "imgui_internal:1615", + "location": "imgui_internal:1735", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", "ret": "void", @@ -9426,7 +9706,7 @@ "cimguiname": "ImGuiViewportP_CalcWorkRectSize", "defaults": {}, "funcname": "CalcWorkRectSize", - "location": "imgui_internal:1616", + "location": "imgui_internal:1736", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", "ret": "void", @@ -9448,7 +9728,7 @@ "cimguiname": "ImGuiViewportP_ClearRequestFlags", "defaults": {}, "funcname": "ClearRequestFlags", - "location": "imgui_internal:1612", + "location": "imgui_internal:1732", "ov_cimguiname": "ImGuiViewportP_ClearRequestFlags", "ret": "void", "signature": "()", @@ -9473,7 +9753,7 @@ "cimguiname": "ImGuiViewportP_GetBuildWorkRect", "defaults": {}, "funcname": "GetBuildWorkRect", - "location": "imgui_internal:1622", + "location": "imgui_internal:1742", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", "ret": "void", @@ -9499,7 +9779,7 @@ "cimguiname": "ImGuiViewportP_GetMainRect", "defaults": {}, "funcname": "GetMainRect", - "location": "imgui_internal:1620", + "location": "imgui_internal:1740", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "void", @@ -9525,7 +9805,7 @@ "cimguiname": "ImGuiViewportP_GetWorkRect", "defaults": {}, "funcname": "GetWorkRect", - "location": "imgui_internal:1621", + "location": "imgui_internal:1741", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "void", @@ -9543,7 +9823,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewportP", - "location": "imgui_internal:1610", + "location": "imgui_internal:1730", "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -9563,7 +9843,7 @@ "cimguiname": "ImGuiViewportP_UpdateWorkRect", "defaults": {}, "funcname": "UpdateWorkRect", - "location": "imgui_internal:1617", + "location": "imgui_internal:1737", "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -9583,7 +9863,7 @@ "cimguiname": "ImGuiViewportP_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1611", + "location": "imgui_internal:1731", "ov_cimguiname": "ImGuiViewportP_destroy", "realdestructor": true, "ret": "void", @@ -9609,7 +9889,7 @@ "cimguiname": "ImGuiViewport_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui:3075", + "location": "imgui:3069", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "void", @@ -9635,7 +9915,7 @@ "cimguiname": "ImGuiViewport_GetWorkCenter", "defaults": {}, "funcname": "GetWorkCenter", - "location": "imgui:3076", + "location": "imgui:3070", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "void", @@ -9653,7 +9933,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", - "location": "imgui:3071", + "location": "imgui:3065", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -9672,7 +9952,7 @@ "cimguiname": "ImGuiViewport_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3072", + "location": "imgui:3066", "ov_cimguiname": "ImGuiViewport_destroy", "realdestructor": true, "ret": "void", @@ -9690,7 +9970,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowClass", - "location": "imgui:2226", + "location": "imgui:2219", "ov_cimguiname": "ImGuiWindowClass_ImGuiWindowClass", "signature": "()", "stname": "ImGuiWindowClass" @@ -9729,7 +10009,7 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", - "location": "imgui_internal:1646", + "location": "imgui_internal:1766", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -9746,7 +10026,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", - "location": "imgui_internal:1645", + "location": "imgui_internal:1765", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -9785,7 +10065,7 @@ "cimguiname": "ImGuiWindow_CalcFontSize", "defaults": {}, "funcname": "CalcFontSize", - "location": "imgui_internal:2376", + "location": "imgui_internal:2525", "ov_cimguiname": "ImGuiWindow_CalcFontSize", "ret": "float", "signature": "()const", @@ -9816,7 +10096,7 @@ "str_end": "NULL" }, "funcname": "GetID", - "location": "imgui_internal:2369", + "location": "imgui_internal:2518", "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -9839,7 +10119,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2370", + "location": "imgui_internal:2519", "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -9862,7 +10142,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2371", + "location": "imgui_internal:2520", "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", @@ -9887,7 +10167,7 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", - "location": "imgui_internal:2372", + "location": "imgui_internal:2521", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -9913,7 +10193,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", - "location": "imgui_internal:2365", + "location": "imgui_internal:2514", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -9933,7 +10213,7 @@ "cimguiname": "ImGuiWindow_MenuBarHeight", "defaults": {}, "funcname": "MenuBarHeight", - "location": "imgui_internal:2379", + "location": "imgui_internal:2528", "ov_cimguiname": "ImGuiWindow_MenuBarHeight", "ret": "float", "signature": "()const", @@ -9958,7 +10238,7 @@ "cimguiname": "ImGuiWindow_MenuBarRect", "defaults": {}, "funcname": "MenuBarRect", - "location": "imgui_internal:2380", + "location": "imgui_internal:2529", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "void", @@ -9984,7 +10264,7 @@ "cimguiname": "ImGuiWindow_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:2375", + "location": "imgui_internal:2524", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "void", @@ -10006,7 +10286,7 @@ "cimguiname": "ImGuiWindow_TitleBarHeight", "defaults": {}, "funcname": "TitleBarHeight", - "location": "imgui_internal:2377", + "location": "imgui_internal:2526", "ov_cimguiname": "ImGuiWindow_TitleBarHeight", "ret": "float", "signature": "()const", @@ -10031,7 +10311,7 @@ "cimguiname": "ImGuiWindow_TitleBarRect", "defaults": {}, "funcname": "TitleBarRect", - "location": "imgui_internal:2378", + "location": "imgui_internal:2527", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "void", @@ -10052,7 +10332,7 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2367", + "location": "imgui_internal:2516", "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -10074,7 +10354,7 @@ "cimguiname": "ImPool_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:661", + "location": "imgui_internal:668", "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -10096,7 +10376,7 @@ "cimguiname": "ImPool_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:660", + "location": "imgui_internal:667", "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -10122,7 +10402,7 @@ "cimguiname": "ImPool_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:659", + "location": "imgui_internal:666", "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -10144,7 +10424,7 @@ "cimguiname": "ImPool_GetAliveCount", "defaults": {}, "funcname": "GetAliveCount", - "location": "imgui_internal:668", + "location": "imgui_internal:675", "ov_cimguiname": "ImPool_GetAliveCount", "ret": "int", "signature": "()const", @@ -10166,7 +10446,7 @@ "cimguiname": "ImPool_GetBufSize", "defaults": {}, "funcname": "GetBufSize", - "location": "imgui_internal:669", + "location": "imgui_internal:676", "ov_cimguiname": "ImPool_GetBufSize", "ret": "int", "signature": "()const", @@ -10192,7 +10472,7 @@ "cimguiname": "ImPool_GetByIndex", "defaults": {}, "funcname": "GetByIndex", - "location": "imgui_internal:656", + "location": "imgui_internal:663", "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10218,7 +10498,7 @@ "cimguiname": "ImPool_GetByKey", "defaults": {}, "funcname": "GetByKey", - "location": "imgui_internal:655", + "location": "imgui_internal:662", "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -10244,7 +10524,7 @@ "cimguiname": "ImPool_GetIndex", "defaults": {}, "funcname": "GetIndex", - "location": "imgui_internal:657", + "location": "imgui_internal:664", "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -10266,7 +10546,7 @@ "cimguiname": "ImPool_GetMapSize", "defaults": {}, "funcname": "GetMapSize", - "location": "imgui_internal:670", + "location": "imgui_internal:677", "ov_cimguiname": "ImPool_GetMapSize", "ret": "int", "signature": "()const", @@ -10292,7 +10572,7 @@ "cimguiname": "ImPool_GetOrAddByKey", "defaults": {}, "funcname": "GetOrAddByKey", - "location": "imgui_internal:658", + "location": "imgui_internal:665", "ov_cimguiname": "ImPool_GetOrAddByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -10310,7 +10590,7 @@ "constructor": true, "defaults": {}, "funcname": "ImPool", - "location": "imgui_internal:653", + "location": "imgui_internal:660", "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -10339,7 +10619,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:662", + "location": "imgui_internal:669", "ov_cimguiname": "ImPool_Remove_TPtr", "ret": "void", "signature": "(ImGuiID,const T*)", @@ -10367,7 +10647,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:663", + "location": "imgui_internal:670", "ov_cimguiname": "ImPool_Remove_PoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", @@ -10393,7 +10673,7 @@ "cimguiname": "ImPool_Reserve", "defaults": {}, "funcname": "Reserve", - "location": "imgui_internal:664", + "location": "imgui_internal:671", "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -10419,7 +10699,7 @@ "cimguiname": "ImPool_TryGetMapData", "defaults": {}, "funcname": "TryGetMapData", - "location": "imgui_internal:671", + "location": "imgui_internal:678", "ov_cimguiname": "ImPool_TryGetMapData", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10440,7 +10720,7 @@ "cimguiname": "ImPool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:654", + "location": "imgui_internal:661", "ov_cimguiname": "ImPool_destroy", "realdestructor": true, "ret": "void", @@ -10467,7 +10747,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:530", + "location": "imgui_internal:537", "ov_cimguiname": "ImRect_Add_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10490,7 +10770,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:531", + "location": "imgui_internal:538", "ov_cimguiname": "ImRect_Add_Rect", "ret": "void", "signature": "(const ImRect)", @@ -10515,7 +10795,7 @@ "cimguiname": "ImRect_ClipWith", "defaults": {}, "funcname": "ClipWith", - "location": "imgui_internal:537", + "location": "imgui_internal:544", "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -10540,7 +10820,7 @@ "cimguiname": "ImRect_ClipWithFull", "defaults": {}, "funcname": "ClipWithFull", - "location": "imgui_internal:538", + "location": "imgui_internal:545", "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -10565,7 +10845,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:527", + "location": "imgui_internal:534", "ov_cimguiname": "ImRect_Contains_Vec2", "ret": "bool", "signature": "(const ImVec2)const", @@ -10588,7 +10868,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:528", + "location": "imgui_internal:535", "ov_cimguiname": "ImRect_Contains_Rect", "ret": "bool", "signature": "(const ImRect)const", @@ -10613,7 +10893,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:532", + "location": "imgui_internal:539", "ov_cimguiname": "ImRect_Expand_Float", "ret": "void", "signature": "(const float)", @@ -10636,7 +10916,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:533", + "location": "imgui_internal:540", "ov_cimguiname": "ImRect_Expand_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10657,7 +10937,7 @@ "cimguiname": "ImRect_Floor", "defaults": {}, "funcname": "Floor", - "location": "imgui_internal:539", + "location": "imgui_internal:546", "ov_cimguiname": "ImRect_Floor", "ret": "void", "signature": "()", @@ -10678,7 +10958,7 @@ "cimguiname": "ImRect_GetArea", "defaults": {}, "funcname": "GetArea", - "location": "imgui_internal:522", + "location": "imgui_internal:529", "ov_cimguiname": "ImRect_GetArea", "ret": "float", "signature": "()const", @@ -10703,7 +10983,7 @@ "cimguiname": "ImRect_GetBL", "defaults": {}, "funcname": "GetBL", - "location": "imgui_internal:525", + "location": "imgui_internal:532", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "void", @@ -10729,7 +11009,7 @@ "cimguiname": "ImRect_GetBR", "defaults": {}, "funcname": "GetBR", - "location": "imgui_internal:526", + "location": "imgui_internal:533", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "void", @@ -10755,7 +11035,7 @@ "cimguiname": "ImRect_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui_internal:518", + "location": "imgui_internal:525", "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "void", @@ -10777,7 +11057,7 @@ "cimguiname": "ImRect_GetHeight", "defaults": {}, "funcname": "GetHeight", - "location": "imgui_internal:521", + "location": "imgui_internal:528", "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -10802,7 +11082,7 @@ "cimguiname": "ImRect_GetSize", "defaults": {}, "funcname": "GetSize", - "location": "imgui_internal:519", + "location": "imgui_internal:526", "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "void", @@ -10828,7 +11108,7 @@ "cimguiname": "ImRect_GetTL", "defaults": {}, "funcname": "GetTL", - "location": "imgui_internal:523", + "location": "imgui_internal:530", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "void", @@ -10854,7 +11134,7 @@ "cimguiname": "ImRect_GetTR", "defaults": {}, "funcname": "GetTR", - "location": "imgui_internal:524", + "location": "imgui_internal:531", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "void", @@ -10876,7 +11156,7 @@ "cimguiname": "ImRect_GetWidth", "defaults": {}, "funcname": "GetWidth", - "location": "imgui_internal:520", + "location": "imgui_internal:527", "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -10893,7 +11173,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:513", + "location": "imgui_internal:520", "ov_cimguiname": "ImRect_ImRect_Nil", "signature": "()", "stname": "ImRect" @@ -10916,7 +11196,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:514", + "location": "imgui_internal:521", "ov_cimguiname": "ImRect_ImRect_Vec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" @@ -10935,7 +11215,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:515", + "location": "imgui_internal:522", "ov_cimguiname": "ImRect_ImRect_Vec4", "signature": "(const ImVec4)", "stname": "ImRect" @@ -10966,7 +11246,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:516", + "location": "imgui_internal:523", "ov_cimguiname": "ImRect_ImRect_Float", "signature": "(float,float,float,float)", "stname": "ImRect" @@ -10986,7 +11266,7 @@ "cimguiname": "ImRect_IsInverted", "defaults": {}, "funcname": "IsInverted", - "location": "imgui_internal:540", + "location": "imgui_internal:547", "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -11011,7 +11291,7 @@ "cimguiname": "ImRect_Overlaps", "defaults": {}, "funcname": "Overlaps", - "location": "imgui_internal:529", + "location": "imgui_internal:536", "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -11036,7 +11316,7 @@ "cimguiname": "ImRect_ToVec4", "defaults": {}, "funcname": "ToVec4", - "location": "imgui_internal:541", + "location": "imgui_internal:548", "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "void", @@ -11062,7 +11342,7 @@ "cimguiname": "ImRect_Translate", "defaults": {}, "funcname": "Translate", - "location": "imgui_internal:534", + "location": "imgui_internal:541", "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -11087,7 +11367,7 @@ "cimguiname": "ImRect_TranslateX", "defaults": {}, "funcname": "TranslateX", - "location": "imgui_internal:535", + "location": "imgui_internal:542", "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -11112,7 +11392,7 @@ "cimguiname": "ImRect_TranslateY", "defaults": {}, "funcname": "TranslateY", - "location": "imgui_internal:536", + "location": "imgui_internal:543", "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -11152,7 +11432,7 @@ "cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "defaults": {}, "funcname": "GetArenaSizeInBytes", - "location": "imgui_internal:633", + "location": "imgui_internal:640", "ov_cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "ret": "int", "signature": "()", @@ -11178,7 +11458,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "defaults": {}, "funcname": "GetSpanPtrBegin", - "location": "imgui_internal:635", + "location": "imgui_internal:642", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "ret": "void*", "signature": "(int)", @@ -11204,7 +11484,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "defaults": {}, "funcname": "GetSpanPtrEnd", - "location": "imgui_internal:636", + "location": "imgui_internal:643", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "ret": "void*", "signature": "(int)", @@ -11222,7 +11502,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpanAllocator", - "location": "imgui_internal:631", + "location": "imgui_internal:638", "ov_cimguiname": "ImSpanAllocator_ImSpanAllocator", "signature": "()", "stname": "ImSpanAllocator", @@ -11257,7 +11537,7 @@ "a": "4" }, "funcname": "Reserve", - "location": "imgui_internal:632", + "location": "imgui_internal:639", "ov_cimguiname": "ImSpanAllocator_Reserve", "ret": "void", "signature": "(int,size_t,int)", @@ -11283,7 +11563,7 @@ "cimguiname": "ImSpanAllocator_SetArenaBasePtr", "defaults": {}, "funcname": "SetArenaBasePtr", - "location": "imgui_internal:634", + "location": "imgui_internal:641", "ov_cimguiname": "ImSpanAllocator_SetArenaBasePtr", "ret": "void", "signature": "(void*)", @@ -11321,7 +11601,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:599", + "location": "imgui_internal:606", "ov_cimguiname": "ImSpan_ImSpan_Nil", "signature": "()", "stname": "ImSpan", @@ -11345,7 +11625,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:600", + "location": "imgui_internal:607", "ov_cimguiname": "ImSpan_ImSpan_TPtrInt", "signature": "(T*,int)", "stname": "ImSpan", @@ -11369,7 +11649,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:601", + "location": "imgui_internal:608", "ov_cimguiname": "ImSpan_ImSpan_TPtrTPtr", "signature": "(T*,T*)", "stname": "ImSpan", @@ -11390,7 +11670,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:610", + "location": "imgui_internal:617", "ov_cimguiname": "ImSpan_begin_Nil", "ret": "T*", "signature": "()", @@ -11410,7 +11690,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:611", + "location": "imgui_internal:618", "ov_cimguiname": "ImSpan_begin__const", "ret": "const T*", "signature": "()const", @@ -11452,7 +11732,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:612", + "location": "imgui_internal:619", "ov_cimguiname": "ImSpan_end_Nil", "ret": "T*", "signature": "()", @@ -11472,7 +11752,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:613", + "location": "imgui_internal:620", "ov_cimguiname": "ImSpan_end__const", "ret": "const T*", "signature": "()const", @@ -11498,7 +11778,7 @@ "cimguiname": "ImSpan_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui_internal:616", + "location": "imgui_internal:623", "ov_cimguiname": "ImSpan_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -11528,7 +11808,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:603", + "location": "imgui_internal:610", "ov_cimguiname": "ImSpan_set_Int", "ret": "void", "signature": "(T*,int)", @@ -11556,7 +11836,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:604", + "location": "imgui_internal:611", "ov_cimguiname": "ImSpan_set_TPtr", "ret": "void", "signature": "(T*,T*)", @@ -11578,7 +11858,7 @@ "cimguiname": "ImSpan_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:605", + "location": "imgui_internal:612", "ov_cimguiname": "ImSpan_size", "ret": "int", "signature": "()const", @@ -11600,7 +11880,7 @@ "cimguiname": "ImSpan_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui_internal:606", + "location": "imgui_internal:613", "ov_cimguiname": "ImSpan_size_in_bytes", "ret": "int", "signature": "()const", @@ -11618,7 +11898,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:493", + "location": "imgui_internal:500", "ov_cimguiname": "ImVec1_ImVec1_Nil", "signature": "()", "stname": "ImVec1" @@ -11637,7 +11917,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:494", + "location": "imgui_internal:501", "ov_cimguiname": "ImVec1_ImVec1_Float", "signature": "(float)", "stname": "ImVec1" @@ -11672,7 +11952,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:258", + "location": "imgui:262", "ov_cimguiname": "ImVec2_ImVec2_Nil", "signature": "()", "stname": "ImVec2" @@ -11695,7 +11975,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:259", + "location": "imgui:263", "ov_cimguiname": "ImVec2_ImVec2_Float", "signature": "(float,float)", "stname": "ImVec2" @@ -11730,7 +12010,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:501", + "location": "imgui_internal:508", "ov_cimguiname": "ImVec2ih_ImVec2ih_Nil", "signature": "()", "stname": "ImVec2ih" @@ -11753,7 +12033,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:502", + "location": "imgui_internal:509", "ov_cimguiname": "ImVec2ih_ImVec2ih_short", "signature": "(short,short)", "stname": "ImVec2ih" @@ -11772,7 +12052,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:503", + "location": "imgui_internal:510", "ov_cimguiname": "ImVec2ih_ImVec2ih_Vec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" @@ -11807,7 +12087,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:271", + "location": "imgui:275", "ov_cimguiname": "ImVec4_ImVec4_Nil", "signature": "()", "stname": "ImVec4" @@ -11838,7 +12118,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:272", + "location": "imgui:276", "ov_cimguiname": "ImVec4_ImVec4_Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -11873,7 +12153,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1859", + "location": "imgui:1850", "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -11893,7 +12173,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1860", + "location": "imgui:1851", "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -11918,7 +12198,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:1886", + "location": "imgui:1877", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -11940,7 +12220,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1882", + "location": "imgui:1873", "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -11961,7 +12241,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1883", + "location": "imgui:1874", "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -11984,7 +12264,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1876", + "location": "imgui:1867", "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -12004,7 +12284,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1877", + "location": "imgui:1868", "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -12026,7 +12306,7 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:1872", + "location": "imgui:1863", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -12048,7 +12328,7 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:1864", + "location": "imgui:1855", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -12070,7 +12350,7 @@ "cimguiname": "ImVector_clear_delete", "defaults": {}, "funcname": "clear_delete", - "location": "imgui:1865", + "location": "imgui:1856", "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -12092,7 +12372,7 @@ "cimguiname": "ImVector_clear_destruct", "defaults": {}, "funcname": "clear_destruct", - "location": "imgui:1866", + "location": "imgui:1857", "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -12118,7 +12398,7 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:1901", + "location": "imgui:1892", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -12139,7 +12419,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:1862", + "location": "imgui:1853", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -12162,7 +12442,7 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:1868", + "location": "imgui:1859", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -12184,7 +12464,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1878", + "location": "imgui:1869", "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -12204,7 +12484,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1879", + "location": "imgui:1870", "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -12230,7 +12510,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1897", + "location": "imgui:1888", "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -12258,7 +12538,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1898", + "location": "imgui:1889", "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -12284,7 +12564,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:1899", + "location": "imgui:1890", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -12310,7 +12590,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1902", + "location": "imgui:1893", "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -12334,7 +12614,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1903", + "location": "imgui:1894", "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -12360,7 +12640,7 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:1904", + "location": "imgui:1895", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -12386,7 +12666,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:1905", + "location": "imgui:1896", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -12408,7 +12688,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1880", + "location": "imgui:1871", "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -12429,7 +12709,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1881", + "location": "imgui:1872", "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -12456,7 +12736,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:1906", + "location": "imgui:1897", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -12486,7 +12766,7 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:1900", + "location": "imgui:1891", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -12508,7 +12788,7 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", - "location": "imgui:1871", + "location": "imgui:1862", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -12530,7 +12810,7 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:1895", + "location": "imgui:1886", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -12556,7 +12836,7 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:1894", + "location": "imgui:1885", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -12582,7 +12862,7 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:1896", + "location": "imgui:1887", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -12608,7 +12888,7 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:1890", + "location": "imgui:1881", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -12634,7 +12914,7 @@ "cimguiname": "ImVector_reserve_discard", "defaults": {}, "funcname": "reserve_discard", - "location": "imgui:1891", + "location": "imgui:1882", "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -12660,7 +12940,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1887", + "location": "imgui:1878", "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -12688,7 +12968,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1888", + "location": "imgui:1879", "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -12714,7 +12994,7 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:1889", + "location": "imgui:1880", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -12736,7 +13016,7 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:1869", + "location": "imgui:1860", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -12758,7 +13038,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:1870", + "location": "imgui:1861", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -12785,7 +13065,7 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:1884", + "location": "imgui:1875", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", @@ -12813,7 +13093,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui:831", + "location": "imgui:841", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -12835,7 +13115,7 @@ "cimguiname": "igActivateItem", "defaults": {}, "funcname": "ActivateItem", - "location": "imgui_internal:2920", + "location": "imgui_internal:3053", "namespace": "ImGui", "ov_cimguiname": "igActivateItem", "ret": "void", @@ -12861,7 +13141,7 @@ "cimguiname": "igAddContextHook", "defaults": {}, "funcname": "AddContextHook", - "location": "imgui_internal:2791", + "location": "imgui_internal:2940", "namespace": "ImGui", "ov_cimguiname": "igAddContextHook", "ret": "ImGuiID", @@ -12883,7 +13163,7 @@ "cimguiname": "igAddSettingsHandler", "defaults": {}, "funcname": "AddSettingsHandler", - "location": "imgui_internal:2811", + "location": "imgui_internal:2960", "namespace": "ImGui", "ov_cimguiname": "igAddSettingsHandler", "ret": "void", @@ -12900,7 +13180,7 @@ "cimguiname": "igAlignTextToFramePadding", "defaults": {}, "funcname": "AlignTextToFramePadding", - "location": "imgui:458", + "location": "imgui:465", "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -12926,7 +13206,7 @@ "cimguiname": "igArrowButton", "defaults": {}, "funcname": "ArrowButton", - "location": "imgui:505", + "location": "imgui:512", "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -12962,7 +13242,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "imgui_internal:3118", + "location": "imgui_internal:3311", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -12995,7 +13275,7 @@ "p_open": "NULL" }, "funcname": "Begin", - "location": "imgui:332", + "location": "imgui:336", "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -13033,7 +13313,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", - "location": "imgui:343", + "location": "imgui:347", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_Str", "ret": "bool", @@ -13069,7 +13349,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", - "location": "imgui:344", + "location": "imgui:348", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_ID", "ret": "bool", @@ -13107,7 +13387,7 @@ "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", - "location": "imgui_internal:2882", + "location": "imgui_internal:3019", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", @@ -13139,7 +13419,7 @@ "flags": "0" }, "funcname": "BeginChildFrame", - "location": "imgui:894", + "location": "imgui:904", "namespace": "ImGui", "ov_cimguiname": "igBeginChildFrame", "ret": "bool", @@ -13171,7 +13451,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "imgui_internal:3011", + "location": "imgui_internal:3202", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -13203,7 +13483,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui:519", + "location": "imgui:529", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -13233,7 +13513,7 @@ "cimguiname": "igBeginComboPopup", "defaults": {}, "funcname": "BeginComboPopup", - "location": "imgui_internal:2902", + "location": "imgui_internal:3039", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPopup", "ret": "bool", @@ -13250,7 +13530,7 @@ "cimguiname": "igBeginComboPreview", "defaults": {}, "funcname": "BeginComboPreview", - "location": "imgui_internal:2903", + "location": "imgui_internal:3040", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPreview", "ret": "bool", @@ -13274,7 +13554,7 @@ "disabled": "true" }, "funcname": "BeginDisabled", - "location": "imgui:839", + "location": "imgui:849", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabled", "ret": "void", @@ -13296,7 +13576,7 @@ "cimguiname": "igBeginDockableDragDropSource", "defaults": {}, "funcname": "BeginDockableDragDropSource", - "location": "imgui_internal:2975", + "location": "imgui_internal:3153", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropSource", "ret": "void", @@ -13318,7 +13598,7 @@ "cimguiname": "igBeginDockableDragDropTarget", "defaults": {}, "funcname": "BeginDockableDragDropTarget", - "location": "imgui_internal:2976", + "location": "imgui_internal:3154", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropTarget", "ret": "void", @@ -13344,7 +13624,7 @@ "cimguiname": "igBeginDocked", "defaults": {}, "funcname": "BeginDocked", - "location": "imgui_internal:2974", + "location": "imgui_internal:3152", "namespace": "ImGui", "ov_cimguiname": "igBeginDocked", "ret": "void", @@ -13368,7 +13648,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui:827", + "location": "imgui:837", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -13385,7 +13665,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui:830", + "location": "imgui:840", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -13411,7 +13691,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", - "location": "imgui_internal:3005", + "location": "imgui_internal:3195", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -13428,7 +13708,7 @@ "cimguiname": "igBeginGroup", "defaults": {}, "funcname": "BeginGroup", - "location": "imgui:447", + "location": "imgui:454", "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -13456,7 +13736,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginListBox", - "location": "imgui:631", + "location": "imgui:641", "namespace": "ImGui", "ov_cimguiname": "igBeginListBox", "ret": "bool", @@ -13473,7 +13753,7 @@ "cimguiname": "igBeginMainMenuBar", "defaults": {}, "funcname": "BeginMainMenuBar", - "location": "imgui:657", + "location": "imgui:667", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -13501,7 +13781,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui:659", + "location": "imgui:669", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -13518,7 +13798,7 @@ "cimguiname": "igBeginMenuBar", "defaults": {}, "funcname": "BeginMenuBar", - "location": "imgui:655", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -13550,7 +13830,7 @@ "enabled": "true" }, "funcname": "BeginMenuEx", - "location": "imgui_internal:2898", + "location": "imgui_internal:3035", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuEx", "ret": "bool", @@ -13578,7 +13858,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui:683", + "location": "imgui:693", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -13607,7 +13887,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui:705", + "location": "imgui:715", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -13636,7 +13916,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui:707", + "location": "imgui:717", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -13665,7 +13945,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui:706", + "location": "imgui:716", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -13691,7 +13971,7 @@ "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", - "location": "imgui_internal:2888", + "location": "imgui_internal:3025", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -13724,7 +14004,7 @@ "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui:684", + "location": "imgui:694", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -13752,7 +14032,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui:785", + "location": "imgui:795", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -13786,7 +14066,7 @@ "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", - "location": "imgui_internal:3074", + "location": "imgui_internal:3266", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", @@ -13819,7 +14099,7 @@ "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui:787", + "location": "imgui:797", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -13861,7 +14141,7 @@ "outer_size": "ImVec2(0.0f,0.0f)" }, "funcname": "BeginTable", - "location": "imgui:738", + "location": "imgui:748", "namespace": "ImGui", "ov_cimguiname": "igBeginTable", "ret": "bool", @@ -13907,7 +14187,7 @@ "outer_size": "ImVec2(0,0)" }, "funcname": "BeginTableEx", - "location": "imgui_internal:3033", + "location": "imgui_internal:3224", "namespace": "ImGui", "ov_cimguiname": "igBeginTableEx", "ret": "bool", @@ -13924,7 +14204,7 @@ "cimguiname": "igBeginTooltip", "defaults": {}, "funcname": "BeginTooltip", - "location": "imgui:666", + "location": "imgui:676", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", "ret": "void", @@ -13950,7 +14230,7 @@ "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", - "location": "imgui_internal:2889", + "location": "imgui_internal:3026", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", "ret": "void", @@ -13988,7 +14268,7 @@ "cimguiname": "igBeginViewportSideBar", "defaults": {}, "funcname": "BeginViewportSideBar", - "location": "imgui_internal:2897", + "location": "imgui_internal:3034", "namespace": "ImGui", "ov_cimguiname": "igBeginViewportSideBar", "ret": "bool", @@ -14010,7 +14290,7 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", - "location": "imgui_internal:2768", + "location": "imgui_internal:2917", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -14036,7 +14316,7 @@ "cimguiname": "igBringWindowToDisplayBehind", "defaults": {}, "funcname": "BringWindowToDisplayBehind", - "location": "imgui_internal:2769", + "location": "imgui_internal:2918", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBehind", "ret": "void", @@ -14058,7 +14338,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", - "location": "imgui_internal:2767", + "location": "imgui_internal:2916", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -14080,7 +14360,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", - "location": "imgui_internal:2766", + "location": "imgui_internal:2915", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -14097,7 +14377,7 @@ "cimguiname": "igBullet", "defaults": {}, "funcname": "Bullet", - "location": "imgui:514", + "location": "imgui:519", "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -14124,7 +14404,7 @@ "defaults": {}, "funcname": "BulletText", "isvararg": "...)", - "location": "imgui:496", + "location": "imgui:503", "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -14150,7 +14430,7 @@ "cimguiname": "igBulletTextV", "defaults": {}, "funcname": "BulletTextV", - "location": "imgui:497", + "location": "imgui:504", "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -14178,7 +14458,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", - "location": "imgui:502", + "location": "imgui:509", "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -14218,7 +14498,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "imgui_internal:3131", + "location": "imgui_internal:3324", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -14251,7 +14531,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "imgui_internal:3115", + "location": "imgui_internal:3308", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -14285,7 +14565,7 @@ "cimguiname": "igCalcItemSize", "defaults": {}, "funcname": "CalcItemSize", - "location": "imgui_internal:2853", + "location": "imgui_internal:3001", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -14303,7 +14583,7 @@ "cimguiname": "igCalcItemWidth", "defaults": {}, "funcname": "CalcItemWidth", - "location": "imgui:419", + "location": "imgui:426", "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -14333,7 +14613,7 @@ "cimguiname": "igCalcRoundingFlagsForRectInRect", "defaults": {}, "funcname": "CalcRoundingFlagsForRectInRect", - "location": "imgui_internal:3111", + "location": "imgui_internal:3304", "namespace": "ImGui", "ov_cimguiname": "igCalcRoundingFlagsForRectInRect", "ret": "ImDrawFlags", @@ -14375,7 +14655,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:898", + "location": "imgui:908", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -14410,7 +14690,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", - "location": "imgui_internal:2919", + "location": "imgui_internal:3079", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -14436,7 +14716,7 @@ "cimguiname": "igCalcWindowNextAutoFitSize", "defaults": {}, "funcname": "CalcWindowNextAutoFitSize", - "location": "imgui_internal:2751", + "location": "imgui_internal:2900", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowNextAutoFitSize", @@ -14463,7 +14743,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", - "location": "imgui_internal:2854", + "location": "imgui_internal:3002", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -14489,7 +14769,7 @@ "cimguiname": "igCallContextHooks", "defaults": {}, "funcname": "CallContextHooks", - "location": "imgui_internal:2793", + "location": "imgui_internal:2942", "namespace": "ImGui", "ov_cimguiname": "igCallContextHooks", "ret": "void", @@ -14515,7 +14795,7 @@ "cimguiname": "igCheckbox", "defaults": {}, "funcname": "Checkbox", - "location": "imgui:508", + "location": "imgui:513", "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -14545,7 +14825,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:509", + "location": "imgui:514", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_IntPtr", "ret": "bool", @@ -14573,7 +14853,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:510", + "location": "imgui:515", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_UintPtr", "ret": "bool", @@ -14601,7 +14881,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3127", + "location": "imgui_internal:3320", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_S64Ptr", "ret": "bool", @@ -14629,7 +14909,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3128", + "location": "imgui_internal:3321", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_U64Ptr", "ret": "bool", @@ -14646,7 +14926,7 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", - "location": "imgui_internal:2838", + "location": "imgui_internal:2986", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -14663,7 +14943,7 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", - "location": "imgui_internal:3006", + "location": "imgui_internal:3196", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -14680,7 +14960,7 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", - "location": "imgui_internal:2807", + "location": "imgui_internal:2956", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -14706,7 +14986,7 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", - "location": "imgui_internal:3116", + "location": "imgui_internal:3309", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -14723,7 +15003,7 @@ "cimguiname": "igCloseCurrentPopup", "defaults": {}, "funcname": "CloseCurrentPopup", - "location": "imgui:698", + "location": "imgui:708", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -14749,7 +15029,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", - "location": "imgui_internal:2884", + "location": "imgui_internal:3021", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -14766,7 +15046,7 @@ "cimguiname": "igClosePopupsExceptModals", "defaults": {}, "funcname": "ClosePopupsExceptModals", - "location": "imgui_internal:2886", + "location": "imgui_internal:3023", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsExceptModals", "ret": "void", @@ -14792,7 +15072,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", - "location": "imgui_internal:2885", + "location": "imgui_internal:3022", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -14822,7 +15102,7 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", - "location": "imgui_internal:3117", + "location": "imgui_internal:3310", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -14850,7 +15130,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:615", + "location": "imgui:625", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_TreeNodeFlags", "ret": "bool", @@ -14880,7 +15160,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:616", + "location": "imgui:626", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_BoolPtr", "ret": "bool", @@ -14917,7 +15197,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui:596", + "location": "imgui:606", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -14939,7 +15219,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:902", + "location": "imgui:912", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -14984,7 +15264,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:904", + "location": "imgui:914", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -15029,7 +15309,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:903", + "location": "imgui:913", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -15055,7 +15335,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:901", + "location": "imgui:911", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -15088,7 +15368,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui:592", + "location": "imgui:602", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -15120,7 +15400,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui:593", + "location": "imgui:603", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -15146,7 +15426,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", - "location": "imgui_internal:3166", + "location": "imgui_internal:3360", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -15178,7 +15458,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui:594", + "location": "imgui:604", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -15215,7 +15495,7 @@ "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui:595", + "location": "imgui:605", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -15241,7 +15521,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", - "location": "imgui_internal:3167", + "location": "imgui_internal:3361", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -15271,7 +15551,7 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", - "location": "imgui_internal:3165", + "location": "imgui_internal:3359", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -15305,7 +15585,7 @@ "id": "NULL" }, "funcname": "Columns", - "location": "imgui:774", + "location": "imgui:784", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -15345,7 +15625,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:521", + "location": "imgui:531", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str_arr", "ret": "bool", @@ -15379,7 +15659,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:522", + "location": "imgui:532", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str", "ret": "bool", @@ -15423,7 +15703,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:523", + "location": "imgui:533", "namespace": "ImGui", "ov_cimguiname": "igCombo_FnBoolPtr", "ret": "bool", @@ -15431,6 +15711,28 @@ "stname": "" } ], + "igConvertSingleModFlagToKey": [ + { + "args": "(ImGuiKey key)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igConvertSingleModFlagToKey", + "defaults": {}, + "funcname": "ConvertSingleModFlagToKey", + "location": "imgui_internal:3064", + "namespace": "ImGui", + "ov_cimguiname": "igConvertSingleModFlagToKey", + "ret": "ImGuiKey", + "signature": "(ImGuiKey)", + "stname": "" + } + ], "igCreateContext": [ { "args": "(ImFontAtlas* shared_font_atlas)", @@ -15447,7 +15749,7 @@ "shared_font_atlas": "NULL" }, "funcname": "CreateContext", - "location": "imgui:290", + "location": "imgui:294", "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -15469,7 +15771,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", - "location": "imgui_internal:2808", + "location": "imgui_internal:2957", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -15503,7 +15805,7 @@ "cimguiname": "igDataTypeApplyFromText", "defaults": {}, "funcname": "DataTypeApplyFromText", - "location": "imgui_internal:3153", + "location": "imgui_internal:3347", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyFromText", "ret": "bool", @@ -15541,7 +15843,7 @@ "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", - "location": "imgui_internal:3152", + "location": "imgui_internal:3346", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -15575,7 +15877,7 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", - "location": "imgui_internal:3155", + "location": "imgui_internal:3349", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -15605,7 +15907,7 @@ "cimguiname": "igDataTypeCompare", "defaults": {}, "funcname": "DataTypeCompare", - "location": "imgui_internal:3154", + "location": "imgui_internal:3348", "namespace": "ImGui", "ov_cimguiname": "igDataTypeCompare", "ret": "int", @@ -15643,7 +15945,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", - "location": "imgui_internal:3151", + "location": "imgui_internal:3345", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -15665,7 +15967,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", - "location": "imgui_internal:3150", + "location": "imgui_internal:3344", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -15711,7 +16013,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:956", + "location": "imgui:966", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -15735,7 +16037,7 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "imgui_internal:3188", + "location": "imgui_internal:3386", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -15769,7 +16071,7 @@ "cimguiname": "igDebugHookIdInfo", "defaults": {}, "funcname": "DebugHookIdInfo", - "location": "imgui_internal:3191", + "location": "imgui_internal:3389", "namespace": "ImGui", "ov_cimguiname": "igDebugHookIdInfo", "ret": "void", @@ -15777,6 +16079,67 @@ "stname": "" } ], + "igDebugLocateItem": [ + { + "args": "(ImGuiID target_id)", + "argsT": [ + { + "name": "target_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID target_id)", + "call_args": "(target_id)", + "cimguiname": "igDebugLocateItem", + "defaults": {}, + "funcname": "DebugLocateItem", + "location": "imgui_internal:3383", + "namespace": "ImGui", + "ov_cimguiname": "igDebugLocateItem", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], + "igDebugLocateItemOnHover": [ + { + "args": "(ImGuiID target_id)", + "argsT": [ + { + "name": "target_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID target_id)", + "call_args": "(target_id)", + "cimguiname": "igDebugLocateItemOnHover", + "defaults": {}, + "funcname": "DebugLocateItemOnHover", + "location": "imgui_internal:3384", + "namespace": "ImGui", + "ov_cimguiname": "igDebugLocateItemOnHover", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], + "igDebugLocateItemResolveWithLastItem": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igDebugLocateItemResolveWithLastItem", + "defaults": {}, + "funcname": "DebugLocateItemResolveWithLastItem", + "location": "imgui_internal:3385", + "namespace": "ImGui", + "ov_cimguiname": "igDebugLocateItemResolveWithLastItem", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igDebugLog": [ { "args": "(const char* fmt,...)", @@ -15796,7 +16159,7 @@ "defaults": {}, "funcname": "DebugLog", "isvararg": "...)", - "location": "imgui_internal:3182", + "location": "imgui_internal:3376", "namespace": "ImGui", "ov_cimguiname": "igDebugLog", "ret": "void", @@ -15822,7 +16185,7 @@ "cimguiname": "igDebugLogV", "defaults": {}, "funcname": "DebugLogV", - "location": "imgui_internal:3183", + "location": "imgui_internal:3377", "namespace": "ImGui", "ov_cimguiname": "igDebugLogV", "ret": "void", @@ -15844,7 +16207,7 @@ "cimguiname": "igDebugNodeColumns", "defaults": {}, "funcname": "DebugNodeColumns", - "location": "imgui_internal:3192", + "location": "imgui_internal:3390", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeColumns", "ret": "void", @@ -15870,7 +16233,7 @@ "cimguiname": "igDebugNodeDockNode", "defaults": {}, "funcname": "DebugNodeDockNode", - "location": "imgui_internal:3193", + "location": "imgui_internal:3391", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDockNode", "ret": "void", @@ -15908,7 +16271,7 @@ "cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "defaults": {}, "funcname": "DebugNodeDrawCmdShowMeshAndBoundingBox", - "location": "imgui_internal:3195", + "location": "imgui_internal:3393", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "ret": "void", @@ -15942,7 +16305,7 @@ "cimguiname": "igDebugNodeDrawList", "defaults": {}, "funcname": "DebugNodeDrawList", - "location": "imgui_internal:3194", + "location": "imgui_internal:3392", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawList", "ret": "void", @@ -15964,7 +16327,7 @@ "cimguiname": "igDebugNodeFont", "defaults": {}, "funcname": "DebugNodeFont", - "location": "imgui_internal:3196", + "location": "imgui_internal:3394", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFont", "ret": "void", @@ -15990,7 +16353,7 @@ "cimguiname": "igDebugNodeFontGlyph", "defaults": {}, "funcname": "DebugNodeFontGlyph", - "location": "imgui_internal:3197", + "location": "imgui_internal:3395", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFontGlyph", "ret": "void", @@ -16012,7 +16375,7 @@ "cimguiname": "igDebugNodeInputTextState", "defaults": {}, "funcname": "DebugNodeInputTextState", - "location": "imgui_internal:3202", + "location": "imgui_internal:3400", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeInputTextState", "ret": "void", @@ -16038,7 +16401,7 @@ "cimguiname": "igDebugNodeStorage", "defaults": {}, "funcname": "DebugNodeStorage", - "location": "imgui_internal:3198", + "location": "imgui_internal:3396", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeStorage", "ret": "void", @@ -16064,7 +16427,7 @@ "cimguiname": "igDebugNodeTabBar", "defaults": {}, "funcname": "DebugNodeTabBar", - "location": "imgui_internal:3199", + "location": "imgui_internal:3397", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTabBar", "ret": "void", @@ -16086,7 +16449,7 @@ "cimguiname": "igDebugNodeTable", "defaults": {}, "funcname": "DebugNodeTable", - "location": "imgui_internal:3200", + "location": "imgui_internal:3398", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTable", "ret": "void", @@ -16108,7 +16471,7 @@ "cimguiname": "igDebugNodeTableSettings", "defaults": {}, "funcname": "DebugNodeTableSettings", - "location": "imgui_internal:3201", + "location": "imgui_internal:3399", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTableSettings", "ret": "void", @@ -16130,7 +16493,7 @@ "cimguiname": "igDebugNodeViewport", "defaults": {}, "funcname": "DebugNodeViewport", - "location": "imgui_internal:3207", + "location": "imgui_internal:3405", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeViewport", "ret": "void", @@ -16156,7 +16519,7 @@ "cimguiname": "igDebugNodeWindow", "defaults": {}, "funcname": "DebugNodeWindow", - "location": "imgui_internal:3203", + "location": "imgui_internal:3401", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindow", "ret": "void", @@ -16178,7 +16541,7 @@ "cimguiname": "igDebugNodeWindowSettings", "defaults": {}, "funcname": "DebugNodeWindowSettings", - "location": "imgui_internal:3204", + "location": "imgui_internal:3402", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowSettings", "ret": "void", @@ -16204,7 +16567,7 @@ "cimguiname": "igDebugNodeWindowsList", "defaults": {}, "funcname": "DebugNodeWindowsList", - "location": "imgui_internal:3205", + "location": "imgui_internal:3403", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsList", "ret": "void", @@ -16234,7 +16597,7 @@ "cimguiname": "igDebugNodeWindowsListByBeginStackParent", "defaults": {}, "funcname": "DebugNodeWindowsListByBeginStackParent", - "location": "imgui_internal:3206", + "location": "imgui_internal:3404", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsListByBeginStackParent", "ret": "void", @@ -16264,7 +16627,7 @@ "cimguiname": "igDebugRenderViewportThumbnail", "defaults": {}, "funcname": "DebugRenderViewportThumbnail", - "location": "imgui_internal:3208", + "location": "imgui_internal:3406", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderViewportThumbnail", "ret": "void", @@ -16281,7 +16644,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", - "location": "imgui_internal:3189", + "location": "imgui_internal:3387", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -16303,7 +16666,7 @@ "cimguiname": "igDebugTextEncoding", "defaults": {}, "funcname": "DebugTextEncoding", - "location": "imgui:955", + "location": "imgui:965", "namespace": "ImGui", "ov_cimguiname": "igDebugTextEncoding", "ret": "void", @@ -16327,7 +16690,7 @@ "ctx": "NULL" }, "funcname": "DestroyContext", - "location": "imgui:291", + "location": "imgui:295", "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -16349,7 +16712,7 @@ "cimguiname": "igDestroyPlatformWindow", "defaults": {}, "funcname": "DestroyPlatformWindow", - "location": "imgui_internal:2798", + "location": "imgui_internal:2947", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindow", "ret": "void", @@ -16366,7 +16729,7 @@ "cimguiname": "igDestroyPlatformWindows", "defaults": {}, "funcname": "DestroyPlatformWindows", - "location": "imgui:973", + "location": "imgui:983", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindows", "ret": "void", @@ -16395,7 +16758,7 @@ "node_id": "0" }, "funcname": "DockBuilderAddNode", - "location": "imgui_internal:2991", + "location": "imgui_internal:3169", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderAddNode", "ret": "ImGuiID", @@ -16425,7 +16788,7 @@ "cimguiname": "igDockBuilderCopyDockSpace", "defaults": {}, "funcname": "DockBuilderCopyDockSpace", - "location": "imgui_internal:2998", + "location": "imgui_internal:3176", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyDockSpace", "ret": "void", @@ -16455,7 +16818,7 @@ "cimguiname": "igDockBuilderCopyNode", "defaults": {}, "funcname": "DockBuilderCopyNode", - "location": "imgui_internal:2999", + "location": "imgui_internal:3177", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyNode", "ret": "void", @@ -16481,7 +16844,7 @@ "cimguiname": "igDockBuilderCopyWindowSettings", "defaults": {}, "funcname": "DockBuilderCopyWindowSettings", - "location": "imgui_internal:3000", + "location": "imgui_internal:3178", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyWindowSettings", "ret": "void", @@ -16507,7 +16870,7 @@ "cimguiname": "igDockBuilderDockWindow", "defaults": {}, "funcname": "DockBuilderDockWindow", - "location": "imgui_internal:2988", + "location": "imgui_internal:3166", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderDockWindow", "ret": "void", @@ -16529,7 +16892,7 @@ "cimguiname": "igDockBuilderFinish", "defaults": {}, "funcname": "DockBuilderFinish", - "location": "imgui_internal:3001", + "location": "imgui_internal:3179", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderFinish", "ret": "void", @@ -16551,7 +16914,7 @@ "cimguiname": "igDockBuilderGetCentralNode", "defaults": {}, "funcname": "DockBuilderGetCentralNode", - "location": "imgui_internal:2990", + "location": "imgui_internal:3168", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetCentralNode", "ret": "ImGuiDockNode*", @@ -16573,7 +16936,7 @@ "cimguiname": "igDockBuilderGetNode", "defaults": {}, "funcname": "DockBuilderGetNode", - "location": "imgui_internal:2989", + "location": "imgui_internal:3167", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetNode", "ret": "ImGuiDockNode*", @@ -16595,7 +16958,7 @@ "cimguiname": "igDockBuilderRemoveNode", "defaults": {}, "funcname": "DockBuilderRemoveNode", - "location": "imgui_internal:2992", + "location": "imgui_internal:3170", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNode", "ret": "void", @@ -16617,7 +16980,7 @@ "cimguiname": "igDockBuilderRemoveNodeChildNodes", "defaults": {}, "funcname": "DockBuilderRemoveNodeChildNodes", - "location": "imgui_internal:2994", + "location": "imgui_internal:3172", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeChildNodes", "ret": "void", @@ -16645,7 +17008,7 @@ "clear_settings_refs": "true" }, "funcname": "DockBuilderRemoveNodeDockedWindows", - "location": "imgui_internal:2993", + "location": "imgui_internal:3171", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeDockedWindows", "ret": "void", @@ -16671,7 +17034,7 @@ "cimguiname": "igDockBuilderSetNodePos", "defaults": {}, "funcname": "DockBuilderSetNodePos", - "location": "imgui_internal:2995", + "location": "imgui_internal:3173", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodePos", "ret": "void", @@ -16697,7 +17060,7 @@ "cimguiname": "igDockBuilderSetNodeSize", "defaults": {}, "funcname": "DockBuilderSetNodeSize", - "location": "imgui_internal:2996", + "location": "imgui_internal:3174", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodeSize", "ret": "void", @@ -16735,7 +17098,7 @@ "cimguiname": "igDockBuilderSplitNode", "defaults": {}, "funcname": "DockBuilderSplitNode", - "location": "imgui_internal:2997", + "location": "imgui_internal:3175", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSplitNode", "ret": "ImGuiID", @@ -16745,7 +17108,7 @@ ], "igDockContextCalcDropPosForDocking": [ { - "args": "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)", + "args": "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)", "argsT": [ { "name": "target", @@ -16756,9 +17119,13 @@ "type": "ImGuiDockNode*" }, { - "name": "payload", + "name": "payload_window", "type": "ImGuiWindow*" }, + { + "name": "payload_node", + "type": "ImGuiDockNode*" + }, { "name": "split_dir", "type": "ImGuiDir" @@ -16772,16 +17139,16 @@ "type": "ImVec2*" } ], - "argsoriginal": "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)", - "call_args": "(target,target_node,payload,split_dir,split_outer,out_pos)", + "argsoriginal": "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)", + "call_args": "(target,target_node,payload_window,payload_node,split_dir,split_outer,out_pos)", "cimguiname": "igDockContextCalcDropPosForDocking", "defaults": {}, "funcname": "DockContextCalcDropPosForDocking", - "location": "imgui_internal:2965", + "location": "imgui_internal:3142", "namespace": "ImGui", "ov_cimguiname": "igDockContextCalcDropPosForDocking", "ret": "bool", - "signature": "(ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDir,bool,ImVec2*)", + "signature": "(ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDockNode*,ImGuiDir,bool,ImVec2*)", "stname": "" } ], @@ -16807,7 +17174,7 @@ "cimguiname": "igDockContextClearNodes", "defaults": {}, "funcname": "DockContextClearNodes", - "location": "imgui_internal:2956", + "location": "imgui_internal:3133", "namespace": "ImGui", "ov_cimguiname": "igDockContextClearNodes", "ret": "void", @@ -16829,7 +17196,7 @@ "cimguiname": "igDockContextEndFrame", "defaults": {}, "funcname": "DockContextEndFrame", - "location": "imgui_internal:2960", + "location": "imgui_internal:3137", "namespace": "ImGui", "ov_cimguiname": "igDockContextEndFrame", "ret": "void", @@ -16837,6 +17204,32 @@ "stname": "" } ], + "igDockContextFindNodeByID": [ + { + "args": "(ImGuiContext* ctx,ImGuiID id)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiID id)", + "call_args": "(ctx,id)", + "cimguiname": "igDockContextFindNodeByID", + "defaults": {}, + "funcname": "DockContextFindNodeByID", + "location": "imgui_internal:3143", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextFindNodeByID", + "ret": "ImGuiDockNode*", + "signature": "(ImGuiContext*,ImGuiID)", + "stname": "" + } + ], "igDockContextGenNodeID": [ { "args": "(ImGuiContext* ctx)", @@ -16851,7 +17244,7 @@ "cimguiname": "igDockContextGenNodeID", "defaults": {}, "funcname": "DockContextGenNodeID", - "location": "imgui_internal:2961", + "location": "imgui_internal:3138", "namespace": "ImGui", "ov_cimguiname": "igDockContextGenNodeID", "ret": "ImGuiID", @@ -16873,7 +17266,7 @@ "cimguiname": "igDockContextInitialize", "defaults": {}, "funcname": "DockContextInitialize", - "location": "imgui_internal:2954", + "location": "imgui_internal:3131", "namespace": "ImGui", "ov_cimguiname": "igDockContextInitialize", "ret": "void", @@ -16895,7 +17288,7 @@ "cimguiname": "igDockContextNewFrameUpdateDocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateDocking", - "location": "imgui_internal:2959", + "location": "imgui_internal:3136", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateDocking", "ret": "void", @@ -16917,7 +17310,7 @@ "cimguiname": "igDockContextNewFrameUpdateUndocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateUndocking", - "location": "imgui_internal:2958", + "location": "imgui_internal:3135", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateUndocking", "ret": "void", @@ -16963,7 +17356,7 @@ "cimguiname": "igDockContextQueueDock", "defaults": {}, "funcname": "DockContextQueueDock", - "location": "imgui_internal:2962", + "location": "imgui_internal:3139", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueDock", "ret": "void", @@ -16989,7 +17382,7 @@ "cimguiname": "igDockContextQueueUndockNode", "defaults": {}, "funcname": "DockContextQueueUndockNode", - "location": "imgui_internal:2964", + "location": "imgui_internal:3141", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockNode", "ret": "void", @@ -17015,7 +17408,7 @@ "cimguiname": "igDockContextQueueUndockWindow", "defaults": {}, "funcname": "DockContextQueueUndockWindow", - "location": "imgui_internal:2963", + "location": "imgui_internal:3140", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockWindow", "ret": "void", @@ -17037,7 +17430,7 @@ "cimguiname": "igDockContextRebuildNodes", "defaults": {}, "funcname": "DockContextRebuildNodes", - "location": "imgui_internal:2957", + "location": "imgui_internal:3134", "namespace": "ImGui", "ov_cimguiname": "igDockContextRebuildNodes", "ret": "void", @@ -17059,7 +17452,7 @@ "cimguiname": "igDockContextShutdown", "defaults": {}, "funcname": "DockContextShutdown", - "location": "imgui_internal:2955", + "location": "imgui_internal:3132", "namespace": "ImGui", "ov_cimguiname": "igDockContextShutdown", "ret": "void", @@ -17081,7 +17474,7 @@ "cimguiname": "igDockNodeBeginAmendTabBar", "defaults": {}, "funcname": "DockNodeBeginAmendTabBar", - "location": "imgui_internal:2966", + "location": "imgui_internal:3144", "namespace": "ImGui", "ov_cimguiname": "igDockNodeBeginAmendTabBar", "ret": "bool", @@ -17098,7 +17491,7 @@ "cimguiname": "igDockNodeEndAmendTabBar", "defaults": {}, "funcname": "DockNodeEndAmendTabBar", - "location": "imgui_internal:2967", + "location": "imgui_internal:3145", "namespace": "ImGui", "ov_cimguiname": "igDockNodeEndAmendTabBar", "ret": "void", @@ -17120,7 +17513,7 @@ "cimguiname": "igDockNodeGetDepth", "defaults": {}, "funcname": "DockNodeGetDepth", - "location": "imgui_internal:2970", + "location": "imgui_internal:3148", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetDepth", "ret": "int", @@ -17142,7 +17535,7 @@ "cimguiname": "igDockNodeGetRootNode", "defaults": {}, "funcname": "DockNodeGetRootNode", - "location": "imgui_internal:2968", + "location": "imgui_internal:3146", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetRootNode", "ret": "ImGuiDockNode*", @@ -17164,7 +17557,7 @@ "cimguiname": "igDockNodeGetWindowMenuButtonId", "defaults": {}, "funcname": "DockNodeGetWindowMenuButtonId", - "location": "imgui_internal:2971", + "location": "imgui_internal:3149", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetWindowMenuButtonId", "ret": "ImGuiID", @@ -17190,7 +17583,7 @@ "cimguiname": "igDockNodeIsInHierarchyOf", "defaults": {}, "funcname": "DockNodeIsInHierarchyOf", - "location": "imgui_internal:2969", + "location": "imgui_internal:3147", "namespace": "ImGui", "ov_cimguiname": "igDockNodeIsInHierarchyOf", "ret": "bool", @@ -17228,7 +17621,7 @@ "window_class": "NULL" }, "funcname": "DockSpace", - "location": "imgui:805", + "location": "imgui:815", "namespace": "ImGui", "ov_cimguiname": "igDockSpace", "ret": "ImGuiID", @@ -17262,7 +17655,7 @@ "window_class": "NULL" }, "funcname": "DockSpaceOverViewport", - "location": "imgui:806", + "location": "imgui:816", "namespace": "ImGui", "ov_cimguiname": "igDockSpaceOverViewport", "ret": "ImGuiID", @@ -17312,7 +17705,7 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", - "location": "imgui_internal:3132", + "location": "imgui_internal:3325", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -17364,7 +17757,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui:537", + "location": "imgui:547", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -17416,7 +17809,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui:538", + "location": "imgui:548", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -17468,7 +17861,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui:539", + "location": "imgui:549", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -17520,7 +17913,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui:540", + "location": "imgui:550", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -17581,7 +17974,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui:541", + "location": "imgui:551", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -17633,7 +18026,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui:542", + "location": "imgui:552", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -17685,7 +18078,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui:543", + "location": "imgui:553", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -17737,7 +18130,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui:544", + "location": "imgui:554", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -17789,7 +18182,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui:545", + "location": "imgui:555", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -17850,7 +18243,7 @@ "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui:546", + "location": "imgui:556", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -17906,7 +18299,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalar", - "location": "imgui:547", + "location": "imgui:557", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -17966,7 +18359,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalarN", - "location": "imgui:548", + "location": "imgui:558", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -17988,7 +18381,7 @@ "cimguiname": "igDummy", "defaults": {}, "funcname": "Dummy", - "location": "imgui:444", + "location": "imgui:451", "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -18005,7 +18398,7 @@ "cimguiname": "igEnd", "defaults": {}, "funcname": "End", - "location": "imgui:333", + "location": "imgui:337", "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -18022,7 +18415,7 @@ "cimguiname": "igEndChild", "defaults": {}, "funcname": "EndChild", - "location": "imgui:345", + "location": "imgui:349", "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -18039,7 +18432,7 @@ "cimguiname": "igEndChildFrame", "defaults": {}, "funcname": "EndChildFrame", - "location": "imgui:895", + "location": "imgui:905", "namespace": "ImGui", "ov_cimguiname": "igEndChildFrame", "ret": "void", @@ -18056,7 +18449,7 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", - "location": "imgui_internal:3012", + "location": "imgui_internal:3203", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -18073,7 +18466,7 @@ "cimguiname": "igEndCombo", "defaults": {}, "funcname": "EndCombo", - "location": "imgui:520", + "location": "imgui:530", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -18090,7 +18483,7 @@ "cimguiname": "igEndComboPreview", "defaults": {}, "funcname": "EndComboPreview", - "location": "imgui_internal:2904", + "location": "imgui_internal:3041", "namespace": "ImGui", "ov_cimguiname": "igEndComboPreview", "ret": "void", @@ -18107,7 +18500,7 @@ "cimguiname": "igEndDisabled", "defaults": {}, "funcname": "EndDisabled", - "location": "imgui:840", + "location": "imgui:850", "namespace": "ImGui", "ov_cimguiname": "igEndDisabled", "ret": "void", @@ -18124,7 +18517,7 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui:829", + "location": "imgui:839", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -18141,7 +18534,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui:832", + "location": "imgui:842", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -18158,7 +18551,7 @@ "cimguiname": "igEndFrame", "defaults": {}, "funcname": "EndFrame", - "location": "imgui:299", + "location": "imgui:303", "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -18175,7 +18568,7 @@ "cimguiname": "igEndGroup", "defaults": {}, "funcname": "EndGroup", - "location": "imgui:448", + "location": "imgui:455", "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -18192,7 +18585,7 @@ "cimguiname": "igEndListBox", "defaults": {}, "funcname": "EndListBox", - "location": "imgui:632", + "location": "imgui:642", "namespace": "ImGui", "ov_cimguiname": "igEndListBox", "ret": "void", @@ -18209,7 +18602,7 @@ "cimguiname": "igEndMainMenuBar", "defaults": {}, "funcname": "EndMainMenuBar", - "location": "imgui:658", + "location": "imgui:668", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -18226,7 +18619,7 @@ "cimguiname": "igEndMenu", "defaults": {}, "funcname": "EndMenu", - "location": "imgui:660", + "location": "imgui:670", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -18243,7 +18636,7 @@ "cimguiname": "igEndMenuBar", "defaults": {}, "funcname": "EndMenuBar", - "location": "imgui:656", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -18260,7 +18653,7 @@ "cimguiname": "igEndPopup", "defaults": {}, "funcname": "EndPopup", - "location": "imgui:685", + "location": "imgui:695", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -18277,7 +18670,7 @@ "cimguiname": "igEndTabBar", "defaults": {}, "funcname": "EndTabBar", - "location": "imgui:786", + "location": "imgui:796", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -18294,7 +18687,7 @@ "cimguiname": "igEndTabItem", "defaults": {}, "funcname": "EndTabItem", - "location": "imgui:788", + "location": "imgui:798", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -18311,7 +18704,7 @@ "cimguiname": "igEndTable", "defaults": {}, "funcname": "EndTable", - "location": "imgui:739", + "location": "imgui:749", "namespace": "ImGui", "ov_cimguiname": "igEndTable", "ret": "void", @@ -18328,7 +18721,7 @@ "cimguiname": "igEndTooltip", "defaults": {}, "funcname": "EndTooltip", - "location": "imgui:667", + "location": "imgui:677", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -18356,7 +18749,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndFrameRecover", - "location": "imgui_internal:3186", + "location": "imgui_internal:3380", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndFrameRecover", "ret": "void", @@ -18384,7 +18777,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndWindowRecover", - "location": "imgui_internal:3187", + "location": "imgui_internal:3381", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndWindowRecover", "ret": "void", @@ -18392,6 +18785,23 @@ "stname": "" } ], + "igErrorCheckUsingSetCursorPosToExtendParentBoundaries": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", + "defaults": {}, + "funcname": "ErrorCheckUsingSetCursorPosToExtendParentBoundaries", + "location": "imgui_internal:3382", + "namespace": "ImGui", + "ov_cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igFindBestWindowPosForPopup": [ { "args": "(ImVec2 *pOut,ImGuiWindow* window)", @@ -18410,7 +18820,7 @@ "cimguiname": "igFindBestWindowPosForPopup", "defaults": {}, "funcname": "FindBestWindowPosForPopup", - "location": "imgui_internal:2893", + "location": "imgui_internal:3030", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -18457,7 +18867,7 @@ "cimguiname": "igFindBestWindowPosForPopupEx", "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", - "location": "imgui_internal:2894", + "location": "imgui_internal:3031", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -18480,7 +18890,7 @@ "cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "defaults": {}, "funcname": "FindBottomMostVisibleWindowWithinBeginStack", - "location": "imgui_internal:2771", + "location": "imgui_internal:2920", "namespace": "ImGui", "ov_cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "ret": "ImGuiWindow*", @@ -18502,7 +18912,7 @@ "cimguiname": "igFindHoveredViewportFromPlatformWindowStack", "defaults": {}, "funcname": "FindHoveredViewportFromPlatformWindowStack", - "location": "imgui_internal:2802", + "location": "imgui_internal:2951", "namespace": "ImGui", "ov_cimguiname": "igFindHoveredViewportFromPlatformWindowStack", "ret": "ImGuiViewportP*", @@ -18528,7 +18938,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", - "location": "imgui_internal:3017", + "location": "imgui_internal:3208", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiOldColumns*", @@ -18550,7 +18960,7 @@ "cimguiname": "igFindOrCreateWindowSettings", "defaults": {}, "funcname": "FindOrCreateWindowSettings", - "location": "imgui_internal:2810", + "location": "imgui_internal:2959", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateWindowSettings", "ret": "ImGuiWindowSettings*", @@ -18578,7 +18988,7 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "imgui_internal:3100", + "location": "imgui_internal:3293", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -18600,7 +19010,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", - "location": "imgui_internal:2813", + "location": "imgui_internal:2962", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -18622,7 +19032,7 @@ "cimguiname": "igFindViewportByID", "defaults": {}, "funcname": "FindViewportByID", - "location": "imgui:974", + "location": "imgui:984", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByID", "ret": "ImGuiViewport*", @@ -18644,7 +19054,7 @@ "cimguiname": "igFindViewportByPlatformHandle", "defaults": {}, "funcname": "FindViewportByPlatformHandle", - "location": "imgui:975", + "location": "imgui:985", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByPlatformHandle", "ret": "ImGuiViewport*", @@ -18666,7 +19076,7 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", - "location": "imgui_internal:2748", + "location": "imgui_internal:2897", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -18688,7 +19098,7 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", - "location": "imgui_internal:2749", + "location": "imgui_internal:2898", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -18710,7 +19120,7 @@ "cimguiname": "igFindWindowDisplayIndex", "defaults": {}, "funcname": "FindWindowDisplayIndex", - "location": "imgui_internal:2770", + "location": "imgui_internal:2919", "namespace": "ImGui", "ov_cimguiname": "igFindWindowDisplayIndex", "ret": "int", @@ -18732,7 +19142,7 @@ "cimguiname": "igFindWindowSettings", "defaults": {}, "funcname": "FindWindowSettings", - "location": "imgui_internal:2809", + "location": "imgui_internal:2958", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettings", "ret": "ImGuiWindowSettings*", @@ -18758,7 +19168,7 @@ "cimguiname": "igFocusTopMostWindowUnderOne", "defaults": {}, "funcname": "FocusTopMostWindowUnderOne", - "location": "imgui_internal:2765", + "location": "imgui_internal:2914", "namespace": "ImGui", "ov_cimguiname": "igFocusTopMostWindowUnderOne", "ret": "void", @@ -18780,7 +19190,7 @@ "cimguiname": "igFocusWindow", "defaults": {}, "funcname": "FocusWindow", - "location": "imgui_internal:2764", + "location": "imgui_internal:2913", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", @@ -18802,7 +19212,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", - "location": "imgui_internal:3179", + "location": "imgui_internal:3373", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -18819,7 +19229,7 @@ "cimguiname": "igGcCompactTransientMiscBuffers", "defaults": {}, "funcname": "GcCompactTransientMiscBuffers", - "location": "imgui_internal:3177", + "location": "imgui_internal:3371", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientMiscBuffers", "ret": "void", @@ -18841,7 +19251,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", - "location": "imgui_internal:3178", + "location": "imgui_internal:3372", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -18858,7 +19268,7 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", - "location": "imgui_internal:2834", + "location": "imgui_internal:2982", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -18888,7 +19298,7 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", - "location": "imgui:963", + "location": "imgui:973", "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -18905,7 +19315,7 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui:880", + "location": "imgui:890", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList_Nil", "ret": "ImDrawList*", @@ -18925,7 +19335,7 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui:882", + "location": "imgui:892", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -18942,7 +19352,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:942", + "location": "imgui:952", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -18970,7 +19380,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui:428", + "location": "imgui:435", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Col", "ret": "ImU32", @@ -18990,7 +19400,7 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:429", + "location": "imgui:436", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Vec4", "ret": "ImU32", @@ -19010,7 +19420,7 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:430", + "location": "imgui:437", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_U32", "ret": "ImU32", @@ -19027,7 +19437,7 @@ "cimguiname": "igGetColumnIndex", "defaults": {}, "funcname": "GetColumnIndex", - "location": "imgui:776", + "location": "imgui:786", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -19053,7 +19463,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", - "location": "imgui_internal:3019", + "location": "imgui_internal:3210", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -19077,7 +19487,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui:779", + "location": "imgui:789", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -19103,7 +19513,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", - "location": "imgui_internal:3018", + "location": "imgui_internal:3209", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -19127,7 +19537,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui:777", + "location": "imgui:787", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -19144,7 +19554,7 @@ "cimguiname": "igGetColumnsCount", "defaults": {}, "funcname": "GetColumnsCount", - "location": "imgui:781", + "location": "imgui:791", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -19170,7 +19580,7 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", - "location": "imgui_internal:3016", + "location": "imgui_internal:3207", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -19192,7 +19602,7 @@ "cimguiname": "igGetContentRegionAvail", "defaults": {}, "funcname": "GetContentRegionAvail", - "location": "imgui:384", + "location": "imgui:389", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -19215,7 +19625,7 @@ "cimguiname": "igGetContentRegionMax", "defaults": {}, "funcname": "GetContentRegionMax", - "location": "imgui:385", + "location": "imgui:390", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMax", @@ -19238,7 +19648,7 @@ "cimguiname": "igGetContentRegionMaxAbs", "defaults": {}, "funcname": "GetContentRegionMaxAbs", - "location": "imgui_internal:2857", + "location": "imgui_internal:3005", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMaxAbs", @@ -19256,7 +19666,7 @@ "cimguiname": "igGetCurrentContext", "defaults": {}, "funcname": "GetCurrentContext", - "location": "imgui:292", + "location": "imgui:296", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -19264,6 +19674,23 @@ "stname": "" } ], + "igGetCurrentFocusScope": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetCurrentFocusScope", + "defaults": {}, + "funcname": "GetCurrentFocusScope", + "location": "imgui_internal:3191", + "namespace": "ImGui", + "ov_cimguiname": "igGetCurrentFocusScope", + "ret": "ImGuiID", + "signature": "()", + "stname": "" + } + ], "igGetCurrentTable": [ { "args": "()", @@ -19273,7 +19700,7 @@ "cimguiname": "igGetCurrentTable", "defaults": {}, "funcname": "GetCurrentTable", - "location": "imgui_internal:3031", + "location": "imgui_internal:3222", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTable", "ret": "ImGuiTable*", @@ -19290,7 +19717,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", - "location": "imgui_internal:2747", + "location": "imgui_internal:2896", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -19307,7 +19734,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", - "location": "imgui_internal:2746", + "location": "imgui_internal:2895", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -19329,7 +19756,7 @@ "cimguiname": "igGetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui:449", + "location": "imgui:456", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -19347,7 +19774,7 @@ "cimguiname": "igGetCursorPosX", "defaults": {}, "funcname": "GetCursorPosX", - "location": "imgui:450", + "location": "imgui:457", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -19364,7 +19791,7 @@ "cimguiname": "igGetCursorPosY", "defaults": {}, "funcname": "GetCursorPosY", - "location": "imgui:451", + "location": "imgui:458", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -19386,7 +19813,7 @@ "cimguiname": "igGetCursorScreenPos", "defaults": {}, "funcname": "GetCursorScreenPos", - "location": "imgui:456", + "location": "imgui:463", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -19409,7 +19836,7 @@ "cimguiname": "igGetCursorStartPos", "defaults": {}, "funcname": "GetCursorStartPos", - "location": "imgui:455", + "location": "imgui:462", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -19427,7 +19854,7 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", - "location": "imgui_internal:2775", + "location": "imgui_internal:2924", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -19444,7 +19871,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui:833", + "location": "imgui:843", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -19461,7 +19888,7 @@ "cimguiname": "igGetDrawData", "defaults": {}, "funcname": "GetDrawData", - "location": "imgui:301", + "location": "imgui:305", "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -19478,7 +19905,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui:890", + "location": "imgui:900", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -19495,7 +19922,7 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", - "location": "imgui_internal:2835", + "location": "imgui_internal:2983", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -19503,40 +19930,6 @@ "stname": "" } ], - "igGetFocusScope": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetFocusScope", - "defaults": {}, - "funcname": "GetFocusScope", - "location": "imgui_internal:2930", - "namespace": "ImGui", - "ov_cimguiname": "igGetFocusScope", - "ret": "ImGuiID", - "signature": "()", - "stname": "" - } - ], - "igGetFocusedFocusScope": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetFocusedFocusScope", - "defaults": {}, - "funcname": "GetFocusedFocusScope", - "location": "imgui_internal:2929", - "namespace": "ImGui", - "ov_cimguiname": "igGetFocusedFocusScope", - "ret": "ImGuiID", - "signature": "()", - "stname": "" - } - ], "igGetFont": [ { "args": "()", @@ -19546,7 +19939,7 @@ "cimguiname": "igGetFont", "defaults": {}, "funcname": "GetFont", - "location": "imgui:425", + "location": "imgui:432", "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -19563,7 +19956,7 @@ "cimguiname": "igGetFontSize", "defaults": {}, "funcname": "GetFontSize", - "location": "imgui:426", + "location": "imgui:433", "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -19585,7 +19978,7 @@ "cimguiname": "igGetFontTexUvWhitePixel", "defaults": {}, "funcname": "GetFontTexUvWhitePixel", - "location": "imgui:427", + "location": "imgui:434", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -19603,7 +19996,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui:881", + "location": "imgui:891", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_Nil", "ret": "ImDrawList*", @@ -19623,7 +20016,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui:883", + "location": "imgui:893", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -19643,7 +20036,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:2776", + "location": "imgui_internal:2925", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_WindowPtr", "ret": "ImDrawList*", @@ -19660,7 +20053,7 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui:889", + "location": "imgui:899", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -19677,7 +20070,7 @@ "cimguiname": "igGetFrameHeight", "defaults": {}, "funcname": "GetFrameHeight", - "location": "imgui:461", + "location": "imgui:468", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -19694,7 +20087,7 @@ "cimguiname": "igGetFrameHeightWithSpacing", "defaults": {}, "funcname": "GetFrameHeightWithSpacing", - "location": "imgui:462", + "location": "imgui:469", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -19711,7 +20104,7 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", - "location": "imgui_internal:2839", + "location": "imgui_internal:2987", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -19733,7 +20126,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:480", + "location": "imgui:487", "namespace": "ImGui", "ov_cimguiname": "igGetID_Str", "ret": "ImGuiID", @@ -19757,7 +20150,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:481", + "location": "imgui:488", "namespace": "ImGui", "ov_cimguiname": "igGetID_StrStr", "ret": "ImGuiID", @@ -19777,7 +20170,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:482", + "location": "imgui:489", "namespace": "ImGui", "ov_cimguiname": "igGetID_Ptr", "ret": "ImGuiID", @@ -19807,7 +20200,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:2844", + "location": "imgui_internal:2992", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed", "ret": "ImGuiID", @@ -19824,7 +20217,7 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", - "location": "imgui:296", + "location": "imgui:300", "namespace": "ImGui", "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", @@ -19847,7 +20240,7 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", - "location": "imgui_internal:3162", + "location": "imgui_internal:3356", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -19864,7 +20257,7 @@ "cimguiname": "igGetItemFlags", "defaults": {}, "funcname": "GetItemFlags", - "location": "imgui_internal:2833", + "location": "imgui_internal:2981", "namespace": "ImGui", "ov_cimguiname": "igGetItemFlags", "ret": "ImGuiItemFlags", @@ -19881,7 +20274,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui_internal:2831", + "location": "imgui_internal:2979", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -19903,7 +20296,7 @@ "cimguiname": "igGetItemRectMax", "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui:869", + "location": "imgui:879", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -19926,7 +20319,7 @@ "cimguiname": "igGetItemRectMin", "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui:868", + "location": "imgui:878", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -19949,7 +20342,7 @@ "cimguiname": "igGetItemRectSize", "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui:870", + "location": "imgui:880", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -19967,7 +20360,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", - "location": "imgui_internal:2832", + "location": "imgui_internal:2980", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -19975,6 +20368,36 @@ "stname": "" } ], + "igGetKeyChordName": [ + { + "args": "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "out_buf", + "type": "char*" + }, + { + "name": "out_buf_size", + "type": "int" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)", + "call_args": "(key_chord,out_buf,out_buf_size)", + "cimguiname": "igGetKeyChordName", + "defaults": {}, + "funcname": "GetKeyChordName", + "location": "imgui_internal:3074", + "namespace": "ImGui", + "ov_cimguiname": "igGetKeyChordName", + "ret": "void", + "signature": "(ImGuiKeyChord,char*,int)", + "stname": "" + } + ], "igGetKeyData": [ { "args": "(ImGuiKey key)", @@ -19989,7 +20412,7 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:2937", + "location": "imgui_internal:3073", "namespace": "ImGui", "ov_cimguiname": "igGetKeyData", "ret": "ImGuiKeyData*", @@ -20011,10 +20434,10 @@ "cimguiname": "igGetKeyIndex", "defaults": {}, "funcname": "GetKeyIndex", - "location": "imgui:3219", + "location": "imgui:3213", "namespace": "ImGui", "ov_cimguiname": "igGetKeyIndex", - "ret": "int", + "ret": "ImGuiKey", "signature": "(ImGuiKey)", "stname": "" } @@ -20033,7 +20456,7 @@ "cimguiname": "igGetKeyName", "defaults": {}, "funcname": "GetKeyName", - "location": "imgui:916", + "location": "imgui:926", "namespace": "ImGui", "ov_cimguiname": "igGetKeyName", "ret": "const char*", @@ -20041,6 +20464,50 @@ "stname": "" } ], + "igGetKeyOwner": [ + { + "args": "(ImGuiKey key)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igGetKeyOwner", + "defaults": {}, + "funcname": "GetKeyOwner", + "location": "imgui_internal:3095", + "namespace": "ImGui", + "ov_cimguiname": "igGetKeyOwner", + "ret": "ImGuiID", + "signature": "(ImGuiKey)", + "stname": "" + } + ], + "igGetKeyOwnerData": [ + { + "args": "(ImGuiKey key)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igGetKeyOwnerData", + "defaults": {}, + "funcname": "GetKeyOwnerData", + "location": "imgui_internal:3099", + "namespace": "ImGui", + "ov_cimguiname": "igGetKeyOwnerData", + "ret": "ImGuiKeyOwnerData*", + "signature": "(ImGuiKey)", + "stname": "" + } + ], "igGetKeyPressedAmount": [ { "args": "(ImGuiKey key,float repeat_delay,float rate)", @@ -20063,7 +20530,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:915", + "location": "imgui:925", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -20071,6 +20538,45 @@ "stname": "" } ], + "igGetKeyVector2d": [ + { + "args": "(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down)", + "argsT": [ + { + "name": "pOut", + "type": "ImVec2*" + }, + { + "name": "key_left", + "type": "ImGuiKey" + }, + { + "name": "key_right", + "type": "ImGuiKey" + }, + { + "name": "key_up", + "type": "ImGuiKey" + }, + { + "name": "key_down", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down)", + "call_args": "(key_left,key_right,key_up,key_down)", + "cimguiname": "igGetKeyVector2d", + "defaults": {}, + "funcname": "GetKeyVector2d", + "location": "imgui_internal:3077", + "namespace": "ImGui", + "nonUDT": 1, + "ov_cimguiname": "igGetKeyVector2d", + "ret": "void", + "signature": "(ImGuiKey,ImGuiKey,ImGuiKey,ImGuiKey)", + "stname": "" + } + ], "igGetMainViewport": [ { "args": "()", @@ -20080,7 +20586,7 @@ "cimguiname": "igGetMainViewport", "defaults": {}, "funcname": "GetMainViewport", - "location": "imgui:877", + "location": "imgui:887", "namespace": "ImGui", "ov_cimguiname": "igGetMainViewport", "ret": "ImGuiViewport*", @@ -20088,23 +20594,6 @@ "stname": "" } ], - "igGetMergedModFlags": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetMergedModFlags", - "defaults": {}, - "funcname": "GetMergedModFlags", - "location": "imgui_internal:2947", - "namespace": "ImGui", - "ov_cimguiname": "igGetMergedModFlags", - "ret": "ImGuiModFlags", - "signature": "()", - "stname": "" - } - ], "igGetMouseClickedCount": [ { "args": "(ImGuiMouseButton button)", @@ -20119,7 +20608,7 @@ "cimguiname": "igGetMouseClickedCount", "defaults": {}, "funcname": "GetMouseClickedCount", - "location": "imgui:927", + "location": "imgui:937", "namespace": "ImGui", "ov_cimguiname": "igGetMouseClickedCount", "ret": "int", @@ -20136,7 +20625,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:936", + "location": "imgui:946", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -20169,7 +20658,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:934", + "location": "imgui:944", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -20192,7 +20681,7 @@ "cimguiname": "igGetMousePos", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:931", + "location": "imgui:941", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -20215,7 +20704,7 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:932", + "location": "imgui:942", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -20224,93 +20713,25 @@ "stname": "" } ], - "igGetNavInputAmount": [ + "igGetNavTweakPressedAmount": [ { - "args": "(ImGuiNavInput n,ImGuiNavReadMode mode)", + "args": "(ImGuiAxis axis)", "argsT": [ { - "name": "n", - "type": "ImGuiNavInput" - }, - { - "name": "mode", - "type": "ImGuiNavReadMode" + "name": "axis", + "type": "ImGuiAxis" } ], - "argsoriginal": "(ImGuiNavInput n,ImGuiNavReadMode mode)", - "call_args": "(n,mode)", - "cimguiname": "igGetNavInputAmount", + "argsoriginal": "(ImGuiAxis axis)", + "call_args": "(axis)", + "cimguiname": "igGetNavTweakPressedAmount", "defaults": {}, - "funcname": "GetNavInputAmount", - "location": "imgui_internal:2917", + "funcname": "GetNavTweakPressedAmount", + "location": "imgui_internal:3078", "namespace": "ImGui", - "ov_cimguiname": "igGetNavInputAmount", + "ov_cimguiname": "igGetNavTweakPressedAmount", "ret": "float", - "signature": "(ImGuiNavInput,ImGuiNavReadMode)", - "stname": "" - } - ], - "igGetNavInputAmount2d": [ - { - "args": "(ImVec2 *pOut,ImGuiNavDirSourceFlags dir_sources,ImGuiNavReadMode mode,float slow_factor,float fast_factor)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - }, - { - "name": "dir_sources", - "type": "ImGuiNavDirSourceFlags" - }, - { - "name": "mode", - "type": "ImGuiNavReadMode" - }, - { - "name": "slow_factor", - "type": "float" - }, - { - "name": "fast_factor", - "type": "float" - } - ], - "argsoriginal": "(ImGuiNavDirSourceFlags dir_sources,ImGuiNavReadMode mode,float slow_factor=0.0f,float fast_factor=0.0f)", - "call_args": "(dir_sources,mode,slow_factor,fast_factor)", - "cimguiname": "igGetNavInputAmount2d", - "defaults": { - "fast_factor": "0.0f", - "slow_factor": "0.0f" - }, - "funcname": "GetNavInputAmount2d", - "location": "imgui_internal:2918", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetNavInputAmount2d", - "ret": "void", - "signature": "(ImGuiNavDirSourceFlags,ImGuiNavReadMode,float,float)", - "stname": "" - } - ], - "igGetNavInputName": [ - { - "args": "(ImGuiNavInput n)", - "argsT": [ - { - "name": "n", - "type": "ImGuiNavInput" - } - ], - "argsoriginal": "(ImGuiNavInput n)", - "call_args": "(n)", - "cimguiname": "igGetNavInputName", - "defaults": {}, - "funcname": "GetNavInputName", - "location": "imgui_internal:2916", - "namespace": "ImGui", - "ov_cimguiname": "igGetNavInputName", - "ret": "const char*", - "signature": "(ImGuiNavInput)", + "signature": "(ImGuiAxis)", "stname": "" } ], @@ -20323,7 +20744,7 @@ "cimguiname": "igGetPlatformIO", "defaults": {}, "funcname": "GetPlatformIO", - "location": "imgui:970", + "location": "imgui:980", "namespace": "ImGui", "ov_cimguiname": "igGetPlatformIO", "ret": "ImGuiPlatformIO*", @@ -20350,7 +20771,7 @@ "cimguiname": "igGetPopupAllowedExtentRect", "defaults": {}, "funcname": "GetPopupAllowedExtentRect", - "location": "imgui_internal:2890", + "location": "imgui_internal:3027", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetPopupAllowedExtentRect", @@ -20368,7 +20789,7 @@ "cimguiname": "igGetScrollMaxX", "defaults": {}, "funcname": "GetScrollMaxX", - "location": "imgui:394", + "location": "imgui:401", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -20385,7 +20806,7 @@ "cimguiname": "igGetScrollMaxY", "defaults": {}, "funcname": "GetScrollMaxY", - "location": "imgui:395", + "location": "imgui:402", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -20402,7 +20823,7 @@ "cimguiname": "igGetScrollX", "defaults": {}, "funcname": "GetScrollX", - "location": "imgui:390", + "location": "imgui:397", "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -20419,7 +20840,7 @@ "cimguiname": "igGetScrollY", "defaults": {}, "funcname": "GetScrollY", - "location": "imgui:391", + "location": "imgui:398", "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -20427,6 +20848,28 @@ "stname": "" } ], + "igGetShortcutRoutingData": [ + { + "args": "(ImGuiKeyChord key_chord)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord)", + "call_args": "(key_chord)", + "cimguiname": "igGetShortcutRoutingData", + "defaults": {}, + "funcname": "GetShortcutRoutingData", + "location": "imgui_internal:3127", + "namespace": "ImGui", + "ov_cimguiname": "igGetShortcutRoutingData", + "ret": "ImGuiKeyRoutingData*", + "signature": "(ImGuiKeyChord)", + "stname": "" + } + ], "igGetStateStorage": [ { "args": "()", @@ -20436,7 +20879,7 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui:893", + "location": "imgui:903", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -20453,7 +20896,7 @@ "cimguiname": "igGetStyle", "defaults": {}, "funcname": "GetStyle", - "location": "imgui:297", + "location": "imgui:301", "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -20476,7 +20919,7 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui:891", + "location": "imgui:901", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -20498,7 +20941,7 @@ "cimguiname": "igGetStyleColorVec4", "defaults": {}, "funcname": "GetStyleColorVec4", - "location": "imgui:431", + "location": "imgui:438", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", @@ -20516,7 +20959,7 @@ "cimguiname": "igGetTextLineHeight", "defaults": {}, "funcname": "GetTextLineHeight", - "location": "imgui:459", + "location": "imgui:466", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -20533,7 +20976,7 @@ "cimguiname": "igGetTextLineHeightWithSpacing", "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", - "location": "imgui:460", + "location": "imgui:467", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -20550,7 +20993,7 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", - "location": "imgui:888", + "location": "imgui:898", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -20567,7 +21010,7 @@ "cimguiname": "igGetTopMostAndVisiblePopupModal", "defaults": {}, "funcname": "GetTopMostAndVisiblePopupModal", - "location": "imgui_internal:2892", + "location": "imgui_internal:3029", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostAndVisiblePopupModal", "ret": "ImGuiWindow*", @@ -20584,7 +21027,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", - "location": "imgui_internal:2891", + "location": "imgui_internal:3028", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -20601,7 +21044,7 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui:614", + "location": "imgui:624", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -20609,6 +21052,36 @@ "stname": "" } ], + "igGetTypematicRepeatRate": [ + { + "args": "(ImGuiInputFlags flags,float* repeat_delay,float* repeat_rate)", + "argsT": [ + { + "name": "flags", + "type": "ImGuiInputFlags" + }, + { + "name": "repeat_delay", + "type": "float*" + }, + { + "name": "repeat_rate", + "type": "float*" + } + ], + "argsoriginal": "(ImGuiInputFlags flags,float* repeat_delay,float* repeat_rate)", + "call_args": "(flags,repeat_delay,repeat_rate)", + "cimguiname": "igGetTypematicRepeatRate", + "defaults": {}, + "funcname": "GetTypematicRepeatRate", + "location": "imgui_internal:3080", + "namespace": "ImGui", + "ov_cimguiname": "igGetTypematicRepeatRate", + "ret": "void", + "signature": "(ImGuiInputFlags,float*,float*)", + "stname": "" + } + ], "igGetVersion": [ { "args": "()", @@ -20618,7 +21091,7 @@ "cimguiname": "igGetVersion", "defaults": {}, "funcname": "GetVersion", - "location": "imgui:313", + "location": "imgui:317", "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -20640,7 +21113,7 @@ "cimguiname": "igGetViewportPlatformMonitor", "defaults": {}, "funcname": "GetViewportPlatformMonitor", - "location": "imgui_internal:2801", + "location": "imgui_internal:2950", "namespace": "ImGui", "ov_cimguiname": "igGetViewportPlatformMonitor", "ret": "const ImGuiPlatformMonitor*", @@ -20662,7 +21135,7 @@ "cimguiname": "igGetWindowAlwaysWantOwnTabBar", "defaults": {}, "funcname": "GetWindowAlwaysWantOwnTabBar", - "location": "imgui_internal:2973", + "location": "imgui_internal:3151", "namespace": "ImGui", "ov_cimguiname": "igGetWindowAlwaysWantOwnTabBar", "ret": "bool", @@ -20684,7 +21157,7 @@ "cimguiname": "igGetWindowContentRegionMax", "defaults": {}, "funcname": "GetWindowContentRegionMax", - "location": "imgui:387", + "location": "imgui:392", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMax", @@ -20707,7 +21180,7 @@ "cimguiname": "igGetWindowContentRegionMin", "defaults": {}, "funcname": "GetWindowContentRegionMin", - "location": "imgui:386", + "location": "imgui:391", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMin", @@ -20725,7 +21198,7 @@ "cimguiname": "igGetWindowDockID", "defaults": {}, "funcname": "GetWindowDockID", - "location": "imgui:809", + "location": "imgui:819", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockID", "ret": "ImGuiID", @@ -20742,7 +21215,7 @@ "cimguiname": "igGetWindowDockNode", "defaults": {}, "funcname": "GetWindowDockNode", - "location": "imgui_internal:2972", + "location": "imgui_internal:3150", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockNode", "ret": "ImGuiDockNode*", @@ -20759,7 +21232,7 @@ "cimguiname": "igGetWindowDpiScale", "defaults": {}, "funcname": "GetWindowDpiScale", - "location": "imgui:354", + "location": "imgui:358", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDpiScale", "ret": "float", @@ -20776,7 +21249,7 @@ "cimguiname": "igGetWindowDrawList", "defaults": {}, "funcname": "GetWindowDrawList", - "location": "imgui:353", + "location": "imgui:357", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -20793,7 +21266,7 @@ "cimguiname": "igGetWindowHeight", "defaults": {}, "funcname": "GetWindowHeight", - "location": "imgui:358", + "location": "imgui:362", "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -20815,7 +21288,7 @@ "cimguiname": "igGetWindowPos", "defaults": {}, "funcname": "GetWindowPos", - "location": "imgui:355", + "location": "imgui:359", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -20842,7 +21315,7 @@ "cimguiname": "igGetWindowResizeBorderID", "defaults": {}, "funcname": "GetWindowResizeBorderID", - "location": "imgui_internal:3125", + "location": "imgui_internal:3318", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeBorderID", "ret": "ImGuiID", @@ -20868,7 +21341,7 @@ "cimguiname": "igGetWindowResizeCornerID", "defaults": {}, "funcname": "GetWindowResizeCornerID", - "location": "imgui_internal:3124", + "location": "imgui_internal:3317", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeCornerID", "ret": "ImGuiID", @@ -20894,7 +21367,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", - "location": "imgui_internal:3123", + "location": "imgui_internal:3316", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -20924,7 +21397,7 @@ "cimguiname": "igGetWindowScrollbarRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", - "location": "imgui_internal:3122", + "location": "imgui_internal:3315", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -20947,7 +21420,7 @@ "cimguiname": "igGetWindowSize", "defaults": {}, "funcname": "GetWindowSize", - "location": "imgui:356", + "location": "imgui:360", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -20965,7 +21438,7 @@ "cimguiname": "igGetWindowViewport", "defaults": {}, "funcname": "GetWindowViewport", - "location": "imgui:359", + "location": "imgui:363", "namespace": "ImGui", "ov_cimguiname": "igGetWindowViewport", "ret": "ImGuiViewport*", @@ -20982,7 +21455,7 @@ "cimguiname": "igGetWindowWidth", "defaults": {}, "funcname": "GetWindowWidth", - "location": "imgui:357", + "location": "imgui:361", "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", @@ -21004,7 +21477,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:431", + "location": "imgui_internal:438", "ov_cimguiname": "igImAbs_Int", "ret": "int", "signature": "(int)", @@ -21023,7 +21496,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:432", + "location": "imgui_internal:439", "ov_cimguiname": "igImAbs_Float", "ret": "float", "signature": "(float)", @@ -21042,7 +21515,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:433", + "location": "imgui_internal:440", "ov_cimguiname": "igImAbs_double", "ret": "double", "signature": "(double)", @@ -21067,7 +21540,7 @@ "cimguiname": "igImAlphaBlendColors", "defaults": {}, "funcname": "ImAlphaBlendColors", - "location": "imgui_internal:324", + "location": "imgui_internal:328", "ov_cimguiname": "igImAlphaBlendColors", "ret": "ImU32", "signature": "(ImU32,ImU32)", @@ -21108,7 +21581,7 @@ "cimguiname": "igImBezierCubicCalc", "defaults": {}, "funcname": "ImBezierCubicCalc", - "location": "imgui_internal:476", + "location": "imgui_internal:483", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicCalc", "ret": "void", @@ -21154,7 +21627,7 @@ "cimguiname": "igImBezierCubicClosestPoint", "defaults": {}, "funcname": "ImBezierCubicClosestPoint", - "location": "imgui_internal:477", + "location": "imgui_internal:484", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPoint", "ret": "void", @@ -21200,7 +21673,7 @@ "cimguiname": "igImBezierCubicClosestPointCasteljau", "defaults": {}, "funcname": "ImBezierCubicClosestPointCasteljau", - "location": "imgui_internal:478", + "location": "imgui_internal:485", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPointCasteljau", "ret": "void", @@ -21238,7 +21711,7 @@ "cimguiname": "igImBezierQuadraticCalc", "defaults": {}, "funcname": "ImBezierQuadraticCalc", - "location": "imgui_internal:479", + "location": "imgui_internal:486", "nonUDT": 1, "ov_cimguiname": "igImBezierQuadraticCalc", "ret": "void", @@ -21264,7 +21737,7 @@ "cimguiname": "igImBitArrayClearBit", "defaults": {}, "funcname": "ImBitArrayClearBit", - "location": "imgui_internal:547", + "location": "imgui_internal:554", "ov_cimguiname": "igImBitArrayClearBit", "ret": "void", "signature": "(ImU32*,int)", @@ -21289,7 +21762,7 @@ "cimguiname": "igImBitArraySetBit", "defaults": {}, "funcname": "ImBitArraySetBit", - "location": "imgui_internal:548", + "location": "imgui_internal:555", "ov_cimguiname": "igImBitArraySetBit", "ret": "void", "signature": "(ImU32*,int)", @@ -21318,7 +21791,7 @@ "cimguiname": "igImBitArraySetBitRange", "defaults": {}, "funcname": "ImBitArraySetBitRange", - "location": "imgui_internal:549", + "location": "imgui_internal:556", "ov_cimguiname": "igImBitArraySetBitRange", "ret": "void", "signature": "(ImU32*,int,int)", @@ -21343,7 +21816,7 @@ "cimguiname": "igImBitArrayTestBit", "defaults": {}, "funcname": "ImBitArrayTestBit", - "location": "imgui_internal:546", + "location": "imgui_internal:553", "ov_cimguiname": "igImBitArrayTestBit", "ret": "bool", "signature": "(const ImU32*,int)", @@ -21364,7 +21837,7 @@ "cimguiname": "igImCharIsBlankA", "defaults": {}, "funcname": "ImCharIsBlankA", - "location": "imgui_internal:344", + "location": "imgui_internal:350", "ov_cimguiname": "igImCharIsBlankA", "ret": "bool", "signature": "(char)", @@ -21385,7 +21858,7 @@ "cimguiname": "igImCharIsBlankW", "defaults": {}, "funcname": "ImCharIsBlankW", - "location": "imgui_internal:345", + "location": "imgui_internal:351", "ov_cimguiname": "igImCharIsBlankW", "ret": "bool", "signature": "(unsigned int)", @@ -21418,7 +21891,7 @@ "cimguiname": "igImClamp", "defaults": {}, "funcname": "ImClamp", - "location": "imgui_internal:455", + "location": "imgui_internal:462", "nonUDT": 1, "ov_cimguiname": "igImClamp", "ret": "void", @@ -21444,7 +21917,7 @@ "cimguiname": "igImDot", "defaults": {}, "funcname": "ImDot", - "location": "imgui_internal:468", + "location": "imgui_internal:475", "ov_cimguiname": "igImDot", "ret": "float", "signature": "(const ImVec2,const ImVec2)", @@ -21465,7 +21938,7 @@ "cimguiname": "igImFileClose", "defaults": {}, "funcname": "ImFileClose", - "location": "imgui_internal:404", + "location": "imgui_internal:411", "ov_cimguiname": "igImFileClose", "ret": "bool", "signature": "(ImFileHandle)", @@ -21486,7 +21959,7 @@ "cimguiname": "igImFileGetSize", "defaults": {}, "funcname": "ImFileGetSize", - "location": "imgui_internal:405", + "location": "imgui_internal:412", "ov_cimguiname": "igImFileGetSize", "ret": "ImU64", "signature": "(ImFileHandle)", @@ -21522,7 +21995,7 @@ "padding_bytes": "0" }, "funcname": "ImFileLoadToMemory", - "location": "imgui_internal:411", + "location": "imgui_internal:418", "ov_cimguiname": "igImFileLoadToMemory", "ret": "void*", "signature": "(const char*,const char*,size_t*,int)", @@ -21547,7 +22020,7 @@ "cimguiname": "igImFileOpen", "defaults": {}, "funcname": "ImFileOpen", - "location": "imgui_internal:403", + "location": "imgui_internal:410", "ov_cimguiname": "igImFileOpen", "ret": "ImFileHandle", "signature": "(const char*,const char*)", @@ -21580,7 +22053,7 @@ "cimguiname": "igImFileRead", "defaults": {}, "funcname": "ImFileRead", - "location": "imgui_internal:406", + "location": "imgui_internal:413", "ov_cimguiname": "igImFileRead", "ret": "ImU64", "signature": "(void*,ImU64,ImU64,ImFileHandle)", @@ -21613,7 +22086,7 @@ "cimguiname": "igImFileWrite", "defaults": {}, "funcname": "ImFileWrite", - "location": "imgui_internal:407", + "location": "imgui_internal:414", "ov_cimguiname": "igImFileWrite", "ret": "ImU64", "signature": "(const void*,ImU64,ImU64,ImFileHandle)", @@ -21634,7 +22107,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:463", + "location": "imgui_internal:470", "ov_cimguiname": "igImFloor_Float", "ret": "float", "signature": "(float)", @@ -21657,7 +22130,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:465", + "location": "imgui_internal:472", "nonUDT": 1, "ov_cimguiname": "igImFloor_Vec2", "ret": "void", @@ -21679,7 +22152,7 @@ "cimguiname": "igImFloorSigned", "defaults": {}, "funcname": "ImFloorSigned", - "location": "imgui_internal:464", + "location": "imgui_internal:471", "ov_cimguiname": "igImFloorSigned_Float", "ret": "float", "signature": "(float)", @@ -21702,7 +22175,7 @@ "cimguiname": "igImFloorSigned", "defaults": {}, "funcname": "ImFloorSigned", - "location": "imgui_internal:466", + "location": "imgui_internal:473", "nonUDT": 1, "ov_cimguiname": "igImFloorSigned_Vec2", "ret": "void", @@ -21724,7 +22197,7 @@ "cimguiname": "igImFontAtlasBuildFinish", "defaults": {}, "funcname": "ImFontAtlasBuildFinish", - "location": "imgui_internal:3230", + "location": "imgui_internal:3445", "ov_cimguiname": "igImFontAtlasBuildFinish", "ret": "void", "signature": "(ImFontAtlas*)", @@ -21745,7 +22218,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", - "location": "imgui_internal:3227", + "location": "imgui_internal:3442", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -21770,7 +22243,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", - "location": "imgui_internal:3233", + "location": "imgui_internal:3448", "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "ret": "void", "signature": "(unsigned char[256],float)", @@ -21815,7 +22288,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", - "location": "imgui_internal:3234", + "location": "imgui_internal:3449", "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "ret": "void", "signature": "(const unsigned char[256],unsigned char*,int,int,int,int,int)", @@ -21840,7 +22313,7 @@ "cimguiname": "igImFontAtlasBuildPackCustomRects", "defaults": {}, "funcname": "ImFontAtlasBuildPackCustomRects", - "location": "imgui_internal:3229", + "location": "imgui_internal:3444", "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", "ret": "void", "signature": "(ImFontAtlas*,void*)", @@ -21889,7 +22362,7 @@ "cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender32bppRectFromString", - "location": "imgui_internal:3232", + "location": "imgui_internal:3447", "ov_cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)", @@ -21938,7 +22411,7 @@ "cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender8bppRectFromString", - "location": "imgui_internal:3231", + "location": "imgui_internal:3446", "ov_cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)", @@ -21975,7 +22448,7 @@ "cimguiname": "igImFontAtlasBuildSetupFont", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFont", - "location": "imgui_internal:3228", + "location": "imgui_internal:3443", "ov_cimguiname": "igImFontAtlasBuildSetupFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)", @@ -21991,7 +22464,7 @@ "cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "defaults": {}, "funcname": "ImFontAtlasGetBuilderForStbTruetype", - "location": "imgui_internal:3225", + "location": "imgui_internal:3440", "ov_cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "ret": "const ImFontBuilderIO*", "signature": "()", @@ -22025,7 +22498,7 @@ "defaults": {}, "funcname": "ImFormatString", "isvararg": "...)", - "location": "imgui_internal:348", + "location": "imgui_internal:355", "ov_cimguiname": "igImFormatString", "ret": "int", "signature": "(char*,size_t,const char*,...)", @@ -22059,7 +22532,7 @@ "defaults": {}, "funcname": "ImFormatStringToTempBuffer", "isvararg": "...)", - "location": "imgui_internal:350", + "location": "imgui_internal:357", "ov_cimguiname": "igImFormatStringToTempBuffer", "ret": "void", "signature": "(const char**,const char**,const char*,...)", @@ -22092,7 +22565,7 @@ "cimguiname": "igImFormatStringToTempBufferV", "defaults": {}, "funcname": "ImFormatStringToTempBufferV", - "location": "imgui_internal:351", + "location": "imgui_internal:358", "ov_cimguiname": "igImFormatStringToTempBufferV", "ret": "void", "signature": "(const char**,const char**,const char*,va_list)", @@ -22125,7 +22598,7 @@ "cimguiname": "igImFormatStringV", "defaults": {}, "funcname": "ImFormatStringV", - "location": "imgui_internal:349", + "location": "imgui_internal:356", "ov_cimguiname": "igImFormatStringV", "ret": "int", "signature": "(char*,size_t,const char*,va_list)", @@ -22150,7 +22623,7 @@ "cimguiname": "igImGetDirQuadrantFromDelta", "defaults": {}, "funcname": "ImGetDirQuadrantFromDelta", - "location": "imgui_internal:485", + "location": "imgui_internal:492", "ov_cimguiname": "igImGetDirQuadrantFromDelta", "ret": "ImGuiDir", "signature": "(float,float)", @@ -22181,7 +22654,7 @@ "seed": "0" }, "funcname": "ImHashData", - "location": "imgui_internal:315", + "location": "imgui_internal:319", "ov_cimguiname": "igImHashData", "ret": "ImGuiID", "signature": "(const void*,size_t,ImU32)", @@ -22213,7 +22686,7 @@ "seed": "0" }, "funcname": "ImHashStr", - "location": "imgui_internal:316", + "location": "imgui_internal:320", "ov_cimguiname": "igImHashStr", "ret": "ImGuiID", "signature": "(const char*,size_t,ImU32)", @@ -22238,7 +22711,7 @@ "cimguiname": "igImInvLength", "defaults": {}, "funcname": "ImInvLength", - "location": "imgui_internal:462", + "location": "imgui_internal:469", "ov_cimguiname": "igImInvLength", "ret": "float", "signature": "(const ImVec2,float)", @@ -22259,7 +22732,7 @@ "cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "defaults": {}, "funcname": "ImIsFloatAboveGuaranteedIntegerPrecision", - "location": "imgui_internal:472", + "location": "imgui_internal:479", "ov_cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "ret": "bool", "signature": "(float)", @@ -22280,7 +22753,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:327", + "location": "imgui_internal:331", "ov_cimguiname": "igImIsPowerOfTwo_Int", "ret": "bool", "signature": "(int)", @@ -22299,7 +22772,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:328", + "location": "imgui_internal:332", "ov_cimguiname": "igImIsPowerOfTwo_U64", "ret": "bool", "signature": "(ImU64)", @@ -22320,7 +22793,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:460", + "location": "imgui_internal:467", "ov_cimguiname": "igImLengthSqr_Vec2", "ret": "float", "signature": "(const ImVec2)", @@ -22339,7 +22812,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:461", + "location": "imgui_internal:468", "ov_cimguiname": "igImLengthSqr_Vec4", "ret": "float", "signature": "(const ImVec4)", @@ -22372,7 +22845,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:456", + "location": "imgui_internal:463", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Float", "ret": "void", @@ -22404,7 +22877,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:457", + "location": "imgui_internal:464", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Vec2", "ret": "void", @@ -22436,7 +22909,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:458", + "location": "imgui_internal:465", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec4", "ret": "void", @@ -22470,7 +22943,7 @@ "cimguiname": "igImLineClosestPoint", "defaults": {}, "funcname": "ImLineClosestPoint", - "location": "imgui_internal:480", + "location": "imgui_internal:487", "nonUDT": 1, "ov_cimguiname": "igImLineClosestPoint", "ret": "void", @@ -22500,7 +22973,7 @@ "cimguiname": "igImLinearSweep", "defaults": {}, "funcname": "ImLinearSweep", - "location": "imgui_internal:470", + "location": "imgui_internal:477", "ov_cimguiname": "igImLinearSweep", "ret": "float", "signature": "(float,float,float)", @@ -22521,7 +22994,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:429", + "location": "imgui_internal:436", "ov_cimguiname": "igImLog_Float", "ret": "float", "signature": "(float)", @@ -22540,7 +23013,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:430", + "location": "imgui_internal:437", "ov_cimguiname": "igImLog_double", "ret": "double", "signature": "(double)", @@ -22569,7 +23042,7 @@ "cimguiname": "igImMax", "defaults": {}, "funcname": "ImMax", - "location": "imgui_internal:454", + "location": "imgui_internal:461", "nonUDT": 1, "ov_cimguiname": "igImMax", "ret": "void", @@ -22599,7 +23072,7 @@ "cimguiname": "igImMin", "defaults": {}, "funcname": "ImMin", - "location": "imgui_internal:453", + "location": "imgui_internal:460", "nonUDT": 1, "ov_cimguiname": "igImMin", "ret": "void", @@ -22625,7 +23098,7 @@ "cimguiname": "igImModPositive", "defaults": {}, "funcname": "ImModPositive", - "location": "imgui_internal:467", + "location": "imgui_internal:474", "ov_cimguiname": "igImModPositive", "ret": "int", "signature": "(int,int)", @@ -22654,7 +23127,7 @@ "cimguiname": "igImMul", "defaults": {}, "funcname": "ImMul", - "location": "imgui_internal:471", + "location": "imgui_internal:478", "nonUDT": 1, "ov_cimguiname": "igImMul", "ret": "void", @@ -22676,7 +23149,7 @@ "cimguiname": "igImParseFormatFindEnd", "defaults": {}, "funcname": "ImParseFormatFindEnd", - "location": "imgui_internal:353", + "location": "imgui_internal:360", "ov_cimguiname": "igImParseFormatFindEnd", "ret": "const char*", "signature": "(const char*)", @@ -22697,7 +23170,7 @@ "cimguiname": "igImParseFormatFindStart", "defaults": {}, "funcname": "ImParseFormatFindStart", - "location": "imgui_internal:352", + "location": "imgui_internal:359", "ov_cimguiname": "igImParseFormatFindStart", "ret": "const char*", "signature": "(const char*)", @@ -22722,7 +23195,7 @@ "cimguiname": "igImParseFormatPrecision", "defaults": {}, "funcname": "ImParseFormatPrecision", - "location": "imgui_internal:357", + "location": "imgui_internal:364", "ov_cimguiname": "igImParseFormatPrecision", "ret": "int", "signature": "(const char*,int)", @@ -22751,7 +23224,7 @@ "cimguiname": "igImParseFormatSanitizeForPrinting", "defaults": {}, "funcname": "ImParseFormatSanitizeForPrinting", - "location": "imgui_internal:355", + "location": "imgui_internal:362", "ov_cimguiname": "igImParseFormatSanitizeForPrinting", "ret": "void", "signature": "(const char*,char*,size_t)", @@ -22780,7 +23253,7 @@ "cimguiname": "igImParseFormatSanitizeForScanning", "defaults": {}, "funcname": "ImParseFormatSanitizeForScanning", - "location": "imgui_internal:356", + "location": "imgui_internal:363", "ov_cimguiname": "igImParseFormatSanitizeForScanning", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -22809,7 +23282,7 @@ "cimguiname": "igImParseFormatTrimDecorations", "defaults": {}, "funcname": "ImParseFormatTrimDecorations", - "location": "imgui_internal:354", + "location": "imgui_internal:361", "ov_cimguiname": "igImParseFormatTrimDecorations", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -22834,7 +23307,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:427", + "location": "imgui_internal:434", "ov_cimguiname": "igImPow_Float", "ret": "float", "signature": "(float,float)", @@ -22857,7 +23330,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:428", + "location": "imgui_internal:435", "ov_cimguiname": "igImPow_double", "ret": "double", "signature": "(double,double)", @@ -22892,7 +23365,7 @@ "cimguiname": "igImQsort", "defaults": {}, "funcname": "ImQsort", - "location": "imgui_internal:320", + "location": "imgui_internal:324", "ov_cimguiname": "igImQsort", "ret": "void", "signature": "(void*,size_t,size_t,int(*)(void const*,void const*))", @@ -22925,7 +23398,7 @@ "cimguiname": "igImRotate", "defaults": {}, "funcname": "ImRotate", - "location": "imgui_internal:469", + "location": "imgui_internal:476", "nonUDT": 1, "ov_cimguiname": "igImRotate", "ret": "void", @@ -22947,7 +23420,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:439", + "location": "imgui_internal:446", "ov_cimguiname": "igImRsqrt_Float", "ret": "float", "signature": "(float)", @@ -22966,7 +23439,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:441", + "location": "imgui_internal:448", "ov_cimguiname": "igImRsqrt_double", "ret": "double", "signature": "(double)", @@ -22987,7 +23460,7 @@ "cimguiname": "igImSaturate", "defaults": {}, "funcname": "ImSaturate", - "location": "imgui_internal:459", + "location": "imgui_internal:466", "ov_cimguiname": "igImSaturate", "ret": "float", "signature": "(float)", @@ -23008,7 +23481,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:434", + "location": "imgui_internal:441", "ov_cimguiname": "igImSign_Float", "ret": "float", "signature": "(float)", @@ -23027,7 +23500,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:435", + "location": "imgui_internal:442", "ov_cimguiname": "igImSign_double", "ret": "double", "signature": "(double)", @@ -23048,7 +23521,7 @@ "cimguiname": "igImStrSkipBlank", "defaults": {}, "funcname": "ImStrSkipBlank", - "location": "imgui_internal:343", + "location": "imgui_internal:347", "ov_cimguiname": "igImStrSkipBlank", "ret": "const char*", "signature": "(const char*)", @@ -23069,7 +23542,7 @@ "cimguiname": "igImStrTrimBlanks", "defaults": {}, "funcname": "ImStrTrimBlanks", - "location": "imgui_internal:342", + "location": "imgui_internal:346", "ov_cimguiname": "igImStrTrimBlanks", "ret": "void", "signature": "(char*)", @@ -23094,7 +23567,7 @@ "cimguiname": "igImStrbolW", "defaults": {}, "funcname": "ImStrbolW", - "location": "imgui_internal:340", + "location": "imgui_internal:344", "ov_cimguiname": "igImStrbolW", "ret": "const ImWchar*", "signature": "(const ImWchar*,const ImWchar*)", @@ -23123,7 +23596,7 @@ "cimguiname": "igImStrchrRange", "defaults": {}, "funcname": "ImStrchrRange", - "location": "imgui_internal:337", + "location": "imgui_internal:341", "ov_cimguiname": "igImStrchrRange", "ret": "const char*", "signature": "(const char*,const char*,char)", @@ -23144,7 +23617,7 @@ "cimguiname": "igImStrdup", "defaults": {}, "funcname": "ImStrdup", - "location": "imgui_internal:335", + "location": "imgui_internal:339", "ov_cimguiname": "igImStrdup", "ret": "char*", "signature": "(const char*)", @@ -23173,7 +23646,7 @@ "cimguiname": "igImStrdupcpy", "defaults": {}, "funcname": "ImStrdupcpy", - "location": "imgui_internal:336", + "location": "imgui_internal:340", "ov_cimguiname": "igImStrdupcpy", "ret": "char*", "signature": "(char*,size_t*,const char*)", @@ -23198,7 +23671,7 @@ "cimguiname": "igImStreolRange", "defaults": {}, "funcname": "ImStreolRange", - "location": "imgui_internal:339", + "location": "imgui_internal:343", "ov_cimguiname": "igImStreolRange", "ret": "const char*", "signature": "(const char*,const char*)", @@ -23223,7 +23696,7 @@ "cimguiname": "igImStricmp", "defaults": {}, "funcname": "ImStricmp", - "location": "imgui_internal:332", + "location": "imgui_internal:336", "ov_cimguiname": "igImStricmp", "ret": "int", "signature": "(const char*,const char*)", @@ -23256,7 +23729,7 @@ "cimguiname": "igImStristr", "defaults": {}, "funcname": "ImStristr", - "location": "imgui_internal:341", + "location": "imgui_internal:345", "ov_cimguiname": "igImStristr", "ret": "const char*", "signature": "(const char*,const char*,const char*,const char*)", @@ -23277,7 +23750,7 @@ "cimguiname": "igImStrlenW", "defaults": {}, "funcname": "ImStrlenW", - "location": "imgui_internal:338", + "location": "imgui_internal:342", "ov_cimguiname": "igImStrlenW", "ret": "int", "signature": "(const ImWchar*)", @@ -23306,7 +23779,7 @@ "cimguiname": "igImStrncpy", "defaults": {}, "funcname": "ImStrncpy", - "location": "imgui_internal:334", + "location": "imgui_internal:338", "ov_cimguiname": "igImStrncpy", "ret": "void", "signature": "(char*,const char*,size_t)", @@ -23335,7 +23808,7 @@ "cimguiname": "igImStrnicmp", "defaults": {}, "funcname": "ImStrnicmp", - "location": "imgui_internal:333", + "location": "imgui_internal:337", "ov_cimguiname": "igImStrnicmp", "ret": "int", "signature": "(const char*,const char*,size_t)", @@ -23364,7 +23837,7 @@ "cimguiname": "igImTextCharFromUtf8", "defaults": {}, "funcname": "ImTextCharFromUtf8", - "location": "imgui_internal:362", + "location": "imgui_internal:369", "ov_cimguiname": "igImTextCharFromUtf8", "ret": "int", "signature": "(unsigned int*,const char*,const char*)", @@ -23389,7 +23862,7 @@ "cimguiname": "igImTextCharToUtf8", "defaults": {}, "funcname": "ImTextCharToUtf8", - "location": "imgui_internal:360", + "location": "imgui_internal:367", "ov_cimguiname": "igImTextCharToUtf8", "ret": "const char*", "signature": "(char[5],unsigned int)", @@ -23414,7 +23887,7 @@ "cimguiname": "igImTextCountCharsFromUtf8", "defaults": {}, "funcname": "ImTextCountCharsFromUtf8", - "location": "imgui_internal:364", + "location": "imgui_internal:371", "ov_cimguiname": "igImTextCountCharsFromUtf8", "ret": "int", "signature": "(const char*,const char*)", @@ -23439,7 +23912,7 @@ "cimguiname": "igImTextCountUtf8BytesFromChar", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromChar", - "location": "imgui_internal:365", + "location": "imgui_internal:372", "ov_cimguiname": "igImTextCountUtf8BytesFromChar", "ret": "int", "signature": "(const char*,const char*)", @@ -23464,7 +23937,7 @@ "cimguiname": "igImTextCountUtf8BytesFromStr", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromStr", - "location": "imgui_internal:366", + "location": "imgui_internal:373", "ov_cimguiname": "igImTextCountUtf8BytesFromStr", "ret": "int", "signature": "(const ImWchar*,const ImWchar*)", @@ -23503,7 +23976,7 @@ "in_remaining": "NULL" }, "funcname": "ImTextStrFromUtf8", - "location": "imgui_internal:363", + "location": "imgui_internal:370", "ov_cimguiname": "igImTextStrFromUtf8", "ret": "int", "signature": "(ImWchar*,int,const char*,const char*,const char**)", @@ -23536,13 +24009,34 @@ "cimguiname": "igImTextStrToUtf8", "defaults": {}, "funcname": "ImTextStrToUtf8", - "location": "imgui_internal:361", + "location": "imgui_internal:368", "ov_cimguiname": "igImTextStrToUtf8", "ret": "int", "signature": "(char*,int,const ImWchar*,const ImWchar*)", "stname": "" } ], + "igImToUpper": [ + { + "args": "(char c)", + "argsT": [ + { + "name": "c", + "type": "char" + } + ], + "argsoriginal": "(char c)", + "call_args": "(c)", + "cimguiname": "igImToUpper", + "defaults": {}, + "funcname": "ImToUpper", + "location": "imgui_internal:349", + "ov_cimguiname": "igImToUpper", + "ret": "char", + "signature": "(char)", + "stname": "" + } + ], "igImTriangleArea": [ { "args": "(const ImVec2 a,const ImVec2 b,const ImVec2 c)", @@ -23565,7 +24059,7 @@ "cimguiname": "igImTriangleArea", "defaults": {}, "funcname": "ImTriangleArea", - "location": "imgui_internal:484", + "location": "imgui_internal:491", "ov_cimguiname": "igImTriangleArea", "ret": "float", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -23613,7 +24107,7 @@ "cimguiname": "igImTriangleBarycentricCoords", "defaults": {}, "funcname": "ImTriangleBarycentricCoords", - "location": "imgui_internal:483", + "location": "imgui_internal:490", "ov_cimguiname": "igImTriangleBarycentricCoords", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -23650,7 +24144,7 @@ "cimguiname": "igImTriangleClosestPoint", "defaults": {}, "funcname": "ImTriangleClosestPoint", - "location": "imgui_internal:482", + "location": "imgui_internal:489", "nonUDT": 1, "ov_cimguiname": "igImTriangleClosestPoint", "ret": "void", @@ -23684,7 +24178,7 @@ "cimguiname": "igImTriangleContainsPoint", "defaults": {}, "funcname": "ImTriangleContainsPoint", - "location": "imgui_internal:481", + "location": "imgui_internal:488", "ov_cimguiname": "igImTriangleContainsPoint", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", @@ -23705,7 +24199,7 @@ "cimguiname": "igImUpperPowerOfTwo", "defaults": {}, "funcname": "ImUpperPowerOfTwo", - "location": "imgui_internal:329", + "location": "imgui_internal:333", "ov_cimguiname": "igImUpperPowerOfTwo", "ret": "int", "signature": "(int)", @@ -23751,7 +24245,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui:506", + "location": "imgui:523", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -23761,8 +24255,12 @@ ], "igImageButton": [ { - "args": "(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,int frame_padding,const ImVec4 bg_col,const ImVec4 tint_col)", + "args": "(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", "argsT": [ + { + "name": "str_id", + "type": "const char*" + }, { "name": "user_texture_id", "type": "ImTextureID" @@ -23779,10 +24277,6 @@ "name": "uv1", "type": "const ImVec2" }, - { - "name": "frame_padding", - "type": "int" - }, { "name": "bg_col", "type": "const ImVec4" @@ -23792,28 +24286,27 @@ "type": "const ImVec4" } ], - "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),int frame_padding=-1,const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))", - "call_args": "(user_texture_id,size,uv0,uv1,frame_padding,bg_col,tint_col)", + "argsoriginal": "(const char* str_id,ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))", + "call_args": "(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col)", "cimguiname": "igImageButton", "defaults": { "bg_col": "ImVec4(0,0,0,0)", - "frame_padding": "-1", "tint_col": "ImVec4(1,1,1,1)", "uv0": "ImVec2(0,0)", "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui:507", + "location": "imgui:524", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", - "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,int,const ImVec4,const ImVec4)", + "signature": "(const char*,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)", "stname": "" } ], "igImageButtonEx": [ { - "args": "(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec2 padding,const ImVec4 bg_col,const ImVec4 tint_col)", + "args": "(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", "argsT": [ { "name": "id", @@ -23835,10 +24328,6 @@ "name": "uv1", "type": "const ImVec2" }, - { - "name": "padding", - "type": "const ImVec2" - }, { "name": "bg_col", "type": "const ImVec4" @@ -23848,16 +24337,16 @@ "type": "const ImVec4" } ], - "argsoriginal": "(ImGuiID id,ImTextureID texture_id,const ImVec2& size,const ImVec2& uv0,const ImVec2& uv1,const ImVec2& padding,const ImVec4& bg_col,const ImVec4& tint_col)", - "call_args": "(id,texture_id,size,uv0,uv1,padding,bg_col,tint_col)", + "argsoriginal": "(ImGuiID id,ImTextureID texture_id,const ImVec2& size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col)", + "call_args": "(id,texture_id,size,uv0,uv1,bg_col,tint_col)", "cimguiname": "igImageButtonEx", "defaults": {}, "funcname": "ImageButtonEx", - "location": "imgui_internal:3121", + "location": "imgui_internal:3314", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", - "signature": "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)", + "signature": "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)", "stname": "" } ], @@ -23877,7 +24366,7 @@ "indent_w": "0.0f" }, "funcname": "Indent", - "location": "imgui:445", + "location": "imgui:452", "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -23894,7 +24383,7 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", - "location": "imgui_internal:2779", + "location": "imgui_internal:2928", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -23941,7 +24430,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui:585", + "location": "imgui:595", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -23988,7 +24477,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui:577", + "location": "imgui:587", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -24025,7 +24514,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui:578", + "location": "imgui:588", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -24062,7 +24551,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui:579", + "location": "imgui:589", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -24099,7 +24588,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui:580", + "location": "imgui:590", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -24141,7 +24630,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui:581", + "location": "imgui:591", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -24173,7 +24662,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui:582", + "location": "imgui:592", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -24205,7 +24694,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui:583", + "location": "imgui:593", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -24237,7 +24726,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui:584", + "location": "imgui:594", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -24288,7 +24777,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui:586", + "location": "imgui:596", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -24343,7 +24832,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui:587", + "location": "imgui:597", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -24389,7 +24878,7 @@ "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui:574", + "location": "imgui:584", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -24442,7 +24931,7 @@ "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "imgui_internal:3158", + "location": "imgui_internal:3352", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -24493,7 +24982,7 @@ "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui:575", + "location": "imgui:585", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -24543,7 +25032,7 @@ "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui:576", + "location": "imgui:586", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -24575,7 +25064,7 @@ "flags": "0" }, "funcname": "InvisibleButton", - "location": "imgui:504", + "location": "imgui:511", "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -24583,28 +25072,6 @@ "stname": "" } ], - "igIsActiveIdUsingKey": [ - { - "args": "(ImGuiKey key)", - "argsT": [ - { - "name": "key", - "type": "ImGuiKey" - } - ], - "argsoriginal": "(ImGuiKey key)", - "call_args": "(key)", - "cimguiname": "igIsActiveIdUsingKey", - "defaults": {}, - "funcname": "IsActiveIdUsingKey", - "location": "imgui_internal:2942", - "namespace": "ImGui", - "ov_cimguiname": "igIsActiveIdUsingKey", - "ret": "bool", - "signature": "(ImGuiKey)", - "stname": "" - } - ], "igIsActiveIdUsingNavDir": [ { "args": "(ImGuiDir dir)", @@ -24619,7 +25086,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", - "location": "imgui_internal:2940", + "location": "imgui_internal:3082", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -24627,25 +25094,25 @@ "stname": "" } ], - "igIsActiveIdUsingNavInput": [ + "igIsAliasKey": [ { - "args": "(ImGuiNavInput input)", + "args": "(ImGuiKey key)", "argsT": [ { - "name": "input", - "type": "ImGuiNavInput" + "name": "key", + "type": "ImGuiKey" } ], - "argsoriginal": "(ImGuiNavInput input)", - "call_args": "(input)", - "cimguiname": "igIsActiveIdUsingNavInput", + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igIsAliasKey", "defaults": {}, - "funcname": "IsActiveIdUsingNavInput", - "location": "imgui_internal:2941", + "funcname": "IsAliasKey", + "location": "imgui_internal:3063", "namespace": "ImGui", - "ov_cimguiname": "igIsActiveIdUsingNavInput", + "ov_cimguiname": "igIsAliasKey", "ret": "bool", - "signature": "(ImGuiNavInput)", + "signature": "(ImGuiKey)", "stname": "" } ], @@ -24658,7 +25125,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui:866", + "location": "imgui:876", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -24675,7 +25142,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui:867", + "location": "imgui:877", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -24692,7 +25159,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui:865", + "location": "imgui:875", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -24709,7 +25176,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:930", + "location": "imgui:940", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -24735,7 +25202,7 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", - "location": "imgui_internal:2851", + "location": "imgui_internal:2999", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -24752,7 +25219,7 @@ "cimguiname": "igIsDragDropActive", "defaults": {}, "funcname": "IsDragDropActive", - "location": "imgui_internal:3004", + "location": "imgui_internal:3194", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropActive", "ret": "bool", @@ -24769,7 +25236,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", - "location": "imgui_internal:3007", + "location": "imgui_internal:3197", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -24791,7 +25258,7 @@ "cimguiname": "igIsGamepadKey", "defaults": {}, "funcname": "IsGamepadKey", - "location": "imgui_internal:2936", + "location": "imgui_internal:3062", "namespace": "ImGui", "ov_cimguiname": "igIsGamepadKey", "ret": "bool", @@ -24808,7 +25275,7 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui:861", + "location": "imgui:871", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -24825,7 +25292,7 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", - "location": "imgui:856", + "location": "imgui:866", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -24849,7 +25316,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui:858", + "location": "imgui:868", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -24866,7 +25333,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui:862", + "location": "imgui:872", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -24883,7 +25350,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui:863", + "location": "imgui:873", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -24900,7 +25367,7 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui:860", + "location": "imgui:870", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -24917,7 +25384,7 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui:857", + "location": "imgui:867", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -24941,7 +25408,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui:855", + "location": "imgui:865", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -24958,7 +25425,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui:864", + "location": "imgui:874", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -24975,7 +25442,7 @@ "cimguiname": "igIsItemToggledSelection", "defaults": {}, "funcname": "IsItemToggledSelection", - "location": "imgui_internal:2856", + "location": "imgui_internal:3004", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -24992,7 +25459,7 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui:859", + "location": "imgui:869", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -25014,12 +25481,36 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:912", + "location": "imgui:922", "namespace": "ImGui", - "ov_cimguiname": "igIsKeyDown", + "ov_cimguiname": "igIsKeyDown_Nil", "ret": "bool", "signature": "(ImGuiKey)", "stname": "" + }, + { + "args": "(ImGuiKey key,ImGuiID owner_id)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiKey key,ImGuiID owner_id)", + "call_args": "(key,owner_id)", + "cimguiname": "igIsKeyDown", + "defaults": {}, + "funcname": "IsKeyDown", + "location": "imgui_internal:3107", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyDown_ID", + "ret": "bool", + "signature": "(ImGuiKey,ImGuiID)", + "stname": "" } ], "igIsKeyPressed": [ @@ -25042,12 +25533,42 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:913", + "location": "imgui:923", "namespace": "ImGui", - "ov_cimguiname": "igIsKeyPressed", + "ov_cimguiname": "igIsKeyPressed_Bool", "ret": "bool", "signature": "(ImGuiKey,bool)", "stname": "" + }, + { + "args": "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + }, + { + "name": "owner_id", + "type": "ImGuiID" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags=0)", + "call_args": "(key,owner_id,flags)", + "cimguiname": "igIsKeyPressed", + "defaults": { + "flags": "0" + }, + "funcname": "IsKeyPressed", + "location": "imgui_internal:3108", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyPressed_ID", + "ret": "bool", + "signature": "(ImGuiKey,ImGuiID,ImGuiInputFlags)", + "stname": "" } ], "igIsKeyPressedMap": [ @@ -25070,7 +25591,7 @@ "repeat": "true" }, "funcname": "IsKeyPressedMap", - "location": "imgui_internal:2949", + "location": "imgui_internal:3422", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressedMap", "ret": "bool", @@ -25092,12 +25613,36 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:914", + "location": "imgui:924", "namespace": "ImGui", - "ov_cimguiname": "igIsKeyReleased", + "ov_cimguiname": "igIsKeyReleased_Nil", "ret": "bool", "signature": "(ImGuiKey)", "stname": "" + }, + { + "args": "(ImGuiKey key,ImGuiID owner_id)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiKey key,ImGuiID owner_id)", + "call_args": "(key,owner_id)", + "cimguiname": "igIsKeyReleased", + "defaults": {}, + "funcname": "IsKeyReleased", + "location": "imgui_internal:3109", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyReleased_ID", + "ret": "bool", + "signature": "(ImGuiKey,ImGuiID)", + "stname": "" } ], "igIsLegacyKey": [ @@ -25114,7 +25659,7 @@ "cimguiname": "igIsLegacyKey", "defaults": {}, "funcname": "IsLegacyKey", - "location": "imgui_internal:2935", + "location": "imgui_internal:3061", "namespace": "ImGui", "ov_cimguiname": "igIsLegacyKey", "ret": "bool", @@ -25142,12 +25687,42 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:924", + "location": "imgui:934", "namespace": "ImGui", - "ov_cimguiname": "igIsMouseClicked", + "ov_cimguiname": "igIsMouseClicked_Bool", "ret": "bool", "signature": "(ImGuiMouseButton,bool)", "stname": "" + }, + { + "args": "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "button", + "type": "ImGuiMouseButton" + }, + { + "name": "owner_id", + "type": "ImGuiID" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags=0)", + "call_args": "(button,owner_id,flags)", + "cimguiname": "igIsMouseClicked", + "defaults": { + "flags": "0" + }, + "funcname": "IsMouseClicked", + "location": "imgui_internal:3111", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseClicked_ID", + "ret": "bool", + "signature": "(ImGuiMouseButton,ImGuiID,ImGuiInputFlags)", + "stname": "" } ], "igIsMouseDoubleClicked": [ @@ -25164,7 +25739,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:926", + "location": "imgui:936", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked", "ret": "bool", @@ -25186,12 +25761,36 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:923", + "location": "imgui:933", "namespace": "ImGui", - "ov_cimguiname": "igIsMouseDown", + "ov_cimguiname": "igIsMouseDown_Nil", "ret": "bool", "signature": "(ImGuiMouseButton)", "stname": "" + }, + { + "args": "(ImGuiMouseButton button,ImGuiID owner_id)", + "argsT": [ + { + "name": "button", + "type": "ImGuiMouseButton" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiMouseButton button,ImGuiID owner_id)", + "call_args": "(button,owner_id)", + "cimguiname": "igIsMouseDown", + "defaults": {}, + "funcname": "IsMouseDown", + "location": "imgui_internal:3110", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDown_ID", + "ret": "bool", + "signature": "(ImGuiMouseButton,ImGuiID)", + "stname": "" } ], "igIsMouseDragPastThreshold": [ @@ -25214,7 +25813,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "imgui_internal:2944", + "location": "imgui_internal:3076", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -25242,7 +25841,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:933", + "location": "imgui:943", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -25274,7 +25873,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:928", + "location": "imgui:938", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -25298,7 +25897,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:929", + "location": "imgui:939", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -25320,12 +25919,36 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:925", + "location": "imgui:935", "namespace": "ImGui", - "ov_cimguiname": "igIsMouseReleased", + "ov_cimguiname": "igIsMouseReleased_Nil", "ret": "bool", "signature": "(ImGuiMouseButton)", "stname": "" + }, + { + "args": "(ImGuiMouseButton button,ImGuiID owner_id)", + "argsT": [ + { + "name": "button", + "type": "ImGuiMouseButton" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiMouseButton button,ImGuiID owner_id)", + "call_args": "(button,owner_id)", + "cimguiname": "igIsMouseReleased", + "defaults": {}, + "funcname": "IsMouseReleased", + "location": "imgui_internal:3112", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseReleased_ID", + "ret": "bool", + "signature": "(ImGuiMouseButton,ImGuiID)", + "stname": "" } ], "igIsNamedKey": [ @@ -25342,7 +25965,7 @@ "cimguiname": "igIsNamedKey", "defaults": {}, "funcname": "IsNamedKey", - "location": "imgui_internal:2934", + "location": "imgui_internal:3059", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKey", "ret": "bool", @@ -25350,51 +25973,25 @@ "stname": "" } ], - "igIsNavInputDown": [ + "igIsNamedKeyOrModKey": [ { - "args": "(ImGuiNavInput n)", + "args": "(ImGuiKey key)", "argsT": [ { - "name": "n", - "type": "ImGuiNavInput" + "name": "key", + "type": "ImGuiKey" } ], - "argsoriginal": "(ImGuiNavInput n)", - "call_args": "(n)", - "cimguiname": "igIsNavInputDown", + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igIsNamedKeyOrModKey", "defaults": {}, - "funcname": "IsNavInputDown", - "location": "imgui_internal:2945", + "funcname": "IsNamedKeyOrModKey", + "location": "imgui_internal:3060", "namespace": "ImGui", - "ov_cimguiname": "igIsNavInputDown", + "ov_cimguiname": "igIsNamedKeyOrModKey", "ret": "bool", - "signature": "(ImGuiNavInput)", - "stname": "" - } - ], - "igIsNavInputTest": [ - { - "args": "(ImGuiNavInput n,ImGuiNavReadMode rm)", - "argsT": [ - { - "name": "n", - "type": "ImGuiNavInput" - }, - { - "name": "rm", - "type": "ImGuiNavReadMode" - } - ], - "argsoriginal": "(ImGuiNavInput n,ImGuiNavReadMode rm)", - "call_args": "(n,rm)", - "cimguiname": "igIsNavInputTest", - "defaults": {}, - "funcname": "IsNavInputTest", - "location": "imgui_internal:2946", - "namespace": "ImGui", - "ov_cimguiname": "igIsNavInputTest", - "ret": "bool", - "signature": "(ImGuiNavInput,ImGuiNavReadMode)", + "signature": "(ImGuiKey)", "stname": "" } ], @@ -25418,7 +26015,7 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui:713", + "location": "imgui:723", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_Str", "ret": "bool", @@ -25442,7 +26039,7 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", - "location": "imgui_internal:2887", + "location": "imgui_internal:3024", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_ID", "ret": "bool", @@ -25464,7 +26061,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:886", + "location": "imgui:896", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Nil", "ret": "bool", @@ -25488,7 +26085,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:887", + "location": "imgui:897", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Vec2", "ret": "bool", @@ -25514,7 +26111,7 @@ "cimguiname": "igIsWindowAbove", "defaults": {}, "funcname": "IsWindowAbove", - "location": "imgui_internal:2754", + "location": "imgui_internal:2903", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAbove", "ret": "bool", @@ -25531,7 +26128,7 @@ "cimguiname": "igIsWindowAppearing", "defaults": {}, "funcname": "IsWindowAppearing", - "location": "imgui:349", + "location": "imgui:353", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -25565,7 +26162,7 @@ "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", - "location": "imgui_internal:2752", + "location": "imgui_internal:2901", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -25582,7 +26179,7 @@ "cimguiname": "igIsWindowCollapsed", "defaults": {}, "funcname": "IsWindowCollapsed", - "location": "imgui:350", + "location": "imgui:354", "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -25599,7 +26196,7 @@ "cimguiname": "igIsWindowDocked", "defaults": {}, "funcname": "IsWindowDocked", - "location": "imgui:810", + "location": "imgui:820", "namespace": "ImGui", "ov_cimguiname": "igIsWindowDocked", "ret": "bool", @@ -25623,7 +26220,7 @@ "flags": "0" }, "funcname": "IsWindowFocused", - "location": "imgui:351", + "location": "imgui:355", "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -25647,7 +26244,7 @@ "flags": "0" }, "funcname": "IsWindowHovered", - "location": "imgui:352", + "location": "imgui:356", "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -25669,7 +26266,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", - "location": "imgui_internal:2755", + "location": "imgui_internal:2904", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -25695,7 +26292,7 @@ "cimguiname": "igIsWindowWithinBeginStackOf", "defaults": {}, "funcname": "IsWindowWithinBeginStackOf", - "location": "imgui_internal:2753", + "location": "imgui_internal:2902", "namespace": "ImGui", "ov_cimguiname": "igIsWindowWithinBeginStackOf", "ret": "bool", @@ -25732,7 +26329,7 @@ "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "imgui_internal:2849", + "location": "imgui_internal:2997", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -25758,7 +26355,7 @@ "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", - "location": "imgui_internal:2850", + "location": "imgui_internal:2998", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", @@ -25786,7 +26383,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:2847", + "location": "imgui_internal:2995", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Vec2", "ret": "void", @@ -25812,7 +26409,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:2848", + "location": "imgui_internal:2996", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Rect", "ret": "void", @@ -25834,7 +26431,7 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", - "location": "imgui_internal:2841", + "location": "imgui_internal:2989", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -25865,7 +26462,7 @@ "defaults": {}, "funcname": "LabelText", "isvararg": "...)", - "location": "imgui:494", + "location": "imgui:501", "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -25895,7 +26492,7 @@ "cimguiname": "igLabelTextV", "defaults": {}, "funcname": "LabelTextV", - "location": "imgui:495", + "location": "imgui:502", "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -25935,7 +26532,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:633", + "location": "imgui:643", "namespace": "ImGui", "ov_cimguiname": "igListBox_Str_arr", "ret": "bool", @@ -25979,7 +26576,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:634", + "location": "imgui:644", "namespace": "ImGui", "ov_cimguiname": "igListBox_FnBoolPtr", "ret": "bool", @@ -26001,7 +26598,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:949", + "location": "imgui:959", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -26029,7 +26626,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:950", + "location": "imgui:960", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -26055,7 +26652,7 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", - "location": "imgui_internal:2876", + "location": "imgui_internal:3013", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -26072,7 +26669,7 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", - "location": "imgui:818", + "location": "imgui:828", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -26089,7 +26686,7 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", - "location": "imgui:817", + "location": "imgui:827", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -26121,7 +26718,7 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "imgui_internal:2878", + "location": "imgui_internal:3015", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -26147,7 +26744,7 @@ "cimguiname": "igLogSetNextTextDecoration", "defaults": {}, "funcname": "LogSetNextTextDecoration", - "location": "imgui_internal:2879", + "location": "imgui_internal:3016", "namespace": "ImGui", "ov_cimguiname": "igLogSetNextTextDecoration", "ret": "void", @@ -26174,7 +26771,7 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui:819", + "location": "imgui:829", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -26201,7 +26798,7 @@ "cimguiname": "igLogTextV", "defaults": {}, "funcname": "LogTextV", - "location": "imgui:820", + "location": "imgui:830", "namespace": "ImGui", "ov_cimguiname": "igLogTextV", "ret": "void", @@ -26225,7 +26822,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "imgui_internal:2877", + "location": "imgui_internal:3014", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -26249,7 +26846,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui:816", + "location": "imgui:826", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -26278,7 +26875,7 @@ "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui:815", + "location": "imgui:825", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -26302,7 +26899,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui:814", + "location": "imgui:824", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -26319,7 +26916,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:2805", + "location": "imgui_internal:2954", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_Nil", "ret": "void", @@ -26339,7 +26936,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:2806", + "location": "imgui_internal:2955", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_WindowPtr", "ret": "void", @@ -26361,7 +26958,7 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", - "location": "imgui_internal:2842", + "location": "imgui_internal:2990", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -26383,7 +26980,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:964", + "location": "imgui:974", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -26405,7 +27002,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:965", + "location": "imgui:975", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -26443,7 +27040,7 @@ "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui:661", + "location": "imgui:671", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_Bool", "ret": "bool", @@ -26477,7 +27074,7 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui:662", + "location": "imgui:672", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_BoolPtr", "ret": "bool", @@ -26519,7 +27116,7 @@ "shortcut": "NULL" }, "funcname": "MenuItemEx", - "location": "imgui_internal:2899", + "location": "imgui_internal:3036", "namespace": "ImGui", "ov_cimguiname": "igMenuItemEx", "ret": "bool", @@ -26527,6 +27124,28 @@ "stname": "" } ], + "igMouseButtonToKey": [ + { + "args": "(ImGuiMouseButton button)", + "argsT": [ + { + "name": "button", + "type": "ImGuiMouseButton" + } + ], + "argsoriginal": "(ImGuiMouseButton button)", + "call_args": "(button)", + "cimguiname": "igMouseButtonToKey", + "defaults": {}, + "funcname": "MouseButtonToKey", + "location": "imgui_internal:3075", + "namespace": "ImGui", + "ov_cimguiname": "igMouseButtonToKey", + "ret": "ImGuiKey", + "signature": "(ImGuiMouseButton)", + "stname": "" + } + ], "igNavInitRequestApplyResult": [ { "args": "()", @@ -26536,7 +27155,7 @@ "cimguiname": "igNavInitRequestApplyResult", "defaults": {}, "funcname": "NavInitRequestApplyResult", - "location": "imgui_internal:2908", + "location": "imgui_internal:3045", "namespace": "ImGui", "ov_cimguiname": "igNavInitRequestApplyResult", "ret": "void", @@ -26562,7 +27181,7 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", - "location": "imgui_internal:2907", + "location": "imgui_internal:3044", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -26579,7 +27198,7 @@ "cimguiname": "igNavMoveRequestApplyResult", "defaults": {}, "funcname": "NavMoveRequestApplyResult", - "location": "imgui_internal:2914", + "location": "imgui_internal:3051", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestApplyResult", "ret": "void", @@ -26596,7 +27215,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", - "location": "imgui_internal:2909", + "location": "imgui_internal:3046", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -26613,7 +27232,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", - "location": "imgui_internal:2913", + "location": "imgui_internal:3050", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -26647,7 +27266,7 @@ "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", - "location": "imgui_internal:2911", + "location": "imgui_internal:3048", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -26669,7 +27288,7 @@ "cimguiname": "igNavMoveRequestResolveWithLastItem", "defaults": {}, "funcname": "NavMoveRequestResolveWithLastItem", - "location": "imgui_internal:2912", + "location": "imgui_internal:3049", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithLastItem", "ret": "void", @@ -26703,7 +27322,7 @@ "cimguiname": "igNavMoveRequestSubmit", "defaults": {}, "funcname": "NavMoveRequestSubmit", - "location": "imgui_internal:2910", + "location": "imgui_internal:3047", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestSubmit", "ret": "void", @@ -26729,7 +27348,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", - "location": "imgui_internal:2915", + "location": "imgui_internal:3052", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -26746,7 +27365,7 @@ "cimguiname": "igNewFrame", "defaults": {}, "funcname": "NewFrame", - "location": "imgui:298", + "location": "imgui:302", "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -26763,7 +27382,7 @@ "cimguiname": "igNewLine", "defaults": {}, "funcname": "NewLine", - "location": "imgui:442", + "location": "imgui:449", "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -26780,7 +27399,7 @@ "cimguiname": "igNextColumn", "defaults": {}, "funcname": "NextColumn", - "location": "imgui:775", + "location": "imgui:785", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -26808,7 +27427,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:695", + "location": "imgui:705", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_Str", "ret": "void", @@ -26834,7 +27453,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:696", + "location": "imgui:706", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_ID", "ret": "void", @@ -26862,7 +27481,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "imgui_internal:2883", + "location": "imgui_internal:3020", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -26891,7 +27510,7 @@ "str_id": "NULL" }, "funcname": "OpenPopupOnItemClick", - "location": "imgui:697", + "location": "imgui:707", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "void", @@ -26951,7 +27570,7 @@ "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", - "location": "imgui_internal:3170", + "location": "imgui_internal:3364", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", @@ -27012,7 +27631,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:640", + "location": "imgui:650", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FloatPtr", "ret": "void", @@ -27072,7 +27691,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:641", + "location": "imgui:651", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FnFloatPtr", "ret": "void", @@ -27133,7 +27752,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:638", + "location": "imgui:648", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FloatPtr", "ret": "void", @@ -27193,7 +27812,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:639", + "location": "imgui:649", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FnFloatPtr", "ret": "void", @@ -27210,7 +27829,7 @@ "cimguiname": "igPopAllowKeyboardFocus", "defaults": {}, "funcname": "PopAllowKeyboardFocus", - "location": "imgui:411", + "location": "imgui:418", "namespace": "ImGui", "ov_cimguiname": "igPopAllowKeyboardFocus", "ret": "void", @@ -27227,7 +27846,7 @@ "cimguiname": "igPopButtonRepeat", "defaults": {}, "funcname": "PopButtonRepeat", - "location": "imgui:413", + "location": "imgui:420", "namespace": "ImGui", "ov_cimguiname": "igPopButtonRepeat", "ret": "void", @@ -27244,7 +27863,7 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:845", + "location": "imgui:855", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -27261,7 +27880,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", - "location": "imgui_internal:3015", + "location": "imgui_internal:3206", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -27278,7 +27897,7 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", - "location": "imgui_internal:2928", + "location": "imgui_internal:3190", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -27295,7 +27914,7 @@ "cimguiname": "igPopFont", "defaults": {}, "funcname": "PopFont", - "location": "imgui:403", + "location": "imgui:410", "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -27312,7 +27931,7 @@ "cimguiname": "igPopID", "defaults": {}, "funcname": "PopID", - "location": "imgui:479", + "location": "imgui:486", "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -27329,7 +27948,7 @@ "cimguiname": "igPopItemFlag", "defaults": {}, "funcname": "PopItemFlag", - "location": "imgui_internal:2862", + "location": "imgui_internal:3010", "namespace": "ImGui", "ov_cimguiname": "igPopItemFlag", "ret": "void", @@ -27346,7 +27965,7 @@ "cimguiname": "igPopItemWidth", "defaults": {}, "funcname": "PopItemWidth", - "location": "imgui:417", + "location": "imgui:424", "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -27370,7 +27989,7 @@ "count": "1" }, "funcname": "PopStyleColor", - "location": "imgui:406", + "location": "imgui:413", "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -27394,7 +28013,7 @@ "count": "1" }, "funcname": "PopStyleVar", - "location": "imgui:409", + "location": "imgui:416", "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -27411,7 +28030,7 @@ "cimguiname": "igPopTextWrapPos", "defaults": {}, "funcname": "PopTextWrapPos", - "location": "imgui:421", + "location": "imgui:428", "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -27444,7 +28063,7 @@ "size_arg": "ImVec2(-FLT_MIN,0)" }, "funcname": "ProgressBar", - "location": "imgui:513", + "location": "imgui:518", "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -27466,7 +28085,7 @@ "cimguiname": "igPushAllowKeyboardFocus", "defaults": {}, "funcname": "PushAllowKeyboardFocus", - "location": "imgui:410", + "location": "imgui:417", "namespace": "ImGui", "ov_cimguiname": "igPushAllowKeyboardFocus", "ret": "void", @@ -27488,7 +28107,7 @@ "cimguiname": "igPushButtonRepeat", "defaults": {}, "funcname": "PushButtonRepeat", - "location": "imgui:412", + "location": "imgui:419", "namespace": "ImGui", "ov_cimguiname": "igPushButtonRepeat", "ret": "void", @@ -27518,7 +28137,7 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", - "location": "imgui:844", + "location": "imgui:854", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -27540,7 +28159,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", - "location": "imgui_internal:3013", + "location": "imgui_internal:3204", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -27557,7 +28176,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", - "location": "imgui_internal:3014", + "location": "imgui_internal:3205", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -27579,7 +28198,7 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", - "location": "imgui_internal:2927", + "location": "imgui_internal:3189", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -27601,7 +28220,7 @@ "cimguiname": "igPushFont", "defaults": {}, "funcname": "PushFont", - "location": "imgui:402", + "location": "imgui:409", "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -27623,7 +28242,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:475", + "location": "imgui:482", "namespace": "ImGui", "ov_cimguiname": "igPushID_Str", "ret": "void", @@ -27647,7 +28266,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:476", + "location": "imgui:483", "namespace": "ImGui", "ov_cimguiname": "igPushID_StrStr", "ret": "void", @@ -27667,7 +28286,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:477", + "location": "imgui:484", "namespace": "ImGui", "ov_cimguiname": "igPushID_Ptr", "ret": "void", @@ -27687,7 +28306,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:478", + "location": "imgui:485", "namespace": "ImGui", "ov_cimguiname": "igPushID_Int", "ret": "void", @@ -27713,7 +28332,7 @@ "cimguiname": "igPushItemFlag", "defaults": {}, "funcname": "PushItemFlag", - "location": "imgui_internal:2861", + "location": "imgui_internal:3009", "namespace": "ImGui", "ov_cimguiname": "igPushItemFlag", "ret": "void", @@ -27735,7 +28354,7 @@ "cimguiname": "igPushItemWidth", "defaults": {}, "funcname": "PushItemWidth", - "location": "imgui:416", + "location": "imgui:423", "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -27761,7 +28380,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", - "location": "imgui_internal:2855", + "location": "imgui_internal:3003", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -27783,7 +28402,7 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", - "location": "imgui_internal:2843", + "location": "imgui_internal:2991", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -27809,7 +28428,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:404", + "location": "imgui:411", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_U32", "ret": "void", @@ -27833,7 +28452,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:405", + "location": "imgui:412", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_Vec4", "ret": "void", @@ -27859,7 +28478,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:407", + "location": "imgui:414", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Float", "ret": "void", @@ -27883,7 +28502,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:408", + "location": "imgui:415", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Vec2", "ret": "void", @@ -27907,7 +28526,7 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", - "location": "imgui:420", + "location": "imgui:427", "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -27933,7 +28552,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:511", + "location": "imgui:516", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_Bool", "ret": "bool", @@ -27961,7 +28580,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:512", + "location": "imgui:517", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_IntPtr", "ret": "bool", @@ -27987,7 +28606,7 @@ "cimguiname": "igRemoveContextHook", "defaults": {}, "funcname": "RemoveContextHook", - "location": "imgui_internal:2792", + "location": "imgui_internal:2941", "namespace": "ImGui", "ov_cimguiname": "igRemoveContextHook", "ret": "void", @@ -28009,7 +28628,7 @@ "cimguiname": "igRemoveSettingsHandler", "defaults": {}, "funcname": "RemoveSettingsHandler", - "location": "imgui_internal:2812", + "location": "imgui_internal:2961", "namespace": "ImGui", "ov_cimguiname": "igRemoveSettingsHandler", "ret": "void", @@ -28026,7 +28645,7 @@ "cimguiname": "igRender", "defaults": {}, "funcname": "Render", - "location": "imgui:300", + "location": "imgui:304", "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -28066,7 +28685,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "imgui_internal:3104", + "location": "imgui_internal:3297", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -28100,7 +28719,7 @@ "cimguiname": "igRenderArrowDockMenu", "defaults": {}, "funcname": "RenderArrowDockMenu", - "location": "imgui_internal:3108", + "location": "imgui_internal:3301", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowDockMenu", "ret": "void", @@ -28138,7 +28757,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", - "location": "imgui_internal:3107", + "location": "imgui_internal:3300", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -28168,7 +28787,7 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", - "location": "imgui_internal:3105", + "location": "imgui_internal:3298", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -28202,7 +28821,7 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", - "location": "imgui_internal:3106", + "location": "imgui_internal:3299", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -28255,7 +28874,7 @@ "rounding": "0.0f" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "imgui_internal:3098", + "location": "imgui_internal:3291", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -28263,6 +28882,28 @@ "stname": "" } ], + "igRenderDragDropTargetRect": [ + { + "args": "(const ImRect bb)", + "argsT": [ + { + "name": "bb", + "type": "const ImRect" + } + ], + "argsoriginal": "(const ImRect& bb)", + "call_args": "(bb)", + "cimguiname": "igRenderDragDropTargetRect", + "defaults": {}, + "funcname": "RenderDragDropTargetRect", + "location": "imgui_internal:3198", + "namespace": "ImGui", + "ov_cimguiname": "igRenderDragDropTargetRect", + "ret": "void", + "signature": "(const ImRect)", + "stname": "" + } + ], "igRenderFrame": [ { "args": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding)", @@ -28296,7 +28937,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "imgui_internal:3096", + "location": "imgui_internal:3289", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -28328,7 +28969,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "imgui_internal:3097", + "location": "imgui_internal:3290", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -28370,7 +29011,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", - "location": "imgui_internal:3101", + "location": "imgui_internal:3294", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -28402,7 +29043,7 @@ "flags": "ImGuiNavHighlightFlags_TypeDefault" }, "funcname": "RenderNavHighlight", - "location": "imgui_internal:3099", + "location": "imgui_internal:3292", "namespace": "ImGui", "ov_cimguiname": "igRenderNavHighlight", "ret": "void", @@ -28431,7 +29072,7 @@ "renderer_render_arg": "NULL" }, "funcname": "RenderPlatformWindowsDefault", - "location": "imgui:972", + "location": "imgui:982", "namespace": "ImGui", "ov_cimguiname": "igRenderPlatformWindowsDefault", "ret": "void", @@ -28473,7 +29114,7 @@ "cimguiname": "igRenderRectFilledRangeH", "defaults": {}, "funcname": "RenderRectFilledRangeH", - "location": "imgui_internal:3109", + "location": "imgui_internal:3302", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledRangeH", "ret": "void", @@ -28511,7 +29152,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", - "location": "imgui_internal:3110", + "location": "imgui_internal:3303", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -28548,7 +29189,7 @@ "text_end": "NULL" }, "funcname": "RenderText", - "location": "imgui_internal:3091", + "location": "imgui_internal:3284", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -28597,7 +29238,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "imgui_internal:3093", + "location": "imgui_internal:3286", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -28650,7 +29291,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "imgui_internal:3094", + "location": "imgui_internal:3287", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -28700,7 +29341,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", - "location": "imgui_internal:3095", + "location": "imgui_internal:3288", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -28734,7 +29375,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", - "location": "imgui_internal:3092", + "location": "imgui_internal:3285", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -28758,7 +29399,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:935", + "location": "imgui:945", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -28787,7 +29428,7 @@ "spacing": "-1.0f" }, "funcname": "SameLine", - "location": "imgui:441", + "location": "imgui:448", "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -28809,7 +29450,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:951", + "location": "imgui:961", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -28833,7 +29474,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:952", + "location": "imgui:962", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -28859,7 +29500,7 @@ "cimguiname": "igScaleWindowsInViewport", "defaults": {}, "funcname": "ScaleWindowsInViewport", - "location": "imgui_internal:2797", + "location": "imgui_internal:2946", "namespace": "ImGui", "ov_cimguiname": "igScaleWindowsInViewport", "ret": "void", @@ -28885,7 +29526,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", - "location": "imgui_internal:2827", + "location": "imgui_internal:2975", "namespace": "ImGui", "ov_cimguiname": "igScrollToBringRectIntoView", "ret": "void", @@ -28909,7 +29550,7 @@ "flags": "0" }, "funcname": "ScrollToItem", - "location": "imgui_internal:2823", + "location": "imgui_internal:2971", "namespace": "ImGui", "ov_cimguiname": "igScrollToItem", "ret": "void", @@ -28941,7 +29582,7 @@ "flags": "0" }, "funcname": "ScrollToRect", - "location": "imgui_internal:2824", + "location": "imgui_internal:2972", "namespace": "ImGui", "ov_cimguiname": "igScrollToRect", "ret": "void", @@ -28977,7 +29618,7 @@ "flags": "0" }, "funcname": "ScrollToRectEx", - "location": "imgui_internal:2825", + "location": "imgui_internal:2973", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToRectEx", @@ -29000,7 +29641,7 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", - "location": "imgui_internal:3119", + "location": "imgui_internal:3312", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -29046,7 +29687,7 @@ "cimguiname": "igScrollbarEx", "defaults": {}, "funcname": "ScrollbarEx", - "location": "imgui_internal:3120", + "location": "imgui_internal:3313", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -29084,7 +29725,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:622", + "location": "imgui:632", "namespace": "ImGui", "ov_cimguiname": "igSelectable_Bool", "ret": "bool", @@ -29119,7 +29760,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:623", + "location": "imgui:633", "namespace": "ImGui", "ov_cimguiname": "igSelectable_BoolPtr", "ret": "bool", @@ -29136,7 +29777,7 @@ "cimguiname": "igSeparator", "defaults": {}, "funcname": "Separator", - "location": "imgui:440", + "location": "imgui:447", "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -29158,7 +29799,7 @@ "cimguiname": "igSeparatorEx", "defaults": {}, "funcname": "SeparatorEx", - "location": "imgui_internal:3126", + "location": "imgui_internal:3319", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", @@ -29184,7 +29825,7 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", - "location": "imgui_internal:2836", + "location": "imgui_internal:2984", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -29192,40 +29833,18 @@ "stname": "" } ], - "igSetActiveIdUsingKey": [ - { - "args": "(ImGuiKey key)", - "argsT": [ - { - "name": "key", - "type": "ImGuiKey" - } - ], - "argsoriginal": "(ImGuiKey key)", - "call_args": "(key)", - "cimguiname": "igSetActiveIdUsingKey", - "defaults": {}, - "funcname": "SetActiveIdUsingKey", - "location": "imgui_internal:2943", - "namespace": "ImGui", - "ov_cimguiname": "igSetActiveIdUsingKey", - "ret": "void", - "signature": "(ImGuiKey)", - "stname": "" - } - ], - "igSetActiveIdUsingNavAndKeys": [ + "igSetActiveIdUsingAllKeyboardKeys": [ { "args": "()", "argsT": [], "argsoriginal": "()", "call_args": "()", - "cimguiname": "igSetActiveIdUsingNavAndKeys", + "cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "defaults": {}, - "funcname": "SetActiveIdUsingNavAndKeys", - "location": "imgui_internal:2939", + "funcname": "SetActiveIdUsingAllKeyboardKeys", + "location": "imgui_internal:3081", "namespace": "ImGui", - "ov_cimguiname": "igSetActiveIdUsingNavAndKeys", + "ov_cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "ret": "void", "signature": "()", "stname": "" @@ -29255,7 +29874,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:962", + "location": "imgui:972", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -29277,7 +29896,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:943", + "location": "imgui:953", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -29299,7 +29918,7 @@ "cimguiname": "igSetColorEditOptions", "defaults": {}, "funcname": "SetColorEditOptions", - "location": "imgui:597", + "location": "imgui:607", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -29325,7 +29944,7 @@ "cimguiname": "igSetColumnOffset", "defaults": {}, "funcname": "SetColumnOffset", - "location": "imgui:780", + "location": "imgui:790", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -29351,7 +29970,7 @@ "cimguiname": "igSetColumnWidth", "defaults": {}, "funcname": "SetColumnWidth", - "location": "imgui:778", + "location": "imgui:788", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -29373,7 +29992,7 @@ "cimguiname": "igSetCurrentContext", "defaults": {}, "funcname": "SetCurrentContext", - "location": "imgui:293", + "location": "imgui:297", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -29395,7 +30014,7 @@ "cimguiname": "igSetCurrentFont", "defaults": {}, "funcname": "SetCurrentFont", - "location": "imgui_internal:2774", + "location": "imgui_internal:2923", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -29421,7 +30040,7 @@ "cimguiname": "igSetCurrentViewport", "defaults": {}, "funcname": "SetCurrentViewport", - "location": "imgui_internal:2800", + "location": "imgui_internal:2949", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentViewport", "ret": "void", @@ -29443,7 +30062,7 @@ "cimguiname": "igSetCursorPos", "defaults": {}, "funcname": "SetCursorPos", - "location": "imgui:452", + "location": "imgui:459", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -29465,7 +30084,7 @@ "cimguiname": "igSetCursorPosX", "defaults": {}, "funcname": "SetCursorPosX", - "location": "imgui:453", + "location": "imgui:460", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -29487,7 +30106,7 @@ "cimguiname": "igSetCursorPosY", "defaults": {}, "funcname": "SetCursorPosY", - "location": "imgui:454", + "location": "imgui:461", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -29509,7 +30128,7 @@ "cimguiname": "igSetCursorScreenPos", "defaults": {}, "funcname": "SetCursorScreenPos", - "location": "imgui:457", + "location": "imgui:464", "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -29545,7 +30164,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui:828", + "location": "imgui:838", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -29571,7 +30190,7 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", - "location": "imgui_internal:2837", + "location": "imgui_internal:2985", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -29593,7 +30212,7 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", - "location": "imgui_internal:2840", + "location": "imgui_internal:2988", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -29610,7 +30229,7 @@ "cimguiname": "igSetItemAllowOverlap", "defaults": {}, "funcname": "SetItemAllowOverlap", - "location": "imgui:871", + "location": "imgui:881", "namespace": "ImGui", "ov_cimguiname": "igSetItemAllowOverlap", "ret": "void", @@ -29627,7 +30246,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui:849", + "location": "imgui:859", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -29635,20 +30254,63 @@ "stname": "" } ], - "igSetItemUsingMouseWheel": [ + "igSetItemKeyOwner": [ { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igSetItemUsingMouseWheel", - "defaults": {}, - "funcname": "SetItemUsingMouseWheel", - "location": "imgui_internal:2938", + "args": "(ImGuiKey key,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKey key,ImGuiInputFlags flags=0)", + "call_args": "(key,flags)", + "cimguiname": "igSetItemKeyOwner", + "defaults": { + "flags": "0" + }, + "funcname": "SetItemKeyOwner", + "location": "imgui_internal:3097", "namespace": "ImGui", - "ov_cimguiname": "igSetItemUsingMouseWheel", + "ov_cimguiname": "igSetItemKeyOwner", "ret": "void", - "signature": "()", + "signature": "(ImGuiKey,ImGuiInputFlags)", + "stname": "" + } + ], + "igSetKeyOwner": [ + { + "args": "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + }, + { + "name": "owner_id", + "type": "ImGuiID" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags=0)", + "call_args": "(key,owner_id,flags)", + "cimguiname": "igSetKeyOwner", + "defaults": { + "flags": "0" + }, + "funcname": "SetKeyOwner", + "location": "imgui_internal:3096", + "namespace": "ImGui", + "ov_cimguiname": "igSetKeyOwner", + "ret": "void", + "signature": "(ImGuiKey,ImGuiID,ImGuiInputFlags)", "stname": "" } ], @@ -29668,7 +30330,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui:850", + "location": "imgui:860", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -29702,7 +30364,7 @@ "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", - "location": "imgui_internal:2852", + "location": "imgui_internal:3000", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -29724,7 +30386,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:937", + "location": "imgui:947", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -29758,7 +30420,7 @@ "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", - "location": "imgui_internal:2922", + "location": "imgui_internal:3055", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -29780,7 +30442,7 @@ "cimguiname": "igSetNavWindow", "defaults": {}, "funcname": "SetNavWindow", - "location": "imgui_internal:2921", + "location": "imgui_internal:3054", "namespace": "ImGui", "ov_cimguiname": "igSetNavWindow", "ret": "void", @@ -29802,7 +30464,7 @@ "cimguiname": "igSetNextFrameWantCaptureKeyboard", "defaults": {}, "funcname": "SetNextFrameWantCaptureKeyboard", - "location": "imgui:917", + "location": "imgui:927", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureKeyboard", "ret": "void", @@ -29824,7 +30486,7 @@ "cimguiname": "igSetNextFrameWantCaptureMouse", "defaults": {}, "funcname": "SetNextFrameWantCaptureMouse", - "location": "imgui:938", + "location": "imgui:948", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureMouse", "ret": "void", @@ -29852,7 +30514,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui:617", + "location": "imgui:627", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -29874,7 +30536,7 @@ "cimguiname": "igSetNextItemWidth", "defaults": {}, "funcname": "SetNextItemWidth", - "location": "imgui:418", + "location": "imgui:425", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -29896,7 +30558,7 @@ "cimguiname": "igSetNextWindowBgAlpha", "defaults": {}, "funcname": "SetNextWindowBgAlpha", - "location": "imgui:369", + "location": "imgui:374", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -29918,7 +30580,7 @@ "cimguiname": "igSetNextWindowClass", "defaults": {}, "funcname": "SetNextWindowClass", - "location": "imgui:808", + "location": "imgui:818", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowClass", "ret": "void", @@ -29946,7 +30608,7 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", - "location": "imgui:367", + "location": "imgui:371", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -29968,7 +30630,7 @@ "cimguiname": "igSetNextWindowContentSize", "defaults": {}, "funcname": "SetNextWindowContentSize", - "location": "imgui:366", + "location": "imgui:370", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -29996,7 +30658,7 @@ "cond": "0" }, "funcname": "SetNextWindowDockID", - "location": "imgui:807", + "location": "imgui:817", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowDockID", "ret": "void", @@ -30013,7 +30675,7 @@ "cimguiname": "igSetNextWindowFocus", "defaults": {}, "funcname": "SetNextWindowFocus", - "location": "imgui:368", + "location": "imgui:372", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -30046,7 +30708,7 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", - "location": "imgui:363", + "location": "imgui:367", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -30068,7 +30730,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", - "location": "imgui_internal:2816", + "location": "imgui:373", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -30096,7 +30758,7 @@ "cond": "0" }, "funcname": "SetNextWindowSize", - "location": "imgui:364", + "location": "imgui:368", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -30133,7 +30795,7 @@ "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", - "location": "imgui:365", + "location": "imgui:369", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -30155,7 +30817,7 @@ "cimguiname": "igSetNextWindowViewport", "defaults": {}, "funcname": "SetNextWindowViewport", - "location": "imgui:370", + "location": "imgui:375", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowViewport", "ret": "void", @@ -30183,7 +30845,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "imgui:398", + "location": "imgui:405", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_Float", "ret": "void", @@ -30211,7 +30873,7 @@ "cimguiname": "igSetScrollFromPosX", "defaults": {}, "funcname": "SetScrollFromPosX", - "location": "imgui_internal:2819", + "location": "imgui_internal:2967", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_WindowPtr", "ret": "void", @@ -30239,7 +30901,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "imgui:399", + "location": "imgui:406", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_Float", "ret": "void", @@ -30267,7 +30929,7 @@ "cimguiname": "igSetScrollFromPosY", "defaults": {}, "funcname": "SetScrollFromPosY", - "location": "imgui_internal:2820", + "location": "imgui_internal:2968", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_WindowPtr", "ret": "void", @@ -30291,7 +30953,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", - "location": "imgui:396", + "location": "imgui:403", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -30315,7 +30977,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", - "location": "imgui:397", + "location": "imgui:404", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -30337,7 +30999,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui:392", + "location": "imgui:399", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_Float", "ret": "void", @@ -30361,7 +31023,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui_internal:2817", + "location": "imgui_internal:2965", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_WindowPtr", "ret": "void", @@ -30383,7 +31045,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui:393", + "location": "imgui:400", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_Float", "ret": "void", @@ -30407,7 +31069,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui_internal:2818", + "location": "imgui_internal:2966", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_WindowPtr", "ret": "void", @@ -30415,6 +31077,39 @@ "stname": "" } ], + "igSetShortcutRouting": [ + { + "args": "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "owner_id", + "type": "ImGuiID" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)", + "call_args": "(key_chord,owner_id,flags)", + "cimguiname": "igSetShortcutRouting", + "defaults": { + "flags": "0", + "owner_id": "0" + }, + "funcname": "SetShortcutRouting", + "location": "imgui_internal:3125", + "namespace": "ImGui", + "ov_cimguiname": "igSetShortcutRouting", + "ret": "bool", + "signature": "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)", + "stname": "" + } + ], "igSetStateStorage": [ { "args": "(ImGuiStorage* storage)", @@ -30429,7 +31124,7 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui:892", + "location": "imgui:902", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -30451,7 +31146,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui:790", + "location": "imgui:800", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -30478,7 +31173,7 @@ "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui:668", + "location": "imgui:678", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -30504,7 +31199,7 @@ "cimguiname": "igSetTooltipV", "defaults": {}, "funcname": "SetTooltipV", - "location": "imgui:669", + "location": "imgui:679", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -30530,7 +31225,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "imgui_internal:3010", + "location": "imgui_internal:3201", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -30558,7 +31253,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:373", + "location": "imgui:378", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Bool", "ret": "void", @@ -30588,7 +31283,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:378", + "location": "imgui:383", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Str", "ret": "void", @@ -30618,7 +31313,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui_internal:2758", + "location": "imgui_internal:2907", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_WindowPtr", "ret": "void", @@ -30648,7 +31343,7 @@ "cimguiname": "igSetWindowDock", "defaults": {}, "funcname": "SetWindowDock", - "location": "imgui_internal:2977", + "location": "imgui_internal:3155", "namespace": "ImGui", "ov_cimguiname": "igSetWindowDock", "ret": "void", @@ -30665,7 +31360,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:374", + "location": "imgui:379", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Nil", "ret": "void", @@ -30685,7 +31380,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:379", + "location": "imgui:384", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Str", "ret": "void", @@ -30707,7 +31402,7 @@ "cimguiname": "igSetWindowFontScale", "defaults": {}, "funcname": "SetWindowFontScale", - "location": "imgui:375", + "location": "imgui:380", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFontScale", "ret": "void", @@ -30737,7 +31432,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", - "location": "imgui_internal:2759", + "location": "imgui_internal:2908", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -30765,7 +31460,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:371", + "location": "imgui:376", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Vec2", "ret": "void", @@ -30795,7 +31490,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:376", + "location": "imgui:381", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Str", "ret": "void", @@ -30825,7 +31520,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui_internal:2756", + "location": "imgui_internal:2905", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_WindowPtr", "ret": "void", @@ -30853,7 +31548,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:372", + "location": "imgui:377", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Vec2", "ret": "void", @@ -30883,7 +31578,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:377", + "location": "imgui:382", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Str", "ret": "void", @@ -30913,7 +31608,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui_internal:2757", + "location": "imgui_internal:2906", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_WindowPtr", "ret": "void", @@ -30939,7 +31634,7 @@ "cimguiname": "igSetWindowViewport", "defaults": {}, "funcname": "SetWindowViewport", - "location": "imgui_internal:2799", + "location": "imgui_internal:2948", "namespace": "ImGui", "ov_cimguiname": "igSetWindowViewport", "ret": "void", @@ -30985,7 +31680,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "imgui_internal:3173", + "location": "imgui_internal:3367", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -31035,7 +31730,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", - "location": "imgui_internal:3174", + "location": "imgui_internal:3368", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -31043,6 +31738,39 @@ "stname": "" } ], + "igShortcut": [ + { + "args": "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "owner_id", + "type": "ImGuiID" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)", + "call_args": "(key_chord,owner_id,flags)", + "cimguiname": "igShortcut", + "defaults": { + "flags": "0", + "owner_id": "0" + }, + "funcname": "Shortcut", + "location": "imgui_internal:3124", + "namespace": "ImGui", + "ov_cimguiname": "igShortcut", + "ret": "bool", + "signature": "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)", + "stname": "" + } + ], "igShowAboutWindow": [ { "args": "(bool* p_open)", @@ -31059,7 +31787,7 @@ "p_open": "NULL" }, "funcname": "ShowAboutWindow", - "location": "imgui:308", + "location": "imgui:312", "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -31083,7 +31811,7 @@ "p_open": "NULL" }, "funcname": "ShowDebugLogWindow", - "location": "imgui:306", + "location": "imgui:310", "namespace": "ImGui", "ov_cimguiname": "igShowDebugLogWindow", "ret": "void", @@ -31107,7 +31835,7 @@ "p_open": "NULL" }, "funcname": "ShowDemoWindow", - "location": "imgui:304", + "location": "imgui:308", "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -31129,7 +31857,7 @@ "cimguiname": "igShowFontAtlas", "defaults": {}, "funcname": "ShowFontAtlas", - "location": "imgui_internal:3190", + "location": "imgui_internal:3388", "namespace": "ImGui", "ov_cimguiname": "igShowFontAtlas", "ret": "void", @@ -31151,7 +31879,7 @@ "cimguiname": "igShowFontSelector", "defaults": {}, "funcname": "ShowFontSelector", - "location": "imgui:311", + "location": "imgui:315", "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -31175,7 +31903,7 @@ "p_open": "NULL" }, "funcname": "ShowMetricsWindow", - "location": "imgui:305", + "location": "imgui:309", "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -31199,7 +31927,7 @@ "p_open": "NULL" }, "funcname": "ShowStackToolWindow", - "location": "imgui:307", + "location": "imgui:311", "namespace": "ImGui", "ov_cimguiname": "igShowStackToolWindow", "ret": "void", @@ -31223,7 +31951,7 @@ "ref": "NULL" }, "funcname": "ShowStyleEditor", - "location": "imgui:309", + "location": "imgui:313", "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -31245,7 +31973,7 @@ "cimguiname": "igShowStyleSelector", "defaults": {}, "funcname": "ShowStyleSelector", - "location": "imgui:310", + "location": "imgui:314", "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -31262,7 +31990,7 @@ "cimguiname": "igShowUserGuide", "defaults": {}, "funcname": "ShowUserGuide", - "location": "imgui:312", + "location": "imgui:316", "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -31292,7 +32020,7 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", - "location": "imgui_internal:2858", + "location": "imgui_internal:3006", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -31309,7 +32037,7 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", - "location": "imgui_internal:2780", + "location": "imgui_internal:2929", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -31356,7 +32084,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui:560", + "location": "imgui:570", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -31410,7 +32138,7 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", - "location": "imgui_internal:3133", + "location": "imgui_internal:3326", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -31455,7 +32183,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui:556", + "location": "imgui:566", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -31500,7 +32228,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui:557", + "location": "imgui:567", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -31545,7 +32273,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui:558", + "location": "imgui:568", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -31590,7 +32318,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui:559", + "location": "imgui:569", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -31635,7 +32363,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui:561", + "location": "imgui:571", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -31680,7 +32408,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui:562", + "location": "imgui:572", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -31725,7 +32453,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui:563", + "location": "imgui:573", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -31770,7 +32498,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui:564", + "location": "imgui:574", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -31819,7 +32547,7 @@ "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui:565", + "location": "imgui:575", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -31872,7 +32600,7 @@ "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui:566", + "location": "imgui:576", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -31894,7 +32622,7 @@ "cimguiname": "igSmallButton", "defaults": {}, "funcname": "SmallButton", - "location": "imgui:503", + "location": "imgui:510", "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -31911,7 +32639,7 @@ "cimguiname": "igSpacing", "defaults": {}, "funcname": "Spacing", - "location": "imgui:443", + "location": "imgui:450", "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -31973,7 +32701,7 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "imgui_internal:3134", + "location": "imgui_internal:3327", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -31995,7 +32723,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", - "location": "imgui_internal:2785", + "location": "imgui_internal:2934", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -32025,7 +32753,7 @@ "cimguiname": "igStartMouseMovingWindowOrNode", "defaults": {}, "funcname": "StartMouseMovingWindowOrNode", - "location": "imgui_internal:2786", + "location": "imgui_internal:2935", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindowOrNode", "ret": "void", @@ -32049,7 +32777,7 @@ "dst": "NULL" }, "funcname": "StyleColorsClassic", - "location": "imgui:318", + "location": "imgui:322", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -32073,7 +32801,7 @@ "dst": "NULL" }, "funcname": "StyleColorsDark", - "location": "imgui:316", + "location": "imgui:320", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -32097,7 +32825,7 @@ "dst": "NULL" }, "funcname": "StyleColorsLight", - "location": "imgui:317", + "location": "imgui:321", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -32127,7 +32855,7 @@ "cimguiname": "igTabBarAddTab", "defaults": {}, "funcname": "TabBarAddTab", - "location": "imgui_internal:3077", + "location": "imgui_internal:3269", "namespace": "ImGui", "ov_cimguiname": "igTabBarAddTab", "ret": "void", @@ -32153,7 +32881,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", - "location": "imgui_internal:3079", + "location": "imgui_internal:3271", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -32175,7 +32903,7 @@ "cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "defaults": {}, "funcname": "TabBarFindMostRecentlySelectedTabForActiveWindow", - "location": "imgui_internal:3076", + "location": "imgui_internal:3268", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "ret": "ImGuiTabItem*", @@ -32201,7 +32929,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", - "location": "imgui_internal:3075", + "location": "imgui_internal:3267", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -32223,7 +32951,7 @@ "cimguiname": "igTabBarProcessReorder", "defaults": {}, "funcname": "TabBarProcessReorder", - "location": "imgui_internal:3082", + "location": "imgui_internal:3274", "namespace": "ImGui", "ov_cimguiname": "igTabBarProcessReorder", "ret": "bool", @@ -32253,7 +32981,7 @@ "cimguiname": "igTabBarQueueReorder", "defaults": {}, "funcname": "TabBarQueueReorder", - "location": "imgui_internal:3080", + "location": "imgui_internal:3272", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", @@ -32283,7 +33011,7 @@ "cimguiname": "igTabBarQueueReorderFromMousePos", "defaults": {}, "funcname": "TabBarQueueReorderFromMousePos", - "location": "imgui_internal:3081", + "location": "imgui_internal:3273", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorderFromMousePos", "ret": "void", @@ -32309,7 +33037,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", - "location": "imgui_internal:3078", + "location": "imgui_internal:3270", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -32343,7 +33071,7 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", - "location": "imgui_internal:3085", + "location": "imgui_internal:3278", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -32371,7 +33099,7 @@ "flags": "0" }, "funcname": "TabItemButton", - "location": "imgui:789", + "location": "imgui:799", "namespace": "ImGui", "ov_cimguiname": "igTabItemButton", "ret": "bool", @@ -32381,7 +33109,7 @@ ], "igTabItemCalcSize": [ { - "args": "(ImVec2 *pOut,const char* label,bool has_close_button)", + "args": "(ImVec2 *pOut,const char* label,bool has_close_button_or_unsaved_marker)", "argsT": [ { "name": "pOut", @@ -32392,22 +33120,47 @@ "type": "const char*" }, { - "name": "has_close_button", + "name": "has_close_button_or_unsaved_marker", "type": "bool" } ], - "argsoriginal": "(const char* label,bool has_close_button)", - "call_args": "(label,has_close_button)", + "argsoriginal": "(const char* label,bool has_close_button_or_unsaved_marker)", + "call_args": "(label,has_close_button_or_unsaved_marker)", "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3084", + "location": "imgui_internal:3276", "namespace": "ImGui", "nonUDT": 1, - "ov_cimguiname": "igTabItemCalcSize", + "ov_cimguiname": "igTabItemCalcSize_Str", "ret": "void", "signature": "(const char*,bool)", "stname": "" + }, + { + "args": "(ImVec2 *pOut,ImGuiWindow* window)", + "argsT": [ + { + "name": "pOut", + "type": "ImVec2*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igTabItemCalcSize", + "defaults": {}, + "funcname": "TabItemCalcSize", + "location": "imgui_internal:3277", + "namespace": "ImGui", + "nonUDT": 1, + "ov_cimguiname": "igTabItemCalcSize_WindowPtr", + "ret": "void", + "signature": "(ImGuiWindow*)", + "stname": "" } ], "igTabItemEx": [ @@ -32440,7 +33193,7 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", - "location": "imgui_internal:3083", + "location": "imgui_internal:3275", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -32498,7 +33251,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", - "location": "imgui_internal:3086", + "location": "imgui_internal:3279", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "void", @@ -32520,7 +33273,7 @@ "cimguiname": "igTableBeginApplyRequests", "defaults": {}, "funcname": "TableBeginApplyRequests", - "location": "imgui_internal:3035", + "location": "imgui_internal:3226", "namespace": "ImGui", "ov_cimguiname": "igTableBeginApplyRequests", "ret": "void", @@ -32546,7 +33299,7 @@ "cimguiname": "igTableBeginCell", "defaults": {}, "funcname": "TableBeginCell", - "location": "imgui_internal:3051", + "location": "imgui_internal:3243", "namespace": "ImGui", "ov_cimguiname": "igTableBeginCell", "ret": "void", @@ -32554,6 +33307,28 @@ "stname": "" } ], + "igTableBeginContextMenuPopup": [ + { + "args": "(ImGuiTable* table)", + "argsT": [ + { + "name": "table", + "type": "ImGuiTable*" + } + ], + "argsoriginal": "(ImGuiTable* table)", + "call_args": "(table)", + "cimguiname": "igTableBeginContextMenuPopup", + "defaults": {}, + "funcname": "TableBeginContextMenuPopup", + "location": "imgui_internal:3233", + "namespace": "ImGui", + "ov_cimguiname": "igTableBeginContextMenuPopup", + "ret": "bool", + "signature": "(ImGuiTable*)", + "stname": "" + } + ], "igTableBeginInitMemory": [ { "args": "(ImGuiTable* table,int columns_count)", @@ -32572,7 +33347,7 @@ "cimguiname": "igTableBeginInitMemory", "defaults": {}, "funcname": "TableBeginInitMemory", - "location": "imgui_internal:3034", + "location": "imgui_internal:3225", "namespace": "ImGui", "ov_cimguiname": "igTableBeginInitMemory", "ret": "void", @@ -32594,7 +33369,7 @@ "cimguiname": "igTableBeginRow", "defaults": {}, "funcname": "TableBeginRow", - "location": "imgui_internal:3049", + "location": "imgui_internal:3241", "namespace": "ImGui", "ov_cimguiname": "igTableBeginRow", "ret": "void", @@ -32616,7 +33391,7 @@ "cimguiname": "igTableDrawBorders", "defaults": {}, "funcname": "TableDrawBorders", - "location": "imgui_internal:3040", + "location": "imgui_internal:3231", "namespace": "ImGui", "ov_cimguiname": "igTableDrawBorders", "ret": "void", @@ -32638,7 +33413,7 @@ "cimguiname": "igTableDrawContextMenu", "defaults": {}, "funcname": "TableDrawContextMenu", - "location": "imgui_internal:3041", + "location": "imgui_internal:3232", "namespace": "ImGui", "ov_cimguiname": "igTableDrawContextMenu", "ret": "void", @@ -32660,7 +33435,7 @@ "cimguiname": "igTableEndCell", "defaults": {}, "funcname": "TableEndCell", - "location": "imgui_internal:3052", + "location": "imgui_internal:3244", "namespace": "ImGui", "ov_cimguiname": "igTableEndCell", "ret": "void", @@ -32682,7 +33457,7 @@ "cimguiname": "igTableEndRow", "defaults": {}, "funcname": "TableEndRow", - "location": "imgui_internal:3050", + "location": "imgui_internal:3242", "namespace": "ImGui", "ov_cimguiname": "igTableEndRow", "ret": "void", @@ -32704,7 +33479,7 @@ "cimguiname": "igTableFindByID", "defaults": {}, "funcname": "TableFindByID", - "location": "imgui_internal:3032", + "location": "imgui_internal:3223", "namespace": "ImGui", "ov_cimguiname": "igTableFindByID", "ret": "ImGuiTable*", @@ -32730,7 +33505,7 @@ "cimguiname": "igTableFixColumnSortDirection", "defaults": {}, "funcname": "TableFixColumnSortDirection", - "location": "imgui_internal:3047", + "location": "imgui_internal:3239", "namespace": "ImGui", "ov_cimguiname": "igTableFixColumnSortDirection", "ret": "void", @@ -32747,7 +33522,7 @@ "cimguiname": "igTableGcCompactSettings", "defaults": {}, "funcname": "TableGcCompactSettings", - "location": "imgui_internal:3062", + "location": "imgui_internal:3254", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactSettings", "ret": "void", @@ -32769,7 +33544,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3060", + "location": "imgui_internal:3252", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TablePtr", "ret": "void", @@ -32789,7 +33564,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3061", + "location": "imgui_internal:3253", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TableTempDataPtr", "ret": "void", @@ -32811,7 +33586,7 @@ "cimguiname": "igTableGetBoundSettings", "defaults": {}, "funcname": "TableGetBoundSettings", - "location": "imgui_internal:3068", + "location": "imgui_internal:3260", "namespace": "ImGui", "ov_cimguiname": "igTableGetBoundSettings", "ret": "ImGuiTableSettings*", @@ -32841,7 +33616,7 @@ "cimguiname": "igTableGetCellBgRect", "defaults": {}, "funcname": "TableGetCellBgRect", - "location": "imgui_internal:3053", + "location": "imgui_internal:3245", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTableGetCellBgRect", @@ -32859,7 +33634,7 @@ "cimguiname": "igTableGetColumnCount", "defaults": {}, "funcname": "TableGetColumnCount", - "location": "imgui:764", + "location": "imgui:774", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnCount", "ret": "int", @@ -32883,7 +33658,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnFlags", - "location": "imgui:768", + "location": "imgui:778", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnFlags", "ret": "ImGuiTableColumnFlags", @@ -32900,7 +33675,7 @@ "cimguiname": "igTableGetColumnIndex", "defaults": {}, "funcname": "TableGetColumnIndex", - "location": "imgui:765", + "location": "imgui:775", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnIndex", "ret": "int", @@ -32924,7 +33699,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnName", - "location": "imgui:767", + "location": "imgui:777", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_Int", "ret": "const char*", @@ -32948,7 +33723,7 @@ "cimguiname": "igTableGetColumnName", "defaults": {}, "funcname": "TableGetColumnName", - "location": "imgui_internal:3054", + "location": "imgui_internal:3246", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_TablePtr", "ret": "const char*", @@ -32970,7 +33745,7 @@ "cimguiname": "igTableGetColumnNextSortDirection", "defaults": {}, "funcname": "TableGetColumnNextSortDirection", - "location": "imgui_internal:3046", + "location": "imgui_internal:3238", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnNextSortDirection", "ret": "ImGuiSortDirection", @@ -33002,7 +33777,7 @@ "instance_no": "0" }, "funcname": "TableGetColumnResizeID", - "location": "imgui_internal:3055", + "location": "imgui_internal:3247", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnResizeID", "ret": "ImGuiID", @@ -33028,7 +33803,7 @@ "cimguiname": "igTableGetColumnWidthAuto", "defaults": {}, "funcname": "TableGetColumnWidthAuto", - "location": "imgui_internal:3048", + "location": "imgui_internal:3240", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnWidthAuto", "ret": "float", @@ -33045,7 +33820,7 @@ "cimguiname": "igTableGetHeaderRowHeight", "defaults": {}, "funcname": "TableGetHeaderRowHeight", - "location": "imgui_internal:3026", + "location": "imgui_internal:3217", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderRowHeight", "ret": "float", @@ -33062,7 +33837,7 @@ "cimguiname": "igTableGetHoveredColumn", "defaults": {}, "funcname": "TableGetHoveredColumn", - "location": "imgui_internal:3025", + "location": "imgui_internal:3216", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredColumn", "ret": "int", @@ -33088,7 +33863,7 @@ "cimguiname": "igTableGetInstanceData", "defaults": {}, "funcname": "TableGetInstanceData", - "location": "imgui_internal:3043", + "location": "imgui_internal:3235", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceData", "ret": "ImGuiTableInstanceData*", @@ -33114,7 +33889,7 @@ "cimguiname": "igTableGetMaxColumnWidth", "defaults": {}, "funcname": "TableGetMaxColumnWidth", - "location": "imgui_internal:3056", + "location": "imgui_internal:3248", "namespace": "ImGui", "ov_cimguiname": "igTableGetMaxColumnWidth", "ret": "float", @@ -33131,7 +33906,7 @@ "cimguiname": "igTableGetRowIndex", "defaults": {}, "funcname": "TableGetRowIndex", - "location": "imgui:766", + "location": "imgui:776", "namespace": "ImGui", "ov_cimguiname": "igTableGetRowIndex", "ret": "int", @@ -33148,7 +33923,7 @@ "cimguiname": "igTableGetSortSpecs", "defaults": {}, "funcname": "TableGetSortSpecs", - "location": "imgui:763", + "location": "imgui:773", "namespace": "ImGui", "ov_cimguiname": "igTableGetSortSpecs", "ret": "ImGuiTableSortSpecs*", @@ -33170,7 +33945,7 @@ "cimguiname": "igTableHeader", "defaults": {}, "funcname": "TableHeader", - "location": "imgui:755", + "location": "imgui:765", "namespace": "ImGui", "ov_cimguiname": "igTableHeader", "ret": "void", @@ -33187,7 +33962,7 @@ "cimguiname": "igTableHeadersRow", "defaults": {}, "funcname": "TableHeadersRow", - "location": "imgui:754", + "location": "imgui:764", "namespace": "ImGui", "ov_cimguiname": "igTableHeadersRow", "ret": "void", @@ -33209,7 +33984,7 @@ "cimguiname": "igTableLoadSettings", "defaults": {}, "funcname": "TableLoadSettings", - "location": "imgui_internal:3065", + "location": "imgui_internal:3257", "namespace": "ImGui", "ov_cimguiname": "igTableLoadSettings", "ret": "void", @@ -33231,7 +34006,7 @@ "cimguiname": "igTableMergeDrawChannels", "defaults": {}, "funcname": "TableMergeDrawChannels", - "location": "imgui_internal:3042", + "location": "imgui_internal:3234", "namespace": "ImGui", "ov_cimguiname": "igTableMergeDrawChannels", "ret": "void", @@ -33248,7 +34023,7 @@ "cimguiname": "igTableNextColumn", "defaults": {}, "funcname": "TableNextColumn", - "location": "imgui:741", + "location": "imgui:751", "namespace": "ImGui", "ov_cimguiname": "igTableNextColumn", "ret": "bool", @@ -33277,7 +34052,7 @@ "row_flags": "0" }, "funcname": "TableNextRow", - "location": "imgui:740", + "location": "imgui:750", "namespace": "ImGui", "ov_cimguiname": "igTableNextRow", "ret": "void", @@ -33301,7 +34076,7 @@ "column_n": "-1" }, "funcname": "TableOpenContextMenu", - "location": "imgui_internal:3022", + "location": "imgui_internal:3213", "namespace": "ImGui", "ov_cimguiname": "igTableOpenContextMenu", "ret": "void", @@ -33318,7 +34093,7 @@ "cimguiname": "igTablePopBackgroundChannel", "defaults": {}, "funcname": "TablePopBackgroundChannel", - "location": "imgui_internal:3028", + "location": "imgui_internal:3219", "namespace": "ImGui", "ov_cimguiname": "igTablePopBackgroundChannel", "ret": "void", @@ -33335,7 +34110,7 @@ "cimguiname": "igTablePushBackgroundChannel", "defaults": {}, "funcname": "TablePushBackgroundChannel", - "location": "imgui_internal:3027", + "location": "imgui_internal:3218", "namespace": "ImGui", "ov_cimguiname": "igTablePushBackgroundChannel", "ret": "void", @@ -33357,7 +34132,7 @@ "cimguiname": "igTableRemove", "defaults": {}, "funcname": "TableRemove", - "location": "imgui_internal:3059", + "location": "imgui_internal:3251", "namespace": "ImGui", "ov_cimguiname": "igTableRemove", "ret": "void", @@ -33379,7 +34154,7 @@ "cimguiname": "igTableResetSettings", "defaults": {}, "funcname": "TableResetSettings", - "location": "imgui_internal:3067", + "location": "imgui_internal:3259", "namespace": "ImGui", "ov_cimguiname": "igTableResetSettings", "ret": "void", @@ -33401,7 +34176,7 @@ "cimguiname": "igTableSaveSettings", "defaults": {}, "funcname": "TableSaveSettings", - "location": "imgui_internal:3066", + "location": "imgui_internal:3258", "namespace": "ImGui", "ov_cimguiname": "igTableSaveSettings", "ret": "void", @@ -33433,7 +34208,7 @@ "column_n": "-1" }, "funcname": "TableSetBgColor", - "location": "imgui:770", + "location": "imgui:780", "namespace": "ImGui", "ov_cimguiname": "igTableSetBgColor", "ret": "void", @@ -33459,7 +34234,7 @@ "cimguiname": "igTableSetColumnEnabled", "defaults": {}, "funcname": "TableSetColumnEnabled", - "location": "imgui:769", + "location": "imgui:779", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnEnabled", "ret": "void", @@ -33481,7 +34256,7 @@ "cimguiname": "igTableSetColumnIndex", "defaults": {}, "funcname": "TableSetColumnIndex", - "location": "imgui:742", + "location": "imgui:752", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnIndex", "ret": "bool", @@ -33511,7 +34286,7 @@ "cimguiname": "igTableSetColumnSortDirection", "defaults": {}, "funcname": "TableSetColumnSortDirection", - "location": "imgui_internal:3024", + "location": "imgui_internal:3215", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnSortDirection", "ret": "void", @@ -33537,7 +34312,7 @@ "cimguiname": "igTableSetColumnWidth", "defaults": {}, "funcname": "TableSetColumnWidth", - "location": "imgui_internal:3023", + "location": "imgui_internal:3214", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidth", "ret": "void", @@ -33559,7 +34334,7 @@ "cimguiname": "igTableSetColumnWidthAutoAll", "defaults": {}, "funcname": "TableSetColumnWidthAutoAll", - "location": "imgui_internal:3058", + "location": "imgui_internal:3250", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoAll", "ret": "void", @@ -33585,7 +34360,7 @@ "cimguiname": "igTableSetColumnWidthAutoSingle", "defaults": {}, "funcname": "TableSetColumnWidthAutoSingle", - "location": "imgui_internal:3057", + "location": "imgui_internal:3249", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoSingle", "ret": "void", @@ -33602,7 +34377,7 @@ "cimguiname": "igTableSettingsAddSettingsHandler", "defaults": {}, "funcname": "TableSettingsAddSettingsHandler", - "location": "imgui_internal:3069", + "location": "imgui_internal:3261", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsAddSettingsHandler", "ret": "void", @@ -33628,7 +34403,7 @@ "cimguiname": "igTableSettingsCreate", "defaults": {}, "funcname": "TableSettingsCreate", - "location": "imgui_internal:3070", + "location": "imgui_internal:3262", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsCreate", "ret": "ImGuiTableSettings*", @@ -33650,7 +34425,7 @@ "cimguiname": "igTableSettingsFindByID", "defaults": {}, "funcname": "TableSettingsFindByID", - "location": "imgui_internal:3071", + "location": "imgui_internal:3263", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsFindByID", "ret": "ImGuiTableSettings*", @@ -33688,7 +34463,7 @@ "user_id": "0" }, "funcname": "TableSetupColumn", - "location": "imgui:752", + "location": "imgui:762", "namespace": "ImGui", "ov_cimguiname": "igTableSetupColumn", "ret": "void", @@ -33710,7 +34485,7 @@ "cimguiname": "igTableSetupDrawChannels", "defaults": {}, "funcname": "TableSetupDrawChannels", - "location": "imgui_internal:3036", + "location": "imgui_internal:3227", "namespace": "ImGui", "ov_cimguiname": "igTableSetupDrawChannels", "ret": "void", @@ -33736,7 +34511,7 @@ "cimguiname": "igTableSetupScrollFreeze", "defaults": {}, "funcname": "TableSetupScrollFreeze", - "location": "imgui:753", + "location": "imgui:763", "namespace": "ImGui", "ov_cimguiname": "igTableSetupScrollFreeze", "ret": "void", @@ -33758,7 +34533,7 @@ "cimguiname": "igTableSortSpecsBuild", "defaults": {}, "funcname": "TableSortSpecsBuild", - "location": "imgui_internal:3045", + "location": "imgui_internal:3237", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsBuild", "ret": "void", @@ -33780,7 +34555,7 @@ "cimguiname": "igTableSortSpecsSanitize", "defaults": {}, "funcname": "TableSortSpecsSanitize", - "location": "imgui_internal:3044", + "location": "imgui_internal:3236", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsSanitize", "ret": "void", @@ -33802,7 +34577,7 @@ "cimguiname": "igTableUpdateBorders", "defaults": {}, "funcname": "TableUpdateBorders", - "location": "imgui_internal:3038", + "location": "imgui_internal:3229", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateBorders", "ret": "void", @@ -33824,7 +34599,7 @@ "cimguiname": "igTableUpdateColumnsWeightFromWidth", "defaults": {}, "funcname": "TableUpdateColumnsWeightFromWidth", - "location": "imgui_internal:3039", + "location": "imgui_internal:3230", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateColumnsWeightFromWidth", "ret": "void", @@ -33846,7 +34621,7 @@ "cimguiname": "igTableUpdateLayout", "defaults": {}, "funcname": "TableUpdateLayout", - "location": "imgui_internal:3037", + "location": "imgui_internal:3228", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateLayout", "ret": "void", @@ -33868,7 +34643,7 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", - "location": "imgui_internal:3161", + "location": "imgui_internal:3355", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -33921,7 +34696,7 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "imgui_internal:3160", + "location": "imgui_internal:3354", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -33963,7 +34738,7 @@ "cimguiname": "igTempInputText", "defaults": {}, "funcname": "TempInputText", - "location": "imgui_internal:3159", + "location": "imgui_internal:3353", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -33971,6 +34746,58 @@ "stname": "" } ], + "igTestKeyOwner": [ + { + "args": "(ImGuiKey key,ImGuiID owner_id)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiKey key,ImGuiID owner_id)", + "call_args": "(key,owner_id)", + "cimguiname": "igTestKeyOwner", + "defaults": {}, + "funcname": "TestKeyOwner", + "location": "imgui_internal:3098", + "namespace": "ImGui", + "ov_cimguiname": "igTestKeyOwner", + "ret": "bool", + "signature": "(ImGuiKey,ImGuiID)", + "stname": "" + } + ], + "igTestShortcutRouting": [ + { + "args": "(ImGuiKeyChord key_chord,ImGuiID owner_id)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiID owner_id)", + "call_args": "(key_chord,owner_id)", + "cimguiname": "igTestShortcutRouting", + "defaults": {}, + "funcname": "TestShortcutRouting", + "location": "imgui_internal:3126", + "namespace": "ImGui", + "ov_cimguiname": "igTestShortcutRouting", + "ret": "bool", + "signature": "(ImGuiKeyChord,ImGuiID)", + "stname": "" + } + ], "igText": [ { "args": "(const char* fmt,...)", @@ -33990,7 +34817,7 @@ "defaults": {}, "funcname": "Text", "isvararg": "...)", - "location": "imgui:486", + "location": "imgui:493", "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -34021,7 +34848,7 @@ "defaults": {}, "funcname": "TextColored", "isvararg": "...)", - "location": "imgui:488", + "location": "imgui:495", "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -34051,7 +34878,7 @@ "cimguiname": "igTextColoredV", "defaults": {}, "funcname": "TextColoredV", - "location": "imgui:489", + "location": "imgui:496", "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -34078,7 +34905,7 @@ "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", - "location": "imgui:490", + "location": "imgui:497", "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -34104,7 +34931,7 @@ "cimguiname": "igTextDisabledV", "defaults": {}, "funcname": "TextDisabledV", - "location": "imgui:491", + "location": "imgui:498", "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -34137,7 +34964,7 @@ "text_end": "NULL" }, "funcname": "TextEx", - "location": "imgui_internal:3114", + "location": "imgui_internal:3307", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -34165,7 +34992,7 @@ "text_end": "NULL" }, "funcname": "TextUnformatted", - "location": "imgui:485", + "location": "imgui:492", "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -34191,7 +35018,7 @@ "cimguiname": "igTextV", "defaults": {}, "funcname": "TextV", - "location": "imgui:487", + "location": "imgui:494", "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -34218,7 +35045,7 @@ "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", - "location": "imgui:492", + "location": "imgui:499", "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -34244,7 +35071,7 @@ "cimguiname": "igTextWrappedV", "defaults": {}, "funcname": "TextWrappedV", - "location": "imgui:493", + "location": "imgui:500", "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -34274,7 +35101,7 @@ "cimguiname": "igTranslateWindowsInViewport", "defaults": {}, "funcname": "TranslateWindowsInViewport", - "location": "imgui_internal:2796", + "location": "imgui_internal:2945", "namespace": "ImGui", "ov_cimguiname": "igTranslateWindowsInViewport", "ret": "void", @@ -34296,7 +35123,7 @@ "cimguiname": "igTreeNode", "defaults": {}, "funcname": "TreeNode", - "location": "imgui:601", + "location": "imgui:611", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Str", "ret": "bool", @@ -34325,7 +35152,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:602", + "location": "imgui:612", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_StrStr", "ret": "bool", @@ -34354,7 +35181,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:603", + "location": "imgui:613", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Ptr", "ret": "bool", @@ -34390,7 +35217,7 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "imgui_internal:3135", + "location": "imgui_internal:3328", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -34398,34 +35225,6 @@ "stname": "" } ], - "igTreeNodeBehaviorIsOpen": [ - { - "args": "(ImGuiID id,ImGuiTreeNodeFlags flags)", - "argsT": [ - { - "name": "id", - "type": "ImGuiID" - }, - { - "name": "flags", - "type": "ImGuiTreeNodeFlags" - } - ], - "argsoriginal": "(ImGuiID id,ImGuiTreeNodeFlags flags=0)", - "call_args": "(id,flags)", - "cimguiname": "igTreeNodeBehaviorIsOpen", - "defaults": { - "flags": "0" - }, - "funcname": "TreeNodeBehaviorIsOpen", - "location": "imgui_internal:3136", - "namespace": "ImGui", - "ov_cimguiname": "igTreeNodeBehaviorIsOpen", - "ret": "bool", - "signature": "(ImGuiID,ImGuiTreeNodeFlags)", - "stname": "" - } - ], "igTreeNodeEx": [ { "args": "(const char* label,ImGuiTreeNodeFlags flags)", @@ -34446,7 +35245,7 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui:606", + "location": "imgui:616", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Str", "ret": "bool", @@ -34479,7 +35278,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:607", + "location": "imgui:617", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_StrStr", "ret": "bool", @@ -34512,7 +35311,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:608", + "location": "imgui:618", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Ptr", "ret": "bool", @@ -34546,7 +35345,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:609", + "location": "imgui:619", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Str", "ret": "bool", @@ -34578,7 +35377,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:610", + "location": "imgui:620", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Ptr", "ret": "bool", @@ -34586,6 +35385,58 @@ "stname": "" } ], + "igTreeNodeSetOpen": [ + { + "args": "(ImGuiID id,bool open)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "open", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiID id,bool open)", + "call_args": "(id,open)", + "cimguiname": "igTreeNodeSetOpen", + "defaults": {}, + "funcname": "TreeNodeSetOpen", + "location": "imgui_internal:3330", + "namespace": "ImGui", + "ov_cimguiname": "igTreeNodeSetOpen", + "ret": "void", + "signature": "(ImGuiID,bool)", + "stname": "" + } + ], + "igTreeNodeUpdateNextOpen": [ + { + "args": "(ImGuiID id,ImGuiTreeNodeFlags flags)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "flags", + "type": "ImGuiTreeNodeFlags" + } + ], + "argsoriginal": "(ImGuiID id,ImGuiTreeNodeFlags flags)", + "call_args": "(id,flags)", + "cimguiname": "igTreeNodeUpdateNextOpen", + "defaults": {}, + "funcname": "TreeNodeUpdateNextOpen", + "location": "imgui_internal:3331", + "namespace": "ImGui", + "ov_cimguiname": "igTreeNodeUpdateNextOpen", + "ret": "bool", + "signature": "(ImGuiID,ImGuiTreeNodeFlags)", + "stname": "" + } + ], "igTreeNodeV": [ { "args": "(const char* str_id,const char* fmt,va_list args)", @@ -34608,7 +35459,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:604", + "location": "imgui:614", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Str", "ret": "bool", @@ -34636,7 +35487,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:605", + "location": "imgui:615", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Ptr", "ret": "bool", @@ -34653,7 +35504,7 @@ "cimguiname": "igTreePop", "defaults": {}, "funcname": "TreePop", - "location": "imgui:613", + "location": "imgui:623", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -34675,7 +35526,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:611", + "location": "imgui:621", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Str", "ret": "void", @@ -34690,14 +35541,12 @@ "type": "const void*" } ], - "argsoriginal": "(const void* ptr_id=((void*)0))", + "argsoriginal": "(const void* ptr_id)", "call_args": "(ptr_id)", "cimguiname": "igTreePush", - "defaults": { - "ptr_id": "NULL" - }, + "defaults": {}, "funcname": "TreePush", - "location": "imgui:612", + "location": "imgui:622", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Ptr", "ret": "void", @@ -34719,7 +35568,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", - "location": "imgui_internal:3137", + "location": "imgui_internal:3329", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -34743,7 +35592,7 @@ "indent_w": "0.0f" }, "funcname": "Unindent", - "location": "imgui:446", + "location": "imgui:453", "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -34760,7 +35609,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "imgui_internal:2784", + "location": "imgui_internal:2933", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -34782,7 +35631,7 @@ "cimguiname": "igUpdateInputEvents", "defaults": {}, "funcname": "UpdateInputEvents", - "location": "imgui_internal:2783", + "location": "imgui_internal:2932", "namespace": "ImGui", "ov_cimguiname": "igUpdateInputEvents", "ret": "void", @@ -34799,7 +35648,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "imgui_internal:2788", + "location": "imgui_internal:2937", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -34816,7 +35665,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "imgui_internal:2787", + "location": "imgui_internal:2936", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -34833,7 +35682,7 @@ "cimguiname": "igUpdatePlatformWindows", "defaults": {}, "funcname": "UpdatePlatformWindows", - "location": "imgui:971", + "location": "imgui:981", "namespace": "ImGui", "ov_cimguiname": "igUpdatePlatformWindows", "ret": "void", @@ -34863,7 +35712,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", - "location": "imgui_internal:2750", + "location": "imgui_internal:2899", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -34912,7 +35761,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui:567", + "location": "imgui:577", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -34961,7 +35810,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui:568", + "location": "imgui:578", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -35014,7 +35863,7 @@ "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui:569", + "location": "imgui:579", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -35040,7 +35889,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:645", + "location": "imgui:655", "namespace": "ImGui", "ov_cimguiname": "igValue_Bool", "ret": "void", @@ -35064,7 +35913,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:646", + "location": "imgui:656", "namespace": "ImGui", "ov_cimguiname": "igValue_Int", "ret": "void", @@ -35088,7 +35937,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:647", + "location": "imgui:657", "namespace": "ImGui", "ov_cimguiname": "igValue_Uint", "ret": "void", @@ -35118,7 +35967,7 @@ "float_format": "NULL" }, "funcname": "Value", - "location": "imgui:648", + "location": "imgui:658", "namespace": "ImGui", "ov_cimguiname": "igValue_Float", "ret": "void", @@ -35148,7 +35997,7 @@ "cimguiname": "igWindowRectAbsToRel", "defaults": {}, "funcname": "WindowRectAbsToRel", - "location": "imgui_internal:2760", + "location": "imgui_internal:2909", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectAbsToRel", @@ -35179,7 +36028,7 @@ "cimguiname": "igWindowRectRelToAbs", "defaults": {}, "funcname": "WindowRectRelToAbs", - "location": "imgui_internal:2761", + "location": "imgui_internal:2910", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectRelToAbs", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index c98019b..0f5cedf 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -11,7 +11,7 @@ defs["ImBitArray_ClearAllBits"][1]["call_args"] = "()" defs["ImBitArray_ClearAllBits"][1]["cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["defaults"] = {} defs["ImBitArray_ClearAllBits"][1]["funcname"] = "ClearAllBits" -defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:569" +defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:576" defs["ImBitArray_ClearAllBits"][1]["ov_cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["ret"] = "void" defs["ImBitArray_ClearAllBits"][1]["signature"] = "()" @@ -33,7 +33,7 @@ defs["ImBitArray_ClearBit"][1]["call_args"] = "(n)" defs["ImBitArray_ClearBit"][1]["cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["defaults"] = {} defs["ImBitArray_ClearBit"][1]["funcname"] = "ClearBit" -defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:573" +defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:580" defs["ImBitArray_ClearBit"][1]["ov_cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["ret"] = "void" defs["ImBitArray_ClearBit"][1]["signature"] = "(int)" @@ -50,7 +50,7 @@ defs["ImBitArray_ImBitArray"][1]["cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["constructor"] = true defs["ImBitArray_ImBitArray"][1]["defaults"] = {} defs["ImBitArray_ImBitArray"][1]["funcname"] = "ImBitArray" -defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:568" +defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:575" defs["ImBitArray_ImBitArray"][1]["ov_cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["signature"] = "()" defs["ImBitArray_ImBitArray"][1]["stname"] = "ImBitArray" @@ -68,7 +68,7 @@ defs["ImBitArray_SetAllBits"][1]["call_args"] = "()" defs["ImBitArray_SetAllBits"][1]["cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["defaults"] = {} defs["ImBitArray_SetAllBits"][1]["funcname"] = "SetAllBits" -defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:570" +defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:577" defs["ImBitArray_SetAllBits"][1]["ov_cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["ret"] = "void" defs["ImBitArray_SetAllBits"][1]["signature"] = "()" @@ -90,7 +90,7 @@ defs["ImBitArray_SetBit"][1]["call_args"] = "(n)" defs["ImBitArray_SetBit"][1]["cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["defaults"] = {} defs["ImBitArray_SetBit"][1]["funcname"] = "SetBit" -defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:572" +defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:579" defs["ImBitArray_SetBit"][1]["ov_cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["ret"] = "void" defs["ImBitArray_SetBit"][1]["signature"] = "(int)" @@ -115,7 +115,7 @@ defs["ImBitArray_SetBitRange"][1]["call_args"] = "(n,n2)" defs["ImBitArray_SetBitRange"][1]["cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["defaults"] = {} defs["ImBitArray_SetBitRange"][1]["funcname"] = "SetBitRange" -defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:574" +defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:581" defs["ImBitArray_SetBitRange"][1]["ov_cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["ret"] = "void" defs["ImBitArray_SetBitRange"][1]["signature"] = "(int,int)" @@ -137,7 +137,7 @@ defs["ImBitArray_TestBit"][1]["call_args"] = "(n)" defs["ImBitArray_TestBit"][1]["cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["defaults"] = {} defs["ImBitArray_TestBit"][1]["funcname"] = "TestBit" -defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:571" +defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:578" defs["ImBitArray_TestBit"][1]["ov_cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["ret"] = "bool" defs["ImBitArray_TestBit"][1]["signature"] = "(int)const" @@ -173,7 +173,7 @@ defs["ImBitVector_Clear"][1]["call_args"] = "()" defs["ImBitVector_Clear"][1]["cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["defaults"] = {} defs["ImBitVector_Clear"][1]["funcname"] = "Clear" -defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:584" +defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:591" defs["ImBitVector_Clear"][1]["ov_cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["ret"] = "void" defs["ImBitVector_Clear"][1]["signature"] = "()" @@ -194,7 +194,7 @@ defs["ImBitVector_ClearBit"][1]["call_args"] = "(n)" defs["ImBitVector_ClearBit"][1]["cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["defaults"] = {} defs["ImBitVector_ClearBit"][1]["funcname"] = "ClearBit" -defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:587" +defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:594" defs["ImBitVector_ClearBit"][1]["ov_cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["ret"] = "void" defs["ImBitVector_ClearBit"][1]["signature"] = "(int)" @@ -215,7 +215,7 @@ defs["ImBitVector_Create"][1]["call_args"] = "(sz)" defs["ImBitVector_Create"][1]["cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["defaults"] = {} defs["ImBitVector_Create"][1]["funcname"] = "Create" -defs["ImBitVector_Create"][1]["location"] = "imgui_internal:583" +defs["ImBitVector_Create"][1]["location"] = "imgui_internal:590" defs["ImBitVector_Create"][1]["ov_cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["ret"] = "void" defs["ImBitVector_Create"][1]["signature"] = "(int)" @@ -236,7 +236,7 @@ defs["ImBitVector_SetBit"][1]["call_args"] = "(n)" defs["ImBitVector_SetBit"][1]["cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["defaults"] = {} defs["ImBitVector_SetBit"][1]["funcname"] = "SetBit" -defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:586" +defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:593" defs["ImBitVector_SetBit"][1]["ov_cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["ret"] = "void" defs["ImBitVector_SetBit"][1]["signature"] = "(int)" @@ -257,7 +257,7 @@ defs["ImBitVector_TestBit"][1]["call_args"] = "(n)" defs["ImBitVector_TestBit"][1]["cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["defaults"] = {} defs["ImBitVector_TestBit"][1]["funcname"] = "TestBit" -defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:585" +defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:592" defs["ImBitVector_TestBit"][1]["ov_cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["ret"] = "bool" defs["ImBitVector_TestBit"][1]["signature"] = "(int)const" @@ -278,7 +278,7 @@ defs["ImChunkStream_alloc_chunk"][1]["call_args"] = "(sz)" defs["ImChunkStream_alloc_chunk"][1]["cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["defaults"] = {} defs["ImChunkStream_alloc_chunk"][1]["funcname"] = "alloc_chunk" -defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:690" +defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:697" defs["ImChunkStream_alloc_chunk"][1]["ov_cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["ret"] = "T*" defs["ImChunkStream_alloc_chunk"][1]["signature"] = "(size_t)" @@ -297,7 +297,7 @@ defs["ImChunkStream_begin"][1]["call_args"] = "()" defs["ImChunkStream_begin"][1]["cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["defaults"] = {} defs["ImChunkStream_begin"][1]["funcname"] = "begin" -defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:691" +defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:698" defs["ImChunkStream_begin"][1]["ov_cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["ret"] = "T*" defs["ImChunkStream_begin"][1]["signature"] = "()" @@ -319,7 +319,7 @@ defs["ImChunkStream_chunk_size"][1]["call_args"] = "(p)" defs["ImChunkStream_chunk_size"][1]["cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["defaults"] = {} defs["ImChunkStream_chunk_size"][1]["funcname"] = "chunk_size" -defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:693" +defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:700" defs["ImChunkStream_chunk_size"][1]["ov_cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["ret"] = "int" defs["ImChunkStream_chunk_size"][1]["signature"] = "(const T*)" @@ -338,7 +338,7 @@ defs["ImChunkStream_clear"][1]["call_args"] = "()" defs["ImChunkStream_clear"][1]["cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["defaults"] = {} defs["ImChunkStream_clear"][1]["funcname"] = "clear" -defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:687" +defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:694" defs["ImChunkStream_clear"][1]["ov_cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["ret"] = "void" defs["ImChunkStream_clear"][1]["signature"] = "()" @@ -357,7 +357,7 @@ defs["ImChunkStream_empty"][1]["call_args"] = "()" defs["ImChunkStream_empty"][1]["cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["defaults"] = {} defs["ImChunkStream_empty"][1]["funcname"] = "empty" -defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:688" +defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:695" defs["ImChunkStream_empty"][1]["ov_cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["ret"] = "bool" defs["ImChunkStream_empty"][1]["signature"] = "()const" @@ -376,7 +376,7 @@ defs["ImChunkStream_end"][1]["call_args"] = "()" defs["ImChunkStream_end"][1]["cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["defaults"] = {} defs["ImChunkStream_end"][1]["funcname"] = "end" -defs["ImChunkStream_end"][1]["location"] = "imgui_internal:694" +defs["ImChunkStream_end"][1]["location"] = "imgui_internal:701" defs["ImChunkStream_end"][1]["ov_cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["ret"] = "T*" defs["ImChunkStream_end"][1]["signature"] = "()" @@ -398,7 +398,7 @@ defs["ImChunkStream_next_chunk"][1]["call_args"] = "(p)" defs["ImChunkStream_next_chunk"][1]["cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["defaults"] = {} defs["ImChunkStream_next_chunk"][1]["funcname"] = "next_chunk" -defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:692" +defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:699" defs["ImChunkStream_next_chunk"][1]["ov_cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["ret"] = "T*" defs["ImChunkStream_next_chunk"][1]["signature"] = "(T*)" @@ -420,7 +420,7 @@ defs["ImChunkStream_offset_from_ptr"][1]["call_args"] = "(p)" defs["ImChunkStream_offset_from_ptr"][1]["cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["defaults"] = {} defs["ImChunkStream_offset_from_ptr"][1]["funcname"] = "offset_from_ptr" -defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:695" +defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:702" defs["ImChunkStream_offset_from_ptr"][1]["ov_cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["ret"] = "int" defs["ImChunkStream_offset_from_ptr"][1]["signature"] = "(const T*)" @@ -442,7 +442,7 @@ defs["ImChunkStream_ptr_from_offset"][1]["call_args"] = "(off)" defs["ImChunkStream_ptr_from_offset"][1]["cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["defaults"] = {} defs["ImChunkStream_ptr_from_offset"][1]["funcname"] = "ptr_from_offset" -defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:696" +defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:703" defs["ImChunkStream_ptr_from_offset"][1]["ov_cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["ret"] = "T*" defs["ImChunkStream_ptr_from_offset"][1]["signature"] = "(int)" @@ -461,7 +461,7 @@ defs["ImChunkStream_size"][1]["call_args"] = "()" defs["ImChunkStream_size"][1]["cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["defaults"] = {} defs["ImChunkStream_size"][1]["funcname"] = "size" -defs["ImChunkStream_size"][1]["location"] = "imgui_internal:689" +defs["ImChunkStream_size"][1]["location"] = "imgui_internal:696" defs["ImChunkStream_size"][1]["ov_cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["ret"] = "int" defs["ImChunkStream_size"][1]["signature"] = "()const" @@ -484,7 +484,7 @@ defs["ImChunkStream_swap"][1]["call_args"] = "(*rhs)" defs["ImChunkStream_swap"][1]["cimguiname"] = "ImChunkStream_swap" defs["ImChunkStream_swap"][1]["defaults"] = {} defs["ImChunkStream_swap"][1]["funcname"] = "swap" -defs["ImChunkStream_swap"][1]["location"] = "imgui_internal:697" +defs["ImChunkStream_swap"][1]["location"] = "imgui_internal:704" defs["ImChunkStream_swap"][1]["ov_cimguiname"] = "ImChunkStream_swap" defs["ImChunkStream_swap"][1]["ret"] = "void" defs["ImChunkStream_swap"][1]["signature"] = "(ImChunkStream_T *)" @@ -517,7 +517,7 @@ defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" defs["ImColor_HSV"][1]["is_static_function"] = true -defs["ImColor_HSV"][1]["location"] = "imgui:2479" +defs["ImColor_HSV"][1]["location"] = "imgui:2472" defs["ImColor_HSV"][1]["nonUDT"] = 1 defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "void" @@ -534,7 +534,7 @@ defs["ImColor_ImColor"][1]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][1]["constructor"] = true defs["ImColor_ImColor"][1]["defaults"] = {} defs["ImColor_ImColor"][1]["funcname"] = "ImColor" -defs["ImColor_ImColor"][1]["location"] = "imgui:2469" +defs["ImColor_ImColor"][1]["location"] = "imgui:2462" defs["ImColor_ImColor"][1]["ov_cimguiname"] = "ImColor_ImColor_Nil" defs["ImColor_ImColor"][1]["signature"] = "()" defs["ImColor_ImColor"][1]["stname"] = "ImColor" @@ -560,7 +560,7 @@ defs["ImColor_ImColor"][2]["constructor"] = true defs["ImColor_ImColor"][2]["defaults"] = {} defs["ImColor_ImColor"][2]["defaults"]["a"] = "1.0f" defs["ImColor_ImColor"][2]["funcname"] = "ImColor" -defs["ImColor_ImColor"][2]["location"] = "imgui:2470" +defs["ImColor_ImColor"][2]["location"] = "imgui:2463" defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColor_Float" defs["ImColor_ImColor"][2]["signature"] = "(float,float,float,float)" defs["ImColor_ImColor"][2]["stname"] = "ImColor" @@ -576,7 +576,7 @@ defs["ImColor_ImColor"][3]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][3]["constructor"] = true defs["ImColor_ImColor"][3]["defaults"] = {} defs["ImColor_ImColor"][3]["funcname"] = "ImColor" -defs["ImColor_ImColor"][3]["location"] = "imgui:2471" +defs["ImColor_ImColor"][3]["location"] = "imgui:2464" defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColor_Vec4" defs["ImColor_ImColor"][3]["signature"] = "(const ImVec4)" defs["ImColor_ImColor"][3]["stname"] = "ImColor" @@ -602,7 +602,7 @@ defs["ImColor_ImColor"][4]["constructor"] = true defs["ImColor_ImColor"][4]["defaults"] = {} defs["ImColor_ImColor"][4]["defaults"]["a"] = "255" defs["ImColor_ImColor"][4]["funcname"] = "ImColor" -defs["ImColor_ImColor"][4]["location"] = "imgui:2472" +defs["ImColor_ImColor"][4]["location"] = "imgui:2465" defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColor_Int" defs["ImColor_ImColor"][4]["signature"] = "(int,int,int,int)" defs["ImColor_ImColor"][4]["stname"] = "ImColor" @@ -618,7 +618,7 @@ defs["ImColor_ImColor"][5]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][5]["constructor"] = true defs["ImColor_ImColor"][5]["defaults"] = {} defs["ImColor_ImColor"][5]["funcname"] = "ImColor" -defs["ImColor_ImColor"][5]["location"] = "imgui:2473" +defs["ImColor_ImColor"][5]["location"] = "imgui:2466" defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColor_U32" defs["ImColor_ImColor"][5]["signature"] = "(ImU32)" defs["ImColor_ImColor"][5]["stname"] = "ImColor" @@ -652,7 +652,7 @@ defs["ImColor_SetHSV"][1]["cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" -defs["ImColor_SetHSV"][1]["location"] = "imgui:2478" +defs["ImColor_SetHSV"][1]["location"] = "imgui:2471" defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" @@ -686,7 +686,7 @@ defs["ImDrawCmd_GetTexID"][1]["call_args"] = "()" defs["ImDrawCmd_GetTexID"][1]["cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["defaults"] = {} defs["ImDrawCmd_GetTexID"][1]["funcname"] = "GetTexID" -defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2527" +defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2520" defs["ImDrawCmd_GetTexID"][1]["ov_cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["ret"] = "ImTextureID" defs["ImDrawCmd_GetTexID"][1]["signature"] = "()const" @@ -702,7 +702,7 @@ defs["ImDrawCmd_ImDrawCmd"][1]["cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" -defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2524" +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2517" defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -735,7 +735,7 @@ defs["ImDrawDataBuilder_Clear"][1]["call_args"] = "()" defs["ImDrawDataBuilder_Clear"][1]["cimguiname"] = "ImDrawDataBuilder_Clear" defs["ImDrawDataBuilder_Clear"][1]["defaults"] = {} defs["ImDrawDataBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImDrawDataBuilder_Clear"][1]["location"] = "imgui_internal:756" +defs["ImDrawDataBuilder_Clear"][1]["location"] = "imgui_internal:780" defs["ImDrawDataBuilder_Clear"][1]["ov_cimguiname"] = "ImDrawDataBuilder_Clear" defs["ImDrawDataBuilder_Clear"][1]["ret"] = "void" defs["ImDrawDataBuilder_Clear"][1]["signature"] = "()" @@ -753,7 +753,7 @@ defs["ImDrawDataBuilder_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawDataBuilder_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["location"] = "imgui_internal:757" +defs["ImDrawDataBuilder_ClearFreeMemory"][1]["location"] = "imgui_internal:781" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["signature"] = "()" @@ -771,7 +771,7 @@ defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["call_args"] = "()" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["defaults"] = {} defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["funcname"] = "FlattenIntoSingleLayer" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["location"] = "imgui_internal:759" +defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["location"] = "imgui_internal:783" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ov_cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ret"] = "void" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["signature"] = "()" @@ -789,7 +789,7 @@ defs["ImDrawDataBuilder_GetDrawListCount"][1]["call_args"] = "()" defs["ImDrawDataBuilder_GetDrawListCount"][1]["cimguiname"] = "ImDrawDataBuilder_GetDrawListCount" defs["ImDrawDataBuilder_GetDrawListCount"][1]["defaults"] = {} defs["ImDrawDataBuilder_GetDrawListCount"][1]["funcname"] = "GetDrawListCount" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["location"] = "imgui_internal:758" +defs["ImDrawDataBuilder_GetDrawListCount"][1]["location"] = "imgui_internal:782" defs["ImDrawDataBuilder_GetDrawListCount"][1]["ov_cimguiname"] = "ImDrawDataBuilder_GetDrawListCount" defs["ImDrawDataBuilder_GetDrawListCount"][1]["ret"] = "int" defs["ImDrawDataBuilder_GetDrawListCount"][1]["signature"] = "()const" @@ -807,7 +807,7 @@ defs["ImDrawData_Clear"][1]["call_args"] = "()" defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" -defs["ImDrawData_Clear"][1]["location"] = "imgui:2761" +defs["ImDrawData_Clear"][1]["location"] = "imgui:2754" defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" @@ -825,7 +825,7 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["call_args"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" -defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2762" +defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2755" defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" @@ -841,7 +841,7 @@ defs["ImDrawData_ImDrawData"][1]["cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" -defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2760" +defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2753" defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" @@ -861,7 +861,7 @@ defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" -defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2763" +defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2756" defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" @@ -893,7 +893,7 @@ defs["ImDrawListSharedData_ImDrawListSharedData"][1]["cimguiname"] = "ImDrawList defs["ImDrawListSharedData_ImDrawListSharedData"][1]["constructor"] = true defs["ImDrawListSharedData_ImDrawListSharedData"][1]["defaults"] = {} defs["ImDrawListSharedData_ImDrawListSharedData"][1]["funcname"] = "ImDrawListSharedData" -defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:748" +defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:772" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["ov_cimguiname"] = "ImDrawListSharedData_ImDrawListSharedData" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["signature"] = "()" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["stname"] = "ImDrawListSharedData" @@ -913,7 +913,7 @@ defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["call_args"] = "(m defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["cimguiname"] = "ImDrawListSharedData_SetCircleTessellationMaxError" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["defaults"] = {} defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["funcname"] = "SetCircleTessellationMaxError" -defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["location"] = "imgui_internal:749" +defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["location"] = "imgui_internal:773" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ov_cimguiname"] = "ImDrawListSharedData_SetCircleTessellationMaxError" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ret"] = "void" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["signature"] = "(float)" @@ -947,7 +947,7 @@ defs["ImDrawListSplitter_Clear"][1]["call_args"] = "()" defs["ImDrawListSplitter_Clear"][1]["cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["defaults"] = {} defs["ImDrawListSplitter_Clear"][1]["funcname"] = "Clear" -defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2572" +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2565" defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -965,7 +965,7 @@ defs["ImDrawListSplitter_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawListSplitter_ClearFreeMemory"][1]["cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawListSplitter_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2573" +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2566" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -981,7 +981,7 @@ defs["ImDrawListSplitter_ImDrawListSplitter"][1]["cimguiname"] = "ImDrawListSpli defs["ImDrawListSplitter_ImDrawListSplitter"][1]["constructor"] = true defs["ImDrawListSplitter_ImDrawListSplitter"][1]["defaults"] = {} defs["ImDrawListSplitter_ImDrawListSplitter"][1]["funcname"] = "ImDrawListSplitter" -defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2570" +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2563" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -1001,7 +1001,7 @@ defs["ImDrawListSplitter_Merge"][1]["call_args"] = "(draw_list)" defs["ImDrawListSplitter_Merge"][1]["cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["defaults"] = {} defs["ImDrawListSplitter_Merge"][1]["funcname"] = "Merge" -defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2575" +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2568" defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -1025,7 +1025,7 @@ defs["ImDrawListSplitter_SetCurrentChannel"][1]["call_args"] = "(draw_list,chann defs["ImDrawListSplitter_SetCurrentChannel"][1]["cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["defaults"] = {} defs["ImDrawListSplitter_SetCurrentChannel"][1]["funcname"] = "SetCurrentChannel" -defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2576" +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2569" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -1049,7 +1049,7 @@ defs["ImDrawListSplitter_Split"][1]["call_args"] = "(draw_list,count)" defs["ImDrawListSplitter_Split"][1]["cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["defaults"] = {} defs["ImDrawListSplitter_Split"][1]["funcname"] = "Split" -defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2574" +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2567" defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -1066,7 +1066,7 @@ defs["ImDrawListSplitter_destroy"][1]["call_args"] = "(self)" defs["ImDrawListSplitter_destroy"][1]["cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["defaults"] = {} defs["ImDrawListSplitter_destroy"][1]["destructor"] = true -defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2571" +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2564" defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" @@ -1107,7 +1107,7 @@ defs["ImDrawList_AddBezierCubic"][1]["cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["defaults"] = {} defs["ImDrawList_AddBezierCubic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCubic"][1]["funcname"] = "AddBezierCubic" -defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:2675" +defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:2668" defs["ImDrawList_AddBezierCubic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["ret"] = "void" defs["ImDrawList_AddBezierCubic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -1144,7 +1144,7 @@ defs["ImDrawList_AddBezierQuadratic"][1]["cimguiname"] = "ImDrawList_AddBezierQu defs["ImDrawList_AddBezierQuadratic"][1]["defaults"] = {} defs["ImDrawList_AddBezierQuadratic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierQuadratic"][1]["funcname"] = "AddBezierQuadratic" -defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:2676" +defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:2669" defs["ImDrawList_AddBezierQuadratic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierQuadratic" defs["ImDrawList_AddBezierQuadratic"][1]["ret"] = "void" defs["ImDrawList_AddBezierQuadratic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -1168,7 +1168,7 @@ defs["ImDrawList_AddCallback"][1]["call_args"] = "(callback,callback_data)" defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" -defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2700" +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2693" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" @@ -1203,7 +1203,7 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" -defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2667" +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2660" defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1234,7 +1234,7 @@ defs["ImDrawList_AddCircleFilled"][1]["cimguiname"] = "ImDrawList_AddCircleFille defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" -defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2668" +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2661" defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1261,7 +1261,7 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["call_args"] = "(points,num_points,col defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" -defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2674" +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2667" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1279,7 +1279,7 @@ defs["ImDrawList_AddDrawCmd"][1]["call_args"] = "()" defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" -defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2701" +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2694" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" @@ -1318,7 +1318,7 @@ defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImage"][1]["defaults"]["uv_max"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_min"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" -defs["ImDrawList_AddImage"][1]["location"] = "imgui:2682" +defs["ImDrawList_AddImage"][1]["location"] = "imgui:2675" defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1371,7 +1371,7 @@ defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv2"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv3"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv4"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" -defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2683" +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2676" defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1414,7 +1414,7 @@ defs["ImDrawList_AddImageRounded"][1]["cimguiname"] = "ImDrawList_AddImageRounde defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" -defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2684" +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2677" defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1445,7 +1445,7 @@ defs["ImDrawList_AddLine"][1]["cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" -defs["ImDrawList_AddLine"][1]["location"] = "imgui:2659" +defs["ImDrawList_AddLine"][1]["location"] = "imgui:2652" defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" @@ -1479,7 +1479,7 @@ defs["ImDrawList_AddNgon"][1]["cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["defaults"] = {} defs["ImDrawList_AddNgon"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddNgon"][1]["funcname"] = "AddNgon" -defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2669" +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2662" defs["ImDrawList_AddNgon"][1]["ov_cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["ret"] = "void" defs["ImDrawList_AddNgon"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1509,7 +1509,7 @@ defs["ImDrawList_AddNgonFilled"][1]["call_args"] = "(center,radius,col,num_segme defs["ImDrawList_AddNgonFilled"][1]["cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["defaults"] = {} defs["ImDrawList_AddNgonFilled"][1]["funcname"] = "AddNgonFilled" -defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2670" +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2663" defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1542,7 +1542,7 @@ defs["ImDrawList_AddPolyline"][1]["call_args"] = "(points,num_points,col,flags,t defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" -defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2673" +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2666" defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,int,ImU32,ImDrawFlags,float)" @@ -1579,7 +1579,7 @@ defs["ImDrawList_AddQuad"][1]["cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" -defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2663" +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2656" defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1612,7 +1612,7 @@ defs["ImDrawList_AddQuadFilled"][1]["call_args"] = "(p1,p2,p3,p4,col)" defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" -defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2664" +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2657" defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1651,7 +1651,7 @@ defs["ImDrawList_AddRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" -defs["ImDrawList_AddRect"][1]["location"] = "imgui:2660" +defs["ImDrawList_AddRect"][1]["location"] = "imgui:2653" defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)" @@ -1686,7 +1686,7 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" -defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2661" +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2654" defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1722,7 +1722,7 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["call_args"] = "(p_min,p_max,col_u defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" -defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2662" +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2655" defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" @@ -1753,7 +1753,7 @@ defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["defaults"] = {} defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" -defs["ImDrawList_AddText"][1]["location"] = "imgui:2671" +defs["ImDrawList_AddText"][1]["location"] = "imgui:2664" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddText_Vec2" defs["ImDrawList_AddText"][1]["ret"] = "void" defs["ImDrawList_AddText"][1]["signature"] = "(const ImVec2,ImU32,const char*,const char*)" @@ -1796,7 +1796,7 @@ defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" -defs["ImDrawList_AddText"][2]["location"] = "imgui:2672" +defs["ImDrawList_AddText"][2]["location"] = "imgui:2665" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddText_FontPtr" defs["ImDrawList_AddText"][2]["ret"] = "void" defs["ImDrawList_AddText"][2]["signature"] = "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)" @@ -1831,7 +1831,7 @@ defs["ImDrawList_AddTriangle"][1]["cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" -defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2665" +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2658" defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1861,7 +1861,7 @@ defs["ImDrawList_AddTriangleFilled"][1]["call_args"] = "(p1,p2,p3,col)" defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" -defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2666" +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2659" defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1879,7 +1879,7 @@ defs["ImDrawList_ChannelsMerge"][1]["call_args"] = "()" defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" -defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2711" +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2704" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1900,7 +1900,7 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["call_args"] = "(n)" defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" -defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2712" +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2705" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -1921,7 +1921,7 @@ defs["ImDrawList_ChannelsSplit"][1]["call_args"] = "(count)" defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" -defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2710" +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2703" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -1939,7 +1939,7 @@ defs["ImDrawList_CloneOutput"][1]["call_args"] = "()" defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" -defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2702" +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2695" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -1960,7 +1960,7 @@ defs["ImDrawList_GetClipRectMax"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2650" +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2643" defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -1982,7 +1982,7 @@ defs["ImDrawList_GetClipRectMin"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2649" +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2642" defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -1991,22 +1991,22 @@ defs["ImDrawList_GetClipRectMin"][1]["stname"] = "ImDrawList" defs["ImDrawList_GetClipRectMin"]["()const"] = defs["ImDrawList_GetClipRectMin"][1] defs["ImDrawList_ImDrawList"] = {} defs["ImDrawList_ImDrawList"][1] = {} -defs["ImDrawList_ImDrawList"][1]["args"] = "(const ImDrawListSharedData* shared_data)" +defs["ImDrawList_ImDrawList"][1]["args"] = "(ImDrawListSharedData* shared_data)" defs["ImDrawList_ImDrawList"][1]["argsT"] = {} defs["ImDrawList_ImDrawList"][1]["argsT"][1] = {} defs["ImDrawList_ImDrawList"][1]["argsT"][1]["name"] = "shared_data" -defs["ImDrawList_ImDrawList"][1]["argsT"][1]["type"] = "const ImDrawListSharedData*" -defs["ImDrawList_ImDrawList"][1]["argsoriginal"] = "(const ImDrawListSharedData* shared_data)" +defs["ImDrawList_ImDrawList"][1]["argsT"][1]["type"] = "ImDrawListSharedData*" +defs["ImDrawList_ImDrawList"][1]["argsoriginal"] = "(ImDrawListSharedData* shared_data)" defs["ImDrawList_ImDrawList"][1]["call_args"] = "(shared_data)" 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:2641" +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2634" defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" -defs["ImDrawList_ImDrawList"][1]["signature"] = "(const ImDrawListSharedData*)" +defs["ImDrawList_ImDrawList"][1]["signature"] = "(ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" -defs["ImDrawList_ImDrawList"]["(const ImDrawListSharedData*)"] = defs["ImDrawList_ImDrawList"][1] +defs["ImDrawList_ImDrawList"]["(ImDrawListSharedData*)"] = defs["ImDrawList_ImDrawList"][1] defs["ImDrawList_PathArcTo"] = {} defs["ImDrawList_PathArcTo"][1] = {} defs["ImDrawList_PathArcTo"][1]["args"] = "(ImDrawList* self,const ImVec2 center,float radius,float a_min,float a_max,int num_segments)" @@ -2035,7 +2035,7 @@ defs["ImDrawList_PathArcTo"][1]["cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" -defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2693" +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2686" defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2065,7 +2065,7 @@ defs["ImDrawList_PathArcToFast"][1]["call_args"] = "(center,radius,a_min_of_12,a defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" -defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2694" +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2687" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -2096,7 +2096,7 @@ defs["ImDrawList_PathBezierCubicCurveTo"][1]["cimguiname"] = "ImDrawList_PathBez defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCubicCurveTo"][1]["funcname"] = "PathBezierCubicCurveTo" -defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:2695" +defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:2688" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCubicCurveTo" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCubicCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" @@ -2124,7 +2124,7 @@ defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["cimguiname"] = "ImDrawList_Pat defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["funcname"] = "PathBezierQuadraticCurveTo" -defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:2696" +defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:2689" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierQuadraticCurveTo" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,int)" @@ -2142,7 +2142,7 @@ defs["ImDrawList_PathClear"][1]["call_args"] = "()" defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" -defs["ImDrawList_PathClear"][1]["location"] = "imgui:2688" +defs["ImDrawList_PathClear"][1]["location"] = "imgui:2681" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" @@ -2163,7 +2163,7 @@ defs["ImDrawList_PathFillConvex"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" -defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2691" +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2684" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -2184,7 +2184,7 @@ defs["ImDrawList_PathLineTo"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" -defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2689" +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2682" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -2205,7 +2205,7 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" -defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2690" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2683" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -2237,7 +2237,7 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" -defs["ImDrawList_PathRect"][1]["location"] = "imgui:2697" +defs["ImDrawList_PathRect"][1]["location"] = "imgui:2690" defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,ImDrawFlags)" @@ -2266,7 +2266,7 @@ defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" -defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2692" +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2685" defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,ImDrawFlags,float)" @@ -2284,7 +2284,7 @@ defs["ImDrawList_PopClipRect"][1]["call_args"] = "()" defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" -defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2646" +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2639" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -2302,7 +2302,7 @@ defs["ImDrawList_PopTextureID"][1]["call_args"] = "()" defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" -defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2648" +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2641" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -2347,7 +2347,7 @@ defs["ImDrawList_PrimQuadUV"][1]["call_args"] = "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,co defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" -defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2721" +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2714" defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2374,7 +2374,7 @@ defs["ImDrawList_PrimRect"][1]["call_args"] = "(a,b,col)" defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" -defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2719" +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2712" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2407,7 +2407,7 @@ defs["ImDrawList_PrimRectUV"][1]["call_args"] = "(a,b,uv_a,uv_b,col)" defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" -defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2720" +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2713" defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2431,7 +2431,7 @@ defs["ImDrawList_PrimReserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" -defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2717" +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2710" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -2455,7 +2455,7 @@ defs["ImDrawList_PrimUnreserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimUnreserve"][1]["cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["defaults"] = {} defs["ImDrawList_PrimUnreserve"][1]["funcname"] = "PrimUnreserve" -defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2718" +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2711" defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -2482,7 +2482,7 @@ defs["ImDrawList_PrimVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" -defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2724" +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2717" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2503,7 +2503,7 @@ defs["ImDrawList_PrimWriteIdx"][1]["call_args"] = "(idx)" defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" -defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2723" +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2716" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -2530,7 +2530,7 @@ defs["ImDrawList_PrimWriteVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" -defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2722" +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2715" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2558,7 +2558,7 @@ defs["ImDrawList_PushClipRect"][1]["cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" -defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2644" +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2637" defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" @@ -2576,7 +2576,7 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["call_args"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" -defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2645" +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2638" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -2597,7 +2597,7 @@ defs["ImDrawList_PushTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" -defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2647" +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2640" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -2618,7 +2618,7 @@ defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["call_args"] = "(radius)" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["defaults"] = {} defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["funcname"] = "_CalcCircleAutoSegmentCount" -defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:2739" +defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:2732" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ov_cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ret"] = "int" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["signature"] = "(float)const" @@ -2636,7 +2636,7 @@ defs["ImDrawList__ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawList__ClearFreeMemory"][1]["cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList__ClearFreeMemory"][1]["funcname"] = "_ClearFreeMemory" -defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2733" +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2726" defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -2654,7 +2654,7 @@ defs["ImDrawList__OnChangedClipRect"][1]["call_args"] = "()" defs["ImDrawList__OnChangedClipRect"][1]["cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["defaults"] = {} defs["ImDrawList__OnChangedClipRect"][1]["funcname"] = "_OnChangedClipRect" -defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2736" +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2729" defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -2672,7 +2672,7 @@ defs["ImDrawList__OnChangedTextureID"][1]["call_args"] = "()" defs["ImDrawList__OnChangedTextureID"][1]["cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["defaults"] = {} defs["ImDrawList__OnChangedTextureID"][1]["funcname"] = "_OnChangedTextureID" -defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2737" +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2730" defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -2690,7 +2690,7 @@ defs["ImDrawList__OnChangedVtxOffset"][1]["call_args"] = "()" defs["ImDrawList__OnChangedVtxOffset"][1]["cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["defaults"] = {} defs["ImDrawList__OnChangedVtxOffset"][1]["funcname"] = "_OnChangedVtxOffset" -defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2738" +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2731" defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -2723,7 +2723,7 @@ defs["ImDrawList__PathArcToFastEx"][1]["call_args"] = "(center,radius,a_min_samp defs["ImDrawList__PathArcToFastEx"][1]["cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["defaults"] = {} defs["ImDrawList__PathArcToFastEx"][1]["funcname"] = "_PathArcToFastEx" -defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:2740" +defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:2733" defs["ImDrawList__PathArcToFastEx"][1]["ov_cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["ret"] = "void" defs["ImDrawList__PathArcToFastEx"][1]["signature"] = "(const ImVec2,float,int,int,int)" @@ -2756,7 +2756,7 @@ defs["ImDrawList__PathArcToN"][1]["call_args"] = "(center,radius,a_min,a_max,num defs["ImDrawList__PathArcToN"][1]["cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["defaults"] = {} defs["ImDrawList__PathArcToN"][1]["funcname"] = "_PathArcToN" -defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:2741" +defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:2734" defs["ImDrawList__PathArcToN"][1]["ov_cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["ret"] = "void" defs["ImDrawList__PathArcToN"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2774,7 +2774,7 @@ defs["ImDrawList__PopUnusedDrawCmd"][1]["call_args"] = "()" defs["ImDrawList__PopUnusedDrawCmd"][1]["cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["defaults"] = {} defs["ImDrawList__PopUnusedDrawCmd"][1]["funcname"] = "_PopUnusedDrawCmd" -defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2734" +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2727" defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2792,7 +2792,7 @@ defs["ImDrawList__ResetForNewFrame"][1]["call_args"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["defaults"] = {} defs["ImDrawList__ResetForNewFrame"][1]["funcname"] = "_ResetForNewFrame" -defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2732" +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2725" defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" @@ -2810,7 +2810,7 @@ defs["ImDrawList__TryMergeDrawCmds"][1]["call_args"] = "()" defs["ImDrawList__TryMergeDrawCmds"][1]["cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["defaults"] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["funcname"] = "_TryMergeDrawCmds" -defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:2735" +defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:2728" defs["ImDrawList__TryMergeDrawCmds"][1]["ov_cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["ret"] = "void" defs["ImDrawList__TryMergeDrawCmds"][1]["signature"] = "()" @@ -2827,7 +2827,7 @@ defs["ImDrawList_destroy"][1]["call_args"] = "(self)" defs["ImDrawList_destroy"][1]["cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["defaults"] = {} defs["ImDrawList_destroy"][1]["destructor"] = true -defs["ImDrawList_destroy"][1]["location"] = "imgui:2643" +defs["ImDrawList_destroy"][1]["location"] = "imgui:2636" defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" @@ -2844,7 +2844,7 @@ defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["cimguiname"] = "ImFontAt defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["constructor"] = true defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["funcname"] = "ImFontAtlasCustomRect" -defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2834" +defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2827" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_ImFontAtlasCustomRect" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["signature"] = "()" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["stname"] = "ImFontAtlasCustomRect" @@ -2861,7 +2861,7 @@ defs["ImFontAtlasCustomRect_IsPacked"][1]["call_args"] = "()" defs["ImFontAtlasCustomRect_IsPacked"][1]["cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_IsPacked"][1]["funcname"] = "IsPacked" -defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2835" +defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2828" defs["ImFontAtlasCustomRect_IsPacked"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["ret"] = "bool" defs["ImFontAtlasCustomRect_IsPacked"][1]["signature"] = "()const" @@ -2914,7 +2914,7 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["cimguiname"] = "ImFontAtlas_AddCu defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" -defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2918" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2912" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" @@ -2938,7 +2938,7 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["call_args"] = "(width,height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" -defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2917" +defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2911" defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(int,int)" @@ -2959,7 +2959,7 @@ defs["ImFontAtlas_AddFont"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" -defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2868" +defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2861" defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" @@ -2981,7 +2981,7 @@ defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefaul defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" -defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2869" +defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2862" defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -3013,7 +3013,7 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2870" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2863" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -3045,7 +3045,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2873" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2866" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -3080,7 +3080,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2872" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2865" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -3115,7 +3115,7 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2871" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2864" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -3133,7 +3133,7 @@ defs["ImFontAtlas_Build"][1]["call_args"] = "()" defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" -defs["ImFontAtlas_Build"][1]["location"] = "imgui:2884" +defs["ImFontAtlas_Build"][1]["location"] = "imgui:2877" defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" @@ -3160,7 +3160,7 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["call_args"] = "(rect,out_uv_min,out_uv_ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" -defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2922" +defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2916" defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const" @@ -3178,7 +3178,7 @@ defs["ImFontAtlas_Clear"][1]["call_args"] = "()" defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" -defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2877" +defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2870" defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" @@ -3196,7 +3196,7 @@ defs["ImFontAtlas_ClearFonts"][1]["call_args"] = "()" defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" -defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2876" +defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2869" defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" @@ -3214,7 +3214,7 @@ defs["ImFontAtlas_ClearInputData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" -defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2874" +defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2867" defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" @@ -3232,7 +3232,7 @@ defs["ImFontAtlas_ClearTexData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" -defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2875" +defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2868" defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" @@ -3253,7 +3253,7 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["call_args"] = "(index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" -defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2919" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2913" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "ImFontAtlasCustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" @@ -3271,7 +3271,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" -defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2900" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2894" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" @@ -3289,7 +3289,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" -defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2901" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2895" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" @@ -3307,7 +3307,7 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" -defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2902" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2896" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" @@ -3325,12 +3325,30 @@ 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:2897" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:2890" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["stname"] = "ImFontAtlas" defs["ImFontAtlas_GetGlyphRangesDefault"]["()"] = defs["ImFontAtlas_GetGlyphRangesDefault"][1] +defs["ImFontAtlas_GetGlyphRangesGreek"] = {} +defs["ImFontAtlas_GetGlyphRangesGreek"][1] = {} +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["args"] = "(ImFontAtlas* self)" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["argsT"] = {} +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["argsT"][1] = {} +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["argsT"][1]["name"] = "self" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["argsT"][1]["type"] = "ImFontAtlas*" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["argsoriginal"] = "()" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["call_args"] = "()" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["defaults"] = {} +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["funcname"] = "GetGlyphRangesGreek" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:2891" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ret"] = "const ImWchar*" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["signature"] = "()" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["stname"] = "ImFontAtlas" +defs["ImFontAtlas_GetGlyphRangesGreek"]["()"] = defs["ImFontAtlas_GetGlyphRangesGreek"][1] defs["ImFontAtlas_GetGlyphRangesJapanese"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["args"] = "(ImFontAtlas* self)" @@ -3343,7 +3361,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:2899" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:2893" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" @@ -3361,7 +3379,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:2898" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:2892" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" @@ -3379,7 +3397,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:2903" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:2897" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" @@ -3397,7 +3415,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:2904" +defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:2898" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["signature"] = "()" @@ -3430,7 +3448,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:2923" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:2917" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" @@ -3461,7 +3479,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:2885" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:2878" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3492,7 +3510,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:2886" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:2879" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3508,7 +3526,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:2866" +defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:2859" defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" @@ -3525,7 +3543,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:2887" +defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:2880" defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()const" @@ -3546,7 +3564,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:2888" +defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:2881" defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" @@ -3563,7 +3581,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:2867" +defs["ImFontAtlas_destroy"][1]["location"] = "imgui:2860" defs["ImFontAtlas_destroy"][1]["ov_cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["realdestructor"] = true defs["ImFontAtlas_destroy"][1]["ret"] = "void" @@ -3580,7 +3598,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:2794" +defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2787" defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" @@ -3616,7 +3634,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:2819" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2812" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" @@ -3637,7 +3655,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:2821" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2814" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" @@ -3662,7 +3680,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:2820" +defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2813" defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -3683,7 +3701,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:2822" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2815" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" @@ -3701,7 +3719,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:2816" +defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2809" defs["ImFontGlyphRangesBuilder_Clear"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_Clear"][1]["signature"] = "()" @@ -3722,7 +3740,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:2817" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2810" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(size_t)const" @@ -3738,7 +3756,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:2815" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2808" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -3758,7 +3776,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:2818" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2811" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(size_t)" @@ -3825,7 +3843,7 @@ defs["ImFont_AddGlyph"][1]["call_args"] = "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,ad defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" -defs["ImFont_AddGlyph"][1]["location"] = "imgui:3010" +defs["ImFont_AddGlyph"][1]["location"] = "imgui:3004" defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" defs["ImFont_AddGlyph"][1]["signature"] = "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" @@ -3853,7 +3871,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:3011" +defs["ImFont_AddRemapChar"][1]["location"] = "imgui:3005" defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" @@ -3871,7 +3889,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:3007" +defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:3001" defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" @@ -3912,7 +3930,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:3001" +defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:2995" defs["ImFont_CalcTextSizeA"][1]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "void" @@ -3943,7 +3961,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:3002" +defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:2996" defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)const" @@ -3961,7 +3979,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:3008" +defs["ImFont_ClearOutputData"][1]["location"] = "imgui:3002" defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" @@ -3982,7 +4000,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:2993" +defs["ImFont_FindGlyph"][1]["location"] = "imgui:2987" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)const" @@ -4003,7 +4021,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:2994" +defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:2988" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)const" @@ -4024,7 +4042,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:2995" +defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:2989" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)const" @@ -4042,7 +4060,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:2997" +defs["ImFont_GetDebugName"][1]["location"] = "imgui:2991" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()const" @@ -4063,7 +4081,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:3009" +defs["ImFont_GrowIndex"][1]["location"] = "imgui:3003" defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" @@ -4079,7 +4097,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:2991" +defs["ImFont_ImFont"][1]["location"] = "imgui:2985" defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" @@ -4102,7 +4120,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:3013" +defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:3007" defs["ImFont_IsGlyphRangeUnused"][1]["ov_cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["ret"] = "bool" defs["ImFont_IsGlyphRangeUnused"][1]["signature"] = "(unsigned int,unsigned int)" @@ -4120,7 +4138,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:2996" +defs["ImFont_IsLoaded"][1]["location"] = "imgui:2990" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()const" @@ -4153,7 +4171,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:3003" +defs["ImFont_RenderChar"][1]["location"] = "imgui:2997" defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const" @@ -4200,7 +4218,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:3004" +defs["ImFont_RenderText"][1]["location"] = "imgui:2998" defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const" @@ -4224,7 +4242,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:3012" +defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:3006" defs["ImFont_SetGlyphVisible"][1]["ov_cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["ret"] = "void" defs["ImFont_SetGlyphVisible"][1]["signature"] = "(ImWchar,bool)" @@ -4241,7 +4259,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:2992" +defs["ImFont_destroy"][1]["location"] = "imgui:2986" defs["ImFont_destroy"][1]["ov_cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["realdestructor"] = true defs["ImFont_destroy"][1]["ret"] = "void" @@ -4258,7 +4276,7 @@ defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["cimguiname"] = "ImGuiCom defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["constructor"] = true defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["defaults"] = {} defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["funcname"] = "ImGuiComboPreviewData" -defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:977" +defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:1012" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["ov_cimguiname"] = "ImGuiComboPreviewData_ImGuiComboPreviewData" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["signature"] = "()" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["stname"] = "ImGuiComboPreviewData" @@ -4289,7 +4307,7 @@ defs["ImGuiContextHook_ImGuiContextHook"][1]["cimguiname"] = "ImGuiContextHook_I defs["ImGuiContextHook_ImGuiContextHook"][1]["constructor"] = true defs["ImGuiContextHook_ImGuiContextHook"][1]["defaults"] = {} defs["ImGuiContextHook_ImGuiContextHook"][1]["funcname"] = "ImGuiContextHook" -defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:1745" +defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:1866" defs["ImGuiContextHook_ImGuiContextHook"][1]["ov_cimguiname"] = "ImGuiContextHook_ImGuiContextHook" defs["ImGuiContextHook_ImGuiContextHook"][1]["signature"] = "()" defs["ImGuiContextHook_ImGuiContextHook"][1]["stname"] = "ImGuiContextHook" @@ -4323,7 +4341,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:2030" +defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:2169" defs["ImGuiContext_ImGuiContext"][1]["ov_cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["signature"] = "(ImFontAtlas*)" defs["ImGuiContext_ImGuiContext"][1]["stname"] = "ImGuiContext" @@ -4354,7 +4372,7 @@ defs["ImGuiDockContext_ImGuiDockContext"][1]["cimguiname"] = "ImGuiDockContext_I defs["ImGuiDockContext_ImGuiDockContext"][1]["constructor"] = true defs["ImGuiDockContext_ImGuiDockContext"][1]["defaults"] = {} defs["ImGuiDockContext_ImGuiDockContext"][1]["funcname"] = "ImGuiDockContext" -defs["ImGuiDockContext_ImGuiDockContext"][1]["location"] = "imgui_internal:1575" +defs["ImGuiDockContext_ImGuiDockContext"][1]["location"] = "imgui_internal:1695" defs["ImGuiDockContext_ImGuiDockContext"][1]["ov_cimguiname"] = "ImGuiDockContext_ImGuiDockContext" defs["ImGuiDockContext_ImGuiDockContext"][1]["signature"] = "()" defs["ImGuiDockContext_ImGuiDockContext"][1]["stname"] = "ImGuiDockContext" @@ -4388,7 +4406,7 @@ defs["ImGuiDockNode_ImGuiDockNode"][1]["cimguiname"] = "ImGuiDockNode_ImGuiDockN defs["ImGuiDockNode_ImGuiDockNode"][1]["constructor"] = true defs["ImGuiDockNode_ImGuiDockNode"][1]["defaults"] = {} defs["ImGuiDockNode_ImGuiDockNode"][1]["funcname"] = "ImGuiDockNode" -defs["ImGuiDockNode_ImGuiDockNode"][1]["location"] = "imgui_internal:1532" +defs["ImGuiDockNode_ImGuiDockNode"][1]["location"] = "imgui_internal:1652" defs["ImGuiDockNode_ImGuiDockNode"][1]["ov_cimguiname"] = "ImGuiDockNode_ImGuiDockNode" defs["ImGuiDockNode_ImGuiDockNode"][1]["signature"] = "(ImGuiID)" defs["ImGuiDockNode_ImGuiDockNode"][1]["stname"] = "ImGuiDockNode" @@ -4405,7 +4423,7 @@ defs["ImGuiDockNode_IsCentralNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsCentralNode"][1]["cimguiname"] = "ImGuiDockNode_IsCentralNode" defs["ImGuiDockNode_IsCentralNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsCentralNode"][1]["funcname"] = "IsCentralNode" -defs["ImGuiDockNode_IsCentralNode"][1]["location"] = "imgui_internal:1537" +defs["ImGuiDockNode_IsCentralNode"][1]["location"] = "imgui_internal:1657" defs["ImGuiDockNode_IsCentralNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsCentralNode" defs["ImGuiDockNode_IsCentralNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsCentralNode"][1]["signature"] = "()const" @@ -4423,7 +4441,7 @@ defs["ImGuiDockNode_IsDockSpace"][1]["call_args"] = "()" defs["ImGuiDockNode_IsDockSpace"][1]["cimguiname"] = "ImGuiDockNode_IsDockSpace" defs["ImGuiDockNode_IsDockSpace"][1]["defaults"] = {} defs["ImGuiDockNode_IsDockSpace"][1]["funcname"] = "IsDockSpace" -defs["ImGuiDockNode_IsDockSpace"][1]["location"] = "imgui_internal:1535" +defs["ImGuiDockNode_IsDockSpace"][1]["location"] = "imgui_internal:1655" defs["ImGuiDockNode_IsDockSpace"][1]["ov_cimguiname"] = "ImGuiDockNode_IsDockSpace" defs["ImGuiDockNode_IsDockSpace"][1]["ret"] = "bool" defs["ImGuiDockNode_IsDockSpace"][1]["signature"] = "()const" @@ -4441,7 +4459,7 @@ defs["ImGuiDockNode_IsEmpty"][1]["call_args"] = "()" defs["ImGuiDockNode_IsEmpty"][1]["cimguiname"] = "ImGuiDockNode_IsEmpty" defs["ImGuiDockNode_IsEmpty"][1]["defaults"] = {} defs["ImGuiDockNode_IsEmpty"][1]["funcname"] = "IsEmpty" -defs["ImGuiDockNode_IsEmpty"][1]["location"] = "imgui_internal:1542" +defs["ImGuiDockNode_IsEmpty"][1]["location"] = "imgui_internal:1662" defs["ImGuiDockNode_IsEmpty"][1]["ov_cimguiname"] = "ImGuiDockNode_IsEmpty" defs["ImGuiDockNode_IsEmpty"][1]["ret"] = "bool" defs["ImGuiDockNode_IsEmpty"][1]["signature"] = "()const" @@ -4459,7 +4477,7 @@ defs["ImGuiDockNode_IsFloatingNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsFloatingNode"][1]["cimguiname"] = "ImGuiDockNode_IsFloatingNode" defs["ImGuiDockNode_IsFloatingNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsFloatingNode"][1]["funcname"] = "IsFloatingNode" -defs["ImGuiDockNode_IsFloatingNode"][1]["location"] = "imgui_internal:1536" +defs["ImGuiDockNode_IsFloatingNode"][1]["location"] = "imgui_internal:1656" defs["ImGuiDockNode_IsFloatingNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsFloatingNode" defs["ImGuiDockNode_IsFloatingNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsFloatingNode"][1]["signature"] = "()const" @@ -4477,7 +4495,7 @@ defs["ImGuiDockNode_IsHiddenTabBar"][1]["call_args"] = "()" defs["ImGuiDockNode_IsHiddenTabBar"][1]["cimguiname"] = "ImGuiDockNode_IsHiddenTabBar" defs["ImGuiDockNode_IsHiddenTabBar"][1]["defaults"] = {} defs["ImGuiDockNode_IsHiddenTabBar"][1]["funcname"] = "IsHiddenTabBar" -defs["ImGuiDockNode_IsHiddenTabBar"][1]["location"] = "imgui_internal:1538" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["location"] = "imgui_internal:1658" defs["ImGuiDockNode_IsHiddenTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsHiddenTabBar" defs["ImGuiDockNode_IsHiddenTabBar"][1]["ret"] = "bool" defs["ImGuiDockNode_IsHiddenTabBar"][1]["signature"] = "()const" @@ -4495,7 +4513,7 @@ defs["ImGuiDockNode_IsLeafNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsLeafNode"][1]["cimguiname"] = "ImGuiDockNode_IsLeafNode" defs["ImGuiDockNode_IsLeafNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsLeafNode"][1]["funcname"] = "IsLeafNode" -defs["ImGuiDockNode_IsLeafNode"][1]["location"] = "imgui_internal:1541" +defs["ImGuiDockNode_IsLeafNode"][1]["location"] = "imgui_internal:1661" defs["ImGuiDockNode_IsLeafNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsLeafNode" defs["ImGuiDockNode_IsLeafNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsLeafNode"][1]["signature"] = "()const" @@ -4513,7 +4531,7 @@ defs["ImGuiDockNode_IsNoTabBar"][1]["call_args"] = "()" defs["ImGuiDockNode_IsNoTabBar"][1]["cimguiname"] = "ImGuiDockNode_IsNoTabBar" defs["ImGuiDockNode_IsNoTabBar"][1]["defaults"] = {} defs["ImGuiDockNode_IsNoTabBar"][1]["funcname"] = "IsNoTabBar" -defs["ImGuiDockNode_IsNoTabBar"][1]["location"] = "imgui_internal:1539" +defs["ImGuiDockNode_IsNoTabBar"][1]["location"] = "imgui_internal:1659" defs["ImGuiDockNode_IsNoTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsNoTabBar" defs["ImGuiDockNode_IsNoTabBar"][1]["ret"] = "bool" defs["ImGuiDockNode_IsNoTabBar"][1]["signature"] = "()const" @@ -4531,7 +4549,7 @@ defs["ImGuiDockNode_IsRootNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsRootNode"][1]["cimguiname"] = "ImGuiDockNode_IsRootNode" defs["ImGuiDockNode_IsRootNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsRootNode"][1]["funcname"] = "IsRootNode" -defs["ImGuiDockNode_IsRootNode"][1]["location"] = "imgui_internal:1534" +defs["ImGuiDockNode_IsRootNode"][1]["location"] = "imgui_internal:1654" defs["ImGuiDockNode_IsRootNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsRootNode" defs["ImGuiDockNode_IsRootNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsRootNode"][1]["signature"] = "()const" @@ -4549,7 +4567,7 @@ defs["ImGuiDockNode_IsSplitNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsSplitNode"][1]["cimguiname"] = "ImGuiDockNode_IsSplitNode" defs["ImGuiDockNode_IsSplitNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsSplitNode"][1]["funcname"] = "IsSplitNode" -defs["ImGuiDockNode_IsSplitNode"][1]["location"] = "imgui_internal:1540" +defs["ImGuiDockNode_IsSplitNode"][1]["location"] = "imgui_internal:1660" defs["ImGuiDockNode_IsSplitNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsSplitNode" defs["ImGuiDockNode_IsSplitNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsSplitNode"][1]["signature"] = "()const" @@ -4570,7 +4588,7 @@ defs["ImGuiDockNode_Rect"][1]["call_args"] = "()" defs["ImGuiDockNode_Rect"][1]["cimguiname"] = "ImGuiDockNode_Rect" defs["ImGuiDockNode_Rect"][1]["defaults"] = {} defs["ImGuiDockNode_Rect"][1]["funcname"] = "Rect" -defs["ImGuiDockNode_Rect"][1]["location"] = "imgui_internal:1543" +defs["ImGuiDockNode_Rect"][1]["location"] = "imgui_internal:1663" defs["ImGuiDockNode_Rect"][1]["nonUDT"] = 1 defs["ImGuiDockNode_Rect"][1]["ov_cimguiname"] = "ImGuiDockNode_Rect" defs["ImGuiDockNode_Rect"][1]["ret"] = "void" @@ -4592,7 +4610,7 @@ defs["ImGuiDockNode_SetLocalFlags"][1]["call_args"] = "(flags)" defs["ImGuiDockNode_SetLocalFlags"][1]["cimguiname"] = "ImGuiDockNode_SetLocalFlags" defs["ImGuiDockNode_SetLocalFlags"][1]["defaults"] = {} defs["ImGuiDockNode_SetLocalFlags"][1]["funcname"] = "SetLocalFlags" -defs["ImGuiDockNode_SetLocalFlags"][1]["location"] = "imgui_internal:1545" +defs["ImGuiDockNode_SetLocalFlags"][1]["location"] = "imgui_internal:1665" defs["ImGuiDockNode_SetLocalFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_SetLocalFlags" defs["ImGuiDockNode_SetLocalFlags"][1]["ret"] = "void" defs["ImGuiDockNode_SetLocalFlags"][1]["signature"] = "(ImGuiDockNodeFlags)" @@ -4610,7 +4628,7 @@ defs["ImGuiDockNode_UpdateMergedFlags"][1]["call_args"] = "()" defs["ImGuiDockNode_UpdateMergedFlags"][1]["cimguiname"] = "ImGuiDockNode_UpdateMergedFlags" defs["ImGuiDockNode_UpdateMergedFlags"][1]["defaults"] = {} defs["ImGuiDockNode_UpdateMergedFlags"][1]["funcname"] = "UpdateMergedFlags" -defs["ImGuiDockNode_UpdateMergedFlags"][1]["location"] = "imgui_internal:1546" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["location"] = "imgui_internal:1666" defs["ImGuiDockNode_UpdateMergedFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_UpdateMergedFlags" defs["ImGuiDockNode_UpdateMergedFlags"][1]["ret"] = "void" defs["ImGuiDockNode_UpdateMergedFlags"][1]["signature"] = "()" @@ -4627,7 +4645,7 @@ defs["ImGuiDockNode_destroy"][1]["call_args"] = "(self)" defs["ImGuiDockNode_destroy"][1]["cimguiname"] = "ImGuiDockNode_destroy" defs["ImGuiDockNode_destroy"][1]["defaults"] = {} defs["ImGuiDockNode_destroy"][1]["destructor"] = true -defs["ImGuiDockNode_destroy"][1]["location"] = "imgui_internal:1533" +defs["ImGuiDockNode_destroy"][1]["location"] = "imgui_internal:1653" defs["ImGuiDockNode_destroy"][1]["ov_cimguiname"] = "ImGuiDockNode_destroy" defs["ImGuiDockNode_destroy"][1]["realdestructor"] = true defs["ImGuiDockNode_destroy"][1]["ret"] = "void" @@ -4649,7 +4667,7 @@ defs["ImGuiIO_AddFocusEvent"][1]["call_args"] = "(focused)" defs["ImGuiIO_AddFocusEvent"][1]["cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["defaults"] = {} defs["ImGuiIO_AddFocusEvent"][1]["funcname"] = "AddFocusEvent" -defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2069" +defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2063" defs["ImGuiIO_AddFocusEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["ret"] = "void" defs["ImGuiIO_AddFocusEvent"][1]["signature"] = "(bool)" @@ -4670,7 +4688,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:2070" +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2064" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -4691,7 +4709,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:2071" +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2065" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -4712,7 +4730,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:2072" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2066" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -4739,7 +4757,7 @@ defs["ImGuiIO_AddKeyAnalogEvent"][1]["call_args"] = "(key,down,v)" defs["ImGuiIO_AddKeyAnalogEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyAnalogEvent"][1]["funcname"] = "AddKeyAnalogEvent" -defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2064" +defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2058" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyAnalogEvent"][1]["signature"] = "(ImGuiKey,bool,float)" @@ -4763,7 +4781,7 @@ defs["ImGuiIO_AddKeyEvent"][1]["call_args"] = "(key,down)" defs["ImGuiIO_AddKeyEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyEvent"][1]["funcname"] = "AddKeyEvent" -defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2063" +defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2057" defs["ImGuiIO_AddKeyEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyEvent"][1]["signature"] = "(ImGuiKey,bool)" @@ -4787,7 +4805,7 @@ defs["ImGuiIO_AddMouseButtonEvent"][1]["call_args"] = "(button,down)" defs["ImGuiIO_AddMouseButtonEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseButtonEvent"][1]["funcname"] = "AddMouseButtonEvent" -defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2066" +defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2060" defs["ImGuiIO_AddMouseButtonEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseButtonEvent"][1]["signature"] = "(int,bool)" @@ -4811,7 +4829,7 @@ defs["ImGuiIO_AddMousePosEvent"][1]["call_args"] = "(x,y)" defs["ImGuiIO_AddMousePosEvent"][1]["cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMousePosEvent"][1]["funcname"] = "AddMousePosEvent" -defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2065" +defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2059" defs["ImGuiIO_AddMousePosEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMousePosEvent"][1]["signature"] = "(float,float)" @@ -4832,7 +4850,7 @@ defs["ImGuiIO_AddMouseViewportEvent"][1]["call_args"] = "(id)" defs["ImGuiIO_AddMouseViewportEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseViewportEvent" defs["ImGuiIO_AddMouseViewportEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseViewportEvent"][1]["funcname"] = "AddMouseViewportEvent" -defs["ImGuiIO_AddMouseViewportEvent"][1]["location"] = "imgui:2068" +defs["ImGuiIO_AddMouseViewportEvent"][1]["location"] = "imgui:2062" defs["ImGuiIO_AddMouseViewportEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseViewportEvent" defs["ImGuiIO_AddMouseViewportEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseViewportEvent"][1]["signature"] = "(ImGuiID)" @@ -4856,7 +4874,7 @@ defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wh_x,wh_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["funcname"] = "AddMouseWheelEvent" -defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2067" +defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2061" defs["ImGuiIO_AddMouseWheelEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseWheelEvent"][1]["signature"] = "(float,float)" @@ -4874,7 +4892,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:2076" +defs["ImGuiIO_ClearInputCharacters"][1]["location"] = "imgui:2070" defs["ImGuiIO_ClearInputCharacters"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputCharacters" defs["ImGuiIO_ClearInputCharacters"][1]["ret"] = "void" defs["ImGuiIO_ClearInputCharacters"][1]["signature"] = "()" @@ -4892,7 +4910,7 @@ defs["ImGuiIO_ClearInputKeys"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["defaults"] = {} defs["ImGuiIO_ClearInputKeys"][1]["funcname"] = "ClearInputKeys" -defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2077" +defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2071" defs["ImGuiIO_ClearInputKeys"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["ret"] = "void" defs["ImGuiIO_ClearInputKeys"][1]["signature"] = "()" @@ -4908,7 +4926,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:2153" +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2146" defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -4928,7 +4946,7 @@ defs["ImGuiIO_SetAppAcceptingEvents"][1]["call_args"] = "(accepting_events)" defs["ImGuiIO_SetAppAcceptingEvents"][1]["cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["defaults"] = {} defs["ImGuiIO_SetAppAcceptingEvents"][1]["funcname"] = "SetAppAcceptingEvents" -defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2075" +defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2069" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ov_cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ret"] = "void" defs["ImGuiIO_SetAppAcceptingEvents"][1]["signature"] = "(bool)" @@ -4959,7 +4977,7 @@ defs["ImGuiIO_SetKeyEventNativeData"][1]["cimguiname"] = "ImGuiIO_SetKeyEventNat defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"] = {} defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"]["native_legacy_index"] = "-1" defs["ImGuiIO_SetKeyEventNativeData"][1]["funcname"] = "SetKeyEventNativeData" -defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2074" +defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2068" defs["ImGuiIO_SetKeyEventNativeData"][1]["ov_cimguiname"] = "ImGuiIO_SetKeyEventNativeData" defs["ImGuiIO_SetKeyEventNativeData"][1]["ret"] = "void" defs["ImGuiIO_SetKeyEventNativeData"][1]["signature"] = "(ImGuiKey,int,int,int)" @@ -4991,7 +5009,7 @@ defs["ImGuiInputEvent_ImGuiInputEvent"][1]["cimguiname"] = "ImGuiInputEvent_ImGu defs["ImGuiInputEvent_ImGuiInputEvent"][1]["constructor"] = true defs["ImGuiInputEvent_ImGuiInputEvent"][1]["defaults"] = {} defs["ImGuiInputEvent_ImGuiInputEvent"][1]["funcname"] = "ImGuiInputEvent" -defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1247" +defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1294" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["ov_cimguiname"] = "ImGuiInputEvent_ImGuiInputEvent" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["signature"] = "()" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["stname"] = "ImGuiInputEvent" @@ -5024,7 +5042,7 @@ defs["ImGuiInputTextCallbackData_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ClearSelection"][1]["funcname"] = "ClearSelection" -defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2194" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2187" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["signature"] = "()" @@ -5048,7 +5066,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:2191" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2184" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -5066,7 +5084,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:2195" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2188" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -5082,7 +5100,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:2190" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2183" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -5109,7 +5127,7 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTex defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2192" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2185" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" @@ -5127,7 +5145,7 @@ defs["ImGuiInputTextCallbackData_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_SelectAll"][1]["cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_SelectAll"][1]["funcname"] = "SelectAll" -defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2193" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2186" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_SelectAll"][1]["signature"] = "()" @@ -5161,7 +5179,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:1035" +defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1070" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearFreeMemory"][1]["signature"] = "()" @@ -5179,7 +5197,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:1044" +defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1079" defs["ImGuiInputTextState_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearSelection"][1]["signature"] = "()" @@ -5197,7 +5215,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:1034" +defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1069" defs["ImGuiInputTextState_ClearText"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearText"][1]["signature"] = "()" @@ -5215,7 +5233,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:1041" +defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1076" defs["ImGuiInputTextState_CursorAnimReset"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorAnimReset"][1]["signature"] = "()" @@ -5233,7 +5251,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:1042" +defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1077" defs["ImGuiInputTextState_CursorClamp"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorClamp"][1]["signature"] = "()" @@ -5251,7 +5269,7 @@ defs["ImGuiInputTextState_GetCursorPos"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetCursorPos"][1]["cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["defaults"] = {} defs["ImGuiInputTextState_GetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1045" +defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1080" defs["ImGuiInputTextState_GetCursorPos"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["ret"] = "int" defs["ImGuiInputTextState_GetCursorPos"][1]["signature"] = "()const" @@ -5269,7 +5287,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:1037" +defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "imgui_internal:1072" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["signature"] = "()const" @@ -5287,7 +5305,7 @@ defs["ImGuiInputTextState_GetSelectionEnd"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetSelectionEnd"][1]["cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["defaults"] = {} defs["ImGuiInputTextState_GetSelectionEnd"][1]["funcname"] = "GetSelectionEnd" -defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1047" +defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1082" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionEnd"][1]["signature"] = "()const" @@ -5305,7 +5323,7 @@ defs["ImGuiInputTextState_GetSelectionStart"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetSelectionStart"][1]["cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["defaults"] = {} defs["ImGuiInputTextState_GetSelectionStart"][1]["funcname"] = "GetSelectionStart" -defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1046" +defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1081" defs["ImGuiInputTextState_GetSelectionStart"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionStart"][1]["signature"] = "()const" @@ -5323,7 +5341,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:1036" +defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "imgui_internal:1071" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["signature"] = "()const" @@ -5341,7 +5359,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:1043" +defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1078" defs["ImGuiInputTextState_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextState_HasSelection"][1]["signature"] = "()const" @@ -5357,7 +5375,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:1033" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1068" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["ov_cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["stname"] = "ImGuiInputTextState" @@ -5377,7 +5395,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:1038" +defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1073" defs["ImGuiInputTextState_OnKeyPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["ret"] = "void" defs["ImGuiInputTextState_OnKeyPressed"][1]["signature"] = "(int)" @@ -5395,7 +5413,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:1048" +defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1083" defs["ImGuiInputTextState_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_SelectAll"][1]["signature"] = "()" @@ -5417,6 +5435,117 @@ defs["ImGuiInputTextState_destroy"][1]["ret"] = "void" defs["ImGuiInputTextState_destroy"][1]["signature"] = "(ImGuiInputTextState*)" defs["ImGuiInputTextState_destroy"][1]["stname"] = "ImGuiInputTextState" defs["ImGuiInputTextState_destroy"]["(ImGuiInputTextState*)"] = defs["ImGuiInputTextState_destroy"][1] +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"] = {} +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1] = {} +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["args"] = "()" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["argsT"] = {} +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["argsoriginal"] = "()" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["call_args"] = "()" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["cimguiname"] = "ImGuiKeyOwnerData_ImGuiKeyOwnerData" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["constructor"] = true +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["defaults"] = {} +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["funcname"] = "ImGuiKeyOwnerData" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1336" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["ov_cimguiname"] = "ImGuiKeyOwnerData_ImGuiKeyOwnerData" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["signature"] = "()" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["stname"] = "ImGuiKeyOwnerData" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"]["()"] = defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1] +defs["ImGuiKeyOwnerData_destroy"] = {} +defs["ImGuiKeyOwnerData_destroy"][1] = {} +defs["ImGuiKeyOwnerData_destroy"][1]["args"] = "(ImGuiKeyOwnerData* self)" +defs["ImGuiKeyOwnerData_destroy"][1]["argsT"] = {} +defs["ImGuiKeyOwnerData_destroy"][1]["argsT"][1] = {} +defs["ImGuiKeyOwnerData_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiKeyOwnerData_destroy"][1]["argsT"][1]["type"] = "ImGuiKeyOwnerData*" +defs["ImGuiKeyOwnerData_destroy"][1]["call_args"] = "(self)" +defs["ImGuiKeyOwnerData_destroy"][1]["cimguiname"] = "ImGuiKeyOwnerData_destroy" +defs["ImGuiKeyOwnerData_destroy"][1]["defaults"] = {} +defs["ImGuiKeyOwnerData_destroy"][1]["destructor"] = true +defs["ImGuiKeyOwnerData_destroy"][1]["ov_cimguiname"] = "ImGuiKeyOwnerData_destroy" +defs["ImGuiKeyOwnerData_destroy"][1]["ret"] = "void" +defs["ImGuiKeyOwnerData_destroy"][1]["signature"] = "(ImGuiKeyOwnerData*)" +defs["ImGuiKeyOwnerData_destroy"][1]["stname"] = "ImGuiKeyOwnerData" +defs["ImGuiKeyOwnerData_destroy"]["(ImGuiKeyOwnerData*)"] = defs["ImGuiKeyOwnerData_destroy"][1] +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"] = {} +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1] = {} +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["args"] = "()" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["argsT"] = {} +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["argsoriginal"] = "()" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["call_args"] = "()" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["cimguiname"] = "ImGuiKeyRoutingData_ImGuiKeyRoutingData" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["constructor"] = true +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["defaults"] = {} +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["funcname"] = "ImGuiKeyRoutingData" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1312" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["ov_cimguiname"] = "ImGuiKeyRoutingData_ImGuiKeyRoutingData" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["signature"] = "()" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["stname"] = "ImGuiKeyRoutingData" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"]["()"] = defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1] +defs["ImGuiKeyRoutingData_destroy"] = {} +defs["ImGuiKeyRoutingData_destroy"][1] = {} +defs["ImGuiKeyRoutingData_destroy"][1]["args"] = "(ImGuiKeyRoutingData* self)" +defs["ImGuiKeyRoutingData_destroy"][1]["argsT"] = {} +defs["ImGuiKeyRoutingData_destroy"][1]["argsT"][1] = {} +defs["ImGuiKeyRoutingData_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiKeyRoutingData_destroy"][1]["argsT"][1]["type"] = "ImGuiKeyRoutingData*" +defs["ImGuiKeyRoutingData_destroy"][1]["call_args"] = "(self)" +defs["ImGuiKeyRoutingData_destroy"][1]["cimguiname"] = "ImGuiKeyRoutingData_destroy" +defs["ImGuiKeyRoutingData_destroy"][1]["defaults"] = {} +defs["ImGuiKeyRoutingData_destroy"][1]["destructor"] = true +defs["ImGuiKeyRoutingData_destroy"][1]["ov_cimguiname"] = "ImGuiKeyRoutingData_destroy" +defs["ImGuiKeyRoutingData_destroy"][1]["ret"] = "void" +defs["ImGuiKeyRoutingData_destroy"][1]["signature"] = "(ImGuiKeyRoutingData*)" +defs["ImGuiKeyRoutingData_destroy"][1]["stname"] = "ImGuiKeyRoutingData" +defs["ImGuiKeyRoutingData_destroy"]["(ImGuiKeyRoutingData*)"] = defs["ImGuiKeyRoutingData_destroy"][1] +defs["ImGuiKeyRoutingTable_Clear"] = {} +defs["ImGuiKeyRoutingTable_Clear"][1] = {} +defs["ImGuiKeyRoutingTable_Clear"][1]["args"] = "(ImGuiKeyRoutingTable* self)" +defs["ImGuiKeyRoutingTable_Clear"][1]["argsT"] = {} +defs["ImGuiKeyRoutingTable_Clear"][1]["argsT"][1] = {} +defs["ImGuiKeyRoutingTable_Clear"][1]["argsT"][1]["name"] = "self" +defs["ImGuiKeyRoutingTable_Clear"][1]["argsT"][1]["type"] = "ImGuiKeyRoutingTable*" +defs["ImGuiKeyRoutingTable_Clear"][1]["argsoriginal"] = "()" +defs["ImGuiKeyRoutingTable_Clear"][1]["call_args"] = "()" +defs["ImGuiKeyRoutingTable_Clear"][1]["cimguiname"] = "ImGuiKeyRoutingTable_Clear" +defs["ImGuiKeyRoutingTable_Clear"][1]["defaults"] = {} +defs["ImGuiKeyRoutingTable_Clear"][1]["funcname"] = "Clear" +defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1324" +defs["ImGuiKeyRoutingTable_Clear"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_Clear" +defs["ImGuiKeyRoutingTable_Clear"][1]["ret"] = "void" +defs["ImGuiKeyRoutingTable_Clear"][1]["signature"] = "()" +defs["ImGuiKeyRoutingTable_Clear"][1]["stname"] = "ImGuiKeyRoutingTable" +defs["ImGuiKeyRoutingTable_Clear"]["()"] = defs["ImGuiKeyRoutingTable_Clear"][1] +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"] = {} +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1] = {} +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["args"] = "()" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["argsT"] = {} +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["argsoriginal"] = "()" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["call_args"] = "()" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["cimguiname"] = "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["constructor"] = true +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["defaults"] = {} +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["funcname"] = "ImGuiKeyRoutingTable" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1323" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["signature"] = "()" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["stname"] = "ImGuiKeyRoutingTable" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"]["()"] = defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1] +defs["ImGuiKeyRoutingTable_destroy"] = {} +defs["ImGuiKeyRoutingTable_destroy"][1] = {} +defs["ImGuiKeyRoutingTable_destroy"][1]["args"] = "(ImGuiKeyRoutingTable* self)" +defs["ImGuiKeyRoutingTable_destroy"][1]["argsT"] = {} +defs["ImGuiKeyRoutingTable_destroy"][1]["argsT"][1] = {} +defs["ImGuiKeyRoutingTable_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiKeyRoutingTable_destroy"][1]["argsT"][1]["type"] = "ImGuiKeyRoutingTable*" +defs["ImGuiKeyRoutingTable_destroy"][1]["call_args"] = "(self)" +defs["ImGuiKeyRoutingTable_destroy"][1]["cimguiname"] = "ImGuiKeyRoutingTable_destroy" +defs["ImGuiKeyRoutingTable_destroy"][1]["defaults"] = {} +defs["ImGuiKeyRoutingTable_destroy"][1]["destructor"] = true +defs["ImGuiKeyRoutingTable_destroy"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_destroy" +defs["ImGuiKeyRoutingTable_destroy"][1]["ret"] = "void" +defs["ImGuiKeyRoutingTable_destroy"][1]["signature"] = "(ImGuiKeyRoutingTable*)" +defs["ImGuiKeyRoutingTable_destroy"][1]["stname"] = "ImGuiKeyRoutingTable" +defs["ImGuiKeyRoutingTable_destroy"]["(ImGuiKeyRoutingTable*)"] = defs["ImGuiKeyRoutingTable_destroy"][1] defs["ImGuiLastItemData_ImGuiLastItemData"] = {} defs["ImGuiLastItemData_ImGuiLastItemData"][1] = {} defs["ImGuiLastItemData_ImGuiLastItemData"][1]["args"] = "()" @@ -5427,7 +5556,7 @@ defs["ImGuiLastItemData_ImGuiLastItemData"][1]["cimguiname"] = "ImGuiLastItemDat defs["ImGuiLastItemData_ImGuiLastItemData"][1]["constructor"] = true defs["ImGuiLastItemData_ImGuiLastItemData"][1]["defaults"] = {} defs["ImGuiLastItemData_ImGuiLastItemData"][1]["funcname"] = "ImGuiLastItemData" -defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1139" +defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1174" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["ov_cimguiname"] = "ImGuiLastItemData_ImGuiLastItemData" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["signature"] = "()" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["stname"] = "ImGuiLastItemData" @@ -5458,7 +5587,7 @@ defs["ImGuiListClipperData_ImGuiListClipperData"][1]["cimguiname"] = "ImGuiListC defs["ImGuiListClipperData_ImGuiListClipperData"][1]["constructor"] = true defs["ImGuiListClipperData_ImGuiListClipperData"][1]["defaults"] = {} defs["ImGuiListClipperData_ImGuiListClipperData"][1]["funcname"] = "ImGuiListClipperData" -defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1286" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1412" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["ov_cimguiname"] = "ImGuiListClipperData_ImGuiListClipperData" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["signature"] = "()" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["stname"] = "ImGuiListClipperData" @@ -5478,7 +5607,7 @@ defs["ImGuiListClipperData_Reset"][1]["call_args"] = "(clipper)" defs["ImGuiListClipperData_Reset"][1]["cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["defaults"] = {} defs["ImGuiListClipperData_Reset"][1]["funcname"] = "Reset" -defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1287" +defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1413" defs["ImGuiListClipperData_Reset"][1]["ov_cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["ret"] = "void" defs["ImGuiListClipperData_Reset"][1]["signature"] = "(ImGuiListClipper*)" @@ -5516,7 +5645,7 @@ defs["ImGuiListClipperRange_FromIndices"][1]["cimguiname"] = "ImGuiListClipperRa defs["ImGuiListClipperRange_FromIndices"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromIndices"][1]["funcname"] = "FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["is_static_function"] = true -defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1273" +defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1399" defs["ImGuiListClipperRange_FromIndices"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromIndices"][1]["signature"] = "(int,int)" @@ -5544,7 +5673,7 @@ defs["ImGuiListClipperRange_FromPositions"][1]["cimguiname"] = "ImGuiListClipper defs["ImGuiListClipperRange_FromPositions"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromPositions"][1]["funcname"] = "FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["is_static_function"] = true -defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1274" +defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1400" defs["ImGuiListClipperRange_FromPositions"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromPositions"][1]["signature"] = "(float,float,int,int)" @@ -5569,7 +5698,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:2427" +defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2420" defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" @@ -5587,7 +5716,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:2428" +defs["ImGuiListClipper_End"][1]["location"] = "imgui:2421" defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" @@ -5611,7 +5740,7 @@ defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["call_args"] = "(item_min defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["defaults"] = {} defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["funcname"] = "ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["location"] = "imgui:2432" +defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["location"] = "imgui:2425" defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ov_cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ret"] = "void" defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["signature"] = "(int,int)" @@ -5627,7 +5756,7 @@ defs["ImGuiListClipper_ImGuiListClipper"][1]["cimguiname"] = "ImGuiListClipper_I defs["ImGuiListClipper_ImGuiListClipper"][1]["constructor"] = true defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2425" +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2418" defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" @@ -5644,7 +5773,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:2429" +defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2422" defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" @@ -5661,7 +5790,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:2426" +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2419" defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" @@ -5683,7 +5812,7 @@ defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["call_args"] = "(update_offsets)" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["defaults"] = {} defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["funcname"] = "CalcNextTotalWidth" -defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1011" +defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1046" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ov_cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ret"] = "void" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["signature"] = "(bool)" @@ -5713,7 +5842,7 @@ defs["ImGuiMenuColumns_DeclColumns"][1]["call_args"] = "(w_icon,w_label,w_shortc defs["ImGuiMenuColumns_DeclColumns"][1]["cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["defaults"] = {} defs["ImGuiMenuColumns_DeclColumns"][1]["funcname"] = "DeclColumns" -defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1010" +defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1045" defs["ImGuiMenuColumns_DeclColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["ret"] = "float" defs["ImGuiMenuColumns_DeclColumns"][1]["signature"] = "(float,float,float,float)" @@ -5729,7 +5858,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:1008" +defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1043" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_ImGuiMenuColumns" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["signature"] = "()" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["stname"] = "ImGuiMenuColumns" @@ -5752,7 +5881,7 @@ defs["ImGuiMenuColumns_Update"][1]["call_args"] = "(spacing,window_reappearing)" defs["ImGuiMenuColumns_Update"][1]["cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["defaults"] = {} defs["ImGuiMenuColumns_Update"][1]["funcname"] = "Update" -defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1009" +defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1044" defs["ImGuiMenuColumns_Update"][1]["ov_cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["ret"] = "void" defs["ImGuiMenuColumns_Update"][1]["signature"] = "(float,bool)" @@ -5784,7 +5913,7 @@ defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["cimguiname"] = "ImGuiMetricsCo defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["constructor"] = true defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["defaults"] = {} defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["funcname"] = "ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["location"] = "imgui_internal:1696" +defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["location"] = "imgui_internal:1817" defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["ov_cimguiname"] = "ImGuiMetricsConfig_ImGuiMetricsConfig" defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["signature"] = "()" defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["stname"] = "ImGuiMetricsConfig" @@ -5817,7 +5946,7 @@ defs["ImGuiNavItemData_Clear"][1]["call_args"] = "()" defs["ImGuiNavItemData_Clear"][1]["cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["defaults"] = {} defs["ImGuiNavItemData_Clear"][1]["funcname"] = "Clear" -defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1372" +defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1489" defs["ImGuiNavItemData_Clear"][1]["ov_cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["ret"] = "void" defs["ImGuiNavItemData_Clear"][1]["signature"] = "()" @@ -5833,7 +5962,7 @@ defs["ImGuiNavItemData_ImGuiNavItemData"][1]["cimguiname"] = "ImGuiNavItemData_I defs["ImGuiNavItemData_ImGuiNavItemData"][1]["constructor"] = true defs["ImGuiNavItemData_ImGuiNavItemData"][1]["defaults"] = {} defs["ImGuiNavItemData_ImGuiNavItemData"][1]["funcname"] = "ImGuiNavItemData" -defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1371" +defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1488" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["ov_cimguiname"] = "ImGuiNavItemData_ImGuiNavItemData" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["signature"] = "()" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["stname"] = "ImGuiNavItemData" @@ -5866,7 +5995,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:1126" +defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1161" defs["ImGuiNextItemData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextItemData_ClearFlags"][1]["signature"] = "()" @@ -5882,7 +6011,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:1125" +defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1160" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["ov_cimguiname"] = "ImGuiNextItemData_ImGuiNextItemData" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["signature"] = "()" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["stname"] = "ImGuiNextItemData" @@ -5915,7 +6044,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:1107" +defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1142" defs["ImGuiNextWindowData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextWindowData_ClearFlags"][1]["signature"] = "()" @@ -5931,7 +6060,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:1106" +defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1141" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ImGuiNextWindowData" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["signature"] = "()" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["stname"] = "ImGuiNextWindowData" @@ -5962,7 +6091,7 @@ defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["cimguiname"] = "ImGuiOldColumn defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["constructor"] = true defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["defaults"] = {} defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["funcname"] = "ImGuiOldColumnData" -defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1407" +defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1524" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["ov_cimguiname"] = "ImGuiOldColumnData_ImGuiOldColumnData" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["signature"] = "()" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["stname"] = "ImGuiOldColumnData" @@ -5993,7 +6122,7 @@ defs["ImGuiOldColumns_ImGuiOldColumns"][1]["cimguiname"] = "ImGuiOldColumns_ImGu defs["ImGuiOldColumns_ImGuiOldColumns"][1]["constructor"] = true defs["ImGuiOldColumns_ImGuiOldColumns"][1]["defaults"] = {} defs["ImGuiOldColumns_ImGuiOldColumns"][1]["funcname"] = "ImGuiOldColumns" -defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1428" +defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1545" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["ov_cimguiname"] = "ImGuiOldColumns_ImGuiOldColumns" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["signature"] = "()" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["stname"] = "ImGuiOldColumns" @@ -6024,7 +6153,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:2291" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2284" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -6057,7 +6186,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:2245" +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2238" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -6073,7 +6202,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:2244" +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2237" defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -6093,7 +6222,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:2246" +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2239" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -6111,7 +6240,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:2248" +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2241" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -6129,7 +6258,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:2247" +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2240" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -6161,7 +6290,7 @@ defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["cimguiname"] = "ImGuiPlatformIO_ImGu defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["constructor"] = true defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["defaults"] = {} defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["funcname"] = "ImGuiPlatformIO" -defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3187" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3181" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["ov_cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["signature"] = "()" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["stname"] = "ImGuiPlatformIO" @@ -6192,7 +6321,7 @@ defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["constructor"] = true defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["defaults"] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["funcname"] = "ImGuiPlatformImeData" -defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3207" +defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3201" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["ov_cimguiname"] = "ImGuiPlatformImeData_ImGuiPlatformImeData" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["signature"] = "()" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["stname"] = "ImGuiPlatformImeData" @@ -6223,7 +6352,7 @@ defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["constructor"] = true defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["defaults"] = {} defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["funcname"] = "ImGuiPlatformMonitor" -defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["location"] = "imgui:3197" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["location"] = "imgui:3191" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["ov_cimguiname"] = "ImGuiPlatformMonitor_ImGuiPlatformMonitor" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["signature"] = "()" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["stname"] = "ImGuiPlatformMonitor" @@ -6254,7 +6383,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:1063" +defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1098" defs["ImGuiPopupData_ImGuiPopupData"][1]["ov_cimguiname"] = "ImGuiPopupData_ImGuiPopupData" defs["ImGuiPopupData_ImGuiPopupData"][1]["signature"] = "()" defs["ImGuiPopupData_ImGuiPopupData"][1]["stname"] = "ImGuiPopupData" @@ -6288,7 +6417,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:1179" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1214" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["signature"] = "(void*)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["stname"] = "ImGuiPtrOrIndex" @@ -6304,7 +6433,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:1180" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1215" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["signature"] = "(int)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["stname"] = "ImGuiPtrOrIndex" @@ -6336,7 +6465,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:1661" +defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:1781" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["ov_cimguiname"] = "ImGuiSettingsHandler_ImGuiSettingsHandler" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["signature"] = "()" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["stname"] = "ImGuiSettingsHandler" @@ -6367,7 +6496,7 @@ defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["cimguiname"] = "ImGuiStackLe defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["constructor"] = true defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["defaults"] = {} defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["funcname"] = "ImGuiStackLevelInfo" -defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:1714" +defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:1835" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["ov_cimguiname"] = "ImGuiStackLevelInfo_ImGuiStackLevelInfo" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["signature"] = "()" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["stname"] = "ImGuiStackLevelInfo" @@ -6400,7 +6529,7 @@ defs["ImGuiStackSizes_CompareWithCurrentState"][1]["call_args"] = "()" defs["ImGuiStackSizes_CompareWithCurrentState"][1]["cimguiname"] = "ImGuiStackSizes_CompareWithCurrentState" defs["ImGuiStackSizes_CompareWithCurrentState"][1]["defaults"] = {} defs["ImGuiStackSizes_CompareWithCurrentState"][1]["funcname"] = "CompareWithCurrentState" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["location"] = "imgui_internal:1156" +defs["ImGuiStackSizes_CompareWithCurrentState"][1]["location"] = "imgui_internal:1191" defs["ImGuiStackSizes_CompareWithCurrentState"][1]["ov_cimguiname"] = "ImGuiStackSizes_CompareWithCurrentState" defs["ImGuiStackSizes_CompareWithCurrentState"][1]["ret"] = "void" defs["ImGuiStackSizes_CompareWithCurrentState"][1]["signature"] = "()" @@ -6416,7 +6545,7 @@ defs["ImGuiStackSizes_ImGuiStackSizes"][1]["cimguiname"] = "ImGuiStackSizes_ImGu defs["ImGuiStackSizes_ImGuiStackSizes"][1]["constructor"] = true defs["ImGuiStackSizes_ImGuiStackSizes"][1]["defaults"] = {} defs["ImGuiStackSizes_ImGuiStackSizes"][1]["funcname"] = "ImGuiStackSizes" -defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1154" +defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1189" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["ov_cimguiname"] = "ImGuiStackSizes_ImGuiStackSizes" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["signature"] = "()" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["stname"] = "ImGuiStackSizes" @@ -6433,7 +6562,7 @@ defs["ImGuiStackSizes_SetToCurrentState"][1]["call_args"] = "()" defs["ImGuiStackSizes_SetToCurrentState"][1]["cimguiname"] = "ImGuiStackSizes_SetToCurrentState" defs["ImGuiStackSizes_SetToCurrentState"][1]["defaults"] = {} defs["ImGuiStackSizes_SetToCurrentState"][1]["funcname"] = "SetToCurrentState" -defs["ImGuiStackSizes_SetToCurrentState"][1]["location"] = "imgui_internal:1155" +defs["ImGuiStackSizes_SetToCurrentState"][1]["location"] = "imgui_internal:1190" defs["ImGuiStackSizes_SetToCurrentState"][1]["ov_cimguiname"] = "ImGuiStackSizes_SetToCurrentState" defs["ImGuiStackSizes_SetToCurrentState"][1]["ret"] = "void" defs["ImGuiStackSizes_SetToCurrentState"][1]["signature"] = "()" @@ -6465,7 +6594,7 @@ defs["ImGuiStackTool_ImGuiStackTool"][1]["cimguiname"] = "ImGuiStackTool_ImGuiSt defs["ImGuiStackTool_ImGuiStackTool"][1]["constructor"] = true defs["ImGuiStackTool_ImGuiStackTool"][1]["defaults"] = {} defs["ImGuiStackTool_ImGuiStackTool"][1]["funcname"] = "ImGuiStackTool" -defs["ImGuiStackTool_ImGuiStackTool"][1]["location"] = "imgui_internal:1727" +defs["ImGuiStackTool_ImGuiStackTool"][1]["location"] = "imgui_internal:1848" defs["ImGuiStackTool_ImGuiStackTool"][1]["ov_cimguiname"] = "ImGuiStackTool_ImGuiStackTool" defs["ImGuiStackTool_ImGuiStackTool"][1]["signature"] = "()" defs["ImGuiStackTool_ImGuiStackTool"][1]["stname"] = "ImGuiStackTool" @@ -6502,7 +6631,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:2358" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2351" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Int" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" @@ -6521,7 +6650,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:2359" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2352" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Float" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" @@ -6540,7 +6669,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:2360" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2353" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Ptr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -6575,7 +6704,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:2391" +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2384" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -6593,7 +6722,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:2368" +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2361" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -6618,7 +6747,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:2371" +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2364" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -6643,7 +6772,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:2383" +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2376" defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -6668,7 +6797,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:2373" +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2366" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -6693,7 +6822,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:2384" +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2377" defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -6718,7 +6847,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:2369" +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2362" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -6743,7 +6872,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:2382" +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2375" defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -6764,7 +6893,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:2375" +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2368" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -6789,7 +6918,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:2385" +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2378" defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -6810,7 +6939,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:2388" +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2381" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -6834,7 +6963,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:2372" +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2365" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -6858,7 +6987,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:2374" +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2367" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -6882,7 +7011,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:2370" +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2363" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -6906,7 +7035,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:2376" +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2369" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -6928,7 +7057,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:962" +defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:997" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Int" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["signature"] = "(ImGuiStyleVar,int)" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["stname"] = "ImGuiStyleMod" @@ -6947,7 +7076,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:963" +defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:998" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Float" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["signature"] = "(ImGuiStyleVar,float)" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["stname"] = "ImGuiStyleMod" @@ -6966,7 +7095,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:964" +defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:999" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Vec2" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["signature"] = "(ImGuiStyleVar,ImVec2)" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["stname"] = "ImGuiStyleMod" @@ -6999,7 +7128,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:1962" +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:1953" defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -7019,7 +7148,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:1963" +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:1954" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -7056,7 +7185,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:2462" +defs["ImGuiTabBar_GetTabName"][1]["location"] = "imgui_internal:2611" defs["ImGuiTabBar_GetTabName"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabName" defs["ImGuiTabBar_GetTabName"][1]["ret"] = "const char*" defs["ImGuiTabBar_GetTabName"][1]["signature"] = "(const ImGuiTabItem*)const" @@ -7077,7 +7206,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:2461" +defs["ImGuiTabBar_GetTabOrder"][1]["location"] = "imgui_internal:2610" defs["ImGuiTabBar_GetTabOrder"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabOrder" defs["ImGuiTabBar_GetTabOrder"][1]["ret"] = "int" defs["ImGuiTabBar_GetTabOrder"][1]["signature"] = "(const ImGuiTabItem*)const" @@ -7093,7 +7222,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:2460" +defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:2609" defs["ImGuiTabBar_ImGuiTabBar"][1]["ov_cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["signature"] = "()" defs["ImGuiTabBar_ImGuiTabBar"][1]["stname"] = "ImGuiTabBar" @@ -7124,7 +7253,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:2422" +defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:2571" defs["ImGuiTabItem_ImGuiTabItem"][1]["ov_cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["signature"] = "()" defs["ImGuiTabItem_ImGuiTabItem"][1]["stname"] = "ImGuiTabItem" @@ -7155,7 +7284,7 @@ defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["cimguiname"] = "Im defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["constructor"] = true defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["defaults"] = {} defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["funcname"] = "ImGuiTableColumnSettings" -defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:2708" +defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:2857" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableColumnSettings_ImGuiTableColumnSettings" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["signature"] = "()" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["stname"] = "ImGuiTableColumnSettings" @@ -7186,7 +7315,7 @@ defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["cimguiname"] = " defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["constructor"] = true defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["defaults"] = {} defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["funcname"] = "ImGuiTableColumnSortSpecs" -defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2259" +defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2252" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["signature"] = "()" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["stname"] = "ImGuiTableColumnSortSpecs" @@ -7217,7 +7346,7 @@ defs["ImGuiTableColumn_ImGuiTableColumn"][1]["cimguiname"] = "ImGuiTableColumn_I defs["ImGuiTableColumn_ImGuiTableColumn"][1]["constructor"] = true defs["ImGuiTableColumn_ImGuiTableColumn"][1]["defaults"] = {} defs["ImGuiTableColumn_ImGuiTableColumn"][1]["funcname"] = "ImGuiTableColumn" -defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:2531" +defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:2680" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["ov_cimguiname"] = "ImGuiTableColumn_ImGuiTableColumn" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["signature"] = "()" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["stname"] = "ImGuiTableColumn" @@ -7248,7 +7377,7 @@ defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["cimguiname"] = "ImGuiT defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["constructor"] = true defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["defaults"] = {} defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["funcname"] = "ImGuiTableInstanceData" -defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:2558" +defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:2707" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["ov_cimguiname"] = "ImGuiTableInstanceData_ImGuiTableInstanceData" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["signature"] = "()" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["stname"] = "ImGuiTableInstanceData" @@ -7281,7 +7410,7 @@ defs["ImGuiTableSettings_GetColumnSettings"][1]["call_args"] = "()" defs["ImGuiTableSettings_GetColumnSettings"][1]["cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["defaults"] = {} defs["ImGuiTableSettings_GetColumnSettings"][1]["funcname"] = "GetColumnSettings" -defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:2731" +defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:2880" defs["ImGuiTableSettings_GetColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["ret"] = "ImGuiTableColumnSettings*" defs["ImGuiTableSettings_GetColumnSettings"][1]["signature"] = "()" @@ -7297,7 +7426,7 @@ defs["ImGuiTableSettings_ImGuiTableSettings"][1]["cimguiname"] = "ImGuiTableSett defs["ImGuiTableSettings_ImGuiTableSettings"][1]["constructor"] = true defs["ImGuiTableSettings_ImGuiTableSettings"][1]["defaults"] = {} defs["ImGuiTableSettings_ImGuiTableSettings"][1]["funcname"] = "ImGuiTableSettings" -defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:2730" +defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:2879" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_ImGuiTableSettings" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["signature"] = "()" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["stname"] = "ImGuiTableSettings" @@ -7328,7 +7457,7 @@ defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["cimguiname"] = "ImGuiTableSo defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["constructor"] = true defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["defaults"] = {} defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["funcname"] = "ImGuiTableSortSpecs" -defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2272" +defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2265" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableSortSpecs_ImGuiTableSortSpecs" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["signature"] = "()" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["stname"] = "ImGuiTableSortSpecs" @@ -7359,7 +7488,7 @@ defs["ImGuiTableTempData_ImGuiTableTempData"][1]["cimguiname"] = "ImGuiTableTemp defs["ImGuiTableTempData_ImGuiTableTempData"][1]["constructor"] = true defs["ImGuiTableTempData_ImGuiTableTempData"][1]["defaults"] = {} defs["ImGuiTableTempData_ImGuiTableTempData"][1]["funcname"] = "ImGuiTableTempData" -defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:2693" +defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:2842" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["ov_cimguiname"] = "ImGuiTableTempData_ImGuiTableTempData" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["signature"] = "()" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["stname"] = "ImGuiTableTempData" @@ -7390,7 +7519,7 @@ defs["ImGuiTable_ImGuiTable"][1]["cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["constructor"] = true defs["ImGuiTable_ImGuiTable"][1]["defaults"] = {} defs["ImGuiTable_ImGuiTable"][1]["funcname"] = "ImGuiTable" -defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:2669" +defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:2818" defs["ImGuiTable_ImGuiTable"][1]["ov_cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["signature"] = "()" defs["ImGuiTable_ImGuiTable"][1]["stname"] = "ImGuiTable" @@ -7406,7 +7535,7 @@ defs["ImGuiTable_destroy"][1]["call_args"] = "(self)" defs["ImGuiTable_destroy"][1]["cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["defaults"] = {} defs["ImGuiTable_destroy"][1]["destructor"] = true -defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:2670" +defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:2819" defs["ImGuiTable_destroy"][1]["ov_cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["realdestructor"] = true defs["ImGuiTable_destroy"][1]["ret"] = "void" @@ -7423,7 +7552,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:2329" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2322" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -7447,7 +7576,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:2338" +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2331" defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -7472,7 +7601,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:2339" +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2332" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -7497,7 +7626,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:2340" +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2333" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -7515,7 +7644,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:2331" +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2324" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -7533,7 +7662,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:2337" +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2330" 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" @@ -7551,7 +7680,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:2335" +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2328" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -7585,7 +7714,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:2334" +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2327" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -7603,7 +7732,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:2332" +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2325" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -7624,7 +7753,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:2336" +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2329" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -7642,7 +7771,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:2333" +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2326" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -7660,7 +7789,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:2302" +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2295" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -7678,7 +7807,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:2303" +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2296" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -7704,7 +7833,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:2300" +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2293" defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -7724,7 +7853,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:2299" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2292" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -7741,7 +7870,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:2304" +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2297" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -7766,7 +7895,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:2301" +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2294" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -7788,6 +7917,117 @@ defs["ImGuiTextFilter_destroy"][1]["ret"] = "void" defs["ImGuiTextFilter_destroy"][1]["signature"] = "(ImGuiTextFilter*)" defs["ImGuiTextFilter_destroy"][1]["stname"] = "ImGuiTextFilter" defs["ImGuiTextFilter_destroy"]["(ImGuiTextFilter*)"] = defs["ImGuiTextFilter_destroy"][1] +defs["ImGuiTextIndex_append"] = {} +defs["ImGuiTextIndex_append"][1] = {} +defs["ImGuiTextIndex_append"][1]["args"] = "(ImGuiTextIndex* self,const char* base,int old_size,int new_size)" +defs["ImGuiTextIndex_append"][1]["argsT"] = {} +defs["ImGuiTextIndex_append"][1]["argsT"][1] = {} +defs["ImGuiTextIndex_append"][1]["argsT"][1]["name"] = "self" +defs["ImGuiTextIndex_append"][1]["argsT"][1]["type"] = "ImGuiTextIndex*" +defs["ImGuiTextIndex_append"][1]["argsT"][2] = {} +defs["ImGuiTextIndex_append"][1]["argsT"][2]["name"] = "base" +defs["ImGuiTextIndex_append"][1]["argsT"][2]["type"] = "const char*" +defs["ImGuiTextIndex_append"][1]["argsT"][3] = {} +defs["ImGuiTextIndex_append"][1]["argsT"][3]["name"] = "old_size" +defs["ImGuiTextIndex_append"][1]["argsT"][3]["type"] = "int" +defs["ImGuiTextIndex_append"][1]["argsT"][4] = {} +defs["ImGuiTextIndex_append"][1]["argsT"][4]["name"] = "new_size" +defs["ImGuiTextIndex_append"][1]["argsT"][4]["type"] = "int" +defs["ImGuiTextIndex_append"][1]["argsoriginal"] = "(const char* base,int old_size,int new_size)" +defs["ImGuiTextIndex_append"][1]["call_args"] = "(base,old_size,new_size)" +defs["ImGuiTextIndex_append"][1]["cimguiname"] = "ImGuiTextIndex_append" +defs["ImGuiTextIndex_append"][1]["defaults"] = {} +defs["ImGuiTextIndex_append"][1]["funcname"] = "append" +defs["ImGuiTextIndex_append"][1]["location"] = "imgui_internal:719" +defs["ImGuiTextIndex_append"][1]["ov_cimguiname"] = "ImGuiTextIndex_append" +defs["ImGuiTextIndex_append"][1]["ret"] = "void" +defs["ImGuiTextIndex_append"][1]["signature"] = "(const char*,int,int)" +defs["ImGuiTextIndex_append"][1]["stname"] = "ImGuiTextIndex" +defs["ImGuiTextIndex_append"]["(const char*,int,int)"] = defs["ImGuiTextIndex_append"][1] +defs["ImGuiTextIndex_clear"] = {} +defs["ImGuiTextIndex_clear"][1] = {} +defs["ImGuiTextIndex_clear"][1]["args"] = "(ImGuiTextIndex* self)" +defs["ImGuiTextIndex_clear"][1]["argsT"] = {} +defs["ImGuiTextIndex_clear"][1]["argsT"][1] = {} +defs["ImGuiTextIndex_clear"][1]["argsT"][1]["name"] = "self" +defs["ImGuiTextIndex_clear"][1]["argsT"][1]["type"] = "ImGuiTextIndex*" +defs["ImGuiTextIndex_clear"][1]["argsoriginal"] = "()" +defs["ImGuiTextIndex_clear"][1]["call_args"] = "()" +defs["ImGuiTextIndex_clear"][1]["cimguiname"] = "ImGuiTextIndex_clear" +defs["ImGuiTextIndex_clear"][1]["defaults"] = {} +defs["ImGuiTextIndex_clear"][1]["funcname"] = "clear" +defs["ImGuiTextIndex_clear"][1]["location"] = "imgui_internal:715" +defs["ImGuiTextIndex_clear"][1]["ov_cimguiname"] = "ImGuiTextIndex_clear" +defs["ImGuiTextIndex_clear"][1]["ret"] = "void" +defs["ImGuiTextIndex_clear"][1]["signature"] = "()" +defs["ImGuiTextIndex_clear"][1]["stname"] = "ImGuiTextIndex" +defs["ImGuiTextIndex_clear"]["()"] = defs["ImGuiTextIndex_clear"][1] +defs["ImGuiTextIndex_get_line_begin"] = {} +defs["ImGuiTextIndex_get_line_begin"][1] = {} +defs["ImGuiTextIndex_get_line_begin"][1]["args"] = "(ImGuiTextIndex* self,const char* base,int n)" +defs["ImGuiTextIndex_get_line_begin"][1]["argsT"] = {} +defs["ImGuiTextIndex_get_line_begin"][1]["argsT"][1] = {} +defs["ImGuiTextIndex_get_line_begin"][1]["argsT"][1]["name"] = "self" +defs["ImGuiTextIndex_get_line_begin"][1]["argsT"][1]["type"] = "ImGuiTextIndex*" +defs["ImGuiTextIndex_get_line_begin"][1]["argsT"][2] = {} +defs["ImGuiTextIndex_get_line_begin"][1]["argsT"][2]["name"] = "base" +defs["ImGuiTextIndex_get_line_begin"][1]["argsT"][2]["type"] = "const char*" +defs["ImGuiTextIndex_get_line_begin"][1]["argsT"][3] = {} +defs["ImGuiTextIndex_get_line_begin"][1]["argsT"][3]["name"] = "n" +defs["ImGuiTextIndex_get_line_begin"][1]["argsT"][3]["type"] = "int" +defs["ImGuiTextIndex_get_line_begin"][1]["argsoriginal"] = "(const char* base,int n)" +defs["ImGuiTextIndex_get_line_begin"][1]["call_args"] = "(base,n)" +defs["ImGuiTextIndex_get_line_begin"][1]["cimguiname"] = "ImGuiTextIndex_get_line_begin" +defs["ImGuiTextIndex_get_line_begin"][1]["defaults"] = {} +defs["ImGuiTextIndex_get_line_begin"][1]["funcname"] = "get_line_begin" +defs["ImGuiTextIndex_get_line_begin"][1]["location"] = "imgui_internal:717" +defs["ImGuiTextIndex_get_line_begin"][1]["ov_cimguiname"] = "ImGuiTextIndex_get_line_begin" +defs["ImGuiTextIndex_get_line_begin"][1]["ret"] = "const char*" +defs["ImGuiTextIndex_get_line_begin"][1]["signature"] = "(const char*,int)" +defs["ImGuiTextIndex_get_line_begin"][1]["stname"] = "ImGuiTextIndex" +defs["ImGuiTextIndex_get_line_begin"]["(const char*,int)"] = defs["ImGuiTextIndex_get_line_begin"][1] +defs["ImGuiTextIndex_get_line_end"] = {} +defs["ImGuiTextIndex_get_line_end"][1] = {} +defs["ImGuiTextIndex_get_line_end"][1]["args"] = "(ImGuiTextIndex* self,const char* base,int n)" +defs["ImGuiTextIndex_get_line_end"][1]["argsT"] = {} +defs["ImGuiTextIndex_get_line_end"][1]["argsT"][1] = {} +defs["ImGuiTextIndex_get_line_end"][1]["argsT"][1]["name"] = "self" +defs["ImGuiTextIndex_get_line_end"][1]["argsT"][1]["type"] = "ImGuiTextIndex*" +defs["ImGuiTextIndex_get_line_end"][1]["argsT"][2] = {} +defs["ImGuiTextIndex_get_line_end"][1]["argsT"][2]["name"] = "base" +defs["ImGuiTextIndex_get_line_end"][1]["argsT"][2]["type"] = "const char*" +defs["ImGuiTextIndex_get_line_end"][1]["argsT"][3] = {} +defs["ImGuiTextIndex_get_line_end"][1]["argsT"][3]["name"] = "n" +defs["ImGuiTextIndex_get_line_end"][1]["argsT"][3]["type"] = "int" +defs["ImGuiTextIndex_get_line_end"][1]["argsoriginal"] = "(const char* base,int n)" +defs["ImGuiTextIndex_get_line_end"][1]["call_args"] = "(base,n)" +defs["ImGuiTextIndex_get_line_end"][1]["cimguiname"] = "ImGuiTextIndex_get_line_end" +defs["ImGuiTextIndex_get_line_end"][1]["defaults"] = {} +defs["ImGuiTextIndex_get_line_end"][1]["funcname"] = "get_line_end" +defs["ImGuiTextIndex_get_line_end"][1]["location"] = "imgui_internal:718" +defs["ImGuiTextIndex_get_line_end"][1]["ov_cimguiname"] = "ImGuiTextIndex_get_line_end" +defs["ImGuiTextIndex_get_line_end"][1]["ret"] = "const char*" +defs["ImGuiTextIndex_get_line_end"][1]["signature"] = "(const char*,int)" +defs["ImGuiTextIndex_get_line_end"][1]["stname"] = "ImGuiTextIndex" +defs["ImGuiTextIndex_get_line_end"]["(const char*,int)"] = defs["ImGuiTextIndex_get_line_end"][1] +defs["ImGuiTextIndex_size"] = {} +defs["ImGuiTextIndex_size"][1] = {} +defs["ImGuiTextIndex_size"][1]["args"] = "(ImGuiTextIndex* self)" +defs["ImGuiTextIndex_size"][1]["argsT"] = {} +defs["ImGuiTextIndex_size"][1]["argsT"][1] = {} +defs["ImGuiTextIndex_size"][1]["argsT"][1]["name"] = "self" +defs["ImGuiTextIndex_size"][1]["argsT"][1]["type"] = "ImGuiTextIndex*" +defs["ImGuiTextIndex_size"][1]["argsoriginal"] = "()" +defs["ImGuiTextIndex_size"][1]["call_args"] = "()" +defs["ImGuiTextIndex_size"][1]["cimguiname"] = "ImGuiTextIndex_size" +defs["ImGuiTextIndex_size"][1]["defaults"] = {} +defs["ImGuiTextIndex_size"][1]["funcname"] = "size" +defs["ImGuiTextIndex_size"][1]["location"] = "imgui_internal:716" +defs["ImGuiTextIndex_size"][1]["ov_cimguiname"] = "ImGuiTextIndex_size" +defs["ImGuiTextIndex_size"][1]["ret"] = "int" +defs["ImGuiTextIndex_size"][1]["signature"] = "()" +defs["ImGuiTextIndex_size"][1]["stname"] = "ImGuiTextIndex" +defs["ImGuiTextIndex_size"]["()"] = defs["ImGuiTextIndex_size"][1] defs["ImGuiTextRange_ImGuiTextRange"] = {} defs["ImGuiTextRange_ImGuiTextRange"][1] = {} defs["ImGuiTextRange_ImGuiTextRange"][1]["args"] = "()" @@ -7798,7 +8038,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:2312" +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2305" defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Nil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -7817,7 +8057,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:2313" +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2306" defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Str" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -7851,7 +8091,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:2314" +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2307" defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -7875,7 +8115,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:2315" +defs["ImGuiTextRange_split"][1]["location"] = "imgui:2308" defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" @@ -7899,7 +8139,7 @@ defs["ImGuiViewportP_CalcWorkRectPos"][1]["call_args"] = "(off_min)" defs["ImGuiViewportP_CalcWorkRectPos"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["funcname"] = "CalcWorkRectPos" -defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1615" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1735" defs["ImGuiViewportP_CalcWorkRectPos"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectPos"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["ret"] = "void" @@ -7927,7 +8167,7 @@ defs["ImGuiViewportP_CalcWorkRectSize"][1]["call_args"] = "(off_min,off_max)" defs["ImGuiViewportP_CalcWorkRectSize"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["funcname"] = "CalcWorkRectSize" -defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1616" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1736" defs["ImGuiViewportP_CalcWorkRectSize"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectSize"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["ret"] = "void" @@ -7946,7 +8186,7 @@ defs["ImGuiViewportP_ClearRequestFlags"][1]["call_args"] = "()" defs["ImGuiViewportP_ClearRequestFlags"][1]["cimguiname"] = "ImGuiViewportP_ClearRequestFlags" defs["ImGuiViewportP_ClearRequestFlags"][1]["defaults"] = {} defs["ImGuiViewportP_ClearRequestFlags"][1]["funcname"] = "ClearRequestFlags" -defs["ImGuiViewportP_ClearRequestFlags"][1]["location"] = "imgui_internal:1612" +defs["ImGuiViewportP_ClearRequestFlags"][1]["location"] = "imgui_internal:1732" defs["ImGuiViewportP_ClearRequestFlags"][1]["ov_cimguiname"] = "ImGuiViewportP_ClearRequestFlags" defs["ImGuiViewportP_ClearRequestFlags"][1]["ret"] = "void" defs["ImGuiViewportP_ClearRequestFlags"][1]["signature"] = "()" @@ -7967,7 +8207,7 @@ defs["ImGuiViewportP_GetBuildWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetBuildWorkRect"][1]["cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetBuildWorkRect"][1]["funcname"] = "GetBuildWorkRect" -defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:1622" +defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:1742" defs["ImGuiViewportP_GetBuildWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetBuildWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["ret"] = "void" @@ -7989,7 +8229,7 @@ defs["ImGuiViewportP_GetMainRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetMainRect"][1]["cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetMainRect"][1]["funcname"] = "GetMainRect" -defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:1620" +defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:1740" defs["ImGuiViewportP_GetMainRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetMainRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["ret"] = "void" @@ -8011,7 +8251,7 @@ defs["ImGuiViewportP_GetWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetWorkRect"][1]["cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetWorkRect"][1]["funcname"] = "GetWorkRect" -defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:1621" +defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:1741" defs["ImGuiViewportP_GetWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["ret"] = "void" @@ -8028,7 +8268,7 @@ defs["ImGuiViewportP_ImGuiViewportP"][1]["cimguiname"] = "ImGuiViewportP_ImGuiVi defs["ImGuiViewportP_ImGuiViewportP"][1]["constructor"] = true defs["ImGuiViewportP_ImGuiViewportP"][1]["defaults"] = {} defs["ImGuiViewportP_ImGuiViewportP"][1]["funcname"] = "ImGuiViewportP" -defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1610" +defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1730" defs["ImGuiViewportP_ImGuiViewportP"][1]["ov_cimguiname"] = "ImGuiViewportP_ImGuiViewportP" defs["ImGuiViewportP_ImGuiViewportP"][1]["signature"] = "()" defs["ImGuiViewportP_ImGuiViewportP"][1]["stname"] = "ImGuiViewportP" @@ -8045,7 +8285,7 @@ defs["ImGuiViewportP_UpdateWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_UpdateWorkRect"][1]["cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_UpdateWorkRect"][1]["funcname"] = "UpdateWorkRect" -defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:1617" +defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:1737" defs["ImGuiViewportP_UpdateWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["ret"] = "void" defs["ImGuiViewportP_UpdateWorkRect"][1]["signature"] = "()" @@ -8062,7 +8302,7 @@ defs["ImGuiViewportP_destroy"][1]["call_args"] = "(self)" defs["ImGuiViewportP_destroy"][1]["cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["defaults"] = {} defs["ImGuiViewportP_destroy"][1]["destructor"] = true -defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1611" +defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1731" defs["ImGuiViewportP_destroy"][1]["ov_cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["realdestructor"] = true defs["ImGuiViewportP_destroy"][1]["ret"] = "void" @@ -8084,7 +8324,7 @@ defs["ImGuiViewport_GetCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetCenter"][1]["cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetCenter"][1]["funcname"] = "GetCenter" -defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3075" +defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3069" defs["ImGuiViewport_GetCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["ret"] = "void" @@ -8106,7 +8346,7 @@ defs["ImGuiViewport_GetWorkCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetWorkCenter"][1]["cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetWorkCenter"][1]["funcname"] = "GetWorkCenter" -defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3076" +defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3070" defs["ImGuiViewport_GetWorkCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetWorkCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["ret"] = "void" @@ -8123,7 +8363,7 @@ defs["ImGuiViewport_ImGuiViewport"][1]["cimguiname"] = "ImGuiViewport_ImGuiViewp defs["ImGuiViewport_ImGuiViewport"][1]["constructor"] = true defs["ImGuiViewport_ImGuiViewport"][1]["defaults"] = {} defs["ImGuiViewport_ImGuiViewport"][1]["funcname"] = "ImGuiViewport" -defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3071" +defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3065" defs["ImGuiViewport_ImGuiViewport"][1]["ov_cimguiname"] = "ImGuiViewport_ImGuiViewport" defs["ImGuiViewport_ImGuiViewport"][1]["signature"] = "()" defs["ImGuiViewport_ImGuiViewport"][1]["stname"] = "ImGuiViewport" @@ -8139,7 +8379,7 @@ defs["ImGuiViewport_destroy"][1]["call_args"] = "(self)" defs["ImGuiViewport_destroy"][1]["cimguiname"] = "ImGuiViewport_destroy" defs["ImGuiViewport_destroy"][1]["defaults"] = {} defs["ImGuiViewport_destroy"][1]["destructor"] = true -defs["ImGuiViewport_destroy"][1]["location"] = "imgui:3072" +defs["ImGuiViewport_destroy"][1]["location"] = "imgui:3066" defs["ImGuiViewport_destroy"][1]["ov_cimguiname"] = "ImGuiViewport_destroy" defs["ImGuiViewport_destroy"][1]["realdestructor"] = true defs["ImGuiViewport_destroy"][1]["ret"] = "void" @@ -8156,7 +8396,7 @@ defs["ImGuiWindowClass_ImGuiWindowClass"][1]["cimguiname"] = "ImGuiWindowClass_I defs["ImGuiWindowClass_ImGuiWindowClass"][1]["constructor"] = true defs["ImGuiWindowClass_ImGuiWindowClass"][1]["defaults"] = {} defs["ImGuiWindowClass_ImGuiWindowClass"][1]["funcname"] = "ImGuiWindowClass" -defs["ImGuiWindowClass_ImGuiWindowClass"][1]["location"] = "imgui:2226" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["location"] = "imgui:2219" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["ov_cimguiname"] = "ImGuiWindowClass_ImGuiWindowClass" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["signature"] = "()" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["stname"] = "ImGuiWindowClass" @@ -8189,7 +8429,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:1646" +defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:1766" defs["ImGuiWindowSettings_GetName"][1]["ov_cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["ret"] = "char*" defs["ImGuiWindowSettings_GetName"][1]["signature"] = "()" @@ -8205,7 +8445,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:1645" +defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:1765" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["ov_cimguiname"] = "ImGuiWindowSettings_ImGuiWindowSettings" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["signature"] = "()" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["stname"] = "ImGuiWindowSettings" @@ -8238,7 +8478,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:2376" +defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2525" defs["ImGuiWindow_CalcFontSize"][1]["ov_cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["ret"] = "float" defs["ImGuiWindow_CalcFontSize"][1]["signature"] = "()const" @@ -8263,7 +8503,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:2369" +defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2518" defs["ImGuiWindow_GetID"][1]["ov_cimguiname"] = "ImGuiWindow_GetID_Str" defs["ImGuiWindow_GetID"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][1]["signature"] = "(const char*,const char*)" @@ -8282,7 +8522,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:2370" +defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2519" defs["ImGuiWindow_GetID"][2]["ov_cimguiname"] = "ImGuiWindow_GetID_Ptr" defs["ImGuiWindow_GetID"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][2]["signature"] = "(const void*)" @@ -8301,7 +8541,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:2371" +defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2520" defs["ImGuiWindow_GetID"][3]["ov_cimguiname"] = "ImGuiWindow_GetID_Int" defs["ImGuiWindow_GetID"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][3]["signature"] = "(int)" @@ -8324,7 +8564,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:2372" +defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2521" defs["ImGuiWindow_GetIDFromRectangle"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDFromRectangle"][1]["signature"] = "(const ImRect)" @@ -8346,7 +8586,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:2365" +defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2514" defs["ImGuiWindow_ImGuiWindow"][1]["ov_cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["signature"] = "(ImGuiContext*,const char*)" defs["ImGuiWindow_ImGuiWindow"][1]["stname"] = "ImGuiWindow" @@ -8363,7 +8603,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:2379" +defs["ImGuiWindow_MenuBarHeight"][1]["location"] = "imgui_internal:2528" defs["ImGuiWindow_MenuBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarHeight" defs["ImGuiWindow_MenuBarHeight"][1]["ret"] = "float" defs["ImGuiWindow_MenuBarHeight"][1]["signature"] = "()const" @@ -8384,7 +8624,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:2380" +defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2529" defs["ImGuiWindow_MenuBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_MenuBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["ret"] = "void" @@ -8406,7 +8646,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:2375" +defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2524" defs["ImGuiWindow_Rect"][1]["nonUDT"] = 1 defs["ImGuiWindow_Rect"][1]["ov_cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["ret"] = "void" @@ -8425,7 +8665,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:2377" +defs["ImGuiWindow_TitleBarHeight"][1]["location"] = "imgui_internal:2526" defs["ImGuiWindow_TitleBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarHeight" defs["ImGuiWindow_TitleBarHeight"][1]["ret"] = "float" defs["ImGuiWindow_TitleBarHeight"][1]["signature"] = "()const" @@ -8446,7 +8686,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:2378" +defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2527" defs["ImGuiWindow_TitleBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_TitleBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["ret"] = "void" @@ -8464,7 +8704,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:2367" +defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2516" defs["ImGuiWindow_destroy"][1]["ov_cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["realdestructor"] = true defs["ImGuiWindow_destroy"][1]["ret"] = "void" @@ -8483,7 +8723,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:661" +defs["ImPool_Add"][1]["location"] = "imgui_internal:668" defs["ImPool_Add"][1]["ov_cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["ret"] = "T*" defs["ImPool_Add"][1]["signature"] = "()" @@ -8502,7 +8742,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:660" +defs["ImPool_Clear"][1]["location"] = "imgui_internal:667" defs["ImPool_Clear"][1]["ov_cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["ret"] = "void" defs["ImPool_Clear"][1]["signature"] = "()" @@ -8524,7 +8764,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:659" +defs["ImPool_Contains"][1]["location"] = "imgui_internal:666" defs["ImPool_Contains"][1]["ov_cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["ret"] = "bool" defs["ImPool_Contains"][1]["signature"] = "(const T*)const" @@ -8543,7 +8783,7 @@ defs["ImPool_GetAliveCount"][1]["call_args"] = "()" defs["ImPool_GetAliveCount"][1]["cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["defaults"] = {} defs["ImPool_GetAliveCount"][1]["funcname"] = "GetAliveCount" -defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:668" +defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:675" defs["ImPool_GetAliveCount"][1]["ov_cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["ret"] = "int" defs["ImPool_GetAliveCount"][1]["signature"] = "()const" @@ -8562,7 +8802,7 @@ defs["ImPool_GetBufSize"][1]["call_args"] = "()" defs["ImPool_GetBufSize"][1]["cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["defaults"] = {} defs["ImPool_GetBufSize"][1]["funcname"] = "GetBufSize" -defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:669" +defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:676" defs["ImPool_GetBufSize"][1]["ov_cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["ret"] = "int" defs["ImPool_GetBufSize"][1]["signature"] = "()const" @@ -8584,7 +8824,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:656" +defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:663" defs["ImPool_GetByIndex"][1]["ov_cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["ret"] = "T*" defs["ImPool_GetByIndex"][1]["signature"] = "(ImPoolIdx)" @@ -8606,7 +8846,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:655" +defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:662" defs["ImPool_GetByKey"][1]["ov_cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["ret"] = "T*" defs["ImPool_GetByKey"][1]["signature"] = "(ImGuiID)" @@ -8628,7 +8868,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:657" +defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:664" defs["ImPool_GetIndex"][1]["ov_cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["ret"] = "ImPoolIdx" defs["ImPool_GetIndex"][1]["signature"] = "(const T*)const" @@ -8647,7 +8887,7 @@ defs["ImPool_GetMapSize"][1]["call_args"] = "()" defs["ImPool_GetMapSize"][1]["cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["defaults"] = {} defs["ImPool_GetMapSize"][1]["funcname"] = "GetMapSize" -defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:670" +defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:677" defs["ImPool_GetMapSize"][1]["ov_cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["ret"] = "int" defs["ImPool_GetMapSize"][1]["signature"] = "()const" @@ -8669,7 +8909,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:658" +defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:665" defs["ImPool_GetOrAddByKey"][1]["ov_cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["ret"] = "T*" defs["ImPool_GetOrAddByKey"][1]["signature"] = "(ImGuiID)" @@ -8686,7 +8926,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:653" +defs["ImPool_ImPool"][1]["location"] = "imgui_internal:660" defs["ImPool_ImPool"][1]["ov_cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["signature"] = "()" defs["ImPool_ImPool"][1]["stname"] = "ImPool" @@ -8710,7 +8950,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:662" +defs["ImPool_Remove"][1]["location"] = "imgui_internal:669" defs["ImPool_Remove"][1]["ov_cimguiname"] = "ImPool_Remove_TPtr" defs["ImPool_Remove"][1]["ret"] = "void" defs["ImPool_Remove"][1]["signature"] = "(ImGuiID,const T*)" @@ -8733,7 +8973,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:663" +defs["ImPool_Remove"][2]["location"] = "imgui_internal:670" defs["ImPool_Remove"][2]["ov_cimguiname"] = "ImPool_Remove_PoolIdx" defs["ImPool_Remove"][2]["ret"] = "void" defs["ImPool_Remove"][2]["signature"] = "(ImGuiID,ImPoolIdx)" @@ -8756,7 +8996,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:664" +defs["ImPool_Reserve"][1]["location"] = "imgui_internal:671" defs["ImPool_Reserve"][1]["ov_cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["ret"] = "void" defs["ImPool_Reserve"][1]["signature"] = "(int)" @@ -8778,7 +9018,7 @@ defs["ImPool_TryGetMapData"][1]["call_args"] = "(n)" defs["ImPool_TryGetMapData"][1]["cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["defaults"] = {} defs["ImPool_TryGetMapData"][1]["funcname"] = "TryGetMapData" -defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:671" +defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:678" defs["ImPool_TryGetMapData"][1]["ov_cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["ret"] = "T*" defs["ImPool_TryGetMapData"][1]["signature"] = "(ImPoolIdx)" @@ -8796,7 +9036,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:654" +defs["ImPool_destroy"][1]["location"] = "imgui_internal:661" defs["ImPool_destroy"][1]["ov_cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["realdestructor"] = true defs["ImPool_destroy"][1]["ret"] = "void" @@ -8819,7 +9059,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:530" +defs["ImRect_Add"][1]["location"] = "imgui_internal:537" defs["ImRect_Add"][1]["ov_cimguiname"] = "ImRect_Add_Vec2" defs["ImRect_Add"][1]["ret"] = "void" defs["ImRect_Add"][1]["signature"] = "(const ImVec2)" @@ -8838,7 +9078,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:531" +defs["ImRect_Add"][2]["location"] = "imgui_internal:538" defs["ImRect_Add"][2]["ov_cimguiname"] = "ImRect_Add_Rect" defs["ImRect_Add"][2]["ret"] = "void" defs["ImRect_Add"][2]["signature"] = "(const ImRect)" @@ -8860,7 +9100,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:537" +defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:544" defs["ImRect_ClipWith"][1]["ov_cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["ret"] = "void" defs["ImRect_ClipWith"][1]["signature"] = "(const ImRect)" @@ -8881,7 +9121,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:538" +defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:545" defs["ImRect_ClipWithFull"][1]["ov_cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["ret"] = "void" defs["ImRect_ClipWithFull"][1]["signature"] = "(const ImRect)" @@ -8902,7 +9142,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:527" +defs["ImRect_Contains"][1]["location"] = "imgui_internal:534" defs["ImRect_Contains"][1]["ov_cimguiname"] = "ImRect_Contains_Vec2" defs["ImRect_Contains"][1]["ret"] = "bool" defs["ImRect_Contains"][1]["signature"] = "(const ImVec2)const" @@ -8921,7 +9161,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:528" +defs["ImRect_Contains"][2]["location"] = "imgui_internal:535" defs["ImRect_Contains"][2]["ov_cimguiname"] = "ImRect_Contains_Rect" defs["ImRect_Contains"][2]["ret"] = "bool" defs["ImRect_Contains"][2]["signature"] = "(const ImRect)const" @@ -8943,7 +9183,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:532" +defs["ImRect_Expand"][1]["location"] = "imgui_internal:539" defs["ImRect_Expand"][1]["ov_cimguiname"] = "ImRect_Expand_Float" defs["ImRect_Expand"][1]["ret"] = "void" defs["ImRect_Expand"][1]["signature"] = "(const float)" @@ -8962,7 +9202,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:533" +defs["ImRect_Expand"][2]["location"] = "imgui_internal:540" defs["ImRect_Expand"][2]["ov_cimguiname"] = "ImRect_Expand_Vec2" defs["ImRect_Expand"][2]["ret"] = "void" defs["ImRect_Expand"][2]["signature"] = "(const ImVec2)" @@ -8981,7 +9221,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:539" +defs["ImRect_Floor"][1]["location"] = "imgui_internal:546" defs["ImRect_Floor"][1]["ov_cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["ret"] = "void" defs["ImRect_Floor"][1]["signature"] = "()" @@ -8999,7 +9239,7 @@ defs["ImRect_GetArea"][1]["call_args"] = "()" defs["ImRect_GetArea"][1]["cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["defaults"] = {} defs["ImRect_GetArea"][1]["funcname"] = "GetArea" -defs["ImRect_GetArea"][1]["location"] = "imgui_internal:522" +defs["ImRect_GetArea"][1]["location"] = "imgui_internal:529" defs["ImRect_GetArea"][1]["ov_cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["ret"] = "float" defs["ImRect_GetArea"][1]["signature"] = "()const" @@ -9020,7 +9260,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:525" +defs["ImRect_GetBL"][1]["location"] = "imgui_internal:532" defs["ImRect_GetBL"][1]["nonUDT"] = 1 defs["ImRect_GetBL"][1]["ov_cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["ret"] = "void" @@ -9042,7 +9282,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:526" +defs["ImRect_GetBR"][1]["location"] = "imgui_internal:533" defs["ImRect_GetBR"][1]["nonUDT"] = 1 defs["ImRect_GetBR"][1]["ov_cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["ret"] = "void" @@ -9064,7 +9304,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:518" +defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:525" defs["ImRect_GetCenter"][1]["nonUDT"] = 1 defs["ImRect_GetCenter"][1]["ov_cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["ret"] = "void" @@ -9083,7 +9323,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:521" +defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:528" defs["ImRect_GetHeight"][1]["ov_cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["ret"] = "float" defs["ImRect_GetHeight"][1]["signature"] = "()const" @@ -9104,7 +9344,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:519" +defs["ImRect_GetSize"][1]["location"] = "imgui_internal:526" defs["ImRect_GetSize"][1]["nonUDT"] = 1 defs["ImRect_GetSize"][1]["ov_cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["ret"] = "void" @@ -9126,7 +9366,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:523" +defs["ImRect_GetTL"][1]["location"] = "imgui_internal:530" defs["ImRect_GetTL"][1]["nonUDT"] = 1 defs["ImRect_GetTL"][1]["ov_cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["ret"] = "void" @@ -9148,7 +9388,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:524" +defs["ImRect_GetTR"][1]["location"] = "imgui_internal:531" defs["ImRect_GetTR"][1]["nonUDT"] = 1 defs["ImRect_GetTR"][1]["ov_cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["ret"] = "void" @@ -9167,7 +9407,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:520" +defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:527" defs["ImRect_GetWidth"][1]["ov_cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["ret"] = "float" defs["ImRect_GetWidth"][1]["signature"] = "()const" @@ -9183,7 +9423,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:513" +defs["ImRect_ImRect"][1]["location"] = "imgui_internal:520" defs["ImRect_ImRect"][1]["ov_cimguiname"] = "ImRect_ImRect_Nil" defs["ImRect_ImRect"][1]["signature"] = "()" defs["ImRect_ImRect"][1]["stname"] = "ImRect" @@ -9202,7 +9442,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:514" +defs["ImRect_ImRect"][2]["location"] = "imgui_internal:521" defs["ImRect_ImRect"][2]["ov_cimguiname"] = "ImRect_ImRect_Vec2" defs["ImRect_ImRect"][2]["signature"] = "(const ImVec2,const ImVec2)" defs["ImRect_ImRect"][2]["stname"] = "ImRect" @@ -9218,7 +9458,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:515" +defs["ImRect_ImRect"][3]["location"] = "imgui_internal:522" defs["ImRect_ImRect"][3]["ov_cimguiname"] = "ImRect_ImRect_Vec4" defs["ImRect_ImRect"][3]["signature"] = "(const ImVec4)" defs["ImRect_ImRect"][3]["stname"] = "ImRect" @@ -9243,7 +9483,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:516" +defs["ImRect_ImRect"][4]["location"] = "imgui_internal:523" defs["ImRect_ImRect"][4]["ov_cimguiname"] = "ImRect_ImRect_Float" defs["ImRect_ImRect"][4]["signature"] = "(float,float,float,float)" defs["ImRect_ImRect"][4]["stname"] = "ImRect" @@ -9263,7 +9503,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:540" +defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:547" defs["ImRect_IsInverted"][1]["ov_cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["ret"] = "bool" defs["ImRect_IsInverted"][1]["signature"] = "()const" @@ -9284,7 +9524,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:529" +defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:536" defs["ImRect_Overlaps"][1]["ov_cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["ret"] = "bool" defs["ImRect_Overlaps"][1]["signature"] = "(const ImRect)const" @@ -9305,7 +9545,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:541" +defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:548" defs["ImRect_ToVec4"][1]["nonUDT"] = 1 defs["ImRect_ToVec4"][1]["ov_cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["ret"] = "void" @@ -9327,7 +9567,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:534" +defs["ImRect_Translate"][1]["location"] = "imgui_internal:541" defs["ImRect_Translate"][1]["ov_cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["ret"] = "void" defs["ImRect_Translate"][1]["signature"] = "(const ImVec2)" @@ -9348,7 +9588,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:535" +defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:542" defs["ImRect_TranslateX"][1]["ov_cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["ret"] = "void" defs["ImRect_TranslateX"][1]["signature"] = "(float)" @@ -9369,7 +9609,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:536" +defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:543" defs["ImRect_TranslateY"][1]["ov_cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["ret"] = "void" defs["ImRect_TranslateY"][1]["signature"] = "(float)" @@ -9403,7 +9643,7 @@ defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["call_args"] = "()" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["defaults"] = {} defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["funcname"] = "GetArenaSizeInBytes" -defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:633" +defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:640" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ov_cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ret"] = "int" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["signature"] = "()" @@ -9425,7 +9665,7 @@ defs["ImSpanAllocator_GetSpanPtrBegin"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrBegin"][1]["funcname"] = "GetSpanPtrBegin" -defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:635" +defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:642" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["signature"] = "(int)" @@ -9447,7 +9687,7 @@ defs["ImSpanAllocator_GetSpanPtrEnd"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrEnd"][1]["funcname"] = "GetSpanPtrEnd" -defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:636" +defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:643" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["signature"] = "(int)" @@ -9464,7 +9704,7 @@ defs["ImSpanAllocator_ImSpanAllocator"][1]["cimguiname"] = "ImSpanAllocator_ImSp defs["ImSpanAllocator_ImSpanAllocator"][1]["constructor"] = true defs["ImSpanAllocator_ImSpanAllocator"][1]["defaults"] = {} defs["ImSpanAllocator_ImSpanAllocator"][1]["funcname"] = "ImSpanAllocator" -defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:631" +defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:638" defs["ImSpanAllocator_ImSpanAllocator"][1]["ov_cimguiname"] = "ImSpanAllocator_ImSpanAllocator" defs["ImSpanAllocator_ImSpanAllocator"][1]["signature"] = "()" defs["ImSpanAllocator_ImSpanAllocator"][1]["stname"] = "ImSpanAllocator" @@ -9492,7 +9732,7 @@ defs["ImSpanAllocator_Reserve"][1]["cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["defaults"] = {} defs["ImSpanAllocator_Reserve"][1]["defaults"]["a"] = "4" defs["ImSpanAllocator_Reserve"][1]["funcname"] = "Reserve" -defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:632" +defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:639" defs["ImSpanAllocator_Reserve"][1]["ov_cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["ret"] = "void" defs["ImSpanAllocator_Reserve"][1]["signature"] = "(int,size_t,int)" @@ -9514,7 +9754,7 @@ defs["ImSpanAllocator_SetArenaBasePtr"][1]["call_args"] = "(base_ptr)" defs["ImSpanAllocator_SetArenaBasePtr"][1]["cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["defaults"] = {} defs["ImSpanAllocator_SetArenaBasePtr"][1]["funcname"] = "SetArenaBasePtr" -defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:634" +defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:641" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ov_cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ret"] = "void" defs["ImSpanAllocator_SetArenaBasePtr"][1]["signature"] = "(void*)" @@ -9548,7 +9788,7 @@ defs["ImSpan_ImSpan"][1]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][1]["constructor"] = true defs["ImSpan_ImSpan"][1]["defaults"] = {} defs["ImSpan_ImSpan"][1]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:599" +defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:606" defs["ImSpan_ImSpan"][1]["ov_cimguiname"] = "ImSpan_ImSpan_Nil" defs["ImSpan_ImSpan"][1]["signature"] = "()" defs["ImSpan_ImSpan"][1]["stname"] = "ImSpan" @@ -9568,7 +9808,7 @@ defs["ImSpan_ImSpan"][2]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][2]["constructor"] = true defs["ImSpan_ImSpan"][2]["defaults"] = {} defs["ImSpan_ImSpan"][2]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:600" +defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:607" defs["ImSpan_ImSpan"][2]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrInt" defs["ImSpan_ImSpan"][2]["signature"] = "(T*,int)" defs["ImSpan_ImSpan"][2]["stname"] = "ImSpan" @@ -9588,7 +9828,7 @@ defs["ImSpan_ImSpan"][3]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][3]["constructor"] = true defs["ImSpan_ImSpan"][3]["defaults"] = {} defs["ImSpan_ImSpan"][3]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:601" +defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:608" defs["ImSpan_ImSpan"][3]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrTPtr" defs["ImSpan_ImSpan"][3]["signature"] = "(T*,T*)" defs["ImSpan_ImSpan"][3]["stname"] = "ImSpan" @@ -9608,7 +9848,7 @@ defs["ImSpan_begin"][1]["call_args"] = "()" defs["ImSpan_begin"][1]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][1]["defaults"] = {} defs["ImSpan_begin"][1]["funcname"] = "begin" -defs["ImSpan_begin"][1]["location"] = "imgui_internal:610" +defs["ImSpan_begin"][1]["location"] = "imgui_internal:617" defs["ImSpan_begin"][1]["ov_cimguiname"] = "ImSpan_begin_Nil" defs["ImSpan_begin"][1]["ret"] = "T*" defs["ImSpan_begin"][1]["signature"] = "()" @@ -9625,7 +9865,7 @@ defs["ImSpan_begin"][2]["call_args"] = "()" defs["ImSpan_begin"][2]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][2]["defaults"] = {} defs["ImSpan_begin"][2]["funcname"] = "begin" -defs["ImSpan_begin"][2]["location"] = "imgui_internal:611" +defs["ImSpan_begin"][2]["location"] = "imgui_internal:618" defs["ImSpan_begin"][2]["ov_cimguiname"] = "ImSpan_begin__const" defs["ImSpan_begin"][2]["ret"] = "const T*" defs["ImSpan_begin"][2]["signature"] = "()const" @@ -9662,7 +9902,7 @@ defs["ImSpan_end"][1]["call_args"] = "()" defs["ImSpan_end"][1]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][1]["defaults"] = {} defs["ImSpan_end"][1]["funcname"] = "end" -defs["ImSpan_end"][1]["location"] = "imgui_internal:612" +defs["ImSpan_end"][1]["location"] = "imgui_internal:619" defs["ImSpan_end"][1]["ov_cimguiname"] = "ImSpan_end_Nil" defs["ImSpan_end"][1]["ret"] = "T*" defs["ImSpan_end"][1]["signature"] = "()" @@ -9679,7 +9919,7 @@ defs["ImSpan_end"][2]["call_args"] = "()" defs["ImSpan_end"][2]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][2]["defaults"] = {} defs["ImSpan_end"][2]["funcname"] = "end" -defs["ImSpan_end"][2]["location"] = "imgui_internal:613" +defs["ImSpan_end"][2]["location"] = "imgui_internal:620" defs["ImSpan_end"][2]["ov_cimguiname"] = "ImSpan_end__const" defs["ImSpan_end"][2]["ret"] = "const T*" defs["ImSpan_end"][2]["signature"] = "()const" @@ -9702,7 +9942,7 @@ defs["ImSpan_index_from_ptr"][1]["call_args"] = "(it)" defs["ImSpan_index_from_ptr"][1]["cimguiname"] = "ImSpan_index_from_ptr" defs["ImSpan_index_from_ptr"][1]["defaults"] = {} defs["ImSpan_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:616" +defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:623" defs["ImSpan_index_from_ptr"][1]["ov_cimguiname"] = "ImSpan_index_from_ptr" defs["ImSpan_index_from_ptr"][1]["ret"] = "int" defs["ImSpan_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -9727,7 +9967,7 @@ defs["ImSpan_set"][1]["call_args"] = "(data,size)" defs["ImSpan_set"][1]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][1]["defaults"] = {} defs["ImSpan_set"][1]["funcname"] = "set" -defs["ImSpan_set"][1]["location"] = "imgui_internal:603" +defs["ImSpan_set"][1]["location"] = "imgui_internal:610" defs["ImSpan_set"][1]["ov_cimguiname"] = "ImSpan_set_Int" defs["ImSpan_set"][1]["ret"] = "void" defs["ImSpan_set"][1]["signature"] = "(T*,int)" @@ -9750,7 +9990,7 @@ defs["ImSpan_set"][2]["call_args"] = "(data,data_end)" defs["ImSpan_set"][2]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][2]["defaults"] = {} defs["ImSpan_set"][2]["funcname"] = "set" -defs["ImSpan_set"][2]["location"] = "imgui_internal:604" +defs["ImSpan_set"][2]["location"] = "imgui_internal:611" defs["ImSpan_set"][2]["ov_cimguiname"] = "ImSpan_set_TPtr" defs["ImSpan_set"][2]["ret"] = "void" defs["ImSpan_set"][2]["signature"] = "(T*,T*)" @@ -9770,7 +10010,7 @@ defs["ImSpan_size"][1]["call_args"] = "()" defs["ImSpan_size"][1]["cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["defaults"] = {} defs["ImSpan_size"][1]["funcname"] = "size" -defs["ImSpan_size"][1]["location"] = "imgui_internal:605" +defs["ImSpan_size"][1]["location"] = "imgui_internal:612" defs["ImSpan_size"][1]["ov_cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["ret"] = "int" defs["ImSpan_size"][1]["signature"] = "()const" @@ -9789,7 +10029,7 @@ defs["ImSpan_size_in_bytes"][1]["call_args"] = "()" defs["ImSpan_size_in_bytes"][1]["cimguiname"] = "ImSpan_size_in_bytes" defs["ImSpan_size_in_bytes"][1]["defaults"] = {} defs["ImSpan_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:606" +defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:613" defs["ImSpan_size_in_bytes"][1]["ov_cimguiname"] = "ImSpan_size_in_bytes" defs["ImSpan_size_in_bytes"][1]["ret"] = "int" defs["ImSpan_size_in_bytes"][1]["signature"] = "()const" @@ -9806,7 +10046,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:493" +defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:500" defs["ImVec1_ImVec1"][1]["ov_cimguiname"] = "ImVec1_ImVec1_Nil" defs["ImVec1_ImVec1"][1]["signature"] = "()" defs["ImVec1_ImVec1"][1]["stname"] = "ImVec1" @@ -9822,7 +10062,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:494" +defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:501" defs["ImVec1_ImVec1"][2]["ov_cimguiname"] = "ImVec1_ImVec1_Float" defs["ImVec1_ImVec1"][2]["signature"] = "(float)" defs["ImVec1_ImVec1"][2]["stname"] = "ImVec1" @@ -9854,7 +10094,7 @@ defs["ImVec2_ImVec2"][1]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][1]["constructor"] = true defs["ImVec2_ImVec2"][1]["defaults"] = {} defs["ImVec2_ImVec2"][1]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][1]["location"] = "imgui:258" +defs["ImVec2_ImVec2"][1]["location"] = "imgui:262" defs["ImVec2_ImVec2"][1]["ov_cimguiname"] = "ImVec2_ImVec2_Nil" defs["ImVec2_ImVec2"][1]["signature"] = "()" defs["ImVec2_ImVec2"][1]["stname"] = "ImVec2" @@ -9873,7 +10113,7 @@ defs["ImVec2_ImVec2"][2]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][2]["constructor"] = true defs["ImVec2_ImVec2"][2]["defaults"] = {} defs["ImVec2_ImVec2"][2]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][2]["location"] = "imgui:259" +defs["ImVec2_ImVec2"][2]["location"] = "imgui:263" defs["ImVec2_ImVec2"][2]["ov_cimguiname"] = "ImVec2_ImVec2_Float" defs["ImVec2_ImVec2"][2]["signature"] = "(float,float)" defs["ImVec2_ImVec2"][2]["stname"] = "ImVec2" @@ -9905,7 +10145,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:501" +defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:508" defs["ImVec2ih_ImVec2ih"][1]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Nil" defs["ImVec2ih_ImVec2ih"][1]["signature"] = "()" defs["ImVec2ih_ImVec2ih"][1]["stname"] = "ImVec2ih" @@ -9924,7 +10164,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:502" +defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:509" defs["ImVec2ih_ImVec2ih"][2]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_short" defs["ImVec2ih_ImVec2ih"][2]["signature"] = "(short,short)" defs["ImVec2ih_ImVec2ih"][2]["stname"] = "ImVec2ih" @@ -9940,7 +10180,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:503" +defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:510" defs["ImVec2ih_ImVec2ih"][3]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Vec2" defs["ImVec2ih_ImVec2ih"][3]["signature"] = "(const ImVec2)" defs["ImVec2ih_ImVec2ih"][3]["stname"] = "ImVec2ih" @@ -9973,7 +10213,7 @@ defs["ImVec4_ImVec4"][1]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][1]["constructor"] = true defs["ImVec4_ImVec4"][1]["defaults"] = {} defs["ImVec4_ImVec4"][1]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][1]["location"] = "imgui:271" +defs["ImVec4_ImVec4"][1]["location"] = "imgui:275" defs["ImVec4_ImVec4"][1]["ov_cimguiname"] = "ImVec4_ImVec4_Nil" defs["ImVec4_ImVec4"][1]["signature"] = "()" defs["ImVec4_ImVec4"][1]["stname"] = "ImVec4" @@ -9998,7 +10238,7 @@ defs["ImVec4_ImVec4"][2]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][2]["constructor"] = true defs["ImVec4_ImVec4"][2]["defaults"] = {} defs["ImVec4_ImVec4"][2]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][2]["location"] = "imgui:272" +defs["ImVec4_ImVec4"][2]["location"] = "imgui:276" defs["ImVec4_ImVec4"][2]["ov_cimguiname"] = "ImVec4_ImVec4_Float" defs["ImVec4_ImVec4"][2]["signature"] = "(float,float,float,float)" defs["ImVec4_ImVec4"][2]["stname"] = "ImVec4" @@ -10030,7 +10270,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:1859" +defs["ImVector_ImVector"][1]["location"] = "imgui:1850" defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVector_Nil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -10047,7 +10287,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:1860" +defs["ImVector_ImVector"][2]["location"] = "imgui:1851" defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVector_Vector_T_" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_T )" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -10069,7 +10309,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:1886" +defs["ImVector__grow_capacity"][1]["location"] = "imgui:1877" 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" @@ -10088,7 +10328,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:1882" +defs["ImVector_back"][1]["location"] = "imgui:1873" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_back_Nil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -10106,7 +10346,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:1883" +defs["ImVector_back"][2]["location"] = "imgui:1874" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back__const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -10127,7 +10367,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:1876" +defs["ImVector_begin"][1]["location"] = "imgui:1867" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin_Nil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -10144,7 +10384,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:1877" +defs["ImVector_begin"][2]["location"] = "imgui:1868" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin__const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -10164,7 +10404,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:1872" +defs["ImVector_capacity"][1]["location"] = "imgui:1863" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -10183,7 +10423,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:1864" +defs["ImVector_clear"][1]["location"] = "imgui:1855" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -10202,7 +10442,7 @@ defs["ImVector_clear_delete"][1]["call_args"] = "()" defs["ImVector_clear_delete"][1]["cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["defaults"] = {} defs["ImVector_clear_delete"][1]["funcname"] = "clear_delete" -defs["ImVector_clear_delete"][1]["location"] = "imgui:1865" +defs["ImVector_clear_delete"][1]["location"] = "imgui:1856" defs["ImVector_clear_delete"][1]["ov_cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["ret"] = "void" defs["ImVector_clear_delete"][1]["signature"] = "()" @@ -10221,7 +10461,7 @@ defs["ImVector_clear_destruct"][1]["call_args"] = "()" defs["ImVector_clear_destruct"][1]["cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["defaults"] = {} defs["ImVector_clear_destruct"][1]["funcname"] = "clear_destruct" -defs["ImVector_clear_destruct"][1]["location"] = "imgui:1866" +defs["ImVector_clear_destruct"][1]["location"] = "imgui:1857" defs["ImVector_clear_destruct"][1]["ov_cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["ret"] = "void" defs["ImVector_clear_destruct"][1]["signature"] = "()" @@ -10243,7 +10483,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:1901" +defs["ImVector_contains"][1]["location"] = "imgui:1892" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -10261,7 +10501,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:1862" +defs["ImVector_destroy"][1]["location"] = "imgui:1853" defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" @@ -10281,7 +10521,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:1868" +defs["ImVector_empty"][1]["location"] = "imgui:1859" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -10300,7 +10540,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:1878" +defs["ImVector_end"][1]["location"] = "imgui:1869" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end_Nil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -10317,7 +10557,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:1879" +defs["ImVector_end"][2]["location"] = "imgui:1870" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end__const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -10340,7 +10580,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:1897" +defs["ImVector_erase"][1]["location"] = "imgui:1888" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase_Nil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -10363,7 +10603,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:1898" +defs["ImVector_erase"][2]["location"] = "imgui:1889" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_erase_TPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -10386,7 +10626,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:1899" +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:1890" 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*)" @@ -10408,7 +10648,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:1902" +defs["ImVector_find"][1]["location"] = "imgui:1893" defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_find_Nil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -10428,7 +10668,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:1903" +defs["ImVector_find"][2]["location"] = "imgui:1894" defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find__const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -10451,7 +10691,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:1904" +defs["ImVector_find_erase"][1]["location"] = "imgui:1895" 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)" @@ -10473,7 +10713,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:1905" +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:1896" 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)" @@ -10492,7 +10732,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:1880" +defs["ImVector_front"][1]["location"] = "imgui:1871" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_front_Nil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -10510,7 +10750,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:1881" +defs["ImVector_front"][2]["location"] = "imgui:1872" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front__const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -10534,7 +10774,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:1906" +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:1897" 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" @@ -10559,7 +10799,7 @@ defs["ImVector_insert"][1]["call_args"] = "(it,v)" defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" -defs["ImVector_insert"][1]["location"] = "imgui:1900" +defs["ImVector_insert"][1]["location"] = "imgui:1891" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" @@ -10578,7 +10818,7 @@ defs["ImVector_max_size"][1]["call_args"] = "()" defs["ImVector_max_size"][1]["cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["defaults"] = {} defs["ImVector_max_size"][1]["funcname"] = "max_size" -defs["ImVector_max_size"][1]["location"] = "imgui:1871" +defs["ImVector_max_size"][1]["location"] = "imgui:1862" defs["ImVector_max_size"][1]["ov_cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["ret"] = "int" defs["ImVector_max_size"][1]["signature"] = "()const" @@ -10597,7 +10837,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:1895" +defs["ImVector_pop_back"][1]["location"] = "imgui:1886" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -10619,7 +10859,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:1894" +defs["ImVector_push_back"][1]["location"] = "imgui:1885" 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)" @@ -10641,7 +10881,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:1896" +defs["ImVector_push_front"][1]["location"] = "imgui:1887" 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)" @@ -10663,7 +10903,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:1890" +defs["ImVector_reserve"][1]["location"] = "imgui:1881" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -10685,7 +10925,7 @@ defs["ImVector_reserve_discard"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve_discard"][1]["cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["defaults"] = {} defs["ImVector_reserve_discard"][1]["funcname"] = "reserve_discard" -defs["ImVector_reserve_discard"][1]["location"] = "imgui:1891" +defs["ImVector_reserve_discard"][1]["location"] = "imgui:1882" defs["ImVector_reserve_discard"][1]["ov_cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["ret"] = "void" defs["ImVector_reserve_discard"][1]["signature"] = "(int)" @@ -10707,7 +10947,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:1887" +defs["ImVector_resize"][1]["location"] = "imgui:1878" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize_Nil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -10730,7 +10970,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:1888" +defs["ImVector_resize"][2]["location"] = "imgui:1879" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resize_T" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -10753,7 +10993,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:1889" +defs["ImVector_shrink"][1]["location"] = "imgui:1880" defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -10772,7 +11012,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:1869" +defs["ImVector_size"][1]["location"] = "imgui:1860" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -10791,7 +11031,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:1870" +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:1861" 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" @@ -10814,7 +11054,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:1884" +defs["ImVector_swap"][1]["location"] = "imgui:1875" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" defs["ImVector_swap"][1]["signature"] = "(ImVector_T *)" @@ -10837,7 +11077,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:831" +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:841" defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -10856,7 +11096,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:2920" +defs["igActivateItem"][1]["location"] = "imgui_internal:3053" defs["igActivateItem"][1]["namespace"] = "ImGui" defs["igActivateItem"][1]["ov_cimguiname"] = "igActivateItem" defs["igActivateItem"][1]["ret"] = "void" @@ -10878,7 +11118,7 @@ defs["igAddContextHook"][1]["call_args"] = "(context,hook)" defs["igAddContextHook"][1]["cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["defaults"] = {} defs["igAddContextHook"][1]["funcname"] = "AddContextHook" -defs["igAddContextHook"][1]["location"] = "imgui_internal:2791" +defs["igAddContextHook"][1]["location"] = "imgui_internal:2940" defs["igAddContextHook"][1]["namespace"] = "ImGui" defs["igAddContextHook"][1]["ov_cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["ret"] = "ImGuiID" @@ -10897,7 +11137,7 @@ defs["igAddSettingsHandler"][1]["call_args"] = "(handler)" defs["igAddSettingsHandler"][1]["cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["defaults"] = {} defs["igAddSettingsHandler"][1]["funcname"] = "AddSettingsHandler" -defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:2811" +defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:2960" defs["igAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igAddSettingsHandler"][1]["ov_cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["ret"] = "void" @@ -10913,7 +11153,7 @@ defs["igAlignTextToFramePadding"][1]["call_args"] = "()" defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" -defs["igAlignTextToFramePadding"][1]["location"] = "imgui:458" +defs["igAlignTextToFramePadding"][1]["location"] = "imgui:465" defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" @@ -10935,7 +11175,7 @@ defs["igArrowButton"][1]["call_args"] = "(str_id,dir)" defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" -defs["igArrowButton"][1]["location"] = "imgui:505" +defs["igArrowButton"][1]["location"] = "imgui:512" defs["igArrowButton"][1]["namespace"] = "ImGui" defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" @@ -10964,7 +11204,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:3118" +defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3311" defs["igArrowButtonEx"][1]["namespace"] = "ImGui" defs["igArrowButtonEx"][1]["ov_cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["ret"] = "bool" @@ -10991,7 +11231,7 @@ defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" defs["igBegin"][1]["defaults"]["p_open"] = "NULL" defs["igBegin"][1]["funcname"] = "Begin" -defs["igBegin"][1]["location"] = "imgui:332" +defs["igBegin"][1]["location"] = "imgui:336" defs["igBegin"][1]["namespace"] = "ImGui" defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" @@ -11022,7 +11262,7 @@ defs["igBeginChild"][1]["defaults"]["border"] = "false" defs["igBeginChild"][1]["defaults"]["flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][1]["funcname"] = "BeginChild" -defs["igBeginChild"][1]["location"] = "imgui:343" +defs["igBeginChild"][1]["location"] = "imgui:347" defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChild_Str" defs["igBeginChild"][1]["ret"] = "bool" @@ -11051,7 +11291,7 @@ defs["igBeginChild"][2]["defaults"]["border"] = "false" defs["igBeginChild"][2]["defaults"]["flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][2]["funcname"] = "BeginChild" -defs["igBeginChild"][2]["location"] = "imgui:344" +defs["igBeginChild"][2]["location"] = "imgui:348" defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChild_ID" defs["igBeginChild"][2]["ret"] = "bool" @@ -11083,7 +11323,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:2882" +defs["igBeginChildEx"][1]["location"] = "imgui_internal:3019" defs["igBeginChildEx"][1]["namespace"] = "ImGui" defs["igBeginChildEx"][1]["ov_cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["ret"] = "bool" @@ -11109,7 +11349,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:894" +defs["igBeginChildFrame"][1]["location"] = "imgui:904" defs["igBeginChildFrame"][1]["namespace"] = "ImGui" defs["igBeginChildFrame"][1]["ov_cimguiname"] = "igBeginChildFrame" defs["igBeginChildFrame"][1]["ret"] = "bool" @@ -11135,7 +11375,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:3011" +defs["igBeginColumns"][1]["location"] = "imgui_internal:3202" defs["igBeginColumns"][1]["namespace"] = "ImGui" defs["igBeginColumns"][1]["ov_cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["ret"] = "void" @@ -11161,7 +11401,7 @@ defs["igBeginCombo"][1]["cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" -defs["igBeginCombo"][1]["location"] = "imgui:519" +defs["igBeginCombo"][1]["location"] = "imgui:529" defs["igBeginCombo"][1]["namespace"] = "ImGui" defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" @@ -11186,7 +11426,7 @@ defs["igBeginComboPopup"][1]["call_args"] = "(popup_id,bb,flags)" defs["igBeginComboPopup"][1]["cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["defaults"] = {} defs["igBeginComboPopup"][1]["funcname"] = "BeginComboPopup" -defs["igBeginComboPopup"][1]["location"] = "imgui_internal:2902" +defs["igBeginComboPopup"][1]["location"] = "imgui_internal:3039" defs["igBeginComboPopup"][1]["namespace"] = "ImGui" defs["igBeginComboPopup"][1]["ov_cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["ret"] = "bool" @@ -11202,7 +11442,7 @@ defs["igBeginComboPreview"][1]["call_args"] = "()" defs["igBeginComboPreview"][1]["cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["defaults"] = {} defs["igBeginComboPreview"][1]["funcname"] = "BeginComboPreview" -defs["igBeginComboPreview"][1]["location"] = "imgui_internal:2903" +defs["igBeginComboPreview"][1]["location"] = "imgui_internal:3040" defs["igBeginComboPreview"][1]["namespace"] = "ImGui" defs["igBeginComboPreview"][1]["ov_cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["ret"] = "bool" @@ -11222,7 +11462,7 @@ defs["igBeginDisabled"][1]["cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["defaults"] = {} defs["igBeginDisabled"][1]["defaults"]["disabled"] = "true" defs["igBeginDisabled"][1]["funcname"] = "BeginDisabled" -defs["igBeginDisabled"][1]["location"] = "imgui:839" +defs["igBeginDisabled"][1]["location"] = "imgui:849" defs["igBeginDisabled"][1]["namespace"] = "ImGui" defs["igBeginDisabled"][1]["ov_cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["ret"] = "void" @@ -11241,7 +11481,7 @@ defs["igBeginDockableDragDropSource"][1]["call_args"] = "(window)" defs["igBeginDockableDragDropSource"][1]["cimguiname"] = "igBeginDockableDragDropSource" defs["igBeginDockableDragDropSource"][1]["defaults"] = {} defs["igBeginDockableDragDropSource"][1]["funcname"] = "BeginDockableDragDropSource" -defs["igBeginDockableDragDropSource"][1]["location"] = "imgui_internal:2975" +defs["igBeginDockableDragDropSource"][1]["location"] = "imgui_internal:3153" defs["igBeginDockableDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDockableDragDropSource"][1]["ov_cimguiname"] = "igBeginDockableDragDropSource" defs["igBeginDockableDragDropSource"][1]["ret"] = "void" @@ -11260,7 +11500,7 @@ defs["igBeginDockableDragDropTarget"][1]["call_args"] = "(window)" defs["igBeginDockableDragDropTarget"][1]["cimguiname"] = "igBeginDockableDragDropTarget" defs["igBeginDockableDragDropTarget"][1]["defaults"] = {} defs["igBeginDockableDragDropTarget"][1]["funcname"] = "BeginDockableDragDropTarget" -defs["igBeginDockableDragDropTarget"][1]["location"] = "imgui_internal:2976" +defs["igBeginDockableDragDropTarget"][1]["location"] = "imgui_internal:3154" defs["igBeginDockableDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDockableDragDropTarget"][1]["ov_cimguiname"] = "igBeginDockableDragDropTarget" defs["igBeginDockableDragDropTarget"][1]["ret"] = "void" @@ -11282,7 +11522,7 @@ defs["igBeginDocked"][1]["call_args"] = "(window,p_open)" defs["igBeginDocked"][1]["cimguiname"] = "igBeginDocked" defs["igBeginDocked"][1]["defaults"] = {} defs["igBeginDocked"][1]["funcname"] = "BeginDocked" -defs["igBeginDocked"][1]["location"] = "imgui_internal:2974" +defs["igBeginDocked"][1]["location"] = "imgui_internal:3152" defs["igBeginDocked"][1]["namespace"] = "ImGui" defs["igBeginDocked"][1]["ov_cimguiname"] = "igBeginDocked" defs["igBeginDocked"][1]["ret"] = "void" @@ -11302,7 +11542,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:827" +defs["igBeginDragDropSource"][1]["location"] = "imgui:837" defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -11318,7 +11558,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:830" +defs["igBeginDragDropTarget"][1]["location"] = "imgui:840" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -11340,7 +11580,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:3005" +defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:3195" defs["igBeginDragDropTargetCustom"][1]["namespace"] = "ImGui" defs["igBeginDragDropTargetCustom"][1]["ov_cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["ret"] = "bool" @@ -11356,7 +11596,7 @@ defs["igBeginGroup"][1]["call_args"] = "()" defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" -defs["igBeginGroup"][1]["location"] = "imgui:447" +defs["igBeginGroup"][1]["location"] = "imgui:454" defs["igBeginGroup"][1]["namespace"] = "ImGui" defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" @@ -11379,7 +11619,7 @@ defs["igBeginListBox"][1]["cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["defaults"] = {} defs["igBeginListBox"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginListBox"][1]["funcname"] = "BeginListBox" -defs["igBeginListBox"][1]["location"] = "imgui:631" +defs["igBeginListBox"][1]["location"] = "imgui:641" defs["igBeginListBox"][1]["namespace"] = "ImGui" defs["igBeginListBox"][1]["ov_cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["ret"] = "bool" @@ -11395,7 +11635,7 @@ defs["igBeginMainMenuBar"][1]["call_args"] = "()" defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" -defs["igBeginMainMenuBar"][1]["location"] = "imgui:657" +defs["igBeginMainMenuBar"][1]["location"] = "imgui:667" defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" @@ -11418,7 +11658,7 @@ defs["igBeginMenu"][1]["cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" -defs["igBeginMenu"][1]["location"] = "imgui:659" +defs["igBeginMenu"][1]["location"] = "imgui:669" defs["igBeginMenu"][1]["namespace"] = "ImGui" defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" @@ -11434,7 +11674,7 @@ defs["igBeginMenuBar"][1]["call_args"] = "()" defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" -defs["igBeginMenuBar"][1]["location"] = "imgui:655" +defs["igBeginMenuBar"][1]["location"] = "imgui:665" defs["igBeginMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" @@ -11460,7 +11700,7 @@ defs["igBeginMenuEx"][1]["cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["defaults"] = {} defs["igBeginMenuEx"][1]["defaults"]["enabled"] = "true" defs["igBeginMenuEx"][1]["funcname"] = "BeginMenuEx" -defs["igBeginMenuEx"][1]["location"] = "imgui_internal:2898" +defs["igBeginMenuEx"][1]["location"] = "imgui_internal:3035" defs["igBeginMenuEx"][1]["namespace"] = "ImGui" defs["igBeginMenuEx"][1]["ov_cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["ret"] = "bool" @@ -11483,7 +11723,7 @@ defs["igBeginPopup"][1]["cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" -defs["igBeginPopup"][1]["location"] = "imgui:683" +defs["igBeginPopup"][1]["location"] = "imgui:693" defs["igBeginPopup"][1]["namespace"] = "ImGui" defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" @@ -11507,7 +11747,7 @@ defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" -defs["igBeginPopupContextItem"][1]["location"] = "imgui:705" +defs["igBeginPopupContextItem"][1]["location"] = "imgui:715" defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" @@ -11531,7 +11771,7 @@ defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" -defs["igBeginPopupContextVoid"][1]["location"] = "imgui:707" +defs["igBeginPopupContextVoid"][1]["location"] = "imgui:717" defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" @@ -11555,7 +11795,7 @@ defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" -defs["igBeginPopupContextWindow"][1]["location"] = "imgui:706" +defs["igBeginPopupContextWindow"][1]["location"] = "imgui:716" defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" @@ -11577,7 +11817,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:2888" +defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3025" defs["igBeginPopupEx"][1]["namespace"] = "ImGui" defs["igBeginPopupEx"][1]["ov_cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["ret"] = "bool" @@ -11604,7 +11844,7 @@ defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "NULL" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" -defs["igBeginPopupModal"][1]["location"] = "imgui:684" +defs["igBeginPopupModal"][1]["location"] = "imgui:694" defs["igBeginPopupModal"][1]["namespace"] = "ImGui" defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" @@ -11627,7 +11867,7 @@ defs["igBeginTabBar"][1]["cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" -defs["igBeginTabBar"][1]["location"] = "imgui:785" +defs["igBeginTabBar"][1]["location"] = "imgui:795" defs["igBeginTabBar"][1]["namespace"] = "ImGui" defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" @@ -11655,7 +11895,7 @@ defs["igBeginTabBarEx"][1]["call_args"] = "(tab_bar,bb,flags,dock_node)" defs["igBeginTabBarEx"][1]["cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["defaults"] = {} defs["igBeginTabBarEx"][1]["funcname"] = "BeginTabBarEx" -defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3074" +defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3266" defs["igBeginTabBarEx"][1]["namespace"] = "ImGui" defs["igBeginTabBarEx"][1]["ov_cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["ret"] = "bool" @@ -11682,7 +11922,7 @@ defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" defs["igBeginTabItem"][1]["defaults"]["p_open"] = "NULL" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" -defs["igBeginTabItem"][1]["location"] = "imgui:787" +defs["igBeginTabItem"][1]["location"] = "imgui:797" defs["igBeginTabItem"][1]["namespace"] = "ImGui" defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" @@ -11716,7 +11956,7 @@ defs["igBeginTable"][1]["defaults"]["flags"] = "0" defs["igBeginTable"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTable"][1]["defaults"]["outer_size"] = "ImVec2(0.0f,0.0f)" defs["igBeginTable"][1]["funcname"] = "BeginTable" -defs["igBeginTable"][1]["location"] = "imgui:738" +defs["igBeginTable"][1]["location"] = "imgui:748" defs["igBeginTable"][1]["namespace"] = "ImGui" defs["igBeginTable"][1]["ov_cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["ret"] = "bool" @@ -11753,7 +11993,7 @@ defs["igBeginTableEx"][1]["defaults"]["flags"] = "0" defs["igBeginTableEx"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTableEx"][1]["defaults"]["outer_size"] = "ImVec2(0,0)" defs["igBeginTableEx"][1]["funcname"] = "BeginTableEx" -defs["igBeginTableEx"][1]["location"] = "imgui_internal:3033" +defs["igBeginTableEx"][1]["location"] = "imgui_internal:3224" defs["igBeginTableEx"][1]["namespace"] = "ImGui" defs["igBeginTableEx"][1]["ov_cimguiname"] = "igBeginTableEx" defs["igBeginTableEx"][1]["ret"] = "bool" @@ -11769,7 +12009,7 @@ defs["igBeginTooltip"][1]["call_args"] = "()" defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" -defs["igBeginTooltip"][1]["location"] = "imgui:666" +defs["igBeginTooltip"][1]["location"] = "imgui:676" defs["igBeginTooltip"][1]["namespace"] = "ImGui" defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["ret"] = "void" @@ -11791,7 +12031,7 @@ defs["igBeginTooltipEx"][1]["call_args"] = "(tooltip_flags,extra_window_flags)" defs["igBeginTooltipEx"][1]["cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["defaults"] = {} defs["igBeginTooltipEx"][1]["funcname"] = "BeginTooltipEx" -defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:2889" +defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3026" defs["igBeginTooltipEx"][1]["namespace"] = "ImGui" defs["igBeginTooltipEx"][1]["ov_cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["ret"] = "void" @@ -11822,7 +12062,7 @@ defs["igBeginViewportSideBar"][1]["call_args"] = "(name,viewport,dir,size,window defs["igBeginViewportSideBar"][1]["cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["defaults"] = {} defs["igBeginViewportSideBar"][1]["funcname"] = "BeginViewportSideBar" -defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:2897" +defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:3034" defs["igBeginViewportSideBar"][1]["namespace"] = "ImGui" defs["igBeginViewportSideBar"][1]["ov_cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["ret"] = "bool" @@ -11841,7 +12081,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:2768" +defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:2917" defs["igBringWindowToDisplayBack"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBack"][1]["ov_cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["ret"] = "void" @@ -11863,7 +12103,7 @@ defs["igBringWindowToDisplayBehind"][1]["call_args"] = "(window,above_window)" defs["igBringWindowToDisplayBehind"][1]["cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["defaults"] = {} defs["igBringWindowToDisplayBehind"][1]["funcname"] = "BringWindowToDisplayBehind" -defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:2769" +defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:2918" defs["igBringWindowToDisplayBehind"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBehind"][1]["ov_cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["ret"] = "void" @@ -11882,7 +12122,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:2767" +defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:2916" defs["igBringWindowToDisplayFront"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayFront"][1]["ov_cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["ret"] = "void" @@ -11901,7 +12141,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:2766" +defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:2915" defs["igBringWindowToFocusFront"][1]["namespace"] = "ImGui" defs["igBringWindowToFocusFront"][1]["ov_cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["ret"] = "void" @@ -11917,7 +12157,7 @@ defs["igBullet"][1]["call_args"] = "()" defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" -defs["igBullet"][1]["location"] = "imgui:514" +defs["igBullet"][1]["location"] = "imgui:519" defs["igBullet"][1]["namespace"] = "ImGui" defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" @@ -11940,7 +12180,7 @@ defs["igBulletText"][1]["cimguiname"] = "igBulletText" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" -defs["igBulletText"][1]["location"] = "imgui:496" +defs["igBulletText"][1]["location"] = "imgui:503" defs["igBulletText"][1]["namespace"] = "ImGui" defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" @@ -11962,7 +12202,7 @@ defs["igBulletTextV"][1]["call_args"] = "(fmt,args)" defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" -defs["igBulletTextV"][1]["location"] = "imgui:497" +defs["igBulletTextV"][1]["location"] = "imgui:504" defs["igBulletTextV"][1]["namespace"] = "ImGui" defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" @@ -11985,7 +12225,7 @@ defs["igButton"][1]["cimguiname"] = "igButton" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" -defs["igButton"][1]["location"] = "imgui:502" +defs["igButton"][1]["location"] = "imgui:509" defs["igButton"][1]["namespace"] = "ImGui" defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" @@ -12017,7 +12257,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:3131" +defs["igButtonBehavior"][1]["location"] = "imgui_internal:3324" defs["igButtonBehavior"][1]["namespace"] = "ImGui" defs["igButtonBehavior"][1]["ov_cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["ret"] = "bool" @@ -12044,7 +12284,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:3115" +defs["igButtonEx"][1]["location"] = "imgui_internal:3308" defs["igButtonEx"][1]["namespace"] = "ImGui" defs["igButtonEx"][1]["ov_cimguiname"] = "igButtonEx" defs["igButtonEx"][1]["ret"] = "bool" @@ -12072,7 +12312,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:2853" +defs["igCalcItemSize"][1]["location"] = "imgui_internal:3001" defs["igCalcItemSize"][1]["namespace"] = "ImGui" defs["igCalcItemSize"][1]["nonUDT"] = 1 defs["igCalcItemSize"][1]["ov_cimguiname"] = "igCalcItemSize" @@ -12089,7 +12329,7 @@ defs["igCalcItemWidth"][1]["call_args"] = "()" defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" -defs["igCalcItemWidth"][1]["location"] = "imgui:419" +defs["igCalcItemWidth"][1]["location"] = "imgui:426" defs["igCalcItemWidth"][1]["namespace"] = "ImGui" defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" @@ -12114,7 +12354,7 @@ defs["igCalcRoundingFlagsForRectInRect"][1]["call_args"] = "(r_in,r_outer,thresh defs["igCalcRoundingFlagsForRectInRect"][1]["cimguiname"] = "igCalcRoundingFlagsForRectInRect" defs["igCalcRoundingFlagsForRectInRect"][1]["defaults"] = {} defs["igCalcRoundingFlagsForRectInRect"][1]["funcname"] = "CalcRoundingFlagsForRectInRect" -defs["igCalcRoundingFlagsForRectInRect"][1]["location"] = "imgui_internal:3111" +defs["igCalcRoundingFlagsForRectInRect"][1]["location"] = "imgui_internal:3304" defs["igCalcRoundingFlagsForRectInRect"][1]["namespace"] = "ImGui" defs["igCalcRoundingFlagsForRectInRect"][1]["ov_cimguiname"] = "igCalcRoundingFlagsForRectInRect" defs["igCalcRoundingFlagsForRectInRect"][1]["ret"] = "ImDrawFlags" @@ -12148,7 +12388,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:898" +defs["igCalcTextSize"][1]["location"] = "imgui:908" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -12177,7 +12417,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:2919" +defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:3079" defs["igCalcTypematicRepeatAmount"][1]["namespace"] = "ImGui" defs["igCalcTypematicRepeatAmount"][1]["ov_cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["ret"] = "int" @@ -12199,7 +12439,7 @@ defs["igCalcWindowNextAutoFitSize"][1]["call_args"] = "(window)" defs["igCalcWindowNextAutoFitSize"][1]["cimguiname"] = "igCalcWindowNextAutoFitSize" defs["igCalcWindowNextAutoFitSize"][1]["defaults"] = {} defs["igCalcWindowNextAutoFitSize"][1]["funcname"] = "CalcWindowNextAutoFitSize" -defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:2751" +defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:2900" defs["igCalcWindowNextAutoFitSize"][1]["namespace"] = "ImGui" defs["igCalcWindowNextAutoFitSize"][1]["nonUDT"] = 1 defs["igCalcWindowNextAutoFitSize"][1]["ov_cimguiname"] = "igCalcWindowNextAutoFitSize" @@ -12222,7 +12462,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:2854" +defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:3002" defs["igCalcWrapWidthForPos"][1]["namespace"] = "ImGui" defs["igCalcWrapWidthForPos"][1]["ov_cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["ret"] = "float" @@ -12244,7 +12484,7 @@ defs["igCallContextHooks"][1]["call_args"] = "(context,type)" defs["igCallContextHooks"][1]["cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["defaults"] = {} defs["igCallContextHooks"][1]["funcname"] = "CallContextHooks" -defs["igCallContextHooks"][1]["location"] = "imgui_internal:2793" +defs["igCallContextHooks"][1]["location"] = "imgui_internal:2942" defs["igCallContextHooks"][1]["namespace"] = "ImGui" defs["igCallContextHooks"][1]["ov_cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["ret"] = "void" @@ -12266,7 +12506,7 @@ defs["igCheckbox"][1]["call_args"] = "(label,v)" defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" -defs["igCheckbox"][1]["location"] = "imgui:508" +defs["igCheckbox"][1]["location"] = "imgui:513" defs["igCheckbox"][1]["namespace"] = "ImGui" defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" @@ -12291,7 +12531,7 @@ defs["igCheckboxFlags"][1]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][1]["location"] = "imgui:509" +defs["igCheckboxFlags"][1]["location"] = "imgui:514" defs["igCheckboxFlags"][1]["namespace"] = "ImGui" defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags_IntPtr" defs["igCheckboxFlags"][1]["ret"] = "bool" @@ -12314,7 +12554,7 @@ defs["igCheckboxFlags"][2]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][2]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][2]["defaults"] = {} defs["igCheckboxFlags"][2]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][2]["location"] = "imgui:510" +defs["igCheckboxFlags"][2]["location"] = "imgui:515" defs["igCheckboxFlags"][2]["namespace"] = "ImGui" defs["igCheckboxFlags"][2]["ov_cimguiname"] = "igCheckboxFlags_UintPtr" defs["igCheckboxFlags"][2]["ret"] = "bool" @@ -12337,7 +12577,7 @@ defs["igCheckboxFlags"][3]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][3]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][3]["defaults"] = {} defs["igCheckboxFlags"][3]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3127" +defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3320" defs["igCheckboxFlags"][3]["namespace"] = "ImGui" defs["igCheckboxFlags"][3]["ov_cimguiname"] = "igCheckboxFlags_S64Ptr" defs["igCheckboxFlags"][3]["ret"] = "bool" @@ -12360,7 +12600,7 @@ defs["igCheckboxFlags"][4]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][4]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][4]["defaults"] = {} defs["igCheckboxFlags"][4]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3128" +defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3321" defs["igCheckboxFlags"][4]["namespace"] = "ImGui" defs["igCheckboxFlags"][4]["ov_cimguiname"] = "igCheckboxFlags_U64Ptr" defs["igCheckboxFlags"][4]["ret"] = "bool" @@ -12379,7 +12619,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:2838" +defs["igClearActiveID"][1]["location"] = "imgui_internal:2986" defs["igClearActiveID"][1]["namespace"] = "ImGui" defs["igClearActiveID"][1]["ov_cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["ret"] = "void" @@ -12395,7 +12635,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:3006" +defs["igClearDragDrop"][1]["location"] = "imgui_internal:3196" defs["igClearDragDrop"][1]["namespace"] = "ImGui" defs["igClearDragDrop"][1]["ov_cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["ret"] = "void" @@ -12411,7 +12651,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:2807" +defs["igClearIniSettings"][1]["location"] = "imgui_internal:2956" defs["igClearIniSettings"][1]["namespace"] = "ImGui" defs["igClearIniSettings"][1]["ov_cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["ret"] = "void" @@ -12433,7 +12673,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:3116" +defs["igCloseButton"][1]["location"] = "imgui_internal:3309" defs["igCloseButton"][1]["namespace"] = "ImGui" defs["igCloseButton"][1]["ov_cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["ret"] = "bool" @@ -12449,7 +12689,7 @@ defs["igCloseCurrentPopup"][1]["call_args"] = "()" defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" -defs["igCloseCurrentPopup"][1]["location"] = "imgui:698" +defs["igCloseCurrentPopup"][1]["location"] = "imgui:708" defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" @@ -12471,7 +12711,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:2884" +defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:3021" defs["igClosePopupToLevel"][1]["namespace"] = "ImGui" defs["igClosePopupToLevel"][1]["ov_cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["ret"] = "void" @@ -12487,7 +12727,7 @@ defs["igClosePopupsExceptModals"][1]["call_args"] = "()" defs["igClosePopupsExceptModals"][1]["cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["defaults"] = {} defs["igClosePopupsExceptModals"][1]["funcname"] = "ClosePopupsExceptModals" -defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:2886" +defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:3023" defs["igClosePopupsExceptModals"][1]["namespace"] = "ImGui" defs["igClosePopupsExceptModals"][1]["ov_cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["ret"] = "void" @@ -12509,7 +12749,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:2885" +defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:3022" defs["igClosePopupsOverWindow"][1]["namespace"] = "ImGui" defs["igClosePopupsOverWindow"][1]["ov_cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["ret"] = "void" @@ -12534,7 +12774,7 @@ defs["igCollapseButton"][1]["call_args"] = "(id,pos,dock_node)" defs["igCollapseButton"][1]["cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["defaults"] = {} defs["igCollapseButton"][1]["funcname"] = "CollapseButton" -defs["igCollapseButton"][1]["location"] = "imgui_internal:3117" +defs["igCollapseButton"][1]["location"] = "imgui_internal:3310" defs["igCollapseButton"][1]["namespace"] = "ImGui" defs["igCollapseButton"][1]["ov_cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["ret"] = "bool" @@ -12557,7 +12797,7 @@ defs["igCollapsingHeader"][1]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][1]["location"] = "imgui:615" +defs["igCollapsingHeader"][1]["location"] = "imgui:625" defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeader_TreeNodeFlags" defs["igCollapsingHeader"][1]["ret"] = "bool" @@ -12581,7 +12821,7 @@ defs["igCollapsingHeader"][2]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][2]["location"] = "imgui:616" +defs["igCollapsingHeader"][2]["location"] = "imgui:626" defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeader_BoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" @@ -12612,7 +12852,7 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" -defs["igColorButton"][1]["location"] = "imgui:596" +defs["igColorButton"][1]["location"] = "imgui:606" defs["igColorButton"][1]["namespace"] = "ImGui" defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" @@ -12631,7 +12871,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:902" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:912" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -12668,7 +12908,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:904" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:914" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -12705,7 +12945,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:903" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:913" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -12727,7 +12967,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:901" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:911" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -12754,7 +12994,7 @@ defs["igColorEdit3"][1]["cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" -defs["igColorEdit3"][1]["location"] = "imgui:592" +defs["igColorEdit3"][1]["location"] = "imgui:602" defs["igColorEdit3"][1]["namespace"] = "ImGui" defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" @@ -12780,7 +13020,7 @@ defs["igColorEdit4"][1]["cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" -defs["igColorEdit4"][1]["location"] = "imgui:593" +defs["igColorEdit4"][1]["location"] = "imgui:603" defs["igColorEdit4"][1]["namespace"] = "ImGui" defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" @@ -12802,7 +13042,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:3166" +defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3360" defs["igColorEditOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorEditOptionsPopup"][1]["ov_cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["ret"] = "void" @@ -12828,7 +13068,7 @@ defs["igColorPicker3"][1]["cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" -defs["igColorPicker3"][1]["location"] = "imgui:594" +defs["igColorPicker3"][1]["location"] = "imgui:604" defs["igColorPicker3"][1]["namespace"] = "ImGui" defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" @@ -12858,7 +13098,7 @@ defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" defs["igColorPicker4"][1]["defaults"]["ref_col"] = "NULL" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" -defs["igColorPicker4"][1]["location"] = "imgui:595" +defs["igColorPicker4"][1]["location"] = "imgui:605" defs["igColorPicker4"][1]["namespace"] = "ImGui" defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" @@ -12880,7 +13120,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:3167" +defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3361" defs["igColorPickerOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorPickerOptionsPopup"][1]["ov_cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["ret"] = "void" @@ -12905,7 +13145,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:3165" +defs["igColorTooltip"][1]["location"] = "imgui_internal:3359" defs["igColorTooltip"][1]["namespace"] = "ImGui" defs["igColorTooltip"][1]["ov_cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["ret"] = "void" @@ -12933,7 +13173,7 @@ defs["igColumns"][1]["defaults"]["border"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" defs["igColumns"][1]["defaults"]["id"] = "NULL" defs["igColumns"][1]["funcname"] = "Columns" -defs["igColumns"][1]["location"] = "imgui:774" +defs["igColumns"][1]["location"] = "imgui:784" defs["igColumns"][1]["namespace"] = "ImGui" defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" @@ -12965,7 +13205,7 @@ defs["igCombo"][1]["cimguiname"] = "igCombo" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" -defs["igCombo"][1]["location"] = "imgui:521" +defs["igCombo"][1]["location"] = "imgui:531" defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igCombo_Str_arr" defs["igCombo"][1]["ret"] = "bool" @@ -12992,7 +13232,7 @@ defs["igCombo"][2]["cimguiname"] = "igCombo" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" -defs["igCombo"][2]["location"] = "imgui:522" +defs["igCombo"][2]["location"] = "imgui:532" defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igCombo_Str" defs["igCombo"][2]["ret"] = "bool" @@ -13027,7 +13267,7 @@ defs["igCombo"][3]["cimguiname"] = "igCombo" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" -defs["igCombo"][3]["location"] = "imgui:523" +defs["igCombo"][3]["location"] = "imgui:533" defs["igCombo"][3]["namespace"] = "ImGui" defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnBoolPtr" defs["igCombo"][3]["ret"] = "bool" @@ -13036,6 +13276,25 @@ defs["igCombo"][3]["stname"] = "" defs["igCombo"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char* const[],int,int)"] = defs["igCombo"][1] defs["igCombo"]["(const char*,int*,const char*,int)"] = defs["igCombo"][2] +defs["igConvertSingleModFlagToKey"] = {} +defs["igConvertSingleModFlagToKey"][1] = {} +defs["igConvertSingleModFlagToKey"][1]["args"] = "(ImGuiKey key)" +defs["igConvertSingleModFlagToKey"][1]["argsT"] = {} +defs["igConvertSingleModFlagToKey"][1]["argsT"][1] = {} +defs["igConvertSingleModFlagToKey"][1]["argsT"][1]["name"] = "key" +defs["igConvertSingleModFlagToKey"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igConvertSingleModFlagToKey"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igConvertSingleModFlagToKey"][1]["call_args"] = "(key)" +defs["igConvertSingleModFlagToKey"][1]["cimguiname"] = "igConvertSingleModFlagToKey" +defs["igConvertSingleModFlagToKey"][1]["defaults"] = {} +defs["igConvertSingleModFlagToKey"][1]["funcname"] = "ConvertSingleModFlagToKey" +defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3064" +defs["igConvertSingleModFlagToKey"][1]["namespace"] = "ImGui" +defs["igConvertSingleModFlagToKey"][1]["ov_cimguiname"] = "igConvertSingleModFlagToKey" +defs["igConvertSingleModFlagToKey"][1]["ret"] = "ImGuiKey" +defs["igConvertSingleModFlagToKey"][1]["signature"] = "(ImGuiKey)" +defs["igConvertSingleModFlagToKey"][1]["stname"] = "" +defs["igConvertSingleModFlagToKey"]["(ImGuiKey)"] = defs["igConvertSingleModFlagToKey"][1] defs["igCreateContext"] = {} defs["igCreateContext"][1] = {} defs["igCreateContext"][1]["args"] = "(ImFontAtlas* shared_font_atlas)" @@ -13049,7 +13308,7 @@ defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["defaults"] = {} defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "NULL" defs["igCreateContext"][1]["funcname"] = "CreateContext" -defs["igCreateContext"][1]["location"] = "imgui:290" +defs["igCreateContext"][1]["location"] = "imgui:294" defs["igCreateContext"][1]["namespace"] = "ImGui" defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" @@ -13068,7 +13327,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:2808" +defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:2957" defs["igCreateNewWindowSettings"][1]["namespace"] = "ImGui" defs["igCreateNewWindowSettings"][1]["ov_cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -13096,7 +13355,7 @@ defs["igDataTypeApplyFromText"][1]["call_args"] = "(buf,data_type,p_data,format) defs["igDataTypeApplyFromText"][1]["cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["defaults"] = {} defs["igDataTypeApplyFromText"][1]["funcname"] = "DataTypeApplyFromText" -defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3153" +defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3347" defs["igDataTypeApplyFromText"][1]["namespace"] = "ImGui" defs["igDataTypeApplyFromText"][1]["ov_cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["ret"] = "bool" @@ -13127,7 +13386,7 @@ defs["igDataTypeApplyOp"][1]["call_args"] = "(data_type,op,output,arg_1,arg_2)" defs["igDataTypeApplyOp"][1]["cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["defaults"] = {} defs["igDataTypeApplyOp"][1]["funcname"] = "DataTypeApplyOp" -defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3152" +defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3346" defs["igDataTypeApplyOp"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOp"][1]["ov_cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["ret"] = "void" @@ -13155,7 +13414,7 @@ defs["igDataTypeClamp"][1]["call_args"] = "(data_type,p_data,p_min,p_max)" defs["igDataTypeClamp"][1]["cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["defaults"] = {} defs["igDataTypeClamp"][1]["funcname"] = "DataTypeClamp" -defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3155" +defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3349" defs["igDataTypeClamp"][1]["namespace"] = "ImGui" defs["igDataTypeClamp"][1]["ov_cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["ret"] = "bool" @@ -13180,7 +13439,7 @@ defs["igDataTypeCompare"][1]["call_args"] = "(data_type,arg_1,arg_2)" defs["igDataTypeCompare"][1]["cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["defaults"] = {} defs["igDataTypeCompare"][1]["funcname"] = "DataTypeCompare" -defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3154" +defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3348" defs["igDataTypeCompare"][1]["namespace"] = "ImGui" defs["igDataTypeCompare"][1]["ov_cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["ret"] = "int" @@ -13211,7 +13470,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:3151" +defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3345" defs["igDataTypeFormatString"][1]["namespace"] = "ImGui" defs["igDataTypeFormatString"][1]["ov_cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["ret"] = "int" @@ -13230,7 +13489,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:3150" +defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3344" defs["igDataTypeGetInfo"][1]["namespace"] = "ImGui" defs["igDataTypeGetInfo"][1]["ov_cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["ret"] = "const ImGuiDataTypeInfo*" @@ -13267,7 +13526,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:956" +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:966" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" @@ -13287,7 +13546,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:3188" +defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3386" defs["igDebugDrawItemRect"][1]["namespace"] = "ImGui" defs["igDebugDrawItemRect"][1]["ov_cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["ret"] = "void" @@ -13315,13 +13574,67 @@ defs["igDebugHookIdInfo"][1]["call_args"] = "(id,data_type,data_id,data_id_end)" defs["igDebugHookIdInfo"][1]["cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["defaults"] = {} defs["igDebugHookIdInfo"][1]["funcname"] = "DebugHookIdInfo" -defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3191" +defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3389" defs["igDebugHookIdInfo"][1]["namespace"] = "ImGui" defs["igDebugHookIdInfo"][1]["ov_cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["ret"] = "void" defs["igDebugHookIdInfo"][1]["signature"] = "(ImGuiID,ImGuiDataType,const void*,const void*)" defs["igDebugHookIdInfo"][1]["stname"] = "" defs["igDebugHookIdInfo"]["(ImGuiID,ImGuiDataType,const void*,const void*)"] = defs["igDebugHookIdInfo"][1] +defs["igDebugLocateItem"] = {} +defs["igDebugLocateItem"][1] = {} +defs["igDebugLocateItem"][1]["args"] = "(ImGuiID target_id)" +defs["igDebugLocateItem"][1]["argsT"] = {} +defs["igDebugLocateItem"][1]["argsT"][1] = {} +defs["igDebugLocateItem"][1]["argsT"][1]["name"] = "target_id" +defs["igDebugLocateItem"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDebugLocateItem"][1]["argsoriginal"] = "(ImGuiID target_id)" +defs["igDebugLocateItem"][1]["call_args"] = "(target_id)" +defs["igDebugLocateItem"][1]["cimguiname"] = "igDebugLocateItem" +defs["igDebugLocateItem"][1]["defaults"] = {} +defs["igDebugLocateItem"][1]["funcname"] = "DebugLocateItem" +defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3383" +defs["igDebugLocateItem"][1]["namespace"] = "ImGui" +defs["igDebugLocateItem"][1]["ov_cimguiname"] = "igDebugLocateItem" +defs["igDebugLocateItem"][1]["ret"] = "void" +defs["igDebugLocateItem"][1]["signature"] = "(ImGuiID)" +defs["igDebugLocateItem"][1]["stname"] = "" +defs["igDebugLocateItem"]["(ImGuiID)"] = defs["igDebugLocateItem"][1] +defs["igDebugLocateItemOnHover"] = {} +defs["igDebugLocateItemOnHover"][1] = {} +defs["igDebugLocateItemOnHover"][1]["args"] = "(ImGuiID target_id)" +defs["igDebugLocateItemOnHover"][1]["argsT"] = {} +defs["igDebugLocateItemOnHover"][1]["argsT"][1] = {} +defs["igDebugLocateItemOnHover"][1]["argsT"][1]["name"] = "target_id" +defs["igDebugLocateItemOnHover"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igDebugLocateItemOnHover"][1]["argsoriginal"] = "(ImGuiID target_id)" +defs["igDebugLocateItemOnHover"][1]["call_args"] = "(target_id)" +defs["igDebugLocateItemOnHover"][1]["cimguiname"] = "igDebugLocateItemOnHover" +defs["igDebugLocateItemOnHover"][1]["defaults"] = {} +defs["igDebugLocateItemOnHover"][1]["funcname"] = "DebugLocateItemOnHover" +defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3384" +defs["igDebugLocateItemOnHover"][1]["namespace"] = "ImGui" +defs["igDebugLocateItemOnHover"][1]["ov_cimguiname"] = "igDebugLocateItemOnHover" +defs["igDebugLocateItemOnHover"][1]["ret"] = "void" +defs["igDebugLocateItemOnHover"][1]["signature"] = "(ImGuiID)" +defs["igDebugLocateItemOnHover"][1]["stname"] = "" +defs["igDebugLocateItemOnHover"]["(ImGuiID)"] = defs["igDebugLocateItemOnHover"][1] +defs["igDebugLocateItemResolveWithLastItem"] = {} +defs["igDebugLocateItemResolveWithLastItem"][1] = {} +defs["igDebugLocateItemResolveWithLastItem"][1]["args"] = "()" +defs["igDebugLocateItemResolveWithLastItem"][1]["argsT"] = {} +defs["igDebugLocateItemResolveWithLastItem"][1]["argsoriginal"] = "()" +defs["igDebugLocateItemResolveWithLastItem"][1]["call_args"] = "()" +defs["igDebugLocateItemResolveWithLastItem"][1]["cimguiname"] = "igDebugLocateItemResolveWithLastItem" +defs["igDebugLocateItemResolveWithLastItem"][1]["defaults"] = {} +defs["igDebugLocateItemResolveWithLastItem"][1]["funcname"] = "DebugLocateItemResolveWithLastItem" +defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3385" +defs["igDebugLocateItemResolveWithLastItem"][1]["namespace"] = "ImGui" +defs["igDebugLocateItemResolveWithLastItem"][1]["ov_cimguiname"] = "igDebugLocateItemResolveWithLastItem" +defs["igDebugLocateItemResolveWithLastItem"][1]["ret"] = "void" +defs["igDebugLocateItemResolveWithLastItem"][1]["signature"] = "()" +defs["igDebugLocateItemResolveWithLastItem"][1]["stname"] = "" +defs["igDebugLocateItemResolveWithLastItem"]["()"] = defs["igDebugLocateItemResolveWithLastItem"][1] defs["igDebugLog"] = {} defs["igDebugLog"][1] = {} defs["igDebugLog"][1]["args"] = "(const char* fmt,...)" @@ -13338,7 +13651,7 @@ defs["igDebugLog"][1]["cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["defaults"] = {} defs["igDebugLog"][1]["funcname"] = "DebugLog" defs["igDebugLog"][1]["isvararg"] = "...)" -defs["igDebugLog"][1]["location"] = "imgui_internal:3182" +defs["igDebugLog"][1]["location"] = "imgui_internal:3376" defs["igDebugLog"][1]["namespace"] = "ImGui" defs["igDebugLog"][1]["ov_cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["ret"] = "void" @@ -13360,7 +13673,7 @@ defs["igDebugLogV"][1]["call_args"] = "(fmt,args)" defs["igDebugLogV"][1]["cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["defaults"] = {} defs["igDebugLogV"][1]["funcname"] = "DebugLogV" -defs["igDebugLogV"][1]["location"] = "imgui_internal:3183" +defs["igDebugLogV"][1]["location"] = "imgui_internal:3377" defs["igDebugLogV"][1]["namespace"] = "ImGui" defs["igDebugLogV"][1]["ov_cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["ret"] = "void" @@ -13379,7 +13692,7 @@ defs["igDebugNodeColumns"][1]["call_args"] = "(columns)" defs["igDebugNodeColumns"][1]["cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["defaults"] = {} defs["igDebugNodeColumns"][1]["funcname"] = "DebugNodeColumns" -defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3192" +defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3390" defs["igDebugNodeColumns"][1]["namespace"] = "ImGui" defs["igDebugNodeColumns"][1]["ov_cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["ret"] = "void" @@ -13401,7 +13714,7 @@ defs["igDebugNodeDockNode"][1]["call_args"] = "(node,label)" defs["igDebugNodeDockNode"][1]["cimguiname"] = "igDebugNodeDockNode" defs["igDebugNodeDockNode"][1]["defaults"] = {} defs["igDebugNodeDockNode"][1]["funcname"] = "DebugNodeDockNode" -defs["igDebugNodeDockNode"][1]["location"] = "imgui_internal:3193" +defs["igDebugNodeDockNode"][1]["location"] = "imgui_internal:3391" defs["igDebugNodeDockNode"][1]["namespace"] = "ImGui" defs["igDebugNodeDockNode"][1]["ov_cimguiname"] = "igDebugNodeDockNode" defs["igDebugNodeDockNode"][1]["ret"] = "void" @@ -13432,7 +13745,7 @@ defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["call_args"] = "(out_draw_li defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["defaults"] = {} defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["funcname"] = "DebugNodeDrawCmdShowMeshAndBoundingBox" -defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3195" +defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3393" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ov_cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ret"] = "void" @@ -13460,7 +13773,7 @@ defs["igDebugNodeDrawList"][1]["call_args"] = "(window,viewport,draw_list,label) defs["igDebugNodeDrawList"][1]["cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["defaults"] = {} defs["igDebugNodeDrawList"][1]["funcname"] = "DebugNodeDrawList" -defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3194" +defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3392" defs["igDebugNodeDrawList"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawList"][1]["ov_cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["ret"] = "void" @@ -13479,7 +13792,7 @@ defs["igDebugNodeFont"][1]["call_args"] = "(font)" defs["igDebugNodeFont"][1]["cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["defaults"] = {} defs["igDebugNodeFont"][1]["funcname"] = "DebugNodeFont" -defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3196" +defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3394" defs["igDebugNodeFont"][1]["namespace"] = "ImGui" defs["igDebugNodeFont"][1]["ov_cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["ret"] = "void" @@ -13501,7 +13814,7 @@ defs["igDebugNodeFontGlyph"][1]["call_args"] = "(font,glyph)" defs["igDebugNodeFontGlyph"][1]["cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["defaults"] = {} defs["igDebugNodeFontGlyph"][1]["funcname"] = "DebugNodeFontGlyph" -defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3197" +defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3395" defs["igDebugNodeFontGlyph"][1]["namespace"] = "ImGui" defs["igDebugNodeFontGlyph"][1]["ov_cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["ret"] = "void" @@ -13520,7 +13833,7 @@ defs["igDebugNodeInputTextState"][1]["call_args"] = "(state)" defs["igDebugNodeInputTextState"][1]["cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["defaults"] = {} defs["igDebugNodeInputTextState"][1]["funcname"] = "DebugNodeInputTextState" -defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3202" +defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3400" defs["igDebugNodeInputTextState"][1]["namespace"] = "ImGui" defs["igDebugNodeInputTextState"][1]["ov_cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["ret"] = "void" @@ -13542,7 +13855,7 @@ defs["igDebugNodeStorage"][1]["call_args"] = "(storage,label)" defs["igDebugNodeStorage"][1]["cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["defaults"] = {} defs["igDebugNodeStorage"][1]["funcname"] = "DebugNodeStorage" -defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3198" +defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3396" defs["igDebugNodeStorage"][1]["namespace"] = "ImGui" defs["igDebugNodeStorage"][1]["ov_cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["ret"] = "void" @@ -13564,7 +13877,7 @@ defs["igDebugNodeTabBar"][1]["call_args"] = "(tab_bar,label)" defs["igDebugNodeTabBar"][1]["cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["defaults"] = {} defs["igDebugNodeTabBar"][1]["funcname"] = "DebugNodeTabBar" -defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3199" +defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3397" defs["igDebugNodeTabBar"][1]["namespace"] = "ImGui" defs["igDebugNodeTabBar"][1]["ov_cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["ret"] = "void" @@ -13583,7 +13896,7 @@ defs["igDebugNodeTable"][1]["call_args"] = "(table)" defs["igDebugNodeTable"][1]["cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["defaults"] = {} defs["igDebugNodeTable"][1]["funcname"] = "DebugNodeTable" -defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3200" +defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3398" defs["igDebugNodeTable"][1]["namespace"] = "ImGui" defs["igDebugNodeTable"][1]["ov_cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["ret"] = "void" @@ -13602,7 +13915,7 @@ defs["igDebugNodeTableSettings"][1]["call_args"] = "(settings)" defs["igDebugNodeTableSettings"][1]["cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["defaults"] = {} defs["igDebugNodeTableSettings"][1]["funcname"] = "DebugNodeTableSettings" -defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3201" +defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3399" defs["igDebugNodeTableSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeTableSettings"][1]["ov_cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["ret"] = "void" @@ -13621,7 +13934,7 @@ defs["igDebugNodeViewport"][1]["call_args"] = "(viewport)" defs["igDebugNodeViewport"][1]["cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["defaults"] = {} defs["igDebugNodeViewport"][1]["funcname"] = "DebugNodeViewport" -defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3207" +defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3405" defs["igDebugNodeViewport"][1]["namespace"] = "ImGui" defs["igDebugNodeViewport"][1]["ov_cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["ret"] = "void" @@ -13643,7 +13956,7 @@ defs["igDebugNodeWindow"][1]["call_args"] = "(window,label)" defs["igDebugNodeWindow"][1]["cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["defaults"] = {} defs["igDebugNodeWindow"][1]["funcname"] = "DebugNodeWindow" -defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3203" +defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3401" defs["igDebugNodeWindow"][1]["namespace"] = "ImGui" defs["igDebugNodeWindow"][1]["ov_cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["ret"] = "void" @@ -13662,7 +13975,7 @@ defs["igDebugNodeWindowSettings"][1]["call_args"] = "(settings)" defs["igDebugNodeWindowSettings"][1]["cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["defaults"] = {} defs["igDebugNodeWindowSettings"][1]["funcname"] = "DebugNodeWindowSettings" -defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3204" +defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3402" defs["igDebugNodeWindowSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowSettings"][1]["ov_cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["ret"] = "void" @@ -13684,7 +13997,7 @@ defs["igDebugNodeWindowsList"][1]["call_args"] = "(windows,label)" defs["igDebugNodeWindowsList"][1]["cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["defaults"] = {} defs["igDebugNodeWindowsList"][1]["funcname"] = "DebugNodeWindowsList" -defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3205" +defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3403" defs["igDebugNodeWindowsList"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsList"][1]["ov_cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["ret"] = "void" @@ -13709,7 +14022,7 @@ defs["igDebugNodeWindowsListByBeginStackParent"][1]["call_args"] = "(windows,win defs["igDebugNodeWindowsListByBeginStackParent"][1]["cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["defaults"] = {} defs["igDebugNodeWindowsListByBeginStackParent"][1]["funcname"] = "DebugNodeWindowsListByBeginStackParent" -defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3206" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3404" defs["igDebugNodeWindowsListByBeginStackParent"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ov_cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ret"] = "void" @@ -13734,7 +14047,7 @@ defs["igDebugRenderViewportThumbnail"][1]["call_args"] = "(draw_list,viewport,bb defs["igDebugRenderViewportThumbnail"][1]["cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["defaults"] = {} defs["igDebugRenderViewportThumbnail"][1]["funcname"] = "DebugRenderViewportThumbnail" -defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3208" +defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3406" defs["igDebugRenderViewportThumbnail"][1]["namespace"] = "ImGui" defs["igDebugRenderViewportThumbnail"][1]["ov_cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["ret"] = "void" @@ -13750,7 +14063,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:3189" +defs["igDebugStartItemPicker"][1]["location"] = "imgui_internal:3387" defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["ret"] = "void" @@ -13769,7 +14082,7 @@ defs["igDebugTextEncoding"][1]["call_args"] = "(text)" defs["igDebugTextEncoding"][1]["cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["defaults"] = {} defs["igDebugTextEncoding"][1]["funcname"] = "DebugTextEncoding" -defs["igDebugTextEncoding"][1]["location"] = "imgui:955" +defs["igDebugTextEncoding"][1]["location"] = "imgui:965" defs["igDebugTextEncoding"][1]["namespace"] = "ImGui" defs["igDebugTextEncoding"][1]["ov_cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["ret"] = "void" @@ -13789,7 +14102,7 @@ defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["defaults"] = {} defs["igDestroyContext"][1]["defaults"]["ctx"] = "NULL" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" -defs["igDestroyContext"][1]["location"] = "imgui:291" +defs["igDestroyContext"][1]["location"] = "imgui:295" defs["igDestroyContext"][1]["namespace"] = "ImGui" defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" @@ -13808,7 +14121,7 @@ defs["igDestroyPlatformWindow"][1]["call_args"] = "(viewport)" defs["igDestroyPlatformWindow"][1]["cimguiname"] = "igDestroyPlatformWindow" defs["igDestroyPlatformWindow"][1]["defaults"] = {} defs["igDestroyPlatformWindow"][1]["funcname"] = "DestroyPlatformWindow" -defs["igDestroyPlatformWindow"][1]["location"] = "imgui_internal:2798" +defs["igDestroyPlatformWindow"][1]["location"] = "imgui_internal:2947" defs["igDestroyPlatformWindow"][1]["namespace"] = "ImGui" defs["igDestroyPlatformWindow"][1]["ov_cimguiname"] = "igDestroyPlatformWindow" defs["igDestroyPlatformWindow"][1]["ret"] = "void" @@ -13824,7 +14137,7 @@ defs["igDestroyPlatformWindows"][1]["call_args"] = "()" defs["igDestroyPlatformWindows"][1]["cimguiname"] = "igDestroyPlatformWindows" defs["igDestroyPlatformWindows"][1]["defaults"] = {} defs["igDestroyPlatformWindows"][1]["funcname"] = "DestroyPlatformWindows" -defs["igDestroyPlatformWindows"][1]["location"] = "imgui:973" +defs["igDestroyPlatformWindows"][1]["location"] = "imgui:983" defs["igDestroyPlatformWindows"][1]["namespace"] = "ImGui" defs["igDestroyPlatformWindows"][1]["ov_cimguiname"] = "igDestroyPlatformWindows" defs["igDestroyPlatformWindows"][1]["ret"] = "void" @@ -13848,7 +14161,7 @@ defs["igDockBuilderAddNode"][1]["defaults"] = {} defs["igDockBuilderAddNode"][1]["defaults"]["flags"] = "0" defs["igDockBuilderAddNode"][1]["defaults"]["node_id"] = "0" defs["igDockBuilderAddNode"][1]["funcname"] = "DockBuilderAddNode" -defs["igDockBuilderAddNode"][1]["location"] = "imgui_internal:2991" +defs["igDockBuilderAddNode"][1]["location"] = "imgui_internal:3169" defs["igDockBuilderAddNode"][1]["namespace"] = "ImGui" defs["igDockBuilderAddNode"][1]["ov_cimguiname"] = "igDockBuilderAddNode" defs["igDockBuilderAddNode"][1]["ret"] = "ImGuiID" @@ -13873,7 +14186,7 @@ defs["igDockBuilderCopyDockSpace"][1]["call_args"] = "(src_dockspace_id,dst_dock defs["igDockBuilderCopyDockSpace"][1]["cimguiname"] = "igDockBuilderCopyDockSpace" defs["igDockBuilderCopyDockSpace"][1]["defaults"] = {} defs["igDockBuilderCopyDockSpace"][1]["funcname"] = "DockBuilderCopyDockSpace" -defs["igDockBuilderCopyDockSpace"][1]["location"] = "imgui_internal:2998" +defs["igDockBuilderCopyDockSpace"][1]["location"] = "imgui_internal:3176" defs["igDockBuilderCopyDockSpace"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyDockSpace"][1]["ov_cimguiname"] = "igDockBuilderCopyDockSpace" defs["igDockBuilderCopyDockSpace"][1]["ret"] = "void" @@ -13898,7 +14211,7 @@ defs["igDockBuilderCopyNode"][1]["call_args"] = "(src_node_id,dst_node_id,out_no defs["igDockBuilderCopyNode"][1]["cimguiname"] = "igDockBuilderCopyNode" defs["igDockBuilderCopyNode"][1]["defaults"] = {} defs["igDockBuilderCopyNode"][1]["funcname"] = "DockBuilderCopyNode" -defs["igDockBuilderCopyNode"][1]["location"] = "imgui_internal:2999" +defs["igDockBuilderCopyNode"][1]["location"] = "imgui_internal:3177" defs["igDockBuilderCopyNode"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyNode"][1]["ov_cimguiname"] = "igDockBuilderCopyNode" defs["igDockBuilderCopyNode"][1]["ret"] = "void" @@ -13920,7 +14233,7 @@ defs["igDockBuilderCopyWindowSettings"][1]["call_args"] = "(src_name,dst_name)" defs["igDockBuilderCopyWindowSettings"][1]["cimguiname"] = "igDockBuilderCopyWindowSettings" defs["igDockBuilderCopyWindowSettings"][1]["defaults"] = {} defs["igDockBuilderCopyWindowSettings"][1]["funcname"] = "DockBuilderCopyWindowSettings" -defs["igDockBuilderCopyWindowSettings"][1]["location"] = "imgui_internal:3000" +defs["igDockBuilderCopyWindowSettings"][1]["location"] = "imgui_internal:3178" defs["igDockBuilderCopyWindowSettings"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyWindowSettings"][1]["ov_cimguiname"] = "igDockBuilderCopyWindowSettings" defs["igDockBuilderCopyWindowSettings"][1]["ret"] = "void" @@ -13942,7 +14255,7 @@ defs["igDockBuilderDockWindow"][1]["call_args"] = "(window_name,node_id)" defs["igDockBuilderDockWindow"][1]["cimguiname"] = "igDockBuilderDockWindow" defs["igDockBuilderDockWindow"][1]["defaults"] = {} defs["igDockBuilderDockWindow"][1]["funcname"] = "DockBuilderDockWindow" -defs["igDockBuilderDockWindow"][1]["location"] = "imgui_internal:2988" +defs["igDockBuilderDockWindow"][1]["location"] = "imgui_internal:3166" defs["igDockBuilderDockWindow"][1]["namespace"] = "ImGui" defs["igDockBuilderDockWindow"][1]["ov_cimguiname"] = "igDockBuilderDockWindow" defs["igDockBuilderDockWindow"][1]["ret"] = "void" @@ -13961,7 +14274,7 @@ defs["igDockBuilderFinish"][1]["call_args"] = "(node_id)" defs["igDockBuilderFinish"][1]["cimguiname"] = "igDockBuilderFinish" defs["igDockBuilderFinish"][1]["defaults"] = {} defs["igDockBuilderFinish"][1]["funcname"] = "DockBuilderFinish" -defs["igDockBuilderFinish"][1]["location"] = "imgui_internal:3001" +defs["igDockBuilderFinish"][1]["location"] = "imgui_internal:3179" defs["igDockBuilderFinish"][1]["namespace"] = "ImGui" defs["igDockBuilderFinish"][1]["ov_cimguiname"] = "igDockBuilderFinish" defs["igDockBuilderFinish"][1]["ret"] = "void" @@ -13980,7 +14293,7 @@ defs["igDockBuilderGetCentralNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderGetCentralNode"][1]["cimguiname"] = "igDockBuilderGetCentralNode" defs["igDockBuilderGetCentralNode"][1]["defaults"] = {} defs["igDockBuilderGetCentralNode"][1]["funcname"] = "DockBuilderGetCentralNode" -defs["igDockBuilderGetCentralNode"][1]["location"] = "imgui_internal:2990" +defs["igDockBuilderGetCentralNode"][1]["location"] = "imgui_internal:3168" defs["igDockBuilderGetCentralNode"][1]["namespace"] = "ImGui" defs["igDockBuilderGetCentralNode"][1]["ov_cimguiname"] = "igDockBuilderGetCentralNode" defs["igDockBuilderGetCentralNode"][1]["ret"] = "ImGuiDockNode*" @@ -13999,7 +14312,7 @@ defs["igDockBuilderGetNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderGetNode"][1]["cimguiname"] = "igDockBuilderGetNode" defs["igDockBuilderGetNode"][1]["defaults"] = {} defs["igDockBuilderGetNode"][1]["funcname"] = "DockBuilderGetNode" -defs["igDockBuilderGetNode"][1]["location"] = "imgui_internal:2989" +defs["igDockBuilderGetNode"][1]["location"] = "imgui_internal:3167" defs["igDockBuilderGetNode"][1]["namespace"] = "ImGui" defs["igDockBuilderGetNode"][1]["ov_cimguiname"] = "igDockBuilderGetNode" defs["igDockBuilderGetNode"][1]["ret"] = "ImGuiDockNode*" @@ -14018,7 +14331,7 @@ defs["igDockBuilderRemoveNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderRemoveNode"][1]["cimguiname"] = "igDockBuilderRemoveNode" defs["igDockBuilderRemoveNode"][1]["defaults"] = {} defs["igDockBuilderRemoveNode"][1]["funcname"] = "DockBuilderRemoveNode" -defs["igDockBuilderRemoveNode"][1]["location"] = "imgui_internal:2992" +defs["igDockBuilderRemoveNode"][1]["location"] = "imgui_internal:3170" defs["igDockBuilderRemoveNode"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNode"][1]["ov_cimguiname"] = "igDockBuilderRemoveNode" defs["igDockBuilderRemoveNode"][1]["ret"] = "void" @@ -14037,7 +14350,7 @@ defs["igDockBuilderRemoveNodeChildNodes"][1]["call_args"] = "(node_id)" defs["igDockBuilderRemoveNodeChildNodes"][1]["cimguiname"] = "igDockBuilderRemoveNodeChildNodes" defs["igDockBuilderRemoveNodeChildNodes"][1]["defaults"] = {} defs["igDockBuilderRemoveNodeChildNodes"][1]["funcname"] = "DockBuilderRemoveNodeChildNodes" -defs["igDockBuilderRemoveNodeChildNodes"][1]["location"] = "imgui_internal:2994" +defs["igDockBuilderRemoveNodeChildNodes"][1]["location"] = "imgui_internal:3172" defs["igDockBuilderRemoveNodeChildNodes"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNodeChildNodes"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeChildNodes" defs["igDockBuilderRemoveNodeChildNodes"][1]["ret"] = "void" @@ -14060,7 +14373,7 @@ defs["igDockBuilderRemoveNodeDockedWindows"][1]["cimguiname"] = "igDockBuilderRe defs["igDockBuilderRemoveNodeDockedWindows"][1]["defaults"] = {} defs["igDockBuilderRemoveNodeDockedWindows"][1]["defaults"]["clear_settings_refs"] = "true" defs["igDockBuilderRemoveNodeDockedWindows"][1]["funcname"] = "DockBuilderRemoveNodeDockedWindows" -defs["igDockBuilderRemoveNodeDockedWindows"][1]["location"] = "imgui_internal:2993" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["location"] = "imgui_internal:3171" defs["igDockBuilderRemoveNodeDockedWindows"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNodeDockedWindows"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeDockedWindows" defs["igDockBuilderRemoveNodeDockedWindows"][1]["ret"] = "void" @@ -14082,7 +14395,7 @@ defs["igDockBuilderSetNodePos"][1]["call_args"] = "(node_id,pos)" defs["igDockBuilderSetNodePos"][1]["cimguiname"] = "igDockBuilderSetNodePos" defs["igDockBuilderSetNodePos"][1]["defaults"] = {} defs["igDockBuilderSetNodePos"][1]["funcname"] = "DockBuilderSetNodePos" -defs["igDockBuilderSetNodePos"][1]["location"] = "imgui_internal:2995" +defs["igDockBuilderSetNodePos"][1]["location"] = "imgui_internal:3173" defs["igDockBuilderSetNodePos"][1]["namespace"] = "ImGui" defs["igDockBuilderSetNodePos"][1]["ov_cimguiname"] = "igDockBuilderSetNodePos" defs["igDockBuilderSetNodePos"][1]["ret"] = "void" @@ -14104,7 +14417,7 @@ defs["igDockBuilderSetNodeSize"][1]["call_args"] = "(node_id,size)" defs["igDockBuilderSetNodeSize"][1]["cimguiname"] = "igDockBuilderSetNodeSize" defs["igDockBuilderSetNodeSize"][1]["defaults"] = {} defs["igDockBuilderSetNodeSize"][1]["funcname"] = "DockBuilderSetNodeSize" -defs["igDockBuilderSetNodeSize"][1]["location"] = "imgui_internal:2996" +defs["igDockBuilderSetNodeSize"][1]["location"] = "imgui_internal:3174" defs["igDockBuilderSetNodeSize"][1]["namespace"] = "ImGui" defs["igDockBuilderSetNodeSize"][1]["ov_cimguiname"] = "igDockBuilderSetNodeSize" defs["igDockBuilderSetNodeSize"][1]["ret"] = "void" @@ -14135,7 +14448,7 @@ defs["igDockBuilderSplitNode"][1]["call_args"] = "(node_id,split_dir,size_ratio_ defs["igDockBuilderSplitNode"][1]["cimguiname"] = "igDockBuilderSplitNode" defs["igDockBuilderSplitNode"][1]["defaults"] = {} defs["igDockBuilderSplitNode"][1]["funcname"] = "DockBuilderSplitNode" -defs["igDockBuilderSplitNode"][1]["location"] = "imgui_internal:2997" +defs["igDockBuilderSplitNode"][1]["location"] = "imgui_internal:3175" defs["igDockBuilderSplitNode"][1]["namespace"] = "ImGui" defs["igDockBuilderSplitNode"][1]["ov_cimguiname"] = "igDockBuilderSplitNode" defs["igDockBuilderSplitNode"][1]["ret"] = "ImGuiID" @@ -14144,7 +14457,7 @@ defs["igDockBuilderSplitNode"][1]["stname"] = "" defs["igDockBuilderSplitNode"]["(ImGuiID,ImGuiDir,float,ImGuiID*,ImGuiID*)"] = defs["igDockBuilderSplitNode"][1] defs["igDockContextCalcDropPosForDocking"] = {} defs["igDockContextCalcDropPosForDocking"][1] = {} -defs["igDockContextCalcDropPosForDocking"][1]["args"] = "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)" +defs["igDockContextCalcDropPosForDocking"][1]["args"] = "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)" defs["igDockContextCalcDropPosForDocking"][1]["argsT"] = {} defs["igDockContextCalcDropPosForDocking"][1]["argsT"][1] = {} defs["igDockContextCalcDropPosForDocking"][1]["argsT"][1]["name"] = "target" @@ -14153,29 +14466,32 @@ defs["igDockContextCalcDropPosForDocking"][1]["argsT"][2] = {} defs["igDockContextCalcDropPosForDocking"][1]["argsT"][2]["name"] = "target_node" defs["igDockContextCalcDropPosForDocking"][1]["argsT"][2]["type"] = "ImGuiDockNode*" defs["igDockContextCalcDropPosForDocking"][1]["argsT"][3] = {} -defs["igDockContextCalcDropPosForDocking"][1]["argsT"][3]["name"] = "payload" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][3]["name"] = "payload_window" defs["igDockContextCalcDropPosForDocking"][1]["argsT"][3]["type"] = "ImGuiWindow*" defs["igDockContextCalcDropPosForDocking"][1]["argsT"][4] = {} -defs["igDockContextCalcDropPosForDocking"][1]["argsT"][4]["name"] = "split_dir" -defs["igDockContextCalcDropPosForDocking"][1]["argsT"][4]["type"] = "ImGuiDir" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][4]["name"] = "payload_node" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][4]["type"] = "ImGuiDockNode*" defs["igDockContextCalcDropPosForDocking"][1]["argsT"][5] = {} -defs["igDockContextCalcDropPosForDocking"][1]["argsT"][5]["name"] = "split_outer" -defs["igDockContextCalcDropPosForDocking"][1]["argsT"][5]["type"] = "bool" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][5]["name"] = "split_dir" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][5]["type"] = "ImGuiDir" defs["igDockContextCalcDropPosForDocking"][1]["argsT"][6] = {} -defs["igDockContextCalcDropPosForDocking"][1]["argsT"][6]["name"] = "out_pos" -defs["igDockContextCalcDropPosForDocking"][1]["argsT"][6]["type"] = "ImVec2*" -defs["igDockContextCalcDropPosForDocking"][1]["argsoriginal"] = "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)" -defs["igDockContextCalcDropPosForDocking"][1]["call_args"] = "(target,target_node,payload,split_dir,split_outer,out_pos)" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][6]["name"] = "split_outer" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][6]["type"] = "bool" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][7] = {} +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][7]["name"] = "out_pos" +defs["igDockContextCalcDropPosForDocking"][1]["argsT"][7]["type"] = "ImVec2*" +defs["igDockContextCalcDropPosForDocking"][1]["argsoriginal"] = "(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos)" +defs["igDockContextCalcDropPosForDocking"][1]["call_args"] = "(target,target_node,payload_window,payload_node,split_dir,split_outer,out_pos)" defs["igDockContextCalcDropPosForDocking"][1]["cimguiname"] = "igDockContextCalcDropPosForDocking" defs["igDockContextCalcDropPosForDocking"][1]["defaults"] = {} defs["igDockContextCalcDropPosForDocking"][1]["funcname"] = "DockContextCalcDropPosForDocking" -defs["igDockContextCalcDropPosForDocking"][1]["location"] = "imgui_internal:2965" +defs["igDockContextCalcDropPosForDocking"][1]["location"] = "imgui_internal:3142" defs["igDockContextCalcDropPosForDocking"][1]["namespace"] = "ImGui" defs["igDockContextCalcDropPosForDocking"][1]["ov_cimguiname"] = "igDockContextCalcDropPosForDocking" defs["igDockContextCalcDropPosForDocking"][1]["ret"] = "bool" -defs["igDockContextCalcDropPosForDocking"][1]["signature"] = "(ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDir,bool,ImVec2*)" +defs["igDockContextCalcDropPosForDocking"][1]["signature"] = "(ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDockNode*,ImGuiDir,bool,ImVec2*)" defs["igDockContextCalcDropPosForDocking"][1]["stname"] = "" -defs["igDockContextCalcDropPosForDocking"]["(ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDir,bool,ImVec2*)"] = defs["igDockContextCalcDropPosForDocking"][1] +defs["igDockContextCalcDropPosForDocking"]["(ImGuiWindow*,ImGuiDockNode*,ImGuiWindow*,ImGuiDockNode*,ImGuiDir,bool,ImVec2*)"] = defs["igDockContextCalcDropPosForDocking"][1] defs["igDockContextClearNodes"] = {} defs["igDockContextClearNodes"][1] = {} defs["igDockContextClearNodes"][1]["args"] = "(ImGuiContext* ctx,ImGuiID root_id,bool clear_settings_refs)" @@ -14194,7 +14510,7 @@ defs["igDockContextClearNodes"][1]["call_args"] = "(ctx,root_id,clear_settings_r defs["igDockContextClearNodes"][1]["cimguiname"] = "igDockContextClearNodes" defs["igDockContextClearNodes"][1]["defaults"] = {} defs["igDockContextClearNodes"][1]["funcname"] = "DockContextClearNodes" -defs["igDockContextClearNodes"][1]["location"] = "imgui_internal:2956" +defs["igDockContextClearNodes"][1]["location"] = "imgui_internal:3133" defs["igDockContextClearNodes"][1]["namespace"] = "ImGui" defs["igDockContextClearNodes"][1]["ov_cimguiname"] = "igDockContextClearNodes" defs["igDockContextClearNodes"][1]["ret"] = "void" @@ -14213,13 +14529,35 @@ defs["igDockContextEndFrame"][1]["call_args"] = "(ctx)" defs["igDockContextEndFrame"][1]["cimguiname"] = "igDockContextEndFrame" defs["igDockContextEndFrame"][1]["defaults"] = {} defs["igDockContextEndFrame"][1]["funcname"] = "DockContextEndFrame" -defs["igDockContextEndFrame"][1]["location"] = "imgui_internal:2960" +defs["igDockContextEndFrame"][1]["location"] = "imgui_internal:3137" defs["igDockContextEndFrame"][1]["namespace"] = "ImGui" defs["igDockContextEndFrame"][1]["ov_cimguiname"] = "igDockContextEndFrame" defs["igDockContextEndFrame"][1]["ret"] = "void" defs["igDockContextEndFrame"][1]["signature"] = "(ImGuiContext*)" defs["igDockContextEndFrame"][1]["stname"] = "" defs["igDockContextEndFrame"]["(ImGuiContext*)"] = defs["igDockContextEndFrame"][1] +defs["igDockContextFindNodeByID"] = {} +defs["igDockContextFindNodeByID"][1] = {} +defs["igDockContextFindNodeByID"][1]["args"] = "(ImGuiContext* ctx,ImGuiID id)" +defs["igDockContextFindNodeByID"][1]["argsT"] = {} +defs["igDockContextFindNodeByID"][1]["argsT"][1] = {} +defs["igDockContextFindNodeByID"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextFindNodeByID"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextFindNodeByID"][1]["argsT"][2] = {} +defs["igDockContextFindNodeByID"][1]["argsT"][2]["name"] = "id" +defs["igDockContextFindNodeByID"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igDockContextFindNodeByID"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiID id)" +defs["igDockContextFindNodeByID"][1]["call_args"] = "(ctx,id)" +defs["igDockContextFindNodeByID"][1]["cimguiname"] = "igDockContextFindNodeByID" +defs["igDockContextFindNodeByID"][1]["defaults"] = {} +defs["igDockContextFindNodeByID"][1]["funcname"] = "DockContextFindNodeByID" +defs["igDockContextFindNodeByID"][1]["location"] = "imgui_internal:3143" +defs["igDockContextFindNodeByID"][1]["namespace"] = "ImGui" +defs["igDockContextFindNodeByID"][1]["ov_cimguiname"] = "igDockContextFindNodeByID" +defs["igDockContextFindNodeByID"][1]["ret"] = "ImGuiDockNode*" +defs["igDockContextFindNodeByID"][1]["signature"] = "(ImGuiContext*,ImGuiID)" +defs["igDockContextFindNodeByID"][1]["stname"] = "" +defs["igDockContextFindNodeByID"]["(ImGuiContext*,ImGuiID)"] = defs["igDockContextFindNodeByID"][1] defs["igDockContextGenNodeID"] = {} defs["igDockContextGenNodeID"][1] = {} defs["igDockContextGenNodeID"][1]["args"] = "(ImGuiContext* ctx)" @@ -14232,7 +14570,7 @@ defs["igDockContextGenNodeID"][1]["call_args"] = "(ctx)" defs["igDockContextGenNodeID"][1]["cimguiname"] = "igDockContextGenNodeID" defs["igDockContextGenNodeID"][1]["defaults"] = {} defs["igDockContextGenNodeID"][1]["funcname"] = "DockContextGenNodeID" -defs["igDockContextGenNodeID"][1]["location"] = "imgui_internal:2961" +defs["igDockContextGenNodeID"][1]["location"] = "imgui_internal:3138" defs["igDockContextGenNodeID"][1]["namespace"] = "ImGui" defs["igDockContextGenNodeID"][1]["ov_cimguiname"] = "igDockContextGenNodeID" defs["igDockContextGenNodeID"][1]["ret"] = "ImGuiID" @@ -14251,7 +14589,7 @@ defs["igDockContextInitialize"][1]["call_args"] = "(ctx)" defs["igDockContextInitialize"][1]["cimguiname"] = "igDockContextInitialize" defs["igDockContextInitialize"][1]["defaults"] = {} defs["igDockContextInitialize"][1]["funcname"] = "DockContextInitialize" -defs["igDockContextInitialize"][1]["location"] = "imgui_internal:2954" +defs["igDockContextInitialize"][1]["location"] = "imgui_internal:3131" defs["igDockContextInitialize"][1]["namespace"] = "ImGui" defs["igDockContextInitialize"][1]["ov_cimguiname"] = "igDockContextInitialize" defs["igDockContextInitialize"][1]["ret"] = "void" @@ -14270,7 +14608,7 @@ defs["igDockContextNewFrameUpdateDocking"][1]["call_args"] = "(ctx)" defs["igDockContextNewFrameUpdateDocking"][1]["cimguiname"] = "igDockContextNewFrameUpdateDocking" defs["igDockContextNewFrameUpdateDocking"][1]["defaults"] = {} defs["igDockContextNewFrameUpdateDocking"][1]["funcname"] = "DockContextNewFrameUpdateDocking" -defs["igDockContextNewFrameUpdateDocking"][1]["location"] = "imgui_internal:2959" +defs["igDockContextNewFrameUpdateDocking"][1]["location"] = "imgui_internal:3136" defs["igDockContextNewFrameUpdateDocking"][1]["namespace"] = "ImGui" defs["igDockContextNewFrameUpdateDocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateDocking" defs["igDockContextNewFrameUpdateDocking"][1]["ret"] = "void" @@ -14289,7 +14627,7 @@ defs["igDockContextNewFrameUpdateUndocking"][1]["call_args"] = "(ctx)" defs["igDockContextNewFrameUpdateUndocking"][1]["cimguiname"] = "igDockContextNewFrameUpdateUndocking" defs["igDockContextNewFrameUpdateUndocking"][1]["defaults"] = {} defs["igDockContextNewFrameUpdateUndocking"][1]["funcname"] = "DockContextNewFrameUpdateUndocking" -defs["igDockContextNewFrameUpdateUndocking"][1]["location"] = "imgui_internal:2958" +defs["igDockContextNewFrameUpdateUndocking"][1]["location"] = "imgui_internal:3135" defs["igDockContextNewFrameUpdateUndocking"][1]["namespace"] = "ImGui" defs["igDockContextNewFrameUpdateUndocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateUndocking" defs["igDockContextNewFrameUpdateUndocking"][1]["ret"] = "void" @@ -14326,7 +14664,7 @@ defs["igDockContextQueueDock"][1]["call_args"] = "(ctx,target,target_node,payloa defs["igDockContextQueueDock"][1]["cimguiname"] = "igDockContextQueueDock" defs["igDockContextQueueDock"][1]["defaults"] = {} defs["igDockContextQueueDock"][1]["funcname"] = "DockContextQueueDock" -defs["igDockContextQueueDock"][1]["location"] = "imgui_internal:2962" +defs["igDockContextQueueDock"][1]["location"] = "imgui_internal:3139" defs["igDockContextQueueDock"][1]["namespace"] = "ImGui" defs["igDockContextQueueDock"][1]["ov_cimguiname"] = "igDockContextQueueDock" defs["igDockContextQueueDock"][1]["ret"] = "void" @@ -14348,7 +14686,7 @@ defs["igDockContextQueueUndockNode"][1]["call_args"] = "(ctx,node)" defs["igDockContextQueueUndockNode"][1]["cimguiname"] = "igDockContextQueueUndockNode" defs["igDockContextQueueUndockNode"][1]["defaults"] = {} defs["igDockContextQueueUndockNode"][1]["funcname"] = "DockContextQueueUndockNode" -defs["igDockContextQueueUndockNode"][1]["location"] = "imgui_internal:2964" +defs["igDockContextQueueUndockNode"][1]["location"] = "imgui_internal:3141" defs["igDockContextQueueUndockNode"][1]["namespace"] = "ImGui" defs["igDockContextQueueUndockNode"][1]["ov_cimguiname"] = "igDockContextQueueUndockNode" defs["igDockContextQueueUndockNode"][1]["ret"] = "void" @@ -14370,7 +14708,7 @@ defs["igDockContextQueueUndockWindow"][1]["call_args"] = "(ctx,window)" defs["igDockContextQueueUndockWindow"][1]["cimguiname"] = "igDockContextQueueUndockWindow" defs["igDockContextQueueUndockWindow"][1]["defaults"] = {} defs["igDockContextQueueUndockWindow"][1]["funcname"] = "DockContextQueueUndockWindow" -defs["igDockContextQueueUndockWindow"][1]["location"] = "imgui_internal:2963" +defs["igDockContextQueueUndockWindow"][1]["location"] = "imgui_internal:3140" defs["igDockContextQueueUndockWindow"][1]["namespace"] = "ImGui" defs["igDockContextQueueUndockWindow"][1]["ov_cimguiname"] = "igDockContextQueueUndockWindow" defs["igDockContextQueueUndockWindow"][1]["ret"] = "void" @@ -14389,7 +14727,7 @@ defs["igDockContextRebuildNodes"][1]["call_args"] = "(ctx)" defs["igDockContextRebuildNodes"][1]["cimguiname"] = "igDockContextRebuildNodes" defs["igDockContextRebuildNodes"][1]["defaults"] = {} defs["igDockContextRebuildNodes"][1]["funcname"] = "DockContextRebuildNodes" -defs["igDockContextRebuildNodes"][1]["location"] = "imgui_internal:2957" +defs["igDockContextRebuildNodes"][1]["location"] = "imgui_internal:3134" defs["igDockContextRebuildNodes"][1]["namespace"] = "ImGui" defs["igDockContextRebuildNodes"][1]["ov_cimguiname"] = "igDockContextRebuildNodes" defs["igDockContextRebuildNodes"][1]["ret"] = "void" @@ -14408,7 +14746,7 @@ defs["igDockContextShutdown"][1]["call_args"] = "(ctx)" defs["igDockContextShutdown"][1]["cimguiname"] = "igDockContextShutdown" defs["igDockContextShutdown"][1]["defaults"] = {} defs["igDockContextShutdown"][1]["funcname"] = "DockContextShutdown" -defs["igDockContextShutdown"][1]["location"] = "imgui_internal:2955" +defs["igDockContextShutdown"][1]["location"] = "imgui_internal:3132" defs["igDockContextShutdown"][1]["namespace"] = "ImGui" defs["igDockContextShutdown"][1]["ov_cimguiname"] = "igDockContextShutdown" defs["igDockContextShutdown"][1]["ret"] = "void" @@ -14427,7 +14765,7 @@ defs["igDockNodeBeginAmendTabBar"][1]["call_args"] = "(node)" defs["igDockNodeBeginAmendTabBar"][1]["cimguiname"] = "igDockNodeBeginAmendTabBar" defs["igDockNodeBeginAmendTabBar"][1]["defaults"] = {} defs["igDockNodeBeginAmendTabBar"][1]["funcname"] = "DockNodeBeginAmendTabBar" -defs["igDockNodeBeginAmendTabBar"][1]["location"] = "imgui_internal:2966" +defs["igDockNodeBeginAmendTabBar"][1]["location"] = "imgui_internal:3144" defs["igDockNodeBeginAmendTabBar"][1]["namespace"] = "ImGui" defs["igDockNodeBeginAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeBeginAmendTabBar" defs["igDockNodeBeginAmendTabBar"][1]["ret"] = "bool" @@ -14443,7 +14781,7 @@ defs["igDockNodeEndAmendTabBar"][1]["call_args"] = "()" defs["igDockNodeEndAmendTabBar"][1]["cimguiname"] = "igDockNodeEndAmendTabBar" defs["igDockNodeEndAmendTabBar"][1]["defaults"] = {} defs["igDockNodeEndAmendTabBar"][1]["funcname"] = "DockNodeEndAmendTabBar" -defs["igDockNodeEndAmendTabBar"][1]["location"] = "imgui_internal:2967" +defs["igDockNodeEndAmendTabBar"][1]["location"] = "imgui_internal:3145" defs["igDockNodeEndAmendTabBar"][1]["namespace"] = "ImGui" defs["igDockNodeEndAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeEndAmendTabBar" defs["igDockNodeEndAmendTabBar"][1]["ret"] = "void" @@ -14462,7 +14800,7 @@ defs["igDockNodeGetDepth"][1]["call_args"] = "(node)" defs["igDockNodeGetDepth"][1]["cimguiname"] = "igDockNodeGetDepth" defs["igDockNodeGetDepth"][1]["defaults"] = {} defs["igDockNodeGetDepth"][1]["funcname"] = "DockNodeGetDepth" -defs["igDockNodeGetDepth"][1]["location"] = "imgui_internal:2970" +defs["igDockNodeGetDepth"][1]["location"] = "imgui_internal:3148" defs["igDockNodeGetDepth"][1]["namespace"] = "ImGui" defs["igDockNodeGetDepth"][1]["ov_cimguiname"] = "igDockNodeGetDepth" defs["igDockNodeGetDepth"][1]["ret"] = "int" @@ -14481,7 +14819,7 @@ defs["igDockNodeGetRootNode"][1]["call_args"] = "(node)" defs["igDockNodeGetRootNode"][1]["cimguiname"] = "igDockNodeGetRootNode" defs["igDockNodeGetRootNode"][1]["defaults"] = {} defs["igDockNodeGetRootNode"][1]["funcname"] = "DockNodeGetRootNode" -defs["igDockNodeGetRootNode"][1]["location"] = "imgui_internal:2968" +defs["igDockNodeGetRootNode"][1]["location"] = "imgui_internal:3146" defs["igDockNodeGetRootNode"][1]["namespace"] = "ImGui" defs["igDockNodeGetRootNode"][1]["ov_cimguiname"] = "igDockNodeGetRootNode" defs["igDockNodeGetRootNode"][1]["ret"] = "ImGuiDockNode*" @@ -14500,7 +14838,7 @@ defs["igDockNodeGetWindowMenuButtonId"][1]["call_args"] = "(node)" defs["igDockNodeGetWindowMenuButtonId"][1]["cimguiname"] = "igDockNodeGetWindowMenuButtonId" defs["igDockNodeGetWindowMenuButtonId"][1]["defaults"] = {} defs["igDockNodeGetWindowMenuButtonId"][1]["funcname"] = "DockNodeGetWindowMenuButtonId" -defs["igDockNodeGetWindowMenuButtonId"][1]["location"] = "imgui_internal:2971" +defs["igDockNodeGetWindowMenuButtonId"][1]["location"] = "imgui_internal:3149" defs["igDockNodeGetWindowMenuButtonId"][1]["namespace"] = "ImGui" defs["igDockNodeGetWindowMenuButtonId"][1]["ov_cimguiname"] = "igDockNodeGetWindowMenuButtonId" defs["igDockNodeGetWindowMenuButtonId"][1]["ret"] = "ImGuiID" @@ -14522,7 +14860,7 @@ defs["igDockNodeIsInHierarchyOf"][1]["call_args"] = "(node,parent)" defs["igDockNodeIsInHierarchyOf"][1]["cimguiname"] = "igDockNodeIsInHierarchyOf" defs["igDockNodeIsInHierarchyOf"][1]["defaults"] = {} defs["igDockNodeIsInHierarchyOf"][1]["funcname"] = "DockNodeIsInHierarchyOf" -defs["igDockNodeIsInHierarchyOf"][1]["location"] = "imgui_internal:2969" +defs["igDockNodeIsInHierarchyOf"][1]["location"] = "imgui_internal:3147" defs["igDockNodeIsInHierarchyOf"][1]["namespace"] = "ImGui" defs["igDockNodeIsInHierarchyOf"][1]["ov_cimguiname"] = "igDockNodeIsInHierarchyOf" defs["igDockNodeIsInHierarchyOf"][1]["ret"] = "bool" @@ -14553,7 +14891,7 @@ defs["igDockSpace"][1]["defaults"]["flags"] = "0" defs["igDockSpace"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igDockSpace"][1]["defaults"]["window_class"] = "NULL" defs["igDockSpace"][1]["funcname"] = "DockSpace" -defs["igDockSpace"][1]["location"] = "imgui:805" +defs["igDockSpace"][1]["location"] = "imgui:815" defs["igDockSpace"][1]["namespace"] = "ImGui" defs["igDockSpace"][1]["ov_cimguiname"] = "igDockSpace" defs["igDockSpace"][1]["ret"] = "ImGuiID" @@ -14581,7 +14919,7 @@ defs["igDockSpaceOverViewport"][1]["defaults"]["flags"] = "0" defs["igDockSpaceOverViewport"][1]["defaults"]["viewport"] = "NULL" defs["igDockSpaceOverViewport"][1]["defaults"]["window_class"] = "NULL" defs["igDockSpaceOverViewport"][1]["funcname"] = "DockSpaceOverViewport" -defs["igDockSpaceOverViewport"][1]["location"] = "imgui:806" +defs["igDockSpaceOverViewport"][1]["location"] = "imgui:816" defs["igDockSpaceOverViewport"][1]["namespace"] = "ImGui" defs["igDockSpaceOverViewport"][1]["ov_cimguiname"] = "igDockSpaceOverViewport" defs["igDockSpaceOverViewport"][1]["ret"] = "ImGuiID" @@ -14621,7 +14959,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:3132" +defs["igDragBehavior"][1]["location"] = "imgui_internal:3325" defs["igDragBehavior"][1]["namespace"] = "ImGui" defs["igDragBehavior"][1]["ov_cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["ret"] = "bool" @@ -14663,7 +15001,7 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" -defs["igDragFloat"][1]["location"] = "imgui:537" +defs["igDragFloat"][1]["location"] = "imgui:547" defs["igDragFloat"][1]["namespace"] = "ImGui" defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" @@ -14705,7 +15043,7 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" -defs["igDragFloat2"][1]["location"] = "imgui:538" +defs["igDragFloat2"][1]["location"] = "imgui:548" defs["igDragFloat2"][1]["namespace"] = "ImGui" defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" @@ -14747,7 +15085,7 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" -defs["igDragFloat3"][1]["location"] = "imgui:539" +defs["igDragFloat3"][1]["location"] = "imgui:549" defs["igDragFloat3"][1]["namespace"] = "ImGui" defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" @@ -14789,7 +15127,7 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" -defs["igDragFloat4"][1]["location"] = "imgui:540" +defs["igDragFloat4"][1]["location"] = "imgui:550" defs["igDragFloat4"][1]["namespace"] = "ImGui" defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" @@ -14838,7 +15176,7 @@ defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" -defs["igDragFloatRange2"][1]["location"] = "imgui:541" +defs["igDragFloatRange2"][1]["location"] = "imgui:551" defs["igDragFloatRange2"][1]["namespace"] = "ImGui" defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" @@ -14880,7 +15218,7 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" -defs["igDragInt"][1]["location"] = "imgui:542" +defs["igDragInt"][1]["location"] = "imgui:552" defs["igDragInt"][1]["namespace"] = "ImGui" defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" @@ -14922,7 +15260,7 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" -defs["igDragInt2"][1]["location"] = "imgui:543" +defs["igDragInt2"][1]["location"] = "imgui:553" defs["igDragInt2"][1]["namespace"] = "ImGui" defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" @@ -14964,7 +15302,7 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" -defs["igDragInt3"][1]["location"] = "imgui:544" +defs["igDragInt3"][1]["location"] = "imgui:554" defs["igDragInt3"][1]["namespace"] = "ImGui" defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" @@ -15006,7 +15344,7 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" -defs["igDragInt4"][1]["location"] = "imgui:545" +defs["igDragInt4"][1]["location"] = "imgui:555" defs["igDragInt4"][1]["namespace"] = "ImGui" defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" @@ -15055,7 +15393,7 @@ defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" -defs["igDragIntRange2"][1]["location"] = "imgui:546" +defs["igDragIntRange2"][1]["location"] = "imgui:556" defs["igDragIntRange2"][1]["namespace"] = "ImGui" defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" @@ -15100,7 +15438,7 @@ defs["igDragScalar"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalar"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalar"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalar"][1]["funcname"] = "DragScalar" -defs["igDragScalar"][1]["location"] = "imgui:547" +defs["igDragScalar"][1]["location"] = "imgui:557" defs["igDragScalar"][1]["namespace"] = "ImGui" defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" @@ -15148,7 +15486,7 @@ defs["igDragScalarN"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalarN"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalarN"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" -defs["igDragScalarN"][1]["location"] = "imgui:548" +defs["igDragScalarN"][1]["location"] = "imgui:558" defs["igDragScalarN"][1]["namespace"] = "ImGui" defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" @@ -15167,7 +15505,7 @@ defs["igDummy"][1]["call_args"] = "(size)" defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" -defs["igDummy"][1]["location"] = "imgui:444" +defs["igDummy"][1]["location"] = "imgui:451" defs["igDummy"][1]["namespace"] = "ImGui" defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" @@ -15183,7 +15521,7 @@ defs["igEnd"][1]["call_args"] = "()" defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" -defs["igEnd"][1]["location"] = "imgui:333" +defs["igEnd"][1]["location"] = "imgui:337" defs["igEnd"][1]["namespace"] = "ImGui" defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" @@ -15199,7 +15537,7 @@ defs["igEndChild"][1]["call_args"] = "()" defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" -defs["igEndChild"][1]["location"] = "imgui:345" +defs["igEndChild"][1]["location"] = "imgui:349" defs["igEndChild"][1]["namespace"] = "ImGui" defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" @@ -15215,7 +15553,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:895" +defs["igEndChildFrame"][1]["location"] = "imgui:905" defs["igEndChildFrame"][1]["namespace"] = "ImGui" defs["igEndChildFrame"][1]["ov_cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["ret"] = "void" @@ -15231,7 +15569,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:3012" +defs["igEndColumns"][1]["location"] = "imgui_internal:3203" defs["igEndColumns"][1]["namespace"] = "ImGui" defs["igEndColumns"][1]["ov_cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["ret"] = "void" @@ -15247,7 +15585,7 @@ defs["igEndCombo"][1]["call_args"] = "()" defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" -defs["igEndCombo"][1]["location"] = "imgui:520" +defs["igEndCombo"][1]["location"] = "imgui:530" defs["igEndCombo"][1]["namespace"] = "ImGui" defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" @@ -15263,7 +15601,7 @@ defs["igEndComboPreview"][1]["call_args"] = "()" defs["igEndComboPreview"][1]["cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["defaults"] = {} defs["igEndComboPreview"][1]["funcname"] = "EndComboPreview" -defs["igEndComboPreview"][1]["location"] = "imgui_internal:2904" +defs["igEndComboPreview"][1]["location"] = "imgui_internal:3041" defs["igEndComboPreview"][1]["namespace"] = "ImGui" defs["igEndComboPreview"][1]["ov_cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["ret"] = "void" @@ -15279,7 +15617,7 @@ defs["igEndDisabled"][1]["call_args"] = "()" defs["igEndDisabled"][1]["cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["defaults"] = {} defs["igEndDisabled"][1]["funcname"] = "EndDisabled" -defs["igEndDisabled"][1]["location"] = "imgui:840" +defs["igEndDisabled"][1]["location"] = "imgui:850" defs["igEndDisabled"][1]["namespace"] = "ImGui" defs["igEndDisabled"][1]["ov_cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["ret"] = "void" @@ -15295,7 +15633,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:829" +defs["igEndDragDropSource"][1]["location"] = "imgui:839" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -15311,7 +15649,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:832" +defs["igEndDragDropTarget"][1]["location"] = "imgui:842" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -15327,7 +15665,7 @@ defs["igEndFrame"][1]["call_args"] = "()" defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" -defs["igEndFrame"][1]["location"] = "imgui:299" +defs["igEndFrame"][1]["location"] = "imgui:303" defs["igEndFrame"][1]["namespace"] = "ImGui" defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" @@ -15343,7 +15681,7 @@ defs["igEndGroup"][1]["call_args"] = "()" defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" -defs["igEndGroup"][1]["location"] = "imgui:448" +defs["igEndGroup"][1]["location"] = "imgui:455" defs["igEndGroup"][1]["namespace"] = "ImGui" defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" @@ -15359,7 +15697,7 @@ defs["igEndListBox"][1]["call_args"] = "()" defs["igEndListBox"][1]["cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["defaults"] = {} defs["igEndListBox"][1]["funcname"] = "EndListBox" -defs["igEndListBox"][1]["location"] = "imgui:632" +defs["igEndListBox"][1]["location"] = "imgui:642" defs["igEndListBox"][1]["namespace"] = "ImGui" defs["igEndListBox"][1]["ov_cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["ret"] = "void" @@ -15375,7 +15713,7 @@ defs["igEndMainMenuBar"][1]["call_args"] = "()" defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" -defs["igEndMainMenuBar"][1]["location"] = "imgui:658" +defs["igEndMainMenuBar"][1]["location"] = "imgui:668" defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" @@ -15391,7 +15729,7 @@ defs["igEndMenu"][1]["call_args"] = "()" defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" -defs["igEndMenu"][1]["location"] = "imgui:660" +defs["igEndMenu"][1]["location"] = "imgui:670" defs["igEndMenu"][1]["namespace"] = "ImGui" defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" @@ -15407,7 +15745,7 @@ defs["igEndMenuBar"][1]["call_args"] = "()" defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" -defs["igEndMenuBar"][1]["location"] = "imgui:656" +defs["igEndMenuBar"][1]["location"] = "imgui:666" defs["igEndMenuBar"][1]["namespace"] = "ImGui" defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" @@ -15423,7 +15761,7 @@ defs["igEndPopup"][1]["call_args"] = "()" defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" -defs["igEndPopup"][1]["location"] = "imgui:685" +defs["igEndPopup"][1]["location"] = "imgui:695" defs["igEndPopup"][1]["namespace"] = "ImGui" defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" @@ -15439,7 +15777,7 @@ defs["igEndTabBar"][1]["call_args"] = "()" defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" -defs["igEndTabBar"][1]["location"] = "imgui:786" +defs["igEndTabBar"][1]["location"] = "imgui:796" defs["igEndTabBar"][1]["namespace"] = "ImGui" defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" @@ -15455,7 +15793,7 @@ defs["igEndTabItem"][1]["call_args"] = "()" defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" -defs["igEndTabItem"][1]["location"] = "imgui:788" +defs["igEndTabItem"][1]["location"] = "imgui:798" defs["igEndTabItem"][1]["namespace"] = "ImGui" defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" @@ -15471,7 +15809,7 @@ defs["igEndTable"][1]["call_args"] = "()" defs["igEndTable"][1]["cimguiname"] = "igEndTable" defs["igEndTable"][1]["defaults"] = {} defs["igEndTable"][1]["funcname"] = "EndTable" -defs["igEndTable"][1]["location"] = "imgui:739" +defs["igEndTable"][1]["location"] = "imgui:749" defs["igEndTable"][1]["namespace"] = "ImGui" defs["igEndTable"][1]["ov_cimguiname"] = "igEndTable" defs["igEndTable"][1]["ret"] = "void" @@ -15487,7 +15825,7 @@ defs["igEndTooltip"][1]["call_args"] = "()" defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" -defs["igEndTooltip"][1]["location"] = "imgui:667" +defs["igEndTooltip"][1]["location"] = "imgui:677" defs["igEndTooltip"][1]["namespace"] = "ImGui" defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" @@ -15510,7 +15848,7 @@ defs["igErrorCheckEndFrameRecover"][1]["cimguiname"] = "igErrorCheckEndFrameReco defs["igErrorCheckEndFrameRecover"][1]["defaults"] = {} defs["igErrorCheckEndFrameRecover"][1]["defaults"]["user_data"] = "NULL" defs["igErrorCheckEndFrameRecover"][1]["funcname"] = "ErrorCheckEndFrameRecover" -defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3186" +defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3380" defs["igErrorCheckEndFrameRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndFrameRecover"][1]["ov_cimguiname"] = "igErrorCheckEndFrameRecover" defs["igErrorCheckEndFrameRecover"][1]["ret"] = "void" @@ -15533,13 +15871,29 @@ defs["igErrorCheckEndWindowRecover"][1]["cimguiname"] = "igErrorCheckEndWindowRe defs["igErrorCheckEndWindowRecover"][1]["defaults"] = {} defs["igErrorCheckEndWindowRecover"][1]["defaults"]["user_data"] = "NULL" defs["igErrorCheckEndWindowRecover"][1]["funcname"] = "ErrorCheckEndWindowRecover" -defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3187" +defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3381" defs["igErrorCheckEndWindowRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndWindowRecover"][1]["ov_cimguiname"] = "igErrorCheckEndWindowRecover" defs["igErrorCheckEndWindowRecover"][1]["ret"] = "void" defs["igErrorCheckEndWindowRecover"][1]["signature"] = "(ImGuiErrorLogCallback,void*)" defs["igErrorCheckEndWindowRecover"][1]["stname"] = "" defs["igErrorCheckEndWindowRecover"]["(ImGuiErrorLogCallback,void*)"] = defs["igErrorCheckEndWindowRecover"][1] +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"] = {} +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1] = {} +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["args"] = "()" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["argsT"] = {} +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["argsoriginal"] = "()" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["call_args"] = "()" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["defaults"] = {} +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["funcname"] = "ErrorCheckUsingSetCursorPosToExtendParentBoundaries" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3382" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["namespace"] = "ImGui" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ov_cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ret"] = "void" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["signature"] = "()" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["stname"] = "" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"]["()"] = defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1] defs["igFindBestWindowPosForPopup"] = {} defs["igFindBestWindowPosForPopup"][1] = {} defs["igFindBestWindowPosForPopup"][1]["args"] = "(ImVec2 *pOut,ImGuiWindow* window)" @@ -15555,7 +15909,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:2893" +defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:3030" defs["igFindBestWindowPosForPopup"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopup"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopup"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopup" @@ -15593,7 +15947,7 @@ defs["igFindBestWindowPosForPopupEx"][1]["call_args"] = "(ref_pos,size,last_dir, defs["igFindBestWindowPosForPopupEx"][1]["cimguiname"] = "igFindBestWindowPosForPopupEx" defs["igFindBestWindowPosForPopupEx"][1]["defaults"] = {} defs["igFindBestWindowPosForPopupEx"][1]["funcname"] = "FindBestWindowPosForPopupEx" -defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:2894" +defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:3031" defs["igFindBestWindowPosForPopupEx"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopupEx"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopupEx"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopupEx" @@ -15613,7 +15967,7 @@ defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["call_args"] = "(window defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["defaults"] = {} defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["funcname"] = "FindBottomMostVisibleWindowWithinBeginStack" -defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:2771" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:2920" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["namespace"] = "ImGui" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ov_cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ret"] = "ImGuiWindow*" @@ -15632,7 +15986,7 @@ defs["igFindHoveredViewportFromPlatformWindowStack"][1]["call_args"] = "(mouse_p defs["igFindHoveredViewportFromPlatformWindowStack"][1]["cimguiname"] = "igFindHoveredViewportFromPlatformWindowStack" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["defaults"] = {} defs["igFindHoveredViewportFromPlatformWindowStack"][1]["funcname"] = "FindHoveredViewportFromPlatformWindowStack" -defs["igFindHoveredViewportFromPlatformWindowStack"][1]["location"] = "imgui_internal:2802" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["location"] = "imgui_internal:2951" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["namespace"] = "ImGui" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["ov_cimguiname"] = "igFindHoveredViewportFromPlatformWindowStack" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["ret"] = "ImGuiViewportP*" @@ -15654,7 +16008,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:3017" +defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:3208" defs["igFindOrCreateColumns"][1]["namespace"] = "ImGui" defs["igFindOrCreateColumns"][1]["ov_cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["ret"] = "ImGuiOldColumns*" @@ -15673,7 +16027,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:2810" +defs["igFindOrCreateWindowSettings"][1]["location"] = "imgui_internal:2959" defs["igFindOrCreateWindowSettings"][1]["namespace"] = "ImGui" defs["igFindOrCreateWindowSettings"][1]["ov_cimguiname"] = "igFindOrCreateWindowSettings" defs["igFindOrCreateWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -15696,7 +16050,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:3100" +defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:3293" defs["igFindRenderedTextEnd"][1]["namespace"] = "ImGui" defs["igFindRenderedTextEnd"][1]["ov_cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["ret"] = "const char*" @@ -15715,7 +16069,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:2813" +defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:2962" defs["igFindSettingsHandler"][1]["namespace"] = "ImGui" defs["igFindSettingsHandler"][1]["ov_cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["ret"] = "ImGuiSettingsHandler*" @@ -15734,7 +16088,7 @@ defs["igFindViewportByID"][1]["call_args"] = "(id)" defs["igFindViewportByID"][1]["cimguiname"] = "igFindViewportByID" defs["igFindViewportByID"][1]["defaults"] = {} defs["igFindViewportByID"][1]["funcname"] = "FindViewportByID" -defs["igFindViewportByID"][1]["location"] = "imgui:974" +defs["igFindViewportByID"][1]["location"] = "imgui:984" defs["igFindViewportByID"][1]["namespace"] = "ImGui" defs["igFindViewportByID"][1]["ov_cimguiname"] = "igFindViewportByID" defs["igFindViewportByID"][1]["ret"] = "ImGuiViewport*" @@ -15753,7 +16107,7 @@ defs["igFindViewportByPlatformHandle"][1]["call_args"] = "(platform_handle)" defs["igFindViewportByPlatformHandle"][1]["cimguiname"] = "igFindViewportByPlatformHandle" defs["igFindViewportByPlatformHandle"][1]["defaults"] = {} defs["igFindViewportByPlatformHandle"][1]["funcname"] = "FindViewportByPlatformHandle" -defs["igFindViewportByPlatformHandle"][1]["location"] = "imgui:975" +defs["igFindViewportByPlatformHandle"][1]["location"] = "imgui:985" defs["igFindViewportByPlatformHandle"][1]["namespace"] = "ImGui" defs["igFindViewportByPlatformHandle"][1]["ov_cimguiname"] = "igFindViewportByPlatformHandle" defs["igFindViewportByPlatformHandle"][1]["ret"] = "ImGuiViewport*" @@ -15772,7 +16126,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:2748" +defs["igFindWindowByID"][1]["location"] = "imgui_internal:2897" defs["igFindWindowByID"][1]["namespace"] = "ImGui" defs["igFindWindowByID"][1]["ov_cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["ret"] = "ImGuiWindow*" @@ -15791,7 +16145,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:2749" +defs["igFindWindowByName"][1]["location"] = "imgui_internal:2898" defs["igFindWindowByName"][1]["namespace"] = "ImGui" defs["igFindWindowByName"][1]["ov_cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["ret"] = "ImGuiWindow*" @@ -15810,7 +16164,7 @@ defs["igFindWindowDisplayIndex"][1]["call_args"] = "(window)" defs["igFindWindowDisplayIndex"][1]["cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["defaults"] = {} defs["igFindWindowDisplayIndex"][1]["funcname"] = "FindWindowDisplayIndex" -defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:2770" +defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:2919" defs["igFindWindowDisplayIndex"][1]["namespace"] = "ImGui" defs["igFindWindowDisplayIndex"][1]["ov_cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["ret"] = "int" @@ -15829,7 +16183,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:2809" +defs["igFindWindowSettings"][1]["location"] = "imgui_internal:2958" defs["igFindWindowSettings"][1]["namespace"] = "ImGui" defs["igFindWindowSettings"][1]["ov_cimguiname"] = "igFindWindowSettings" defs["igFindWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -15851,7 +16205,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:2765" +defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:2914" defs["igFocusTopMostWindowUnderOne"][1]["namespace"] = "ImGui" defs["igFocusTopMostWindowUnderOne"][1]["ov_cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["ret"] = "void" @@ -15870,7 +16224,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:2764" +defs["igFocusWindow"][1]["location"] = "imgui_internal:2913" defs["igFocusWindow"][1]["namespace"] = "ImGui" defs["igFocusWindow"][1]["ov_cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["ret"] = "void" @@ -15889,7 +16243,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:3179" +defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3373" defs["igGcAwakeTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcAwakeTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["ret"] = "void" @@ -15905,7 +16259,7 @@ defs["igGcCompactTransientMiscBuffers"][1]["call_args"] = "()" defs["igGcCompactTransientMiscBuffers"][1]["cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["defaults"] = {} defs["igGcCompactTransientMiscBuffers"][1]["funcname"] = "GcCompactTransientMiscBuffers" -defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3177" +defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3371" defs["igGcCompactTransientMiscBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientMiscBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["ret"] = "void" @@ -15924,7 +16278,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:3178" +defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3372" defs["igGcCompactTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["ret"] = "void" @@ -15940,7 +16294,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:2834" +defs["igGetActiveID"][1]["location"] = "imgui_internal:2982" defs["igGetActiveID"][1]["namespace"] = "ImGui" defs["igGetActiveID"][1]["ov_cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["ret"] = "ImGuiID" @@ -15965,7 +16319,7 @@ defs["igGetAllocatorFunctions"][1]["call_args"] = "(p_alloc_func,p_free_func,p_u defs["igGetAllocatorFunctions"][1]["cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["defaults"] = {} defs["igGetAllocatorFunctions"][1]["funcname"] = "GetAllocatorFunctions" -defs["igGetAllocatorFunctions"][1]["location"] = "imgui:963" +defs["igGetAllocatorFunctions"][1]["location"] = "imgui:973" defs["igGetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igGetAllocatorFunctions"][1]["ov_cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["ret"] = "void" @@ -15981,7 +16335,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:880" +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:890" defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList_Nil" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" @@ -15998,7 +16352,7 @@ defs["igGetBackgroundDrawList"][2]["call_args"] = "(viewport)" defs["igGetBackgroundDrawList"][2]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][2]["defaults"] = {} defs["igGetBackgroundDrawList"][2]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][2]["location"] = "imgui:882" +defs["igGetBackgroundDrawList"][2]["location"] = "imgui:892" defs["igGetBackgroundDrawList"][2]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][2]["ov_cimguiname"] = "igGetBackgroundDrawList_ViewportPtr" defs["igGetBackgroundDrawList"][2]["ret"] = "ImDrawList*" @@ -16015,7 +16369,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:942" +defs["igGetClipboardText"][1]["location"] = "imgui:952" defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -16038,7 +16392,7 @@ defs["igGetColorU32"][1]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" -defs["igGetColorU32"][1]["location"] = "imgui:428" +defs["igGetColorU32"][1]["location"] = "imgui:435" defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32_Col" defs["igGetColorU32"][1]["ret"] = "ImU32" @@ -16055,7 +16409,7 @@ defs["igGetColorU32"][2]["call_args"] = "(col)" defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" -defs["igGetColorU32"][2]["location"] = "imgui:429" +defs["igGetColorU32"][2]["location"] = "imgui:436" defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32_Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" @@ -16072,7 +16426,7 @@ defs["igGetColorU32"][3]["call_args"] = "(col)" defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["defaults"] = {} defs["igGetColorU32"][3]["funcname"] = "GetColorU32" -defs["igGetColorU32"][3]["location"] = "imgui:430" +defs["igGetColorU32"][3]["location"] = "imgui:437" defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32_U32" defs["igGetColorU32"][3]["ret"] = "ImU32" @@ -16090,7 +16444,7 @@ defs["igGetColumnIndex"][1]["call_args"] = "()" defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" -defs["igGetColumnIndex"][1]["location"] = "imgui:776" +defs["igGetColumnIndex"][1]["location"] = "imgui:786" defs["igGetColumnIndex"][1]["namespace"] = "ImGui" defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" @@ -16112,7 +16466,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:3019" +defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:3210" defs["igGetColumnNormFromOffset"][1]["namespace"] = "ImGui" defs["igGetColumnNormFromOffset"][1]["ov_cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["ret"] = "float" @@ -16132,7 +16486,7 @@ defs["igGetColumnOffset"][1]["cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" -defs["igGetColumnOffset"][1]["location"] = "imgui:779" +defs["igGetColumnOffset"][1]["location"] = "imgui:789" defs["igGetColumnOffset"][1]["namespace"] = "ImGui" defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" @@ -16154,7 +16508,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:3018" +defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:3209" defs["igGetColumnOffsetFromNorm"][1]["namespace"] = "ImGui" defs["igGetColumnOffsetFromNorm"][1]["ov_cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["ret"] = "float" @@ -16174,7 +16528,7 @@ defs["igGetColumnWidth"][1]["cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" -defs["igGetColumnWidth"][1]["location"] = "imgui:777" +defs["igGetColumnWidth"][1]["location"] = "imgui:787" defs["igGetColumnWidth"][1]["namespace"] = "ImGui" defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" @@ -16190,7 +16544,7 @@ defs["igGetColumnsCount"][1]["call_args"] = "()" defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" -defs["igGetColumnsCount"][1]["location"] = "imgui:781" +defs["igGetColumnsCount"][1]["location"] = "imgui:791" defs["igGetColumnsCount"][1]["namespace"] = "ImGui" defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" @@ -16212,7 +16566,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:3016" +defs["igGetColumnsID"][1]["location"] = "imgui_internal:3207" defs["igGetColumnsID"][1]["namespace"] = "ImGui" defs["igGetColumnsID"][1]["ov_cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["ret"] = "ImGuiID" @@ -16231,7 +16585,7 @@ defs["igGetContentRegionAvail"][1]["call_args"] = "()" defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" -defs["igGetContentRegionAvail"][1]["location"] = "imgui:384" +defs["igGetContentRegionAvail"][1]["location"] = "imgui:389" defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][1]["nonUDT"] = 1 defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" @@ -16251,7 +16605,7 @@ defs["igGetContentRegionMax"][1]["call_args"] = "()" defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][1]["defaults"] = {} defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" -defs["igGetContentRegionMax"][1]["location"] = "imgui:385" +defs["igGetContentRegionMax"][1]["location"] = "imgui:390" defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" defs["igGetContentRegionMax"][1]["nonUDT"] = 1 defs["igGetContentRegionMax"][1]["ov_cimguiname"] = "igGetContentRegionMax" @@ -16271,7 +16625,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:2857" +defs["igGetContentRegionMaxAbs"][1]["location"] = "imgui_internal:3005" defs["igGetContentRegionMaxAbs"][1]["namespace"] = "ImGui" defs["igGetContentRegionMaxAbs"][1]["nonUDT"] = 1 defs["igGetContentRegionMaxAbs"][1]["ov_cimguiname"] = "igGetContentRegionMaxAbs" @@ -16288,13 +16642,29 @@ defs["igGetCurrentContext"][1]["call_args"] = "()" defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" -defs["igGetCurrentContext"][1]["location"] = "imgui:292" +defs["igGetCurrentContext"][1]["location"] = "imgui:296" defs["igGetCurrentContext"][1]["namespace"] = "ImGui" defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" defs["igGetCurrentContext"][1]["signature"] = "()" defs["igGetCurrentContext"][1]["stname"] = "" defs["igGetCurrentContext"]["()"] = defs["igGetCurrentContext"][1] +defs["igGetCurrentFocusScope"] = {} +defs["igGetCurrentFocusScope"][1] = {} +defs["igGetCurrentFocusScope"][1]["args"] = "()" +defs["igGetCurrentFocusScope"][1]["argsT"] = {} +defs["igGetCurrentFocusScope"][1]["argsoriginal"] = "()" +defs["igGetCurrentFocusScope"][1]["call_args"] = "()" +defs["igGetCurrentFocusScope"][1]["cimguiname"] = "igGetCurrentFocusScope" +defs["igGetCurrentFocusScope"][1]["defaults"] = {} +defs["igGetCurrentFocusScope"][1]["funcname"] = "GetCurrentFocusScope" +defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3191" +defs["igGetCurrentFocusScope"][1]["namespace"] = "ImGui" +defs["igGetCurrentFocusScope"][1]["ov_cimguiname"] = "igGetCurrentFocusScope" +defs["igGetCurrentFocusScope"][1]["ret"] = "ImGuiID" +defs["igGetCurrentFocusScope"][1]["signature"] = "()" +defs["igGetCurrentFocusScope"][1]["stname"] = "" +defs["igGetCurrentFocusScope"]["()"] = defs["igGetCurrentFocusScope"][1] defs["igGetCurrentTable"] = {} defs["igGetCurrentTable"][1] = {} defs["igGetCurrentTable"][1]["args"] = "()" @@ -16304,7 +16674,7 @@ defs["igGetCurrentTable"][1]["call_args"] = "()" defs["igGetCurrentTable"][1]["cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["defaults"] = {} defs["igGetCurrentTable"][1]["funcname"] = "GetCurrentTable" -defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3031" +defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3222" defs["igGetCurrentTable"][1]["namespace"] = "ImGui" defs["igGetCurrentTable"][1]["ov_cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["ret"] = "ImGuiTable*" @@ -16320,7 +16690,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:2747" +defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:2896" defs["igGetCurrentWindow"][1]["namespace"] = "ImGui" defs["igGetCurrentWindow"][1]["ov_cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["ret"] = "ImGuiWindow*" @@ -16336,7 +16706,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:2746" +defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:2895" defs["igGetCurrentWindowRead"][1]["namespace"] = "ImGui" defs["igGetCurrentWindowRead"][1]["ov_cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["ret"] = "ImGuiWindow*" @@ -16355,7 +16725,7 @@ defs["igGetCursorPos"][1]["call_args"] = "()" defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["igGetCursorPos"][1]["location"] = "imgui:449" +defs["igGetCursorPos"][1]["location"] = "imgui:456" defs["igGetCursorPos"][1]["namespace"] = "ImGui" defs["igGetCursorPos"][1]["nonUDT"] = 1 defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" @@ -16372,7 +16742,7 @@ defs["igGetCursorPosX"][1]["call_args"] = "()" defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" -defs["igGetCursorPosX"][1]["location"] = "imgui:450" +defs["igGetCursorPosX"][1]["location"] = "imgui:457" defs["igGetCursorPosX"][1]["namespace"] = "ImGui" defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" @@ -16388,7 +16758,7 @@ defs["igGetCursorPosY"][1]["call_args"] = "()" defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" -defs["igGetCursorPosY"][1]["location"] = "imgui:451" +defs["igGetCursorPosY"][1]["location"] = "imgui:458" defs["igGetCursorPosY"][1]["namespace"] = "ImGui" defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" @@ -16407,7 +16777,7 @@ defs["igGetCursorScreenPos"][1]["call_args"] = "()" defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" -defs["igGetCursorScreenPos"][1]["location"] = "imgui:456" +defs["igGetCursorScreenPos"][1]["location"] = "imgui:463" defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][1]["nonUDT"] = 1 defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" @@ -16427,7 +16797,7 @@ defs["igGetCursorStartPos"][1]["call_args"] = "()" defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" -defs["igGetCursorStartPos"][1]["location"] = "imgui:455" +defs["igGetCursorStartPos"][1]["location"] = "imgui:462" defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" defs["igGetCursorStartPos"][1]["nonUDT"] = 1 defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" @@ -16444,7 +16814,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:2775" +defs["igGetDefaultFont"][1]["location"] = "imgui_internal:2924" defs["igGetDefaultFont"][1]["namespace"] = "ImGui" defs["igGetDefaultFont"][1]["ov_cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["ret"] = "ImFont*" @@ -16460,7 +16830,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:833" +defs["igGetDragDropPayload"][1]["location"] = "imgui:843" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -16476,7 +16846,7 @@ defs["igGetDrawData"][1]["call_args"] = "()" defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" -defs["igGetDrawData"][1]["location"] = "imgui:301" +defs["igGetDrawData"][1]["location"] = "imgui:305" defs["igGetDrawData"][1]["namespace"] = "ImGui" defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" @@ -16492,7 +16862,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:890" +defs["igGetDrawListSharedData"][1]["location"] = "imgui:900" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -16508,45 +16878,13 @@ 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:2835" +defs["igGetFocusID"][1]["location"] = "imgui_internal:2983" defs["igGetFocusID"][1]["namespace"] = "ImGui" defs["igGetFocusID"][1]["ov_cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["ret"] = "ImGuiID" defs["igGetFocusID"][1]["signature"] = "()" defs["igGetFocusID"][1]["stname"] = "" defs["igGetFocusID"]["()"] = defs["igGetFocusID"][1] -defs["igGetFocusScope"] = {} -defs["igGetFocusScope"][1] = {} -defs["igGetFocusScope"][1]["args"] = "()" -defs["igGetFocusScope"][1]["argsT"] = {} -defs["igGetFocusScope"][1]["argsoriginal"] = "()" -defs["igGetFocusScope"][1]["call_args"] = "()" -defs["igGetFocusScope"][1]["cimguiname"] = "igGetFocusScope" -defs["igGetFocusScope"][1]["defaults"] = {} -defs["igGetFocusScope"][1]["funcname"] = "GetFocusScope" -defs["igGetFocusScope"][1]["location"] = "imgui_internal:2930" -defs["igGetFocusScope"][1]["namespace"] = "ImGui" -defs["igGetFocusScope"][1]["ov_cimguiname"] = "igGetFocusScope" -defs["igGetFocusScope"][1]["ret"] = "ImGuiID" -defs["igGetFocusScope"][1]["signature"] = "()" -defs["igGetFocusScope"][1]["stname"] = "" -defs["igGetFocusScope"]["()"] = defs["igGetFocusScope"][1] -defs["igGetFocusedFocusScope"] = {} -defs["igGetFocusedFocusScope"][1] = {} -defs["igGetFocusedFocusScope"][1]["args"] = "()" -defs["igGetFocusedFocusScope"][1]["argsT"] = {} -defs["igGetFocusedFocusScope"][1]["argsoriginal"] = "()" -defs["igGetFocusedFocusScope"][1]["call_args"] = "()" -defs["igGetFocusedFocusScope"][1]["cimguiname"] = "igGetFocusedFocusScope" -defs["igGetFocusedFocusScope"][1]["defaults"] = {} -defs["igGetFocusedFocusScope"][1]["funcname"] = "GetFocusedFocusScope" -defs["igGetFocusedFocusScope"][1]["location"] = "imgui_internal:2929" -defs["igGetFocusedFocusScope"][1]["namespace"] = "ImGui" -defs["igGetFocusedFocusScope"][1]["ov_cimguiname"] = "igGetFocusedFocusScope" -defs["igGetFocusedFocusScope"][1]["ret"] = "ImGuiID" -defs["igGetFocusedFocusScope"][1]["signature"] = "()" -defs["igGetFocusedFocusScope"][1]["stname"] = "" -defs["igGetFocusedFocusScope"]["()"] = defs["igGetFocusedFocusScope"][1] defs["igGetFont"] = {} defs["igGetFont"][1] = {} defs["igGetFont"][1]["args"] = "()" @@ -16556,7 +16894,7 @@ defs["igGetFont"][1]["call_args"] = "()" defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" -defs["igGetFont"][1]["location"] = "imgui:425" +defs["igGetFont"][1]["location"] = "imgui:432" defs["igGetFont"][1]["namespace"] = "ImGui" defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" @@ -16572,7 +16910,7 @@ defs["igGetFontSize"][1]["call_args"] = "()" defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" -defs["igGetFontSize"][1]["location"] = "imgui:426" +defs["igGetFontSize"][1]["location"] = "imgui:433" defs["igGetFontSize"][1]["namespace"] = "ImGui" defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" @@ -16591,7 +16929,7 @@ defs["igGetFontTexUvWhitePixel"][1]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:427" +defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:434" defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][1]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" @@ -16608,7 +16946,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:881" +defs["igGetForegroundDrawList"][1]["location"] = "imgui:891" defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList_Nil" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" @@ -16625,7 +16963,7 @@ defs["igGetForegroundDrawList"][2]["call_args"] = "(viewport)" defs["igGetForegroundDrawList"][2]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][2]["defaults"] = {} defs["igGetForegroundDrawList"][2]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][2]["location"] = "imgui:883" +defs["igGetForegroundDrawList"][2]["location"] = "imgui:893" defs["igGetForegroundDrawList"][2]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][2]["ov_cimguiname"] = "igGetForegroundDrawList_ViewportPtr" defs["igGetForegroundDrawList"][2]["ret"] = "ImDrawList*" @@ -16642,7 +16980,7 @@ defs["igGetForegroundDrawList"][3]["call_args"] = "(window)" defs["igGetForegroundDrawList"][3]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][3]["defaults"] = {} defs["igGetForegroundDrawList"][3]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][3]["location"] = "imgui_internal:2776" +defs["igGetForegroundDrawList"][3]["location"] = "imgui_internal:2925" defs["igGetForegroundDrawList"][3]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][3]["ov_cimguiname"] = "igGetForegroundDrawList_WindowPtr" defs["igGetForegroundDrawList"][3]["ret"] = "ImDrawList*" @@ -16660,7 +16998,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:889" +defs["igGetFrameCount"][1]["location"] = "imgui:899" defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -16676,7 +17014,7 @@ defs["igGetFrameHeight"][1]["call_args"] = "()" defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" -defs["igGetFrameHeight"][1]["location"] = "imgui:461" +defs["igGetFrameHeight"][1]["location"] = "imgui:468" defs["igGetFrameHeight"][1]["namespace"] = "ImGui" defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" @@ -16692,7 +17030,7 @@ defs["igGetFrameHeightWithSpacing"][1]["call_args"] = "()" defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" -defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:462" +defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:469" defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" @@ -16708,7 +17046,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:2839" +defs["igGetHoveredID"][1]["location"] = "imgui_internal:2987" defs["igGetHoveredID"][1]["namespace"] = "ImGui" defs["igGetHoveredID"][1]["ov_cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["ret"] = "ImGuiID" @@ -16727,7 +17065,7 @@ defs["igGetID"][1]["call_args"] = "(str_id)" defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" -defs["igGetID"][1]["location"] = "imgui:480" +defs["igGetID"][1]["location"] = "imgui:487" defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetID_Str" defs["igGetID"][1]["ret"] = "ImGuiID" @@ -16747,7 +17085,7 @@ defs["igGetID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" -defs["igGetID"][2]["location"] = "imgui:481" +defs["igGetID"][2]["location"] = "imgui:488" defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetID_StrStr" defs["igGetID"][2]["ret"] = "ImGuiID" @@ -16764,7 +17102,7 @@ defs["igGetID"][3]["call_args"] = "(ptr_id)" defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" -defs["igGetID"][3]["location"] = "imgui:482" +defs["igGetID"][3]["location"] = "imgui:489" defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetID_Ptr" defs["igGetID"][3]["ret"] = "ImGuiID" @@ -16791,7 +17129,7 @@ defs["igGetIDWithSeed"][1]["call_args"] = "(str_id_begin,str_id_end,seed)" defs["igGetIDWithSeed"][1]["cimguiname"] = "igGetIDWithSeed" defs["igGetIDWithSeed"][1]["defaults"] = {} defs["igGetIDWithSeed"][1]["funcname"] = "GetIDWithSeed" -defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:2844" +defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:2992" defs["igGetIDWithSeed"][1]["namespace"] = "ImGui" defs["igGetIDWithSeed"][1]["ov_cimguiname"] = "igGetIDWithSeed" defs["igGetIDWithSeed"][1]["ret"] = "ImGuiID" @@ -16807,7 +17145,7 @@ defs["igGetIO"][1]["call_args"] = "()" defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" -defs["igGetIO"][1]["location"] = "imgui:296" +defs["igGetIO"][1]["location"] = "imgui:300" defs["igGetIO"][1]["namespace"] = "ImGui" defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" @@ -16827,7 +17165,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:3162" +defs["igGetInputTextState"][1]["location"] = "imgui_internal:3356" defs["igGetInputTextState"][1]["namespace"] = "ImGui" defs["igGetInputTextState"][1]["ov_cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["ret"] = "ImGuiInputTextState*" @@ -16843,7 +17181,7 @@ defs["igGetItemFlags"][1]["call_args"] = "()" defs["igGetItemFlags"][1]["cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["defaults"] = {} defs["igGetItemFlags"][1]["funcname"] = "GetItemFlags" -defs["igGetItemFlags"][1]["location"] = "imgui_internal:2833" +defs["igGetItemFlags"][1]["location"] = "imgui_internal:2981" defs["igGetItemFlags"][1]["namespace"] = "ImGui" defs["igGetItemFlags"][1]["ov_cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["ret"] = "ImGuiItemFlags" @@ -16859,7 +17197,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:2831" +defs["igGetItemID"][1]["location"] = "imgui_internal:2979" defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -16878,7 +17216,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:869" +defs["igGetItemRectMax"][1]["location"] = "imgui:879" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -16898,7 +17236,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:868" +defs["igGetItemRectMin"][1]["location"] = "imgui:878" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -16918,7 +17256,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:870" +defs["igGetItemRectSize"][1]["location"] = "imgui:880" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -16935,13 +17273,38 @@ 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:2832" +defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:2980" defs["igGetItemStatusFlags"][1]["namespace"] = "ImGui" defs["igGetItemStatusFlags"][1]["ov_cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["ret"] = "ImGuiItemStatusFlags" defs["igGetItemStatusFlags"][1]["signature"] = "()" defs["igGetItemStatusFlags"][1]["stname"] = "" defs["igGetItemStatusFlags"]["()"] = defs["igGetItemStatusFlags"][1] +defs["igGetKeyChordName"] = {} +defs["igGetKeyChordName"][1] = {} +defs["igGetKeyChordName"][1]["args"] = "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)" +defs["igGetKeyChordName"][1]["argsT"] = {} +defs["igGetKeyChordName"][1]["argsT"][1] = {} +defs["igGetKeyChordName"][1]["argsT"][1]["name"] = "key_chord" +defs["igGetKeyChordName"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igGetKeyChordName"][1]["argsT"][2] = {} +defs["igGetKeyChordName"][1]["argsT"][2]["name"] = "out_buf" +defs["igGetKeyChordName"][1]["argsT"][2]["type"] = "char*" +defs["igGetKeyChordName"][1]["argsT"][3] = {} +defs["igGetKeyChordName"][1]["argsT"][3]["name"] = "out_buf_size" +defs["igGetKeyChordName"][1]["argsT"][3]["type"] = "int" +defs["igGetKeyChordName"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)" +defs["igGetKeyChordName"][1]["call_args"] = "(key_chord,out_buf,out_buf_size)" +defs["igGetKeyChordName"][1]["cimguiname"] = "igGetKeyChordName" +defs["igGetKeyChordName"][1]["defaults"] = {} +defs["igGetKeyChordName"][1]["funcname"] = "GetKeyChordName" +defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3074" +defs["igGetKeyChordName"][1]["namespace"] = "ImGui" +defs["igGetKeyChordName"][1]["ov_cimguiname"] = "igGetKeyChordName" +defs["igGetKeyChordName"][1]["ret"] = "void" +defs["igGetKeyChordName"][1]["signature"] = "(ImGuiKeyChord,char*,int)" +defs["igGetKeyChordName"][1]["stname"] = "" +defs["igGetKeyChordName"]["(ImGuiKeyChord,char*,int)"] = defs["igGetKeyChordName"][1] defs["igGetKeyData"] = {} defs["igGetKeyData"][1] = {} defs["igGetKeyData"][1]["args"] = "(ImGuiKey key)" @@ -16954,7 +17317,7 @@ defs["igGetKeyData"][1]["call_args"] = "(key)" defs["igGetKeyData"][1]["cimguiname"] = "igGetKeyData" defs["igGetKeyData"][1]["defaults"] = {} defs["igGetKeyData"][1]["funcname"] = "GetKeyData" -defs["igGetKeyData"][1]["location"] = "imgui_internal:2937" +defs["igGetKeyData"][1]["location"] = "imgui_internal:3073" defs["igGetKeyData"][1]["namespace"] = "ImGui" defs["igGetKeyData"][1]["ov_cimguiname"] = "igGetKeyData" defs["igGetKeyData"][1]["ret"] = "ImGuiKeyData*" @@ -16973,10 +17336,10 @@ defs["igGetKeyIndex"][1]["call_args"] = "(key)" defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["defaults"] = {} defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" -defs["igGetKeyIndex"][1]["location"] = "imgui:3219" +defs["igGetKeyIndex"][1]["location"] = "imgui:3213" defs["igGetKeyIndex"][1]["namespace"] = "ImGui" defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" -defs["igGetKeyIndex"][1]["ret"] = "int" +defs["igGetKeyIndex"][1]["ret"] = "ImGuiKey" defs["igGetKeyIndex"][1]["signature"] = "(ImGuiKey)" defs["igGetKeyIndex"][1]["stname"] = "" defs["igGetKeyIndex"]["(ImGuiKey)"] = defs["igGetKeyIndex"][1] @@ -16992,13 +17355,51 @@ defs["igGetKeyName"][1]["call_args"] = "(key)" defs["igGetKeyName"][1]["cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["defaults"] = {} defs["igGetKeyName"][1]["funcname"] = "GetKeyName" -defs["igGetKeyName"][1]["location"] = "imgui:916" +defs["igGetKeyName"][1]["location"] = "imgui:926" defs["igGetKeyName"][1]["namespace"] = "ImGui" defs["igGetKeyName"][1]["ov_cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["ret"] = "const char*" defs["igGetKeyName"][1]["signature"] = "(ImGuiKey)" defs["igGetKeyName"][1]["stname"] = "" defs["igGetKeyName"]["(ImGuiKey)"] = defs["igGetKeyName"][1] +defs["igGetKeyOwner"] = {} +defs["igGetKeyOwner"][1] = {} +defs["igGetKeyOwner"][1]["args"] = "(ImGuiKey key)" +defs["igGetKeyOwner"][1]["argsT"] = {} +defs["igGetKeyOwner"][1]["argsT"][1] = {} +defs["igGetKeyOwner"][1]["argsT"][1]["name"] = "key" +defs["igGetKeyOwner"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igGetKeyOwner"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igGetKeyOwner"][1]["call_args"] = "(key)" +defs["igGetKeyOwner"][1]["cimguiname"] = "igGetKeyOwner" +defs["igGetKeyOwner"][1]["defaults"] = {} +defs["igGetKeyOwner"][1]["funcname"] = "GetKeyOwner" +defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3095" +defs["igGetKeyOwner"][1]["namespace"] = "ImGui" +defs["igGetKeyOwner"][1]["ov_cimguiname"] = "igGetKeyOwner" +defs["igGetKeyOwner"][1]["ret"] = "ImGuiID" +defs["igGetKeyOwner"][1]["signature"] = "(ImGuiKey)" +defs["igGetKeyOwner"][1]["stname"] = "" +defs["igGetKeyOwner"]["(ImGuiKey)"] = defs["igGetKeyOwner"][1] +defs["igGetKeyOwnerData"] = {} +defs["igGetKeyOwnerData"][1] = {} +defs["igGetKeyOwnerData"][1]["args"] = "(ImGuiKey key)" +defs["igGetKeyOwnerData"][1]["argsT"] = {} +defs["igGetKeyOwnerData"][1]["argsT"][1] = {} +defs["igGetKeyOwnerData"][1]["argsT"][1]["name"] = "key" +defs["igGetKeyOwnerData"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igGetKeyOwnerData"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igGetKeyOwnerData"][1]["call_args"] = "(key)" +defs["igGetKeyOwnerData"][1]["cimguiname"] = "igGetKeyOwnerData" +defs["igGetKeyOwnerData"][1]["defaults"] = {} +defs["igGetKeyOwnerData"][1]["funcname"] = "GetKeyOwnerData" +defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3099" +defs["igGetKeyOwnerData"][1]["namespace"] = "ImGui" +defs["igGetKeyOwnerData"][1]["ov_cimguiname"] = "igGetKeyOwnerData" +defs["igGetKeyOwnerData"][1]["ret"] = "ImGuiKeyOwnerData*" +defs["igGetKeyOwnerData"][1]["signature"] = "(ImGuiKey)" +defs["igGetKeyOwnerData"][1]["stname"] = "" +defs["igGetKeyOwnerData"]["(ImGuiKey)"] = defs["igGetKeyOwnerData"][1] defs["igGetKeyPressedAmount"] = {} defs["igGetKeyPressedAmount"][1] = {} defs["igGetKeyPressedAmount"][1]["args"] = "(ImGuiKey key,float repeat_delay,float rate)" @@ -17017,13 +17418,45 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui:915" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:925" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" defs["igGetKeyPressedAmount"][1]["signature"] = "(ImGuiKey,float,float)" defs["igGetKeyPressedAmount"][1]["stname"] = "" defs["igGetKeyPressedAmount"]["(ImGuiKey,float,float)"] = defs["igGetKeyPressedAmount"][1] +defs["igGetKeyVector2d"] = {} +defs["igGetKeyVector2d"][1] = {} +defs["igGetKeyVector2d"][1]["args"] = "(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down)" +defs["igGetKeyVector2d"][1]["argsT"] = {} +defs["igGetKeyVector2d"][1]["argsT"][1] = {} +defs["igGetKeyVector2d"][1]["argsT"][1]["name"] = "pOut" +defs["igGetKeyVector2d"][1]["argsT"][1]["type"] = "ImVec2*" +defs["igGetKeyVector2d"][1]["argsT"][2] = {} +defs["igGetKeyVector2d"][1]["argsT"][2]["name"] = "key_left" +defs["igGetKeyVector2d"][1]["argsT"][2]["type"] = "ImGuiKey" +defs["igGetKeyVector2d"][1]["argsT"][3] = {} +defs["igGetKeyVector2d"][1]["argsT"][3]["name"] = "key_right" +defs["igGetKeyVector2d"][1]["argsT"][3]["type"] = "ImGuiKey" +defs["igGetKeyVector2d"][1]["argsT"][4] = {} +defs["igGetKeyVector2d"][1]["argsT"][4]["name"] = "key_up" +defs["igGetKeyVector2d"][1]["argsT"][4]["type"] = "ImGuiKey" +defs["igGetKeyVector2d"][1]["argsT"][5] = {} +defs["igGetKeyVector2d"][1]["argsT"][5]["name"] = "key_down" +defs["igGetKeyVector2d"][1]["argsT"][5]["type"] = "ImGuiKey" +defs["igGetKeyVector2d"][1]["argsoriginal"] = "(ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down)" +defs["igGetKeyVector2d"][1]["call_args"] = "(key_left,key_right,key_up,key_down)" +defs["igGetKeyVector2d"][1]["cimguiname"] = "igGetKeyVector2d" +defs["igGetKeyVector2d"][1]["defaults"] = {} +defs["igGetKeyVector2d"][1]["funcname"] = "GetKeyVector2d" +defs["igGetKeyVector2d"][1]["location"] = "imgui_internal:3077" +defs["igGetKeyVector2d"][1]["namespace"] = "ImGui" +defs["igGetKeyVector2d"][1]["nonUDT"] = 1 +defs["igGetKeyVector2d"][1]["ov_cimguiname"] = "igGetKeyVector2d" +defs["igGetKeyVector2d"][1]["ret"] = "void" +defs["igGetKeyVector2d"][1]["signature"] = "(ImGuiKey,ImGuiKey,ImGuiKey,ImGuiKey)" +defs["igGetKeyVector2d"][1]["stname"] = "" +defs["igGetKeyVector2d"]["(ImGuiKey,ImGuiKey,ImGuiKey,ImGuiKey)"] = defs["igGetKeyVector2d"][1] defs["igGetMainViewport"] = {} defs["igGetMainViewport"][1] = {} defs["igGetMainViewport"][1]["args"] = "()" @@ -17033,29 +17466,13 @@ defs["igGetMainViewport"][1]["call_args"] = "()" defs["igGetMainViewport"][1]["cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["defaults"] = {} defs["igGetMainViewport"][1]["funcname"] = "GetMainViewport" -defs["igGetMainViewport"][1]["location"] = "imgui:877" +defs["igGetMainViewport"][1]["location"] = "imgui:887" defs["igGetMainViewport"][1]["namespace"] = "ImGui" defs["igGetMainViewport"][1]["ov_cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["ret"] = "ImGuiViewport*" defs["igGetMainViewport"][1]["signature"] = "()" defs["igGetMainViewport"][1]["stname"] = "" defs["igGetMainViewport"]["()"] = defs["igGetMainViewport"][1] -defs["igGetMergedModFlags"] = {} -defs["igGetMergedModFlags"][1] = {} -defs["igGetMergedModFlags"][1]["args"] = "()" -defs["igGetMergedModFlags"][1]["argsT"] = {} -defs["igGetMergedModFlags"][1]["argsoriginal"] = "()" -defs["igGetMergedModFlags"][1]["call_args"] = "()" -defs["igGetMergedModFlags"][1]["cimguiname"] = "igGetMergedModFlags" -defs["igGetMergedModFlags"][1]["defaults"] = {} -defs["igGetMergedModFlags"][1]["funcname"] = "GetMergedModFlags" -defs["igGetMergedModFlags"][1]["location"] = "imgui_internal:2947" -defs["igGetMergedModFlags"][1]["namespace"] = "ImGui" -defs["igGetMergedModFlags"][1]["ov_cimguiname"] = "igGetMergedModFlags" -defs["igGetMergedModFlags"][1]["ret"] = "ImGuiModFlags" -defs["igGetMergedModFlags"][1]["signature"] = "()" -defs["igGetMergedModFlags"][1]["stname"] = "" -defs["igGetMergedModFlags"]["()"] = defs["igGetMergedModFlags"][1] defs["igGetMouseClickedCount"] = {} defs["igGetMouseClickedCount"][1] = {} defs["igGetMouseClickedCount"][1]["args"] = "(ImGuiMouseButton button)" @@ -17068,7 +17485,7 @@ defs["igGetMouseClickedCount"][1]["call_args"] = "(button)" defs["igGetMouseClickedCount"][1]["cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["defaults"] = {} defs["igGetMouseClickedCount"][1]["funcname"] = "GetMouseClickedCount" -defs["igGetMouseClickedCount"][1]["location"] = "imgui:927" +defs["igGetMouseClickedCount"][1]["location"] = "imgui:937" defs["igGetMouseClickedCount"][1]["namespace"] = "ImGui" defs["igGetMouseClickedCount"][1]["ov_cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["ret"] = "int" @@ -17084,7 +17501,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:936" +defs["igGetMouseCursor"][1]["location"] = "imgui:946" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -17111,7 +17528,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:934" +defs["igGetMouseDragDelta"][1]["location"] = "imgui:944" defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -17131,7 +17548,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:931" +defs["igGetMousePos"][1]["location"] = "imgui:941" defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -17151,7 +17568,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:932" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:942" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -17159,81 +17576,25 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["ret"] = "void" defs["igGetMousePosOnOpeningCurrentPopup"][1]["signature"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["stname"] = "" defs["igGetMousePosOnOpeningCurrentPopup"]["()"] = defs["igGetMousePosOnOpeningCurrentPopup"][1] -defs["igGetNavInputAmount"] = {} -defs["igGetNavInputAmount"][1] = {} -defs["igGetNavInputAmount"][1]["args"] = "(ImGuiNavInput n,ImGuiNavReadMode mode)" -defs["igGetNavInputAmount"][1]["argsT"] = {} -defs["igGetNavInputAmount"][1]["argsT"][1] = {} -defs["igGetNavInputAmount"][1]["argsT"][1]["name"] = "n" -defs["igGetNavInputAmount"][1]["argsT"][1]["type"] = "ImGuiNavInput" -defs["igGetNavInputAmount"][1]["argsT"][2] = {} -defs["igGetNavInputAmount"][1]["argsT"][2]["name"] = "mode" -defs["igGetNavInputAmount"][1]["argsT"][2]["type"] = "ImGuiNavReadMode" -defs["igGetNavInputAmount"][1]["argsoriginal"] = "(ImGuiNavInput n,ImGuiNavReadMode mode)" -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:2917" -defs["igGetNavInputAmount"][1]["namespace"] = "ImGui" -defs["igGetNavInputAmount"][1]["ov_cimguiname"] = "igGetNavInputAmount" -defs["igGetNavInputAmount"][1]["ret"] = "float" -defs["igGetNavInputAmount"][1]["signature"] = "(ImGuiNavInput,ImGuiNavReadMode)" -defs["igGetNavInputAmount"][1]["stname"] = "" -defs["igGetNavInputAmount"]["(ImGuiNavInput,ImGuiNavReadMode)"] = defs["igGetNavInputAmount"][1] -defs["igGetNavInputAmount2d"] = {} -defs["igGetNavInputAmount2d"][1] = {} -defs["igGetNavInputAmount2d"][1]["args"] = "(ImVec2 *pOut,ImGuiNavDirSourceFlags dir_sources,ImGuiNavReadMode mode,float slow_factor,float fast_factor)" -defs["igGetNavInputAmount2d"][1]["argsT"] = {} -defs["igGetNavInputAmount2d"][1]["argsT"][1] = {} -defs["igGetNavInputAmount2d"][1]["argsT"][1]["name"] = "pOut" -defs["igGetNavInputAmount2d"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetNavInputAmount2d"][1]["argsT"][2] = {} -defs["igGetNavInputAmount2d"][1]["argsT"][2]["name"] = "dir_sources" -defs["igGetNavInputAmount2d"][1]["argsT"][2]["type"] = "ImGuiNavDirSourceFlags" -defs["igGetNavInputAmount2d"][1]["argsT"][3] = {} -defs["igGetNavInputAmount2d"][1]["argsT"][3]["name"] = "mode" -defs["igGetNavInputAmount2d"][1]["argsT"][3]["type"] = "ImGuiNavReadMode" -defs["igGetNavInputAmount2d"][1]["argsT"][4] = {} -defs["igGetNavInputAmount2d"][1]["argsT"][4]["name"] = "slow_factor" -defs["igGetNavInputAmount2d"][1]["argsT"][4]["type"] = "float" -defs["igGetNavInputAmount2d"][1]["argsT"][5] = {} -defs["igGetNavInputAmount2d"][1]["argsT"][5]["name"] = "fast_factor" -defs["igGetNavInputAmount2d"][1]["argsT"][5]["type"] = "float" -defs["igGetNavInputAmount2d"][1]["argsoriginal"] = "(ImGuiNavDirSourceFlags dir_sources,ImGuiNavReadMode mode,float slow_factor=0.0f,float fast_factor=0.0f)" -defs["igGetNavInputAmount2d"][1]["call_args"] = "(dir_sources,mode,slow_factor,fast_factor)" -defs["igGetNavInputAmount2d"][1]["cimguiname"] = "igGetNavInputAmount2d" -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:2918" -defs["igGetNavInputAmount2d"][1]["namespace"] = "ImGui" -defs["igGetNavInputAmount2d"][1]["nonUDT"] = 1 -defs["igGetNavInputAmount2d"][1]["ov_cimguiname"] = "igGetNavInputAmount2d" -defs["igGetNavInputAmount2d"][1]["ret"] = "void" -defs["igGetNavInputAmount2d"][1]["signature"] = "(ImGuiNavDirSourceFlags,ImGuiNavReadMode,float,float)" -defs["igGetNavInputAmount2d"][1]["stname"] = "" -defs["igGetNavInputAmount2d"]["(ImGuiNavDirSourceFlags,ImGuiNavReadMode,float,float)"] = defs["igGetNavInputAmount2d"][1] -defs["igGetNavInputName"] = {} -defs["igGetNavInputName"][1] = {} -defs["igGetNavInputName"][1]["args"] = "(ImGuiNavInput n)" -defs["igGetNavInputName"][1]["argsT"] = {} -defs["igGetNavInputName"][1]["argsT"][1] = {} -defs["igGetNavInputName"][1]["argsT"][1]["name"] = "n" -defs["igGetNavInputName"][1]["argsT"][1]["type"] = "ImGuiNavInput" -defs["igGetNavInputName"][1]["argsoriginal"] = "(ImGuiNavInput n)" -defs["igGetNavInputName"][1]["call_args"] = "(n)" -defs["igGetNavInputName"][1]["cimguiname"] = "igGetNavInputName" -defs["igGetNavInputName"][1]["defaults"] = {} -defs["igGetNavInputName"][1]["funcname"] = "GetNavInputName" -defs["igGetNavInputName"][1]["location"] = "imgui_internal:2916" -defs["igGetNavInputName"][1]["namespace"] = "ImGui" -defs["igGetNavInputName"][1]["ov_cimguiname"] = "igGetNavInputName" -defs["igGetNavInputName"][1]["ret"] = "const char*" -defs["igGetNavInputName"][1]["signature"] = "(ImGuiNavInput)" -defs["igGetNavInputName"][1]["stname"] = "" -defs["igGetNavInputName"]["(ImGuiNavInput)"] = defs["igGetNavInputName"][1] +defs["igGetNavTweakPressedAmount"] = {} +defs["igGetNavTweakPressedAmount"][1] = {} +defs["igGetNavTweakPressedAmount"][1]["args"] = "(ImGuiAxis axis)" +defs["igGetNavTweakPressedAmount"][1]["argsT"] = {} +defs["igGetNavTweakPressedAmount"][1]["argsT"][1] = {} +defs["igGetNavTweakPressedAmount"][1]["argsT"][1]["name"] = "axis" +defs["igGetNavTweakPressedAmount"][1]["argsT"][1]["type"] = "ImGuiAxis" +defs["igGetNavTweakPressedAmount"][1]["argsoriginal"] = "(ImGuiAxis axis)" +defs["igGetNavTweakPressedAmount"][1]["call_args"] = "(axis)" +defs["igGetNavTweakPressedAmount"][1]["cimguiname"] = "igGetNavTweakPressedAmount" +defs["igGetNavTweakPressedAmount"][1]["defaults"] = {} +defs["igGetNavTweakPressedAmount"][1]["funcname"] = "GetNavTweakPressedAmount" +defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3078" +defs["igGetNavTweakPressedAmount"][1]["namespace"] = "ImGui" +defs["igGetNavTweakPressedAmount"][1]["ov_cimguiname"] = "igGetNavTweakPressedAmount" +defs["igGetNavTweakPressedAmount"][1]["ret"] = "float" +defs["igGetNavTweakPressedAmount"][1]["signature"] = "(ImGuiAxis)" +defs["igGetNavTweakPressedAmount"][1]["stname"] = "" +defs["igGetNavTweakPressedAmount"]["(ImGuiAxis)"] = defs["igGetNavTweakPressedAmount"][1] defs["igGetPlatformIO"] = {} defs["igGetPlatformIO"][1] = {} defs["igGetPlatformIO"][1]["args"] = "()" @@ -17243,7 +17604,7 @@ defs["igGetPlatformIO"][1]["call_args"] = "()" defs["igGetPlatformIO"][1]["cimguiname"] = "igGetPlatformIO" defs["igGetPlatformIO"][1]["defaults"] = {} defs["igGetPlatformIO"][1]["funcname"] = "GetPlatformIO" -defs["igGetPlatformIO"][1]["location"] = "imgui:970" +defs["igGetPlatformIO"][1]["location"] = "imgui:980" defs["igGetPlatformIO"][1]["namespace"] = "ImGui" defs["igGetPlatformIO"][1]["ov_cimguiname"] = "igGetPlatformIO" defs["igGetPlatformIO"][1]["ret"] = "ImGuiPlatformIO*" @@ -17266,7 +17627,7 @@ defs["igGetPopupAllowedExtentRect"][1]["call_args"] = "(window)" defs["igGetPopupAllowedExtentRect"][1]["cimguiname"] = "igGetPopupAllowedExtentRect" defs["igGetPopupAllowedExtentRect"][1]["defaults"] = {} defs["igGetPopupAllowedExtentRect"][1]["funcname"] = "GetPopupAllowedExtentRect" -defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:2890" +defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:3027" defs["igGetPopupAllowedExtentRect"][1]["namespace"] = "ImGui" defs["igGetPopupAllowedExtentRect"][1]["nonUDT"] = 1 defs["igGetPopupAllowedExtentRect"][1]["ov_cimguiname"] = "igGetPopupAllowedExtentRect" @@ -17283,7 +17644,7 @@ defs["igGetScrollMaxX"][1]["call_args"] = "()" defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" -defs["igGetScrollMaxX"][1]["location"] = "imgui:394" +defs["igGetScrollMaxX"][1]["location"] = "imgui:401" defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" @@ -17299,7 +17660,7 @@ defs["igGetScrollMaxY"][1]["call_args"] = "()" defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" -defs["igGetScrollMaxY"][1]["location"] = "imgui:395" +defs["igGetScrollMaxY"][1]["location"] = "imgui:402" defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" @@ -17315,7 +17676,7 @@ defs["igGetScrollX"][1]["call_args"] = "()" defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" -defs["igGetScrollX"][1]["location"] = "imgui:390" +defs["igGetScrollX"][1]["location"] = "imgui:397" defs["igGetScrollX"][1]["namespace"] = "ImGui" defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" @@ -17331,13 +17692,32 @@ defs["igGetScrollY"][1]["call_args"] = "()" defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" -defs["igGetScrollY"][1]["location"] = "imgui:391" +defs["igGetScrollY"][1]["location"] = "imgui:398" defs["igGetScrollY"][1]["namespace"] = "ImGui" defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" defs["igGetScrollY"][1]["signature"] = "()" defs["igGetScrollY"][1]["stname"] = "" defs["igGetScrollY"]["()"] = defs["igGetScrollY"][1] +defs["igGetShortcutRoutingData"] = {} +defs["igGetShortcutRoutingData"][1] = {} +defs["igGetShortcutRoutingData"][1]["args"] = "(ImGuiKeyChord key_chord)" +defs["igGetShortcutRoutingData"][1]["argsT"] = {} +defs["igGetShortcutRoutingData"][1]["argsT"][1] = {} +defs["igGetShortcutRoutingData"][1]["argsT"][1]["name"] = "key_chord" +defs["igGetShortcutRoutingData"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igGetShortcutRoutingData"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" +defs["igGetShortcutRoutingData"][1]["call_args"] = "(key_chord)" +defs["igGetShortcutRoutingData"][1]["cimguiname"] = "igGetShortcutRoutingData" +defs["igGetShortcutRoutingData"][1]["defaults"] = {} +defs["igGetShortcutRoutingData"][1]["funcname"] = "GetShortcutRoutingData" +defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3127" +defs["igGetShortcutRoutingData"][1]["namespace"] = "ImGui" +defs["igGetShortcutRoutingData"][1]["ov_cimguiname"] = "igGetShortcutRoutingData" +defs["igGetShortcutRoutingData"][1]["ret"] = "ImGuiKeyRoutingData*" +defs["igGetShortcutRoutingData"][1]["signature"] = "(ImGuiKeyChord)" +defs["igGetShortcutRoutingData"][1]["stname"] = "" +defs["igGetShortcutRoutingData"]["(ImGuiKeyChord)"] = defs["igGetShortcutRoutingData"][1] defs["igGetStateStorage"] = {} defs["igGetStateStorage"][1] = {} defs["igGetStateStorage"][1]["args"] = "()" @@ -17347,7 +17727,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:893" +defs["igGetStateStorage"][1]["location"] = "imgui:903" defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -17363,7 +17743,7 @@ defs["igGetStyle"][1]["call_args"] = "()" defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" -defs["igGetStyle"][1]["location"] = "imgui:297" +defs["igGetStyle"][1]["location"] = "imgui:301" defs["igGetStyle"][1]["namespace"] = "ImGui" defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" @@ -17383,7 +17763,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:891" +defs["igGetStyleColorName"][1]["location"] = "imgui:901" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -17402,7 +17782,7 @@ defs["igGetStyleColorVec4"][1]["call_args"] = "(idx)" defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" -defs["igGetStyleColorVec4"][1]["location"] = "imgui:431" +defs["igGetStyleColorVec4"][1]["location"] = "imgui:438" defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" @@ -17419,7 +17799,7 @@ defs["igGetTextLineHeight"][1]["call_args"] = "()" defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" -defs["igGetTextLineHeight"][1]["location"] = "imgui:459" +defs["igGetTextLineHeight"][1]["location"] = "imgui:466" defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" @@ -17435,7 +17815,7 @@ defs["igGetTextLineHeightWithSpacing"][1]["call_args"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" -defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:460" +defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:467" defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" @@ -17451,7 +17831,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:888" +defs["igGetTime"][1]["location"] = "imgui:898" defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -17467,7 +17847,7 @@ defs["igGetTopMostAndVisiblePopupModal"][1]["call_args"] = "()" defs["igGetTopMostAndVisiblePopupModal"][1]["cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["defaults"] = {} defs["igGetTopMostAndVisiblePopupModal"][1]["funcname"] = "GetTopMostAndVisiblePopupModal" -defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:2892" +defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3029" defs["igGetTopMostAndVisiblePopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostAndVisiblePopupModal"][1]["ov_cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["ret"] = "ImGuiWindow*" @@ -17483,7 +17863,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:2891" +defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:3028" defs["igGetTopMostPopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostPopupModal"][1]["ov_cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["ret"] = "ImGuiWindow*" @@ -17499,13 +17879,38 @@ defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" -defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:614" +defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:624" defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" defs["igGetTreeNodeToLabelSpacing"][1]["signature"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["stname"] = "" defs["igGetTreeNodeToLabelSpacing"]["()"] = defs["igGetTreeNodeToLabelSpacing"][1] +defs["igGetTypematicRepeatRate"] = {} +defs["igGetTypematicRepeatRate"][1] = {} +defs["igGetTypematicRepeatRate"][1]["args"] = "(ImGuiInputFlags flags,float* repeat_delay,float* repeat_rate)" +defs["igGetTypematicRepeatRate"][1]["argsT"] = {} +defs["igGetTypematicRepeatRate"][1]["argsT"][1] = {} +defs["igGetTypematicRepeatRate"][1]["argsT"][1]["name"] = "flags" +defs["igGetTypematicRepeatRate"][1]["argsT"][1]["type"] = "ImGuiInputFlags" +defs["igGetTypematicRepeatRate"][1]["argsT"][2] = {} +defs["igGetTypematicRepeatRate"][1]["argsT"][2]["name"] = "repeat_delay" +defs["igGetTypematicRepeatRate"][1]["argsT"][2]["type"] = "float*" +defs["igGetTypematicRepeatRate"][1]["argsT"][3] = {} +defs["igGetTypematicRepeatRate"][1]["argsT"][3]["name"] = "repeat_rate" +defs["igGetTypematicRepeatRate"][1]["argsT"][3]["type"] = "float*" +defs["igGetTypematicRepeatRate"][1]["argsoriginal"] = "(ImGuiInputFlags flags,float* repeat_delay,float* repeat_rate)" +defs["igGetTypematicRepeatRate"][1]["call_args"] = "(flags,repeat_delay,repeat_rate)" +defs["igGetTypematicRepeatRate"][1]["cimguiname"] = "igGetTypematicRepeatRate" +defs["igGetTypematicRepeatRate"][1]["defaults"] = {} +defs["igGetTypematicRepeatRate"][1]["funcname"] = "GetTypematicRepeatRate" +defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3080" +defs["igGetTypematicRepeatRate"][1]["namespace"] = "ImGui" +defs["igGetTypematicRepeatRate"][1]["ov_cimguiname"] = "igGetTypematicRepeatRate" +defs["igGetTypematicRepeatRate"][1]["ret"] = "void" +defs["igGetTypematicRepeatRate"][1]["signature"] = "(ImGuiInputFlags,float*,float*)" +defs["igGetTypematicRepeatRate"][1]["stname"] = "" +defs["igGetTypematicRepeatRate"]["(ImGuiInputFlags,float*,float*)"] = defs["igGetTypematicRepeatRate"][1] defs["igGetVersion"] = {} defs["igGetVersion"][1] = {} defs["igGetVersion"][1]["args"] = "()" @@ -17515,7 +17920,7 @@ defs["igGetVersion"][1]["call_args"] = "()" defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" -defs["igGetVersion"][1]["location"] = "imgui:313" +defs["igGetVersion"][1]["location"] = "imgui:317" defs["igGetVersion"][1]["namespace"] = "ImGui" defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" @@ -17534,7 +17939,7 @@ defs["igGetViewportPlatformMonitor"][1]["call_args"] = "(viewport)" defs["igGetViewportPlatformMonitor"][1]["cimguiname"] = "igGetViewportPlatformMonitor" defs["igGetViewportPlatformMonitor"][1]["defaults"] = {} defs["igGetViewportPlatformMonitor"][1]["funcname"] = "GetViewportPlatformMonitor" -defs["igGetViewportPlatformMonitor"][1]["location"] = "imgui_internal:2801" +defs["igGetViewportPlatformMonitor"][1]["location"] = "imgui_internal:2950" defs["igGetViewportPlatformMonitor"][1]["namespace"] = "ImGui" defs["igGetViewportPlatformMonitor"][1]["ov_cimguiname"] = "igGetViewportPlatformMonitor" defs["igGetViewportPlatformMonitor"][1]["ret"] = "const ImGuiPlatformMonitor*" @@ -17553,7 +17958,7 @@ defs["igGetWindowAlwaysWantOwnTabBar"][1]["call_args"] = "(window)" defs["igGetWindowAlwaysWantOwnTabBar"][1]["cimguiname"] = "igGetWindowAlwaysWantOwnTabBar" defs["igGetWindowAlwaysWantOwnTabBar"][1]["defaults"] = {} defs["igGetWindowAlwaysWantOwnTabBar"][1]["funcname"] = "GetWindowAlwaysWantOwnTabBar" -defs["igGetWindowAlwaysWantOwnTabBar"][1]["location"] = "imgui_internal:2973" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["location"] = "imgui_internal:3151" defs["igGetWindowAlwaysWantOwnTabBar"][1]["namespace"] = "ImGui" defs["igGetWindowAlwaysWantOwnTabBar"][1]["ov_cimguiname"] = "igGetWindowAlwaysWantOwnTabBar" defs["igGetWindowAlwaysWantOwnTabBar"][1]["ret"] = "bool" @@ -17572,7 +17977,7 @@ defs["igGetWindowContentRegionMax"][1]["call_args"] = "()" defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegionMax" defs["igGetWindowContentRegionMax"][1]["defaults"] = {} defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:387" +defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:392" defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionMax"][1]["nonUDT"] = 1 defs["igGetWindowContentRegionMax"][1]["ov_cimguiname"] = "igGetWindowContentRegionMax" @@ -17592,7 +17997,7 @@ defs["igGetWindowContentRegionMin"][1]["call_args"] = "()" defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegionMin" defs["igGetWindowContentRegionMin"][1]["defaults"] = {} defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:386" +defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:391" defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionMin"][1]["nonUDT"] = 1 defs["igGetWindowContentRegionMin"][1]["ov_cimguiname"] = "igGetWindowContentRegionMin" @@ -17609,7 +18014,7 @@ defs["igGetWindowDockID"][1]["call_args"] = "()" defs["igGetWindowDockID"][1]["cimguiname"] = "igGetWindowDockID" defs["igGetWindowDockID"][1]["defaults"] = {} defs["igGetWindowDockID"][1]["funcname"] = "GetWindowDockID" -defs["igGetWindowDockID"][1]["location"] = "imgui:809" +defs["igGetWindowDockID"][1]["location"] = "imgui:819" defs["igGetWindowDockID"][1]["namespace"] = "ImGui" defs["igGetWindowDockID"][1]["ov_cimguiname"] = "igGetWindowDockID" defs["igGetWindowDockID"][1]["ret"] = "ImGuiID" @@ -17625,7 +18030,7 @@ defs["igGetWindowDockNode"][1]["call_args"] = "()" defs["igGetWindowDockNode"][1]["cimguiname"] = "igGetWindowDockNode" defs["igGetWindowDockNode"][1]["defaults"] = {} defs["igGetWindowDockNode"][1]["funcname"] = "GetWindowDockNode" -defs["igGetWindowDockNode"][1]["location"] = "imgui_internal:2972" +defs["igGetWindowDockNode"][1]["location"] = "imgui_internal:3150" defs["igGetWindowDockNode"][1]["namespace"] = "ImGui" defs["igGetWindowDockNode"][1]["ov_cimguiname"] = "igGetWindowDockNode" defs["igGetWindowDockNode"][1]["ret"] = "ImGuiDockNode*" @@ -17641,7 +18046,7 @@ defs["igGetWindowDpiScale"][1]["call_args"] = "()" defs["igGetWindowDpiScale"][1]["cimguiname"] = "igGetWindowDpiScale" defs["igGetWindowDpiScale"][1]["defaults"] = {} defs["igGetWindowDpiScale"][1]["funcname"] = "GetWindowDpiScale" -defs["igGetWindowDpiScale"][1]["location"] = "imgui:354" +defs["igGetWindowDpiScale"][1]["location"] = "imgui:358" defs["igGetWindowDpiScale"][1]["namespace"] = "ImGui" defs["igGetWindowDpiScale"][1]["ov_cimguiname"] = "igGetWindowDpiScale" defs["igGetWindowDpiScale"][1]["ret"] = "float" @@ -17657,7 +18062,7 @@ defs["igGetWindowDrawList"][1]["call_args"] = "()" defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" -defs["igGetWindowDrawList"][1]["location"] = "imgui:353" +defs["igGetWindowDrawList"][1]["location"] = "imgui:357" defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" @@ -17673,7 +18078,7 @@ defs["igGetWindowHeight"][1]["call_args"] = "()" defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" -defs["igGetWindowHeight"][1]["location"] = "imgui:358" +defs["igGetWindowHeight"][1]["location"] = "imgui:362" defs["igGetWindowHeight"][1]["namespace"] = "ImGui" defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" @@ -17692,7 +18097,7 @@ defs["igGetWindowPos"][1]["call_args"] = "()" defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" -defs["igGetWindowPos"][1]["location"] = "imgui:355" +defs["igGetWindowPos"][1]["location"] = "imgui:359" defs["igGetWindowPos"][1]["namespace"] = "ImGui" defs["igGetWindowPos"][1]["nonUDT"] = 1 defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" @@ -17715,7 +18120,7 @@ defs["igGetWindowResizeBorderID"][1]["call_args"] = "(window,dir)" defs["igGetWindowResizeBorderID"][1]["cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["defaults"] = {} defs["igGetWindowResizeBorderID"][1]["funcname"] = "GetWindowResizeBorderID" -defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3125" +defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3318" defs["igGetWindowResizeBorderID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeBorderID"][1]["ov_cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["ret"] = "ImGuiID" @@ -17737,7 +18142,7 @@ defs["igGetWindowResizeCornerID"][1]["call_args"] = "(window,n)" defs["igGetWindowResizeCornerID"][1]["cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["defaults"] = {} defs["igGetWindowResizeCornerID"][1]["funcname"] = "GetWindowResizeCornerID" -defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3124" +defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3317" defs["igGetWindowResizeCornerID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeCornerID"][1]["ov_cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["ret"] = "ImGuiID" @@ -17759,7 +18164,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:3123" +defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3316" defs["igGetWindowScrollbarID"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarID"][1]["ov_cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["ret"] = "ImGuiID" @@ -17784,7 +18189,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:3122" +defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3315" defs["igGetWindowScrollbarRect"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarRect"][1]["nonUDT"] = 1 defs["igGetWindowScrollbarRect"][1]["ov_cimguiname"] = "igGetWindowScrollbarRect" @@ -17804,7 +18209,7 @@ defs["igGetWindowSize"][1]["call_args"] = "()" defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" -defs["igGetWindowSize"][1]["location"] = "imgui:356" +defs["igGetWindowSize"][1]["location"] = "imgui:360" defs["igGetWindowSize"][1]["namespace"] = "ImGui" defs["igGetWindowSize"][1]["nonUDT"] = 1 defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" @@ -17821,7 +18226,7 @@ defs["igGetWindowViewport"][1]["call_args"] = "()" defs["igGetWindowViewport"][1]["cimguiname"] = "igGetWindowViewport" defs["igGetWindowViewport"][1]["defaults"] = {} defs["igGetWindowViewport"][1]["funcname"] = "GetWindowViewport" -defs["igGetWindowViewport"][1]["location"] = "imgui:359" +defs["igGetWindowViewport"][1]["location"] = "imgui:363" defs["igGetWindowViewport"][1]["namespace"] = "ImGui" defs["igGetWindowViewport"][1]["ov_cimguiname"] = "igGetWindowViewport" defs["igGetWindowViewport"][1]["ret"] = "ImGuiViewport*" @@ -17837,7 +18242,7 @@ defs["igGetWindowWidth"][1]["call_args"] = "()" defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" -defs["igGetWindowWidth"][1]["location"] = "imgui:357" +defs["igGetWindowWidth"][1]["location"] = "imgui:361" defs["igGetWindowWidth"][1]["namespace"] = "ImGui" defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" @@ -17856,7 +18261,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:431" +defs["igImAbs"][1]["location"] = "imgui_internal:438" defs["igImAbs"][1]["ov_cimguiname"] = "igImAbs_Int" defs["igImAbs"][1]["ret"] = "int" defs["igImAbs"][1]["signature"] = "(int)" @@ -17872,7 +18277,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:432" +defs["igImAbs"][2]["location"] = "imgui_internal:439" defs["igImAbs"][2]["ov_cimguiname"] = "igImAbs_Float" defs["igImAbs"][2]["ret"] = "float" defs["igImAbs"][2]["signature"] = "(float)" @@ -17888,7 +18293,7 @@ defs["igImAbs"][3]["call_args"] = "(x)" defs["igImAbs"][3]["cimguiname"] = "igImAbs" defs["igImAbs"][3]["defaults"] = {} defs["igImAbs"][3]["funcname"] = "ImAbs" -defs["igImAbs"][3]["location"] = "imgui_internal:433" +defs["igImAbs"][3]["location"] = "imgui_internal:440" defs["igImAbs"][3]["ov_cimguiname"] = "igImAbs_double" defs["igImAbs"][3]["ret"] = "double" defs["igImAbs"][3]["signature"] = "(double)" @@ -17911,7 +18316,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:324" +defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:328" defs["igImAlphaBlendColors"][1]["ov_cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["ret"] = "ImU32" defs["igImAlphaBlendColors"][1]["signature"] = "(ImU32,ImU32)" @@ -17944,7 +18349,7 @@ defs["igImBezierCubicCalc"][1]["call_args"] = "(p1,p2,p3,p4,t)" defs["igImBezierCubicCalc"][1]["cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["defaults"] = {} defs["igImBezierCubicCalc"][1]["funcname"] = "ImBezierCubicCalc" -defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:476" +defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:483" defs["igImBezierCubicCalc"][1]["nonUDT"] = 1 defs["igImBezierCubicCalc"][1]["ov_cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["ret"] = "void" @@ -17981,7 +18386,7 @@ defs["igImBezierCubicClosestPoint"][1]["call_args"] = "(p1,p2,p3,p4,p,num_segmen defs["igImBezierCubicClosestPoint"][1]["cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["defaults"] = {} defs["igImBezierCubicClosestPoint"][1]["funcname"] = "ImBezierCubicClosestPoint" -defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:477" +defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:484" defs["igImBezierCubicClosestPoint"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPoint"][1]["ov_cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["ret"] = "void" @@ -18018,7 +18423,7 @@ defs["igImBezierCubicClosestPointCasteljau"][1]["call_args"] = "(p1,p2,p3,p4,p,t defs["igImBezierCubicClosestPointCasteljau"][1]["cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["defaults"] = {} defs["igImBezierCubicClosestPointCasteljau"][1]["funcname"] = "ImBezierCubicClosestPointCasteljau" -defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:478" +defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:485" defs["igImBezierCubicClosestPointCasteljau"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPointCasteljau"][1]["ov_cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["ret"] = "void" @@ -18049,7 +18454,7 @@ defs["igImBezierQuadraticCalc"][1]["call_args"] = "(p1,p2,p3,t)" defs["igImBezierQuadraticCalc"][1]["cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["defaults"] = {} defs["igImBezierQuadraticCalc"][1]["funcname"] = "ImBezierQuadraticCalc" -defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:479" +defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:486" defs["igImBezierQuadraticCalc"][1]["nonUDT"] = 1 defs["igImBezierQuadraticCalc"][1]["ov_cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["ret"] = "void" @@ -18071,7 +18476,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:547" +defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:554" defs["igImBitArrayClearBit"][1]["ov_cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["ret"] = "void" defs["igImBitArrayClearBit"][1]["signature"] = "(ImU32*,int)" @@ -18092,7 +18497,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:548" +defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:555" defs["igImBitArraySetBit"][1]["ov_cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["ret"] = "void" defs["igImBitArraySetBit"][1]["signature"] = "(ImU32*,int)" @@ -18116,7 +18521,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:549" +defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:556" defs["igImBitArraySetBitRange"][1]["ov_cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["ret"] = "void" defs["igImBitArraySetBitRange"][1]["signature"] = "(ImU32*,int,int)" @@ -18137,7 +18542,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:546" +defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:553" defs["igImBitArrayTestBit"][1]["ov_cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["ret"] = "bool" defs["igImBitArrayTestBit"][1]["signature"] = "(const ImU32*,int)" @@ -18155,7 +18560,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:344" +defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:350" defs["igImCharIsBlankA"][1]["ov_cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["ret"] = "bool" defs["igImCharIsBlankA"][1]["signature"] = "(char)" @@ -18173,7 +18578,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:345" +defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:351" defs["igImCharIsBlankW"][1]["ov_cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["ret"] = "bool" defs["igImCharIsBlankW"][1]["signature"] = "(unsigned int)" @@ -18200,7 +18605,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:455" +defs["igImClamp"][1]["location"] = "imgui_internal:462" defs["igImClamp"][1]["nonUDT"] = 1 defs["igImClamp"][1]["ov_cimguiname"] = "igImClamp" defs["igImClamp"][1]["ret"] = "void" @@ -18222,7 +18627,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:468" +defs["igImDot"][1]["location"] = "imgui_internal:475" defs["igImDot"][1]["ov_cimguiname"] = "igImDot" defs["igImDot"][1]["ret"] = "float" defs["igImDot"][1]["signature"] = "(const ImVec2,const ImVec2)" @@ -18240,7 +18645,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:404" +defs["igImFileClose"][1]["location"] = "imgui_internal:411" defs["igImFileClose"][1]["ov_cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["ret"] = "bool" defs["igImFileClose"][1]["signature"] = "(ImFileHandle)" @@ -18258,7 +18663,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:405" +defs["igImFileGetSize"][1]["location"] = "imgui_internal:412" defs["igImFileGetSize"][1]["ov_cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["ret"] = "ImU64" defs["igImFileGetSize"][1]["signature"] = "(ImFileHandle)" @@ -18287,7 +18692,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:411" +defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:418" defs["igImFileLoadToMemory"][1]["ov_cimguiname"] = "igImFileLoadToMemory" defs["igImFileLoadToMemory"][1]["ret"] = "void*" defs["igImFileLoadToMemory"][1]["signature"] = "(const char*,const char*,size_t*,int)" @@ -18308,7 +18713,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:403" +defs["igImFileOpen"][1]["location"] = "imgui_internal:410" defs["igImFileOpen"][1]["ov_cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["ret"] = "ImFileHandle" defs["igImFileOpen"][1]["signature"] = "(const char*,const char*)" @@ -18335,7 +18740,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:406" +defs["igImFileRead"][1]["location"] = "imgui_internal:413" defs["igImFileRead"][1]["ov_cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["ret"] = "ImU64" defs["igImFileRead"][1]["signature"] = "(void*,ImU64,ImU64,ImFileHandle)" @@ -18362,7 +18767,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:407" +defs["igImFileWrite"][1]["location"] = "imgui_internal:414" defs["igImFileWrite"][1]["ov_cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["ret"] = "ImU64" defs["igImFileWrite"][1]["signature"] = "(const void*,ImU64,ImU64,ImFileHandle)" @@ -18380,7 +18785,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:463" +defs["igImFloor"][1]["location"] = "imgui_internal:470" defs["igImFloor"][1]["ov_cimguiname"] = "igImFloor_Float" defs["igImFloor"][1]["ret"] = "float" defs["igImFloor"][1]["signature"] = "(float)" @@ -18399,7 +18804,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:465" +defs["igImFloor"][2]["location"] = "imgui_internal:472" defs["igImFloor"][2]["nonUDT"] = 1 defs["igImFloor"][2]["ov_cimguiname"] = "igImFloor_Vec2" defs["igImFloor"][2]["ret"] = "void" @@ -18419,7 +18824,7 @@ defs["igImFloorSigned"][1]["call_args"] = "(f)" defs["igImFloorSigned"][1]["cimguiname"] = "igImFloorSigned" defs["igImFloorSigned"][1]["defaults"] = {} defs["igImFloorSigned"][1]["funcname"] = "ImFloorSigned" -defs["igImFloorSigned"][1]["location"] = "imgui_internal:464" +defs["igImFloorSigned"][1]["location"] = "imgui_internal:471" defs["igImFloorSigned"][1]["ov_cimguiname"] = "igImFloorSigned_Float" defs["igImFloorSigned"][1]["ret"] = "float" defs["igImFloorSigned"][1]["signature"] = "(float)" @@ -18438,7 +18843,7 @@ defs["igImFloorSigned"][2]["call_args"] = "(v)" defs["igImFloorSigned"][2]["cimguiname"] = "igImFloorSigned" defs["igImFloorSigned"][2]["defaults"] = {} defs["igImFloorSigned"][2]["funcname"] = "ImFloorSigned" -defs["igImFloorSigned"][2]["location"] = "imgui_internal:466" +defs["igImFloorSigned"][2]["location"] = "imgui_internal:473" defs["igImFloorSigned"][2]["nonUDT"] = 1 defs["igImFloorSigned"][2]["ov_cimguiname"] = "igImFloorSigned_Vec2" defs["igImFloorSigned"][2]["ret"] = "void" @@ -18458,7 +18863,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:3230" +defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3445" defs["igImFontAtlasBuildFinish"][1]["ov_cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["ret"] = "void" defs["igImFontAtlasBuildFinish"][1]["signature"] = "(ImFontAtlas*)" @@ -18476,7 +18881,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:3227" +defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3442" defs["igImFontAtlasBuildInit"][1]["ov_cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["ret"] = "void" defs["igImFontAtlasBuildInit"][1]["signature"] = "(ImFontAtlas*)" @@ -18497,7 +18902,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:3233" +defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:3448" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["signature"] = "(unsigned char[256],float)" @@ -18533,7 +18938,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:3234" +defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:3449" 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)" @@ -18554,7 +18959,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:3229" +defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3444" defs["igImFontAtlasBuildPackCustomRects"][1]["ov_cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["ret"] = "void" defs["igImFontAtlasBuildPackCustomRects"][1]["signature"] = "(ImFontAtlas*,void*)" @@ -18593,7 +18998,7 @@ defs["igImFontAtlasBuildRender32bppRectFromString"][1]["call_args"] = "(atlas,x, defs["igImFontAtlasBuildRender32bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender32bppRectFromString" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender32bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender32bppRectFromString" -defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3232" +defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3447" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender32bppRectFromString" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)" @@ -18632,7 +19037,7 @@ defs["igImFontAtlasBuildRender8bppRectFromString"][1]["call_args"] = "(atlas,x,y defs["igImFontAtlasBuildRender8bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender8bppRectFromString" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender8bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender8bppRectFromString" -defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3231" +defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3446" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender8bppRectFromString" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)" @@ -18662,7 +19067,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:3228" +defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3443" defs["igImFontAtlasBuildSetupFont"][1]["ov_cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["ret"] = "void" defs["igImFontAtlasBuildSetupFont"][1]["signature"] = "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)" @@ -18677,7 +19082,7 @@ defs["igImFontAtlasGetBuilderForStbTruetype"][1]["call_args"] = "()" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["cimguiname"] = "igImFontAtlasGetBuilderForStbTruetype" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["defaults"] = {} defs["igImFontAtlasGetBuilderForStbTruetype"][1]["funcname"] = "ImFontAtlasGetBuilderForStbTruetype" -defs["igImFontAtlasGetBuilderForStbTruetype"][1]["location"] = "imgui_internal:3225" +defs["igImFontAtlasGetBuilderForStbTruetype"][1]["location"] = "imgui_internal:3440" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ov_cimguiname"] = "igImFontAtlasGetBuilderForStbTruetype" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ret"] = "const ImFontBuilderIO*" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["signature"] = "()" @@ -18705,7 +19110,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:348" +defs["igImFormatString"][1]["location"] = "imgui_internal:355" defs["igImFormatString"][1]["ov_cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["ret"] = "int" defs["igImFormatString"][1]["signature"] = "(char*,size_t,const char*,...)" @@ -18733,7 +19138,7 @@ defs["igImFormatStringToTempBuffer"][1]["cimguiname"] = "igImFormatStringToTempB defs["igImFormatStringToTempBuffer"][1]["defaults"] = {} defs["igImFormatStringToTempBuffer"][1]["funcname"] = "ImFormatStringToTempBuffer" defs["igImFormatStringToTempBuffer"][1]["isvararg"] = "...)" -defs["igImFormatStringToTempBuffer"][1]["location"] = "imgui_internal:350" +defs["igImFormatStringToTempBuffer"][1]["location"] = "imgui_internal:357" defs["igImFormatStringToTempBuffer"][1]["ov_cimguiname"] = "igImFormatStringToTempBuffer" defs["igImFormatStringToTempBuffer"][1]["ret"] = "void" defs["igImFormatStringToTempBuffer"][1]["signature"] = "(const char**,const char**,const char*,...)" @@ -18760,7 +19165,7 @@ defs["igImFormatStringToTempBufferV"][1]["call_args"] = "(out_buf,out_buf_end,fm defs["igImFormatStringToTempBufferV"][1]["cimguiname"] = "igImFormatStringToTempBufferV" defs["igImFormatStringToTempBufferV"][1]["defaults"] = {} defs["igImFormatStringToTempBufferV"][1]["funcname"] = "ImFormatStringToTempBufferV" -defs["igImFormatStringToTempBufferV"][1]["location"] = "imgui_internal:351" +defs["igImFormatStringToTempBufferV"][1]["location"] = "imgui_internal:358" defs["igImFormatStringToTempBufferV"][1]["ov_cimguiname"] = "igImFormatStringToTempBufferV" defs["igImFormatStringToTempBufferV"][1]["ret"] = "void" defs["igImFormatStringToTempBufferV"][1]["signature"] = "(const char**,const char**,const char*,va_list)" @@ -18787,7 +19192,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:349" +defs["igImFormatStringV"][1]["location"] = "imgui_internal:356" defs["igImFormatStringV"][1]["ov_cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["ret"] = "int" defs["igImFormatStringV"][1]["signature"] = "(char*,size_t,const char*,va_list)" @@ -18808,7 +19213,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:485" +defs["igImGetDirQuadrantFromDelta"][1]["location"] = "imgui_internal:492" defs["igImGetDirQuadrantFromDelta"][1]["ov_cimguiname"] = "igImGetDirQuadrantFromDelta" defs["igImGetDirQuadrantFromDelta"][1]["ret"] = "ImGuiDir" defs["igImGetDirQuadrantFromDelta"][1]["signature"] = "(float,float)" @@ -18833,7 +19238,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:315" +defs["igImHashData"][1]["location"] = "imgui_internal:319" defs["igImHashData"][1]["ov_cimguiname"] = "igImHashData" defs["igImHashData"][1]["ret"] = "ImGuiID" defs["igImHashData"][1]["signature"] = "(const void*,size_t,ImU32)" @@ -18859,7 +19264,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:316" +defs["igImHashStr"][1]["location"] = "imgui_internal:320" defs["igImHashStr"][1]["ov_cimguiname"] = "igImHashStr" defs["igImHashStr"][1]["ret"] = "ImGuiID" defs["igImHashStr"][1]["signature"] = "(const char*,size_t,ImU32)" @@ -18880,7 +19285,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:462" +defs["igImInvLength"][1]["location"] = "imgui_internal:469" defs["igImInvLength"][1]["ov_cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["ret"] = "float" defs["igImInvLength"][1]["signature"] = "(const ImVec2,float)" @@ -18898,7 +19303,7 @@ defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["call_args"] = "(f)" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["defaults"] = {} defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["funcname"] = "ImIsFloatAboveGuaranteedIntegerPrecision" -defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["location"] = "imgui_internal:472" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["location"] = "imgui_internal:479" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ov_cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ret"] = "bool" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["signature"] = "(float)" @@ -18916,7 +19321,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:327" +defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:331" defs["igImIsPowerOfTwo"][1]["ov_cimguiname"] = "igImIsPowerOfTwo_Int" defs["igImIsPowerOfTwo"][1]["ret"] = "bool" defs["igImIsPowerOfTwo"][1]["signature"] = "(int)" @@ -18932,7 +19337,7 @@ defs["igImIsPowerOfTwo"][2]["call_args"] = "(v)" defs["igImIsPowerOfTwo"][2]["cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][2]["defaults"] = {} defs["igImIsPowerOfTwo"][2]["funcname"] = "ImIsPowerOfTwo" -defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:328" +defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:332" defs["igImIsPowerOfTwo"][2]["ov_cimguiname"] = "igImIsPowerOfTwo_U64" defs["igImIsPowerOfTwo"][2]["ret"] = "bool" defs["igImIsPowerOfTwo"][2]["signature"] = "(ImU64)" @@ -18951,7 +19356,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:460" +defs["igImLengthSqr"][1]["location"] = "imgui_internal:467" defs["igImLengthSqr"][1]["ov_cimguiname"] = "igImLengthSqr_Vec2" defs["igImLengthSqr"][1]["ret"] = "float" defs["igImLengthSqr"][1]["signature"] = "(const ImVec2)" @@ -18967,7 +19372,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:461" +defs["igImLengthSqr"][2]["location"] = "imgui_internal:468" defs["igImLengthSqr"][2]["ov_cimguiname"] = "igImLengthSqr_Vec4" defs["igImLengthSqr"][2]["ret"] = "float" defs["igImLengthSqr"][2]["signature"] = "(const ImVec4)" @@ -18995,7 +19400,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:456" +defs["igImLerp"][1]["location"] = "imgui_internal:463" defs["igImLerp"][1]["nonUDT"] = 1 defs["igImLerp"][1]["ov_cimguiname"] = "igImLerp_Vec2Float" defs["igImLerp"][1]["ret"] = "void" @@ -19021,7 +19426,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:457" +defs["igImLerp"][2]["location"] = "imgui_internal:464" defs["igImLerp"][2]["nonUDT"] = 1 defs["igImLerp"][2]["ov_cimguiname"] = "igImLerp_Vec2Vec2" defs["igImLerp"][2]["ret"] = "void" @@ -19047,7 +19452,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:458" +defs["igImLerp"][3]["location"] = "imgui_internal:465" defs["igImLerp"][3]["nonUDT"] = 1 defs["igImLerp"][3]["ov_cimguiname"] = "igImLerp_Vec4" defs["igImLerp"][3]["ret"] = "void" @@ -19077,7 +19482,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:480" +defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:487" defs["igImLineClosestPoint"][1]["nonUDT"] = 1 defs["igImLineClosestPoint"][1]["ov_cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["ret"] = "void" @@ -19102,7 +19507,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:470" +defs["igImLinearSweep"][1]["location"] = "imgui_internal:477" defs["igImLinearSweep"][1]["ov_cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["ret"] = "float" defs["igImLinearSweep"][1]["signature"] = "(float,float,float)" @@ -19120,7 +19525,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:429" +defs["igImLog"][1]["location"] = "imgui_internal:436" defs["igImLog"][1]["ov_cimguiname"] = "igImLog_Float" defs["igImLog"][1]["ret"] = "float" defs["igImLog"][1]["signature"] = "(float)" @@ -19136,7 +19541,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:430" +defs["igImLog"][2]["location"] = "imgui_internal:437" defs["igImLog"][2]["ov_cimguiname"] = "igImLog_double" defs["igImLog"][2]["ret"] = "double" defs["igImLog"][2]["signature"] = "(double)" @@ -19161,7 +19566,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:454" +defs["igImMax"][1]["location"] = "imgui_internal:461" defs["igImMax"][1]["nonUDT"] = 1 defs["igImMax"][1]["ov_cimguiname"] = "igImMax" defs["igImMax"][1]["ret"] = "void" @@ -19186,7 +19591,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:453" +defs["igImMin"][1]["location"] = "imgui_internal:460" defs["igImMin"][1]["nonUDT"] = 1 defs["igImMin"][1]["ov_cimguiname"] = "igImMin" defs["igImMin"][1]["ret"] = "void" @@ -19208,7 +19613,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:467" +defs["igImModPositive"][1]["location"] = "imgui_internal:474" defs["igImModPositive"][1]["ov_cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["ret"] = "int" defs["igImModPositive"][1]["signature"] = "(int,int)" @@ -19232,7 +19637,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:471" +defs["igImMul"][1]["location"] = "imgui_internal:478" defs["igImMul"][1]["nonUDT"] = 1 defs["igImMul"][1]["ov_cimguiname"] = "igImMul" defs["igImMul"][1]["ret"] = "void" @@ -19251,7 +19656,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:353" +defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:360" defs["igImParseFormatFindEnd"][1]["ov_cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["ret"] = "const char*" defs["igImParseFormatFindEnd"][1]["signature"] = "(const char*)" @@ -19269,7 +19674,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:352" +defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:359" defs["igImParseFormatFindStart"][1]["ov_cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["ret"] = "const char*" defs["igImParseFormatFindStart"][1]["signature"] = "(const char*)" @@ -19290,7 +19695,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:357" +defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:364" defs["igImParseFormatPrecision"][1]["ov_cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["ret"] = "int" defs["igImParseFormatPrecision"][1]["signature"] = "(const char*,int)" @@ -19314,7 +19719,7 @@ defs["igImParseFormatSanitizeForPrinting"][1]["call_args"] = "(fmt_in,fmt_out,fm defs["igImParseFormatSanitizeForPrinting"][1]["cimguiname"] = "igImParseFormatSanitizeForPrinting" defs["igImParseFormatSanitizeForPrinting"][1]["defaults"] = {} defs["igImParseFormatSanitizeForPrinting"][1]["funcname"] = "ImParseFormatSanitizeForPrinting" -defs["igImParseFormatSanitizeForPrinting"][1]["location"] = "imgui_internal:355" +defs["igImParseFormatSanitizeForPrinting"][1]["location"] = "imgui_internal:362" defs["igImParseFormatSanitizeForPrinting"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForPrinting" defs["igImParseFormatSanitizeForPrinting"][1]["ret"] = "void" defs["igImParseFormatSanitizeForPrinting"][1]["signature"] = "(const char*,char*,size_t)" @@ -19338,7 +19743,7 @@ defs["igImParseFormatSanitizeForScanning"][1]["call_args"] = "(fmt_in,fmt_out,fm defs["igImParseFormatSanitizeForScanning"][1]["cimguiname"] = "igImParseFormatSanitizeForScanning" defs["igImParseFormatSanitizeForScanning"][1]["defaults"] = {} defs["igImParseFormatSanitizeForScanning"][1]["funcname"] = "ImParseFormatSanitizeForScanning" -defs["igImParseFormatSanitizeForScanning"][1]["location"] = "imgui_internal:356" +defs["igImParseFormatSanitizeForScanning"][1]["location"] = "imgui_internal:363" defs["igImParseFormatSanitizeForScanning"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForScanning" defs["igImParseFormatSanitizeForScanning"][1]["ret"] = "const char*" defs["igImParseFormatSanitizeForScanning"][1]["signature"] = "(const char*,char*,size_t)" @@ -19362,7 +19767,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:354" +defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:361" defs["igImParseFormatTrimDecorations"][1]["ov_cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["ret"] = "const char*" defs["igImParseFormatTrimDecorations"][1]["signature"] = "(const char*,char*,size_t)" @@ -19383,7 +19788,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:427" +defs["igImPow"][1]["location"] = "imgui_internal:434" defs["igImPow"][1]["ov_cimguiname"] = "igImPow_Float" defs["igImPow"][1]["ret"] = "float" defs["igImPow"][1]["signature"] = "(float,float)" @@ -19402,7 +19807,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:428" +defs["igImPow"][2]["location"] = "imgui_internal:435" defs["igImPow"][2]["ov_cimguiname"] = "igImPow_double" defs["igImPow"][2]["ret"] = "double" defs["igImPow"][2]["signature"] = "(double,double)" @@ -19432,7 +19837,7 @@ defs["igImQsort"][1]["call_args"] = "(base,count,size_of_element,compare_func)" defs["igImQsort"][1]["cimguiname"] = "igImQsort" defs["igImQsort"][1]["defaults"] = {} defs["igImQsort"][1]["funcname"] = "ImQsort" -defs["igImQsort"][1]["location"] = "imgui_internal:320" +defs["igImQsort"][1]["location"] = "imgui_internal:324" defs["igImQsort"][1]["ov_cimguiname"] = "igImQsort" defs["igImQsort"][1]["ret"] = "void" defs["igImQsort"][1]["signature"] = "(void*,size_t,size_t,int(*)(void const*,void const*))" @@ -19459,7 +19864,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:469" +defs["igImRotate"][1]["location"] = "imgui_internal:476" defs["igImRotate"][1]["nonUDT"] = 1 defs["igImRotate"][1]["ov_cimguiname"] = "igImRotate" defs["igImRotate"][1]["ret"] = "void" @@ -19478,7 +19883,7 @@ defs["igImRsqrt"][1]["call_args"] = "(x)" defs["igImRsqrt"][1]["cimguiname"] = "igImRsqrt" defs["igImRsqrt"][1]["defaults"] = {} defs["igImRsqrt"][1]["funcname"] = "ImRsqrt" -defs["igImRsqrt"][1]["location"] = "imgui_internal:439" +defs["igImRsqrt"][1]["location"] = "imgui_internal:446" defs["igImRsqrt"][1]["ov_cimguiname"] = "igImRsqrt_Float" defs["igImRsqrt"][1]["ret"] = "float" defs["igImRsqrt"][1]["signature"] = "(float)" @@ -19494,7 +19899,7 @@ defs["igImRsqrt"][2]["call_args"] = "(x)" defs["igImRsqrt"][2]["cimguiname"] = "igImRsqrt" defs["igImRsqrt"][2]["defaults"] = {} defs["igImRsqrt"][2]["funcname"] = "ImRsqrt" -defs["igImRsqrt"][2]["location"] = "imgui_internal:441" +defs["igImRsqrt"][2]["location"] = "imgui_internal:448" defs["igImRsqrt"][2]["ov_cimguiname"] = "igImRsqrt_double" defs["igImRsqrt"][2]["ret"] = "double" defs["igImRsqrt"][2]["signature"] = "(double)" @@ -19513,7 +19918,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:459" +defs["igImSaturate"][1]["location"] = "imgui_internal:466" defs["igImSaturate"][1]["ov_cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["ret"] = "float" defs["igImSaturate"][1]["signature"] = "(float)" @@ -19531,7 +19936,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:434" +defs["igImSign"][1]["location"] = "imgui_internal:441" defs["igImSign"][1]["ov_cimguiname"] = "igImSign_Float" defs["igImSign"][1]["ret"] = "float" defs["igImSign"][1]["signature"] = "(float)" @@ -19547,7 +19952,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:435" +defs["igImSign"][2]["location"] = "imgui_internal:442" defs["igImSign"][2]["ov_cimguiname"] = "igImSign_double" defs["igImSign"][2]["ret"] = "double" defs["igImSign"][2]["signature"] = "(double)" @@ -19566,7 +19971,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:343" +defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:347" defs["igImStrSkipBlank"][1]["ov_cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["ret"] = "const char*" defs["igImStrSkipBlank"][1]["signature"] = "(const char*)" @@ -19584,7 +19989,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:342" +defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:346" defs["igImStrTrimBlanks"][1]["ov_cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["ret"] = "void" defs["igImStrTrimBlanks"][1]["signature"] = "(char*)" @@ -19605,7 +20010,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:340" +defs["igImStrbolW"][1]["location"] = "imgui_internal:344" defs["igImStrbolW"][1]["ov_cimguiname"] = "igImStrbolW" defs["igImStrbolW"][1]["ret"] = "const ImWchar*" defs["igImStrbolW"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -19629,7 +20034,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:337" +defs["igImStrchrRange"][1]["location"] = "imgui_internal:341" defs["igImStrchrRange"][1]["ov_cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["ret"] = "const char*" defs["igImStrchrRange"][1]["signature"] = "(const char*,const char*,char)" @@ -19647,7 +20052,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:335" +defs["igImStrdup"][1]["location"] = "imgui_internal:339" defs["igImStrdup"][1]["ov_cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["ret"] = "char*" defs["igImStrdup"][1]["signature"] = "(const char*)" @@ -19671,7 +20076,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:336" +defs["igImStrdupcpy"][1]["location"] = "imgui_internal:340" defs["igImStrdupcpy"][1]["ov_cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["ret"] = "char*" defs["igImStrdupcpy"][1]["signature"] = "(char*,size_t*,const char*)" @@ -19692,7 +20097,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:339" +defs["igImStreolRange"][1]["location"] = "imgui_internal:343" defs["igImStreolRange"][1]["ov_cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["ret"] = "const char*" defs["igImStreolRange"][1]["signature"] = "(const char*,const char*)" @@ -19713,7 +20118,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:332" +defs["igImStricmp"][1]["location"] = "imgui_internal:336" defs["igImStricmp"][1]["ov_cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["ret"] = "int" defs["igImStricmp"][1]["signature"] = "(const char*,const char*)" @@ -19740,7 +20145,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:341" +defs["igImStristr"][1]["location"] = "imgui_internal:345" defs["igImStristr"][1]["ov_cimguiname"] = "igImStristr" defs["igImStristr"][1]["ret"] = "const char*" defs["igImStristr"][1]["signature"] = "(const char*,const char*,const char*,const char*)" @@ -19758,7 +20163,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:338" +defs["igImStrlenW"][1]["location"] = "imgui_internal:342" defs["igImStrlenW"][1]["ov_cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["ret"] = "int" defs["igImStrlenW"][1]["signature"] = "(const ImWchar*)" @@ -19782,7 +20187,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:334" +defs["igImStrncpy"][1]["location"] = "imgui_internal:338" defs["igImStrncpy"][1]["ov_cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["ret"] = "void" defs["igImStrncpy"][1]["signature"] = "(char*,const char*,size_t)" @@ -19806,7 +20211,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:333" +defs["igImStrnicmp"][1]["location"] = "imgui_internal:337" defs["igImStrnicmp"][1]["ov_cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["ret"] = "int" defs["igImStrnicmp"][1]["signature"] = "(const char*,const char*,size_t)" @@ -19830,7 +20235,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:362" +defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:369" defs["igImTextCharFromUtf8"][1]["ov_cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["ret"] = "int" defs["igImTextCharFromUtf8"][1]["signature"] = "(unsigned int*,const char*,const char*)" @@ -19851,7 +20256,7 @@ defs["igImTextCharToUtf8"][1]["call_args"] = "(out_buf,c)" defs["igImTextCharToUtf8"][1]["cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["defaults"] = {} defs["igImTextCharToUtf8"][1]["funcname"] = "ImTextCharToUtf8" -defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:360" +defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:367" defs["igImTextCharToUtf8"][1]["ov_cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["ret"] = "const char*" defs["igImTextCharToUtf8"][1]["signature"] = "(char[5],unsigned int)" @@ -19872,7 +20277,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:364" +defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:371" defs["igImTextCountCharsFromUtf8"][1]["ov_cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["ret"] = "int" defs["igImTextCountCharsFromUtf8"][1]["signature"] = "(const char*,const char*)" @@ -19893,7 +20298,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:365" +defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:372" defs["igImTextCountUtf8BytesFromChar"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromChar"][1]["signature"] = "(const char*,const char*)" @@ -19914,7 +20319,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:366" +defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:373" defs["igImTextCountUtf8BytesFromStr"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromStr"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -19945,7 +20350,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:363" +defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:370" defs["igImTextStrFromUtf8"][1]["ov_cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["ret"] = "int" defs["igImTextStrFromUtf8"][1]["signature"] = "(ImWchar*,int,const char*,const char*,const char**)" @@ -19972,12 +20377,30 @@ defs["igImTextStrToUtf8"][1]["call_args"] = "(out_buf,out_buf_size,in_text,in_te defs["igImTextStrToUtf8"][1]["cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["defaults"] = {} defs["igImTextStrToUtf8"][1]["funcname"] = "ImTextStrToUtf8" -defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:361" +defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:368" defs["igImTextStrToUtf8"][1]["ov_cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["ret"] = "int" defs["igImTextStrToUtf8"][1]["signature"] = "(char*,int,const ImWchar*,const ImWchar*)" defs["igImTextStrToUtf8"][1]["stname"] = "" defs["igImTextStrToUtf8"]["(char*,int,const ImWchar*,const ImWchar*)"] = defs["igImTextStrToUtf8"][1] +defs["igImToUpper"] = {} +defs["igImToUpper"][1] = {} +defs["igImToUpper"][1]["args"] = "(char c)" +defs["igImToUpper"][1]["argsT"] = {} +defs["igImToUpper"][1]["argsT"][1] = {} +defs["igImToUpper"][1]["argsT"][1]["name"] = "c" +defs["igImToUpper"][1]["argsT"][1]["type"] = "char" +defs["igImToUpper"][1]["argsoriginal"] = "(char c)" +defs["igImToUpper"][1]["call_args"] = "(c)" +defs["igImToUpper"][1]["cimguiname"] = "igImToUpper" +defs["igImToUpper"][1]["defaults"] = {} +defs["igImToUpper"][1]["funcname"] = "ImToUpper" +defs["igImToUpper"][1]["location"] = "imgui_internal:349" +defs["igImToUpper"][1]["ov_cimguiname"] = "igImToUpper" +defs["igImToUpper"][1]["ret"] = "char" +defs["igImToUpper"][1]["signature"] = "(char)" +defs["igImToUpper"][1]["stname"] = "" +defs["igImToUpper"]["(char)"] = defs["igImToUpper"][1] defs["igImTriangleArea"] = {} defs["igImTriangleArea"][1] = {} defs["igImTriangleArea"][1]["args"] = "(const ImVec2 a,const ImVec2 b,const ImVec2 c)" @@ -19996,7 +20419,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:484" +defs["igImTriangleArea"][1]["location"] = "imgui_internal:491" defs["igImTriangleArea"][1]["ov_cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["ret"] = "float" defs["igImTriangleArea"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" @@ -20035,7 +20458,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:483" +defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:490" 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*)" @@ -20065,7 +20488,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:482" +defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:489" defs["igImTriangleClosestPoint"][1]["nonUDT"] = 1 defs["igImTriangleClosestPoint"][1]["ov_cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["ret"] = "void" @@ -20093,7 +20516,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:481" +defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:488" defs["igImTriangleContainsPoint"][1]["ov_cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["ret"] = "bool" defs["igImTriangleContainsPoint"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)" @@ -20111,7 +20534,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:329" +defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:333" defs["igImUpperPowerOfTwo"][1]["ov_cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["ret"] = "int" defs["igImUpperPowerOfTwo"][1]["signature"] = "(int)" @@ -20148,7 +20571,7 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" -defs["igImage"][1]["location"] = "imgui:506" +defs["igImage"][1]["location"] = "imgui:523" defs["igImage"][1]["namespace"] = "ImGui" defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" @@ -20157,49 +20580,48 @@ defs["igImage"][1]["stname"] = "" defs["igImage"]["(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImage"][1] defs["igImageButton"] = {} defs["igImageButton"][1] = {} -defs["igImageButton"][1]["args"] = "(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,int frame_padding,const ImVec4 bg_col,const ImVec4 tint_col)" +defs["igImageButton"][1]["args"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" defs["igImageButton"][1]["argsT"] = {} defs["igImageButton"][1]["argsT"][1] = {} -defs["igImageButton"][1]["argsT"][1]["name"] = "user_texture_id" -defs["igImageButton"][1]["argsT"][1]["type"] = "ImTextureID" +defs["igImageButton"][1]["argsT"][1]["name"] = "str_id" +defs["igImageButton"][1]["argsT"][1]["type"] = "const char*" defs["igImageButton"][1]["argsT"][2] = {} -defs["igImageButton"][1]["argsT"][2]["name"] = "size" -defs["igImageButton"][1]["argsT"][2]["type"] = "const ImVec2" +defs["igImageButton"][1]["argsT"][2]["name"] = "user_texture_id" +defs["igImageButton"][1]["argsT"][2]["type"] = "ImTextureID" defs["igImageButton"][1]["argsT"][3] = {} -defs["igImageButton"][1]["argsT"][3]["name"] = "uv0" +defs["igImageButton"][1]["argsT"][3]["name"] = "size" defs["igImageButton"][1]["argsT"][3]["type"] = "const ImVec2" defs["igImageButton"][1]["argsT"][4] = {} -defs["igImageButton"][1]["argsT"][4]["name"] = "uv1" +defs["igImageButton"][1]["argsT"][4]["name"] = "uv0" defs["igImageButton"][1]["argsT"][4]["type"] = "const ImVec2" defs["igImageButton"][1]["argsT"][5] = {} -defs["igImageButton"][1]["argsT"][5]["name"] = "frame_padding" -defs["igImageButton"][1]["argsT"][5]["type"] = "int" +defs["igImageButton"][1]["argsT"][5]["name"] = "uv1" +defs["igImageButton"][1]["argsT"][5]["type"] = "const ImVec2" defs["igImageButton"][1]["argsT"][6] = {} defs["igImageButton"][1]["argsT"][6]["name"] = "bg_col" defs["igImageButton"][1]["argsT"][6]["type"] = "const ImVec4" defs["igImageButton"][1]["argsT"][7] = {} defs["igImageButton"][1]["argsT"][7]["name"] = "tint_col" defs["igImageButton"][1]["argsT"][7]["type"] = "const ImVec4" -defs["igImageButton"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),int frame_padding=-1,const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))" -defs["igImageButton"][1]["call_args"] = "(user_texture_id,size,uv0,uv1,frame_padding,bg_col,tint_col)" +defs["igImageButton"][1]["argsoriginal"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))" +defs["igImageButton"][1]["call_args"] = "(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col)" defs["igImageButton"][1]["cimguiname"] = "igImageButton" defs["igImageButton"][1]["defaults"] = {} defs["igImageButton"][1]["defaults"]["bg_col"] = "ImVec4(0,0,0,0)" -defs["igImageButton"][1]["defaults"]["frame_padding"] = "-1" defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" -defs["igImageButton"][1]["location"] = "imgui:507" +defs["igImageButton"][1]["location"] = "imgui:524" defs["igImageButton"][1]["namespace"] = "ImGui" defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" -defs["igImageButton"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,int,const ImVec4,const ImVec4)" +defs["igImageButton"][1]["signature"] = "(const char*,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)" defs["igImageButton"][1]["stname"] = "" -defs["igImageButton"]["(ImTextureID,const ImVec2,const ImVec2,const ImVec2,int,const ImVec4,const ImVec4)"] = defs["igImageButton"][1] +defs["igImageButton"]["(const char*,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImageButton"][1] defs["igImageButtonEx"] = {} defs["igImageButtonEx"][1] = {} -defs["igImageButtonEx"][1]["args"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec2 padding,const ImVec4 bg_col,const ImVec4 tint_col)" +defs["igImageButtonEx"][1]["args"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" defs["igImageButtonEx"][1]["argsT"] = {} defs["igImageButtonEx"][1]["argsT"][1] = {} defs["igImageButtonEx"][1]["argsT"][1]["name"] = "id" @@ -20217,26 +20639,23 @@ defs["igImageButtonEx"][1]["argsT"][5] = {} defs["igImageButtonEx"][1]["argsT"][5]["name"] = "uv1" defs["igImageButtonEx"][1]["argsT"][5]["type"] = "const ImVec2" defs["igImageButtonEx"][1]["argsT"][6] = {} -defs["igImageButtonEx"][1]["argsT"][6]["name"] = "padding" -defs["igImageButtonEx"][1]["argsT"][6]["type"] = "const ImVec2" +defs["igImageButtonEx"][1]["argsT"][6]["name"] = "bg_col" +defs["igImageButtonEx"][1]["argsT"][6]["type"] = "const ImVec4" defs["igImageButtonEx"][1]["argsT"][7] = {} -defs["igImageButtonEx"][1]["argsT"][7]["name"] = "bg_col" +defs["igImageButtonEx"][1]["argsT"][7]["name"] = "tint_col" defs["igImageButtonEx"][1]["argsT"][7]["type"] = "const ImVec4" -defs["igImageButtonEx"][1]["argsT"][8] = {} -defs["igImageButtonEx"][1]["argsT"][8]["name"] = "tint_col" -defs["igImageButtonEx"][1]["argsT"][8]["type"] = "const ImVec4" -defs["igImageButtonEx"][1]["argsoriginal"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2& size,const ImVec2& uv0,const ImVec2& uv1,const ImVec2& padding,const ImVec4& bg_col,const ImVec4& tint_col)" -defs["igImageButtonEx"][1]["call_args"] = "(id,texture_id,size,uv0,uv1,padding,bg_col,tint_col)" +defs["igImageButtonEx"][1]["argsoriginal"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2& size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col)" +defs["igImageButtonEx"][1]["call_args"] = "(id,texture_id,size,uv0,uv1,bg_col,tint_col)" defs["igImageButtonEx"][1]["cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["defaults"] = {} defs["igImageButtonEx"][1]["funcname"] = "ImageButtonEx" -defs["igImageButtonEx"][1]["location"] = "imgui_internal:3121" +defs["igImageButtonEx"][1]["location"] = "imgui_internal:3314" defs["igImageButtonEx"][1]["namespace"] = "ImGui" defs["igImageButtonEx"][1]["ov_cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["ret"] = "bool" -defs["igImageButtonEx"][1]["signature"] = "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)" +defs["igImageButtonEx"][1]["signature"] = "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)" defs["igImageButtonEx"][1]["stname"] = "" -defs["igImageButtonEx"]["(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImageButtonEx"][1] +defs["igImageButtonEx"]["(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImageButtonEx"][1] defs["igIndent"] = {} defs["igIndent"][1] = {} defs["igIndent"][1]["args"] = "(float indent_w)" @@ -20250,7 +20669,7 @@ defs["igIndent"][1]["cimguiname"] = "igIndent" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" -defs["igIndent"][1]["location"] = "imgui:445" +defs["igIndent"][1]["location"] = "imgui:452" defs["igIndent"][1]["namespace"] = "ImGui" defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" @@ -20266,7 +20685,7 @@ defs["igInitialize"][1]["call_args"] = "()" defs["igInitialize"][1]["cimguiname"] = "igInitialize" defs["igInitialize"][1]["defaults"] = {} defs["igInitialize"][1]["funcname"] = "Initialize" -defs["igInitialize"][1]["location"] = "imgui_internal:2779" +defs["igInitialize"][1]["location"] = "imgui_internal:2928" defs["igInitialize"][1]["namespace"] = "ImGui" defs["igInitialize"][1]["ov_cimguiname"] = "igInitialize" defs["igInitialize"][1]["ret"] = "void" @@ -20304,7 +20723,7 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" -defs["igInputDouble"][1]["location"] = "imgui:585" +defs["igInputDouble"][1]["location"] = "imgui:595" defs["igInputDouble"][1]["namespace"] = "ImGui" defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" @@ -20342,7 +20761,7 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" -defs["igInputFloat"][1]["location"] = "imgui:577" +defs["igInputFloat"][1]["location"] = "imgui:587" defs["igInputFloat"][1]["namespace"] = "ImGui" defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" @@ -20372,7 +20791,7 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" -defs["igInputFloat2"][1]["location"] = "imgui:578" +defs["igInputFloat2"][1]["location"] = "imgui:588" defs["igInputFloat2"][1]["namespace"] = "ImGui" defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" @@ -20402,7 +20821,7 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" -defs["igInputFloat3"][1]["location"] = "imgui:579" +defs["igInputFloat3"][1]["location"] = "imgui:589" defs["igInputFloat3"][1]["namespace"] = "ImGui" defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" @@ -20432,7 +20851,7 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" -defs["igInputFloat4"][1]["location"] = "imgui:580" +defs["igInputFloat4"][1]["location"] = "imgui:590" defs["igInputFloat4"][1]["namespace"] = "ImGui" defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" @@ -20466,7 +20885,7 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" -defs["igInputInt"][1]["location"] = "imgui:581" +defs["igInputInt"][1]["location"] = "imgui:591" defs["igInputInt"][1]["namespace"] = "ImGui" defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" @@ -20492,7 +20911,7 @@ defs["igInputInt2"][1]["cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" -defs["igInputInt2"][1]["location"] = "imgui:582" +defs["igInputInt2"][1]["location"] = "imgui:592" defs["igInputInt2"][1]["namespace"] = "ImGui" defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" @@ -20518,7 +20937,7 @@ defs["igInputInt3"][1]["cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" -defs["igInputInt3"][1]["location"] = "imgui:583" +defs["igInputInt3"][1]["location"] = "imgui:593" defs["igInputInt3"][1]["namespace"] = "ImGui" defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" @@ -20544,7 +20963,7 @@ defs["igInputInt4"][1]["cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" -defs["igInputInt4"][1]["location"] = "imgui:584" +defs["igInputInt4"][1]["location"] = "imgui:594" defs["igInputInt4"][1]["namespace"] = "ImGui" defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" @@ -20585,7 +21004,7 @@ defs["igInputScalar"][1]["defaults"]["format"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalar"][1]["funcname"] = "InputScalar" -defs["igInputScalar"][1]["location"] = "imgui:586" +defs["igInputScalar"][1]["location"] = "imgui:596" defs["igInputScalar"][1]["namespace"] = "ImGui" defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" @@ -20629,7 +21048,7 @@ defs["igInputScalarN"][1]["defaults"]["format"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" -defs["igInputScalarN"][1]["location"] = "imgui:587" +defs["igInputScalarN"][1]["location"] = "imgui:597" defs["igInputScalarN"][1]["namespace"] = "ImGui" defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" @@ -20666,7 +21085,7 @@ defs["igInputText"][1]["defaults"]["callback"] = "NULL" defs["igInputText"][1]["defaults"]["flags"] = "0" defs["igInputText"][1]["defaults"]["user_data"] = "NULL" defs["igInputText"][1]["funcname"] = "InputText" -defs["igInputText"][1]["location"] = "imgui:574" +defs["igInputText"][1]["location"] = "imgui:584" defs["igInputText"][1]["namespace"] = "ImGui" defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" @@ -20708,7 +21127,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:3158" +defs["igInputTextEx"][1]["location"] = "imgui_internal:3352" defs["igInputTextEx"][1]["namespace"] = "ImGui" defs["igInputTextEx"][1]["ov_cimguiname"] = "igInputTextEx" defs["igInputTextEx"][1]["ret"] = "bool" @@ -20749,7 +21168,7 @@ defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" -defs["igInputTextMultiline"][1]["location"] = "imgui:575" +defs["igInputTextMultiline"][1]["location"] = "imgui:585" defs["igInputTextMultiline"][1]["namespace"] = "ImGui" defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" @@ -20789,7 +21208,7 @@ defs["igInputTextWithHint"][1]["defaults"]["callback"] = "NULL" defs["igInputTextWithHint"][1]["defaults"]["flags"] = "0" defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextWithHint"][1]["funcname"] = "InputTextWithHint" -defs["igInputTextWithHint"][1]["location"] = "imgui:576" +defs["igInputTextWithHint"][1]["location"] = "imgui:586" defs["igInputTextWithHint"][1]["namespace"] = "ImGui" defs["igInputTextWithHint"][1]["ov_cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["ret"] = "bool" @@ -20815,32 +21234,13 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["defaults"]["flags"] = "0" defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" -defs["igInvisibleButton"][1]["location"] = "imgui:504" +defs["igInvisibleButton"][1]["location"] = "imgui:511" defs["igInvisibleButton"][1]["namespace"] = "ImGui" defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" defs["igInvisibleButton"][1]["signature"] = "(const char*,const ImVec2,ImGuiButtonFlags)" defs["igInvisibleButton"][1]["stname"] = "" defs["igInvisibleButton"]["(const char*,const ImVec2,ImGuiButtonFlags)"] = defs["igInvisibleButton"][1] -defs["igIsActiveIdUsingKey"] = {} -defs["igIsActiveIdUsingKey"][1] = {} -defs["igIsActiveIdUsingKey"][1]["args"] = "(ImGuiKey key)" -defs["igIsActiveIdUsingKey"][1]["argsT"] = {} -defs["igIsActiveIdUsingKey"][1]["argsT"][1] = {} -defs["igIsActiveIdUsingKey"][1]["argsT"][1]["name"] = "key" -defs["igIsActiveIdUsingKey"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igIsActiveIdUsingKey"][1]["argsoriginal"] = "(ImGuiKey key)" -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:2942" -defs["igIsActiveIdUsingKey"][1]["namespace"] = "ImGui" -defs["igIsActiveIdUsingKey"][1]["ov_cimguiname"] = "igIsActiveIdUsingKey" -defs["igIsActiveIdUsingKey"][1]["ret"] = "bool" -defs["igIsActiveIdUsingKey"][1]["signature"] = "(ImGuiKey)" -defs["igIsActiveIdUsingKey"][1]["stname"] = "" -defs["igIsActiveIdUsingKey"]["(ImGuiKey)"] = defs["igIsActiveIdUsingKey"][1] defs["igIsActiveIdUsingNavDir"] = {} defs["igIsActiveIdUsingNavDir"][1] = {} defs["igIsActiveIdUsingNavDir"][1]["args"] = "(ImGuiDir dir)" @@ -20853,32 +21253,32 @@ 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:2940" +defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3082" defs["igIsActiveIdUsingNavDir"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavDir"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["ret"] = "bool" defs["igIsActiveIdUsingNavDir"][1]["signature"] = "(ImGuiDir)" defs["igIsActiveIdUsingNavDir"][1]["stname"] = "" defs["igIsActiveIdUsingNavDir"]["(ImGuiDir)"] = defs["igIsActiveIdUsingNavDir"][1] -defs["igIsActiveIdUsingNavInput"] = {} -defs["igIsActiveIdUsingNavInput"][1] = {} -defs["igIsActiveIdUsingNavInput"][1]["args"] = "(ImGuiNavInput input)" -defs["igIsActiveIdUsingNavInput"][1]["argsT"] = {} -defs["igIsActiveIdUsingNavInput"][1]["argsT"][1] = {} -defs["igIsActiveIdUsingNavInput"][1]["argsT"][1]["name"] = "input" -defs["igIsActiveIdUsingNavInput"][1]["argsT"][1]["type"] = "ImGuiNavInput" -defs["igIsActiveIdUsingNavInput"][1]["argsoriginal"] = "(ImGuiNavInput input)" -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:2941" -defs["igIsActiveIdUsingNavInput"][1]["namespace"] = "ImGui" -defs["igIsActiveIdUsingNavInput"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavInput" -defs["igIsActiveIdUsingNavInput"][1]["ret"] = "bool" -defs["igIsActiveIdUsingNavInput"][1]["signature"] = "(ImGuiNavInput)" -defs["igIsActiveIdUsingNavInput"][1]["stname"] = "" -defs["igIsActiveIdUsingNavInput"]["(ImGuiNavInput)"] = defs["igIsActiveIdUsingNavInput"][1] +defs["igIsAliasKey"] = {} +defs["igIsAliasKey"][1] = {} +defs["igIsAliasKey"][1]["args"] = "(ImGuiKey key)" +defs["igIsAliasKey"][1]["argsT"] = {} +defs["igIsAliasKey"][1]["argsT"][1] = {} +defs["igIsAliasKey"][1]["argsT"][1]["name"] = "key" +defs["igIsAliasKey"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igIsAliasKey"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igIsAliasKey"][1]["call_args"] = "(key)" +defs["igIsAliasKey"][1]["cimguiname"] = "igIsAliasKey" +defs["igIsAliasKey"][1]["defaults"] = {} +defs["igIsAliasKey"][1]["funcname"] = "IsAliasKey" +defs["igIsAliasKey"][1]["location"] = "imgui_internal:3063" +defs["igIsAliasKey"][1]["namespace"] = "ImGui" +defs["igIsAliasKey"][1]["ov_cimguiname"] = "igIsAliasKey" +defs["igIsAliasKey"][1]["ret"] = "bool" +defs["igIsAliasKey"][1]["signature"] = "(ImGuiKey)" +defs["igIsAliasKey"][1]["stname"] = "" +defs["igIsAliasKey"]["(ImGuiKey)"] = defs["igIsAliasKey"][1] defs["igIsAnyItemActive"] = {} defs["igIsAnyItemActive"][1] = {} defs["igIsAnyItemActive"][1]["args"] = "()" @@ -20888,7 +21288,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:866" +defs["igIsAnyItemActive"][1]["location"] = "imgui:876" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -20904,7 +21304,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:867" +defs["igIsAnyItemFocused"][1]["location"] = "imgui:877" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -20920,7 +21320,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:865" +defs["igIsAnyItemHovered"][1]["location"] = "imgui:875" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -20936,7 +21336,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:930" +defs["igIsAnyMouseDown"][1]["location"] = "imgui:940" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -20958,7 +21358,7 @@ defs["igIsClippedEx"][1]["call_args"] = "(bb,id)" defs["igIsClippedEx"][1]["cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["defaults"] = {} defs["igIsClippedEx"][1]["funcname"] = "IsClippedEx" -defs["igIsClippedEx"][1]["location"] = "imgui_internal:2851" +defs["igIsClippedEx"][1]["location"] = "imgui_internal:2999" defs["igIsClippedEx"][1]["namespace"] = "ImGui" defs["igIsClippedEx"][1]["ov_cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["ret"] = "bool" @@ -20974,7 +21374,7 @@ defs["igIsDragDropActive"][1]["call_args"] = "()" defs["igIsDragDropActive"][1]["cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["defaults"] = {} defs["igIsDragDropActive"][1]["funcname"] = "IsDragDropActive" -defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3004" +defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3194" defs["igIsDragDropActive"][1]["namespace"] = "ImGui" defs["igIsDragDropActive"][1]["ov_cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["ret"] = "bool" @@ -20990,7 +21390,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:3007" +defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:3197" defs["igIsDragDropPayloadBeingAccepted"][1]["namespace"] = "ImGui" defs["igIsDragDropPayloadBeingAccepted"][1]["ov_cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["ret"] = "bool" @@ -21009,7 +21409,7 @@ defs["igIsGamepadKey"][1]["call_args"] = "(key)" defs["igIsGamepadKey"][1]["cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["defaults"] = {} defs["igIsGamepadKey"][1]["funcname"] = "IsGamepadKey" -defs["igIsGamepadKey"][1]["location"] = "imgui_internal:2936" +defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3062" defs["igIsGamepadKey"][1]["namespace"] = "ImGui" defs["igIsGamepadKey"][1]["ov_cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["ret"] = "bool" @@ -21025,7 +21425,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:861" +defs["igIsItemActivated"][1]["location"] = "imgui:871" defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -21041,7 +21441,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:856" +defs["igIsItemActive"][1]["location"] = "imgui:866" defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -21061,7 +21461,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:858" +defs["igIsItemClicked"][1]["location"] = "imgui:868" defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -21077,7 +21477,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:862" +defs["igIsItemDeactivated"][1]["location"] = "imgui:872" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -21093,7 +21493,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:863" +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:873" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -21109,7 +21509,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:860" +defs["igIsItemEdited"][1]["location"] = "imgui:870" defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -21125,7 +21525,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:857" +defs["igIsItemFocused"][1]["location"] = "imgui:867" defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -21145,7 +21545,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:855" +defs["igIsItemHovered"][1]["location"] = "imgui:865" defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -21161,7 +21561,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:864" +defs["igIsItemToggledOpen"][1]["location"] = "imgui:874" defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" @@ -21177,7 +21577,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:2856" +defs["igIsItemToggledSelection"][1]["location"] = "imgui_internal:3004" defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["ret"] = "bool" @@ -21193,7 +21593,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:859" +defs["igIsItemVisible"][1]["location"] = "imgui:869" defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" @@ -21212,13 +21612,34 @@ defs["igIsKeyDown"][1]["call_args"] = "(key)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui:912" +defs["igIsKeyDown"][1]["location"] = "imgui:922" defs["igIsKeyDown"][1]["namespace"] = "ImGui" -defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown" +defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown_Nil" defs["igIsKeyDown"][1]["ret"] = "bool" defs["igIsKeyDown"][1]["signature"] = "(ImGuiKey)" defs["igIsKeyDown"][1]["stname"] = "" +defs["igIsKeyDown"][2] = {} +defs["igIsKeyDown"][2]["args"] = "(ImGuiKey key,ImGuiID owner_id)" +defs["igIsKeyDown"][2]["argsT"] = {} +defs["igIsKeyDown"][2]["argsT"][1] = {} +defs["igIsKeyDown"][2]["argsT"][1]["name"] = "key" +defs["igIsKeyDown"][2]["argsT"][1]["type"] = "ImGuiKey" +defs["igIsKeyDown"][2]["argsT"][2] = {} +defs["igIsKeyDown"][2]["argsT"][2]["name"] = "owner_id" +defs["igIsKeyDown"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsKeyDown"][2]["argsoriginal"] = "(ImGuiKey key,ImGuiID owner_id)" +defs["igIsKeyDown"][2]["call_args"] = "(key,owner_id)" +defs["igIsKeyDown"][2]["cimguiname"] = "igIsKeyDown" +defs["igIsKeyDown"][2]["defaults"] = {} +defs["igIsKeyDown"][2]["funcname"] = "IsKeyDown" +defs["igIsKeyDown"][2]["location"] = "imgui_internal:3107" +defs["igIsKeyDown"][2]["namespace"] = "ImGui" +defs["igIsKeyDown"][2]["ov_cimguiname"] = "igIsKeyDown_ID" +defs["igIsKeyDown"][2]["ret"] = "bool" +defs["igIsKeyDown"][2]["signature"] = "(ImGuiKey,ImGuiID)" +defs["igIsKeyDown"][2]["stname"] = "" defs["igIsKeyDown"]["(ImGuiKey)"] = defs["igIsKeyDown"][1] +defs["igIsKeyDown"]["(ImGuiKey,ImGuiID)"] = defs["igIsKeyDown"][2] defs["igIsKeyPressed"] = {} defs["igIsKeyPressed"][1] = {} defs["igIsKeyPressed"][1]["args"] = "(ImGuiKey key,bool repeat)" @@ -21235,12 +21656,37 @@ 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:913" +defs["igIsKeyPressed"][1]["location"] = "imgui:923" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" -defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed" +defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed_Bool" defs["igIsKeyPressed"][1]["ret"] = "bool" defs["igIsKeyPressed"][1]["signature"] = "(ImGuiKey,bool)" defs["igIsKeyPressed"][1]["stname"] = "" +defs["igIsKeyPressed"][2] = {} +defs["igIsKeyPressed"][2]["args"] = "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igIsKeyPressed"][2]["argsT"] = {} +defs["igIsKeyPressed"][2]["argsT"][1] = {} +defs["igIsKeyPressed"][2]["argsT"][1]["name"] = "key" +defs["igIsKeyPressed"][2]["argsT"][1]["type"] = "ImGuiKey" +defs["igIsKeyPressed"][2]["argsT"][2] = {} +defs["igIsKeyPressed"][2]["argsT"][2]["name"] = "owner_id" +defs["igIsKeyPressed"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsKeyPressed"][2]["argsT"][3] = {} +defs["igIsKeyPressed"][2]["argsT"][3]["name"] = "flags" +defs["igIsKeyPressed"][2]["argsT"][3]["type"] = "ImGuiInputFlags" +defs["igIsKeyPressed"][2]["argsoriginal"] = "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags=0)" +defs["igIsKeyPressed"][2]["call_args"] = "(key,owner_id,flags)" +defs["igIsKeyPressed"][2]["cimguiname"] = "igIsKeyPressed" +defs["igIsKeyPressed"][2]["defaults"] = {} +defs["igIsKeyPressed"][2]["defaults"]["flags"] = "0" +defs["igIsKeyPressed"][2]["funcname"] = "IsKeyPressed" +defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3108" +defs["igIsKeyPressed"][2]["namespace"] = "ImGui" +defs["igIsKeyPressed"][2]["ov_cimguiname"] = "igIsKeyPressed_ID" +defs["igIsKeyPressed"][2]["ret"] = "bool" +defs["igIsKeyPressed"][2]["signature"] = "(ImGuiKey,ImGuiID,ImGuiInputFlags)" +defs["igIsKeyPressed"][2]["stname"] = "" +defs["igIsKeyPressed"]["(ImGuiKey,ImGuiID,ImGuiInputFlags)"] = defs["igIsKeyPressed"][2] defs["igIsKeyPressed"]["(ImGuiKey,bool)"] = defs["igIsKeyPressed"][1] defs["igIsKeyPressedMap"] = {} defs["igIsKeyPressedMap"][1] = {} @@ -21258,7 +21704,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:2949" +defs["igIsKeyPressedMap"][1]["location"] = "imgui_internal:3422" defs["igIsKeyPressedMap"][1]["namespace"] = "ImGui" defs["igIsKeyPressedMap"][1]["ov_cimguiname"] = "igIsKeyPressedMap" defs["igIsKeyPressedMap"][1]["ret"] = "bool" @@ -21277,13 +21723,34 @@ defs["igIsKeyReleased"][1]["call_args"] = "(key)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui:914" +defs["igIsKeyReleased"][1]["location"] = "imgui:924" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" -defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased" +defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased_Nil" defs["igIsKeyReleased"][1]["ret"] = "bool" defs["igIsKeyReleased"][1]["signature"] = "(ImGuiKey)" defs["igIsKeyReleased"][1]["stname"] = "" +defs["igIsKeyReleased"][2] = {} +defs["igIsKeyReleased"][2]["args"] = "(ImGuiKey key,ImGuiID owner_id)" +defs["igIsKeyReleased"][2]["argsT"] = {} +defs["igIsKeyReleased"][2]["argsT"][1] = {} +defs["igIsKeyReleased"][2]["argsT"][1]["name"] = "key" +defs["igIsKeyReleased"][2]["argsT"][1]["type"] = "ImGuiKey" +defs["igIsKeyReleased"][2]["argsT"][2] = {} +defs["igIsKeyReleased"][2]["argsT"][2]["name"] = "owner_id" +defs["igIsKeyReleased"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsKeyReleased"][2]["argsoriginal"] = "(ImGuiKey key,ImGuiID owner_id)" +defs["igIsKeyReleased"][2]["call_args"] = "(key,owner_id)" +defs["igIsKeyReleased"][2]["cimguiname"] = "igIsKeyReleased" +defs["igIsKeyReleased"][2]["defaults"] = {} +defs["igIsKeyReleased"][2]["funcname"] = "IsKeyReleased" +defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3109" +defs["igIsKeyReleased"][2]["namespace"] = "ImGui" +defs["igIsKeyReleased"][2]["ov_cimguiname"] = "igIsKeyReleased_ID" +defs["igIsKeyReleased"][2]["ret"] = "bool" +defs["igIsKeyReleased"][2]["signature"] = "(ImGuiKey,ImGuiID)" +defs["igIsKeyReleased"][2]["stname"] = "" defs["igIsKeyReleased"]["(ImGuiKey)"] = defs["igIsKeyReleased"][1] +defs["igIsKeyReleased"]["(ImGuiKey,ImGuiID)"] = defs["igIsKeyReleased"][2] defs["igIsLegacyKey"] = {} defs["igIsLegacyKey"][1] = {} defs["igIsLegacyKey"][1]["args"] = "(ImGuiKey key)" @@ -21296,7 +21763,7 @@ defs["igIsLegacyKey"][1]["call_args"] = "(key)" defs["igIsLegacyKey"][1]["cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["defaults"] = {} defs["igIsLegacyKey"][1]["funcname"] = "IsLegacyKey" -defs["igIsLegacyKey"][1]["location"] = "imgui_internal:2935" +defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3061" defs["igIsLegacyKey"][1]["namespace"] = "ImGui" defs["igIsLegacyKey"][1]["ov_cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["ret"] = "bool" @@ -21319,12 +21786,37 @@ 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:924" +defs["igIsMouseClicked"][1]["location"] = "imgui:934" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" -defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked" +defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked_Bool" defs["igIsMouseClicked"][1]["ret"] = "bool" defs["igIsMouseClicked"][1]["signature"] = "(ImGuiMouseButton,bool)" defs["igIsMouseClicked"][1]["stname"] = "" +defs["igIsMouseClicked"][2] = {} +defs["igIsMouseClicked"][2]["args"] = "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igIsMouseClicked"][2]["argsT"] = {} +defs["igIsMouseClicked"][2]["argsT"][1] = {} +defs["igIsMouseClicked"][2]["argsT"][1]["name"] = "button" +defs["igIsMouseClicked"][2]["argsT"][1]["type"] = "ImGuiMouseButton" +defs["igIsMouseClicked"][2]["argsT"][2] = {} +defs["igIsMouseClicked"][2]["argsT"][2]["name"] = "owner_id" +defs["igIsMouseClicked"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsMouseClicked"][2]["argsT"][3] = {} +defs["igIsMouseClicked"][2]["argsT"][3]["name"] = "flags" +defs["igIsMouseClicked"][2]["argsT"][3]["type"] = "ImGuiInputFlags" +defs["igIsMouseClicked"][2]["argsoriginal"] = "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags=0)" +defs["igIsMouseClicked"][2]["call_args"] = "(button,owner_id,flags)" +defs["igIsMouseClicked"][2]["cimguiname"] = "igIsMouseClicked" +defs["igIsMouseClicked"][2]["defaults"] = {} +defs["igIsMouseClicked"][2]["defaults"]["flags"] = "0" +defs["igIsMouseClicked"][2]["funcname"] = "IsMouseClicked" +defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3111" +defs["igIsMouseClicked"][2]["namespace"] = "ImGui" +defs["igIsMouseClicked"][2]["ov_cimguiname"] = "igIsMouseClicked_ID" +defs["igIsMouseClicked"][2]["ret"] = "bool" +defs["igIsMouseClicked"][2]["signature"] = "(ImGuiMouseButton,ImGuiID,ImGuiInputFlags)" +defs["igIsMouseClicked"][2]["stname"] = "" +defs["igIsMouseClicked"]["(ImGuiMouseButton,ImGuiID,ImGuiInputFlags)"] = defs["igIsMouseClicked"][2] defs["igIsMouseClicked"]["(ImGuiMouseButton,bool)"] = defs["igIsMouseClicked"][1] defs["igIsMouseDoubleClicked"] = {} defs["igIsMouseDoubleClicked"][1] = {} @@ -21338,7 +21830,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:926" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:936" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" @@ -21357,13 +21849,34 @@ 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:923" +defs["igIsMouseDown"][1]["location"] = "imgui:933" defs["igIsMouseDown"][1]["namespace"] = "ImGui" -defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown" +defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown_Nil" defs["igIsMouseDown"][1]["ret"] = "bool" defs["igIsMouseDown"][1]["signature"] = "(ImGuiMouseButton)" defs["igIsMouseDown"][1]["stname"] = "" +defs["igIsMouseDown"][2] = {} +defs["igIsMouseDown"][2]["args"] = "(ImGuiMouseButton button,ImGuiID owner_id)" +defs["igIsMouseDown"][2]["argsT"] = {} +defs["igIsMouseDown"][2]["argsT"][1] = {} +defs["igIsMouseDown"][2]["argsT"][1]["name"] = "button" +defs["igIsMouseDown"][2]["argsT"][1]["type"] = "ImGuiMouseButton" +defs["igIsMouseDown"][2]["argsT"][2] = {} +defs["igIsMouseDown"][2]["argsT"][2]["name"] = "owner_id" +defs["igIsMouseDown"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsMouseDown"][2]["argsoriginal"] = "(ImGuiMouseButton button,ImGuiID owner_id)" +defs["igIsMouseDown"][2]["call_args"] = "(button,owner_id)" +defs["igIsMouseDown"][2]["cimguiname"] = "igIsMouseDown" +defs["igIsMouseDown"][2]["defaults"] = {} +defs["igIsMouseDown"][2]["funcname"] = "IsMouseDown" +defs["igIsMouseDown"][2]["location"] = "imgui_internal:3110" +defs["igIsMouseDown"][2]["namespace"] = "ImGui" +defs["igIsMouseDown"][2]["ov_cimguiname"] = "igIsMouseDown_ID" +defs["igIsMouseDown"][2]["ret"] = "bool" +defs["igIsMouseDown"][2]["signature"] = "(ImGuiMouseButton,ImGuiID)" +defs["igIsMouseDown"][2]["stname"] = "" defs["igIsMouseDown"]["(ImGuiMouseButton)"] = defs["igIsMouseDown"][1] +defs["igIsMouseDown"]["(ImGuiMouseButton,ImGuiID)"] = defs["igIsMouseDown"][2] defs["igIsMouseDragPastThreshold"] = {} defs["igIsMouseDragPastThreshold"][1] = {} defs["igIsMouseDragPastThreshold"][1]["args"] = "(ImGuiMouseButton button,float lock_threshold)" @@ -21380,7 +21893,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:2944" +defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:3076" defs["igIsMouseDragPastThreshold"][1]["namespace"] = "ImGui" defs["igIsMouseDragPastThreshold"][1]["ov_cimguiname"] = "igIsMouseDragPastThreshold" defs["igIsMouseDragPastThreshold"][1]["ret"] = "bool" @@ -21403,7 +21916,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:933" +defs["igIsMouseDragging"][1]["location"] = "imgui:943" defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -21429,7 +21942,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:928" +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:938" defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -21449,7 +21962,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:929" +defs["igIsMousePosValid"][1]["location"] = "imgui:939" defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -21468,13 +21981,34 @@ 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:925" +defs["igIsMouseReleased"][1]["location"] = "imgui:935" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" -defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased" +defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased_Nil" defs["igIsMouseReleased"][1]["ret"] = "bool" defs["igIsMouseReleased"][1]["signature"] = "(ImGuiMouseButton)" defs["igIsMouseReleased"][1]["stname"] = "" +defs["igIsMouseReleased"][2] = {} +defs["igIsMouseReleased"][2]["args"] = "(ImGuiMouseButton button,ImGuiID owner_id)" +defs["igIsMouseReleased"][2]["argsT"] = {} +defs["igIsMouseReleased"][2]["argsT"][1] = {} +defs["igIsMouseReleased"][2]["argsT"][1]["name"] = "button" +defs["igIsMouseReleased"][2]["argsT"][1]["type"] = "ImGuiMouseButton" +defs["igIsMouseReleased"][2]["argsT"][2] = {} +defs["igIsMouseReleased"][2]["argsT"][2]["name"] = "owner_id" +defs["igIsMouseReleased"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsMouseReleased"][2]["argsoriginal"] = "(ImGuiMouseButton button,ImGuiID owner_id)" +defs["igIsMouseReleased"][2]["call_args"] = "(button,owner_id)" +defs["igIsMouseReleased"][2]["cimguiname"] = "igIsMouseReleased" +defs["igIsMouseReleased"][2]["defaults"] = {} +defs["igIsMouseReleased"][2]["funcname"] = "IsMouseReleased" +defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3112" +defs["igIsMouseReleased"][2]["namespace"] = "ImGui" +defs["igIsMouseReleased"][2]["ov_cimguiname"] = "igIsMouseReleased_ID" +defs["igIsMouseReleased"][2]["ret"] = "bool" +defs["igIsMouseReleased"][2]["signature"] = "(ImGuiMouseButton,ImGuiID)" +defs["igIsMouseReleased"][2]["stname"] = "" defs["igIsMouseReleased"]["(ImGuiMouseButton)"] = defs["igIsMouseReleased"][1] +defs["igIsMouseReleased"]["(ImGuiMouseButton,ImGuiID)"] = defs["igIsMouseReleased"][2] defs["igIsNamedKey"] = {} defs["igIsNamedKey"][1] = {} defs["igIsNamedKey"][1]["args"] = "(ImGuiKey key)" @@ -21487,54 +22021,32 @@ defs["igIsNamedKey"][1]["call_args"] = "(key)" defs["igIsNamedKey"][1]["cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["defaults"] = {} defs["igIsNamedKey"][1]["funcname"] = "IsNamedKey" -defs["igIsNamedKey"][1]["location"] = "imgui_internal:2934" +defs["igIsNamedKey"][1]["location"] = "imgui_internal:3059" defs["igIsNamedKey"][1]["namespace"] = "ImGui" defs["igIsNamedKey"][1]["ov_cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["ret"] = "bool" defs["igIsNamedKey"][1]["signature"] = "(ImGuiKey)" defs["igIsNamedKey"][1]["stname"] = "" defs["igIsNamedKey"]["(ImGuiKey)"] = defs["igIsNamedKey"][1] -defs["igIsNavInputDown"] = {} -defs["igIsNavInputDown"][1] = {} -defs["igIsNavInputDown"][1]["args"] = "(ImGuiNavInput n)" -defs["igIsNavInputDown"][1]["argsT"] = {} -defs["igIsNavInputDown"][1]["argsT"][1] = {} -defs["igIsNavInputDown"][1]["argsT"][1]["name"] = "n" -defs["igIsNavInputDown"][1]["argsT"][1]["type"] = "ImGuiNavInput" -defs["igIsNavInputDown"][1]["argsoriginal"] = "(ImGuiNavInput n)" -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:2945" -defs["igIsNavInputDown"][1]["namespace"] = "ImGui" -defs["igIsNavInputDown"][1]["ov_cimguiname"] = "igIsNavInputDown" -defs["igIsNavInputDown"][1]["ret"] = "bool" -defs["igIsNavInputDown"][1]["signature"] = "(ImGuiNavInput)" -defs["igIsNavInputDown"][1]["stname"] = "" -defs["igIsNavInputDown"]["(ImGuiNavInput)"] = defs["igIsNavInputDown"][1] -defs["igIsNavInputTest"] = {} -defs["igIsNavInputTest"][1] = {} -defs["igIsNavInputTest"][1]["args"] = "(ImGuiNavInput n,ImGuiNavReadMode rm)" -defs["igIsNavInputTest"][1]["argsT"] = {} -defs["igIsNavInputTest"][1]["argsT"][1] = {} -defs["igIsNavInputTest"][1]["argsT"][1]["name"] = "n" -defs["igIsNavInputTest"][1]["argsT"][1]["type"] = "ImGuiNavInput" -defs["igIsNavInputTest"][1]["argsT"][2] = {} -defs["igIsNavInputTest"][1]["argsT"][2]["name"] = "rm" -defs["igIsNavInputTest"][1]["argsT"][2]["type"] = "ImGuiNavReadMode" -defs["igIsNavInputTest"][1]["argsoriginal"] = "(ImGuiNavInput n,ImGuiNavReadMode rm)" -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:2946" -defs["igIsNavInputTest"][1]["namespace"] = "ImGui" -defs["igIsNavInputTest"][1]["ov_cimguiname"] = "igIsNavInputTest" -defs["igIsNavInputTest"][1]["ret"] = "bool" -defs["igIsNavInputTest"][1]["signature"] = "(ImGuiNavInput,ImGuiNavReadMode)" -defs["igIsNavInputTest"][1]["stname"] = "" -defs["igIsNavInputTest"]["(ImGuiNavInput,ImGuiNavReadMode)"] = defs["igIsNavInputTest"][1] +defs["igIsNamedKeyOrModKey"] = {} +defs["igIsNamedKeyOrModKey"][1] = {} +defs["igIsNamedKeyOrModKey"][1]["args"] = "(ImGuiKey key)" +defs["igIsNamedKeyOrModKey"][1]["argsT"] = {} +defs["igIsNamedKeyOrModKey"][1]["argsT"][1] = {} +defs["igIsNamedKeyOrModKey"][1]["argsT"][1]["name"] = "key" +defs["igIsNamedKeyOrModKey"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igIsNamedKeyOrModKey"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igIsNamedKeyOrModKey"][1]["call_args"] = "(key)" +defs["igIsNamedKeyOrModKey"][1]["cimguiname"] = "igIsNamedKeyOrModKey" +defs["igIsNamedKeyOrModKey"][1]["defaults"] = {} +defs["igIsNamedKeyOrModKey"][1]["funcname"] = "IsNamedKeyOrModKey" +defs["igIsNamedKeyOrModKey"][1]["location"] = "imgui_internal:3060" +defs["igIsNamedKeyOrModKey"][1]["namespace"] = "ImGui" +defs["igIsNamedKeyOrModKey"][1]["ov_cimguiname"] = "igIsNamedKeyOrModKey" +defs["igIsNamedKeyOrModKey"][1]["ret"] = "bool" +defs["igIsNamedKeyOrModKey"][1]["signature"] = "(ImGuiKey)" +defs["igIsNamedKeyOrModKey"][1]["stname"] = "" +defs["igIsNamedKeyOrModKey"]["(ImGuiKey)"] = defs["igIsNamedKeyOrModKey"][1] defs["igIsPopupOpen"] = {} defs["igIsPopupOpen"][1] = {} defs["igIsPopupOpen"][1]["args"] = "(const char* str_id,ImGuiPopupFlags flags)" @@ -21551,7 +22063,7 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["defaults"]["flags"] = "0" defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][1]["location"] = "imgui:713" +defs["igIsPopupOpen"][1]["location"] = "imgui:723" defs["igIsPopupOpen"][1]["namespace"] = "ImGui" defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen_Str" defs["igIsPopupOpen"][1]["ret"] = "bool" @@ -21571,7 +22083,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:2887" +defs["igIsPopupOpen"][2]["location"] = "imgui_internal:3024" defs["igIsPopupOpen"][2]["namespace"] = "ImGui" defs["igIsPopupOpen"][2]["ov_cimguiname"] = "igIsPopupOpen_ID" defs["igIsPopupOpen"][2]["ret"] = "bool" @@ -21591,7 +22103,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:886" +defs["igIsRectVisible"][1]["location"] = "imgui:896" defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisible_Nil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -21611,7 +22123,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:887" +defs["igIsRectVisible"][2]["location"] = "imgui:897" defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisible_Vec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -21634,7 +22146,7 @@ defs["igIsWindowAbove"][1]["call_args"] = "(potential_above,potential_below)" defs["igIsWindowAbove"][1]["cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["defaults"] = {} defs["igIsWindowAbove"][1]["funcname"] = "IsWindowAbove" -defs["igIsWindowAbove"][1]["location"] = "imgui_internal:2754" +defs["igIsWindowAbove"][1]["location"] = "imgui_internal:2903" defs["igIsWindowAbove"][1]["namespace"] = "ImGui" defs["igIsWindowAbove"][1]["ov_cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["ret"] = "bool" @@ -21650,7 +22162,7 @@ defs["igIsWindowAppearing"][1]["call_args"] = "()" defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" -defs["igIsWindowAppearing"][1]["location"] = "imgui:349" +defs["igIsWindowAppearing"][1]["location"] = "imgui:353" defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" @@ -21678,7 +22190,7 @@ defs["igIsWindowChildOf"][1]["call_args"] = "(window,potential_parent,popup_hier defs["igIsWindowChildOf"][1]["cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["defaults"] = {} defs["igIsWindowChildOf"][1]["funcname"] = "IsWindowChildOf" -defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:2752" +defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:2901" defs["igIsWindowChildOf"][1]["namespace"] = "ImGui" defs["igIsWindowChildOf"][1]["ov_cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["ret"] = "bool" @@ -21694,7 +22206,7 @@ defs["igIsWindowCollapsed"][1]["call_args"] = "()" defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" -defs["igIsWindowCollapsed"][1]["location"] = "imgui:350" +defs["igIsWindowCollapsed"][1]["location"] = "imgui:354" defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" @@ -21710,7 +22222,7 @@ defs["igIsWindowDocked"][1]["call_args"] = "()" defs["igIsWindowDocked"][1]["cimguiname"] = "igIsWindowDocked" defs["igIsWindowDocked"][1]["defaults"] = {} defs["igIsWindowDocked"][1]["funcname"] = "IsWindowDocked" -defs["igIsWindowDocked"][1]["location"] = "imgui:810" +defs["igIsWindowDocked"][1]["location"] = "imgui:820" defs["igIsWindowDocked"][1]["namespace"] = "ImGui" defs["igIsWindowDocked"][1]["ov_cimguiname"] = "igIsWindowDocked" defs["igIsWindowDocked"][1]["ret"] = "bool" @@ -21730,7 +22242,7 @@ defs["igIsWindowFocused"][1]["cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" -defs["igIsWindowFocused"][1]["location"] = "imgui:351" +defs["igIsWindowFocused"][1]["location"] = "imgui:355" defs["igIsWindowFocused"][1]["namespace"] = "ImGui" defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" @@ -21750,7 +22262,7 @@ defs["igIsWindowHovered"][1]["cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" -defs["igIsWindowHovered"][1]["location"] = "imgui:352" +defs["igIsWindowHovered"][1]["location"] = "imgui:356" defs["igIsWindowHovered"][1]["namespace"] = "ImGui" defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" @@ -21769,7 +22281,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:2755" +defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:2904" defs["igIsWindowNavFocusable"][1]["namespace"] = "ImGui" defs["igIsWindowNavFocusable"][1]["ov_cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["ret"] = "bool" @@ -21791,7 +22303,7 @@ defs["igIsWindowWithinBeginStackOf"][1]["call_args"] = "(window,potential_parent defs["igIsWindowWithinBeginStackOf"][1]["cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["defaults"] = {} defs["igIsWindowWithinBeginStackOf"][1]["funcname"] = "IsWindowWithinBeginStackOf" -defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:2753" +defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:2902" defs["igIsWindowWithinBeginStackOf"][1]["namespace"] = "ImGui" defs["igIsWindowWithinBeginStackOf"][1]["ov_cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["ret"] = "bool" @@ -21821,7 +22333,7 @@ defs["igItemAdd"][1]["defaults"] = {} defs["igItemAdd"][1]["defaults"]["extra_flags"] = "0" defs["igItemAdd"][1]["defaults"]["nav_bb"] = "NULL" defs["igItemAdd"][1]["funcname"] = "ItemAdd" -defs["igItemAdd"][1]["location"] = "imgui_internal:2849" +defs["igItemAdd"][1]["location"] = "imgui_internal:2997" defs["igItemAdd"][1]["namespace"] = "ImGui" defs["igItemAdd"][1]["ov_cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["ret"] = "bool" @@ -21843,7 +22355,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:2850" +defs["igItemHoverable"][1]["location"] = "imgui_internal:2998" defs["igItemHoverable"][1]["namespace"] = "ImGui" defs["igItemHoverable"][1]["ov_cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["ret"] = "bool" @@ -21866,7 +22378,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:2847" +defs["igItemSize"][1]["location"] = "imgui_internal:2995" defs["igItemSize"][1]["namespace"] = "ImGui" defs["igItemSize"][1]["ov_cimguiname"] = "igItemSize_Vec2" defs["igItemSize"][1]["ret"] = "void" @@ -21887,7 +22399,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:2848" +defs["igItemSize"][2]["location"] = "imgui_internal:2996" defs["igItemSize"][2]["namespace"] = "ImGui" defs["igItemSize"][2]["ov_cimguiname"] = "igItemSize_Rect" defs["igItemSize"][2]["ret"] = "void" @@ -21907,7 +22419,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:2841" +defs["igKeepAliveID"][1]["location"] = "imgui_internal:2989" defs["igKeepAliveID"][1]["namespace"] = "ImGui" defs["igKeepAliveID"][1]["ov_cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["ret"] = "void" @@ -21933,7 +22445,7 @@ defs["igLabelText"][1]["cimguiname"] = "igLabelText" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" -defs["igLabelText"][1]["location"] = "imgui:494" +defs["igLabelText"][1]["location"] = "imgui:501" defs["igLabelText"][1]["namespace"] = "ImGui" defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" @@ -21958,7 +22470,7 @@ defs["igLabelTextV"][1]["call_args"] = "(label,fmt,args)" defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" -defs["igLabelTextV"][1]["location"] = "imgui:495" +defs["igLabelTextV"][1]["location"] = "imgui:502" defs["igLabelTextV"][1]["namespace"] = "ImGui" defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" @@ -21990,7 +22502,7 @@ defs["igListBox"][1]["cimguiname"] = "igListBox" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" -defs["igListBox"][1]["location"] = "imgui:633" +defs["igListBox"][1]["location"] = "imgui:643" defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBox_Str_arr" defs["igListBox"][1]["ret"] = "bool" @@ -22025,7 +22537,7 @@ defs["igListBox"][2]["cimguiname"] = "igListBox" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" -defs["igListBox"][2]["location"] = "imgui:634" +defs["igListBox"][2]["location"] = "imgui:644" defs["igListBox"][2]["namespace"] = "ImGui" defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnBoolPtr" defs["igListBox"][2]["ret"] = "bool" @@ -22045,7 +22557,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:949" +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:959" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -22068,7 +22580,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:950" +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:960" defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -22090,7 +22602,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:2876" +defs["igLogBegin"][1]["location"] = "imgui_internal:3013" defs["igLogBegin"][1]["namespace"] = "ImGui" defs["igLogBegin"][1]["ov_cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["ret"] = "void" @@ -22106,7 +22618,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:818" +defs["igLogButtons"][1]["location"] = "imgui:828" defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -22122,7 +22634,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:817" +defs["igLogFinish"][1]["location"] = "imgui:827" defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -22148,7 +22660,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:2878" +defs["igLogRenderedText"][1]["location"] = "imgui_internal:3015" defs["igLogRenderedText"][1]["namespace"] = "ImGui" defs["igLogRenderedText"][1]["ov_cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["ret"] = "void" @@ -22170,7 +22682,7 @@ defs["igLogSetNextTextDecoration"][1]["call_args"] = "(prefix,suffix)" defs["igLogSetNextTextDecoration"][1]["cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["defaults"] = {} defs["igLogSetNextTextDecoration"][1]["funcname"] = "LogSetNextTextDecoration" -defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:2879" +defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:3016" defs["igLogSetNextTextDecoration"][1]["namespace"] = "ImGui" defs["igLogSetNextTextDecoration"][1]["ov_cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["ret"] = "void" @@ -22193,7 +22705,7 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" -defs["igLogText"][1]["location"] = "imgui:819" +defs["igLogText"][1]["location"] = "imgui:829" defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -22216,7 +22728,7 @@ defs["igLogTextV"][1]["call_args"] = "(fmt,args)" defs["igLogTextV"][1]["cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["defaults"] = {} defs["igLogTextV"][1]["funcname"] = "LogTextV" -defs["igLogTextV"][1]["location"] = "imgui:820" +defs["igLogTextV"][1]["location"] = "imgui:830" defs["igLogTextV"][1]["namespace"] = "ImGui" defs["igLogTextV"][1]["ov_cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["ret"] = "void" @@ -22236,7 +22748,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:2877" +defs["igLogToBuffer"][1]["location"] = "imgui_internal:3014" defs["igLogToBuffer"][1]["namespace"] = "ImGui" defs["igLogToBuffer"][1]["ov_cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["ret"] = "void" @@ -22256,7 +22768,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:816" +defs["igLogToClipboard"][1]["location"] = "imgui:826" defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -22280,7 +22792,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:815" +defs["igLogToFile"][1]["location"] = "imgui:825" defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -22300,7 +22812,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:814" +defs["igLogToTTY"][1]["location"] = "imgui:824" defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -22316,7 +22828,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:2805" +defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:2954" defs["igMarkIniSettingsDirty"][1]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][1]["ov_cimguiname"] = "igMarkIniSettingsDirty_Nil" defs["igMarkIniSettingsDirty"][1]["ret"] = "void" @@ -22333,7 +22845,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:2806" +defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:2955" defs["igMarkIniSettingsDirty"][2]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][2]["ov_cimguiname"] = "igMarkIniSettingsDirty_WindowPtr" defs["igMarkIniSettingsDirty"][2]["ret"] = "void" @@ -22353,7 +22865,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:2842" +defs["igMarkItemEdited"][1]["location"] = "imgui_internal:2990" defs["igMarkItemEdited"][1]["namespace"] = "ImGui" defs["igMarkItemEdited"][1]["ov_cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["ret"] = "void" @@ -22372,7 +22884,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:964" +defs["igMemAlloc"][1]["location"] = "imgui:974" defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -22391,7 +22903,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:965" +defs["igMemFree"][1]["location"] = "imgui:975" defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -22422,7 +22934,7 @@ defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" defs["igMenuItem"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItem"][1]["funcname"] = "MenuItem" -defs["igMenuItem"][1]["location"] = "imgui:661" +defs["igMenuItem"][1]["location"] = "imgui:671" defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItem_Bool" defs["igMenuItem"][1]["ret"] = "bool" @@ -22449,7 +22961,7 @@ defs["igMenuItem"][2]["cimguiname"] = "igMenuItem" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" -defs["igMenuItem"][2]["location"] = "imgui:662" +defs["igMenuItem"][2]["location"] = "imgui:672" defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItem_BoolPtr" defs["igMenuItem"][2]["ret"] = "bool" @@ -22484,13 +22996,32 @@ defs["igMenuItemEx"][1]["defaults"]["enabled"] = "true" defs["igMenuItemEx"][1]["defaults"]["selected"] = "false" defs["igMenuItemEx"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItemEx"][1]["funcname"] = "MenuItemEx" -defs["igMenuItemEx"][1]["location"] = "imgui_internal:2899" +defs["igMenuItemEx"][1]["location"] = "imgui_internal:3036" defs["igMenuItemEx"][1]["namespace"] = "ImGui" defs["igMenuItemEx"][1]["ov_cimguiname"] = "igMenuItemEx" defs["igMenuItemEx"][1]["ret"] = "bool" defs["igMenuItemEx"][1]["signature"] = "(const char*,const char*,const char*,bool,bool)" defs["igMenuItemEx"][1]["stname"] = "" defs["igMenuItemEx"]["(const char*,const char*,const char*,bool,bool)"] = defs["igMenuItemEx"][1] +defs["igMouseButtonToKey"] = {} +defs["igMouseButtonToKey"][1] = {} +defs["igMouseButtonToKey"][1]["args"] = "(ImGuiMouseButton button)" +defs["igMouseButtonToKey"][1]["argsT"] = {} +defs["igMouseButtonToKey"][1]["argsT"][1] = {} +defs["igMouseButtonToKey"][1]["argsT"][1]["name"] = "button" +defs["igMouseButtonToKey"][1]["argsT"][1]["type"] = "ImGuiMouseButton" +defs["igMouseButtonToKey"][1]["argsoriginal"] = "(ImGuiMouseButton button)" +defs["igMouseButtonToKey"][1]["call_args"] = "(button)" +defs["igMouseButtonToKey"][1]["cimguiname"] = "igMouseButtonToKey" +defs["igMouseButtonToKey"][1]["defaults"] = {} +defs["igMouseButtonToKey"][1]["funcname"] = "MouseButtonToKey" +defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3075" +defs["igMouseButtonToKey"][1]["namespace"] = "ImGui" +defs["igMouseButtonToKey"][1]["ov_cimguiname"] = "igMouseButtonToKey" +defs["igMouseButtonToKey"][1]["ret"] = "ImGuiKey" +defs["igMouseButtonToKey"][1]["signature"] = "(ImGuiMouseButton)" +defs["igMouseButtonToKey"][1]["stname"] = "" +defs["igMouseButtonToKey"]["(ImGuiMouseButton)"] = defs["igMouseButtonToKey"][1] defs["igNavInitRequestApplyResult"] = {} defs["igNavInitRequestApplyResult"][1] = {} defs["igNavInitRequestApplyResult"][1]["args"] = "()" @@ -22500,7 +23031,7 @@ defs["igNavInitRequestApplyResult"][1]["call_args"] = "()" defs["igNavInitRequestApplyResult"][1]["cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["defaults"] = {} defs["igNavInitRequestApplyResult"][1]["funcname"] = "NavInitRequestApplyResult" -defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:2908" +defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:3045" defs["igNavInitRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavInitRequestApplyResult"][1]["ov_cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["ret"] = "void" @@ -22522,7 +23053,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:2907" +defs["igNavInitWindow"][1]["location"] = "imgui_internal:3044" defs["igNavInitWindow"][1]["namespace"] = "ImGui" defs["igNavInitWindow"][1]["ov_cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["ret"] = "void" @@ -22538,7 +23069,7 @@ defs["igNavMoveRequestApplyResult"][1]["call_args"] = "()" defs["igNavMoveRequestApplyResult"][1]["cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["defaults"] = {} defs["igNavMoveRequestApplyResult"][1]["funcname"] = "NavMoveRequestApplyResult" -defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:2914" +defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:3051" defs["igNavMoveRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavMoveRequestApplyResult"][1]["ov_cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["ret"] = "void" @@ -22554,7 +23085,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:2909" +defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:3046" defs["igNavMoveRequestButNoResultYet"][1]["namespace"] = "ImGui" defs["igNavMoveRequestButNoResultYet"][1]["ov_cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["ret"] = "bool" @@ -22570,7 +23101,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:2913" +defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:3050" defs["igNavMoveRequestCancel"][1]["namespace"] = "ImGui" defs["igNavMoveRequestCancel"][1]["ov_cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["ret"] = "void" @@ -22598,7 +23129,7 @@ defs["igNavMoveRequestForward"][1]["call_args"] = "(move_dir,clip_dir,move_flags defs["igNavMoveRequestForward"][1]["cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["defaults"] = {} defs["igNavMoveRequestForward"][1]["funcname"] = "NavMoveRequestForward" -defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:2911" +defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:3048" defs["igNavMoveRequestForward"][1]["namespace"] = "ImGui" defs["igNavMoveRequestForward"][1]["ov_cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["ret"] = "void" @@ -22617,7 +23148,7 @@ defs["igNavMoveRequestResolveWithLastItem"][1]["call_args"] = "(result)" defs["igNavMoveRequestResolveWithLastItem"][1]["cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["defaults"] = {} defs["igNavMoveRequestResolveWithLastItem"][1]["funcname"] = "NavMoveRequestResolveWithLastItem" -defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:2912" +defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3049" defs["igNavMoveRequestResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithLastItem"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["ret"] = "void" @@ -22645,7 +23176,7 @@ defs["igNavMoveRequestSubmit"][1]["call_args"] = "(move_dir,clip_dir,move_flags, defs["igNavMoveRequestSubmit"][1]["cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["defaults"] = {} defs["igNavMoveRequestSubmit"][1]["funcname"] = "NavMoveRequestSubmit" -defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:2910" +defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:3047" defs["igNavMoveRequestSubmit"][1]["namespace"] = "ImGui" defs["igNavMoveRequestSubmit"][1]["ov_cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["ret"] = "void" @@ -22667,7 +23198,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:2915" +defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:3052" defs["igNavMoveRequestTryWrapping"][1]["namespace"] = "ImGui" defs["igNavMoveRequestTryWrapping"][1]["ov_cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["ret"] = "void" @@ -22683,7 +23214,7 @@ defs["igNewFrame"][1]["call_args"] = "()" defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" -defs["igNewFrame"][1]["location"] = "imgui:298" +defs["igNewFrame"][1]["location"] = "imgui:302" defs["igNewFrame"][1]["namespace"] = "ImGui" defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" @@ -22699,7 +23230,7 @@ defs["igNewLine"][1]["call_args"] = "()" defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" -defs["igNewLine"][1]["location"] = "imgui:442" +defs["igNewLine"][1]["location"] = "imgui:449" defs["igNewLine"][1]["namespace"] = "ImGui" defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" @@ -22715,7 +23246,7 @@ defs["igNextColumn"][1]["call_args"] = "()" defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" -defs["igNextColumn"][1]["location"] = "imgui:775" +defs["igNextColumn"][1]["location"] = "imgui:785" defs["igNextColumn"][1]["namespace"] = "ImGui" defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" @@ -22738,7 +23269,7 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][1]["funcname"] = "OpenPopup" -defs["igOpenPopup"][1]["location"] = "imgui:695" +defs["igOpenPopup"][1]["location"] = "imgui:705" defs["igOpenPopup"][1]["namespace"] = "ImGui" defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup_Str" defs["igOpenPopup"][1]["ret"] = "void" @@ -22759,7 +23290,7 @@ defs["igOpenPopup"][2]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][2]["defaults"] = {} defs["igOpenPopup"][2]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][2]["funcname"] = "OpenPopup" -defs["igOpenPopup"][2]["location"] = "imgui:696" +defs["igOpenPopup"][2]["location"] = "imgui:706" defs["igOpenPopup"][2]["namespace"] = "ImGui" defs["igOpenPopup"][2]["ov_cimguiname"] = "igOpenPopup_ID" defs["igOpenPopup"][2]["ret"] = "void" @@ -22783,7 +23314,7 @@ defs["igOpenPopupEx"][1]["cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["defaults"] = {} defs["igOpenPopupEx"][1]["defaults"]["popup_flags"] = "ImGuiPopupFlags_None" defs["igOpenPopupEx"][1]["funcname"] = "OpenPopupEx" -defs["igOpenPopupEx"][1]["location"] = "imgui_internal:2883" +defs["igOpenPopupEx"][1]["location"] = "imgui_internal:3020" defs["igOpenPopupEx"][1]["namespace"] = "ImGui" defs["igOpenPopupEx"][1]["ov_cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["ret"] = "void" @@ -22807,7 +23338,7 @@ defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["popup_flags"] = "1" defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "NULL" defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" -defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:697" +defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:707" defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "void" @@ -22855,7 +23386,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:3170" +defs["igPlotEx"][1]["location"] = "imgui_internal:3364" defs["igPlotEx"][1]["namespace"] = "ImGui" defs["igPlotEx"][1]["ov_cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["ret"] = "int" @@ -22904,7 +23435,7 @@ defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][1]["location"] = "imgui:640" +defs["igPlotHistogram"][1]["location"] = "imgui:650" defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogram_FloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" @@ -22952,7 +23483,7 @@ defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][2]["location"] = "imgui:641" +defs["igPlotHistogram"][2]["location"] = "imgui:651" defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogram_FnFloatPtr" defs["igPlotHistogram"][2]["ret"] = "void" @@ -23002,7 +23533,7 @@ defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" -defs["igPlotLines"][1]["location"] = "imgui:638" +defs["igPlotLines"][1]["location"] = "imgui:648" defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLines_FloatPtr" defs["igPlotLines"][1]["ret"] = "void" @@ -23050,7 +23581,7 @@ defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" -defs["igPlotLines"][2]["location"] = "imgui:639" +defs["igPlotLines"][2]["location"] = "imgui:649" defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLines_FnFloatPtr" defs["igPlotLines"][2]["ret"] = "void" @@ -23067,7 +23598,7 @@ defs["igPopAllowKeyboardFocus"][1]["call_args"] = "()" defs["igPopAllowKeyboardFocus"][1]["cimguiname"] = "igPopAllowKeyboardFocus" defs["igPopAllowKeyboardFocus"][1]["defaults"] = {} defs["igPopAllowKeyboardFocus"][1]["funcname"] = "PopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["location"] = "imgui:411" +defs["igPopAllowKeyboardFocus"][1]["location"] = "imgui:418" defs["igPopAllowKeyboardFocus"][1]["namespace"] = "ImGui" defs["igPopAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPopAllowKeyboardFocus" defs["igPopAllowKeyboardFocus"][1]["ret"] = "void" @@ -23083,7 +23614,7 @@ defs["igPopButtonRepeat"][1]["call_args"] = "()" defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["defaults"] = {} defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" -defs["igPopButtonRepeat"][1]["location"] = "imgui:413" +defs["igPopButtonRepeat"][1]["location"] = "imgui:420" defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" defs["igPopButtonRepeat"][1]["ov_cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["ret"] = "void" @@ -23099,7 +23630,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:845" +defs["igPopClipRect"][1]["location"] = "imgui:855" defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -23115,7 +23646,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:3015" +defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:3206" defs["igPopColumnsBackground"][1]["namespace"] = "ImGui" defs["igPopColumnsBackground"][1]["ov_cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["ret"] = "void" @@ -23131,7 +23662,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:2928" +defs["igPopFocusScope"][1]["location"] = "imgui_internal:3190" defs["igPopFocusScope"][1]["namespace"] = "ImGui" defs["igPopFocusScope"][1]["ov_cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["ret"] = "void" @@ -23147,7 +23678,7 @@ defs["igPopFont"][1]["call_args"] = "()" defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" -defs["igPopFont"][1]["location"] = "imgui:403" +defs["igPopFont"][1]["location"] = "imgui:410" defs["igPopFont"][1]["namespace"] = "ImGui" defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" @@ -23163,7 +23694,7 @@ defs["igPopID"][1]["call_args"] = "()" defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" -defs["igPopID"][1]["location"] = "imgui:479" +defs["igPopID"][1]["location"] = "imgui:486" defs["igPopID"][1]["namespace"] = "ImGui" defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" @@ -23179,7 +23710,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:2862" +defs["igPopItemFlag"][1]["location"] = "imgui_internal:3010" defs["igPopItemFlag"][1]["namespace"] = "ImGui" defs["igPopItemFlag"][1]["ov_cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["ret"] = "void" @@ -23195,7 +23726,7 @@ defs["igPopItemWidth"][1]["call_args"] = "()" defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" -defs["igPopItemWidth"][1]["location"] = "imgui:417" +defs["igPopItemWidth"][1]["location"] = "imgui:424" defs["igPopItemWidth"][1]["namespace"] = "ImGui" defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" @@ -23215,7 +23746,7 @@ defs["igPopStyleColor"][1]["cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" -defs["igPopStyleColor"][1]["location"] = "imgui:406" +defs["igPopStyleColor"][1]["location"] = "imgui:413" defs["igPopStyleColor"][1]["namespace"] = "ImGui" defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" @@ -23235,7 +23766,7 @@ defs["igPopStyleVar"][1]["cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" -defs["igPopStyleVar"][1]["location"] = "imgui:409" +defs["igPopStyleVar"][1]["location"] = "imgui:416" defs["igPopStyleVar"][1]["namespace"] = "ImGui" defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" @@ -23251,7 +23782,7 @@ defs["igPopTextWrapPos"][1]["call_args"] = "()" defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" -defs["igPopTextWrapPos"][1]["location"] = "imgui:421" +defs["igPopTextWrapPos"][1]["location"] = "imgui:428" defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" @@ -23278,7 +23809,7 @@ defs["igProgressBar"][1]["defaults"] = {} defs["igProgressBar"][1]["defaults"]["overlay"] = "NULL" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-FLT_MIN,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" -defs["igProgressBar"][1]["location"] = "imgui:513" +defs["igProgressBar"][1]["location"] = "imgui:518" defs["igProgressBar"][1]["namespace"] = "ImGui" defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" @@ -23297,7 +23828,7 @@ defs["igPushAllowKeyboardFocus"][1]["call_args"] = "(allow_keyboard_focus)" defs["igPushAllowKeyboardFocus"][1]["cimguiname"] = "igPushAllowKeyboardFocus" defs["igPushAllowKeyboardFocus"][1]["defaults"] = {} defs["igPushAllowKeyboardFocus"][1]["funcname"] = "PushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["location"] = "imgui:410" +defs["igPushAllowKeyboardFocus"][1]["location"] = "imgui:417" defs["igPushAllowKeyboardFocus"][1]["namespace"] = "ImGui" defs["igPushAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPushAllowKeyboardFocus" defs["igPushAllowKeyboardFocus"][1]["ret"] = "void" @@ -23316,7 +23847,7 @@ defs["igPushButtonRepeat"][1]["call_args"] = "(repeat)" defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["defaults"] = {} defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" -defs["igPushButtonRepeat"][1]["location"] = "imgui:412" +defs["igPushButtonRepeat"][1]["location"] = "imgui:419" defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" defs["igPushButtonRepeat"][1]["ov_cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["ret"] = "void" @@ -23341,7 +23872,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:844" +defs["igPushClipRect"][1]["location"] = "imgui:854" defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -23360,7 +23891,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:3013" +defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:3204" defs["igPushColumnClipRect"][1]["namespace"] = "ImGui" defs["igPushColumnClipRect"][1]["ov_cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["ret"] = "void" @@ -23376,7 +23907,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:3014" +defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:3205" defs["igPushColumnsBackground"][1]["namespace"] = "ImGui" defs["igPushColumnsBackground"][1]["ov_cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["ret"] = "void" @@ -23395,7 +23926,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:2927" +defs["igPushFocusScope"][1]["location"] = "imgui_internal:3189" defs["igPushFocusScope"][1]["namespace"] = "ImGui" defs["igPushFocusScope"][1]["ov_cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["ret"] = "void" @@ -23414,7 +23945,7 @@ defs["igPushFont"][1]["call_args"] = "(font)" defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" -defs["igPushFont"][1]["location"] = "imgui:402" +defs["igPushFont"][1]["location"] = "imgui:409" defs["igPushFont"][1]["namespace"] = "ImGui" defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" @@ -23433,7 +23964,7 @@ defs["igPushID"][1]["call_args"] = "(str_id)" defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" -defs["igPushID"][1]["location"] = "imgui:475" +defs["igPushID"][1]["location"] = "imgui:482" defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushID_Str" defs["igPushID"][1]["ret"] = "void" @@ -23453,7 +23984,7 @@ defs["igPushID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" -defs["igPushID"][2]["location"] = "imgui:476" +defs["igPushID"][2]["location"] = "imgui:483" defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushID_StrStr" defs["igPushID"][2]["ret"] = "void" @@ -23470,7 +24001,7 @@ defs["igPushID"][3]["call_args"] = "(ptr_id)" defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" -defs["igPushID"][3]["location"] = "imgui:477" +defs["igPushID"][3]["location"] = "imgui:484" defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushID_Ptr" defs["igPushID"][3]["ret"] = "void" @@ -23487,7 +24018,7 @@ defs["igPushID"][4]["call_args"] = "(int_id)" defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" -defs["igPushID"][4]["location"] = "imgui:478" +defs["igPushID"][4]["location"] = "imgui:485" defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushID_Int" defs["igPushID"][4]["ret"] = "void" @@ -23512,7 +24043,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:2861" +defs["igPushItemFlag"][1]["location"] = "imgui_internal:3009" defs["igPushItemFlag"][1]["namespace"] = "ImGui" defs["igPushItemFlag"][1]["ov_cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["ret"] = "void" @@ -23531,7 +24062,7 @@ defs["igPushItemWidth"][1]["call_args"] = "(item_width)" defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" -defs["igPushItemWidth"][1]["location"] = "imgui:416" +defs["igPushItemWidth"][1]["location"] = "imgui:423" defs["igPushItemWidth"][1]["namespace"] = "ImGui" defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" @@ -23553,7 +24084,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:2855" +defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:3003" defs["igPushMultiItemsWidths"][1]["namespace"] = "ImGui" defs["igPushMultiItemsWidths"][1]["ov_cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["ret"] = "void" @@ -23572,7 +24103,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:2843" +defs["igPushOverrideID"][1]["location"] = "imgui_internal:2991" defs["igPushOverrideID"][1]["namespace"] = "ImGui" defs["igPushOverrideID"][1]["ov_cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["ret"] = "void" @@ -23594,7 +24125,7 @@ defs["igPushStyleColor"][1]["call_args"] = "(idx,col)" defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][1]["location"] = "imgui:404" +defs["igPushStyleColor"][1]["location"] = "imgui:411" defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColor_U32" defs["igPushStyleColor"][1]["ret"] = "void" @@ -23614,7 +24145,7 @@ defs["igPushStyleColor"][2]["call_args"] = "(idx,col)" defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][2]["location"] = "imgui:405" +defs["igPushStyleColor"][2]["location"] = "imgui:412" defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColor_Vec4" defs["igPushStyleColor"][2]["ret"] = "void" @@ -23637,7 +24168,7 @@ defs["igPushStyleVar"][1]["call_args"] = "(idx,val)" defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][1]["location"] = "imgui:407" +defs["igPushStyleVar"][1]["location"] = "imgui:414" defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVar_Float" defs["igPushStyleVar"][1]["ret"] = "void" @@ -23657,7 +24188,7 @@ defs["igPushStyleVar"][2]["call_args"] = "(idx,val)" defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][2]["location"] = "imgui:408" +defs["igPushStyleVar"][2]["location"] = "imgui:415" defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVar_Vec2" defs["igPushStyleVar"][2]["ret"] = "void" @@ -23678,7 +24209,7 @@ defs["igPushTextWrapPos"][1]["cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" -defs["igPushTextWrapPos"][1]["location"] = "imgui:420" +defs["igPushTextWrapPos"][1]["location"] = "imgui:427" defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" @@ -23700,7 +24231,7 @@ defs["igRadioButton"][1]["call_args"] = "(label,active)" defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" -defs["igRadioButton"][1]["location"] = "imgui:511" +defs["igRadioButton"][1]["location"] = "imgui:516" defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButton_Bool" defs["igRadioButton"][1]["ret"] = "bool" @@ -23723,7 +24254,7 @@ defs["igRadioButton"][2]["call_args"] = "(label,v,v_button)" defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" -defs["igRadioButton"][2]["location"] = "imgui:512" +defs["igRadioButton"][2]["location"] = "imgui:517" defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButton_IntPtr" defs["igRadioButton"][2]["ret"] = "bool" @@ -23746,7 +24277,7 @@ defs["igRemoveContextHook"][1]["call_args"] = "(context,hook_to_remove)" defs["igRemoveContextHook"][1]["cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["defaults"] = {} defs["igRemoveContextHook"][1]["funcname"] = "RemoveContextHook" -defs["igRemoveContextHook"][1]["location"] = "imgui_internal:2792" +defs["igRemoveContextHook"][1]["location"] = "imgui_internal:2941" defs["igRemoveContextHook"][1]["namespace"] = "ImGui" defs["igRemoveContextHook"][1]["ov_cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["ret"] = "void" @@ -23765,7 +24296,7 @@ defs["igRemoveSettingsHandler"][1]["call_args"] = "(type_name)" defs["igRemoveSettingsHandler"][1]["cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["defaults"] = {} defs["igRemoveSettingsHandler"][1]["funcname"] = "RemoveSettingsHandler" -defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:2812" +defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:2961" defs["igRemoveSettingsHandler"][1]["namespace"] = "ImGui" defs["igRemoveSettingsHandler"][1]["ov_cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["ret"] = "void" @@ -23781,7 +24312,7 @@ defs["igRender"][1]["call_args"] = "()" defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" -defs["igRender"][1]["location"] = "imgui:300" +defs["igRender"][1]["location"] = "imgui:304" defs["igRender"][1]["namespace"] = "ImGui" defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" @@ -23813,7 +24344,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:3104" +defs["igRenderArrow"][1]["location"] = "imgui_internal:3297" defs["igRenderArrow"][1]["namespace"] = "ImGui" defs["igRenderArrow"][1]["ov_cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["ret"] = "void" @@ -23841,7 +24372,7 @@ defs["igRenderArrowDockMenu"][1]["call_args"] = "(draw_list,p_min,sz,col)" defs["igRenderArrowDockMenu"][1]["cimguiname"] = "igRenderArrowDockMenu" defs["igRenderArrowDockMenu"][1]["defaults"] = {} defs["igRenderArrowDockMenu"][1]["funcname"] = "RenderArrowDockMenu" -defs["igRenderArrowDockMenu"][1]["location"] = "imgui_internal:3108" +defs["igRenderArrowDockMenu"][1]["location"] = "imgui_internal:3301" defs["igRenderArrowDockMenu"][1]["namespace"] = "ImGui" defs["igRenderArrowDockMenu"][1]["ov_cimguiname"] = "igRenderArrowDockMenu" defs["igRenderArrowDockMenu"][1]["ret"] = "void" @@ -23872,7 +24403,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:3107" +defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:3300" defs["igRenderArrowPointingAt"][1]["namespace"] = "ImGui" defs["igRenderArrowPointingAt"][1]["ov_cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["ret"] = "void" @@ -23897,7 +24428,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:3105" +defs["igRenderBullet"][1]["location"] = "imgui_internal:3298" defs["igRenderBullet"][1]["namespace"] = "ImGui" defs["igRenderBullet"][1]["ov_cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["ret"] = "void" @@ -23925,7 +24456,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:3106" +defs["igRenderCheckMark"][1]["location"] = "imgui_internal:3299" defs["igRenderCheckMark"][1]["namespace"] = "ImGui" defs["igRenderCheckMark"][1]["ov_cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["ret"] = "void" @@ -23967,13 +24498,32 @@ defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"] = {} defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["flags"] = "0" defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderColorRectWithAlphaCheckerboard"][1]["funcname"] = "RenderColorRectWithAlphaCheckerboard" -defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3098" +defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3291" defs["igRenderColorRectWithAlphaCheckerboard"][1]["namespace"] = "ImGui" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ov_cimguiname"] = "igRenderColorRectWithAlphaCheckerboard" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ret"] = "void" defs["igRenderColorRectWithAlphaCheckerboard"][1]["signature"] = "(ImDrawList*,ImVec2,ImVec2,ImU32,float,ImVec2,float,ImDrawFlags)" defs["igRenderColorRectWithAlphaCheckerboard"][1]["stname"] = "" defs["igRenderColorRectWithAlphaCheckerboard"]["(ImDrawList*,ImVec2,ImVec2,ImU32,float,ImVec2,float,ImDrawFlags)"] = defs["igRenderColorRectWithAlphaCheckerboard"][1] +defs["igRenderDragDropTargetRect"] = {} +defs["igRenderDragDropTargetRect"][1] = {} +defs["igRenderDragDropTargetRect"][1]["args"] = "(const ImRect bb)" +defs["igRenderDragDropTargetRect"][1]["argsT"] = {} +defs["igRenderDragDropTargetRect"][1]["argsT"][1] = {} +defs["igRenderDragDropTargetRect"][1]["argsT"][1]["name"] = "bb" +defs["igRenderDragDropTargetRect"][1]["argsT"][1]["type"] = "const ImRect" +defs["igRenderDragDropTargetRect"][1]["argsoriginal"] = "(const ImRect& bb)" +defs["igRenderDragDropTargetRect"][1]["call_args"] = "(bb)" +defs["igRenderDragDropTargetRect"][1]["cimguiname"] = "igRenderDragDropTargetRect" +defs["igRenderDragDropTargetRect"][1]["defaults"] = {} +defs["igRenderDragDropTargetRect"][1]["funcname"] = "RenderDragDropTargetRect" +defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3198" +defs["igRenderDragDropTargetRect"][1]["namespace"] = "ImGui" +defs["igRenderDragDropTargetRect"][1]["ov_cimguiname"] = "igRenderDragDropTargetRect" +defs["igRenderDragDropTargetRect"][1]["ret"] = "void" +defs["igRenderDragDropTargetRect"][1]["signature"] = "(const ImRect)" +defs["igRenderDragDropTargetRect"][1]["stname"] = "" +defs["igRenderDragDropTargetRect"]["(const ImRect)"] = defs["igRenderDragDropTargetRect"][1] defs["igRenderFrame"] = {} defs["igRenderFrame"][1] = {} defs["igRenderFrame"][1]["args"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding)" @@ -24000,7 +24550,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:3096" +defs["igRenderFrame"][1]["location"] = "imgui_internal:3289" defs["igRenderFrame"][1]["namespace"] = "ImGui" defs["igRenderFrame"][1]["ov_cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["ret"] = "void" @@ -24026,7 +24576,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:3097" +defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:3290" defs["igRenderFrameBorder"][1]["namespace"] = "ImGui" defs["igRenderFrameBorder"][1]["ov_cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["ret"] = "void" @@ -24060,7 +24610,7 @@ defs["igRenderMouseCursor"][1]["call_args"] = "(pos,scale,mouse_cursor,col_fill, defs["igRenderMouseCursor"][1]["cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["defaults"] = {} defs["igRenderMouseCursor"][1]["funcname"] = "RenderMouseCursor" -defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3101" +defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3294" defs["igRenderMouseCursor"][1]["namespace"] = "ImGui" defs["igRenderMouseCursor"][1]["ov_cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["ret"] = "void" @@ -24086,7 +24636,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:3099" +defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:3292" defs["igRenderNavHighlight"][1]["namespace"] = "ImGui" defs["igRenderNavHighlight"][1]["ov_cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["ret"] = "void" @@ -24110,7 +24660,7 @@ defs["igRenderPlatformWindowsDefault"][1]["defaults"] = {} defs["igRenderPlatformWindowsDefault"][1]["defaults"]["platform_render_arg"] = "NULL" defs["igRenderPlatformWindowsDefault"][1]["defaults"]["renderer_render_arg"] = "NULL" defs["igRenderPlatformWindowsDefault"][1]["funcname"] = "RenderPlatformWindowsDefault" -defs["igRenderPlatformWindowsDefault"][1]["location"] = "imgui:972" +defs["igRenderPlatformWindowsDefault"][1]["location"] = "imgui:982" defs["igRenderPlatformWindowsDefault"][1]["namespace"] = "ImGui" defs["igRenderPlatformWindowsDefault"][1]["ov_cimguiname"] = "igRenderPlatformWindowsDefault" defs["igRenderPlatformWindowsDefault"][1]["ret"] = "void" @@ -24144,7 +24694,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:3109" +defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:3302" defs["igRenderRectFilledRangeH"][1]["namespace"] = "ImGui" defs["igRenderRectFilledRangeH"][1]["ov_cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["ret"] = "void" @@ -24175,7 +24725,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:3110" +defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:3303" defs["igRenderRectFilledWithHole"][1]["namespace"] = "ImGui" defs["igRenderRectFilledWithHole"][1]["ov_cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["ret"] = "void" @@ -24205,7 +24755,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:3091" +defs["igRenderText"][1]["location"] = "imgui_internal:3284" defs["igRenderText"][1]["namespace"] = "ImGui" defs["igRenderText"][1]["ov_cimguiname"] = "igRenderText" defs["igRenderText"][1]["ret"] = "void" @@ -24244,7 +24794,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:3093" +defs["igRenderTextClipped"][1]["location"] = "imgui_internal:3286" defs["igRenderTextClipped"][1]["namespace"] = "ImGui" defs["igRenderTextClipped"][1]["ov_cimguiname"] = "igRenderTextClipped" defs["igRenderTextClipped"][1]["ret"] = "void" @@ -24286,7 +24836,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:3094" +defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:3287" defs["igRenderTextClippedEx"][1]["namespace"] = "ImGui" defs["igRenderTextClippedEx"][1]["ov_cimguiname"] = "igRenderTextClippedEx" defs["igRenderTextClippedEx"][1]["ret"] = "void" @@ -24326,7 +24876,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:3095" +defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:3288" defs["igRenderTextEllipsis"][1]["namespace"] = "ImGui" defs["igRenderTextEllipsis"][1]["ov_cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["ret"] = "void" @@ -24354,7 +24904,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:3092" +defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:3285" defs["igRenderTextWrapped"][1]["namespace"] = "ImGui" defs["igRenderTextWrapped"][1]["ov_cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["ret"] = "void" @@ -24374,7 +24924,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:935" +defs["igResetMouseDragDelta"][1]["location"] = "imgui:945" defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -24398,7 +24948,7 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["offset_from_start_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" -defs["igSameLine"][1]["location"] = "imgui:441" +defs["igSameLine"][1]["location"] = "imgui:448" defs["igSameLine"][1]["namespace"] = "ImGui" defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" @@ -24417,7 +24967,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:951" +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:961" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -24437,7 +24987,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:952" +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:962" defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" @@ -24459,7 +25009,7 @@ defs["igScaleWindowsInViewport"][1]["call_args"] = "(viewport,scale)" defs["igScaleWindowsInViewport"][1]["cimguiname"] = "igScaleWindowsInViewport" defs["igScaleWindowsInViewport"][1]["defaults"] = {} defs["igScaleWindowsInViewport"][1]["funcname"] = "ScaleWindowsInViewport" -defs["igScaleWindowsInViewport"][1]["location"] = "imgui_internal:2797" +defs["igScaleWindowsInViewport"][1]["location"] = "imgui_internal:2946" defs["igScaleWindowsInViewport"][1]["namespace"] = "ImGui" defs["igScaleWindowsInViewport"][1]["ov_cimguiname"] = "igScaleWindowsInViewport" defs["igScaleWindowsInViewport"][1]["ret"] = "void" @@ -24481,7 +25031,7 @@ defs["igScrollToBringRectIntoView"][1]["call_args"] = "(window,rect)" defs["igScrollToBringRectIntoView"][1]["cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["defaults"] = {} defs["igScrollToBringRectIntoView"][1]["funcname"] = "ScrollToBringRectIntoView" -defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:2827" +defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:2975" defs["igScrollToBringRectIntoView"][1]["namespace"] = "ImGui" defs["igScrollToBringRectIntoView"][1]["ov_cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["ret"] = "void" @@ -24501,7 +25051,7 @@ defs["igScrollToItem"][1]["cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["defaults"] = {} defs["igScrollToItem"][1]["defaults"]["flags"] = "0" defs["igScrollToItem"][1]["funcname"] = "ScrollToItem" -defs["igScrollToItem"][1]["location"] = "imgui_internal:2823" +defs["igScrollToItem"][1]["location"] = "imgui_internal:2971" defs["igScrollToItem"][1]["namespace"] = "ImGui" defs["igScrollToItem"][1]["ov_cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["ret"] = "void" @@ -24527,7 +25077,7 @@ defs["igScrollToRect"][1]["cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["defaults"] = {} defs["igScrollToRect"][1]["defaults"]["flags"] = "0" defs["igScrollToRect"][1]["funcname"] = "ScrollToRect" -defs["igScrollToRect"][1]["location"] = "imgui_internal:2824" +defs["igScrollToRect"][1]["location"] = "imgui_internal:2972" defs["igScrollToRect"][1]["namespace"] = "ImGui" defs["igScrollToRect"][1]["ov_cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["ret"] = "void" @@ -24556,7 +25106,7 @@ defs["igScrollToRectEx"][1]["cimguiname"] = "igScrollToRectEx" defs["igScrollToRectEx"][1]["defaults"] = {} defs["igScrollToRectEx"][1]["defaults"]["flags"] = "0" defs["igScrollToRectEx"][1]["funcname"] = "ScrollToRectEx" -defs["igScrollToRectEx"][1]["location"] = "imgui_internal:2825" +defs["igScrollToRectEx"][1]["location"] = "imgui_internal:2973" defs["igScrollToRectEx"][1]["namespace"] = "ImGui" defs["igScrollToRectEx"][1]["nonUDT"] = 1 defs["igScrollToRectEx"][1]["ov_cimguiname"] = "igScrollToRectEx" @@ -24576,7 +25126,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:3119" +defs["igScrollbar"][1]["location"] = "imgui_internal:3312" defs["igScrollbar"][1]["namespace"] = "ImGui" defs["igScrollbar"][1]["ov_cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["ret"] = "void" @@ -24613,7 +25163,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:3120" +defs["igScrollbarEx"][1]["location"] = "imgui_internal:3313" defs["igScrollbarEx"][1]["namespace"] = "ImGui" defs["igScrollbarEx"][1]["ov_cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["ret"] = "bool" @@ -24644,7 +25194,7 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" -defs["igSelectable"][1]["location"] = "imgui:622" +defs["igSelectable"][1]["location"] = "imgui:632" defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectable_Bool" defs["igSelectable"][1]["ret"] = "bool" @@ -24672,7 +25222,7 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" -defs["igSelectable"][2]["location"] = "imgui:623" +defs["igSelectable"][2]["location"] = "imgui:633" defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectable_BoolPtr" defs["igSelectable"][2]["ret"] = "bool" @@ -24689,7 +25239,7 @@ defs["igSeparator"][1]["call_args"] = "()" defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" -defs["igSeparator"][1]["location"] = "imgui:440" +defs["igSeparator"][1]["location"] = "imgui:447" defs["igSeparator"][1]["namespace"] = "ImGui" defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" @@ -24708,7 +25258,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:3126" +defs["igSeparatorEx"][1]["location"] = "imgui_internal:3319" defs["igSeparatorEx"][1]["namespace"] = "ImGui" defs["igSeparatorEx"][1]["ov_cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["ret"] = "void" @@ -24730,48 +25280,29 @@ 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:2836" +defs["igSetActiveID"][1]["location"] = "imgui_internal:2984" defs["igSetActiveID"][1]["namespace"] = "ImGui" defs["igSetActiveID"][1]["ov_cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["ret"] = "void" defs["igSetActiveID"][1]["signature"] = "(ImGuiID,ImGuiWindow*)" defs["igSetActiveID"][1]["stname"] = "" defs["igSetActiveID"]["(ImGuiID,ImGuiWindow*)"] = defs["igSetActiveID"][1] -defs["igSetActiveIdUsingKey"] = {} -defs["igSetActiveIdUsingKey"][1] = {} -defs["igSetActiveIdUsingKey"][1]["args"] = "(ImGuiKey key)" -defs["igSetActiveIdUsingKey"][1]["argsT"] = {} -defs["igSetActiveIdUsingKey"][1]["argsT"][1] = {} -defs["igSetActiveIdUsingKey"][1]["argsT"][1]["name"] = "key" -defs["igSetActiveIdUsingKey"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igSetActiveIdUsingKey"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igSetActiveIdUsingKey"][1]["call_args"] = "(key)" -defs["igSetActiveIdUsingKey"][1]["cimguiname"] = "igSetActiveIdUsingKey" -defs["igSetActiveIdUsingKey"][1]["defaults"] = {} -defs["igSetActiveIdUsingKey"][1]["funcname"] = "SetActiveIdUsingKey" -defs["igSetActiveIdUsingKey"][1]["location"] = "imgui_internal:2943" -defs["igSetActiveIdUsingKey"][1]["namespace"] = "ImGui" -defs["igSetActiveIdUsingKey"][1]["ov_cimguiname"] = "igSetActiveIdUsingKey" -defs["igSetActiveIdUsingKey"][1]["ret"] = "void" -defs["igSetActiveIdUsingKey"][1]["signature"] = "(ImGuiKey)" -defs["igSetActiveIdUsingKey"][1]["stname"] = "" -defs["igSetActiveIdUsingKey"]["(ImGuiKey)"] = defs["igSetActiveIdUsingKey"][1] -defs["igSetActiveIdUsingNavAndKeys"] = {} -defs["igSetActiveIdUsingNavAndKeys"][1] = {} -defs["igSetActiveIdUsingNavAndKeys"][1]["args"] = "()" -defs["igSetActiveIdUsingNavAndKeys"][1]["argsT"] = {} -defs["igSetActiveIdUsingNavAndKeys"][1]["argsoriginal"] = "()" -defs["igSetActiveIdUsingNavAndKeys"][1]["call_args"] = "()" -defs["igSetActiveIdUsingNavAndKeys"][1]["cimguiname"] = "igSetActiveIdUsingNavAndKeys" -defs["igSetActiveIdUsingNavAndKeys"][1]["defaults"] = {} -defs["igSetActiveIdUsingNavAndKeys"][1]["funcname"] = "SetActiveIdUsingNavAndKeys" -defs["igSetActiveIdUsingNavAndKeys"][1]["location"] = "imgui_internal:2939" -defs["igSetActiveIdUsingNavAndKeys"][1]["namespace"] = "ImGui" -defs["igSetActiveIdUsingNavAndKeys"][1]["ov_cimguiname"] = "igSetActiveIdUsingNavAndKeys" -defs["igSetActiveIdUsingNavAndKeys"][1]["ret"] = "void" -defs["igSetActiveIdUsingNavAndKeys"][1]["signature"] = "()" -defs["igSetActiveIdUsingNavAndKeys"][1]["stname"] = "" -defs["igSetActiveIdUsingNavAndKeys"]["()"] = defs["igSetActiveIdUsingNavAndKeys"][1] +defs["igSetActiveIdUsingAllKeyboardKeys"] = {} +defs["igSetActiveIdUsingAllKeyboardKeys"][1] = {} +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["args"] = "()" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["argsT"] = {} +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["argsoriginal"] = "()" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["call_args"] = "()" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["defaults"] = {} +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["funcname"] = "SetActiveIdUsingAllKeyboardKeys" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3081" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["namespace"] = "ImGui" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ov_cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ret"] = "void" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["signature"] = "()" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["stname"] = "" +defs["igSetActiveIdUsingAllKeyboardKeys"]["()"] = defs["igSetActiveIdUsingAllKeyboardKeys"][1] defs["igSetAllocatorFunctions"] = {} defs["igSetAllocatorFunctions"][1] = {} defs["igSetAllocatorFunctions"][1]["args"] = "(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data)" @@ -24791,7 +25322,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:962" +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:972" defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -24810,7 +25341,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:943" +defs["igSetClipboardText"][1]["location"] = "imgui:953" defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -24829,7 +25360,7 @@ defs["igSetColorEditOptions"][1]["call_args"] = "(flags)" defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" -defs["igSetColorEditOptions"][1]["location"] = "imgui:597" +defs["igSetColorEditOptions"][1]["location"] = "imgui:607" defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" @@ -24851,7 +25382,7 @@ defs["igSetColumnOffset"][1]["call_args"] = "(column_index,offset_x)" defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" -defs["igSetColumnOffset"][1]["location"] = "imgui:780" +defs["igSetColumnOffset"][1]["location"] = "imgui:790" defs["igSetColumnOffset"][1]["namespace"] = "ImGui" defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" @@ -24873,7 +25404,7 @@ defs["igSetColumnWidth"][1]["call_args"] = "(column_index,width)" defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" -defs["igSetColumnWidth"][1]["location"] = "imgui:778" +defs["igSetColumnWidth"][1]["location"] = "imgui:788" defs["igSetColumnWidth"][1]["namespace"] = "ImGui" defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" @@ -24892,7 +25423,7 @@ defs["igSetCurrentContext"][1]["call_args"] = "(ctx)" defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" -defs["igSetCurrentContext"][1]["location"] = "imgui:293" +defs["igSetCurrentContext"][1]["location"] = "imgui:297" defs["igSetCurrentContext"][1]["namespace"] = "ImGui" defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" @@ -24911,7 +25442,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:2774" +defs["igSetCurrentFont"][1]["location"] = "imgui_internal:2923" defs["igSetCurrentFont"][1]["namespace"] = "ImGui" defs["igSetCurrentFont"][1]["ov_cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["ret"] = "void" @@ -24933,7 +25464,7 @@ defs["igSetCurrentViewport"][1]["call_args"] = "(window,viewport)" defs["igSetCurrentViewport"][1]["cimguiname"] = "igSetCurrentViewport" defs["igSetCurrentViewport"][1]["defaults"] = {} defs["igSetCurrentViewport"][1]["funcname"] = "SetCurrentViewport" -defs["igSetCurrentViewport"][1]["location"] = "imgui_internal:2800" +defs["igSetCurrentViewport"][1]["location"] = "imgui_internal:2949" defs["igSetCurrentViewport"][1]["namespace"] = "ImGui" defs["igSetCurrentViewport"][1]["ov_cimguiname"] = "igSetCurrentViewport" defs["igSetCurrentViewport"][1]["ret"] = "void" @@ -24952,7 +25483,7 @@ defs["igSetCursorPos"][1]["call_args"] = "(local_pos)" defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" -defs["igSetCursorPos"][1]["location"] = "imgui:452" +defs["igSetCursorPos"][1]["location"] = "imgui:459" defs["igSetCursorPos"][1]["namespace"] = "ImGui" defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" @@ -24971,7 +25502,7 @@ defs["igSetCursorPosX"][1]["call_args"] = "(local_x)" defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" -defs["igSetCursorPosX"][1]["location"] = "imgui:453" +defs["igSetCursorPosX"][1]["location"] = "imgui:460" defs["igSetCursorPosX"][1]["namespace"] = "ImGui" defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" @@ -24990,7 +25521,7 @@ defs["igSetCursorPosY"][1]["call_args"] = "(local_y)" defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" -defs["igSetCursorPosY"][1]["location"] = "imgui:454" +defs["igSetCursorPosY"][1]["location"] = "imgui:461" defs["igSetCursorPosY"][1]["namespace"] = "ImGui" defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" @@ -25009,7 +25540,7 @@ defs["igSetCursorScreenPos"][1]["call_args"] = "(pos)" defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" -defs["igSetCursorScreenPos"][1]["location"] = "imgui:457" +defs["igSetCursorScreenPos"][1]["location"] = "imgui:464" defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" @@ -25038,7 +25569,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:828" +defs["igSetDragDropPayload"][1]["location"] = "imgui:838" defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" @@ -25060,7 +25591,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:2837" +defs["igSetFocusID"][1]["location"] = "imgui_internal:2985" defs["igSetFocusID"][1]["namespace"] = "ImGui" defs["igSetFocusID"][1]["ov_cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["ret"] = "void" @@ -25079,7 +25610,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:2840" +defs["igSetHoveredID"][1]["location"] = "imgui_internal:2988" defs["igSetHoveredID"][1]["namespace"] = "ImGui" defs["igSetHoveredID"][1]["ov_cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["ret"] = "void" @@ -25095,7 +25626,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:871" +defs["igSetItemAllowOverlap"][1]["location"] = "imgui:881" defs["igSetItemAllowOverlap"][1]["namespace"] = "ImGui" defs["igSetItemAllowOverlap"][1]["ov_cimguiname"] = "igSetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["ret"] = "void" @@ -25111,29 +25642,62 @@ defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" -defs["igSetItemDefaultFocus"][1]["location"] = "imgui:849" +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:859" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" defs["igSetItemDefaultFocus"][1]["signature"] = "()" defs["igSetItemDefaultFocus"][1]["stname"] = "" defs["igSetItemDefaultFocus"]["()"] = defs["igSetItemDefaultFocus"][1] -defs["igSetItemUsingMouseWheel"] = {} -defs["igSetItemUsingMouseWheel"][1] = {} -defs["igSetItemUsingMouseWheel"][1]["args"] = "()" -defs["igSetItemUsingMouseWheel"][1]["argsT"] = {} -defs["igSetItemUsingMouseWheel"][1]["argsoriginal"] = "()" -defs["igSetItemUsingMouseWheel"][1]["call_args"] = "()" -defs["igSetItemUsingMouseWheel"][1]["cimguiname"] = "igSetItemUsingMouseWheel" -defs["igSetItemUsingMouseWheel"][1]["defaults"] = {} -defs["igSetItemUsingMouseWheel"][1]["funcname"] = "SetItemUsingMouseWheel" -defs["igSetItemUsingMouseWheel"][1]["location"] = "imgui_internal:2938" -defs["igSetItemUsingMouseWheel"][1]["namespace"] = "ImGui" -defs["igSetItemUsingMouseWheel"][1]["ov_cimguiname"] = "igSetItemUsingMouseWheel" -defs["igSetItemUsingMouseWheel"][1]["ret"] = "void" -defs["igSetItemUsingMouseWheel"][1]["signature"] = "()" -defs["igSetItemUsingMouseWheel"][1]["stname"] = "" -defs["igSetItemUsingMouseWheel"]["()"] = defs["igSetItemUsingMouseWheel"][1] +defs["igSetItemKeyOwner"] = {} +defs["igSetItemKeyOwner"][1] = {} +defs["igSetItemKeyOwner"][1]["args"] = "(ImGuiKey key,ImGuiInputFlags flags)" +defs["igSetItemKeyOwner"][1]["argsT"] = {} +defs["igSetItemKeyOwner"][1]["argsT"][1] = {} +defs["igSetItemKeyOwner"][1]["argsT"][1]["name"] = "key" +defs["igSetItemKeyOwner"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igSetItemKeyOwner"][1]["argsT"][2] = {} +defs["igSetItemKeyOwner"][1]["argsT"][2]["name"] = "flags" +defs["igSetItemKeyOwner"][1]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igSetItemKeyOwner"][1]["argsoriginal"] = "(ImGuiKey key,ImGuiInputFlags flags=0)" +defs["igSetItemKeyOwner"][1]["call_args"] = "(key,flags)" +defs["igSetItemKeyOwner"][1]["cimguiname"] = "igSetItemKeyOwner" +defs["igSetItemKeyOwner"][1]["defaults"] = {} +defs["igSetItemKeyOwner"][1]["defaults"]["flags"] = "0" +defs["igSetItemKeyOwner"][1]["funcname"] = "SetItemKeyOwner" +defs["igSetItemKeyOwner"][1]["location"] = "imgui_internal:3097" +defs["igSetItemKeyOwner"][1]["namespace"] = "ImGui" +defs["igSetItemKeyOwner"][1]["ov_cimguiname"] = "igSetItemKeyOwner" +defs["igSetItemKeyOwner"][1]["ret"] = "void" +defs["igSetItemKeyOwner"][1]["signature"] = "(ImGuiKey,ImGuiInputFlags)" +defs["igSetItemKeyOwner"][1]["stname"] = "" +defs["igSetItemKeyOwner"]["(ImGuiKey,ImGuiInputFlags)"] = defs["igSetItemKeyOwner"][1] +defs["igSetKeyOwner"] = {} +defs["igSetKeyOwner"][1] = {} +defs["igSetKeyOwner"][1]["args"] = "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igSetKeyOwner"][1]["argsT"] = {} +defs["igSetKeyOwner"][1]["argsT"][1] = {} +defs["igSetKeyOwner"][1]["argsT"][1]["name"] = "key" +defs["igSetKeyOwner"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igSetKeyOwner"][1]["argsT"][2] = {} +defs["igSetKeyOwner"][1]["argsT"][2]["name"] = "owner_id" +defs["igSetKeyOwner"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igSetKeyOwner"][1]["argsT"][3] = {} +defs["igSetKeyOwner"][1]["argsT"][3]["name"] = "flags" +defs["igSetKeyOwner"][1]["argsT"][3]["type"] = "ImGuiInputFlags" +defs["igSetKeyOwner"][1]["argsoriginal"] = "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags=0)" +defs["igSetKeyOwner"][1]["call_args"] = "(key,owner_id,flags)" +defs["igSetKeyOwner"][1]["cimguiname"] = "igSetKeyOwner" +defs["igSetKeyOwner"][1]["defaults"] = {} +defs["igSetKeyOwner"][1]["defaults"]["flags"] = "0" +defs["igSetKeyOwner"][1]["funcname"] = "SetKeyOwner" +defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3096" +defs["igSetKeyOwner"][1]["namespace"] = "ImGui" +defs["igSetKeyOwner"][1]["ov_cimguiname"] = "igSetKeyOwner" +defs["igSetKeyOwner"][1]["ret"] = "void" +defs["igSetKeyOwner"][1]["signature"] = "(ImGuiKey,ImGuiID,ImGuiInputFlags)" +defs["igSetKeyOwner"][1]["stname"] = "" +defs["igSetKeyOwner"]["(ImGuiKey,ImGuiID,ImGuiInputFlags)"] = defs["igSetKeyOwner"][1] defs["igSetKeyboardFocusHere"] = {} defs["igSetKeyboardFocusHere"][1] = {} defs["igSetKeyboardFocusHere"][1]["args"] = "(int offset)" @@ -25147,7 +25711,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:850" +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:860" defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -25175,7 +25739,7 @@ defs["igSetLastItemData"][1]["call_args"] = "(item_id,in_flags,status_flags,item defs["igSetLastItemData"][1]["cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["defaults"] = {} defs["igSetLastItemData"][1]["funcname"] = "SetLastItemData" -defs["igSetLastItemData"][1]["location"] = "imgui_internal:2852" +defs["igSetLastItemData"][1]["location"] = "imgui_internal:3000" defs["igSetLastItemData"][1]["namespace"] = "ImGui" defs["igSetLastItemData"][1]["ov_cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["ret"] = "void" @@ -25194,7 +25758,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:937" +defs["igSetMouseCursor"][1]["location"] = "imgui:947" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" @@ -25222,7 +25786,7 @@ defs["igSetNavID"][1]["call_args"] = "(id,nav_layer,focus_scope_id,rect_rel)" defs["igSetNavID"][1]["cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["defaults"] = {} defs["igSetNavID"][1]["funcname"] = "SetNavID" -defs["igSetNavID"][1]["location"] = "imgui_internal:2922" +defs["igSetNavID"][1]["location"] = "imgui_internal:3055" defs["igSetNavID"][1]["namespace"] = "ImGui" defs["igSetNavID"][1]["ov_cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["ret"] = "void" @@ -25241,7 +25805,7 @@ defs["igSetNavWindow"][1]["call_args"] = "(window)" defs["igSetNavWindow"][1]["cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["defaults"] = {} defs["igSetNavWindow"][1]["funcname"] = "SetNavWindow" -defs["igSetNavWindow"][1]["location"] = "imgui_internal:2921" +defs["igSetNavWindow"][1]["location"] = "imgui_internal:3054" defs["igSetNavWindow"][1]["namespace"] = "ImGui" defs["igSetNavWindow"][1]["ov_cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["ret"] = "void" @@ -25260,7 +25824,7 @@ defs["igSetNextFrameWantCaptureKeyboard"][1]["call_args"] = "(want_capture_keybo defs["igSetNextFrameWantCaptureKeyboard"][1]["cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureKeyboard"][1]["funcname"] = "SetNextFrameWantCaptureKeyboard" -defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:917" +defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:927" defs["igSetNextFrameWantCaptureKeyboard"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureKeyboard"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["ret"] = "void" @@ -25279,7 +25843,7 @@ defs["igSetNextFrameWantCaptureMouse"][1]["call_args"] = "(want_capture_mouse)" defs["igSetNextFrameWantCaptureMouse"][1]["cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureMouse"][1]["funcname"] = "SetNextFrameWantCaptureMouse" -defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:938" +defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:948" defs["igSetNextFrameWantCaptureMouse"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureMouse"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["ret"] = "void" @@ -25302,7 +25866,7 @@ defs["igSetNextItemOpen"][1]["cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["defaults"] = {} defs["igSetNextItemOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextItemOpen"][1]["funcname"] = "SetNextItemOpen" -defs["igSetNextItemOpen"][1]["location"] = "imgui:617" +defs["igSetNextItemOpen"][1]["location"] = "imgui:627" defs["igSetNextItemOpen"][1]["namespace"] = "ImGui" defs["igSetNextItemOpen"][1]["ov_cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["ret"] = "void" @@ -25321,7 +25885,7 @@ defs["igSetNextItemWidth"][1]["call_args"] = "(item_width)" defs["igSetNextItemWidth"][1]["cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["defaults"] = {} defs["igSetNextItemWidth"][1]["funcname"] = "SetNextItemWidth" -defs["igSetNextItemWidth"][1]["location"] = "imgui:418" +defs["igSetNextItemWidth"][1]["location"] = "imgui:425" defs["igSetNextItemWidth"][1]["namespace"] = "ImGui" defs["igSetNextItemWidth"][1]["ov_cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["ret"] = "void" @@ -25340,7 +25904,7 @@ defs["igSetNextWindowBgAlpha"][1]["call_args"] = "(alpha)" defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" -defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:369" +defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:374" defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" @@ -25359,7 +25923,7 @@ defs["igSetNextWindowClass"][1]["call_args"] = "(window_class)" defs["igSetNextWindowClass"][1]["cimguiname"] = "igSetNextWindowClass" defs["igSetNextWindowClass"][1]["defaults"] = {} defs["igSetNextWindowClass"][1]["funcname"] = "SetNextWindowClass" -defs["igSetNextWindowClass"][1]["location"] = "imgui:808" +defs["igSetNextWindowClass"][1]["location"] = "imgui:818" defs["igSetNextWindowClass"][1]["namespace"] = "ImGui" defs["igSetNextWindowClass"][1]["ov_cimguiname"] = "igSetNextWindowClass" defs["igSetNextWindowClass"][1]["ret"] = "void" @@ -25382,7 +25946,7 @@ defs["igSetNextWindowCollapsed"][1]["cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" -defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:367" +defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:371" defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" @@ -25401,7 +25965,7 @@ defs["igSetNextWindowContentSize"][1]["call_args"] = "(size)" defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" -defs["igSetNextWindowContentSize"][1]["location"] = "imgui:366" +defs["igSetNextWindowContentSize"][1]["location"] = "imgui:370" defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" @@ -25424,7 +25988,7 @@ defs["igSetNextWindowDockID"][1]["cimguiname"] = "igSetNextWindowDockID" defs["igSetNextWindowDockID"][1]["defaults"] = {} defs["igSetNextWindowDockID"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowDockID"][1]["funcname"] = "SetNextWindowDockID" -defs["igSetNextWindowDockID"][1]["location"] = "imgui:807" +defs["igSetNextWindowDockID"][1]["location"] = "imgui:817" defs["igSetNextWindowDockID"][1]["namespace"] = "ImGui" defs["igSetNextWindowDockID"][1]["ov_cimguiname"] = "igSetNextWindowDockID" defs["igSetNextWindowDockID"][1]["ret"] = "void" @@ -25440,7 +26004,7 @@ defs["igSetNextWindowFocus"][1]["call_args"] = "()" defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" -defs["igSetNextWindowFocus"][1]["location"] = "imgui:368" +defs["igSetNextWindowFocus"][1]["location"] = "imgui:372" defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" @@ -25467,7 +26031,7 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" -defs["igSetNextWindowPos"][1]["location"] = "imgui:363" +defs["igSetNextWindowPos"][1]["location"] = "imgui:367" defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" @@ -25486,7 +26050,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:2816" +defs["igSetNextWindowScroll"][1]["location"] = "imgui:373" defs["igSetNextWindowScroll"][1]["namespace"] = "ImGui" defs["igSetNextWindowScroll"][1]["ov_cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["ret"] = "void" @@ -25509,7 +26073,7 @@ defs["igSetNextWindowSize"][1]["cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" -defs["igSetNextWindowSize"][1]["location"] = "imgui:364" +defs["igSetNextWindowSize"][1]["location"] = "imgui:368" defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" @@ -25539,7 +26103,7 @@ defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" -defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:365" +defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:369" defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" @@ -25558,7 +26122,7 @@ defs["igSetNextWindowViewport"][1]["call_args"] = "(viewport_id)" defs["igSetNextWindowViewport"][1]["cimguiname"] = "igSetNextWindowViewport" defs["igSetNextWindowViewport"][1]["defaults"] = {} defs["igSetNextWindowViewport"][1]["funcname"] = "SetNextWindowViewport" -defs["igSetNextWindowViewport"][1]["location"] = "imgui:370" +defs["igSetNextWindowViewport"][1]["location"] = "imgui:375" defs["igSetNextWindowViewport"][1]["namespace"] = "ImGui" defs["igSetNextWindowViewport"][1]["ov_cimguiname"] = "igSetNextWindowViewport" defs["igSetNextWindowViewport"][1]["ret"] = "void" @@ -25581,7 +26145,7 @@ defs["igSetScrollFromPosX"][1]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["defaults"] = {} defs["igSetScrollFromPosX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][1]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][1]["location"] = "imgui:398" +defs["igSetScrollFromPosX"][1]["location"] = "imgui:405" defs["igSetScrollFromPosX"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][1]["ov_cimguiname"] = "igSetScrollFromPosX_Float" defs["igSetScrollFromPosX"][1]["ret"] = "void" @@ -25604,7 +26168,7 @@ defs["igSetScrollFromPosX"][2]["call_args"] = "(window,local_x,center_x_ratio)" defs["igSetScrollFromPosX"][2]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][2]["defaults"] = {} defs["igSetScrollFromPosX"][2]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:2819" +defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:2967" defs["igSetScrollFromPosX"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][2]["ov_cimguiname"] = "igSetScrollFromPosX_WindowPtr" defs["igSetScrollFromPosX"][2]["ret"] = "void" @@ -25628,7 +26192,7 @@ defs["igSetScrollFromPosY"][1]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][1]["location"] = "imgui:399" +defs["igSetScrollFromPosY"][1]["location"] = "imgui:406" defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosY_Float" defs["igSetScrollFromPosY"][1]["ret"] = "void" @@ -25651,7 +26215,7 @@ defs["igSetScrollFromPosY"][2]["call_args"] = "(window,local_y,center_y_ratio)" defs["igSetScrollFromPosY"][2]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][2]["defaults"] = {} defs["igSetScrollFromPosY"][2]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:2820" +defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:2968" defs["igSetScrollFromPosY"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][2]["ov_cimguiname"] = "igSetScrollFromPosY_WindowPtr" defs["igSetScrollFromPosY"][2]["ret"] = "void" @@ -25672,7 +26236,7 @@ defs["igSetScrollHereX"][1]["cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["defaults"] = {} defs["igSetScrollHereX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollHereX"][1]["funcname"] = "SetScrollHereX" -defs["igSetScrollHereX"][1]["location"] = "imgui:396" +defs["igSetScrollHereX"][1]["location"] = "imgui:403" defs["igSetScrollHereX"][1]["namespace"] = "ImGui" defs["igSetScrollHereX"][1]["ov_cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["ret"] = "void" @@ -25692,7 +26256,7 @@ defs["igSetScrollHereY"][1]["cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" -defs["igSetScrollHereY"][1]["location"] = "imgui:397" +defs["igSetScrollHereY"][1]["location"] = "imgui:404" defs["igSetScrollHereY"][1]["namespace"] = "ImGui" defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" @@ -25711,7 +26275,7 @@ defs["igSetScrollX"][1]["call_args"] = "(scroll_x)" defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" -defs["igSetScrollX"][1]["location"] = "imgui:392" +defs["igSetScrollX"][1]["location"] = "imgui:399" defs["igSetScrollX"][1]["namespace"] = "ImGui" defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollX_Float" defs["igSetScrollX"][1]["ret"] = "void" @@ -25731,7 +26295,7 @@ defs["igSetScrollX"][2]["call_args"] = "(window,scroll_x)" defs["igSetScrollX"][2]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][2]["defaults"] = {} defs["igSetScrollX"][2]["funcname"] = "SetScrollX" -defs["igSetScrollX"][2]["location"] = "imgui_internal:2817" +defs["igSetScrollX"][2]["location"] = "imgui_internal:2965" defs["igSetScrollX"][2]["namespace"] = "ImGui" defs["igSetScrollX"][2]["ov_cimguiname"] = "igSetScrollX_WindowPtr" defs["igSetScrollX"][2]["ret"] = "void" @@ -25751,7 +26315,7 @@ defs["igSetScrollY"][1]["call_args"] = "(scroll_y)" defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" -defs["igSetScrollY"][1]["location"] = "imgui:393" +defs["igSetScrollY"][1]["location"] = "imgui:400" defs["igSetScrollY"][1]["namespace"] = "ImGui" defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollY_Float" defs["igSetScrollY"][1]["ret"] = "void" @@ -25771,7 +26335,7 @@ defs["igSetScrollY"][2]["call_args"] = "(window,scroll_y)" defs["igSetScrollY"][2]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][2]["defaults"] = {} defs["igSetScrollY"][2]["funcname"] = "SetScrollY" -defs["igSetScrollY"][2]["location"] = "imgui_internal:2818" +defs["igSetScrollY"][2]["location"] = "imgui_internal:2966" defs["igSetScrollY"][2]["namespace"] = "ImGui" defs["igSetScrollY"][2]["ov_cimguiname"] = "igSetScrollY_WindowPtr" defs["igSetScrollY"][2]["ret"] = "void" @@ -25779,6 +26343,33 @@ defs["igSetScrollY"][2]["signature"] = "(ImGuiWindow*,float)" defs["igSetScrollY"][2]["stname"] = "" defs["igSetScrollY"]["(ImGuiWindow*,float)"] = defs["igSetScrollY"][2] defs["igSetScrollY"]["(float)"] = defs["igSetScrollY"][1] +defs["igSetShortcutRouting"] = {} +defs["igSetShortcutRouting"][1] = {} +defs["igSetShortcutRouting"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igSetShortcutRouting"][1]["argsT"] = {} +defs["igSetShortcutRouting"][1]["argsT"][1] = {} +defs["igSetShortcutRouting"][1]["argsT"][1]["name"] = "key_chord" +defs["igSetShortcutRouting"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igSetShortcutRouting"][1]["argsT"][2] = {} +defs["igSetShortcutRouting"][1]["argsT"][2]["name"] = "owner_id" +defs["igSetShortcutRouting"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igSetShortcutRouting"][1]["argsT"][3] = {} +defs["igSetShortcutRouting"][1]["argsT"][3]["name"] = "flags" +defs["igSetShortcutRouting"][1]["argsT"][3]["type"] = "ImGuiInputFlags" +defs["igSetShortcutRouting"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)" +defs["igSetShortcutRouting"][1]["call_args"] = "(key_chord,owner_id,flags)" +defs["igSetShortcutRouting"][1]["cimguiname"] = "igSetShortcutRouting" +defs["igSetShortcutRouting"][1]["defaults"] = {} +defs["igSetShortcutRouting"][1]["defaults"]["flags"] = "0" +defs["igSetShortcutRouting"][1]["defaults"]["owner_id"] = "0" +defs["igSetShortcutRouting"][1]["funcname"] = "SetShortcutRouting" +defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3125" +defs["igSetShortcutRouting"][1]["namespace"] = "ImGui" +defs["igSetShortcutRouting"][1]["ov_cimguiname"] = "igSetShortcutRouting" +defs["igSetShortcutRouting"][1]["ret"] = "bool" +defs["igSetShortcutRouting"][1]["signature"] = "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)" +defs["igSetShortcutRouting"][1]["stname"] = "" +defs["igSetShortcutRouting"]["(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)"] = defs["igSetShortcutRouting"][1] defs["igSetStateStorage"] = {} defs["igSetStateStorage"][1] = {} defs["igSetStateStorage"][1]["args"] = "(ImGuiStorage* storage)" @@ -25791,7 +26382,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:892" +defs["igSetStateStorage"][1]["location"] = "imgui:902" defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -25810,7 +26401,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:790" +defs["igSetTabItemClosed"][1]["location"] = "imgui:800" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -25833,7 +26424,7 @@ defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" -defs["igSetTooltip"][1]["location"] = "imgui:668" +defs["igSetTooltip"][1]["location"] = "imgui:678" defs["igSetTooltip"][1]["namespace"] = "ImGui" defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" @@ -25855,7 +26446,7 @@ defs["igSetTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" -defs["igSetTooltipV"][1]["location"] = "imgui:669" +defs["igSetTooltipV"][1]["location"] = "imgui:679" defs["igSetTooltipV"][1]["namespace"] = "ImGui" defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" @@ -25877,7 +26468,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:3010" +defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:3201" defs["igSetWindowClipRectBeforeSetChannel"][1]["namespace"] = "ImGui" defs["igSetWindowClipRectBeforeSetChannel"][1]["ov_cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["ret"] = "void" @@ -25900,7 +26491,7 @@ defs["igSetWindowCollapsed"][1]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][1]["location"] = "imgui:373" +defs["igSetWindowCollapsed"][1]["location"] = "imgui:378" defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsed_Bool" defs["igSetWindowCollapsed"][1]["ret"] = "void" @@ -25924,7 +26515,7 @@ defs["igSetWindowCollapsed"][2]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][2]["location"] = "imgui:378" +defs["igSetWindowCollapsed"][2]["location"] = "imgui:383" defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsed_Str" defs["igSetWindowCollapsed"][2]["ret"] = "void" @@ -25948,7 +26539,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:2758" +defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:2907" defs["igSetWindowCollapsed"][3]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][3]["ov_cimguiname"] = "igSetWindowCollapsed_WindowPtr" defs["igSetWindowCollapsed"][3]["ret"] = "void" @@ -25975,7 +26566,7 @@ defs["igSetWindowDock"][1]["call_args"] = "(window,dock_id,cond)" defs["igSetWindowDock"][1]["cimguiname"] = "igSetWindowDock" defs["igSetWindowDock"][1]["defaults"] = {} defs["igSetWindowDock"][1]["funcname"] = "SetWindowDock" -defs["igSetWindowDock"][1]["location"] = "imgui_internal:2977" +defs["igSetWindowDock"][1]["location"] = "imgui_internal:3155" defs["igSetWindowDock"][1]["namespace"] = "ImGui" defs["igSetWindowDock"][1]["ov_cimguiname"] = "igSetWindowDock" defs["igSetWindowDock"][1]["ret"] = "void" @@ -25991,7 +26582,7 @@ defs["igSetWindowFocus"][1]["call_args"] = "()" defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][1]["location"] = "imgui:374" +defs["igSetWindowFocus"][1]["location"] = "imgui:379" defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocus_Nil" defs["igSetWindowFocus"][1]["ret"] = "void" @@ -26008,7 +26599,7 @@ defs["igSetWindowFocus"][2]["call_args"] = "(name)" defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][2]["location"] = "imgui:379" +defs["igSetWindowFocus"][2]["location"] = "imgui:384" defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocus_Str" defs["igSetWindowFocus"][2]["ret"] = "void" @@ -26028,7 +26619,7 @@ defs["igSetWindowFontScale"][1]["call_args"] = "(scale)" defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" -defs["igSetWindowFontScale"][1]["location"] = "imgui:375" +defs["igSetWindowFontScale"][1]["location"] = "imgui:380" defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" @@ -26053,7 +26644,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:2759" +defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:2908" defs["igSetWindowHitTestHole"][1]["namespace"] = "ImGui" defs["igSetWindowHitTestHole"][1]["ov_cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["ret"] = "void" @@ -26076,7 +26667,7 @@ defs["igSetWindowPos"][1]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][1]["location"] = "imgui:371" +defs["igSetWindowPos"][1]["location"] = "imgui:376" defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPos_Vec2" defs["igSetWindowPos"][1]["ret"] = "void" @@ -26100,7 +26691,7 @@ defs["igSetWindowPos"][2]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][2]["location"] = "imgui:376" +defs["igSetWindowPos"][2]["location"] = "imgui:381" defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPos_Str" defs["igSetWindowPos"][2]["ret"] = "void" @@ -26124,7 +26715,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:2756" +defs["igSetWindowPos"][3]["location"] = "imgui_internal:2905" defs["igSetWindowPos"][3]["namespace"] = "ImGui" defs["igSetWindowPos"][3]["ov_cimguiname"] = "igSetWindowPos_WindowPtr" defs["igSetWindowPos"][3]["ret"] = "void" @@ -26149,7 +26740,7 @@ defs["igSetWindowSize"][1]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][1]["location"] = "imgui:372" +defs["igSetWindowSize"][1]["location"] = "imgui:377" defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSize_Vec2" defs["igSetWindowSize"][1]["ret"] = "void" @@ -26173,7 +26764,7 @@ defs["igSetWindowSize"][2]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][2]["location"] = "imgui:377" +defs["igSetWindowSize"][2]["location"] = "imgui:382" defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSize_Str" defs["igSetWindowSize"][2]["ret"] = "void" @@ -26197,7 +26788,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:2757" +defs["igSetWindowSize"][3]["location"] = "imgui_internal:2906" defs["igSetWindowSize"][3]["namespace"] = "ImGui" defs["igSetWindowSize"][3]["ov_cimguiname"] = "igSetWindowSize_WindowPtr" defs["igSetWindowSize"][3]["ret"] = "void" @@ -26221,7 +26812,7 @@ defs["igSetWindowViewport"][1]["call_args"] = "(window,viewport)" defs["igSetWindowViewport"][1]["cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["defaults"] = {} defs["igSetWindowViewport"][1]["funcname"] = "SetWindowViewport" -defs["igSetWindowViewport"][1]["location"] = "imgui_internal:2799" +defs["igSetWindowViewport"][1]["location"] = "imgui_internal:2948" defs["igSetWindowViewport"][1]["namespace"] = "ImGui" defs["igSetWindowViewport"][1]["ov_cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["ret"] = "void" @@ -26258,7 +26849,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:3173" +defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3367" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ov_cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ret"] = "void" @@ -26298,13 +26889,40 @@ 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:3174" +defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3368" defs["igShadeVertsLinearUV"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearUV"][1]["ov_cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["ret"] = "void" defs["igShadeVertsLinearUV"][1]["signature"] = "(ImDrawList*,int,int,const ImVec2,const ImVec2,const ImVec2,const ImVec2,bool)" defs["igShadeVertsLinearUV"][1]["stname"] = "" defs["igShadeVertsLinearUV"]["(ImDrawList*,int,int,const ImVec2,const ImVec2,const ImVec2,const ImVec2,bool)"] = defs["igShadeVertsLinearUV"][1] +defs["igShortcut"] = {} +defs["igShortcut"][1] = {} +defs["igShortcut"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igShortcut"][1]["argsT"] = {} +defs["igShortcut"][1]["argsT"][1] = {} +defs["igShortcut"][1]["argsT"][1]["name"] = "key_chord" +defs["igShortcut"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igShortcut"][1]["argsT"][2] = {} +defs["igShortcut"][1]["argsT"][2]["name"] = "owner_id" +defs["igShortcut"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igShortcut"][1]["argsT"][3] = {} +defs["igShortcut"][1]["argsT"][3]["name"] = "flags" +defs["igShortcut"][1]["argsT"][3]["type"] = "ImGuiInputFlags" +defs["igShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)" +defs["igShortcut"][1]["call_args"] = "(key_chord,owner_id,flags)" +defs["igShortcut"][1]["cimguiname"] = "igShortcut" +defs["igShortcut"][1]["defaults"] = {} +defs["igShortcut"][1]["defaults"]["flags"] = "0" +defs["igShortcut"][1]["defaults"]["owner_id"] = "0" +defs["igShortcut"][1]["funcname"] = "Shortcut" +defs["igShortcut"][1]["location"] = "imgui_internal:3124" +defs["igShortcut"][1]["namespace"] = "ImGui" +defs["igShortcut"][1]["ov_cimguiname"] = "igShortcut" +defs["igShortcut"][1]["ret"] = "bool" +defs["igShortcut"][1]["signature"] = "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)" +defs["igShortcut"][1]["stname"] = "" +defs["igShortcut"]["(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)"] = defs["igShortcut"][1] defs["igShowAboutWindow"] = {} defs["igShowAboutWindow"][1] = {} defs["igShowAboutWindow"][1]["args"] = "(bool* p_open)" @@ -26318,7 +26936,7 @@ defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["defaults"] = {} defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" -defs["igShowAboutWindow"][1]["location"] = "imgui:308" +defs["igShowAboutWindow"][1]["location"] = "imgui:312" defs["igShowAboutWindow"][1]["namespace"] = "ImGui" defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" @@ -26338,7 +26956,7 @@ defs["igShowDebugLogWindow"][1]["cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["defaults"] = {} defs["igShowDebugLogWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDebugLogWindow"][1]["funcname"] = "ShowDebugLogWindow" -defs["igShowDebugLogWindow"][1]["location"] = "imgui:306" +defs["igShowDebugLogWindow"][1]["location"] = "imgui:310" defs["igShowDebugLogWindow"][1]["namespace"] = "ImGui" defs["igShowDebugLogWindow"][1]["ov_cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["ret"] = "void" @@ -26358,7 +26976,7 @@ defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["defaults"] = {} defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" -defs["igShowDemoWindow"][1]["location"] = "imgui:304" +defs["igShowDemoWindow"][1]["location"] = "imgui:308" defs["igShowDemoWindow"][1]["namespace"] = "ImGui" defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" @@ -26377,7 +26995,7 @@ defs["igShowFontAtlas"][1]["call_args"] = "(atlas)" defs["igShowFontAtlas"][1]["cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["defaults"] = {} defs["igShowFontAtlas"][1]["funcname"] = "ShowFontAtlas" -defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3190" +defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3388" defs["igShowFontAtlas"][1]["namespace"] = "ImGui" defs["igShowFontAtlas"][1]["ov_cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["ret"] = "void" @@ -26396,7 +27014,7 @@ defs["igShowFontSelector"][1]["call_args"] = "(label)" defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" -defs["igShowFontSelector"][1]["location"] = "imgui:311" +defs["igShowFontSelector"][1]["location"] = "imgui:315" defs["igShowFontSelector"][1]["namespace"] = "ImGui" defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" @@ -26416,7 +27034,7 @@ defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["defaults"] = {} defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" -defs["igShowMetricsWindow"][1]["location"] = "imgui:305" +defs["igShowMetricsWindow"][1]["location"] = "imgui:309" defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" @@ -26436,7 +27054,7 @@ defs["igShowStackToolWindow"][1]["cimguiname"] = "igShowStackToolWindow" defs["igShowStackToolWindow"][1]["defaults"] = {} defs["igShowStackToolWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowStackToolWindow"][1]["funcname"] = "ShowStackToolWindow" -defs["igShowStackToolWindow"][1]["location"] = "imgui:307" +defs["igShowStackToolWindow"][1]["location"] = "imgui:311" defs["igShowStackToolWindow"][1]["namespace"] = "ImGui" defs["igShowStackToolWindow"][1]["ov_cimguiname"] = "igShowStackToolWindow" defs["igShowStackToolWindow"][1]["ret"] = "void" @@ -26456,7 +27074,7 @@ defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["defaults"] = {} defs["igShowStyleEditor"][1]["defaults"]["ref"] = "NULL" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" -defs["igShowStyleEditor"][1]["location"] = "imgui:309" +defs["igShowStyleEditor"][1]["location"] = "imgui:313" defs["igShowStyleEditor"][1]["namespace"] = "ImGui" defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" @@ -26475,7 +27093,7 @@ defs["igShowStyleSelector"][1]["call_args"] = "(label)" defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" -defs["igShowStyleSelector"][1]["location"] = "imgui:310" +defs["igShowStyleSelector"][1]["location"] = "imgui:314" defs["igShowStyleSelector"][1]["namespace"] = "ImGui" defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" @@ -26491,7 +27109,7 @@ defs["igShowUserGuide"][1]["call_args"] = "()" defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" -defs["igShowUserGuide"][1]["location"] = "imgui:312" +defs["igShowUserGuide"][1]["location"] = "imgui:316" defs["igShowUserGuide"][1]["namespace"] = "ImGui" defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" @@ -26516,7 +27134,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:2858" +defs["igShrinkWidths"][1]["location"] = "imgui_internal:3006" defs["igShrinkWidths"][1]["namespace"] = "ImGui" defs["igShrinkWidths"][1]["ov_cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["ret"] = "void" @@ -26532,7 +27150,7 @@ defs["igShutdown"][1]["call_args"] = "()" defs["igShutdown"][1]["cimguiname"] = "igShutdown" defs["igShutdown"][1]["defaults"] = {} defs["igShutdown"][1]["funcname"] = "Shutdown" -defs["igShutdown"][1]["location"] = "imgui_internal:2780" +defs["igShutdown"][1]["location"] = "imgui_internal:2929" defs["igShutdown"][1]["namespace"] = "ImGui" defs["igShutdown"][1]["ov_cimguiname"] = "igShutdown" defs["igShutdown"][1]["ret"] = "void" @@ -26570,7 +27188,7 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" -defs["igSliderAngle"][1]["location"] = "imgui:560" +defs["igSliderAngle"][1]["location"] = "imgui:570" defs["igSliderAngle"][1]["namespace"] = "ImGui" defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" @@ -26613,7 +27231,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:3133" +defs["igSliderBehavior"][1]["location"] = "imgui_internal:3326" defs["igSliderBehavior"][1]["namespace"] = "ImGui" defs["igSliderBehavior"][1]["ov_cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["ret"] = "bool" @@ -26649,7 +27267,7 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["flags"] = "0" defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" -defs["igSliderFloat"][1]["location"] = "imgui:556" +defs["igSliderFloat"][1]["location"] = "imgui:566" defs["igSliderFloat"][1]["namespace"] = "ImGui" defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" @@ -26685,7 +27303,7 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["flags"] = "0" defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" -defs["igSliderFloat2"][1]["location"] = "imgui:557" +defs["igSliderFloat2"][1]["location"] = "imgui:567" defs["igSliderFloat2"][1]["namespace"] = "ImGui" defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" @@ -26721,7 +27339,7 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["flags"] = "0" defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" -defs["igSliderFloat3"][1]["location"] = "imgui:558" +defs["igSliderFloat3"][1]["location"] = "imgui:568" defs["igSliderFloat3"][1]["namespace"] = "ImGui" defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" @@ -26757,7 +27375,7 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["flags"] = "0" defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" -defs["igSliderFloat4"][1]["location"] = "imgui:559" +defs["igSliderFloat4"][1]["location"] = "imgui:569" defs["igSliderFloat4"][1]["namespace"] = "ImGui" defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" @@ -26793,7 +27411,7 @@ defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["flags"] = "0" defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" -defs["igSliderInt"][1]["location"] = "imgui:561" +defs["igSliderInt"][1]["location"] = "imgui:571" defs["igSliderInt"][1]["namespace"] = "ImGui" defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" @@ -26829,7 +27447,7 @@ defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["flags"] = "0" defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" -defs["igSliderInt2"][1]["location"] = "imgui:562" +defs["igSliderInt2"][1]["location"] = "imgui:572" defs["igSliderInt2"][1]["namespace"] = "ImGui" defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" @@ -26865,7 +27483,7 @@ defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["flags"] = "0" defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" -defs["igSliderInt3"][1]["location"] = "imgui:563" +defs["igSliderInt3"][1]["location"] = "imgui:573" defs["igSliderInt3"][1]["namespace"] = "ImGui" defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" @@ -26901,7 +27519,7 @@ defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["flags"] = "0" defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" -defs["igSliderInt4"][1]["location"] = "imgui:564" +defs["igSliderInt4"][1]["location"] = "imgui:574" defs["igSliderInt4"][1]["namespace"] = "ImGui" defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" @@ -26940,7 +27558,7 @@ defs["igSliderScalar"][1]["defaults"] = {} defs["igSliderScalar"][1]["defaults"]["flags"] = "0" defs["igSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" -defs["igSliderScalar"][1]["location"] = "imgui:565" +defs["igSliderScalar"][1]["location"] = "imgui:575" defs["igSliderScalar"][1]["namespace"] = "ImGui" defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -26982,7 +27600,7 @@ defs["igSliderScalarN"][1]["defaults"] = {} defs["igSliderScalarN"][1]["defaults"]["flags"] = "0" defs["igSliderScalarN"][1]["defaults"]["format"] = "NULL" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" -defs["igSliderScalarN"][1]["location"] = "imgui:566" +defs["igSliderScalarN"][1]["location"] = "imgui:576" defs["igSliderScalarN"][1]["namespace"] = "ImGui" defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -27001,7 +27619,7 @@ defs["igSmallButton"][1]["call_args"] = "(label)" defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" -defs["igSmallButton"][1]["location"] = "imgui:503" +defs["igSmallButton"][1]["location"] = "imgui:510" defs["igSmallButton"][1]["namespace"] = "ImGui" defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" @@ -27017,7 +27635,7 @@ defs["igSpacing"][1]["call_args"] = "()" defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" -defs["igSpacing"][1]["location"] = "imgui:443" +defs["igSpacing"][1]["location"] = "imgui:450" defs["igSpacing"][1]["namespace"] = "ImGui" defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" @@ -27066,7 +27684,7 @@ defs["igSplitterBehavior"][1]["defaults"]["bg_col"] = "0" defs["igSplitterBehavior"][1]["defaults"]["hover_extend"] = "0.0f" defs["igSplitterBehavior"][1]["defaults"]["hover_visibility_delay"] = "0.0f" defs["igSplitterBehavior"][1]["funcname"] = "SplitterBehavior" -defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3134" +defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3327" defs["igSplitterBehavior"][1]["namespace"] = "ImGui" defs["igSplitterBehavior"][1]["ov_cimguiname"] = "igSplitterBehavior" defs["igSplitterBehavior"][1]["ret"] = "bool" @@ -27085,7 +27703,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:2785" +defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:2934" defs["igStartMouseMovingWindow"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindow"][1]["ov_cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["ret"] = "void" @@ -27110,7 +27728,7 @@ defs["igStartMouseMovingWindowOrNode"][1]["call_args"] = "(window,node,undock_fl defs["igStartMouseMovingWindowOrNode"][1]["cimguiname"] = "igStartMouseMovingWindowOrNode" defs["igStartMouseMovingWindowOrNode"][1]["defaults"] = {} defs["igStartMouseMovingWindowOrNode"][1]["funcname"] = "StartMouseMovingWindowOrNode" -defs["igStartMouseMovingWindowOrNode"][1]["location"] = "imgui_internal:2786" +defs["igStartMouseMovingWindowOrNode"][1]["location"] = "imgui_internal:2935" defs["igStartMouseMovingWindowOrNode"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindowOrNode"][1]["ov_cimguiname"] = "igStartMouseMovingWindowOrNode" defs["igStartMouseMovingWindowOrNode"][1]["ret"] = "void" @@ -27130,7 +27748,7 @@ defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["defaults"] = {} defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" -defs["igStyleColorsClassic"][1]["location"] = "imgui:318" +defs["igStyleColorsClassic"][1]["location"] = "imgui:322" defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" @@ -27150,7 +27768,7 @@ defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["defaults"] = {} defs["igStyleColorsDark"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" -defs["igStyleColorsDark"][1]["location"] = "imgui:316" +defs["igStyleColorsDark"][1]["location"] = "imgui:320" defs["igStyleColorsDark"][1]["namespace"] = "ImGui" defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" @@ -27170,7 +27788,7 @@ defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["defaults"] = {} defs["igStyleColorsLight"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" -defs["igStyleColorsLight"][1]["location"] = "imgui:317" +defs["igStyleColorsLight"][1]["location"] = "imgui:321" defs["igStyleColorsLight"][1]["namespace"] = "ImGui" defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" @@ -27195,7 +27813,7 @@ defs["igTabBarAddTab"][1]["call_args"] = "(tab_bar,tab_flags,window)" defs["igTabBarAddTab"][1]["cimguiname"] = "igTabBarAddTab" defs["igTabBarAddTab"][1]["defaults"] = {} defs["igTabBarAddTab"][1]["funcname"] = "TabBarAddTab" -defs["igTabBarAddTab"][1]["location"] = "imgui_internal:3077" +defs["igTabBarAddTab"][1]["location"] = "imgui_internal:3269" defs["igTabBarAddTab"][1]["namespace"] = "ImGui" defs["igTabBarAddTab"][1]["ov_cimguiname"] = "igTabBarAddTab" defs["igTabBarAddTab"][1]["ret"] = "void" @@ -27217,7 +27835,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:3079" +defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:3271" defs["igTabBarCloseTab"][1]["namespace"] = "ImGui" defs["igTabBarCloseTab"][1]["ov_cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["ret"] = "void" @@ -27236,7 +27854,7 @@ defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["call_args"] = "(t defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["cimguiname"] = "igTabBarFindMostRecentlySelectedTabForActiveWindow" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["defaults"] = {} defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["funcname"] = "TabBarFindMostRecentlySelectedTabForActiveWindow" -defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["location"] = "imgui_internal:3076" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["location"] = "imgui_internal:3268" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["namespace"] = "ImGui" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ov_cimguiname"] = "igTabBarFindMostRecentlySelectedTabForActiveWindow" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ret"] = "ImGuiTabItem*" @@ -27258,7 +27876,7 @@ defs["igTabBarFindTabByID"][1]["call_args"] = "(tab_bar,tab_id)" defs["igTabBarFindTabByID"][1]["cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["defaults"] = {} defs["igTabBarFindTabByID"][1]["funcname"] = "TabBarFindTabByID" -defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3075" +defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3267" defs["igTabBarFindTabByID"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByID"][1]["ov_cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["ret"] = "ImGuiTabItem*" @@ -27277,7 +27895,7 @@ defs["igTabBarProcessReorder"][1]["call_args"] = "(tab_bar)" defs["igTabBarProcessReorder"][1]["cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["defaults"] = {} defs["igTabBarProcessReorder"][1]["funcname"] = "TabBarProcessReorder" -defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3082" +defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3274" defs["igTabBarProcessReorder"][1]["namespace"] = "ImGui" defs["igTabBarProcessReorder"][1]["ov_cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["ret"] = "bool" @@ -27302,7 +27920,7 @@ defs["igTabBarQueueReorder"][1]["call_args"] = "(tab_bar,tab,offset)" defs["igTabBarQueueReorder"][1]["cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["defaults"] = {} defs["igTabBarQueueReorder"][1]["funcname"] = "TabBarQueueReorder" -defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3080" +defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3272" defs["igTabBarQueueReorder"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorder"][1]["ov_cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["ret"] = "void" @@ -27327,7 +27945,7 @@ defs["igTabBarQueueReorderFromMousePos"][1]["call_args"] = "(tab_bar,tab,mouse_p defs["igTabBarQueueReorderFromMousePos"][1]["cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["defaults"] = {} defs["igTabBarQueueReorderFromMousePos"][1]["funcname"] = "TabBarQueueReorderFromMousePos" -defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3081" +defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3273" defs["igTabBarQueueReorderFromMousePos"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorderFromMousePos"][1]["ov_cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["ret"] = "void" @@ -27349,7 +27967,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:3078" +defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:3270" defs["igTabBarRemoveTab"][1]["namespace"] = "ImGui" defs["igTabBarRemoveTab"][1]["ov_cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["ret"] = "void" @@ -27377,7 +27995,7 @@ defs["igTabItemBackground"][1]["call_args"] = "(draw_list,bb,flags,col)" defs["igTabItemBackground"][1]["cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["defaults"] = {} defs["igTabItemBackground"][1]["funcname"] = "TabItemBackground" -defs["igTabItemBackground"][1]["location"] = "imgui_internal:3085" +defs["igTabItemBackground"][1]["location"] = "imgui_internal:3278" defs["igTabItemBackground"][1]["namespace"] = "ImGui" defs["igTabItemBackground"][1]["ov_cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["ret"] = "void" @@ -27400,7 +28018,7 @@ defs["igTabItemButton"][1]["cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["defaults"] = {} defs["igTabItemButton"][1]["defaults"]["flags"] = "0" defs["igTabItemButton"][1]["funcname"] = "TabItemButton" -defs["igTabItemButton"][1]["location"] = "imgui:789" +defs["igTabItemButton"][1]["location"] = "imgui:799" defs["igTabItemButton"][1]["namespace"] = "ImGui" defs["igTabItemButton"][1]["ov_cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["ret"] = "bool" @@ -27409,7 +28027,7 @@ 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)" +defs["igTabItemCalcSize"][1]["args"] = "(ImVec2 *pOut,const char* label,bool has_close_button_or_unsaved_marker)" defs["igTabItemCalcSize"][1]["argsT"] = {} defs["igTabItemCalcSize"][1]["argsT"][1] = {} defs["igTabItemCalcSize"][1]["argsT"][1]["name"] = "pOut" @@ -27418,20 +28036,42 @@ defs["igTabItemCalcSize"][1]["argsT"][2] = {} defs["igTabItemCalcSize"][1]["argsT"][2]["name"] = "label" defs["igTabItemCalcSize"][1]["argsT"][2]["type"] = "const char*" defs["igTabItemCalcSize"][1]["argsT"][3] = {} -defs["igTabItemCalcSize"][1]["argsT"][3]["name"] = "has_close_button" +defs["igTabItemCalcSize"][1]["argsT"][3]["name"] = "has_close_button_or_unsaved_marker" defs["igTabItemCalcSize"][1]["argsT"][3]["type"] = "bool" -defs["igTabItemCalcSize"][1]["argsoriginal"] = "(const char* label,bool has_close_button)" -defs["igTabItemCalcSize"][1]["call_args"] = "(label,has_close_button)" +defs["igTabItemCalcSize"][1]["argsoriginal"] = "(const char* label,bool has_close_button_or_unsaved_marker)" +defs["igTabItemCalcSize"][1]["call_args"] = "(label,has_close_button_or_unsaved_marker)" defs["igTabItemCalcSize"][1]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][1]["defaults"] = {} defs["igTabItemCalcSize"][1]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3084" +defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3276" defs["igTabItemCalcSize"][1]["namespace"] = "ImGui" defs["igTabItemCalcSize"][1]["nonUDT"] = 1 -defs["igTabItemCalcSize"][1]["ov_cimguiname"] = "igTabItemCalcSize" +defs["igTabItemCalcSize"][1]["ov_cimguiname"] = "igTabItemCalcSize_Str" defs["igTabItemCalcSize"][1]["ret"] = "void" defs["igTabItemCalcSize"][1]["signature"] = "(const char*,bool)" defs["igTabItemCalcSize"][1]["stname"] = "" +defs["igTabItemCalcSize"][2] = {} +defs["igTabItemCalcSize"][2]["args"] = "(ImVec2 *pOut,ImGuiWindow* window)" +defs["igTabItemCalcSize"][2]["argsT"] = {} +defs["igTabItemCalcSize"][2]["argsT"][1] = {} +defs["igTabItemCalcSize"][2]["argsT"][1]["name"] = "pOut" +defs["igTabItemCalcSize"][2]["argsT"][1]["type"] = "ImVec2*" +defs["igTabItemCalcSize"][2]["argsT"][2] = {} +defs["igTabItemCalcSize"][2]["argsT"][2]["name"] = "window" +defs["igTabItemCalcSize"][2]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igTabItemCalcSize"][2]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igTabItemCalcSize"][2]["call_args"] = "(window)" +defs["igTabItemCalcSize"][2]["cimguiname"] = "igTabItemCalcSize" +defs["igTabItemCalcSize"][2]["defaults"] = {} +defs["igTabItemCalcSize"][2]["funcname"] = "TabItemCalcSize" +defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3277" +defs["igTabItemCalcSize"][2]["namespace"] = "ImGui" +defs["igTabItemCalcSize"][2]["nonUDT"] = 1 +defs["igTabItemCalcSize"][2]["ov_cimguiname"] = "igTabItemCalcSize_WindowPtr" +defs["igTabItemCalcSize"][2]["ret"] = "void" +defs["igTabItemCalcSize"][2]["signature"] = "(ImGuiWindow*)" +defs["igTabItemCalcSize"][2]["stname"] = "" +defs["igTabItemCalcSize"]["(ImGuiWindow*)"] = defs["igTabItemCalcSize"][2] defs["igTabItemCalcSize"]["(const char*,bool)"] = defs["igTabItemCalcSize"][1] defs["igTabItemEx"] = {} defs["igTabItemEx"][1] = {} @@ -27457,7 +28097,7 @@ defs["igTabItemEx"][1]["call_args"] = "(tab_bar,label,p_open,flags,docked_window defs["igTabItemEx"][1]["cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["defaults"] = {} defs["igTabItemEx"][1]["funcname"] = "TabItemEx" -defs["igTabItemEx"][1]["location"] = "imgui_internal:3083" +defs["igTabItemEx"][1]["location"] = "imgui_internal:3275" defs["igTabItemEx"][1]["namespace"] = "ImGui" defs["igTabItemEx"][1]["ov_cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["ret"] = "bool" @@ -27503,7 +28143,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:3086" +defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:3279" defs["igTabItemLabelAndCloseButton"][1]["namespace"] = "ImGui" defs["igTabItemLabelAndCloseButton"][1]["ov_cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["ret"] = "void" @@ -27522,7 +28162,7 @@ defs["igTableBeginApplyRequests"][1]["call_args"] = "(table)" defs["igTableBeginApplyRequests"][1]["cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["defaults"] = {} defs["igTableBeginApplyRequests"][1]["funcname"] = "TableBeginApplyRequests" -defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3035" +defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3226" defs["igTableBeginApplyRequests"][1]["namespace"] = "ImGui" defs["igTableBeginApplyRequests"][1]["ov_cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["ret"] = "void" @@ -27544,13 +28184,32 @@ defs["igTableBeginCell"][1]["call_args"] = "(table,column_n)" defs["igTableBeginCell"][1]["cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["defaults"] = {} defs["igTableBeginCell"][1]["funcname"] = "TableBeginCell" -defs["igTableBeginCell"][1]["location"] = "imgui_internal:3051" +defs["igTableBeginCell"][1]["location"] = "imgui_internal:3243" defs["igTableBeginCell"][1]["namespace"] = "ImGui" defs["igTableBeginCell"][1]["ov_cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["ret"] = "void" defs["igTableBeginCell"][1]["signature"] = "(ImGuiTable*,int)" defs["igTableBeginCell"][1]["stname"] = "" defs["igTableBeginCell"]["(ImGuiTable*,int)"] = defs["igTableBeginCell"][1] +defs["igTableBeginContextMenuPopup"] = {} +defs["igTableBeginContextMenuPopup"][1] = {} +defs["igTableBeginContextMenuPopup"][1]["args"] = "(ImGuiTable* table)" +defs["igTableBeginContextMenuPopup"][1]["argsT"] = {} +defs["igTableBeginContextMenuPopup"][1]["argsT"][1] = {} +defs["igTableBeginContextMenuPopup"][1]["argsT"][1]["name"] = "table" +defs["igTableBeginContextMenuPopup"][1]["argsT"][1]["type"] = "ImGuiTable*" +defs["igTableBeginContextMenuPopup"][1]["argsoriginal"] = "(ImGuiTable* table)" +defs["igTableBeginContextMenuPopup"][1]["call_args"] = "(table)" +defs["igTableBeginContextMenuPopup"][1]["cimguiname"] = "igTableBeginContextMenuPopup" +defs["igTableBeginContextMenuPopup"][1]["defaults"] = {} +defs["igTableBeginContextMenuPopup"][1]["funcname"] = "TableBeginContextMenuPopup" +defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3233" +defs["igTableBeginContextMenuPopup"][1]["namespace"] = "ImGui" +defs["igTableBeginContextMenuPopup"][1]["ov_cimguiname"] = "igTableBeginContextMenuPopup" +defs["igTableBeginContextMenuPopup"][1]["ret"] = "bool" +defs["igTableBeginContextMenuPopup"][1]["signature"] = "(ImGuiTable*)" +defs["igTableBeginContextMenuPopup"][1]["stname"] = "" +defs["igTableBeginContextMenuPopup"]["(ImGuiTable*)"] = defs["igTableBeginContextMenuPopup"][1] defs["igTableBeginInitMemory"] = {} defs["igTableBeginInitMemory"][1] = {} defs["igTableBeginInitMemory"][1]["args"] = "(ImGuiTable* table,int columns_count)" @@ -27566,7 +28225,7 @@ defs["igTableBeginInitMemory"][1]["call_args"] = "(table,columns_count)" defs["igTableBeginInitMemory"][1]["cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["defaults"] = {} defs["igTableBeginInitMemory"][1]["funcname"] = "TableBeginInitMemory" -defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3034" +defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3225" defs["igTableBeginInitMemory"][1]["namespace"] = "ImGui" defs["igTableBeginInitMemory"][1]["ov_cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["ret"] = "void" @@ -27585,7 +28244,7 @@ defs["igTableBeginRow"][1]["call_args"] = "(table)" defs["igTableBeginRow"][1]["cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["defaults"] = {} defs["igTableBeginRow"][1]["funcname"] = "TableBeginRow" -defs["igTableBeginRow"][1]["location"] = "imgui_internal:3049" +defs["igTableBeginRow"][1]["location"] = "imgui_internal:3241" defs["igTableBeginRow"][1]["namespace"] = "ImGui" defs["igTableBeginRow"][1]["ov_cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["ret"] = "void" @@ -27604,7 +28263,7 @@ defs["igTableDrawBorders"][1]["call_args"] = "(table)" defs["igTableDrawBorders"][1]["cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["defaults"] = {} defs["igTableDrawBorders"][1]["funcname"] = "TableDrawBorders" -defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3040" +defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3231" defs["igTableDrawBorders"][1]["namespace"] = "ImGui" defs["igTableDrawBorders"][1]["ov_cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["ret"] = "void" @@ -27623,7 +28282,7 @@ defs["igTableDrawContextMenu"][1]["call_args"] = "(table)" defs["igTableDrawContextMenu"][1]["cimguiname"] = "igTableDrawContextMenu" defs["igTableDrawContextMenu"][1]["defaults"] = {} defs["igTableDrawContextMenu"][1]["funcname"] = "TableDrawContextMenu" -defs["igTableDrawContextMenu"][1]["location"] = "imgui_internal:3041" +defs["igTableDrawContextMenu"][1]["location"] = "imgui_internal:3232" defs["igTableDrawContextMenu"][1]["namespace"] = "ImGui" defs["igTableDrawContextMenu"][1]["ov_cimguiname"] = "igTableDrawContextMenu" defs["igTableDrawContextMenu"][1]["ret"] = "void" @@ -27642,7 +28301,7 @@ defs["igTableEndCell"][1]["call_args"] = "(table)" defs["igTableEndCell"][1]["cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["defaults"] = {} defs["igTableEndCell"][1]["funcname"] = "TableEndCell" -defs["igTableEndCell"][1]["location"] = "imgui_internal:3052" +defs["igTableEndCell"][1]["location"] = "imgui_internal:3244" defs["igTableEndCell"][1]["namespace"] = "ImGui" defs["igTableEndCell"][1]["ov_cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["ret"] = "void" @@ -27661,7 +28320,7 @@ defs["igTableEndRow"][1]["call_args"] = "(table)" defs["igTableEndRow"][1]["cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["defaults"] = {} defs["igTableEndRow"][1]["funcname"] = "TableEndRow" -defs["igTableEndRow"][1]["location"] = "imgui_internal:3050" +defs["igTableEndRow"][1]["location"] = "imgui_internal:3242" defs["igTableEndRow"][1]["namespace"] = "ImGui" defs["igTableEndRow"][1]["ov_cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["ret"] = "void" @@ -27680,7 +28339,7 @@ defs["igTableFindByID"][1]["call_args"] = "(id)" defs["igTableFindByID"][1]["cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["defaults"] = {} defs["igTableFindByID"][1]["funcname"] = "TableFindByID" -defs["igTableFindByID"][1]["location"] = "imgui_internal:3032" +defs["igTableFindByID"][1]["location"] = "imgui_internal:3223" defs["igTableFindByID"][1]["namespace"] = "ImGui" defs["igTableFindByID"][1]["ov_cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["ret"] = "ImGuiTable*" @@ -27702,7 +28361,7 @@ defs["igTableFixColumnSortDirection"][1]["call_args"] = "(table,column)" defs["igTableFixColumnSortDirection"][1]["cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["defaults"] = {} defs["igTableFixColumnSortDirection"][1]["funcname"] = "TableFixColumnSortDirection" -defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3047" +defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3239" defs["igTableFixColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableFixColumnSortDirection"][1]["ov_cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["ret"] = "void" @@ -27718,7 +28377,7 @@ defs["igTableGcCompactSettings"][1]["call_args"] = "()" defs["igTableGcCompactSettings"][1]["cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["defaults"] = {} defs["igTableGcCompactSettings"][1]["funcname"] = "TableGcCompactSettings" -defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3062" +defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3254" defs["igTableGcCompactSettings"][1]["namespace"] = "ImGui" defs["igTableGcCompactSettings"][1]["ov_cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["ret"] = "void" @@ -27737,7 +28396,7 @@ defs["igTableGcCompactTransientBuffers"][1]["call_args"] = "(table)" defs["igTableGcCompactTransientBuffers"][1]["cimguiname"] = "igTableGcCompactTransientBuffers" defs["igTableGcCompactTransientBuffers"][1]["defaults"] = {} defs["igTableGcCompactTransientBuffers"][1]["funcname"] = "TableGcCompactTransientBuffers" -defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3060" +defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3252" defs["igTableGcCompactTransientBuffers"][1]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][1]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TablePtr" defs["igTableGcCompactTransientBuffers"][1]["ret"] = "void" @@ -27754,7 +28413,7 @@ defs["igTableGcCompactTransientBuffers"][2]["call_args"] = "(table)" defs["igTableGcCompactTransientBuffers"][2]["cimguiname"] = "igTableGcCompactTransientBuffers" defs["igTableGcCompactTransientBuffers"][2]["defaults"] = {} defs["igTableGcCompactTransientBuffers"][2]["funcname"] = "TableGcCompactTransientBuffers" -defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3061" +defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3253" defs["igTableGcCompactTransientBuffers"][2]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][2]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TableTempDataPtr" defs["igTableGcCompactTransientBuffers"][2]["ret"] = "void" @@ -27774,7 +28433,7 @@ defs["igTableGetBoundSettings"][1]["call_args"] = "(table)" defs["igTableGetBoundSettings"][1]["cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["defaults"] = {} defs["igTableGetBoundSettings"][1]["funcname"] = "TableGetBoundSettings" -defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3068" +defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3260" defs["igTableGetBoundSettings"][1]["namespace"] = "ImGui" defs["igTableGetBoundSettings"][1]["ov_cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["ret"] = "ImGuiTableSettings*" @@ -27799,7 +28458,7 @@ defs["igTableGetCellBgRect"][1]["call_args"] = "(table,column_n)" defs["igTableGetCellBgRect"][1]["cimguiname"] = "igTableGetCellBgRect" defs["igTableGetCellBgRect"][1]["defaults"] = {} defs["igTableGetCellBgRect"][1]["funcname"] = "TableGetCellBgRect" -defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3053" +defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3245" defs["igTableGetCellBgRect"][1]["namespace"] = "ImGui" defs["igTableGetCellBgRect"][1]["nonUDT"] = 1 defs["igTableGetCellBgRect"][1]["ov_cimguiname"] = "igTableGetCellBgRect" @@ -27816,7 +28475,7 @@ defs["igTableGetColumnCount"][1]["call_args"] = "()" defs["igTableGetColumnCount"][1]["cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["defaults"] = {} defs["igTableGetColumnCount"][1]["funcname"] = "TableGetColumnCount" -defs["igTableGetColumnCount"][1]["location"] = "imgui:764" +defs["igTableGetColumnCount"][1]["location"] = "imgui:774" defs["igTableGetColumnCount"][1]["namespace"] = "ImGui" defs["igTableGetColumnCount"][1]["ov_cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["ret"] = "int" @@ -27836,7 +28495,7 @@ defs["igTableGetColumnFlags"][1]["cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["defaults"] = {} defs["igTableGetColumnFlags"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnFlags"][1]["funcname"] = "TableGetColumnFlags" -defs["igTableGetColumnFlags"][1]["location"] = "imgui:768" +defs["igTableGetColumnFlags"][1]["location"] = "imgui:778" defs["igTableGetColumnFlags"][1]["namespace"] = "ImGui" defs["igTableGetColumnFlags"][1]["ov_cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["ret"] = "ImGuiTableColumnFlags" @@ -27852,7 +28511,7 @@ defs["igTableGetColumnIndex"][1]["call_args"] = "()" defs["igTableGetColumnIndex"][1]["cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["defaults"] = {} defs["igTableGetColumnIndex"][1]["funcname"] = "TableGetColumnIndex" -defs["igTableGetColumnIndex"][1]["location"] = "imgui:765" +defs["igTableGetColumnIndex"][1]["location"] = "imgui:775" defs["igTableGetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableGetColumnIndex"][1]["ov_cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["ret"] = "int" @@ -27872,7 +28531,7 @@ defs["igTableGetColumnName"][1]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][1]["defaults"] = {} defs["igTableGetColumnName"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnName"][1]["funcname"] = "TableGetColumnName" -defs["igTableGetColumnName"][1]["location"] = "imgui:767" +defs["igTableGetColumnName"][1]["location"] = "imgui:777" defs["igTableGetColumnName"][1]["namespace"] = "ImGui" defs["igTableGetColumnName"][1]["ov_cimguiname"] = "igTableGetColumnName_Int" defs["igTableGetColumnName"][1]["ret"] = "const char*" @@ -27892,7 +28551,7 @@ defs["igTableGetColumnName"][2]["call_args"] = "(table,column_n)" defs["igTableGetColumnName"][2]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][2]["defaults"] = {} defs["igTableGetColumnName"][2]["funcname"] = "TableGetColumnName" -defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3054" +defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3246" defs["igTableGetColumnName"][2]["namespace"] = "ImGui" defs["igTableGetColumnName"][2]["ov_cimguiname"] = "igTableGetColumnName_TablePtr" defs["igTableGetColumnName"][2]["ret"] = "const char*" @@ -27912,7 +28571,7 @@ defs["igTableGetColumnNextSortDirection"][1]["call_args"] = "(column)" defs["igTableGetColumnNextSortDirection"][1]["cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["defaults"] = {} defs["igTableGetColumnNextSortDirection"][1]["funcname"] = "TableGetColumnNextSortDirection" -defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3046" +defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3238" defs["igTableGetColumnNextSortDirection"][1]["namespace"] = "ImGui" defs["igTableGetColumnNextSortDirection"][1]["ov_cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["ret"] = "ImGuiSortDirection" @@ -27938,7 +28597,7 @@ defs["igTableGetColumnResizeID"][1]["cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["defaults"] = {} defs["igTableGetColumnResizeID"][1]["defaults"]["instance_no"] = "0" defs["igTableGetColumnResizeID"][1]["funcname"] = "TableGetColumnResizeID" -defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3055" +defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3247" defs["igTableGetColumnResizeID"][1]["namespace"] = "ImGui" defs["igTableGetColumnResizeID"][1]["ov_cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["ret"] = "ImGuiID" @@ -27960,7 +28619,7 @@ defs["igTableGetColumnWidthAuto"][1]["call_args"] = "(table,column)" defs["igTableGetColumnWidthAuto"][1]["cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["defaults"] = {} defs["igTableGetColumnWidthAuto"][1]["funcname"] = "TableGetColumnWidthAuto" -defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3048" +defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3240" defs["igTableGetColumnWidthAuto"][1]["namespace"] = "ImGui" defs["igTableGetColumnWidthAuto"][1]["ov_cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["ret"] = "float" @@ -27976,7 +28635,7 @@ defs["igTableGetHeaderRowHeight"][1]["call_args"] = "()" defs["igTableGetHeaderRowHeight"][1]["cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["defaults"] = {} defs["igTableGetHeaderRowHeight"][1]["funcname"] = "TableGetHeaderRowHeight" -defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3026" +defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3217" defs["igTableGetHeaderRowHeight"][1]["namespace"] = "ImGui" defs["igTableGetHeaderRowHeight"][1]["ov_cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["ret"] = "float" @@ -27992,7 +28651,7 @@ defs["igTableGetHoveredColumn"][1]["call_args"] = "()" defs["igTableGetHoveredColumn"][1]["cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["defaults"] = {} defs["igTableGetHoveredColumn"][1]["funcname"] = "TableGetHoveredColumn" -defs["igTableGetHoveredColumn"][1]["location"] = "imgui_internal:3025" +defs["igTableGetHoveredColumn"][1]["location"] = "imgui_internal:3216" defs["igTableGetHoveredColumn"][1]["namespace"] = "ImGui" defs["igTableGetHoveredColumn"][1]["ov_cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["ret"] = "int" @@ -28014,7 +28673,7 @@ defs["igTableGetInstanceData"][1]["call_args"] = "(table,instance_no)" defs["igTableGetInstanceData"][1]["cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["defaults"] = {} defs["igTableGetInstanceData"][1]["funcname"] = "TableGetInstanceData" -defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3043" +defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3235" defs["igTableGetInstanceData"][1]["namespace"] = "ImGui" defs["igTableGetInstanceData"][1]["ov_cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["ret"] = "ImGuiTableInstanceData*" @@ -28036,7 +28695,7 @@ defs["igTableGetMaxColumnWidth"][1]["call_args"] = "(table,column_n)" defs["igTableGetMaxColumnWidth"][1]["cimguiname"] = "igTableGetMaxColumnWidth" defs["igTableGetMaxColumnWidth"][1]["defaults"] = {} defs["igTableGetMaxColumnWidth"][1]["funcname"] = "TableGetMaxColumnWidth" -defs["igTableGetMaxColumnWidth"][1]["location"] = "imgui_internal:3056" +defs["igTableGetMaxColumnWidth"][1]["location"] = "imgui_internal:3248" defs["igTableGetMaxColumnWidth"][1]["namespace"] = "ImGui" defs["igTableGetMaxColumnWidth"][1]["ov_cimguiname"] = "igTableGetMaxColumnWidth" defs["igTableGetMaxColumnWidth"][1]["ret"] = "float" @@ -28052,7 +28711,7 @@ defs["igTableGetRowIndex"][1]["call_args"] = "()" defs["igTableGetRowIndex"][1]["cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["defaults"] = {} defs["igTableGetRowIndex"][1]["funcname"] = "TableGetRowIndex" -defs["igTableGetRowIndex"][1]["location"] = "imgui:766" +defs["igTableGetRowIndex"][1]["location"] = "imgui:776" defs["igTableGetRowIndex"][1]["namespace"] = "ImGui" defs["igTableGetRowIndex"][1]["ov_cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["ret"] = "int" @@ -28068,7 +28727,7 @@ defs["igTableGetSortSpecs"][1]["call_args"] = "()" defs["igTableGetSortSpecs"][1]["cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["defaults"] = {} defs["igTableGetSortSpecs"][1]["funcname"] = "TableGetSortSpecs" -defs["igTableGetSortSpecs"][1]["location"] = "imgui:763" +defs["igTableGetSortSpecs"][1]["location"] = "imgui:773" defs["igTableGetSortSpecs"][1]["namespace"] = "ImGui" defs["igTableGetSortSpecs"][1]["ov_cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["ret"] = "ImGuiTableSortSpecs*" @@ -28087,7 +28746,7 @@ defs["igTableHeader"][1]["call_args"] = "(label)" defs["igTableHeader"][1]["cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["defaults"] = {} defs["igTableHeader"][1]["funcname"] = "TableHeader" -defs["igTableHeader"][1]["location"] = "imgui:755" +defs["igTableHeader"][1]["location"] = "imgui:765" defs["igTableHeader"][1]["namespace"] = "ImGui" defs["igTableHeader"][1]["ov_cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["ret"] = "void" @@ -28103,7 +28762,7 @@ defs["igTableHeadersRow"][1]["call_args"] = "()" defs["igTableHeadersRow"][1]["cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["defaults"] = {} defs["igTableHeadersRow"][1]["funcname"] = "TableHeadersRow" -defs["igTableHeadersRow"][1]["location"] = "imgui:754" +defs["igTableHeadersRow"][1]["location"] = "imgui:764" defs["igTableHeadersRow"][1]["namespace"] = "ImGui" defs["igTableHeadersRow"][1]["ov_cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["ret"] = "void" @@ -28122,7 +28781,7 @@ defs["igTableLoadSettings"][1]["call_args"] = "(table)" defs["igTableLoadSettings"][1]["cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["defaults"] = {} defs["igTableLoadSettings"][1]["funcname"] = "TableLoadSettings" -defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3065" +defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3257" defs["igTableLoadSettings"][1]["namespace"] = "ImGui" defs["igTableLoadSettings"][1]["ov_cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["ret"] = "void" @@ -28141,7 +28800,7 @@ defs["igTableMergeDrawChannels"][1]["call_args"] = "(table)" defs["igTableMergeDrawChannels"][1]["cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["defaults"] = {} defs["igTableMergeDrawChannels"][1]["funcname"] = "TableMergeDrawChannels" -defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3042" +defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3234" defs["igTableMergeDrawChannels"][1]["namespace"] = "ImGui" defs["igTableMergeDrawChannels"][1]["ov_cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["ret"] = "void" @@ -28157,7 +28816,7 @@ defs["igTableNextColumn"][1]["call_args"] = "()" defs["igTableNextColumn"][1]["cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["defaults"] = {} defs["igTableNextColumn"][1]["funcname"] = "TableNextColumn" -defs["igTableNextColumn"][1]["location"] = "imgui:741" +defs["igTableNextColumn"][1]["location"] = "imgui:751" defs["igTableNextColumn"][1]["namespace"] = "ImGui" defs["igTableNextColumn"][1]["ov_cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["ret"] = "bool" @@ -28181,7 +28840,7 @@ defs["igTableNextRow"][1]["defaults"] = {} defs["igTableNextRow"][1]["defaults"]["min_row_height"] = "0.0f" defs["igTableNextRow"][1]["defaults"]["row_flags"] = "0" defs["igTableNextRow"][1]["funcname"] = "TableNextRow" -defs["igTableNextRow"][1]["location"] = "imgui:740" +defs["igTableNextRow"][1]["location"] = "imgui:750" defs["igTableNextRow"][1]["namespace"] = "ImGui" defs["igTableNextRow"][1]["ov_cimguiname"] = "igTableNextRow" defs["igTableNextRow"][1]["ret"] = "void" @@ -28201,7 +28860,7 @@ defs["igTableOpenContextMenu"][1]["cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["defaults"] = {} defs["igTableOpenContextMenu"][1]["defaults"]["column_n"] = "-1" defs["igTableOpenContextMenu"][1]["funcname"] = "TableOpenContextMenu" -defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3022" +defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3213" defs["igTableOpenContextMenu"][1]["namespace"] = "ImGui" defs["igTableOpenContextMenu"][1]["ov_cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["ret"] = "void" @@ -28217,7 +28876,7 @@ defs["igTablePopBackgroundChannel"][1]["call_args"] = "()" defs["igTablePopBackgroundChannel"][1]["cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["defaults"] = {} defs["igTablePopBackgroundChannel"][1]["funcname"] = "TablePopBackgroundChannel" -defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3028" +defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3219" defs["igTablePopBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePopBackgroundChannel"][1]["ov_cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["ret"] = "void" @@ -28233,7 +28892,7 @@ defs["igTablePushBackgroundChannel"][1]["call_args"] = "()" defs["igTablePushBackgroundChannel"][1]["cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["defaults"] = {} defs["igTablePushBackgroundChannel"][1]["funcname"] = "TablePushBackgroundChannel" -defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3027" +defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3218" defs["igTablePushBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePushBackgroundChannel"][1]["ov_cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["ret"] = "void" @@ -28252,7 +28911,7 @@ defs["igTableRemove"][1]["call_args"] = "(table)" defs["igTableRemove"][1]["cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["defaults"] = {} defs["igTableRemove"][1]["funcname"] = "TableRemove" -defs["igTableRemove"][1]["location"] = "imgui_internal:3059" +defs["igTableRemove"][1]["location"] = "imgui_internal:3251" defs["igTableRemove"][1]["namespace"] = "ImGui" defs["igTableRemove"][1]["ov_cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["ret"] = "void" @@ -28271,7 +28930,7 @@ defs["igTableResetSettings"][1]["call_args"] = "(table)" defs["igTableResetSettings"][1]["cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["defaults"] = {} defs["igTableResetSettings"][1]["funcname"] = "TableResetSettings" -defs["igTableResetSettings"][1]["location"] = "imgui_internal:3067" +defs["igTableResetSettings"][1]["location"] = "imgui_internal:3259" defs["igTableResetSettings"][1]["namespace"] = "ImGui" defs["igTableResetSettings"][1]["ov_cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["ret"] = "void" @@ -28290,7 +28949,7 @@ defs["igTableSaveSettings"][1]["call_args"] = "(table)" defs["igTableSaveSettings"][1]["cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["defaults"] = {} defs["igTableSaveSettings"][1]["funcname"] = "TableSaveSettings" -defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3066" +defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3258" defs["igTableSaveSettings"][1]["namespace"] = "ImGui" defs["igTableSaveSettings"][1]["ov_cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["ret"] = "void" @@ -28316,7 +28975,7 @@ defs["igTableSetBgColor"][1]["cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["defaults"] = {} defs["igTableSetBgColor"][1]["defaults"]["column_n"] = "-1" defs["igTableSetBgColor"][1]["funcname"] = "TableSetBgColor" -defs["igTableSetBgColor"][1]["location"] = "imgui:770" +defs["igTableSetBgColor"][1]["location"] = "imgui:780" defs["igTableSetBgColor"][1]["namespace"] = "ImGui" defs["igTableSetBgColor"][1]["ov_cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["ret"] = "void" @@ -28338,7 +28997,7 @@ defs["igTableSetColumnEnabled"][1]["call_args"] = "(column_n,v)" defs["igTableSetColumnEnabled"][1]["cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["defaults"] = {} defs["igTableSetColumnEnabled"][1]["funcname"] = "TableSetColumnEnabled" -defs["igTableSetColumnEnabled"][1]["location"] = "imgui:769" +defs["igTableSetColumnEnabled"][1]["location"] = "imgui:779" defs["igTableSetColumnEnabled"][1]["namespace"] = "ImGui" defs["igTableSetColumnEnabled"][1]["ov_cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["ret"] = "void" @@ -28357,7 +29016,7 @@ defs["igTableSetColumnIndex"][1]["call_args"] = "(column_n)" defs["igTableSetColumnIndex"][1]["cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["defaults"] = {} defs["igTableSetColumnIndex"][1]["funcname"] = "TableSetColumnIndex" -defs["igTableSetColumnIndex"][1]["location"] = "imgui:742" +defs["igTableSetColumnIndex"][1]["location"] = "imgui:752" defs["igTableSetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableSetColumnIndex"][1]["ov_cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["ret"] = "bool" @@ -28382,7 +29041,7 @@ defs["igTableSetColumnSortDirection"][1]["call_args"] = "(column_n,sort_directio defs["igTableSetColumnSortDirection"][1]["cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["defaults"] = {} defs["igTableSetColumnSortDirection"][1]["funcname"] = "TableSetColumnSortDirection" -defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3024" +defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3215" defs["igTableSetColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableSetColumnSortDirection"][1]["ov_cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["ret"] = "void" @@ -28404,7 +29063,7 @@ defs["igTableSetColumnWidth"][1]["call_args"] = "(column_n,width)" defs["igTableSetColumnWidth"][1]["cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["defaults"] = {} defs["igTableSetColumnWidth"][1]["funcname"] = "TableSetColumnWidth" -defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3023" +defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3214" defs["igTableSetColumnWidth"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidth"][1]["ov_cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["ret"] = "void" @@ -28423,7 +29082,7 @@ defs["igTableSetColumnWidthAutoAll"][1]["call_args"] = "(table)" defs["igTableSetColumnWidthAutoAll"][1]["cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["defaults"] = {} defs["igTableSetColumnWidthAutoAll"][1]["funcname"] = "TableSetColumnWidthAutoAll" -defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3058" +defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3250" defs["igTableSetColumnWidthAutoAll"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoAll"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["ret"] = "void" @@ -28445,7 +29104,7 @@ defs["igTableSetColumnWidthAutoSingle"][1]["call_args"] = "(table,column_n)" defs["igTableSetColumnWidthAutoSingle"][1]["cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["defaults"] = {} defs["igTableSetColumnWidthAutoSingle"][1]["funcname"] = "TableSetColumnWidthAutoSingle" -defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3057" +defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3249" defs["igTableSetColumnWidthAutoSingle"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoSingle"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["ret"] = "void" @@ -28461,7 +29120,7 @@ defs["igTableSettingsAddSettingsHandler"][1]["call_args"] = "()" defs["igTableSettingsAddSettingsHandler"][1]["cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["defaults"] = {} defs["igTableSettingsAddSettingsHandler"][1]["funcname"] = "TableSettingsAddSettingsHandler" -defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3069" +defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3261" defs["igTableSettingsAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igTableSettingsAddSettingsHandler"][1]["ov_cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["ret"] = "void" @@ -28483,7 +29142,7 @@ defs["igTableSettingsCreate"][1]["call_args"] = "(id,columns_count)" defs["igTableSettingsCreate"][1]["cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["defaults"] = {} defs["igTableSettingsCreate"][1]["funcname"] = "TableSettingsCreate" -defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3070" +defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3262" defs["igTableSettingsCreate"][1]["namespace"] = "ImGui" defs["igTableSettingsCreate"][1]["ov_cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["ret"] = "ImGuiTableSettings*" @@ -28502,7 +29161,7 @@ defs["igTableSettingsFindByID"][1]["call_args"] = "(id)" defs["igTableSettingsFindByID"][1]["cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["defaults"] = {} defs["igTableSettingsFindByID"][1]["funcname"] = "TableSettingsFindByID" -defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3071" +defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3263" defs["igTableSettingsFindByID"][1]["namespace"] = "ImGui" defs["igTableSettingsFindByID"][1]["ov_cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["ret"] = "ImGuiTableSettings*" @@ -28533,7 +29192,7 @@ defs["igTableSetupColumn"][1]["defaults"]["flags"] = "0" defs["igTableSetupColumn"][1]["defaults"]["init_width_or_weight"] = "0.0f" defs["igTableSetupColumn"][1]["defaults"]["user_id"] = "0" defs["igTableSetupColumn"][1]["funcname"] = "TableSetupColumn" -defs["igTableSetupColumn"][1]["location"] = "imgui:752" +defs["igTableSetupColumn"][1]["location"] = "imgui:762" defs["igTableSetupColumn"][1]["namespace"] = "ImGui" defs["igTableSetupColumn"][1]["ov_cimguiname"] = "igTableSetupColumn" defs["igTableSetupColumn"][1]["ret"] = "void" @@ -28552,7 +29211,7 @@ defs["igTableSetupDrawChannels"][1]["call_args"] = "(table)" defs["igTableSetupDrawChannels"][1]["cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["defaults"] = {} defs["igTableSetupDrawChannels"][1]["funcname"] = "TableSetupDrawChannels" -defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3036" +defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3227" defs["igTableSetupDrawChannels"][1]["namespace"] = "ImGui" defs["igTableSetupDrawChannels"][1]["ov_cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["ret"] = "void" @@ -28574,7 +29233,7 @@ defs["igTableSetupScrollFreeze"][1]["call_args"] = "(cols,rows)" defs["igTableSetupScrollFreeze"][1]["cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["defaults"] = {} defs["igTableSetupScrollFreeze"][1]["funcname"] = "TableSetupScrollFreeze" -defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:753" +defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:763" defs["igTableSetupScrollFreeze"][1]["namespace"] = "ImGui" defs["igTableSetupScrollFreeze"][1]["ov_cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["ret"] = "void" @@ -28593,7 +29252,7 @@ defs["igTableSortSpecsBuild"][1]["call_args"] = "(table)" defs["igTableSortSpecsBuild"][1]["cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["defaults"] = {} defs["igTableSortSpecsBuild"][1]["funcname"] = "TableSortSpecsBuild" -defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3045" +defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3237" defs["igTableSortSpecsBuild"][1]["namespace"] = "ImGui" defs["igTableSortSpecsBuild"][1]["ov_cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["ret"] = "void" @@ -28612,7 +29271,7 @@ defs["igTableSortSpecsSanitize"][1]["call_args"] = "(table)" defs["igTableSortSpecsSanitize"][1]["cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["defaults"] = {} defs["igTableSortSpecsSanitize"][1]["funcname"] = "TableSortSpecsSanitize" -defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3044" +defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3236" defs["igTableSortSpecsSanitize"][1]["namespace"] = "ImGui" defs["igTableSortSpecsSanitize"][1]["ov_cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["ret"] = "void" @@ -28631,7 +29290,7 @@ defs["igTableUpdateBorders"][1]["call_args"] = "(table)" defs["igTableUpdateBorders"][1]["cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["defaults"] = {} defs["igTableUpdateBorders"][1]["funcname"] = "TableUpdateBorders" -defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3038" +defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3229" defs["igTableUpdateBorders"][1]["namespace"] = "ImGui" defs["igTableUpdateBorders"][1]["ov_cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["ret"] = "void" @@ -28650,7 +29309,7 @@ defs["igTableUpdateColumnsWeightFromWidth"][1]["call_args"] = "(table)" defs["igTableUpdateColumnsWeightFromWidth"][1]["cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["defaults"] = {} defs["igTableUpdateColumnsWeightFromWidth"][1]["funcname"] = "TableUpdateColumnsWeightFromWidth" -defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3039" +defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3230" defs["igTableUpdateColumnsWeightFromWidth"][1]["namespace"] = "ImGui" defs["igTableUpdateColumnsWeightFromWidth"][1]["ov_cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["ret"] = "void" @@ -28669,7 +29328,7 @@ defs["igTableUpdateLayout"][1]["call_args"] = "(table)" defs["igTableUpdateLayout"][1]["cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["defaults"] = {} defs["igTableUpdateLayout"][1]["funcname"] = "TableUpdateLayout" -defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3037" +defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3228" defs["igTableUpdateLayout"][1]["namespace"] = "ImGui" defs["igTableUpdateLayout"][1]["ov_cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["ret"] = "void" @@ -28688,7 +29347,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:3161" +defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3355" defs["igTempInputIsActive"][1]["namespace"] = "ImGui" defs["igTempInputIsActive"][1]["ov_cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["ret"] = "bool" @@ -28730,7 +29389,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:3160" +defs["igTempInputScalar"][1]["location"] = "imgui_internal:3354" defs["igTempInputScalar"][1]["namespace"] = "ImGui" defs["igTempInputScalar"][1]["ov_cimguiname"] = "igTempInputScalar" defs["igTempInputScalar"][1]["ret"] = "bool" @@ -28764,13 +29423,57 @@ 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:3159" +defs["igTempInputText"][1]["location"] = "imgui_internal:3353" defs["igTempInputText"][1]["namespace"] = "ImGui" defs["igTempInputText"][1]["ov_cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["ret"] = "bool" defs["igTempInputText"][1]["signature"] = "(const ImRect,ImGuiID,const char*,char*,int,ImGuiInputTextFlags)" defs["igTempInputText"][1]["stname"] = "" defs["igTempInputText"]["(const ImRect,ImGuiID,const char*,char*,int,ImGuiInputTextFlags)"] = defs["igTempInputText"][1] +defs["igTestKeyOwner"] = {} +defs["igTestKeyOwner"][1] = {} +defs["igTestKeyOwner"][1]["args"] = "(ImGuiKey key,ImGuiID owner_id)" +defs["igTestKeyOwner"][1]["argsT"] = {} +defs["igTestKeyOwner"][1]["argsT"][1] = {} +defs["igTestKeyOwner"][1]["argsT"][1]["name"] = "key" +defs["igTestKeyOwner"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igTestKeyOwner"][1]["argsT"][2] = {} +defs["igTestKeyOwner"][1]["argsT"][2]["name"] = "owner_id" +defs["igTestKeyOwner"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igTestKeyOwner"][1]["argsoriginal"] = "(ImGuiKey key,ImGuiID owner_id)" +defs["igTestKeyOwner"][1]["call_args"] = "(key,owner_id)" +defs["igTestKeyOwner"][1]["cimguiname"] = "igTestKeyOwner" +defs["igTestKeyOwner"][1]["defaults"] = {} +defs["igTestKeyOwner"][1]["funcname"] = "TestKeyOwner" +defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3098" +defs["igTestKeyOwner"][1]["namespace"] = "ImGui" +defs["igTestKeyOwner"][1]["ov_cimguiname"] = "igTestKeyOwner" +defs["igTestKeyOwner"][1]["ret"] = "bool" +defs["igTestKeyOwner"][1]["signature"] = "(ImGuiKey,ImGuiID)" +defs["igTestKeyOwner"][1]["stname"] = "" +defs["igTestKeyOwner"]["(ImGuiKey,ImGuiID)"] = defs["igTestKeyOwner"][1] +defs["igTestShortcutRouting"] = {} +defs["igTestShortcutRouting"][1] = {} +defs["igTestShortcutRouting"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id)" +defs["igTestShortcutRouting"][1]["argsT"] = {} +defs["igTestShortcutRouting"][1]["argsT"][1] = {} +defs["igTestShortcutRouting"][1]["argsT"][1]["name"] = "key_chord" +defs["igTestShortcutRouting"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igTestShortcutRouting"][1]["argsT"][2] = {} +defs["igTestShortcutRouting"][1]["argsT"][2]["name"] = "owner_id" +defs["igTestShortcutRouting"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igTestShortcutRouting"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id)" +defs["igTestShortcutRouting"][1]["call_args"] = "(key_chord,owner_id)" +defs["igTestShortcutRouting"][1]["cimguiname"] = "igTestShortcutRouting" +defs["igTestShortcutRouting"][1]["defaults"] = {} +defs["igTestShortcutRouting"][1]["funcname"] = "TestShortcutRouting" +defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3126" +defs["igTestShortcutRouting"][1]["namespace"] = "ImGui" +defs["igTestShortcutRouting"][1]["ov_cimguiname"] = "igTestShortcutRouting" +defs["igTestShortcutRouting"][1]["ret"] = "bool" +defs["igTestShortcutRouting"][1]["signature"] = "(ImGuiKeyChord,ImGuiID)" +defs["igTestShortcutRouting"][1]["stname"] = "" +defs["igTestShortcutRouting"]["(ImGuiKeyChord,ImGuiID)"] = defs["igTestShortcutRouting"][1] defs["igText"] = {} defs["igText"][1] = {} defs["igText"][1]["args"] = "(const char* fmt,...)" @@ -28787,7 +29490,7 @@ defs["igText"][1]["cimguiname"] = "igText" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" -defs["igText"][1]["location"] = "imgui:486" +defs["igText"][1]["location"] = "imgui:493" defs["igText"][1]["namespace"] = "ImGui" defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" @@ -28813,7 +29516,7 @@ defs["igTextColored"][1]["cimguiname"] = "igTextColored" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" -defs["igTextColored"][1]["location"] = "imgui:488" +defs["igTextColored"][1]["location"] = "imgui:495" defs["igTextColored"][1]["namespace"] = "ImGui" defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" @@ -28838,7 +29541,7 @@ defs["igTextColoredV"][1]["call_args"] = "(col,fmt,args)" defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" -defs["igTextColoredV"][1]["location"] = "imgui:489" +defs["igTextColoredV"][1]["location"] = "imgui:496" defs["igTextColoredV"][1]["namespace"] = "ImGui" defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" @@ -28861,7 +29564,7 @@ defs["igTextDisabled"][1]["cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" -defs["igTextDisabled"][1]["location"] = "imgui:490" +defs["igTextDisabled"][1]["location"] = "imgui:497" defs["igTextDisabled"][1]["namespace"] = "ImGui" defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" @@ -28883,7 +29586,7 @@ defs["igTextDisabledV"][1]["call_args"] = "(fmt,args)" defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" -defs["igTextDisabledV"][1]["location"] = "imgui:491" +defs["igTextDisabledV"][1]["location"] = "imgui:498" defs["igTextDisabledV"][1]["namespace"] = "ImGui" defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" @@ -28910,7 +29613,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:3114" +defs["igTextEx"][1]["location"] = "imgui_internal:3307" defs["igTextEx"][1]["namespace"] = "ImGui" defs["igTextEx"][1]["ov_cimguiname"] = "igTextEx" defs["igTextEx"][1]["ret"] = "void" @@ -28933,7 +29636,7 @@ defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["defaults"] = {} defs["igTextUnformatted"][1]["defaults"]["text_end"] = "NULL" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" -defs["igTextUnformatted"][1]["location"] = "imgui:485" +defs["igTextUnformatted"][1]["location"] = "imgui:492" defs["igTextUnformatted"][1]["namespace"] = "ImGui" defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" @@ -28955,7 +29658,7 @@ defs["igTextV"][1]["call_args"] = "(fmt,args)" defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" -defs["igTextV"][1]["location"] = "imgui:487" +defs["igTextV"][1]["location"] = "imgui:494" defs["igTextV"][1]["namespace"] = "ImGui" defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" @@ -28978,7 +29681,7 @@ defs["igTextWrapped"][1]["cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" -defs["igTextWrapped"][1]["location"] = "imgui:492" +defs["igTextWrapped"][1]["location"] = "imgui:499" defs["igTextWrapped"][1]["namespace"] = "ImGui" defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" @@ -29000,7 +29703,7 @@ defs["igTextWrappedV"][1]["call_args"] = "(fmt,args)" defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" -defs["igTextWrappedV"][1]["location"] = "imgui:493" +defs["igTextWrappedV"][1]["location"] = "imgui:500" defs["igTextWrappedV"][1]["namespace"] = "ImGui" defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" @@ -29025,7 +29728,7 @@ defs["igTranslateWindowsInViewport"][1]["call_args"] = "(viewport,old_pos,new_po defs["igTranslateWindowsInViewport"][1]["cimguiname"] = "igTranslateWindowsInViewport" defs["igTranslateWindowsInViewport"][1]["defaults"] = {} defs["igTranslateWindowsInViewport"][1]["funcname"] = "TranslateWindowsInViewport" -defs["igTranslateWindowsInViewport"][1]["location"] = "imgui_internal:2796" +defs["igTranslateWindowsInViewport"][1]["location"] = "imgui_internal:2945" defs["igTranslateWindowsInViewport"][1]["namespace"] = "ImGui" defs["igTranslateWindowsInViewport"][1]["ov_cimguiname"] = "igTranslateWindowsInViewport" defs["igTranslateWindowsInViewport"][1]["ret"] = "void" @@ -29044,7 +29747,7 @@ defs["igTreeNode"][1]["call_args"] = "(label)" defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" -defs["igTreeNode"][1]["location"] = "imgui:601" +defs["igTreeNode"][1]["location"] = "imgui:611" defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNode_Str" defs["igTreeNode"][1]["ret"] = "bool" @@ -29068,7 +29771,7 @@ defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" -defs["igTreeNode"][2]["location"] = "imgui:602" +defs["igTreeNode"][2]["location"] = "imgui:612" defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNode_StrStr" defs["igTreeNode"][2]["ret"] = "bool" @@ -29092,7 +29795,7 @@ defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" -defs["igTreeNode"][3]["location"] = "imgui:603" +defs["igTreeNode"][3]["location"] = "imgui:613" defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNode_Ptr" defs["igTreeNode"][3]["ret"] = "bool" @@ -29123,36 +29826,13 @@ 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:3135" +defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3328" defs["igTreeNodeBehavior"][1]["namespace"] = "ImGui" defs["igTreeNodeBehavior"][1]["ov_cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["ret"] = "bool" defs["igTreeNodeBehavior"][1]["signature"] = "(ImGuiID,ImGuiTreeNodeFlags,const char*,const char*)" defs["igTreeNodeBehavior"][1]["stname"] = "" defs["igTreeNodeBehavior"]["(ImGuiID,ImGuiTreeNodeFlags,const char*,const char*)"] = defs["igTreeNodeBehavior"][1] -defs["igTreeNodeBehaviorIsOpen"] = {} -defs["igTreeNodeBehaviorIsOpen"][1] = {} -defs["igTreeNodeBehaviorIsOpen"][1]["args"] = "(ImGuiID id,ImGuiTreeNodeFlags flags)" -defs["igTreeNodeBehaviorIsOpen"][1]["argsT"] = {} -defs["igTreeNodeBehaviorIsOpen"][1]["argsT"][1] = {} -defs["igTreeNodeBehaviorIsOpen"][1]["argsT"][1]["name"] = "id" -defs["igTreeNodeBehaviorIsOpen"][1]["argsT"][1]["type"] = "ImGuiID" -defs["igTreeNodeBehaviorIsOpen"][1]["argsT"][2] = {} -defs["igTreeNodeBehaviorIsOpen"][1]["argsT"][2]["name"] = "flags" -defs["igTreeNodeBehaviorIsOpen"][1]["argsT"][2]["type"] = "ImGuiTreeNodeFlags" -defs["igTreeNodeBehaviorIsOpen"][1]["argsoriginal"] = "(ImGuiID id,ImGuiTreeNodeFlags flags=0)" -defs["igTreeNodeBehaviorIsOpen"][1]["call_args"] = "(id,flags)" -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:3136" -defs["igTreeNodeBehaviorIsOpen"][1]["namespace"] = "ImGui" -defs["igTreeNodeBehaviorIsOpen"][1]["ov_cimguiname"] = "igTreeNodeBehaviorIsOpen" -defs["igTreeNodeBehaviorIsOpen"][1]["ret"] = "bool" -defs["igTreeNodeBehaviorIsOpen"][1]["signature"] = "(ImGuiID,ImGuiTreeNodeFlags)" -defs["igTreeNodeBehaviorIsOpen"][1]["stname"] = "" -defs["igTreeNodeBehaviorIsOpen"]["(ImGuiID,ImGuiTreeNodeFlags)"] = defs["igTreeNodeBehaviorIsOpen"][1] defs["igTreeNodeEx"] = {} defs["igTreeNodeEx"][1] = {} defs["igTreeNodeEx"][1]["args"] = "(const char* label,ImGuiTreeNodeFlags flags)" @@ -29169,7 +29849,7 @@ defs["igTreeNodeEx"][1]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" -defs["igTreeNodeEx"][1]["location"] = "imgui:606" +defs["igTreeNodeEx"][1]["location"] = "imgui:616" defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeEx_Str" defs["igTreeNodeEx"][1]["ret"] = "bool" @@ -29196,7 +29876,7 @@ defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" -defs["igTreeNodeEx"][2]["location"] = "imgui:607" +defs["igTreeNodeEx"][2]["location"] = "imgui:617" defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeEx_StrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" @@ -29223,7 +29903,7 @@ defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" -defs["igTreeNodeEx"][3]["location"] = "imgui:608" +defs["igTreeNodeEx"][3]["location"] = "imgui:618" defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeEx_Ptr" defs["igTreeNodeEx"][3]["ret"] = "bool" @@ -29253,7 +29933,7 @@ defs["igTreeNodeExV"][1]["call_args"] = "(str_id,flags,fmt,args)" defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][1]["location"] = "imgui:609" +defs["igTreeNodeExV"][1]["location"] = "imgui:619" defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExV_Str" defs["igTreeNodeExV"][1]["ret"] = "bool" @@ -29279,7 +29959,7 @@ defs["igTreeNodeExV"][2]["call_args"] = "(ptr_id,flags,fmt,args)" defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][2]["location"] = "imgui:610" +defs["igTreeNodeExV"][2]["location"] = "imgui:620" defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExV_Ptr" defs["igTreeNodeExV"][2]["ret"] = "bool" @@ -29287,6 +29967,50 @@ defs["igTreeNodeExV"][2]["signature"] = "(const void*,ImGuiTreeNodeFlags,const c defs["igTreeNodeExV"][2]["stname"] = "" defs["igTreeNodeExV"]["(const char*,ImGuiTreeNodeFlags,const char*,va_list)"] = defs["igTreeNodeExV"][1] defs["igTreeNodeExV"]["(const void*,ImGuiTreeNodeFlags,const char*,va_list)"] = defs["igTreeNodeExV"][2] +defs["igTreeNodeSetOpen"] = {} +defs["igTreeNodeSetOpen"][1] = {} +defs["igTreeNodeSetOpen"][1]["args"] = "(ImGuiID id,bool open)" +defs["igTreeNodeSetOpen"][1]["argsT"] = {} +defs["igTreeNodeSetOpen"][1]["argsT"][1] = {} +defs["igTreeNodeSetOpen"][1]["argsT"][1]["name"] = "id" +defs["igTreeNodeSetOpen"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igTreeNodeSetOpen"][1]["argsT"][2] = {} +defs["igTreeNodeSetOpen"][1]["argsT"][2]["name"] = "open" +defs["igTreeNodeSetOpen"][1]["argsT"][2]["type"] = "bool" +defs["igTreeNodeSetOpen"][1]["argsoriginal"] = "(ImGuiID id,bool open)" +defs["igTreeNodeSetOpen"][1]["call_args"] = "(id,open)" +defs["igTreeNodeSetOpen"][1]["cimguiname"] = "igTreeNodeSetOpen" +defs["igTreeNodeSetOpen"][1]["defaults"] = {} +defs["igTreeNodeSetOpen"][1]["funcname"] = "TreeNodeSetOpen" +defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3330" +defs["igTreeNodeSetOpen"][1]["namespace"] = "ImGui" +defs["igTreeNodeSetOpen"][1]["ov_cimguiname"] = "igTreeNodeSetOpen" +defs["igTreeNodeSetOpen"][1]["ret"] = "void" +defs["igTreeNodeSetOpen"][1]["signature"] = "(ImGuiID,bool)" +defs["igTreeNodeSetOpen"][1]["stname"] = "" +defs["igTreeNodeSetOpen"]["(ImGuiID,bool)"] = defs["igTreeNodeSetOpen"][1] +defs["igTreeNodeUpdateNextOpen"] = {} +defs["igTreeNodeUpdateNextOpen"][1] = {} +defs["igTreeNodeUpdateNextOpen"][1]["args"] = "(ImGuiID id,ImGuiTreeNodeFlags flags)" +defs["igTreeNodeUpdateNextOpen"][1]["argsT"] = {} +defs["igTreeNodeUpdateNextOpen"][1]["argsT"][1] = {} +defs["igTreeNodeUpdateNextOpen"][1]["argsT"][1]["name"] = "id" +defs["igTreeNodeUpdateNextOpen"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igTreeNodeUpdateNextOpen"][1]["argsT"][2] = {} +defs["igTreeNodeUpdateNextOpen"][1]["argsT"][2]["name"] = "flags" +defs["igTreeNodeUpdateNextOpen"][1]["argsT"][2]["type"] = "ImGuiTreeNodeFlags" +defs["igTreeNodeUpdateNextOpen"][1]["argsoriginal"] = "(ImGuiID id,ImGuiTreeNodeFlags flags)" +defs["igTreeNodeUpdateNextOpen"][1]["call_args"] = "(id,flags)" +defs["igTreeNodeUpdateNextOpen"][1]["cimguiname"] = "igTreeNodeUpdateNextOpen" +defs["igTreeNodeUpdateNextOpen"][1]["defaults"] = {} +defs["igTreeNodeUpdateNextOpen"][1]["funcname"] = "TreeNodeUpdateNextOpen" +defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3331" +defs["igTreeNodeUpdateNextOpen"][1]["namespace"] = "ImGui" +defs["igTreeNodeUpdateNextOpen"][1]["ov_cimguiname"] = "igTreeNodeUpdateNextOpen" +defs["igTreeNodeUpdateNextOpen"][1]["ret"] = "bool" +defs["igTreeNodeUpdateNextOpen"][1]["signature"] = "(ImGuiID,ImGuiTreeNodeFlags)" +defs["igTreeNodeUpdateNextOpen"][1]["stname"] = "" +defs["igTreeNodeUpdateNextOpen"]["(ImGuiID,ImGuiTreeNodeFlags)"] = defs["igTreeNodeUpdateNextOpen"][1] defs["igTreeNodeV"] = {} defs["igTreeNodeV"][1] = {} defs["igTreeNodeV"][1]["args"] = "(const char* str_id,const char* fmt,va_list args)" @@ -29305,7 +30029,7 @@ defs["igTreeNodeV"][1]["call_args"] = "(str_id,fmt,args)" defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][1]["location"] = "imgui:604" +defs["igTreeNodeV"][1]["location"] = "imgui:614" defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeV_Str" defs["igTreeNodeV"][1]["ret"] = "bool" @@ -29328,7 +30052,7 @@ defs["igTreeNodeV"][2]["call_args"] = "(ptr_id,fmt,args)" defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][2]["location"] = "imgui:605" +defs["igTreeNodeV"][2]["location"] = "imgui:615" defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeV_Ptr" defs["igTreeNodeV"][2]["ret"] = "bool" @@ -29345,7 +30069,7 @@ defs["igTreePop"][1]["call_args"] = "()" defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" -defs["igTreePop"][1]["location"] = "imgui:613" +defs["igTreePop"][1]["location"] = "imgui:623" defs["igTreePop"][1]["namespace"] = "ImGui" defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" @@ -29364,7 +30088,7 @@ defs["igTreePush"][1]["call_args"] = "(str_id)" defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" -defs["igTreePush"][1]["location"] = "imgui:611" +defs["igTreePush"][1]["location"] = "imgui:621" defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePush_Str" defs["igTreePush"][1]["ret"] = "void" @@ -29376,13 +30100,12 @@ defs["igTreePush"][2]["argsT"] = {} defs["igTreePush"][2]["argsT"][1] = {} defs["igTreePush"][2]["argsT"][1]["name"] = "ptr_id" defs["igTreePush"][2]["argsT"][1]["type"] = "const void*" -defs["igTreePush"][2]["argsoriginal"] = "(const void* ptr_id=((void*)0))" +defs["igTreePush"][2]["argsoriginal"] = "(const void* ptr_id)" defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["defaults"] = {} -defs["igTreePush"][2]["defaults"]["ptr_id"] = "NULL" defs["igTreePush"][2]["funcname"] = "TreePush" -defs["igTreePush"][2]["location"] = "imgui:612" +defs["igTreePush"][2]["location"] = "imgui:622" defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePush_Ptr" defs["igTreePush"][2]["ret"] = "void" @@ -29402,7 +30125,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:3137" +defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3329" defs["igTreePushOverrideID"][1]["namespace"] = "ImGui" defs["igTreePushOverrideID"][1]["ov_cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["ret"] = "void" @@ -29422,7 +30145,7 @@ defs["igUnindent"][1]["cimguiname"] = "igUnindent" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" -defs["igUnindent"][1]["location"] = "imgui:446" +defs["igUnindent"][1]["location"] = "imgui:453" defs["igUnindent"][1]["namespace"] = "ImGui" defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" @@ -29438,7 +30161,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:2784" +defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:2933" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["namespace"] = "ImGui" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ov_cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ret"] = "void" @@ -29457,7 +30180,7 @@ defs["igUpdateInputEvents"][1]["call_args"] = "(trickle_fast_inputs)" defs["igUpdateInputEvents"][1]["cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["defaults"] = {} defs["igUpdateInputEvents"][1]["funcname"] = "UpdateInputEvents" -defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:2783" +defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:2932" defs["igUpdateInputEvents"][1]["namespace"] = "ImGui" defs["igUpdateInputEvents"][1]["ov_cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["ret"] = "void" @@ -29473,7 +30196,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:2788" +defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:2937" defs["igUpdateMouseMovingWindowEndFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowEndFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["ret"] = "void" @@ -29489,7 +30212,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:2787" +defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:2936" defs["igUpdateMouseMovingWindowNewFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowNewFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["ret"] = "void" @@ -29505,7 +30228,7 @@ defs["igUpdatePlatformWindows"][1]["call_args"] = "()" defs["igUpdatePlatformWindows"][1]["cimguiname"] = "igUpdatePlatformWindows" defs["igUpdatePlatformWindows"][1]["defaults"] = {} defs["igUpdatePlatformWindows"][1]["funcname"] = "UpdatePlatformWindows" -defs["igUpdatePlatformWindows"][1]["location"] = "imgui:971" +defs["igUpdatePlatformWindows"][1]["location"] = "imgui:981" defs["igUpdatePlatformWindows"][1]["namespace"] = "ImGui" defs["igUpdatePlatformWindows"][1]["ov_cimguiname"] = "igUpdatePlatformWindows" defs["igUpdatePlatformWindows"][1]["ret"] = "void" @@ -29530,7 +30253,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:2750" +defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:2899" defs["igUpdateWindowParentAndRootLinks"][1]["namespace"] = "ImGui" defs["igUpdateWindowParentAndRootLinks"][1]["ov_cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["ret"] = "void" @@ -29569,7 +30292,7 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["flags"] = "0" defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" -defs["igVSliderFloat"][1]["location"] = "imgui:567" +defs["igVSliderFloat"][1]["location"] = "imgui:577" defs["igVSliderFloat"][1]["namespace"] = "ImGui" defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" @@ -29608,7 +30331,7 @@ defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["flags"] = "0" defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" -defs["igVSliderInt"][1]["location"] = "imgui:568" +defs["igVSliderInt"][1]["location"] = "imgui:578" defs["igVSliderInt"][1]["namespace"] = "ImGui" defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" @@ -29650,7 +30373,7 @@ defs["igVSliderScalar"][1]["defaults"] = {} defs["igVSliderScalar"][1]["defaults"]["flags"] = "0" defs["igVSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" -defs["igVSliderScalar"][1]["location"] = "imgui:569" +defs["igVSliderScalar"][1]["location"] = "imgui:579" defs["igVSliderScalar"][1]["namespace"] = "ImGui" defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -29672,7 +30395,7 @@ defs["igValue"][1]["call_args"] = "(prefix,b)" defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" -defs["igValue"][1]["location"] = "imgui:645" +defs["igValue"][1]["location"] = "imgui:655" defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValue_Bool" defs["igValue"][1]["ret"] = "void" @@ -29692,7 +30415,7 @@ defs["igValue"][2]["call_args"] = "(prefix,v)" defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" -defs["igValue"][2]["location"] = "imgui:646" +defs["igValue"][2]["location"] = "imgui:656" defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValue_Int" defs["igValue"][2]["ret"] = "void" @@ -29712,7 +30435,7 @@ defs["igValue"][3]["call_args"] = "(prefix,v)" defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" -defs["igValue"][3]["location"] = "imgui:647" +defs["igValue"][3]["location"] = "imgui:657" defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValue_Uint" defs["igValue"][3]["ret"] = "void" @@ -29736,7 +30459,7 @@ defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["defaults"] = {} defs["igValue"][4]["defaults"]["float_format"] = "NULL" defs["igValue"][4]["funcname"] = "Value" -defs["igValue"][4]["location"] = "imgui:648" +defs["igValue"][4]["location"] = "imgui:658" defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValue_Float" defs["igValue"][4]["ret"] = "void" @@ -29764,7 +30487,7 @@ defs["igWindowRectAbsToRel"][1]["call_args"] = "(window,r)" defs["igWindowRectAbsToRel"][1]["cimguiname"] = "igWindowRectAbsToRel" defs["igWindowRectAbsToRel"][1]["defaults"] = {} defs["igWindowRectAbsToRel"][1]["funcname"] = "WindowRectAbsToRel" -defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:2760" +defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:2909" defs["igWindowRectAbsToRel"][1]["namespace"] = "ImGui" defs["igWindowRectAbsToRel"][1]["nonUDT"] = 1 defs["igWindowRectAbsToRel"][1]["ov_cimguiname"] = "igWindowRectAbsToRel" @@ -29790,7 +30513,7 @@ defs["igWindowRectRelToAbs"][1]["call_args"] = "(window,r)" defs["igWindowRectRelToAbs"][1]["cimguiname"] = "igWindowRectRelToAbs" defs["igWindowRectRelToAbs"][1]["defaults"] = {} defs["igWindowRectRelToAbs"][1]["funcname"] = "WindowRectRelToAbs" -defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:2761" +defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:2910" defs["igWindowRectRelToAbs"][1]["namespace"] = "ImGui" defs["igWindowRectRelToAbs"][1]["nonUDT"] = 1 defs["igWindowRectRelToAbs"][1]["ov_cimguiname"] = "igWindowRectRelToAbs" diff --git a/generator/output/impl_definitions.json b/generator/output/impl_definitions.json index 9c04317..b64b6d1 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -17,7 +17,7 @@ "cimguiname": "ImGui_ImplGlfw_CharCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CharCallback", - "location": "imgui_impl_glfw:50", + "location": "imgui_impl_glfw:46", "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", "ret": "void", "signature": "(GLFWwindow*,unsigned int)", @@ -42,7 +42,7 @@ "cimguiname": "ImGui_ImplGlfw_CursorEnterCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CursorEnterCallback", - "location": "imgui_impl_glfw:45", + "location": "imgui_impl_glfw:41", "ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback", "ret": "void", "signature": "(GLFWwindow*,int)", @@ -71,7 +71,7 @@ "cimguiname": "ImGui_ImplGlfw_CursorPosCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CursorPosCallback", - "location": "imgui_impl_glfw:46", + "location": "imgui_impl_glfw:42", "ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", @@ -96,7 +96,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOpenGL", - "location": "imgui_impl_glfw:31", + "location": "imgui_impl_glfw:27", "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -121,7 +121,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForOther", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOther", - "location": "imgui_impl_glfw:33", + "location": "imgui_impl_glfw:29", "ov_cimguiname": "ImGui_ImplGlfw_InitForOther", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -146,7 +146,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForVulkan", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForVulkan", - "location": "imgui_impl_glfw:32", + "location": "imgui_impl_glfw:28", "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -167,7 +167,7 @@ "cimguiname": "ImGui_ImplGlfw_InstallCallbacks", "defaults": {}, "funcname": "ImGui_ImplGlfw_InstallCallbacks", - "location": "imgui_impl_glfw:40", + "location": "imgui_impl_glfw:36", "ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks", "ret": "void", "signature": "(GLFWwindow*)", @@ -204,7 +204,7 @@ "cimguiname": "ImGui_ImplGlfw_KeyCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_KeyCallback", - "location": "imgui_impl_glfw:49", + "location": "imgui_impl_glfw:45", "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int,int)", @@ -229,7 +229,7 @@ "cimguiname": "ImGui_ImplGlfw_MonitorCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_MonitorCallback", - "location": "imgui_impl_glfw:51", + "location": "imgui_impl_glfw:47", "ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback", "ret": "void", "signature": "(GLFWmonitor*,int)", @@ -262,7 +262,7 @@ "cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_MouseButtonCallback", - "location": "imgui_impl_glfw:47", + "location": "imgui_impl_glfw:43", "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int)", @@ -278,7 +278,7 @@ "cimguiname": "ImGui_ImplGlfw_NewFrame", "defaults": {}, "funcname": "ImGui_ImplGlfw_NewFrame", - "location": "imgui_impl_glfw:35", + "location": "imgui_impl_glfw:31", "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", "ret": "void", "signature": "()", @@ -299,7 +299,7 @@ "cimguiname": "ImGui_ImplGlfw_RestoreCallbacks", "defaults": {}, "funcname": "ImGui_ImplGlfw_RestoreCallbacks", - "location": "imgui_impl_glfw:41", + "location": "imgui_impl_glfw:37", "ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks", "ret": "void", "signature": "(GLFWwindow*)", @@ -328,7 +328,7 @@ "cimguiname": "ImGui_ImplGlfw_ScrollCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_ScrollCallback", - "location": "imgui_impl_glfw:48", + "location": "imgui_impl_glfw:44", "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", @@ -344,7 +344,7 @@ "cimguiname": "ImGui_ImplGlfw_Shutdown", "defaults": {}, "funcname": "ImGui_ImplGlfw_Shutdown", - "location": "imgui_impl_glfw:34", + "location": "imgui_impl_glfw:30", "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", "ret": "void", "signature": "()", @@ -369,7 +369,7 @@ "cimguiname": "ImGui_ImplGlfw_WindowFocusCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_WindowFocusCallback", - "location": "imgui_impl_glfw:44", + "location": "imgui_impl_glfw:40", "ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback", "ret": "void", "signature": "(GLFWwindow*,int)", @@ -582,11 +582,11 @@ "type": "const char*" } ], - "argsoriginal": "(const char* glsl_version=((void*)0))", + "argsoriginal": "(const char* glsl_version=nullptr)", "call_args": "(glsl_version)", "cimguiname": "ImGui_ImplOpenGL3_Init", "defaults": { - "glsl_version": "NULL" + "glsl_version": "nullptr" }, "funcname": "ImGui_ImplOpenGL3_Init", "location": "imgui_impl_opengl3:25", diff --git a/generator/output/impl_definitions.lua b/generator/output/impl_definitions.lua index 897d64f..e5c6fec 100644 --- a/generator/output/impl_definitions.lua +++ b/generator/output/impl_definitions.lua @@ -14,7 +14,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["call_args"] = "(window,c)" defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback" -defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:50" +defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:46" defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)" @@ -35,7 +35,7 @@ defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["call_args"] = "(window,entered)" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorEnterCallback" -defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:45" +defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:41" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["signature"] = "(GLFWwindow*,int)" @@ -59,7 +59,7 @@ defs["ImGui_ImplGlfw_CursorPosCallback"][1]["call_args"] = "(window,x,y)" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CursorPosCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorPosCallback" -defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:46" +defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:42" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["signature"] = "(GLFWwindow*,double,double)" @@ -80,7 +80,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL" -defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:31" +defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:27" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)" @@ -101,7 +101,7 @@ defs["ImGui_ImplGlfw_InitForOther"][1]["call_args"] = "(window,install_callbacks defs["ImGui_ImplGlfw_InitForOther"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOther" defs["ImGui_ImplGlfw_InitForOther"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOther"][1]["funcname"] = "ImGui_ImplGlfw_InitForOther" -defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:33" +defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:29" defs["ImGui_ImplGlfw_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOther" defs["ImGui_ImplGlfw_InitForOther"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOther"][1]["signature"] = "(GLFWwindow*,bool)" @@ -122,7 +122,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan" -defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:32" +defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:28" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)" @@ -140,7 +140,7 @@ defs["ImGui_ImplGlfw_InstallCallbacks"][1]["call_args"] = "(window)" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InstallCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_InstallCallbacks" -defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:40" +defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:36" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ret"] = "void" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["signature"] = "(GLFWwindow*)" @@ -170,7 +170,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["call_args"] = "(window,key,scancode,actio defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback" -defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:49" +defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:45" defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)" @@ -191,7 +191,7 @@ defs["ImGui_ImplGlfw_MonitorCallback"][1]["call_args"] = "(monitor,event)" defs["ImGui_ImplGlfw_MonitorCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MonitorCallback" defs["ImGui_ImplGlfw_MonitorCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MonitorCallback"][1]["funcname"] = "ImGui_ImplGlfw_MonitorCallback" -defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:51" +defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:47" defs["ImGui_ImplGlfw_MonitorCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MonitorCallback" defs["ImGui_ImplGlfw_MonitorCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MonitorCallback"][1]["signature"] = "(GLFWmonitor*,int)" @@ -218,7 +218,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["call_args"] = "(window,button,act defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback" -defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:47" +defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:43" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)" @@ -233,7 +233,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame" -defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:35" +defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:31" defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()" @@ -251,7 +251,7 @@ defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["call_args"] = "(window)" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["defaults"] = {} defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_RestoreCallbacks" -defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:41" +defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:37" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ret"] = "void" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["signature"] = "(GLFWwindow*)" @@ -275,7 +275,7 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["call_args"] = "(window,xoffset,yoffset defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback" -defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:48" +defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:44" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)" @@ -290,7 +290,7 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown" -defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:34" +defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:30" defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()" @@ -311,7 +311,7 @@ defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["call_args"] = "(window,focused)" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["funcname"] = "ImGui_ImplGlfw_WindowFocusCallback" -defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:44" +defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:40" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["signature"] = "(GLFWwindow*,int)" @@ -507,11 +507,11 @@ defs["ImGui_ImplOpenGL3_Init"][1]["argsT"] = {} defs["ImGui_ImplOpenGL3_Init"][1]["argsT"][1] = {} defs["ImGui_ImplOpenGL3_Init"][1]["argsT"][1]["name"] = "glsl_version" defs["ImGui_ImplOpenGL3_Init"][1]["argsT"][1]["type"] = "const char*" -defs["ImGui_ImplOpenGL3_Init"][1]["argsoriginal"] = "(const char* glsl_version=((void*)0))" +defs["ImGui_ImplOpenGL3_Init"][1]["argsoriginal"] = "(const char* glsl_version=nullptr)" defs["ImGui_ImplOpenGL3_Init"][1]["call_args"] = "(glsl_version)" defs["ImGui_ImplOpenGL3_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["defaults"] = {} -defs["ImGui_ImplOpenGL3_Init"][1]["defaults"]["glsl_version"] = "NULL" +defs["ImGui_ImplOpenGL3_Init"][1]["defaults"]["glsl_version"] = "nullptr" defs["ImGui_ImplOpenGL3_Init"][1]["funcname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3:25" defs["ImGui_ImplOpenGL3_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Init" diff --git a/generator/output/overloads.txt b/generator/output/overloads.txt index 6e0f48b..6b78943 100644 --- a/generator/output/overloads.txt +++ b/generator/output/overloads.txt @@ -155,6 +155,24 @@ igImRsqrt 2 igImSign 2 1 float igImSign_Float (float) 2 double igImSign_double (double) +igIsKeyDown 2 +1 bool igIsKeyDown_Nil (ImGuiKey) +2 bool igIsKeyDown_ID (ImGuiKey,ImGuiID) +igIsKeyPressed 2 +1 bool igIsKeyPressed_Bool (ImGuiKey,bool) +2 bool igIsKeyPressed_ID (ImGuiKey,ImGuiID,ImGuiInputFlags) +igIsKeyReleased 2 +1 bool igIsKeyReleased_Nil (ImGuiKey) +2 bool igIsKeyReleased_ID (ImGuiKey,ImGuiID) +igIsMouseClicked 2 +1 bool igIsMouseClicked_Bool (ImGuiMouseButton,bool) +2 bool igIsMouseClicked_ID (ImGuiMouseButton,ImGuiID,ImGuiInputFlags) +igIsMouseDown 2 +1 bool igIsMouseDown_Nil (ImGuiMouseButton) +2 bool igIsMouseDown_ID (ImGuiMouseButton,ImGuiID) +igIsMouseReleased 2 +1 bool igIsMouseReleased_Nil (ImGuiMouseButton) +2 bool igIsMouseReleased_ID (ImGuiMouseButton,ImGuiID) igIsPopupOpen 2 1 bool igIsPopupOpen_Str (const char*,ImGuiPopupFlags) 2 bool igIsPopupOpen_ID (ImGuiID,ImGuiPopupFlags) @@ -226,6 +244,9 @@ igSetWindowSize 3 1 void igSetWindowSize_Vec2 (const ImVec2,ImGuiCond) 2 void igSetWindowSize_Str (const char*,const ImVec2,ImGuiCond) 3 void igSetWindowSize_WindowPtr (ImGuiWindow*,const ImVec2,ImGuiCond) +igTabItemCalcSize 2 +1 ImVec2 igTabItemCalcSize_Str (const char*,bool) +2 ImVec2 igTabItemCalcSize_WindowPtr (ImGuiWindow*) igTableGcCompactTransientBuffers 2 1 void igTableGcCompactTransientBuffers_TablePtr (ImGuiTable*) 2 void igTableGcCompactTransientBuffers_TableTempDataPtr (ImGuiTableTempData*) @@ -254,4 +275,4 @@ igValue 4 2 void igValue_Int (const char*,int) 3 void igValue_Uint (const char*,unsigned int) 4 void igValue_Float (const char*,float,const char*) -179 overloaded \ No newline at end of file +193 overloaded \ No newline at end of file diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index fbcdb76..8ad8cd4 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -278,6 +278,16 @@ "name": "ImGuiButtonFlags_NoHoveredOnFocus", "value": "1 << 19" }, + { + "calc_value": 1048576, + "name": "ImGuiButtonFlags_NoSetKeyOwner", + "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiButtonFlags_NoTestKeyOwner", + "value": "1 << 21" + }, { "calc_value": 1008, "name": "ImGuiButtonFlags_PressedOnMask_", @@ -1059,23 +1069,28 @@ }, { "calc_value": 16, - "name": "ImGuiDebugLogFlags_EventIO", + "name": "ImGuiDebugLogFlags_EventClipper", "value": "1 << 4" }, { "calc_value": 32, - "name": "ImGuiDebugLogFlags_EventDocking", + "name": "ImGuiDebugLogFlags_EventIO", "value": "1 << 5" }, { "calc_value": 64, - "name": "ImGuiDebugLogFlags_EventViewport", + "name": "ImGuiDebugLogFlags_EventDocking", "value": "1 << 6" }, { - "calc_value": 127, + "calc_value": 128, + "name": "ImGuiDebugLogFlags_EventViewport", + "value": "1 << 7" + }, + { + "calc_value": 255, "name": "ImGuiDebugLogFlags_EventMask_", - "value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" + "value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" }, { "calc_value": 1024, @@ -1430,6 +1445,21 @@ "calc_value": 3, "name": "ImGuiHoveredFlags_RootAndChildWindows", "value": "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" + }, + { + "calc_value": 2048, + "name": "ImGuiHoveredFlags_DelayNormal", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiHoveredFlags_DelayShort", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiHoveredFlags_NoSharedDelay", + "value": "1 << 13" } ], "ImGuiInputEventType": [ @@ -1479,6 +1509,128 @@ "value": "8" } ], + "ImGuiInputFlags_": [ + { + "calc_value": 0, + "name": "ImGuiInputFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiInputFlags_Repeat", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiInputFlags_RepeatRateDefault", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiInputFlags_RepeatRateNavMove", + "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiInputFlags_RepeatRateNavTweak", + "value": "1 << 3" + }, + { + "calc_value": 14, + "name": "ImGuiInputFlags_RepeatRateMask_", + "value": "ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak" + }, + { + "calc_value": 16, + "name": "ImGuiInputFlags_CondHovered", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiInputFlags_CondActive", + "value": "1 << 5" + }, + { + "calc_value": 48, + "name": "ImGuiInputFlags_CondDefault_", + "value": "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" + }, + { + "calc_value": 48, + "name": "ImGuiInputFlags_CondMask_", + "value": "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" + }, + { + "calc_value": 64, + "name": "ImGuiInputFlags_LockThisFrame", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiInputFlags_LockUntilRelease", + "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiInputFlags_RouteFocused", + "value": "1 << 8" + }, + { + "calc_value": 512, + "name": "ImGuiInputFlags_RouteGlobalLow", + "value": "1 << 9" + }, + { + "calc_value": 1024, + "name": "ImGuiInputFlags_RouteGlobal", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiInputFlags_RouteGlobalHigh", + "value": "1 << 11" + }, + { + "calc_value": 3840, + "name": "ImGuiInputFlags_RouteMask_", + "value": "ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh" + }, + { + "calc_value": 4096, + "name": "ImGuiInputFlags_RouteAlways", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiInputFlags_RouteUnlessBgFocused", + "value": "1 << 13" + }, + { + "calc_value": 12288, + "name": "ImGuiInputFlags_RouteExtraMask_", + "value": "ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused" + }, + { + "calc_value": 15, + "name": "ImGuiInputFlags_SupportedByIsKeyPressed", + "value": "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_" + }, + { + "calc_value": 16143, + "name": "ImGuiInputFlags_SupportedByShortcut", + "value": "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_" + }, + { + "calc_value": 192, + "name": "ImGuiInputFlags_SupportedBySetKeyOwner", + "value": "ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease" + }, + { + "calc_value": 240, + "name": "ImGuiInputFlags_SupportedBySetItemKeyOwner", + "value": "ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_" + } + ], "ImGuiInputSource": [ { "calc_value": 0, @@ -1638,6 +1790,11 @@ "calc_value": 524288, "name": "ImGuiInputTextFlags_CallbackEdit", "value": "1 << 19" + }, + { + "calc_value": 1048576, + "name": "ImGuiInputTextFlags_EscapeClearsAll", + "value": "1 << 20" } ], "ImGuiItemFlags_": [ @@ -1688,8 +1845,13 @@ }, { "calc_value": 256, - "name": "ImGuiItemFlags_Inputable", + "name": "ImGuiItemFlags_NoWindowHoverableCheck", "value": "1 << 8" + }, + { + "calc_value": 1024, + "name": "ImGuiItemFlags_Inputable", + "value": "1 << 10" } ], "ImGuiItemStatusFlags_": [ @@ -1742,31 +1904,14 @@ "calc_value": 256, "name": "ImGuiItemStatusFlags_FocusedByTabbing", "value": "1 << 8" - } - ], - "ImGuiKeyPrivate_": [ - { - "calc_value": 0, - "name": "ImGuiKey_LegacyNativeKey_BEGIN", - "value": "0" }, { "calc_value": 512, - "name": "ImGuiKey_LegacyNativeKey_END", - "value": "512" - }, - { - "calc_value": 617, - "name": "ImGuiKey_Gamepad_BEGIN", - "value": "ImGuiKey_GamepadStart" - }, - { - "calc_value": 641, - "name": "ImGuiKey_Gamepad_END", - "value": "ImGuiKey_GamepadRStickRight + 1" + "name": "ImGuiItemStatusFlags_Visible", + "value": "1 << 9" } ], - "ImGuiKey_": [ + "ImGuiKey": [ { "calc_value": 0, "name": "ImGuiKey_None", @@ -2309,42 +2454,42 @@ }, { "calc_value": 619, - "name": "ImGuiKey_GamepadFaceUp", + "name": "ImGuiKey_GamepadFaceLeft", "value": "619" }, { "calc_value": 620, - "name": "ImGuiKey_GamepadFaceDown", + "name": "ImGuiKey_GamepadFaceRight", "value": "620" }, { "calc_value": 621, - "name": "ImGuiKey_GamepadFaceLeft", + "name": "ImGuiKey_GamepadFaceUp", "value": "621" }, { "calc_value": 622, - "name": "ImGuiKey_GamepadFaceRight", + "name": "ImGuiKey_GamepadFaceDown", "value": "622" }, { "calc_value": 623, - "name": "ImGuiKey_GamepadDpadUp", + "name": "ImGuiKey_GamepadDpadLeft", "value": "623" }, { "calc_value": 624, - "name": "ImGuiKey_GamepadDpadDown", + "name": "ImGuiKey_GamepadDpadRight", "value": "624" }, { "calc_value": 625, - "name": "ImGuiKey_GamepadDpadLeft", + "name": "ImGuiKey_GamepadDpadUp", "value": "625" }, { "calc_value": 626, - "name": "ImGuiKey_GamepadDpadRight", + "name": "ImGuiKey_GamepadDpadDown", "value": "626" }, { @@ -2379,86 +2524,156 @@ }, { "calc_value": 633, - "name": "ImGuiKey_GamepadLStickUp", + "name": "ImGuiKey_GamepadLStickLeft", "value": "633" }, { "calc_value": 634, - "name": "ImGuiKey_GamepadLStickDown", + "name": "ImGuiKey_GamepadLStickRight", "value": "634" }, { "calc_value": 635, - "name": "ImGuiKey_GamepadLStickLeft", + "name": "ImGuiKey_GamepadLStickUp", "value": "635" }, { "calc_value": 636, - "name": "ImGuiKey_GamepadLStickRight", + "name": "ImGuiKey_GamepadLStickDown", "value": "636" }, { "calc_value": 637, - "name": "ImGuiKey_GamepadRStickUp", + "name": "ImGuiKey_GamepadRStickLeft", "value": "637" }, { "calc_value": 638, - "name": "ImGuiKey_GamepadRStickDown", + "name": "ImGuiKey_GamepadRStickRight", "value": "638" }, { "calc_value": 639, - "name": "ImGuiKey_GamepadRStickLeft", + "name": "ImGuiKey_GamepadRStickUp", "value": "639" }, { "calc_value": 640, - "name": "ImGuiKey_GamepadRStickRight", + "name": "ImGuiKey_GamepadRStickDown", "value": "640" }, { "calc_value": 641, - "name": "ImGuiKey_ModCtrl", + "name": "ImGuiKey_MouseLeft", "value": "641" }, { "calc_value": 642, - "name": "ImGuiKey_ModShift", + "name": "ImGuiKey_MouseRight", "value": "642" }, { "calc_value": 643, - "name": "ImGuiKey_ModAlt", + "name": "ImGuiKey_MouseMiddle", "value": "643" }, { "calc_value": 644, - "name": "ImGuiKey_ModSuper", + "name": "ImGuiKey_MouseX1", "value": "644" }, { "calc_value": 645, - "name": "ImGuiKey_COUNT", + "name": "ImGuiKey_MouseX2", "value": "645" }, + { + "calc_value": 646, + "name": "ImGuiKey_MouseWheelX", + "value": "646" + }, + { + "calc_value": 647, + "name": "ImGuiKey_MouseWheelY", + "value": "647" + }, + { + "calc_value": 648, + "name": "ImGuiKey_ReservedForModCtrl", + "value": "648" + }, + { + "calc_value": 649, + "name": "ImGuiKey_ReservedForModShift", + "value": "649" + }, + { + "calc_value": 650, + "name": "ImGuiKey_ReservedForModAlt", + "value": "650" + }, + { + "calc_value": 651, + "name": "ImGuiKey_ReservedForModSuper", + "value": "651" + }, + { + "calc_value": 652, + "name": "ImGuiKey_COUNT", + "value": "652" + }, + { + "calc_value": 0, + "name": "ImGuiMod_None", + "value": "0" + }, + { + "calc_value": 4096, + "name": "ImGuiMod_Ctrl", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiMod_Shift", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiMod_Alt", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiMod_Super", + "value": "1 << 15" + }, + { + "calc_value": 61440, + "name": "ImGuiMod_Mask_", + "value": "0xF000" + }, + { + "calc_value": 4096, + "name": "ImGuiMod_Shortcut", + "value": "ImGuiMod_Ctrl" + }, { "calc_value": 512, "name": "ImGuiKey_NamedKey_BEGIN", "value": "512" }, { - "calc_value": 645, + "calc_value": 652, "name": "ImGuiKey_NamedKey_END", "value": "ImGuiKey_COUNT" }, { - "calc_value": 133, + "calc_value": 140, "name": "ImGuiKey_NamedKey_COUNT", "value": "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" }, { - "calc_value": 645, + "calc_value": 652, "name": "ImGuiKey_KeysData_SIZE", "value": "ImGuiKey_COUNT" }, @@ -2507,33 +2722,6 @@ "value": "4" } ], - "ImGuiModFlags_": [ - { - "calc_value": 0, - "name": "ImGuiModFlags_None", - "value": "0" - }, - { - "calc_value": 1, - "name": "ImGuiModFlags_Ctrl", - "value": "1 << 0" - }, - { - "calc_value": 2, - "name": "ImGuiModFlags_Shift", - "value": "1 << 1" - }, - { - "calc_value": 4, - "name": "ImGuiModFlags_Alt", - "value": "1 << 2" - }, - { - "calc_value": 8, - "name": "ImGuiModFlags_Super", - "value": "1 << 3" - } - ], "ImGuiMouseButton_": [ { "calc_value": 0, @@ -2613,33 +2801,6 @@ "value": "9" } ], - "ImGuiNavDirSourceFlags_": [ - { - "calc_value": 0, - "name": "ImGuiNavDirSourceFlags_None", - "value": "0" - }, - { - "calc_value": 1, - "name": "ImGuiNavDirSourceFlags_RawKeyboard", - "value": "1 << 0" - }, - { - "calc_value": 2, - "name": "ImGuiNavDirSourceFlags_Keyboard", - "value": "1 << 1" - }, - { - "calc_value": 4, - "name": "ImGuiNavDirSourceFlags_PadDPad", - "value": "1 << 2" - }, - { - "calc_value": 8, - "name": "ImGuiNavDirSourceFlags_PadLStick", - "value": "1 << 3" - } - ], "ImGuiNavHighlightFlags_": [ { "calc_value": 0, @@ -2667,7 +2828,7 @@ "value": "1 << 3" } ], - "ImGuiNavInput_": [ + "ImGuiNavInput": [ { "calc_value": 0, "name": "ImGuiNavInput_Activate", @@ -2750,28 +2911,8 @@ }, { "calc_value": 16, - "name": "ImGuiNavInput_KeyLeft_", - "value": "16" - }, - { - "calc_value": 17, - "name": "ImGuiNavInput_KeyRight_", - "value": "17" - }, - { - "calc_value": 18, - "name": "ImGuiNavInput_KeyUp_", - "value": "18" - }, - { - "calc_value": 19, - "name": "ImGuiNavInput_KeyDown_", - "value": "19" - }, - { - "calc_value": 20, "name": "ImGuiNavInput_COUNT", - "value": "20" + "value": "16" } ], "ImGuiNavLayer": [ @@ -2863,38 +3004,6 @@ "value": "1 << 12" } ], - "ImGuiNavReadMode": [ - { - "calc_value": 0, - "name": "ImGuiNavReadMode_Down", - "value": "0" - }, - { - "calc_value": 1, - "name": "ImGuiNavReadMode_Pressed", - "value": "1" - }, - { - "calc_value": 2, - "name": "ImGuiNavReadMode_Released", - "value": "2" - }, - { - "calc_value": 3, - "name": "ImGuiNavReadMode_Repeat", - "value": "3" - }, - { - "calc_value": 4, - "name": "ImGuiNavReadMode_RepeatSlow", - "value": "4" - }, - { - "calc_value": 5, - "name": "ImGuiNavReadMode_RepeatFast", - "value": "5" - } - ], "ImGuiNextItemDataFlags_": [ { "calc_value": 0, @@ -3184,6 +3293,11 @@ "calc_value": 134217728, "name": "ImGuiSelectableFlags_NoPadWithHalfSpacing", "value": "1 << 27" + }, + { + "calc_value": 268435456, + "name": "ImGuiSelectableFlags_NoSetKeyOwner", + "value": "1 << 28" } ], "ImGuiSelectableFlags_": [ @@ -4319,176 +4433,179 @@ } ] }, - "enumtypes": [], + "enumtypes": { + "ImGuiKey": "int" + }, "locations": { - "ImBitVector": "imgui_internal:580", - "ImColor": "imgui:2465", - "ImDrawChannel": "imgui:2555", - "ImDrawCmd": "imgui:2514", - "ImDrawCmdHeader": "imgui:2547", - "ImDrawData": "imgui:2747", - "ImDrawDataBuilder": "imgui_internal:752", - "ImDrawFlags_": "imgui:2581", - "ImDrawList": "imgui:2619", - "ImDrawListFlags_": "imgui:2601", - "ImDrawListSharedData": "imgui_internal:732", - "ImDrawListSplitter": "imgui:2564", - "ImDrawVert": "imgui:2532", - "ImFont": "imgui:2965", - "ImFontAtlas": "imgui:2864", - "ImFontAtlasCustomRect": "imgui:2826", - "ImFontAtlasFlags_": "imgui:2839", - "ImFontBuilderIO": "imgui_internal:3218", - "ImFontConfig": "imgui:2770", - "ImFontGlyph": "imgui:2799", - "ImFontGlyphRangesBuilder": "imgui:2811", - "ImGuiActivateFlags_": "imgui_internal:1294", - "ImGuiAxis": "imgui_internal:908", - "ImGuiBackendFlags_": "imgui:1589", - "ImGuiButtonFlagsPrivate_": "imgui_internal:815", - "ImGuiButtonFlags_": "imgui:1703", - "ImGuiCol_": "imgui:1604", - "ImGuiColorEditFlags_": "imgui:1716", - "ImGuiColorMod": "imgui_internal:951", - "ImGuiComboFlagsPrivate_": "imgui_internal:838", - "ImGuiComboFlags_": "imgui:1114", - "ImGuiComboPreviewData": "imgui_internal:968", - "ImGuiCond_": "imgui:1806", - "ImGuiConfigFlags_": "imgui:1564", - "ImGuiContext": "imgui_internal:1752", - "ImGuiContextHook": "imgui_internal:1737", - "ImGuiContextHookType": "imgui_internal:1735", - "ImGuiDataAuthority_": "imgui_internal:1471", - "ImGuiDataTypeInfo": "imgui_internal:934", - "ImGuiDataTypePrivate_": "imgui_internal:943", - "ImGuiDataTypeTempStorage": "imgui_internal:928", - "ImGuiDataType_": "imgui:1372", - "ImGuiDebugLogFlags_": "imgui_internal:1668", - "ImGuiDir_": "imgui:1388", - "ImGuiDockContext": "imgui_internal:1569", - "ImGuiDockNode": "imgui_internal:1487", - "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1446", - "ImGuiDockNodeFlags_": "imgui:1337", - "ImGuiDockNodeState": "imgui_internal:1478", - "ImGuiDragDropFlags_": "imgui:1350", - "ImGuiFocusedFlags_": "imgui:1302", - "ImGuiGroupData": "imgui_internal:981", - "ImGuiHoveredFlags_": "imgui:1316", - "ImGuiIO": "imgui:1983", - "ImGuiInputEvent": "imgui_internal:1231", - "ImGuiInputEventAppFocused": "imgui_internal:1229", - "ImGuiInputEventKey": "imgui_internal:1227", - "ImGuiInputEventMouseButton": "imgui_internal:1225", - "ImGuiInputEventMousePos": "imgui_internal:1223", - "ImGuiInputEventMouseViewport": "imgui_internal:1226", - "ImGuiInputEventMouseWheel": "imgui_internal:1224", - "ImGuiInputEventText": "imgui_internal:1228", - "ImGuiInputEventType": "imgui_internal:1197", - "ImGuiInputSource": "imgui_internal:1210", - "ImGuiInputTextCallbackData": "imgui:2169", - "ImGuiInputTextFlagsPrivate_": "imgui_internal:806", - "ImGuiInputTextFlags_": "imgui:1027", - "ImGuiInputTextState": "imgui_internal:1016", - "ImGuiItemFlags_": "imgui_internal:768", - "ImGuiItemStatusFlags_": "imgui_internal:783", - "ImGuiKeyData": "imgui:1975", - "ImGuiKeyPrivate_": "imgui_internal:1189", - "ImGuiKey_": "imgui:1408", - "ImGuiLastItemData": "imgui_internal:1130", - "ImGuiLayoutType_": "imgui_internal:892", - "ImGuiListClipper": "imgui:2414", - "ImGuiListClipperData": "imgui_internal:1278", - "ImGuiListClipperRange": "imgui_internal:1265", - "ImGuiLogType": "imgui_internal:898", - "ImGuiMenuColumns": "imgui_internal:997", - "ImGuiMetricsConfig": "imgui_internal:1683", - "ImGuiModFlags_": "imgui:1520", - "ImGuiMouseButton_": "imgui:1778", - "ImGuiMouseCursor_": "imgui:1788", - "ImGuiNavDirSourceFlags_": "imgui_internal:1326", - "ImGuiNavHighlightFlags_": "imgui_internal:1317", - "ImGuiNavInput_": "imgui:1534", - "ImGuiNavItemData": "imgui_internal:1360", - "ImGuiNavLayer": "imgui_internal:1353", - "ImGuiNavMoveFlags_": "imgui_internal:1335", - "ImGuiNavReadMode": "imgui_internal:1251", - "ImGuiNextItemData": "imgui_internal:1117", - "ImGuiNextItemDataFlags_": "imgui_internal:1110", - "ImGuiNextWindowData": "imgui_internal:1083", - "ImGuiNextWindowDataFlags_": "imgui_internal:1066", - "ImGuiOldColumnData": "imgui_internal:1400", - "ImGuiOldColumnFlags_": "imgui_internal:1380", - "ImGuiOldColumns": "imgui_internal:1410", - "ImGuiOnceUponAFrame": "imgui:2289", - "ImGuiPayload": "imgui:2230", - "ImGuiPlatformIO": "imgui:3129", - "ImGuiPlatformImeData": "imgui:3201", - "ImGuiPlatformMonitor": "imgui:3192", - "ImGuiPlotType": "imgui_internal:915", - "ImGuiPopupData": "imgui_internal:1052", - "ImGuiPopupFlags_": "imgui:1087", - "ImGuiPopupPositionPolicy": "imgui_internal:921", - "ImGuiPtrOrIndex": "imgui_internal:1174", - "ImGuiScrollFlags_": "imgui_internal:1303", - "ImGuiSelectableFlagsPrivate_": "imgui_internal:851", - "ImGuiSelectableFlags_": "imgui:1103", - "ImGuiSeparatorFlags_": "imgui_internal:870", - "ImGuiSettingsHandler": "imgui_internal:1649", - "ImGuiShrinkWidthItem": "imgui_internal:1167", - "ImGuiSizeCallbackData": "imgui:2200", - "ImGuiSliderFlagsPrivate_": "imgui_internal:844", - "ImGuiSliderFlags_": "imgui:1761", - "ImGuiSortDirection_": "imgui:1399", - "ImGuiStackLevelInfo": "imgui_internal:1706", - "ImGuiStackSizes": "imgui_internal:1142", - "ImGuiStackTool": "imgui_internal:1718", - "ImGuiStorage": "imgui:2351", - "ImGuiStoragePair": "imgui:2354", - "ImGuiStyle": "imgui:1918", - "ImGuiStyleMod": "imgui_internal:958", - "ImGuiStyleVar_": "imgui:1671", - "ImGuiTabBar": "imgui_internal:2426", - "ImGuiTabBarFlagsPrivate_": "imgui_internal:2388", - "ImGuiTabBarFlags_": "imgui:1128", - "ImGuiTabItem": "imgui_internal:2406", - "ImGuiTabItemFlagsPrivate_": "imgui_internal:2396", - "ImGuiTabItemFlags_": "imgui:1144", - "ImGuiTable": "imgui_internal:2562", - "ImGuiTableBgTarget_": "imgui:1293", - "ImGuiTableCellData": "imgui_internal:2546", - "ImGuiTableColumn": "imgui_internal:2487", - "ImGuiTableColumnFlags_": "imgui:1236", - "ImGuiTableColumnSettings": "imgui_internal:2697", - "ImGuiTableColumnSortSpecs": "imgui:2252", - "ImGuiTableFlags_": "imgui:1179", - "ImGuiTableInstanceData": "imgui_internal:2553", - "ImGuiTableRowFlags_": "imgui:1278", - "ImGuiTableSettings": "imgui_internal:2721", - "ImGuiTableSortSpecs": "imgui:2266", - "ImGuiTableTempData": "imgui_internal:2676", - "ImGuiTextBuffer": "imgui:2324", - "ImGuiTextFilter": "imgui:2297", - "ImGuiTextFlags_": "imgui_internal:878", - "ImGuiTextRange": "imgui:2307", - "ImGuiTooltipFlags_": "imgui_internal:884", - "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:865", - "ImGuiTreeNodeFlags_": "imgui:1058", - "ImGuiViewport": "imgui:3046", - "ImGuiViewportFlags_": "imgui:3021", - "ImGuiViewportP": "imgui_internal:1586", - "ImGuiWindow": "imgui_internal:2246", - "ImGuiWindowClass": "imgui:2215", - "ImGuiWindowDockStyle": "imgui_internal:1564", - "ImGuiWindowDockStyleCol": "imgui_internal:1553", - "ImGuiWindowFlags_": "imgui:984", - "ImGuiWindowSettings": "imgui_internal:1632", - "ImGuiWindowStackData": "imgui_internal:1160", - "ImGuiWindowTempData": "imgui_internal:2198", - "ImRect": "imgui_internal:508", - "ImVec1": "imgui_internal:490", - "ImVec2": "imgui:255", - "ImVec2ih": "imgui_internal:498", - "ImVec4": "imgui:268", + "ImBitVector": "imgui_internal:587", + "ImColor": "imgui:2458", + "ImDrawChannel": "imgui:2548", + "ImDrawCmd": "imgui:2507", + "ImDrawCmdHeader": "imgui:2540", + "ImDrawData": "imgui:2740", + "ImDrawDataBuilder": "imgui_internal:776", + "ImDrawFlags_": "imgui:2574", + "ImDrawList": "imgui:2612", + "ImDrawListFlags_": "imgui:2594", + "ImDrawListSharedData": "imgui_internal:753", + "ImDrawListSplitter": "imgui:2557", + "ImDrawVert": "imgui:2525", + "ImFont": "imgui:2959", + "ImFontAtlas": "imgui:2857", + "ImFontAtlasCustomRect": "imgui:2819", + "ImFontAtlasFlags_": "imgui:2832", + "ImFontBuilderIO": "imgui_internal:3433", + "ImFontConfig": "imgui:2763", + "ImFontGlyph": "imgui:2792", + "ImFontGlyphRangesBuilder": "imgui:2804", + "ImGuiActivateFlags_": "imgui_internal:1420", + "ImGuiAxis": "imgui_internal:943", + "ImGuiBackendFlags_": "imgui:1579", + "ImGuiButtonFlagsPrivate_": "imgui_internal:847", + "ImGuiButtonFlags_": "imgui:1693", + "ImGuiCol_": "imgui:1594", + "ImGuiColorEditFlags_": "imgui:1706", + "ImGuiColorMod": "imgui_internal:986", + "ImGuiComboFlagsPrivate_": "imgui_internal:872", + "ImGuiComboFlags_": "imgui:1124", + "ImGuiComboPreviewData": "imgui_internal:1003", + "ImGuiCond_": "imgui:1797", + "ImGuiConfigFlags_": "imgui:1554", + "ImGuiContext": "imgui_internal:1873", + "ImGuiContextHook": "imgui_internal:1858", + "ImGuiContextHookType": "imgui_internal:1856", + "ImGuiDataAuthority_": "imgui_internal:1591", + "ImGuiDataTypeInfo": "imgui_internal:969", + "ImGuiDataTypePrivate_": "imgui_internal:978", + "ImGuiDataTypeTempStorage": "imgui_internal:963", + "ImGuiDataType_": "imgui:1376", + "ImGuiDebugLogFlags_": "imgui_internal:1788", + "ImGuiDir_": "imgui:1392", + "ImGuiDockContext": "imgui_internal:1689", + "ImGuiDockNode": "imgui_internal:1607", + "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1566", + "ImGuiDockNodeFlags_": "imgui:1341", + "ImGuiDockNodeState": "imgui_internal:1598", + "ImGuiDragDropFlags_": "imgui:1354", + "ImGuiFocusedFlags_": "imgui:1301", + "ImGuiGroupData": "imgui_internal:1016", + "ImGuiHoveredFlags_": "imgui:1315", + "ImGuiIO": "imgui:1974", + "ImGuiInputEvent": "imgui_internal:1278", + "ImGuiInputEventAppFocused": "imgui_internal:1276", + "ImGuiInputEventKey": "imgui_internal:1274", + "ImGuiInputEventMouseButton": "imgui_internal:1272", + "ImGuiInputEventMousePos": "imgui_internal:1270", + "ImGuiInputEventMouseViewport": "imgui_internal:1273", + "ImGuiInputEventMouseWheel": "imgui_internal:1271", + "ImGuiInputEventText": "imgui_internal:1275", + "ImGuiInputEventType": "imgui_internal:1244", + "ImGuiInputFlags_": "imgui_internal:1341", + "ImGuiInputSource": "imgui_internal:1257", + "ImGuiInputTextCallbackData": "imgui:2162", + "ImGuiInputTextFlagsPrivate_": "imgui_internal:838", + "ImGuiInputTextFlags_": "imgui:1036", + "ImGuiInputTextState": "imgui_internal:1051", + "ImGuiItemFlags_": "imgui_internal:795", + "ImGuiItemStatusFlags_": "imgui_internal:815", + "ImGuiKey": "imgui:1413", + "ImGuiKeyData": "imgui:1966", + "ImGuiKeyOwnerData": "imgui_internal:1329", + "ImGuiKeyRoutingData": "imgui_internal:1304", + "ImGuiKeyRoutingTable": "imgui_internal:1317", + "ImGuiLastItemData": "imgui_internal:1165", + "ImGuiLayoutType_": "imgui_internal:927", + "ImGuiListClipper": "imgui:2407", + "ImGuiListClipperData": "imgui_internal:1404", + "ImGuiListClipperRange": "imgui_internal:1391", + "ImGuiLogType": "imgui_internal:933", + "ImGuiMenuColumns": "imgui_internal:1032", + "ImGuiMetricsConfig": "imgui_internal:1804", + "ImGuiMouseButton_": "imgui:1769", + "ImGuiMouseCursor_": "imgui:1779", + "ImGuiNavHighlightFlags_": "imgui_internal:1443", + "ImGuiNavInput": "imgui:1545", + "ImGuiNavItemData": "imgui_internal:1477", + "ImGuiNavLayer": "imgui_internal:1470", + "ImGuiNavMoveFlags_": "imgui_internal:1452", + "ImGuiNextItemData": "imgui_internal:1152", + "ImGuiNextItemDataFlags_": "imgui_internal:1145", + "ImGuiNextWindowData": "imgui_internal:1118", + "ImGuiNextWindowDataFlags_": "imgui_internal:1101", + "ImGuiOldColumnData": "imgui_internal:1517", + "ImGuiOldColumnFlags_": "imgui_internal:1497", + "ImGuiOldColumns": "imgui_internal:1527", + "ImGuiOnceUponAFrame": "imgui:2282", + "ImGuiPayload": "imgui:2223", + "ImGuiPlatformIO": "imgui:3123", + "ImGuiPlatformImeData": "imgui:3195", + "ImGuiPlatformMonitor": "imgui:3186", + "ImGuiPlotType": "imgui_internal:950", + "ImGuiPopupData": "imgui_internal:1087", + "ImGuiPopupFlags_": "imgui:1097", + "ImGuiPopupPositionPolicy": "imgui_internal:956", + "ImGuiPtrOrIndex": "imgui_internal:1209", + "ImGuiScrollFlags_": "imgui_internal:1429", + "ImGuiSelectableFlagsPrivate_": "imgui_internal:885", + "ImGuiSelectableFlags_": "imgui:1113", + "ImGuiSeparatorFlags_": "imgui_internal:905", + "ImGuiSettingsHandler": "imgui_internal:1769", + "ImGuiShrinkWidthItem": "imgui_internal:1202", + "ImGuiSizeCallbackData": "imgui:2193", + "ImGuiSliderFlagsPrivate_": "imgui_internal:878", + "ImGuiSliderFlags_": "imgui:1752", + "ImGuiSortDirection_": "imgui:1403", + "ImGuiStackLevelInfo": "imgui_internal:1827", + "ImGuiStackSizes": "imgui_internal:1177", + "ImGuiStackTool": "imgui_internal:1839", + "ImGuiStorage": "imgui:2344", + "ImGuiStoragePair": "imgui:2347", + "ImGuiStyle": "imgui:1909", + "ImGuiStyleMod": "imgui_internal:993", + "ImGuiStyleVar_": "imgui:1661", + "ImGuiTabBar": "imgui_internal:2575", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:2537", + "ImGuiTabBarFlags_": "imgui:1138", + "ImGuiTabItem": "imgui_internal:2555", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:2545", + "ImGuiTabItemFlags_": "imgui:1154", + "ImGuiTable": "imgui_internal:2711", + "ImGuiTableBgTarget_": "imgui:1292", + "ImGuiTableCellData": "imgui_internal:2695", + "ImGuiTableColumn": "imgui_internal:2636", + "ImGuiTableColumnFlags_": "imgui:1240", + "ImGuiTableColumnSettings": "imgui_internal:2846", + "ImGuiTableColumnSortSpecs": "imgui:2245", + "ImGuiTableFlags_": "imgui:1189", + "ImGuiTableInstanceData": "imgui_internal:2702", + "ImGuiTableRowFlags_": "imgui:1277", + "ImGuiTableSettings": "imgui_internal:2870", + "ImGuiTableSortSpecs": "imgui:2259", + "ImGuiTableTempData": "imgui_internal:2825", + "ImGuiTextBuffer": "imgui:2317", + "ImGuiTextFilter": "imgui:2290", + "ImGuiTextFlags_": "imgui_internal:913", + "ImGuiTextIndex": "imgui_internal:710", + "ImGuiTextRange": "imgui:2300", + "ImGuiTooltipFlags_": "imgui_internal:919", + "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:900", + "ImGuiTreeNodeFlags_": "imgui:1068", + "ImGuiViewport": "imgui:3040", + "ImGuiViewportFlags_": "imgui:3015", + "ImGuiViewportP": "imgui_internal:1706", + "ImGuiWindow": "imgui_internal:2393", + "ImGuiWindowClass": "imgui:2208", + "ImGuiWindowDockStyle": "imgui_internal:1684", + "ImGuiWindowDockStyleCol": "imgui_internal:1673", + "ImGuiWindowFlags_": "imgui:995", + "ImGuiWindowSettings": "imgui_internal:1752", + "ImGuiWindowStackData": "imgui_internal:1195", + "ImGuiWindowTempData": "imgui_internal:2345", + "ImRect": "imgui_internal:515", + "ImVec1": "imgui_internal:497", + "ImVec2": "imgui:259", + "ImVec2ih": "imgui_internal:505", + "ImVec4": "imgui:272", "STB_TexteditState": "imstb_textedit:319", "StbTexteditRow": "imstb_textedit:366", "StbUndoRecord": "imstb_textedit:301", @@ -4636,7 +4753,7 @@ }, { "name": "_Data", - "type": "const ImDrawListSharedData*" + "type": "ImDrawListSharedData*" }, { "name": "_OwnerName", @@ -4707,6 +4824,11 @@ "name": "InitialFlags", "type": "ImDrawListFlags" }, + { + "name": "TempBuffer", + "template_type": "ImVec2", + "type": "ImVector_ImVec2" + }, { "name": "ArcFastVtx[48]", "size": 48, @@ -5281,10 +5403,6 @@ "name": "HoveredWindowUnderMovingWindow", "type": "ImGuiWindow*" }, - { - "name": "HoveredDockNode", - "type": "ImGuiDockNode*" - }, { "name": "MovingWindow", "type": "ImGuiWindow*" @@ -5298,7 +5416,7 @@ "type": "ImVec2" }, { - "name": "WheelingWindowTimer", + "name": "WheelingWindowReleaseTimer", "type": "float" }, { @@ -5317,14 +5435,6 @@ "name": "HoveredIdAllowOverlap", "type": "bool" }, - { - "name": "HoveredIdUsingMouseWheel", - "type": "bool" - }, - { - "name": "HoveredIdPreviousFrameUsingMouseWheel", - "type": "bool" - }, { "name": "HoveredIdDisabled", "type": "bool" @@ -5414,25 +5524,38 @@ "type": "float" }, { - "name": "ActiveIdUsingMouseWheel", - "type": "bool" + "name": "KeysOwnerData[ImGuiKey_NamedKey_COUNT]", + "size": 140, + "type": "ImGuiKeyOwnerData" + }, + { + "name": "KeysRoutingTable", + "type": "ImGuiKeyRoutingTable" }, { "name": "ActiveIdUsingNavDirMask", "type": "ImU32" }, + { + "name": "ActiveIdUsingAllKeyboardKeys", + "type": "bool" + }, { "name": "ActiveIdUsingNavInputMask", "type": "ImU32" }, { - "name": "ActiveIdUsingKeyInputMask", - "type": "ImBitArrayForNamedKeys" + "name": "CurrentFocusScopeId", + "type": "ImGuiID" }, { "name": "CurrentItemFlags", "type": "ImGuiItemFlags" }, + { + "name": "DebugLocateId", + "type": "ImGuiID" + }, { "name": "NextItemData", "type": "ImGuiNextItemData" @@ -5564,7 +5687,7 @@ }, { "name": "NavJustMovedToKeyMods", - "type": "ImGuiModFlags" + "type": "ImGuiKeyChord" }, { "name": "NavNextActivateId", @@ -5640,7 +5763,7 @@ }, { "name": "NavMoveKeyMods", - "type": "ImGuiModFlags" + "type": "ImGuiKeyChord" }, { "name": "NavMoveDir", @@ -5690,6 +5813,14 @@ "name": "NavTabbingResultFirst", "type": "ImGuiNavItemData" }, + { + "name": "ConfigNavWindowingKeyNext", + "type": "ImGuiKeyChord" + }, + { + "name": "ConfigNavWindowingKeyPrev", + "type": "ImGuiKeyChord" + }, { "name": "NavWindowingTarget", "type": "ImGuiWindow*" @@ -5714,6 +5845,14 @@ "name": "NavWindowingToggleLayer", "type": "bool" }, + { + "name": "NavWindowingAccumDeltaPos", + "type": "ImVec2" + }, + { + "name": "NavWindowingAccumDeltaSize", + "type": "ImVec2" + }, { "name": "DimBgRatio", "type": "float" @@ -5848,6 +5987,22 @@ "template_type": "ImGuiShrinkWidthItem", "type": "ImVector_ImGuiShrinkWidthItem" }, + { + "name": "HoverDelayId", + "type": "ImGuiID" + }, + { + "name": "HoverDelayIdPreviousFrame", + "type": "ImGuiID" + }, + { + "name": "HoverDelayTimer", + "type": "float" + }, + { + "name": "HoverDelayClearTimer", + "type": "float" + }, { "name": "MouseLastValidPos", "type": "ImVec2" @@ -5928,10 +6083,6 @@ "name": "TooltipOverrideCount", "type": "short" }, - { - "name": "TooltipSlowDelay", - "type": "float" - }, { "name": "ClipboardHandlerData", "template_type": "char", @@ -6050,10 +6201,22 @@ "name": "DebugLogBuf", "type": "ImGuiTextBuffer" }, + { + "name": "DebugLogIndex", + "type": "ImGuiTextIndex" + }, + { + "name": "DebugLocateFrames", + "type": "ImU8" + }, { "name": "DebugItemPickerActive", "type": "bool" }, + { + "name": "DebugItemPickerMouseButton", + "type": "ImU8" + }, { "name": "DebugItemPickerBreakId", "type": "ImGuiID" @@ -6067,8 +6230,12 @@ "type": "ImGuiStackTool" }, { - "name": "FramerateSecPerFrame[120]", - "size": 120, + "name": "DebugHoveredDockNode", + "type": "ImGuiDockNode*" + }, + { + "name": "FramerateSecPerFrame[60]", + "size": 60, "type": "float" }, { @@ -6445,6 +6612,14 @@ "name": "KeyRepeatRate", "type": "float" }, + { + "name": "HoverDelayNormal", + "type": "float" + }, + { + "name": "HoverDelayShort", + "type": "float" + }, { "name": "UserData", "type": "void*" @@ -6517,6 +6692,10 @@ "name": "ConfigInputTextCursorBlink", "type": "bool" }, + { + "name": "ConfigInputTextEnterKeepActive", + "type": "bool" + }, { "name": "ConfigDragClickToInputText", "type": "bool" @@ -6631,14 +6810,19 @@ }, { "name": "KeyMap[ImGuiKey_COUNT]", - "size": 645, + "size": 652, "type": "int" }, { "name": "KeysDown[ImGuiKey_COUNT]", - "size": 645, + "size": 652, "type": "bool" }, + { + "name": "NavInputs[ImGuiNavInput_COUNT]", + "size": 16, + "type": "float" + }, { "name": "MousePos", "type": "ImVec2" @@ -6676,18 +6860,13 @@ "name": "KeySuper", "type": "bool" }, - { - "name": "NavInputs[ImGuiNavInput_COUNT]", - "size": 20, - "type": "float" - }, { "name": "KeyMods", - "type": "ImGuiModFlags" + "type": "ImGuiKeyChord" }, { "name": "KeysData[ImGuiKey_KeysData_SIZE]", - "size": 645, + "size": 652, "type": "ImGuiKeyData" }, { @@ -6763,16 +6942,6 @@ "size": 5, "type": "float" }, - { - "name": "NavInputsDownDuration[ImGuiNavInput_COUNT]", - "size": 20, - "type": "float" - }, - { - "name": "NavInputsDownDurationPrev[ImGuiNavInput_COUNT]", - "size": 20, - "type": "float" - }, { "name": "PenPressure", "type": "float" @@ -7016,6 +7185,63 @@ "type": "float" } ], + "ImGuiKeyOwnerData": [ + { + "name": "OwnerCurr", + "type": "ImGuiID" + }, + { + "name": "OwnerNext", + "type": "ImGuiID" + }, + { + "name": "LockThisFrame", + "type": "bool" + }, + { + "name": "LockUntilRelease", + "type": "bool" + } + ], + "ImGuiKeyRoutingData": [ + { + "name": "NextEntryIndex", + "type": "ImGuiKeyRoutingIndex" + }, + { + "name": "Mods", + "type": "ImU16" + }, + { + "name": "RoutingNextScore", + "type": "ImU8" + }, + { + "name": "RoutingCurr", + "type": "ImGuiID" + }, + { + "name": "RoutingNext", + "type": "ImGuiID" + } + ], + "ImGuiKeyRoutingTable": [ + { + "name": "Index[ImGuiKey_NamedKey_COUNT]", + "size": 140, + "type": "ImGuiKeyRoutingIndex" + }, + { + "name": "Entries", + "template_type": "ImGuiKeyRoutingData", + "type": "ImVector_ImGuiKeyRoutingData" + }, + { + "name": "EntriesNext", + "template_type": "ImGuiKeyRoutingData", + "type": "ImVector_ImGuiKeyRoutingData" + } + ], "ImGuiLastItemData": [ { "name": "ID", @@ -7608,7 +7834,7 @@ "type": "ImGuiWindow*" }, { - "name": "SourceWindow", + "name": "BackupNavWindow", "type": "ImGuiWindow*" }, { @@ -8960,6 +9186,17 @@ "type": "int" } ], + "ImGuiTextIndex": [ + { + "name": "LineOffsets", + "template_type": "int", + "type": "ImVector_int" + }, + { + "name": "EndOffset", + "type": "int" + } + ], "ImGuiTextRange": [ { "name": "b", @@ -9305,6 +9542,10 @@ "name": "BeginCount", "type": "short" }, + { + "name": "BeginCountPreviousFrame", + "type": "short" + }, { "name": "BeginOrderWithinParent", "type": "short" @@ -9517,6 +9758,10 @@ "size": 2, "type": "ImRect" }, + { + "name": "NavRootFocusScopeId", + "type": "ImGuiID" + }, { "name": "MemoryDrawListIdxCapacity", "type": "int" @@ -9716,6 +9961,10 @@ "name": "IsSameLine", "type": "bool" }, + { + "name": "IsSetPos", + "type": "bool" + }, { "name": "Indent", "type": "ImVec1" @@ -9744,10 +9993,6 @@ "name": "NavLayersActiveMaskNext", "type": "short" }, - { - "name": "NavFocusScopeIdCurrent", - "type": "ImGuiID" - }, { "name": "NavHideHighlightOneFrame", "type": "bool" diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index 8a94e9d..486436e 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -220,13 +220,21 @@ defs["enums"]["ImGuiButtonFlagsPrivate_"][15]["calc_value"] = 524288 defs["enums"]["ImGuiButtonFlagsPrivate_"][15]["name"] = "ImGuiButtonFlags_NoHoveredOnFocus" defs["enums"]["ImGuiButtonFlagsPrivate_"][15]["value"] = "1 << 19" defs["enums"]["ImGuiButtonFlagsPrivate_"][16] = {} -defs["enums"]["ImGuiButtonFlagsPrivate_"][16]["calc_value"] = 1008 -defs["enums"]["ImGuiButtonFlagsPrivate_"][16]["name"] = "ImGuiButtonFlags_PressedOnMask_" -defs["enums"]["ImGuiButtonFlagsPrivate_"][16]["value"] = "ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnClickReleaseAnywhere | ImGuiButtonFlags_PressedOnRelease | ImGuiButtonFlags_PressedOnDoubleClick | ImGuiButtonFlags_PressedOnDragDropHold" +defs["enums"]["ImGuiButtonFlagsPrivate_"][16]["calc_value"] = 1048576 +defs["enums"]["ImGuiButtonFlagsPrivate_"][16]["name"] = "ImGuiButtonFlags_NoSetKeyOwner" +defs["enums"]["ImGuiButtonFlagsPrivate_"][16]["value"] = "1 << 20" defs["enums"]["ImGuiButtonFlagsPrivate_"][17] = {} -defs["enums"]["ImGuiButtonFlagsPrivate_"][17]["calc_value"] = 32 -defs["enums"]["ImGuiButtonFlagsPrivate_"][17]["name"] = "ImGuiButtonFlags_PressedOnDefault_" -defs["enums"]["ImGuiButtonFlagsPrivate_"][17]["value"] = "ImGuiButtonFlags_PressedOnClickRelease" +defs["enums"]["ImGuiButtonFlagsPrivate_"][17]["calc_value"] = 2097152 +defs["enums"]["ImGuiButtonFlagsPrivate_"][17]["name"] = "ImGuiButtonFlags_NoTestKeyOwner" +defs["enums"]["ImGuiButtonFlagsPrivate_"][17]["value"] = "1 << 21" +defs["enums"]["ImGuiButtonFlagsPrivate_"][18] = {} +defs["enums"]["ImGuiButtonFlagsPrivate_"][18]["calc_value"] = 1008 +defs["enums"]["ImGuiButtonFlagsPrivate_"][18]["name"] = "ImGuiButtonFlags_PressedOnMask_" +defs["enums"]["ImGuiButtonFlagsPrivate_"][18]["value"] = "ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnClickReleaseAnywhere | ImGuiButtonFlags_PressedOnRelease | ImGuiButtonFlags_PressedOnDoubleClick | ImGuiButtonFlags_PressedOnDragDropHold" +defs["enums"]["ImGuiButtonFlagsPrivate_"][19] = {} +defs["enums"]["ImGuiButtonFlagsPrivate_"][19]["calc_value"] = 32 +defs["enums"]["ImGuiButtonFlagsPrivate_"][19]["name"] = "ImGuiButtonFlags_PressedOnDefault_" +defs["enums"]["ImGuiButtonFlagsPrivate_"][19]["value"] = "ImGuiButtonFlags_PressedOnClickRelease" defs["enums"]["ImGuiButtonFlags_"] = {} defs["enums"]["ImGuiButtonFlags_"][1] = {} defs["enums"]["ImGuiButtonFlags_"][1]["calc_value"] = 0 @@ -837,24 +845,28 @@ defs["enums"]["ImGuiDebugLogFlags_"][5]["name"] = "ImGuiDebugLogFlags_EventNav" defs["enums"]["ImGuiDebugLogFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiDebugLogFlags_"][6] = {} defs["enums"]["ImGuiDebugLogFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiDebugLogFlags_"][6]["name"] = "ImGuiDebugLogFlags_EventIO" +defs["enums"]["ImGuiDebugLogFlags_"][6]["name"] = "ImGuiDebugLogFlags_EventClipper" defs["enums"]["ImGuiDebugLogFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiDebugLogFlags_"][7] = {} defs["enums"]["ImGuiDebugLogFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiDebugLogFlags_"][7]["name"] = "ImGuiDebugLogFlags_EventDocking" +defs["enums"]["ImGuiDebugLogFlags_"][7]["name"] = "ImGuiDebugLogFlags_EventIO" defs["enums"]["ImGuiDebugLogFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiDebugLogFlags_"][8] = {} defs["enums"]["ImGuiDebugLogFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiDebugLogFlags_"][8]["name"] = "ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][8]["name"] = "ImGuiDebugLogFlags_EventDocking" defs["enums"]["ImGuiDebugLogFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiDebugLogFlags_"][9] = {} -defs["enums"]["ImGuiDebugLogFlags_"][9]["calc_value"] = 127 -defs["enums"]["ImGuiDebugLogFlags_"][9]["name"] = "ImGuiDebugLogFlags_EventMask_" -defs["enums"]["ImGuiDebugLogFlags_"][9]["value"] = "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiDebugLogFlags_"][9]["name"] = "ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiDebugLogFlags_"][10] = {} -defs["enums"]["ImGuiDebugLogFlags_"][10]["calc_value"] = 1024 -defs["enums"]["ImGuiDebugLogFlags_"][10]["name"] = "ImGuiDebugLogFlags_OutputToTTY" -defs["enums"]["ImGuiDebugLogFlags_"][10]["value"] = "1 << 10" +defs["enums"]["ImGuiDebugLogFlags_"][10]["calc_value"] = 255 +defs["enums"]["ImGuiDebugLogFlags_"][10]["name"] = "ImGuiDebugLogFlags_EventMask_" +defs["enums"]["ImGuiDebugLogFlags_"][10]["value"] = "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][11] = {} +defs["enums"]["ImGuiDebugLogFlags_"][11]["calc_value"] = 1024 +defs["enums"]["ImGuiDebugLogFlags_"][11]["name"] = "ImGuiDebugLogFlags_OutputToTTY" +defs["enums"]["ImGuiDebugLogFlags_"][11]["value"] = "1 << 10" defs["enums"]["ImGuiDir_"] = {} defs["enums"]["ImGuiDir_"][1] = {} defs["enums"]["ImGuiDir_"][1]["calc_value"] = -1 @@ -1130,6 +1142,18 @@ defs["enums"]["ImGuiHoveredFlags_"][13] = {} defs["enums"]["ImGuiHoveredFlags_"][13]["calc_value"] = 3 defs["enums"]["ImGuiHoveredFlags_"][13]["name"] = "ImGuiHoveredFlags_RootAndChildWindows" defs["enums"]["ImGuiHoveredFlags_"][13]["value"] = "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" +defs["enums"]["ImGuiHoveredFlags_"][14] = {} +defs["enums"]["ImGuiHoveredFlags_"][14]["calc_value"] = 2048 +defs["enums"]["ImGuiHoveredFlags_"][14]["name"] = "ImGuiHoveredFlags_DelayNormal" +defs["enums"]["ImGuiHoveredFlags_"][14]["value"] = "1 << 11" +defs["enums"]["ImGuiHoveredFlags_"][15] = {} +defs["enums"]["ImGuiHoveredFlags_"][15]["calc_value"] = 4096 +defs["enums"]["ImGuiHoveredFlags_"][15]["name"] = "ImGuiHoveredFlags_DelayShort" +defs["enums"]["ImGuiHoveredFlags_"][15]["value"] = "1 << 12" +defs["enums"]["ImGuiHoveredFlags_"][16] = {} +defs["enums"]["ImGuiHoveredFlags_"][16]["calc_value"] = 8192 +defs["enums"]["ImGuiHoveredFlags_"][16]["name"] = "ImGuiHoveredFlags_NoSharedDelay" +defs["enums"]["ImGuiHoveredFlags_"][16]["value"] = "1 << 13" defs["enums"]["ImGuiInputEventType"] = {} defs["enums"]["ImGuiInputEventType"][1] = {} defs["enums"]["ImGuiInputEventType"][1]["calc_value"] = 0 @@ -1167,6 +1191,103 @@ defs["enums"]["ImGuiInputEventType"][9] = {} defs["enums"]["ImGuiInputEventType"][9]["calc_value"] = 8 defs["enums"]["ImGuiInputEventType"][9]["name"] = "ImGuiInputEventType_COUNT" defs["enums"]["ImGuiInputEventType"][9]["value"] = "8" +defs["enums"]["ImGuiInputFlags_"] = {} +defs["enums"]["ImGuiInputFlags_"][1] = {} +defs["enums"]["ImGuiInputFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiInputFlags_"][1]["name"] = "ImGuiInputFlags_None" +defs["enums"]["ImGuiInputFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiInputFlags_"][2] = {} +defs["enums"]["ImGuiInputFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiInputFlags_"][2]["name"] = "ImGuiInputFlags_Repeat" +defs["enums"]["ImGuiInputFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiInputFlags_"][3] = {} +defs["enums"]["ImGuiInputFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiInputFlags_"][3]["name"] = "ImGuiInputFlags_RepeatRateDefault" +defs["enums"]["ImGuiInputFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiInputFlags_"][4] = {} +defs["enums"]["ImGuiInputFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiInputFlags_"][4]["name"] = "ImGuiInputFlags_RepeatRateNavMove" +defs["enums"]["ImGuiInputFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiInputFlags_"][5] = {} +defs["enums"]["ImGuiInputFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiInputFlags_"][5]["name"] = "ImGuiInputFlags_RepeatRateNavTweak" +defs["enums"]["ImGuiInputFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiInputFlags_"][6] = {} +defs["enums"]["ImGuiInputFlags_"][6]["calc_value"] = 14 +defs["enums"]["ImGuiInputFlags_"][6]["name"] = "ImGuiInputFlags_RepeatRateMask_" +defs["enums"]["ImGuiInputFlags_"][6]["value"] = "ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak" +defs["enums"]["ImGuiInputFlags_"][7] = {} +defs["enums"]["ImGuiInputFlags_"][7]["calc_value"] = 16 +defs["enums"]["ImGuiInputFlags_"][7]["name"] = "ImGuiInputFlags_CondHovered" +defs["enums"]["ImGuiInputFlags_"][7]["value"] = "1 << 4" +defs["enums"]["ImGuiInputFlags_"][8] = {} +defs["enums"]["ImGuiInputFlags_"][8]["calc_value"] = 32 +defs["enums"]["ImGuiInputFlags_"][8]["name"] = "ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlags_"][8]["value"] = "1 << 5" +defs["enums"]["ImGuiInputFlags_"][9] = {} +defs["enums"]["ImGuiInputFlags_"][9]["calc_value"] = 48 +defs["enums"]["ImGuiInputFlags_"][9]["name"] = "ImGuiInputFlags_CondDefault_" +defs["enums"]["ImGuiInputFlags_"][9]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlags_"][10] = {} +defs["enums"]["ImGuiInputFlags_"][10]["calc_value"] = 48 +defs["enums"]["ImGuiInputFlags_"][10]["name"] = "ImGuiInputFlags_CondMask_" +defs["enums"]["ImGuiInputFlags_"][10]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlags_"][11] = {} +defs["enums"]["ImGuiInputFlags_"][11]["calc_value"] = 64 +defs["enums"]["ImGuiInputFlags_"][11]["name"] = "ImGuiInputFlags_LockThisFrame" +defs["enums"]["ImGuiInputFlags_"][11]["value"] = "1 << 6" +defs["enums"]["ImGuiInputFlags_"][12] = {} +defs["enums"]["ImGuiInputFlags_"][12]["calc_value"] = 128 +defs["enums"]["ImGuiInputFlags_"][12]["name"] = "ImGuiInputFlags_LockUntilRelease" +defs["enums"]["ImGuiInputFlags_"][12]["value"] = "1 << 7" +defs["enums"]["ImGuiInputFlags_"][13] = {} +defs["enums"]["ImGuiInputFlags_"][13]["calc_value"] = 256 +defs["enums"]["ImGuiInputFlags_"][13]["name"] = "ImGuiInputFlags_RouteFocused" +defs["enums"]["ImGuiInputFlags_"][13]["value"] = "1 << 8" +defs["enums"]["ImGuiInputFlags_"][14] = {} +defs["enums"]["ImGuiInputFlags_"][14]["calc_value"] = 512 +defs["enums"]["ImGuiInputFlags_"][14]["name"] = "ImGuiInputFlags_RouteGlobalLow" +defs["enums"]["ImGuiInputFlags_"][14]["value"] = "1 << 9" +defs["enums"]["ImGuiInputFlags_"][15] = {} +defs["enums"]["ImGuiInputFlags_"][15]["calc_value"] = 1024 +defs["enums"]["ImGuiInputFlags_"][15]["name"] = "ImGuiInputFlags_RouteGlobal" +defs["enums"]["ImGuiInputFlags_"][15]["value"] = "1 << 10" +defs["enums"]["ImGuiInputFlags_"][16] = {} +defs["enums"]["ImGuiInputFlags_"][16]["calc_value"] = 2048 +defs["enums"]["ImGuiInputFlags_"][16]["name"] = "ImGuiInputFlags_RouteGlobalHigh" +defs["enums"]["ImGuiInputFlags_"][16]["value"] = "1 << 11" +defs["enums"]["ImGuiInputFlags_"][17] = {} +defs["enums"]["ImGuiInputFlags_"][17]["calc_value"] = 3840 +defs["enums"]["ImGuiInputFlags_"][17]["name"] = "ImGuiInputFlags_RouteMask_" +defs["enums"]["ImGuiInputFlags_"][17]["value"] = "ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh" +defs["enums"]["ImGuiInputFlags_"][18] = {} +defs["enums"]["ImGuiInputFlags_"][18]["calc_value"] = 4096 +defs["enums"]["ImGuiInputFlags_"][18]["name"] = "ImGuiInputFlags_RouteAlways" +defs["enums"]["ImGuiInputFlags_"][18]["value"] = "1 << 12" +defs["enums"]["ImGuiInputFlags_"][19] = {} +defs["enums"]["ImGuiInputFlags_"][19]["calc_value"] = 8192 +defs["enums"]["ImGuiInputFlags_"][19]["name"] = "ImGuiInputFlags_RouteUnlessBgFocused" +defs["enums"]["ImGuiInputFlags_"][19]["value"] = "1 << 13" +defs["enums"]["ImGuiInputFlags_"][20] = {} +defs["enums"]["ImGuiInputFlags_"][20]["calc_value"] = 12288 +defs["enums"]["ImGuiInputFlags_"][20]["name"] = "ImGuiInputFlags_RouteExtraMask_" +defs["enums"]["ImGuiInputFlags_"][20]["value"] = "ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused" +defs["enums"]["ImGuiInputFlags_"][21] = {} +defs["enums"]["ImGuiInputFlags_"][21]["calc_value"] = 15 +defs["enums"]["ImGuiInputFlags_"][21]["name"] = "ImGuiInputFlags_SupportedByIsKeyPressed" +defs["enums"]["ImGuiInputFlags_"][21]["value"] = "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_" +defs["enums"]["ImGuiInputFlags_"][22] = {} +defs["enums"]["ImGuiInputFlags_"][22]["calc_value"] = 16143 +defs["enums"]["ImGuiInputFlags_"][22]["name"] = "ImGuiInputFlags_SupportedByShortcut" +defs["enums"]["ImGuiInputFlags_"][22]["value"] = "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_" +defs["enums"]["ImGuiInputFlags_"][23] = {} +defs["enums"]["ImGuiInputFlags_"][23]["calc_value"] = 192 +defs["enums"]["ImGuiInputFlags_"][23]["name"] = "ImGuiInputFlags_SupportedBySetKeyOwner" +defs["enums"]["ImGuiInputFlags_"][23]["value"] = "ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease" +defs["enums"]["ImGuiInputFlags_"][24] = {} +defs["enums"]["ImGuiInputFlags_"][24]["calc_value"] = 240 +defs["enums"]["ImGuiInputFlags_"][24]["name"] = "ImGuiInputFlags_SupportedBySetItemKeyOwner" +defs["enums"]["ImGuiInputFlags_"][24]["value"] = "ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_" defs["enums"]["ImGuiInputSource"] = {} defs["enums"]["ImGuiInputSource"][1] = {} defs["enums"]["ImGuiInputSource"][1]["calc_value"] = 0 @@ -1294,6 +1415,10 @@ defs["enums"]["ImGuiInputTextFlags_"][21] = {} 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"] = 1048576 +defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_EscapeClearsAll" +defs["enums"]["ImGuiInputTextFlags_"][22]["value"] = "1 << 20" defs["enums"]["ImGuiItemFlags_"] = {} defs["enums"]["ImGuiItemFlags_"][1] = {} defs["enums"]["ImGuiItemFlags_"][1]["calc_value"] = 0 @@ -1333,8 +1458,12 @@ defs["enums"]["ImGuiItemFlags_"][9]["name"] = "ImGuiItemFlags_ReadOnly" defs["enums"]["ImGuiItemFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiItemFlags_"][10] = {} defs["enums"]["ImGuiItemFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiItemFlags_"][10]["name"] = "ImGuiItemFlags_Inputable" +defs["enums"]["ImGuiItemFlags_"][10]["name"] = "ImGuiItemFlags_NoWindowHoverableCheck" defs["enums"]["ImGuiItemFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiItemFlags_"][11] = {} +defs["enums"]["ImGuiItemFlags_"][11]["calc_value"] = 1024 +defs["enums"]["ImGuiItemFlags_"][11]["name"] = "ImGuiItemFlags_Inputable" +defs["enums"]["ImGuiItemFlags_"][11]["value"] = "1 << 10" defs["enums"]["ImGuiItemStatusFlags_"] = {} defs["enums"]["ImGuiItemStatusFlags_"][1] = {} defs["enums"]["ImGuiItemStatusFlags_"][1]["calc_value"] = 0 @@ -1376,584 +1505,627 @@ defs["enums"]["ImGuiItemStatusFlags_"][10] = {} defs["enums"]["ImGuiItemStatusFlags_"][10]["calc_value"] = 256 defs["enums"]["ImGuiItemStatusFlags_"][10]["name"] = "ImGuiItemStatusFlags_FocusedByTabbing" defs["enums"]["ImGuiItemStatusFlags_"][10]["value"] = "1 << 8" -defs["enums"]["ImGuiKeyPrivate_"] = {} -defs["enums"]["ImGuiKeyPrivate_"][1] = {} -defs["enums"]["ImGuiKeyPrivate_"][1]["calc_value"] = 0 -defs["enums"]["ImGuiKeyPrivate_"][1]["name"] = "ImGuiKey_LegacyNativeKey_BEGIN" -defs["enums"]["ImGuiKeyPrivate_"][1]["value"] = "0" -defs["enums"]["ImGuiKeyPrivate_"][2] = {} -defs["enums"]["ImGuiKeyPrivate_"][2]["calc_value"] = 512 -defs["enums"]["ImGuiKeyPrivate_"][2]["name"] = "ImGuiKey_LegacyNativeKey_END" -defs["enums"]["ImGuiKeyPrivate_"][2]["value"] = "512" -defs["enums"]["ImGuiKeyPrivate_"][3] = {} -defs["enums"]["ImGuiKeyPrivate_"][3]["calc_value"] = 617 -defs["enums"]["ImGuiKeyPrivate_"][3]["name"] = "ImGuiKey_Gamepad_BEGIN" -defs["enums"]["ImGuiKeyPrivate_"][3]["value"] = "ImGuiKey_GamepadStart" -defs["enums"]["ImGuiKeyPrivate_"][4] = {} -defs["enums"]["ImGuiKeyPrivate_"][4]["calc_value"] = 641 -defs["enums"]["ImGuiKeyPrivate_"][4]["name"] = "ImGuiKey_Gamepad_END" -defs["enums"]["ImGuiKeyPrivate_"][4]["value"] = "ImGuiKey_GamepadRStickRight + 1" -defs["enums"]["ImGuiKey_"] = {} -defs["enums"]["ImGuiKey_"][1] = {} -defs["enums"]["ImGuiKey_"][1]["calc_value"] = 0 -defs["enums"]["ImGuiKey_"][1]["name"] = "ImGuiKey_None" -defs["enums"]["ImGuiKey_"][1]["value"] = "0" -defs["enums"]["ImGuiKey_"][2] = {} -defs["enums"]["ImGuiKey_"][2]["calc_value"] = 512 -defs["enums"]["ImGuiKey_"][2]["name"] = "ImGuiKey_Tab" -defs["enums"]["ImGuiKey_"][2]["value"] = "512" -defs["enums"]["ImGuiKey_"][3] = {} -defs["enums"]["ImGuiKey_"][3]["calc_value"] = 513 -defs["enums"]["ImGuiKey_"][3]["name"] = "ImGuiKey_LeftArrow" -defs["enums"]["ImGuiKey_"][3]["value"] = "513" -defs["enums"]["ImGuiKey_"][4] = {} -defs["enums"]["ImGuiKey_"][4]["calc_value"] = 514 -defs["enums"]["ImGuiKey_"][4]["name"] = "ImGuiKey_RightArrow" -defs["enums"]["ImGuiKey_"][4]["value"] = "514" -defs["enums"]["ImGuiKey_"][5] = {} -defs["enums"]["ImGuiKey_"][5]["calc_value"] = 515 -defs["enums"]["ImGuiKey_"][5]["name"] = "ImGuiKey_UpArrow" -defs["enums"]["ImGuiKey_"][5]["value"] = "515" -defs["enums"]["ImGuiKey_"][6] = {} -defs["enums"]["ImGuiKey_"][6]["calc_value"] = 516 -defs["enums"]["ImGuiKey_"][6]["name"] = "ImGuiKey_DownArrow" -defs["enums"]["ImGuiKey_"][6]["value"] = "516" -defs["enums"]["ImGuiKey_"][7] = {} -defs["enums"]["ImGuiKey_"][7]["calc_value"] = 517 -defs["enums"]["ImGuiKey_"][7]["name"] = "ImGuiKey_PageUp" -defs["enums"]["ImGuiKey_"][7]["value"] = "517" -defs["enums"]["ImGuiKey_"][8] = {} -defs["enums"]["ImGuiKey_"][8]["calc_value"] = 518 -defs["enums"]["ImGuiKey_"][8]["name"] = "ImGuiKey_PageDown" -defs["enums"]["ImGuiKey_"][8]["value"] = "518" -defs["enums"]["ImGuiKey_"][9] = {} -defs["enums"]["ImGuiKey_"][9]["calc_value"] = 519 -defs["enums"]["ImGuiKey_"][9]["name"] = "ImGuiKey_Home" -defs["enums"]["ImGuiKey_"][9]["value"] = "519" -defs["enums"]["ImGuiKey_"][10] = {} -defs["enums"]["ImGuiKey_"][10]["calc_value"] = 520 -defs["enums"]["ImGuiKey_"][10]["name"] = "ImGuiKey_End" -defs["enums"]["ImGuiKey_"][10]["value"] = "520" -defs["enums"]["ImGuiKey_"][11] = {} -defs["enums"]["ImGuiKey_"][11]["calc_value"] = 521 -defs["enums"]["ImGuiKey_"][11]["name"] = "ImGuiKey_Insert" -defs["enums"]["ImGuiKey_"][11]["value"] = "521" -defs["enums"]["ImGuiKey_"][12] = {} -defs["enums"]["ImGuiKey_"][12]["calc_value"] = 522 -defs["enums"]["ImGuiKey_"][12]["name"] = "ImGuiKey_Delete" -defs["enums"]["ImGuiKey_"][12]["value"] = "522" -defs["enums"]["ImGuiKey_"][13] = {} -defs["enums"]["ImGuiKey_"][13]["calc_value"] = 523 -defs["enums"]["ImGuiKey_"][13]["name"] = "ImGuiKey_Backspace" -defs["enums"]["ImGuiKey_"][13]["value"] = "523" -defs["enums"]["ImGuiKey_"][14] = {} -defs["enums"]["ImGuiKey_"][14]["calc_value"] = 524 -defs["enums"]["ImGuiKey_"][14]["name"] = "ImGuiKey_Space" -defs["enums"]["ImGuiKey_"][14]["value"] = "524" -defs["enums"]["ImGuiKey_"][15] = {} -defs["enums"]["ImGuiKey_"][15]["calc_value"] = 525 -defs["enums"]["ImGuiKey_"][15]["name"] = "ImGuiKey_Enter" -defs["enums"]["ImGuiKey_"][15]["value"] = "525" -defs["enums"]["ImGuiKey_"][16] = {} -defs["enums"]["ImGuiKey_"][16]["calc_value"] = 526 -defs["enums"]["ImGuiKey_"][16]["name"] = "ImGuiKey_Escape" -defs["enums"]["ImGuiKey_"][16]["value"] = "526" -defs["enums"]["ImGuiKey_"][17] = {} -defs["enums"]["ImGuiKey_"][17]["calc_value"] = 527 -defs["enums"]["ImGuiKey_"][17]["name"] = "ImGuiKey_LeftCtrl" -defs["enums"]["ImGuiKey_"][17]["value"] = "527" -defs["enums"]["ImGuiKey_"][18] = {} -defs["enums"]["ImGuiKey_"][18]["calc_value"] = 528 -defs["enums"]["ImGuiKey_"][18]["name"] = "ImGuiKey_LeftShift" -defs["enums"]["ImGuiKey_"][18]["value"] = "528" -defs["enums"]["ImGuiKey_"][19] = {} -defs["enums"]["ImGuiKey_"][19]["calc_value"] = 529 -defs["enums"]["ImGuiKey_"][19]["name"] = "ImGuiKey_LeftAlt" -defs["enums"]["ImGuiKey_"][19]["value"] = "529" -defs["enums"]["ImGuiKey_"][20] = {} -defs["enums"]["ImGuiKey_"][20]["calc_value"] = 530 -defs["enums"]["ImGuiKey_"][20]["name"] = "ImGuiKey_LeftSuper" -defs["enums"]["ImGuiKey_"][20]["value"] = "530" -defs["enums"]["ImGuiKey_"][21] = {} -defs["enums"]["ImGuiKey_"][21]["calc_value"] = 531 -defs["enums"]["ImGuiKey_"][21]["name"] = "ImGuiKey_RightCtrl" -defs["enums"]["ImGuiKey_"][21]["value"] = "531" -defs["enums"]["ImGuiKey_"][22] = {} -defs["enums"]["ImGuiKey_"][22]["calc_value"] = 532 -defs["enums"]["ImGuiKey_"][22]["name"] = "ImGuiKey_RightShift" -defs["enums"]["ImGuiKey_"][22]["value"] = "532" -defs["enums"]["ImGuiKey_"][23] = {} -defs["enums"]["ImGuiKey_"][23]["calc_value"] = 533 -defs["enums"]["ImGuiKey_"][23]["name"] = "ImGuiKey_RightAlt" -defs["enums"]["ImGuiKey_"][23]["value"] = "533" -defs["enums"]["ImGuiKey_"][24] = {} -defs["enums"]["ImGuiKey_"][24]["calc_value"] = 534 -defs["enums"]["ImGuiKey_"][24]["name"] = "ImGuiKey_RightSuper" -defs["enums"]["ImGuiKey_"][24]["value"] = "534" -defs["enums"]["ImGuiKey_"][25] = {} -defs["enums"]["ImGuiKey_"][25]["calc_value"] = 535 -defs["enums"]["ImGuiKey_"][25]["name"] = "ImGuiKey_Menu" -defs["enums"]["ImGuiKey_"][25]["value"] = "535" -defs["enums"]["ImGuiKey_"][26] = {} -defs["enums"]["ImGuiKey_"][26]["calc_value"] = 536 -defs["enums"]["ImGuiKey_"][26]["name"] = "ImGuiKey_0" -defs["enums"]["ImGuiKey_"][26]["value"] = "536" -defs["enums"]["ImGuiKey_"][27] = {} -defs["enums"]["ImGuiKey_"][27]["calc_value"] = 537 -defs["enums"]["ImGuiKey_"][27]["name"] = "ImGuiKey_1" -defs["enums"]["ImGuiKey_"][27]["value"] = "537" -defs["enums"]["ImGuiKey_"][28] = {} -defs["enums"]["ImGuiKey_"][28]["calc_value"] = 538 -defs["enums"]["ImGuiKey_"][28]["name"] = "ImGuiKey_2" -defs["enums"]["ImGuiKey_"][28]["value"] = "538" -defs["enums"]["ImGuiKey_"][29] = {} -defs["enums"]["ImGuiKey_"][29]["calc_value"] = 539 -defs["enums"]["ImGuiKey_"][29]["name"] = "ImGuiKey_3" -defs["enums"]["ImGuiKey_"][29]["value"] = "539" -defs["enums"]["ImGuiKey_"][30] = {} -defs["enums"]["ImGuiKey_"][30]["calc_value"] = 540 -defs["enums"]["ImGuiKey_"][30]["name"] = "ImGuiKey_4" -defs["enums"]["ImGuiKey_"][30]["value"] = "540" -defs["enums"]["ImGuiKey_"][31] = {} -defs["enums"]["ImGuiKey_"][31]["calc_value"] = 541 -defs["enums"]["ImGuiKey_"][31]["name"] = "ImGuiKey_5" -defs["enums"]["ImGuiKey_"][31]["value"] = "541" -defs["enums"]["ImGuiKey_"][32] = {} -defs["enums"]["ImGuiKey_"][32]["calc_value"] = 542 -defs["enums"]["ImGuiKey_"][32]["name"] = "ImGuiKey_6" -defs["enums"]["ImGuiKey_"][32]["value"] = "542" -defs["enums"]["ImGuiKey_"][33] = {} -defs["enums"]["ImGuiKey_"][33]["calc_value"] = 543 -defs["enums"]["ImGuiKey_"][33]["name"] = "ImGuiKey_7" -defs["enums"]["ImGuiKey_"][33]["value"] = "543" -defs["enums"]["ImGuiKey_"][34] = {} -defs["enums"]["ImGuiKey_"][34]["calc_value"] = 544 -defs["enums"]["ImGuiKey_"][34]["name"] = "ImGuiKey_8" -defs["enums"]["ImGuiKey_"][34]["value"] = "544" -defs["enums"]["ImGuiKey_"][35] = {} -defs["enums"]["ImGuiKey_"][35]["calc_value"] = 545 -defs["enums"]["ImGuiKey_"][35]["name"] = "ImGuiKey_9" -defs["enums"]["ImGuiKey_"][35]["value"] = "545" -defs["enums"]["ImGuiKey_"][36] = {} -defs["enums"]["ImGuiKey_"][36]["calc_value"] = 546 -defs["enums"]["ImGuiKey_"][36]["name"] = "ImGuiKey_A" -defs["enums"]["ImGuiKey_"][36]["value"] = "546" -defs["enums"]["ImGuiKey_"][37] = {} -defs["enums"]["ImGuiKey_"][37]["calc_value"] = 547 -defs["enums"]["ImGuiKey_"][37]["name"] = "ImGuiKey_B" -defs["enums"]["ImGuiKey_"][37]["value"] = "547" -defs["enums"]["ImGuiKey_"][38] = {} -defs["enums"]["ImGuiKey_"][38]["calc_value"] = 548 -defs["enums"]["ImGuiKey_"][38]["name"] = "ImGuiKey_C" -defs["enums"]["ImGuiKey_"][38]["value"] = "548" -defs["enums"]["ImGuiKey_"][39] = {} -defs["enums"]["ImGuiKey_"][39]["calc_value"] = 549 -defs["enums"]["ImGuiKey_"][39]["name"] = "ImGuiKey_D" -defs["enums"]["ImGuiKey_"][39]["value"] = "549" -defs["enums"]["ImGuiKey_"][40] = {} -defs["enums"]["ImGuiKey_"][40]["calc_value"] = 550 -defs["enums"]["ImGuiKey_"][40]["name"] = "ImGuiKey_E" -defs["enums"]["ImGuiKey_"][40]["value"] = "550" -defs["enums"]["ImGuiKey_"][41] = {} -defs["enums"]["ImGuiKey_"][41]["calc_value"] = 551 -defs["enums"]["ImGuiKey_"][41]["name"] = "ImGuiKey_F" -defs["enums"]["ImGuiKey_"][41]["value"] = "551" -defs["enums"]["ImGuiKey_"][42] = {} -defs["enums"]["ImGuiKey_"][42]["calc_value"] = 552 -defs["enums"]["ImGuiKey_"][42]["name"] = "ImGuiKey_G" -defs["enums"]["ImGuiKey_"][42]["value"] = "552" -defs["enums"]["ImGuiKey_"][43] = {} -defs["enums"]["ImGuiKey_"][43]["calc_value"] = 553 -defs["enums"]["ImGuiKey_"][43]["name"] = "ImGuiKey_H" -defs["enums"]["ImGuiKey_"][43]["value"] = "553" -defs["enums"]["ImGuiKey_"][44] = {} -defs["enums"]["ImGuiKey_"][44]["calc_value"] = 554 -defs["enums"]["ImGuiKey_"][44]["name"] = "ImGuiKey_I" -defs["enums"]["ImGuiKey_"][44]["value"] = "554" -defs["enums"]["ImGuiKey_"][45] = {} -defs["enums"]["ImGuiKey_"][45]["calc_value"] = 555 -defs["enums"]["ImGuiKey_"][45]["name"] = "ImGuiKey_J" -defs["enums"]["ImGuiKey_"][45]["value"] = "555" -defs["enums"]["ImGuiKey_"][46] = {} -defs["enums"]["ImGuiKey_"][46]["calc_value"] = 556 -defs["enums"]["ImGuiKey_"][46]["name"] = "ImGuiKey_K" -defs["enums"]["ImGuiKey_"][46]["value"] = "556" -defs["enums"]["ImGuiKey_"][47] = {} -defs["enums"]["ImGuiKey_"][47]["calc_value"] = 557 -defs["enums"]["ImGuiKey_"][47]["name"] = "ImGuiKey_L" -defs["enums"]["ImGuiKey_"][47]["value"] = "557" -defs["enums"]["ImGuiKey_"][48] = {} -defs["enums"]["ImGuiKey_"][48]["calc_value"] = 558 -defs["enums"]["ImGuiKey_"][48]["name"] = "ImGuiKey_M" -defs["enums"]["ImGuiKey_"][48]["value"] = "558" -defs["enums"]["ImGuiKey_"][49] = {} -defs["enums"]["ImGuiKey_"][49]["calc_value"] = 559 -defs["enums"]["ImGuiKey_"][49]["name"] = "ImGuiKey_N" -defs["enums"]["ImGuiKey_"][49]["value"] = "559" -defs["enums"]["ImGuiKey_"][50] = {} -defs["enums"]["ImGuiKey_"][50]["calc_value"] = 560 -defs["enums"]["ImGuiKey_"][50]["name"] = "ImGuiKey_O" -defs["enums"]["ImGuiKey_"][50]["value"] = "560" -defs["enums"]["ImGuiKey_"][51] = {} -defs["enums"]["ImGuiKey_"][51]["calc_value"] = 561 -defs["enums"]["ImGuiKey_"][51]["name"] = "ImGuiKey_P" -defs["enums"]["ImGuiKey_"][51]["value"] = "561" -defs["enums"]["ImGuiKey_"][52] = {} -defs["enums"]["ImGuiKey_"][52]["calc_value"] = 562 -defs["enums"]["ImGuiKey_"][52]["name"] = "ImGuiKey_Q" -defs["enums"]["ImGuiKey_"][52]["value"] = "562" -defs["enums"]["ImGuiKey_"][53] = {} -defs["enums"]["ImGuiKey_"][53]["calc_value"] = 563 -defs["enums"]["ImGuiKey_"][53]["name"] = "ImGuiKey_R" -defs["enums"]["ImGuiKey_"][53]["value"] = "563" -defs["enums"]["ImGuiKey_"][54] = {} -defs["enums"]["ImGuiKey_"][54]["calc_value"] = 564 -defs["enums"]["ImGuiKey_"][54]["name"] = "ImGuiKey_S" -defs["enums"]["ImGuiKey_"][54]["value"] = "564" -defs["enums"]["ImGuiKey_"][55] = {} -defs["enums"]["ImGuiKey_"][55]["calc_value"] = 565 -defs["enums"]["ImGuiKey_"][55]["name"] = "ImGuiKey_T" -defs["enums"]["ImGuiKey_"][55]["value"] = "565" -defs["enums"]["ImGuiKey_"][56] = {} -defs["enums"]["ImGuiKey_"][56]["calc_value"] = 566 -defs["enums"]["ImGuiKey_"][56]["name"] = "ImGuiKey_U" -defs["enums"]["ImGuiKey_"][56]["value"] = "566" -defs["enums"]["ImGuiKey_"][57] = {} -defs["enums"]["ImGuiKey_"][57]["calc_value"] = 567 -defs["enums"]["ImGuiKey_"][57]["name"] = "ImGuiKey_V" -defs["enums"]["ImGuiKey_"][57]["value"] = "567" -defs["enums"]["ImGuiKey_"][58] = {} -defs["enums"]["ImGuiKey_"][58]["calc_value"] = 568 -defs["enums"]["ImGuiKey_"][58]["name"] = "ImGuiKey_W" -defs["enums"]["ImGuiKey_"][58]["value"] = "568" -defs["enums"]["ImGuiKey_"][59] = {} -defs["enums"]["ImGuiKey_"][59]["calc_value"] = 569 -defs["enums"]["ImGuiKey_"][59]["name"] = "ImGuiKey_X" -defs["enums"]["ImGuiKey_"][59]["value"] = "569" -defs["enums"]["ImGuiKey_"][60] = {} -defs["enums"]["ImGuiKey_"][60]["calc_value"] = 570 -defs["enums"]["ImGuiKey_"][60]["name"] = "ImGuiKey_Y" -defs["enums"]["ImGuiKey_"][60]["value"] = "570" -defs["enums"]["ImGuiKey_"][61] = {} -defs["enums"]["ImGuiKey_"][61]["calc_value"] = 571 -defs["enums"]["ImGuiKey_"][61]["name"] = "ImGuiKey_Z" -defs["enums"]["ImGuiKey_"][61]["value"] = "571" -defs["enums"]["ImGuiKey_"][62] = {} -defs["enums"]["ImGuiKey_"][62]["calc_value"] = 572 -defs["enums"]["ImGuiKey_"][62]["name"] = "ImGuiKey_F1" -defs["enums"]["ImGuiKey_"][62]["value"] = "572" -defs["enums"]["ImGuiKey_"][63] = {} -defs["enums"]["ImGuiKey_"][63]["calc_value"] = 573 -defs["enums"]["ImGuiKey_"][63]["name"] = "ImGuiKey_F2" -defs["enums"]["ImGuiKey_"][63]["value"] = "573" -defs["enums"]["ImGuiKey_"][64] = {} -defs["enums"]["ImGuiKey_"][64]["calc_value"] = 574 -defs["enums"]["ImGuiKey_"][64]["name"] = "ImGuiKey_F3" -defs["enums"]["ImGuiKey_"][64]["value"] = "574" -defs["enums"]["ImGuiKey_"][65] = {} -defs["enums"]["ImGuiKey_"][65]["calc_value"] = 575 -defs["enums"]["ImGuiKey_"][65]["name"] = "ImGuiKey_F4" -defs["enums"]["ImGuiKey_"][65]["value"] = "575" -defs["enums"]["ImGuiKey_"][66] = {} -defs["enums"]["ImGuiKey_"][66]["calc_value"] = 576 -defs["enums"]["ImGuiKey_"][66]["name"] = "ImGuiKey_F5" -defs["enums"]["ImGuiKey_"][66]["value"] = "576" -defs["enums"]["ImGuiKey_"][67] = {} -defs["enums"]["ImGuiKey_"][67]["calc_value"] = 577 -defs["enums"]["ImGuiKey_"][67]["name"] = "ImGuiKey_F6" -defs["enums"]["ImGuiKey_"][67]["value"] = "577" -defs["enums"]["ImGuiKey_"][68] = {} -defs["enums"]["ImGuiKey_"][68]["calc_value"] = 578 -defs["enums"]["ImGuiKey_"][68]["name"] = "ImGuiKey_F7" -defs["enums"]["ImGuiKey_"][68]["value"] = "578" -defs["enums"]["ImGuiKey_"][69] = {} -defs["enums"]["ImGuiKey_"][69]["calc_value"] = 579 -defs["enums"]["ImGuiKey_"][69]["name"] = "ImGuiKey_F8" -defs["enums"]["ImGuiKey_"][69]["value"] = "579" -defs["enums"]["ImGuiKey_"][70] = {} -defs["enums"]["ImGuiKey_"][70]["calc_value"] = 580 -defs["enums"]["ImGuiKey_"][70]["name"] = "ImGuiKey_F9" -defs["enums"]["ImGuiKey_"][70]["value"] = "580" -defs["enums"]["ImGuiKey_"][71] = {} -defs["enums"]["ImGuiKey_"][71]["calc_value"] = 581 -defs["enums"]["ImGuiKey_"][71]["name"] = "ImGuiKey_F10" -defs["enums"]["ImGuiKey_"][71]["value"] = "581" -defs["enums"]["ImGuiKey_"][72] = {} -defs["enums"]["ImGuiKey_"][72]["calc_value"] = 582 -defs["enums"]["ImGuiKey_"][72]["name"] = "ImGuiKey_F11" -defs["enums"]["ImGuiKey_"][72]["value"] = "582" -defs["enums"]["ImGuiKey_"][73] = {} -defs["enums"]["ImGuiKey_"][73]["calc_value"] = 583 -defs["enums"]["ImGuiKey_"][73]["name"] = "ImGuiKey_F12" -defs["enums"]["ImGuiKey_"][73]["value"] = "583" -defs["enums"]["ImGuiKey_"][74] = {} -defs["enums"]["ImGuiKey_"][74]["calc_value"] = 584 -defs["enums"]["ImGuiKey_"][74]["name"] = "ImGuiKey_Apostrophe" -defs["enums"]["ImGuiKey_"][74]["value"] = "584" -defs["enums"]["ImGuiKey_"][75] = {} -defs["enums"]["ImGuiKey_"][75]["calc_value"] = 585 -defs["enums"]["ImGuiKey_"][75]["name"] = "ImGuiKey_Comma" -defs["enums"]["ImGuiKey_"][75]["value"] = "585" -defs["enums"]["ImGuiKey_"][76] = {} -defs["enums"]["ImGuiKey_"][76]["calc_value"] = 586 -defs["enums"]["ImGuiKey_"][76]["name"] = "ImGuiKey_Minus" -defs["enums"]["ImGuiKey_"][76]["value"] = "586" -defs["enums"]["ImGuiKey_"][77] = {} -defs["enums"]["ImGuiKey_"][77]["calc_value"] = 587 -defs["enums"]["ImGuiKey_"][77]["name"] = "ImGuiKey_Period" -defs["enums"]["ImGuiKey_"][77]["value"] = "587" -defs["enums"]["ImGuiKey_"][78] = {} -defs["enums"]["ImGuiKey_"][78]["calc_value"] = 588 -defs["enums"]["ImGuiKey_"][78]["name"] = "ImGuiKey_Slash" -defs["enums"]["ImGuiKey_"][78]["value"] = "588" -defs["enums"]["ImGuiKey_"][79] = {} -defs["enums"]["ImGuiKey_"][79]["calc_value"] = 589 -defs["enums"]["ImGuiKey_"][79]["name"] = "ImGuiKey_Semicolon" -defs["enums"]["ImGuiKey_"][79]["value"] = "589" -defs["enums"]["ImGuiKey_"][80] = {} -defs["enums"]["ImGuiKey_"][80]["calc_value"] = 590 -defs["enums"]["ImGuiKey_"][80]["name"] = "ImGuiKey_Equal" -defs["enums"]["ImGuiKey_"][80]["value"] = "590" -defs["enums"]["ImGuiKey_"][81] = {} -defs["enums"]["ImGuiKey_"][81]["calc_value"] = 591 -defs["enums"]["ImGuiKey_"][81]["name"] = "ImGuiKey_LeftBracket" -defs["enums"]["ImGuiKey_"][81]["value"] = "591" -defs["enums"]["ImGuiKey_"][82] = {} -defs["enums"]["ImGuiKey_"][82]["calc_value"] = 592 -defs["enums"]["ImGuiKey_"][82]["name"] = "ImGuiKey_Backslash" -defs["enums"]["ImGuiKey_"][82]["value"] = "592" -defs["enums"]["ImGuiKey_"][83] = {} -defs["enums"]["ImGuiKey_"][83]["calc_value"] = 593 -defs["enums"]["ImGuiKey_"][83]["name"] = "ImGuiKey_RightBracket" -defs["enums"]["ImGuiKey_"][83]["value"] = "593" -defs["enums"]["ImGuiKey_"][84] = {} -defs["enums"]["ImGuiKey_"][84]["calc_value"] = 594 -defs["enums"]["ImGuiKey_"][84]["name"] = "ImGuiKey_GraveAccent" -defs["enums"]["ImGuiKey_"][84]["value"] = "594" -defs["enums"]["ImGuiKey_"][85] = {} -defs["enums"]["ImGuiKey_"][85]["calc_value"] = 595 -defs["enums"]["ImGuiKey_"][85]["name"] = "ImGuiKey_CapsLock" -defs["enums"]["ImGuiKey_"][85]["value"] = "595" -defs["enums"]["ImGuiKey_"][86] = {} -defs["enums"]["ImGuiKey_"][86]["calc_value"] = 596 -defs["enums"]["ImGuiKey_"][86]["name"] = "ImGuiKey_ScrollLock" -defs["enums"]["ImGuiKey_"][86]["value"] = "596" -defs["enums"]["ImGuiKey_"][87] = {} -defs["enums"]["ImGuiKey_"][87]["calc_value"] = 597 -defs["enums"]["ImGuiKey_"][87]["name"] = "ImGuiKey_NumLock" -defs["enums"]["ImGuiKey_"][87]["value"] = "597" -defs["enums"]["ImGuiKey_"][88] = {} -defs["enums"]["ImGuiKey_"][88]["calc_value"] = 598 -defs["enums"]["ImGuiKey_"][88]["name"] = "ImGuiKey_PrintScreen" -defs["enums"]["ImGuiKey_"][88]["value"] = "598" -defs["enums"]["ImGuiKey_"][89] = {} -defs["enums"]["ImGuiKey_"][89]["calc_value"] = 599 -defs["enums"]["ImGuiKey_"][89]["name"] = "ImGuiKey_Pause" -defs["enums"]["ImGuiKey_"][89]["value"] = "599" -defs["enums"]["ImGuiKey_"][90] = {} -defs["enums"]["ImGuiKey_"][90]["calc_value"] = 600 -defs["enums"]["ImGuiKey_"][90]["name"] = "ImGuiKey_Keypad0" -defs["enums"]["ImGuiKey_"][90]["value"] = "600" -defs["enums"]["ImGuiKey_"][91] = {} -defs["enums"]["ImGuiKey_"][91]["calc_value"] = 601 -defs["enums"]["ImGuiKey_"][91]["name"] = "ImGuiKey_Keypad1" -defs["enums"]["ImGuiKey_"][91]["value"] = "601" -defs["enums"]["ImGuiKey_"][92] = {} -defs["enums"]["ImGuiKey_"][92]["calc_value"] = 602 -defs["enums"]["ImGuiKey_"][92]["name"] = "ImGuiKey_Keypad2" -defs["enums"]["ImGuiKey_"][92]["value"] = "602" -defs["enums"]["ImGuiKey_"][93] = {} -defs["enums"]["ImGuiKey_"][93]["calc_value"] = 603 -defs["enums"]["ImGuiKey_"][93]["name"] = "ImGuiKey_Keypad3" -defs["enums"]["ImGuiKey_"][93]["value"] = "603" -defs["enums"]["ImGuiKey_"][94] = {} -defs["enums"]["ImGuiKey_"][94]["calc_value"] = 604 -defs["enums"]["ImGuiKey_"][94]["name"] = "ImGuiKey_Keypad4" -defs["enums"]["ImGuiKey_"][94]["value"] = "604" -defs["enums"]["ImGuiKey_"][95] = {} -defs["enums"]["ImGuiKey_"][95]["calc_value"] = 605 -defs["enums"]["ImGuiKey_"][95]["name"] = "ImGuiKey_Keypad5" -defs["enums"]["ImGuiKey_"][95]["value"] = "605" -defs["enums"]["ImGuiKey_"][96] = {} -defs["enums"]["ImGuiKey_"][96]["calc_value"] = 606 -defs["enums"]["ImGuiKey_"][96]["name"] = "ImGuiKey_Keypad6" -defs["enums"]["ImGuiKey_"][96]["value"] = "606" -defs["enums"]["ImGuiKey_"][97] = {} -defs["enums"]["ImGuiKey_"][97]["calc_value"] = 607 -defs["enums"]["ImGuiKey_"][97]["name"] = "ImGuiKey_Keypad7" -defs["enums"]["ImGuiKey_"][97]["value"] = "607" -defs["enums"]["ImGuiKey_"][98] = {} -defs["enums"]["ImGuiKey_"][98]["calc_value"] = 608 -defs["enums"]["ImGuiKey_"][98]["name"] = "ImGuiKey_Keypad8" -defs["enums"]["ImGuiKey_"][98]["value"] = "608" -defs["enums"]["ImGuiKey_"][99] = {} -defs["enums"]["ImGuiKey_"][99]["calc_value"] = 609 -defs["enums"]["ImGuiKey_"][99]["name"] = "ImGuiKey_Keypad9" -defs["enums"]["ImGuiKey_"][99]["value"] = "609" -defs["enums"]["ImGuiKey_"][100] = {} -defs["enums"]["ImGuiKey_"][100]["calc_value"] = 610 -defs["enums"]["ImGuiKey_"][100]["name"] = "ImGuiKey_KeypadDecimal" -defs["enums"]["ImGuiKey_"][100]["value"] = "610" -defs["enums"]["ImGuiKey_"][101] = {} -defs["enums"]["ImGuiKey_"][101]["calc_value"] = 611 -defs["enums"]["ImGuiKey_"][101]["name"] = "ImGuiKey_KeypadDivide" -defs["enums"]["ImGuiKey_"][101]["value"] = "611" -defs["enums"]["ImGuiKey_"][102] = {} -defs["enums"]["ImGuiKey_"][102]["calc_value"] = 612 -defs["enums"]["ImGuiKey_"][102]["name"] = "ImGuiKey_KeypadMultiply" -defs["enums"]["ImGuiKey_"][102]["value"] = "612" -defs["enums"]["ImGuiKey_"][103] = {} -defs["enums"]["ImGuiKey_"][103]["calc_value"] = 613 -defs["enums"]["ImGuiKey_"][103]["name"] = "ImGuiKey_KeypadSubtract" -defs["enums"]["ImGuiKey_"][103]["value"] = "613" -defs["enums"]["ImGuiKey_"][104] = {} -defs["enums"]["ImGuiKey_"][104]["calc_value"] = 614 -defs["enums"]["ImGuiKey_"][104]["name"] = "ImGuiKey_KeypadAdd" -defs["enums"]["ImGuiKey_"][104]["value"] = "614" -defs["enums"]["ImGuiKey_"][105] = {} -defs["enums"]["ImGuiKey_"][105]["calc_value"] = 615 -defs["enums"]["ImGuiKey_"][105]["name"] = "ImGuiKey_KeypadEnter" -defs["enums"]["ImGuiKey_"][105]["value"] = "615" -defs["enums"]["ImGuiKey_"][106] = {} -defs["enums"]["ImGuiKey_"][106]["calc_value"] = 616 -defs["enums"]["ImGuiKey_"][106]["name"] = "ImGuiKey_KeypadEqual" -defs["enums"]["ImGuiKey_"][106]["value"] = "616" -defs["enums"]["ImGuiKey_"][107] = {} -defs["enums"]["ImGuiKey_"][107]["calc_value"] = 617 -defs["enums"]["ImGuiKey_"][107]["name"] = "ImGuiKey_GamepadStart" -defs["enums"]["ImGuiKey_"][107]["value"] = "617" -defs["enums"]["ImGuiKey_"][108] = {} -defs["enums"]["ImGuiKey_"][108]["calc_value"] = 618 -defs["enums"]["ImGuiKey_"][108]["name"] = "ImGuiKey_GamepadBack" -defs["enums"]["ImGuiKey_"][108]["value"] = "618" -defs["enums"]["ImGuiKey_"][109] = {} -defs["enums"]["ImGuiKey_"][109]["calc_value"] = 619 -defs["enums"]["ImGuiKey_"][109]["name"] = "ImGuiKey_GamepadFaceUp" -defs["enums"]["ImGuiKey_"][109]["value"] = "619" -defs["enums"]["ImGuiKey_"][110] = {} -defs["enums"]["ImGuiKey_"][110]["calc_value"] = 620 -defs["enums"]["ImGuiKey_"][110]["name"] = "ImGuiKey_GamepadFaceDown" -defs["enums"]["ImGuiKey_"][110]["value"] = "620" -defs["enums"]["ImGuiKey_"][111] = {} -defs["enums"]["ImGuiKey_"][111]["calc_value"] = 621 -defs["enums"]["ImGuiKey_"][111]["name"] = "ImGuiKey_GamepadFaceLeft" -defs["enums"]["ImGuiKey_"][111]["value"] = "621" -defs["enums"]["ImGuiKey_"][112] = {} -defs["enums"]["ImGuiKey_"][112]["calc_value"] = 622 -defs["enums"]["ImGuiKey_"][112]["name"] = "ImGuiKey_GamepadFaceRight" -defs["enums"]["ImGuiKey_"][112]["value"] = "622" -defs["enums"]["ImGuiKey_"][113] = {} -defs["enums"]["ImGuiKey_"][113]["calc_value"] = 623 -defs["enums"]["ImGuiKey_"][113]["name"] = "ImGuiKey_GamepadDpadUp" -defs["enums"]["ImGuiKey_"][113]["value"] = "623" -defs["enums"]["ImGuiKey_"][114] = {} -defs["enums"]["ImGuiKey_"][114]["calc_value"] = 624 -defs["enums"]["ImGuiKey_"][114]["name"] = "ImGuiKey_GamepadDpadDown" -defs["enums"]["ImGuiKey_"][114]["value"] = "624" -defs["enums"]["ImGuiKey_"][115] = {} -defs["enums"]["ImGuiKey_"][115]["calc_value"] = 625 -defs["enums"]["ImGuiKey_"][115]["name"] = "ImGuiKey_GamepadDpadLeft" -defs["enums"]["ImGuiKey_"][115]["value"] = "625" -defs["enums"]["ImGuiKey_"][116] = {} -defs["enums"]["ImGuiKey_"][116]["calc_value"] = 626 -defs["enums"]["ImGuiKey_"][116]["name"] = "ImGuiKey_GamepadDpadRight" -defs["enums"]["ImGuiKey_"][116]["value"] = "626" -defs["enums"]["ImGuiKey_"][117] = {} -defs["enums"]["ImGuiKey_"][117]["calc_value"] = 627 -defs["enums"]["ImGuiKey_"][117]["name"] = "ImGuiKey_GamepadL1" -defs["enums"]["ImGuiKey_"][117]["value"] = "627" -defs["enums"]["ImGuiKey_"][118] = {} -defs["enums"]["ImGuiKey_"][118]["calc_value"] = 628 -defs["enums"]["ImGuiKey_"][118]["name"] = "ImGuiKey_GamepadR1" -defs["enums"]["ImGuiKey_"][118]["value"] = "628" -defs["enums"]["ImGuiKey_"][119] = {} -defs["enums"]["ImGuiKey_"][119]["calc_value"] = 629 -defs["enums"]["ImGuiKey_"][119]["name"] = "ImGuiKey_GamepadL2" -defs["enums"]["ImGuiKey_"][119]["value"] = "629" -defs["enums"]["ImGuiKey_"][120] = {} -defs["enums"]["ImGuiKey_"][120]["calc_value"] = 630 -defs["enums"]["ImGuiKey_"][120]["name"] = "ImGuiKey_GamepadR2" -defs["enums"]["ImGuiKey_"][120]["value"] = "630" -defs["enums"]["ImGuiKey_"][121] = {} -defs["enums"]["ImGuiKey_"][121]["calc_value"] = 631 -defs["enums"]["ImGuiKey_"][121]["name"] = "ImGuiKey_GamepadL3" -defs["enums"]["ImGuiKey_"][121]["value"] = "631" -defs["enums"]["ImGuiKey_"][122] = {} -defs["enums"]["ImGuiKey_"][122]["calc_value"] = 632 -defs["enums"]["ImGuiKey_"][122]["name"] = "ImGuiKey_GamepadR3" -defs["enums"]["ImGuiKey_"][122]["value"] = "632" -defs["enums"]["ImGuiKey_"][123] = {} -defs["enums"]["ImGuiKey_"][123]["calc_value"] = 633 -defs["enums"]["ImGuiKey_"][123]["name"] = "ImGuiKey_GamepadLStickUp" -defs["enums"]["ImGuiKey_"][123]["value"] = "633" -defs["enums"]["ImGuiKey_"][124] = {} -defs["enums"]["ImGuiKey_"][124]["calc_value"] = 634 -defs["enums"]["ImGuiKey_"][124]["name"] = "ImGuiKey_GamepadLStickDown" -defs["enums"]["ImGuiKey_"][124]["value"] = "634" -defs["enums"]["ImGuiKey_"][125] = {} -defs["enums"]["ImGuiKey_"][125]["calc_value"] = 635 -defs["enums"]["ImGuiKey_"][125]["name"] = "ImGuiKey_GamepadLStickLeft" -defs["enums"]["ImGuiKey_"][125]["value"] = "635" -defs["enums"]["ImGuiKey_"][126] = {} -defs["enums"]["ImGuiKey_"][126]["calc_value"] = 636 -defs["enums"]["ImGuiKey_"][126]["name"] = "ImGuiKey_GamepadLStickRight" -defs["enums"]["ImGuiKey_"][126]["value"] = "636" -defs["enums"]["ImGuiKey_"][127] = {} -defs["enums"]["ImGuiKey_"][127]["calc_value"] = 637 -defs["enums"]["ImGuiKey_"][127]["name"] = "ImGuiKey_GamepadRStickUp" -defs["enums"]["ImGuiKey_"][127]["value"] = "637" -defs["enums"]["ImGuiKey_"][128] = {} -defs["enums"]["ImGuiKey_"][128]["calc_value"] = 638 -defs["enums"]["ImGuiKey_"][128]["name"] = "ImGuiKey_GamepadRStickDown" -defs["enums"]["ImGuiKey_"][128]["value"] = "638" -defs["enums"]["ImGuiKey_"][129] = {} -defs["enums"]["ImGuiKey_"][129]["calc_value"] = 639 -defs["enums"]["ImGuiKey_"][129]["name"] = "ImGuiKey_GamepadRStickLeft" -defs["enums"]["ImGuiKey_"][129]["value"] = "639" -defs["enums"]["ImGuiKey_"][130] = {} -defs["enums"]["ImGuiKey_"][130]["calc_value"] = 640 -defs["enums"]["ImGuiKey_"][130]["name"] = "ImGuiKey_GamepadRStickRight" -defs["enums"]["ImGuiKey_"][130]["value"] = "640" -defs["enums"]["ImGuiKey_"][131] = {} -defs["enums"]["ImGuiKey_"][131]["calc_value"] = 641 -defs["enums"]["ImGuiKey_"][131]["name"] = "ImGuiKey_ModCtrl" -defs["enums"]["ImGuiKey_"][131]["value"] = "641" -defs["enums"]["ImGuiKey_"][132] = {} -defs["enums"]["ImGuiKey_"][132]["calc_value"] = 642 -defs["enums"]["ImGuiKey_"][132]["name"] = "ImGuiKey_ModShift" -defs["enums"]["ImGuiKey_"][132]["value"] = "642" -defs["enums"]["ImGuiKey_"][133] = {} -defs["enums"]["ImGuiKey_"][133]["calc_value"] = 643 -defs["enums"]["ImGuiKey_"][133]["name"] = "ImGuiKey_ModAlt" -defs["enums"]["ImGuiKey_"][133]["value"] = "643" -defs["enums"]["ImGuiKey_"][134] = {} -defs["enums"]["ImGuiKey_"][134]["calc_value"] = 644 -defs["enums"]["ImGuiKey_"][134]["name"] = "ImGuiKey_ModSuper" -defs["enums"]["ImGuiKey_"][134]["value"] = "644" -defs["enums"]["ImGuiKey_"][135] = {} -defs["enums"]["ImGuiKey_"][135]["calc_value"] = 645 -defs["enums"]["ImGuiKey_"][135]["name"] = "ImGuiKey_COUNT" -defs["enums"]["ImGuiKey_"][135]["value"] = "645" -defs["enums"]["ImGuiKey_"][136] = {} -defs["enums"]["ImGuiKey_"][136]["calc_value"] = 512 -defs["enums"]["ImGuiKey_"][136]["name"] = "ImGuiKey_NamedKey_BEGIN" -defs["enums"]["ImGuiKey_"][136]["value"] = "512" -defs["enums"]["ImGuiKey_"][137] = {} -defs["enums"]["ImGuiKey_"][137]["calc_value"] = 645 -defs["enums"]["ImGuiKey_"][137]["name"] = "ImGuiKey_NamedKey_END" -defs["enums"]["ImGuiKey_"][137]["value"] = "ImGuiKey_COUNT" -defs["enums"]["ImGuiKey_"][138] = {} -defs["enums"]["ImGuiKey_"][138]["calc_value"] = 133 -defs["enums"]["ImGuiKey_"][138]["name"] = "ImGuiKey_NamedKey_COUNT" -defs["enums"]["ImGuiKey_"][138]["value"] = "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" -defs["enums"]["ImGuiKey_"][139] = {} -defs["enums"]["ImGuiKey_"][139]["calc_value"] = 645 -defs["enums"]["ImGuiKey_"][139]["name"] = "ImGuiKey_KeysData_SIZE" -defs["enums"]["ImGuiKey_"][139]["value"] = "ImGuiKey_COUNT" -defs["enums"]["ImGuiKey_"][140] = {} -defs["enums"]["ImGuiKey_"][140]["calc_value"] = 0 -defs["enums"]["ImGuiKey_"][140]["name"] = "ImGuiKey_KeysData_OFFSET" -defs["enums"]["ImGuiKey_"][140]["value"] = "0" +defs["enums"]["ImGuiItemStatusFlags_"][11] = {} +defs["enums"]["ImGuiItemStatusFlags_"][11]["calc_value"] = 512 +defs["enums"]["ImGuiItemStatusFlags_"][11]["name"] = "ImGuiItemStatusFlags_Visible" +defs["enums"]["ImGuiItemStatusFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiKey"] = {} +defs["enums"]["ImGuiKey"][1] = {} +defs["enums"]["ImGuiKey"][1]["calc_value"] = 0 +defs["enums"]["ImGuiKey"][1]["name"] = "ImGuiKey_None" +defs["enums"]["ImGuiKey"][1]["value"] = "0" +defs["enums"]["ImGuiKey"][2] = {} +defs["enums"]["ImGuiKey"][2]["calc_value"] = 512 +defs["enums"]["ImGuiKey"][2]["name"] = "ImGuiKey_Tab" +defs["enums"]["ImGuiKey"][2]["value"] = "512" +defs["enums"]["ImGuiKey"][3] = {} +defs["enums"]["ImGuiKey"][3]["calc_value"] = 513 +defs["enums"]["ImGuiKey"][3]["name"] = "ImGuiKey_LeftArrow" +defs["enums"]["ImGuiKey"][3]["value"] = "513" +defs["enums"]["ImGuiKey"][4] = {} +defs["enums"]["ImGuiKey"][4]["calc_value"] = 514 +defs["enums"]["ImGuiKey"][4]["name"] = "ImGuiKey_RightArrow" +defs["enums"]["ImGuiKey"][4]["value"] = "514" +defs["enums"]["ImGuiKey"][5] = {} +defs["enums"]["ImGuiKey"][5]["calc_value"] = 515 +defs["enums"]["ImGuiKey"][5]["name"] = "ImGuiKey_UpArrow" +defs["enums"]["ImGuiKey"][5]["value"] = "515" +defs["enums"]["ImGuiKey"][6] = {} +defs["enums"]["ImGuiKey"][6]["calc_value"] = 516 +defs["enums"]["ImGuiKey"][6]["name"] = "ImGuiKey_DownArrow" +defs["enums"]["ImGuiKey"][6]["value"] = "516" +defs["enums"]["ImGuiKey"][7] = {} +defs["enums"]["ImGuiKey"][7]["calc_value"] = 517 +defs["enums"]["ImGuiKey"][7]["name"] = "ImGuiKey_PageUp" +defs["enums"]["ImGuiKey"][7]["value"] = "517" +defs["enums"]["ImGuiKey"][8] = {} +defs["enums"]["ImGuiKey"][8]["calc_value"] = 518 +defs["enums"]["ImGuiKey"][8]["name"] = "ImGuiKey_PageDown" +defs["enums"]["ImGuiKey"][8]["value"] = "518" +defs["enums"]["ImGuiKey"][9] = {} +defs["enums"]["ImGuiKey"][9]["calc_value"] = 519 +defs["enums"]["ImGuiKey"][9]["name"] = "ImGuiKey_Home" +defs["enums"]["ImGuiKey"][9]["value"] = "519" +defs["enums"]["ImGuiKey"][10] = {} +defs["enums"]["ImGuiKey"][10]["calc_value"] = 520 +defs["enums"]["ImGuiKey"][10]["name"] = "ImGuiKey_End" +defs["enums"]["ImGuiKey"][10]["value"] = "520" +defs["enums"]["ImGuiKey"][11] = {} +defs["enums"]["ImGuiKey"][11]["calc_value"] = 521 +defs["enums"]["ImGuiKey"][11]["name"] = "ImGuiKey_Insert" +defs["enums"]["ImGuiKey"][11]["value"] = "521" +defs["enums"]["ImGuiKey"][12] = {} +defs["enums"]["ImGuiKey"][12]["calc_value"] = 522 +defs["enums"]["ImGuiKey"][12]["name"] = "ImGuiKey_Delete" +defs["enums"]["ImGuiKey"][12]["value"] = "522" +defs["enums"]["ImGuiKey"][13] = {} +defs["enums"]["ImGuiKey"][13]["calc_value"] = 523 +defs["enums"]["ImGuiKey"][13]["name"] = "ImGuiKey_Backspace" +defs["enums"]["ImGuiKey"][13]["value"] = "523" +defs["enums"]["ImGuiKey"][14] = {} +defs["enums"]["ImGuiKey"][14]["calc_value"] = 524 +defs["enums"]["ImGuiKey"][14]["name"] = "ImGuiKey_Space" +defs["enums"]["ImGuiKey"][14]["value"] = "524" +defs["enums"]["ImGuiKey"][15] = {} +defs["enums"]["ImGuiKey"][15]["calc_value"] = 525 +defs["enums"]["ImGuiKey"][15]["name"] = "ImGuiKey_Enter" +defs["enums"]["ImGuiKey"][15]["value"] = "525" +defs["enums"]["ImGuiKey"][16] = {} +defs["enums"]["ImGuiKey"][16]["calc_value"] = 526 +defs["enums"]["ImGuiKey"][16]["name"] = "ImGuiKey_Escape" +defs["enums"]["ImGuiKey"][16]["value"] = "526" +defs["enums"]["ImGuiKey"][17] = {} +defs["enums"]["ImGuiKey"][17]["calc_value"] = 527 +defs["enums"]["ImGuiKey"][17]["name"] = "ImGuiKey_LeftCtrl" +defs["enums"]["ImGuiKey"][17]["value"] = "527" +defs["enums"]["ImGuiKey"][18] = {} +defs["enums"]["ImGuiKey"][18]["calc_value"] = 528 +defs["enums"]["ImGuiKey"][18]["name"] = "ImGuiKey_LeftShift" +defs["enums"]["ImGuiKey"][18]["value"] = "528" +defs["enums"]["ImGuiKey"][19] = {} +defs["enums"]["ImGuiKey"][19]["calc_value"] = 529 +defs["enums"]["ImGuiKey"][19]["name"] = "ImGuiKey_LeftAlt" +defs["enums"]["ImGuiKey"][19]["value"] = "529" +defs["enums"]["ImGuiKey"][20] = {} +defs["enums"]["ImGuiKey"][20]["calc_value"] = 530 +defs["enums"]["ImGuiKey"][20]["name"] = "ImGuiKey_LeftSuper" +defs["enums"]["ImGuiKey"][20]["value"] = "530" +defs["enums"]["ImGuiKey"][21] = {} +defs["enums"]["ImGuiKey"][21]["calc_value"] = 531 +defs["enums"]["ImGuiKey"][21]["name"] = "ImGuiKey_RightCtrl" +defs["enums"]["ImGuiKey"][21]["value"] = "531" +defs["enums"]["ImGuiKey"][22] = {} +defs["enums"]["ImGuiKey"][22]["calc_value"] = 532 +defs["enums"]["ImGuiKey"][22]["name"] = "ImGuiKey_RightShift" +defs["enums"]["ImGuiKey"][22]["value"] = "532" +defs["enums"]["ImGuiKey"][23] = {} +defs["enums"]["ImGuiKey"][23]["calc_value"] = 533 +defs["enums"]["ImGuiKey"][23]["name"] = "ImGuiKey_RightAlt" +defs["enums"]["ImGuiKey"][23]["value"] = "533" +defs["enums"]["ImGuiKey"][24] = {} +defs["enums"]["ImGuiKey"][24]["calc_value"] = 534 +defs["enums"]["ImGuiKey"][24]["name"] = "ImGuiKey_RightSuper" +defs["enums"]["ImGuiKey"][24]["value"] = "534" +defs["enums"]["ImGuiKey"][25] = {} +defs["enums"]["ImGuiKey"][25]["calc_value"] = 535 +defs["enums"]["ImGuiKey"][25]["name"] = "ImGuiKey_Menu" +defs["enums"]["ImGuiKey"][25]["value"] = "535" +defs["enums"]["ImGuiKey"][26] = {} +defs["enums"]["ImGuiKey"][26]["calc_value"] = 536 +defs["enums"]["ImGuiKey"][26]["name"] = "ImGuiKey_0" +defs["enums"]["ImGuiKey"][26]["value"] = "536" +defs["enums"]["ImGuiKey"][27] = {} +defs["enums"]["ImGuiKey"][27]["calc_value"] = 537 +defs["enums"]["ImGuiKey"][27]["name"] = "ImGuiKey_1" +defs["enums"]["ImGuiKey"][27]["value"] = "537" +defs["enums"]["ImGuiKey"][28] = {} +defs["enums"]["ImGuiKey"][28]["calc_value"] = 538 +defs["enums"]["ImGuiKey"][28]["name"] = "ImGuiKey_2" +defs["enums"]["ImGuiKey"][28]["value"] = "538" +defs["enums"]["ImGuiKey"][29] = {} +defs["enums"]["ImGuiKey"][29]["calc_value"] = 539 +defs["enums"]["ImGuiKey"][29]["name"] = "ImGuiKey_3" +defs["enums"]["ImGuiKey"][29]["value"] = "539" +defs["enums"]["ImGuiKey"][30] = {} +defs["enums"]["ImGuiKey"][30]["calc_value"] = 540 +defs["enums"]["ImGuiKey"][30]["name"] = "ImGuiKey_4" +defs["enums"]["ImGuiKey"][30]["value"] = "540" +defs["enums"]["ImGuiKey"][31] = {} +defs["enums"]["ImGuiKey"][31]["calc_value"] = 541 +defs["enums"]["ImGuiKey"][31]["name"] = "ImGuiKey_5" +defs["enums"]["ImGuiKey"][31]["value"] = "541" +defs["enums"]["ImGuiKey"][32] = {} +defs["enums"]["ImGuiKey"][32]["calc_value"] = 542 +defs["enums"]["ImGuiKey"][32]["name"] = "ImGuiKey_6" +defs["enums"]["ImGuiKey"][32]["value"] = "542" +defs["enums"]["ImGuiKey"][33] = {} +defs["enums"]["ImGuiKey"][33]["calc_value"] = 543 +defs["enums"]["ImGuiKey"][33]["name"] = "ImGuiKey_7" +defs["enums"]["ImGuiKey"][33]["value"] = "543" +defs["enums"]["ImGuiKey"][34] = {} +defs["enums"]["ImGuiKey"][34]["calc_value"] = 544 +defs["enums"]["ImGuiKey"][34]["name"] = "ImGuiKey_8" +defs["enums"]["ImGuiKey"][34]["value"] = "544" +defs["enums"]["ImGuiKey"][35] = {} +defs["enums"]["ImGuiKey"][35]["calc_value"] = 545 +defs["enums"]["ImGuiKey"][35]["name"] = "ImGuiKey_9" +defs["enums"]["ImGuiKey"][35]["value"] = "545" +defs["enums"]["ImGuiKey"][36] = {} +defs["enums"]["ImGuiKey"][36]["calc_value"] = 546 +defs["enums"]["ImGuiKey"][36]["name"] = "ImGuiKey_A" +defs["enums"]["ImGuiKey"][36]["value"] = "546" +defs["enums"]["ImGuiKey"][37] = {} +defs["enums"]["ImGuiKey"][37]["calc_value"] = 547 +defs["enums"]["ImGuiKey"][37]["name"] = "ImGuiKey_B" +defs["enums"]["ImGuiKey"][37]["value"] = "547" +defs["enums"]["ImGuiKey"][38] = {} +defs["enums"]["ImGuiKey"][38]["calc_value"] = 548 +defs["enums"]["ImGuiKey"][38]["name"] = "ImGuiKey_C" +defs["enums"]["ImGuiKey"][38]["value"] = "548" +defs["enums"]["ImGuiKey"][39] = {} +defs["enums"]["ImGuiKey"][39]["calc_value"] = 549 +defs["enums"]["ImGuiKey"][39]["name"] = "ImGuiKey_D" +defs["enums"]["ImGuiKey"][39]["value"] = "549" +defs["enums"]["ImGuiKey"][40] = {} +defs["enums"]["ImGuiKey"][40]["calc_value"] = 550 +defs["enums"]["ImGuiKey"][40]["name"] = "ImGuiKey_E" +defs["enums"]["ImGuiKey"][40]["value"] = "550" +defs["enums"]["ImGuiKey"][41] = {} +defs["enums"]["ImGuiKey"][41]["calc_value"] = 551 +defs["enums"]["ImGuiKey"][41]["name"] = "ImGuiKey_F" +defs["enums"]["ImGuiKey"][41]["value"] = "551" +defs["enums"]["ImGuiKey"][42] = {} +defs["enums"]["ImGuiKey"][42]["calc_value"] = 552 +defs["enums"]["ImGuiKey"][42]["name"] = "ImGuiKey_G" +defs["enums"]["ImGuiKey"][42]["value"] = "552" +defs["enums"]["ImGuiKey"][43] = {} +defs["enums"]["ImGuiKey"][43]["calc_value"] = 553 +defs["enums"]["ImGuiKey"][43]["name"] = "ImGuiKey_H" +defs["enums"]["ImGuiKey"][43]["value"] = "553" +defs["enums"]["ImGuiKey"][44] = {} +defs["enums"]["ImGuiKey"][44]["calc_value"] = 554 +defs["enums"]["ImGuiKey"][44]["name"] = "ImGuiKey_I" +defs["enums"]["ImGuiKey"][44]["value"] = "554" +defs["enums"]["ImGuiKey"][45] = {} +defs["enums"]["ImGuiKey"][45]["calc_value"] = 555 +defs["enums"]["ImGuiKey"][45]["name"] = "ImGuiKey_J" +defs["enums"]["ImGuiKey"][45]["value"] = "555" +defs["enums"]["ImGuiKey"][46] = {} +defs["enums"]["ImGuiKey"][46]["calc_value"] = 556 +defs["enums"]["ImGuiKey"][46]["name"] = "ImGuiKey_K" +defs["enums"]["ImGuiKey"][46]["value"] = "556" +defs["enums"]["ImGuiKey"][47] = {} +defs["enums"]["ImGuiKey"][47]["calc_value"] = 557 +defs["enums"]["ImGuiKey"][47]["name"] = "ImGuiKey_L" +defs["enums"]["ImGuiKey"][47]["value"] = "557" +defs["enums"]["ImGuiKey"][48] = {} +defs["enums"]["ImGuiKey"][48]["calc_value"] = 558 +defs["enums"]["ImGuiKey"][48]["name"] = "ImGuiKey_M" +defs["enums"]["ImGuiKey"][48]["value"] = "558" +defs["enums"]["ImGuiKey"][49] = {} +defs["enums"]["ImGuiKey"][49]["calc_value"] = 559 +defs["enums"]["ImGuiKey"][49]["name"] = "ImGuiKey_N" +defs["enums"]["ImGuiKey"][49]["value"] = "559" +defs["enums"]["ImGuiKey"][50] = {} +defs["enums"]["ImGuiKey"][50]["calc_value"] = 560 +defs["enums"]["ImGuiKey"][50]["name"] = "ImGuiKey_O" +defs["enums"]["ImGuiKey"][50]["value"] = "560" +defs["enums"]["ImGuiKey"][51] = {} +defs["enums"]["ImGuiKey"][51]["calc_value"] = 561 +defs["enums"]["ImGuiKey"][51]["name"] = "ImGuiKey_P" +defs["enums"]["ImGuiKey"][51]["value"] = "561" +defs["enums"]["ImGuiKey"][52] = {} +defs["enums"]["ImGuiKey"][52]["calc_value"] = 562 +defs["enums"]["ImGuiKey"][52]["name"] = "ImGuiKey_Q" +defs["enums"]["ImGuiKey"][52]["value"] = "562" +defs["enums"]["ImGuiKey"][53] = {} +defs["enums"]["ImGuiKey"][53]["calc_value"] = 563 +defs["enums"]["ImGuiKey"][53]["name"] = "ImGuiKey_R" +defs["enums"]["ImGuiKey"][53]["value"] = "563" +defs["enums"]["ImGuiKey"][54] = {} +defs["enums"]["ImGuiKey"][54]["calc_value"] = 564 +defs["enums"]["ImGuiKey"][54]["name"] = "ImGuiKey_S" +defs["enums"]["ImGuiKey"][54]["value"] = "564" +defs["enums"]["ImGuiKey"][55] = {} +defs["enums"]["ImGuiKey"][55]["calc_value"] = 565 +defs["enums"]["ImGuiKey"][55]["name"] = "ImGuiKey_T" +defs["enums"]["ImGuiKey"][55]["value"] = "565" +defs["enums"]["ImGuiKey"][56] = {} +defs["enums"]["ImGuiKey"][56]["calc_value"] = 566 +defs["enums"]["ImGuiKey"][56]["name"] = "ImGuiKey_U" +defs["enums"]["ImGuiKey"][56]["value"] = "566" +defs["enums"]["ImGuiKey"][57] = {} +defs["enums"]["ImGuiKey"][57]["calc_value"] = 567 +defs["enums"]["ImGuiKey"][57]["name"] = "ImGuiKey_V" +defs["enums"]["ImGuiKey"][57]["value"] = "567" +defs["enums"]["ImGuiKey"][58] = {} +defs["enums"]["ImGuiKey"][58]["calc_value"] = 568 +defs["enums"]["ImGuiKey"][58]["name"] = "ImGuiKey_W" +defs["enums"]["ImGuiKey"][58]["value"] = "568" +defs["enums"]["ImGuiKey"][59] = {} +defs["enums"]["ImGuiKey"][59]["calc_value"] = 569 +defs["enums"]["ImGuiKey"][59]["name"] = "ImGuiKey_X" +defs["enums"]["ImGuiKey"][59]["value"] = "569" +defs["enums"]["ImGuiKey"][60] = {} +defs["enums"]["ImGuiKey"][60]["calc_value"] = 570 +defs["enums"]["ImGuiKey"][60]["name"] = "ImGuiKey_Y" +defs["enums"]["ImGuiKey"][60]["value"] = "570" +defs["enums"]["ImGuiKey"][61] = {} +defs["enums"]["ImGuiKey"][61]["calc_value"] = 571 +defs["enums"]["ImGuiKey"][61]["name"] = "ImGuiKey_Z" +defs["enums"]["ImGuiKey"][61]["value"] = "571" +defs["enums"]["ImGuiKey"][62] = {} +defs["enums"]["ImGuiKey"][62]["calc_value"] = 572 +defs["enums"]["ImGuiKey"][62]["name"] = "ImGuiKey_F1" +defs["enums"]["ImGuiKey"][62]["value"] = "572" +defs["enums"]["ImGuiKey"][63] = {} +defs["enums"]["ImGuiKey"][63]["calc_value"] = 573 +defs["enums"]["ImGuiKey"][63]["name"] = "ImGuiKey_F2" +defs["enums"]["ImGuiKey"][63]["value"] = "573" +defs["enums"]["ImGuiKey"][64] = {} +defs["enums"]["ImGuiKey"][64]["calc_value"] = 574 +defs["enums"]["ImGuiKey"][64]["name"] = "ImGuiKey_F3" +defs["enums"]["ImGuiKey"][64]["value"] = "574" +defs["enums"]["ImGuiKey"][65] = {} +defs["enums"]["ImGuiKey"][65]["calc_value"] = 575 +defs["enums"]["ImGuiKey"][65]["name"] = "ImGuiKey_F4" +defs["enums"]["ImGuiKey"][65]["value"] = "575" +defs["enums"]["ImGuiKey"][66] = {} +defs["enums"]["ImGuiKey"][66]["calc_value"] = 576 +defs["enums"]["ImGuiKey"][66]["name"] = "ImGuiKey_F5" +defs["enums"]["ImGuiKey"][66]["value"] = "576" +defs["enums"]["ImGuiKey"][67] = {} +defs["enums"]["ImGuiKey"][67]["calc_value"] = 577 +defs["enums"]["ImGuiKey"][67]["name"] = "ImGuiKey_F6" +defs["enums"]["ImGuiKey"][67]["value"] = "577" +defs["enums"]["ImGuiKey"][68] = {} +defs["enums"]["ImGuiKey"][68]["calc_value"] = 578 +defs["enums"]["ImGuiKey"][68]["name"] = "ImGuiKey_F7" +defs["enums"]["ImGuiKey"][68]["value"] = "578" +defs["enums"]["ImGuiKey"][69] = {} +defs["enums"]["ImGuiKey"][69]["calc_value"] = 579 +defs["enums"]["ImGuiKey"][69]["name"] = "ImGuiKey_F8" +defs["enums"]["ImGuiKey"][69]["value"] = "579" +defs["enums"]["ImGuiKey"][70] = {} +defs["enums"]["ImGuiKey"][70]["calc_value"] = 580 +defs["enums"]["ImGuiKey"][70]["name"] = "ImGuiKey_F9" +defs["enums"]["ImGuiKey"][70]["value"] = "580" +defs["enums"]["ImGuiKey"][71] = {} +defs["enums"]["ImGuiKey"][71]["calc_value"] = 581 +defs["enums"]["ImGuiKey"][71]["name"] = "ImGuiKey_F10" +defs["enums"]["ImGuiKey"][71]["value"] = "581" +defs["enums"]["ImGuiKey"][72] = {} +defs["enums"]["ImGuiKey"][72]["calc_value"] = 582 +defs["enums"]["ImGuiKey"][72]["name"] = "ImGuiKey_F11" +defs["enums"]["ImGuiKey"][72]["value"] = "582" +defs["enums"]["ImGuiKey"][73] = {} +defs["enums"]["ImGuiKey"][73]["calc_value"] = 583 +defs["enums"]["ImGuiKey"][73]["name"] = "ImGuiKey_F12" +defs["enums"]["ImGuiKey"][73]["value"] = "583" +defs["enums"]["ImGuiKey"][74] = {} +defs["enums"]["ImGuiKey"][74]["calc_value"] = 584 +defs["enums"]["ImGuiKey"][74]["name"] = "ImGuiKey_Apostrophe" +defs["enums"]["ImGuiKey"][74]["value"] = "584" +defs["enums"]["ImGuiKey"][75] = {} +defs["enums"]["ImGuiKey"][75]["calc_value"] = 585 +defs["enums"]["ImGuiKey"][75]["name"] = "ImGuiKey_Comma" +defs["enums"]["ImGuiKey"][75]["value"] = "585" +defs["enums"]["ImGuiKey"][76] = {} +defs["enums"]["ImGuiKey"][76]["calc_value"] = 586 +defs["enums"]["ImGuiKey"][76]["name"] = "ImGuiKey_Minus" +defs["enums"]["ImGuiKey"][76]["value"] = "586" +defs["enums"]["ImGuiKey"][77] = {} +defs["enums"]["ImGuiKey"][77]["calc_value"] = 587 +defs["enums"]["ImGuiKey"][77]["name"] = "ImGuiKey_Period" +defs["enums"]["ImGuiKey"][77]["value"] = "587" +defs["enums"]["ImGuiKey"][78] = {} +defs["enums"]["ImGuiKey"][78]["calc_value"] = 588 +defs["enums"]["ImGuiKey"][78]["name"] = "ImGuiKey_Slash" +defs["enums"]["ImGuiKey"][78]["value"] = "588" +defs["enums"]["ImGuiKey"][79] = {} +defs["enums"]["ImGuiKey"][79]["calc_value"] = 589 +defs["enums"]["ImGuiKey"][79]["name"] = "ImGuiKey_Semicolon" +defs["enums"]["ImGuiKey"][79]["value"] = "589" +defs["enums"]["ImGuiKey"][80] = {} +defs["enums"]["ImGuiKey"][80]["calc_value"] = 590 +defs["enums"]["ImGuiKey"][80]["name"] = "ImGuiKey_Equal" +defs["enums"]["ImGuiKey"][80]["value"] = "590" +defs["enums"]["ImGuiKey"][81] = {} +defs["enums"]["ImGuiKey"][81]["calc_value"] = 591 +defs["enums"]["ImGuiKey"][81]["name"] = "ImGuiKey_LeftBracket" +defs["enums"]["ImGuiKey"][81]["value"] = "591" +defs["enums"]["ImGuiKey"][82] = {} +defs["enums"]["ImGuiKey"][82]["calc_value"] = 592 +defs["enums"]["ImGuiKey"][82]["name"] = "ImGuiKey_Backslash" +defs["enums"]["ImGuiKey"][82]["value"] = "592" +defs["enums"]["ImGuiKey"][83] = {} +defs["enums"]["ImGuiKey"][83]["calc_value"] = 593 +defs["enums"]["ImGuiKey"][83]["name"] = "ImGuiKey_RightBracket" +defs["enums"]["ImGuiKey"][83]["value"] = "593" +defs["enums"]["ImGuiKey"][84] = {} +defs["enums"]["ImGuiKey"][84]["calc_value"] = 594 +defs["enums"]["ImGuiKey"][84]["name"] = "ImGuiKey_GraveAccent" +defs["enums"]["ImGuiKey"][84]["value"] = "594" +defs["enums"]["ImGuiKey"][85] = {} +defs["enums"]["ImGuiKey"][85]["calc_value"] = 595 +defs["enums"]["ImGuiKey"][85]["name"] = "ImGuiKey_CapsLock" +defs["enums"]["ImGuiKey"][85]["value"] = "595" +defs["enums"]["ImGuiKey"][86] = {} +defs["enums"]["ImGuiKey"][86]["calc_value"] = 596 +defs["enums"]["ImGuiKey"][86]["name"] = "ImGuiKey_ScrollLock" +defs["enums"]["ImGuiKey"][86]["value"] = "596" +defs["enums"]["ImGuiKey"][87] = {} +defs["enums"]["ImGuiKey"][87]["calc_value"] = 597 +defs["enums"]["ImGuiKey"][87]["name"] = "ImGuiKey_NumLock" +defs["enums"]["ImGuiKey"][87]["value"] = "597" +defs["enums"]["ImGuiKey"][88] = {} +defs["enums"]["ImGuiKey"][88]["calc_value"] = 598 +defs["enums"]["ImGuiKey"][88]["name"] = "ImGuiKey_PrintScreen" +defs["enums"]["ImGuiKey"][88]["value"] = "598" +defs["enums"]["ImGuiKey"][89] = {} +defs["enums"]["ImGuiKey"][89]["calc_value"] = 599 +defs["enums"]["ImGuiKey"][89]["name"] = "ImGuiKey_Pause" +defs["enums"]["ImGuiKey"][89]["value"] = "599" +defs["enums"]["ImGuiKey"][90] = {} +defs["enums"]["ImGuiKey"][90]["calc_value"] = 600 +defs["enums"]["ImGuiKey"][90]["name"] = "ImGuiKey_Keypad0" +defs["enums"]["ImGuiKey"][90]["value"] = "600" +defs["enums"]["ImGuiKey"][91] = {} +defs["enums"]["ImGuiKey"][91]["calc_value"] = 601 +defs["enums"]["ImGuiKey"][91]["name"] = "ImGuiKey_Keypad1" +defs["enums"]["ImGuiKey"][91]["value"] = "601" +defs["enums"]["ImGuiKey"][92] = {} +defs["enums"]["ImGuiKey"][92]["calc_value"] = 602 +defs["enums"]["ImGuiKey"][92]["name"] = "ImGuiKey_Keypad2" +defs["enums"]["ImGuiKey"][92]["value"] = "602" +defs["enums"]["ImGuiKey"][93] = {} +defs["enums"]["ImGuiKey"][93]["calc_value"] = 603 +defs["enums"]["ImGuiKey"][93]["name"] = "ImGuiKey_Keypad3" +defs["enums"]["ImGuiKey"][93]["value"] = "603" +defs["enums"]["ImGuiKey"][94] = {} +defs["enums"]["ImGuiKey"][94]["calc_value"] = 604 +defs["enums"]["ImGuiKey"][94]["name"] = "ImGuiKey_Keypad4" +defs["enums"]["ImGuiKey"][94]["value"] = "604" +defs["enums"]["ImGuiKey"][95] = {} +defs["enums"]["ImGuiKey"][95]["calc_value"] = 605 +defs["enums"]["ImGuiKey"][95]["name"] = "ImGuiKey_Keypad5" +defs["enums"]["ImGuiKey"][95]["value"] = "605" +defs["enums"]["ImGuiKey"][96] = {} +defs["enums"]["ImGuiKey"][96]["calc_value"] = 606 +defs["enums"]["ImGuiKey"][96]["name"] = "ImGuiKey_Keypad6" +defs["enums"]["ImGuiKey"][96]["value"] = "606" +defs["enums"]["ImGuiKey"][97] = {} +defs["enums"]["ImGuiKey"][97]["calc_value"] = 607 +defs["enums"]["ImGuiKey"][97]["name"] = "ImGuiKey_Keypad7" +defs["enums"]["ImGuiKey"][97]["value"] = "607" +defs["enums"]["ImGuiKey"][98] = {} +defs["enums"]["ImGuiKey"][98]["calc_value"] = 608 +defs["enums"]["ImGuiKey"][98]["name"] = "ImGuiKey_Keypad8" +defs["enums"]["ImGuiKey"][98]["value"] = "608" +defs["enums"]["ImGuiKey"][99] = {} +defs["enums"]["ImGuiKey"][99]["calc_value"] = 609 +defs["enums"]["ImGuiKey"][99]["name"] = "ImGuiKey_Keypad9" +defs["enums"]["ImGuiKey"][99]["value"] = "609" +defs["enums"]["ImGuiKey"][100] = {} +defs["enums"]["ImGuiKey"][100]["calc_value"] = 610 +defs["enums"]["ImGuiKey"][100]["name"] = "ImGuiKey_KeypadDecimal" +defs["enums"]["ImGuiKey"][100]["value"] = "610" +defs["enums"]["ImGuiKey"][101] = {} +defs["enums"]["ImGuiKey"][101]["calc_value"] = 611 +defs["enums"]["ImGuiKey"][101]["name"] = "ImGuiKey_KeypadDivide" +defs["enums"]["ImGuiKey"][101]["value"] = "611" +defs["enums"]["ImGuiKey"][102] = {} +defs["enums"]["ImGuiKey"][102]["calc_value"] = 612 +defs["enums"]["ImGuiKey"][102]["name"] = "ImGuiKey_KeypadMultiply" +defs["enums"]["ImGuiKey"][102]["value"] = "612" +defs["enums"]["ImGuiKey"][103] = {} +defs["enums"]["ImGuiKey"][103]["calc_value"] = 613 +defs["enums"]["ImGuiKey"][103]["name"] = "ImGuiKey_KeypadSubtract" +defs["enums"]["ImGuiKey"][103]["value"] = "613" +defs["enums"]["ImGuiKey"][104] = {} +defs["enums"]["ImGuiKey"][104]["calc_value"] = 614 +defs["enums"]["ImGuiKey"][104]["name"] = "ImGuiKey_KeypadAdd" +defs["enums"]["ImGuiKey"][104]["value"] = "614" +defs["enums"]["ImGuiKey"][105] = {} +defs["enums"]["ImGuiKey"][105]["calc_value"] = 615 +defs["enums"]["ImGuiKey"][105]["name"] = "ImGuiKey_KeypadEnter" +defs["enums"]["ImGuiKey"][105]["value"] = "615" +defs["enums"]["ImGuiKey"][106] = {} +defs["enums"]["ImGuiKey"][106]["calc_value"] = 616 +defs["enums"]["ImGuiKey"][106]["name"] = "ImGuiKey_KeypadEqual" +defs["enums"]["ImGuiKey"][106]["value"] = "616" +defs["enums"]["ImGuiKey"][107] = {} +defs["enums"]["ImGuiKey"][107]["calc_value"] = 617 +defs["enums"]["ImGuiKey"][107]["name"] = "ImGuiKey_GamepadStart" +defs["enums"]["ImGuiKey"][107]["value"] = "617" +defs["enums"]["ImGuiKey"][108] = {} +defs["enums"]["ImGuiKey"][108]["calc_value"] = 618 +defs["enums"]["ImGuiKey"][108]["name"] = "ImGuiKey_GamepadBack" +defs["enums"]["ImGuiKey"][108]["value"] = "618" +defs["enums"]["ImGuiKey"][109] = {} +defs["enums"]["ImGuiKey"][109]["calc_value"] = 619 +defs["enums"]["ImGuiKey"][109]["name"] = "ImGuiKey_GamepadFaceLeft" +defs["enums"]["ImGuiKey"][109]["value"] = "619" +defs["enums"]["ImGuiKey"][110] = {} +defs["enums"]["ImGuiKey"][110]["calc_value"] = 620 +defs["enums"]["ImGuiKey"][110]["name"] = "ImGuiKey_GamepadFaceRight" +defs["enums"]["ImGuiKey"][110]["value"] = "620" +defs["enums"]["ImGuiKey"][111] = {} +defs["enums"]["ImGuiKey"][111]["calc_value"] = 621 +defs["enums"]["ImGuiKey"][111]["name"] = "ImGuiKey_GamepadFaceUp" +defs["enums"]["ImGuiKey"][111]["value"] = "621" +defs["enums"]["ImGuiKey"][112] = {} +defs["enums"]["ImGuiKey"][112]["calc_value"] = 622 +defs["enums"]["ImGuiKey"][112]["name"] = "ImGuiKey_GamepadFaceDown" +defs["enums"]["ImGuiKey"][112]["value"] = "622" +defs["enums"]["ImGuiKey"][113] = {} +defs["enums"]["ImGuiKey"][113]["calc_value"] = 623 +defs["enums"]["ImGuiKey"][113]["name"] = "ImGuiKey_GamepadDpadLeft" +defs["enums"]["ImGuiKey"][113]["value"] = "623" +defs["enums"]["ImGuiKey"][114] = {} +defs["enums"]["ImGuiKey"][114]["calc_value"] = 624 +defs["enums"]["ImGuiKey"][114]["name"] = "ImGuiKey_GamepadDpadRight" +defs["enums"]["ImGuiKey"][114]["value"] = "624" +defs["enums"]["ImGuiKey"][115] = {} +defs["enums"]["ImGuiKey"][115]["calc_value"] = 625 +defs["enums"]["ImGuiKey"][115]["name"] = "ImGuiKey_GamepadDpadUp" +defs["enums"]["ImGuiKey"][115]["value"] = "625" +defs["enums"]["ImGuiKey"][116] = {} +defs["enums"]["ImGuiKey"][116]["calc_value"] = 626 +defs["enums"]["ImGuiKey"][116]["name"] = "ImGuiKey_GamepadDpadDown" +defs["enums"]["ImGuiKey"][116]["value"] = "626" +defs["enums"]["ImGuiKey"][117] = {} +defs["enums"]["ImGuiKey"][117]["calc_value"] = 627 +defs["enums"]["ImGuiKey"][117]["name"] = "ImGuiKey_GamepadL1" +defs["enums"]["ImGuiKey"][117]["value"] = "627" +defs["enums"]["ImGuiKey"][118] = {} +defs["enums"]["ImGuiKey"][118]["calc_value"] = 628 +defs["enums"]["ImGuiKey"][118]["name"] = "ImGuiKey_GamepadR1" +defs["enums"]["ImGuiKey"][118]["value"] = "628" +defs["enums"]["ImGuiKey"][119] = {} +defs["enums"]["ImGuiKey"][119]["calc_value"] = 629 +defs["enums"]["ImGuiKey"][119]["name"] = "ImGuiKey_GamepadL2" +defs["enums"]["ImGuiKey"][119]["value"] = "629" +defs["enums"]["ImGuiKey"][120] = {} +defs["enums"]["ImGuiKey"][120]["calc_value"] = 630 +defs["enums"]["ImGuiKey"][120]["name"] = "ImGuiKey_GamepadR2" +defs["enums"]["ImGuiKey"][120]["value"] = "630" +defs["enums"]["ImGuiKey"][121] = {} +defs["enums"]["ImGuiKey"][121]["calc_value"] = 631 +defs["enums"]["ImGuiKey"][121]["name"] = "ImGuiKey_GamepadL3" +defs["enums"]["ImGuiKey"][121]["value"] = "631" +defs["enums"]["ImGuiKey"][122] = {} +defs["enums"]["ImGuiKey"][122]["calc_value"] = 632 +defs["enums"]["ImGuiKey"][122]["name"] = "ImGuiKey_GamepadR3" +defs["enums"]["ImGuiKey"][122]["value"] = "632" +defs["enums"]["ImGuiKey"][123] = {} +defs["enums"]["ImGuiKey"][123]["calc_value"] = 633 +defs["enums"]["ImGuiKey"][123]["name"] = "ImGuiKey_GamepadLStickLeft" +defs["enums"]["ImGuiKey"][123]["value"] = "633" +defs["enums"]["ImGuiKey"][124] = {} +defs["enums"]["ImGuiKey"][124]["calc_value"] = 634 +defs["enums"]["ImGuiKey"][124]["name"] = "ImGuiKey_GamepadLStickRight" +defs["enums"]["ImGuiKey"][124]["value"] = "634" +defs["enums"]["ImGuiKey"][125] = {} +defs["enums"]["ImGuiKey"][125]["calc_value"] = 635 +defs["enums"]["ImGuiKey"][125]["name"] = "ImGuiKey_GamepadLStickUp" +defs["enums"]["ImGuiKey"][125]["value"] = "635" +defs["enums"]["ImGuiKey"][126] = {} +defs["enums"]["ImGuiKey"][126]["calc_value"] = 636 +defs["enums"]["ImGuiKey"][126]["name"] = "ImGuiKey_GamepadLStickDown" +defs["enums"]["ImGuiKey"][126]["value"] = "636" +defs["enums"]["ImGuiKey"][127] = {} +defs["enums"]["ImGuiKey"][127]["calc_value"] = 637 +defs["enums"]["ImGuiKey"][127]["name"] = "ImGuiKey_GamepadRStickLeft" +defs["enums"]["ImGuiKey"][127]["value"] = "637" +defs["enums"]["ImGuiKey"][128] = {} +defs["enums"]["ImGuiKey"][128]["calc_value"] = 638 +defs["enums"]["ImGuiKey"][128]["name"] = "ImGuiKey_GamepadRStickRight" +defs["enums"]["ImGuiKey"][128]["value"] = "638" +defs["enums"]["ImGuiKey"][129] = {} +defs["enums"]["ImGuiKey"][129]["calc_value"] = 639 +defs["enums"]["ImGuiKey"][129]["name"] = "ImGuiKey_GamepadRStickUp" +defs["enums"]["ImGuiKey"][129]["value"] = "639" +defs["enums"]["ImGuiKey"][130] = {} +defs["enums"]["ImGuiKey"][130]["calc_value"] = 640 +defs["enums"]["ImGuiKey"][130]["name"] = "ImGuiKey_GamepadRStickDown" +defs["enums"]["ImGuiKey"][130]["value"] = "640" +defs["enums"]["ImGuiKey"][131] = {} +defs["enums"]["ImGuiKey"][131]["calc_value"] = 641 +defs["enums"]["ImGuiKey"][131]["name"] = "ImGuiKey_MouseLeft" +defs["enums"]["ImGuiKey"][131]["value"] = "641" +defs["enums"]["ImGuiKey"][132] = {} +defs["enums"]["ImGuiKey"][132]["calc_value"] = 642 +defs["enums"]["ImGuiKey"][132]["name"] = "ImGuiKey_MouseRight" +defs["enums"]["ImGuiKey"][132]["value"] = "642" +defs["enums"]["ImGuiKey"][133] = {} +defs["enums"]["ImGuiKey"][133]["calc_value"] = 643 +defs["enums"]["ImGuiKey"][133]["name"] = "ImGuiKey_MouseMiddle" +defs["enums"]["ImGuiKey"][133]["value"] = "643" +defs["enums"]["ImGuiKey"][134] = {} +defs["enums"]["ImGuiKey"][134]["calc_value"] = 644 +defs["enums"]["ImGuiKey"][134]["name"] = "ImGuiKey_MouseX1" +defs["enums"]["ImGuiKey"][134]["value"] = "644" +defs["enums"]["ImGuiKey"][135] = {} +defs["enums"]["ImGuiKey"][135]["calc_value"] = 645 +defs["enums"]["ImGuiKey"][135]["name"] = "ImGuiKey_MouseX2" +defs["enums"]["ImGuiKey"][135]["value"] = "645" +defs["enums"]["ImGuiKey"][136] = {} +defs["enums"]["ImGuiKey"][136]["calc_value"] = 646 +defs["enums"]["ImGuiKey"][136]["name"] = "ImGuiKey_MouseWheelX" +defs["enums"]["ImGuiKey"][136]["value"] = "646" +defs["enums"]["ImGuiKey"][137] = {} +defs["enums"]["ImGuiKey"][137]["calc_value"] = 647 +defs["enums"]["ImGuiKey"][137]["name"] = "ImGuiKey_MouseWheelY" +defs["enums"]["ImGuiKey"][137]["value"] = "647" +defs["enums"]["ImGuiKey"][138] = {} +defs["enums"]["ImGuiKey"][138]["calc_value"] = 648 +defs["enums"]["ImGuiKey"][138]["name"] = "ImGuiKey_ReservedForModCtrl" +defs["enums"]["ImGuiKey"][138]["value"] = "648" +defs["enums"]["ImGuiKey"][139] = {} +defs["enums"]["ImGuiKey"][139]["calc_value"] = 649 +defs["enums"]["ImGuiKey"][139]["name"] = "ImGuiKey_ReservedForModShift" +defs["enums"]["ImGuiKey"][139]["value"] = "649" +defs["enums"]["ImGuiKey"][140] = {} +defs["enums"]["ImGuiKey"][140]["calc_value"] = 650 +defs["enums"]["ImGuiKey"][140]["name"] = "ImGuiKey_ReservedForModAlt" +defs["enums"]["ImGuiKey"][140]["value"] = "650" +defs["enums"]["ImGuiKey"][141] = {} +defs["enums"]["ImGuiKey"][141]["calc_value"] = 651 +defs["enums"]["ImGuiKey"][141]["name"] = "ImGuiKey_ReservedForModSuper" +defs["enums"]["ImGuiKey"][141]["value"] = "651" +defs["enums"]["ImGuiKey"][142] = {} +defs["enums"]["ImGuiKey"][142]["calc_value"] = 652 +defs["enums"]["ImGuiKey"][142]["name"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][142]["value"] = "652" +defs["enums"]["ImGuiKey"][143] = {} +defs["enums"]["ImGuiKey"][143]["calc_value"] = 0 +defs["enums"]["ImGuiKey"][143]["name"] = "ImGuiMod_None" +defs["enums"]["ImGuiKey"][143]["value"] = "0" +defs["enums"]["ImGuiKey"][144] = {} +defs["enums"]["ImGuiKey"][144]["calc_value"] = 4096 +defs["enums"]["ImGuiKey"][144]["name"] = "ImGuiMod_Ctrl" +defs["enums"]["ImGuiKey"][144]["value"] = "1 << 12" +defs["enums"]["ImGuiKey"][145] = {} +defs["enums"]["ImGuiKey"][145]["calc_value"] = 8192 +defs["enums"]["ImGuiKey"][145]["name"] = "ImGuiMod_Shift" +defs["enums"]["ImGuiKey"][145]["value"] = "1 << 13" +defs["enums"]["ImGuiKey"][146] = {} +defs["enums"]["ImGuiKey"][146]["calc_value"] = 16384 +defs["enums"]["ImGuiKey"][146]["name"] = "ImGuiMod_Alt" +defs["enums"]["ImGuiKey"][146]["value"] = "1 << 14" +defs["enums"]["ImGuiKey"][147] = {} +defs["enums"]["ImGuiKey"][147]["calc_value"] = 32768 +defs["enums"]["ImGuiKey"][147]["name"] = "ImGuiMod_Super" +defs["enums"]["ImGuiKey"][147]["value"] = "1 << 15" +defs["enums"]["ImGuiKey"][148] = {} +defs["enums"]["ImGuiKey"][148]["calc_value"] = 61440 +defs["enums"]["ImGuiKey"][148]["name"] = "ImGuiMod_Mask_" +defs["enums"]["ImGuiKey"][148]["value"] = "0xF000" +defs["enums"]["ImGuiKey"][149] = {} +defs["enums"]["ImGuiKey"][149]["calc_value"] = 4096 +defs["enums"]["ImGuiKey"][149]["name"] = "ImGuiMod_Shortcut" +defs["enums"]["ImGuiKey"][149]["value"] = "ImGuiMod_Ctrl" +defs["enums"]["ImGuiKey"][150] = {} +defs["enums"]["ImGuiKey"][150]["calc_value"] = 512 +defs["enums"]["ImGuiKey"][150]["name"] = "ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][150]["value"] = "512" +defs["enums"]["ImGuiKey"][151] = {} +defs["enums"]["ImGuiKey"][151]["calc_value"] = 652 +defs["enums"]["ImGuiKey"][151]["name"] = "ImGuiKey_NamedKey_END" +defs["enums"]["ImGuiKey"][151]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][152] = {} +defs["enums"]["ImGuiKey"][152]["calc_value"] = 140 +defs["enums"]["ImGuiKey"][152]["name"] = "ImGuiKey_NamedKey_COUNT" +defs["enums"]["ImGuiKey"][152]["value"] = "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][153] = {} +defs["enums"]["ImGuiKey"][153]["calc_value"] = 652 +defs["enums"]["ImGuiKey"][153]["name"] = "ImGuiKey_KeysData_SIZE" +defs["enums"]["ImGuiKey"][153]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][154] = {} +defs["enums"]["ImGuiKey"][154]["calc_value"] = 0 +defs["enums"]["ImGuiKey"][154]["name"] = "ImGuiKey_KeysData_OFFSET" +defs["enums"]["ImGuiKey"][154]["value"] = "0" defs["enums"]["ImGuiLayoutType_"] = {} defs["enums"]["ImGuiLayoutType_"][1] = {} defs["enums"]["ImGuiLayoutType_"][1]["calc_value"] = 0 @@ -1984,27 +2156,6 @@ defs["enums"]["ImGuiLogType"][5] = {} defs["enums"]["ImGuiLogType"][5]["calc_value"] = 4 defs["enums"]["ImGuiLogType"][5]["name"] = "ImGuiLogType_Clipboard" defs["enums"]["ImGuiLogType"][5]["value"] = "4" -defs["enums"]["ImGuiModFlags_"] = {} -defs["enums"]["ImGuiModFlags_"][1] = {} -defs["enums"]["ImGuiModFlags_"][1]["calc_value"] = 0 -defs["enums"]["ImGuiModFlags_"][1]["name"] = "ImGuiModFlags_None" -defs["enums"]["ImGuiModFlags_"][1]["value"] = "0" -defs["enums"]["ImGuiModFlags_"][2] = {} -defs["enums"]["ImGuiModFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiModFlags_"][2]["name"] = "ImGuiModFlags_Ctrl" -defs["enums"]["ImGuiModFlags_"][2]["value"] = "1 << 0" -defs["enums"]["ImGuiModFlags_"][3] = {} -defs["enums"]["ImGuiModFlags_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiModFlags_"][3]["name"] = "ImGuiModFlags_Shift" -defs["enums"]["ImGuiModFlags_"][3]["value"] = "1 << 1" -defs["enums"]["ImGuiModFlags_"][4] = {} -defs["enums"]["ImGuiModFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiModFlags_"][4]["name"] = "ImGuiModFlags_Alt" -defs["enums"]["ImGuiModFlags_"][4]["value"] = "1 << 2" -defs["enums"]["ImGuiModFlags_"][5] = {} -defs["enums"]["ImGuiModFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiModFlags_"][5]["name"] = "ImGuiModFlags_Super" -defs["enums"]["ImGuiModFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiMouseButton_"] = {} defs["enums"]["ImGuiMouseButton_"][1] = {} defs["enums"]["ImGuiMouseButton_"][1]["calc_value"] = 0 @@ -2067,27 +2218,6 @@ defs["enums"]["ImGuiMouseCursor_"][11] = {} defs["enums"]["ImGuiMouseCursor_"][11]["calc_value"] = 9 defs["enums"]["ImGuiMouseCursor_"][11]["name"] = "ImGuiMouseCursor_COUNT" defs["enums"]["ImGuiMouseCursor_"][11]["value"] = "9" -defs["enums"]["ImGuiNavDirSourceFlags_"] = {} -defs["enums"]["ImGuiNavDirSourceFlags_"][1] = {} -defs["enums"]["ImGuiNavDirSourceFlags_"][1]["calc_value"] = 0 -defs["enums"]["ImGuiNavDirSourceFlags_"][1]["name"] = "ImGuiNavDirSourceFlags_None" -defs["enums"]["ImGuiNavDirSourceFlags_"][1]["value"] = "0" -defs["enums"]["ImGuiNavDirSourceFlags_"][2] = {} -defs["enums"]["ImGuiNavDirSourceFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiNavDirSourceFlags_"][2]["name"] = "ImGuiNavDirSourceFlags_RawKeyboard" -defs["enums"]["ImGuiNavDirSourceFlags_"][2]["value"] = "1 << 0" -defs["enums"]["ImGuiNavDirSourceFlags_"][3] = {} -defs["enums"]["ImGuiNavDirSourceFlags_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiNavDirSourceFlags_"][3]["name"] = "ImGuiNavDirSourceFlags_Keyboard" -defs["enums"]["ImGuiNavDirSourceFlags_"][3]["value"] = "1 << 1" -defs["enums"]["ImGuiNavDirSourceFlags_"][4] = {} -defs["enums"]["ImGuiNavDirSourceFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiNavDirSourceFlags_"][4]["name"] = "ImGuiNavDirSourceFlags_PadDPad" -defs["enums"]["ImGuiNavDirSourceFlags_"][4]["value"] = "1 << 2" -defs["enums"]["ImGuiNavDirSourceFlags_"][5] = {} -defs["enums"]["ImGuiNavDirSourceFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiNavDirSourceFlags_"][5]["name"] = "ImGuiNavDirSourceFlags_PadLStick" -defs["enums"]["ImGuiNavDirSourceFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiNavHighlightFlags_"] = {} defs["enums"]["ImGuiNavHighlightFlags_"][1] = {} defs["enums"]["ImGuiNavHighlightFlags_"][1]["calc_value"] = 0 @@ -2109,91 +2239,75 @@ defs["enums"]["ImGuiNavHighlightFlags_"][5] = {} defs["enums"]["ImGuiNavHighlightFlags_"][5]["calc_value"] = 8 defs["enums"]["ImGuiNavHighlightFlags_"][5]["name"] = "ImGuiNavHighlightFlags_NoRounding" defs["enums"]["ImGuiNavHighlightFlags_"][5]["value"] = "1 << 3" -defs["enums"]["ImGuiNavInput_"] = {} -defs["enums"]["ImGuiNavInput_"][1] = {} -defs["enums"]["ImGuiNavInput_"][1]["calc_value"] = 0 -defs["enums"]["ImGuiNavInput_"][1]["name"] = "ImGuiNavInput_Activate" -defs["enums"]["ImGuiNavInput_"][1]["value"] = "0" -defs["enums"]["ImGuiNavInput_"][2] = {} -defs["enums"]["ImGuiNavInput_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiNavInput_"][2]["name"] = "ImGuiNavInput_Cancel" -defs["enums"]["ImGuiNavInput_"][2]["value"] = "1" -defs["enums"]["ImGuiNavInput_"][3] = {} -defs["enums"]["ImGuiNavInput_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiNavInput_"][3]["name"] = "ImGuiNavInput_Input" -defs["enums"]["ImGuiNavInput_"][3]["value"] = "2" -defs["enums"]["ImGuiNavInput_"][4] = {} -defs["enums"]["ImGuiNavInput_"][4]["calc_value"] = 3 -defs["enums"]["ImGuiNavInput_"][4]["name"] = "ImGuiNavInput_Menu" -defs["enums"]["ImGuiNavInput_"][4]["value"] = "3" -defs["enums"]["ImGuiNavInput_"][5] = {} -defs["enums"]["ImGuiNavInput_"][5]["calc_value"] = 4 -defs["enums"]["ImGuiNavInput_"][5]["name"] = "ImGuiNavInput_DpadLeft" -defs["enums"]["ImGuiNavInput_"][5]["value"] = "4" -defs["enums"]["ImGuiNavInput_"][6] = {} -defs["enums"]["ImGuiNavInput_"][6]["calc_value"] = 5 -defs["enums"]["ImGuiNavInput_"][6]["name"] = "ImGuiNavInput_DpadRight" -defs["enums"]["ImGuiNavInput_"][6]["value"] = "5" -defs["enums"]["ImGuiNavInput_"][7] = {} -defs["enums"]["ImGuiNavInput_"][7]["calc_value"] = 6 -defs["enums"]["ImGuiNavInput_"][7]["name"] = "ImGuiNavInput_DpadUp" -defs["enums"]["ImGuiNavInput_"][7]["value"] = "6" -defs["enums"]["ImGuiNavInput_"][8] = {} -defs["enums"]["ImGuiNavInput_"][8]["calc_value"] = 7 -defs["enums"]["ImGuiNavInput_"][8]["name"] = "ImGuiNavInput_DpadDown" -defs["enums"]["ImGuiNavInput_"][8]["value"] = "7" -defs["enums"]["ImGuiNavInput_"][9] = {} -defs["enums"]["ImGuiNavInput_"][9]["calc_value"] = 8 -defs["enums"]["ImGuiNavInput_"][9]["name"] = "ImGuiNavInput_LStickLeft" -defs["enums"]["ImGuiNavInput_"][9]["value"] = "8" -defs["enums"]["ImGuiNavInput_"][10] = {} -defs["enums"]["ImGuiNavInput_"][10]["calc_value"] = 9 -defs["enums"]["ImGuiNavInput_"][10]["name"] = "ImGuiNavInput_LStickRight" -defs["enums"]["ImGuiNavInput_"][10]["value"] = "9" -defs["enums"]["ImGuiNavInput_"][11] = {} -defs["enums"]["ImGuiNavInput_"][11]["calc_value"] = 10 -defs["enums"]["ImGuiNavInput_"][11]["name"] = "ImGuiNavInput_LStickUp" -defs["enums"]["ImGuiNavInput_"][11]["value"] = "10" -defs["enums"]["ImGuiNavInput_"][12] = {} -defs["enums"]["ImGuiNavInput_"][12]["calc_value"] = 11 -defs["enums"]["ImGuiNavInput_"][12]["name"] = "ImGuiNavInput_LStickDown" -defs["enums"]["ImGuiNavInput_"][12]["value"] = "11" -defs["enums"]["ImGuiNavInput_"][13] = {} -defs["enums"]["ImGuiNavInput_"][13]["calc_value"] = 12 -defs["enums"]["ImGuiNavInput_"][13]["name"] = "ImGuiNavInput_FocusPrev" -defs["enums"]["ImGuiNavInput_"][13]["value"] = "12" -defs["enums"]["ImGuiNavInput_"][14] = {} -defs["enums"]["ImGuiNavInput_"][14]["calc_value"] = 13 -defs["enums"]["ImGuiNavInput_"][14]["name"] = "ImGuiNavInput_FocusNext" -defs["enums"]["ImGuiNavInput_"][14]["value"] = "13" -defs["enums"]["ImGuiNavInput_"][15] = {} -defs["enums"]["ImGuiNavInput_"][15]["calc_value"] = 14 -defs["enums"]["ImGuiNavInput_"][15]["name"] = "ImGuiNavInput_TweakSlow" -defs["enums"]["ImGuiNavInput_"][15]["value"] = "14" -defs["enums"]["ImGuiNavInput_"][16] = {} -defs["enums"]["ImGuiNavInput_"][16]["calc_value"] = 15 -defs["enums"]["ImGuiNavInput_"][16]["name"] = "ImGuiNavInput_TweakFast" -defs["enums"]["ImGuiNavInput_"][16]["value"] = "15" -defs["enums"]["ImGuiNavInput_"][17] = {} -defs["enums"]["ImGuiNavInput_"][17]["calc_value"] = 16 -defs["enums"]["ImGuiNavInput_"][17]["name"] = "ImGuiNavInput_KeyLeft_" -defs["enums"]["ImGuiNavInput_"][17]["value"] = "16" -defs["enums"]["ImGuiNavInput_"][18] = {} -defs["enums"]["ImGuiNavInput_"][18]["calc_value"] = 17 -defs["enums"]["ImGuiNavInput_"][18]["name"] = "ImGuiNavInput_KeyRight_" -defs["enums"]["ImGuiNavInput_"][18]["value"] = "17" -defs["enums"]["ImGuiNavInput_"][19] = {} -defs["enums"]["ImGuiNavInput_"][19]["calc_value"] = 18 -defs["enums"]["ImGuiNavInput_"][19]["name"] = "ImGuiNavInput_KeyUp_" -defs["enums"]["ImGuiNavInput_"][19]["value"] = "18" -defs["enums"]["ImGuiNavInput_"][20] = {} -defs["enums"]["ImGuiNavInput_"][20]["calc_value"] = 19 -defs["enums"]["ImGuiNavInput_"][20]["name"] = "ImGuiNavInput_KeyDown_" -defs["enums"]["ImGuiNavInput_"][20]["value"] = "19" -defs["enums"]["ImGuiNavInput_"][21] = {} -defs["enums"]["ImGuiNavInput_"][21]["calc_value"] = 20 -defs["enums"]["ImGuiNavInput_"][21]["name"] = "ImGuiNavInput_COUNT" -defs["enums"]["ImGuiNavInput_"][21]["value"] = "20" +defs["enums"]["ImGuiNavInput"] = {} +defs["enums"]["ImGuiNavInput"][1] = {} +defs["enums"]["ImGuiNavInput"][1]["calc_value"] = 0 +defs["enums"]["ImGuiNavInput"][1]["name"] = "ImGuiNavInput_Activate" +defs["enums"]["ImGuiNavInput"][1]["value"] = "0" +defs["enums"]["ImGuiNavInput"][2] = {} +defs["enums"]["ImGuiNavInput"][2]["calc_value"] = 1 +defs["enums"]["ImGuiNavInput"][2]["name"] = "ImGuiNavInput_Cancel" +defs["enums"]["ImGuiNavInput"][2]["value"] = "1" +defs["enums"]["ImGuiNavInput"][3] = {} +defs["enums"]["ImGuiNavInput"][3]["calc_value"] = 2 +defs["enums"]["ImGuiNavInput"][3]["name"] = "ImGuiNavInput_Input" +defs["enums"]["ImGuiNavInput"][3]["value"] = "2" +defs["enums"]["ImGuiNavInput"][4] = {} +defs["enums"]["ImGuiNavInput"][4]["calc_value"] = 3 +defs["enums"]["ImGuiNavInput"][4]["name"] = "ImGuiNavInput_Menu" +defs["enums"]["ImGuiNavInput"][4]["value"] = "3" +defs["enums"]["ImGuiNavInput"][5] = {} +defs["enums"]["ImGuiNavInput"][5]["calc_value"] = 4 +defs["enums"]["ImGuiNavInput"][5]["name"] = "ImGuiNavInput_DpadLeft" +defs["enums"]["ImGuiNavInput"][5]["value"] = "4" +defs["enums"]["ImGuiNavInput"][6] = {} +defs["enums"]["ImGuiNavInput"][6]["calc_value"] = 5 +defs["enums"]["ImGuiNavInput"][6]["name"] = "ImGuiNavInput_DpadRight" +defs["enums"]["ImGuiNavInput"][6]["value"] = "5" +defs["enums"]["ImGuiNavInput"][7] = {} +defs["enums"]["ImGuiNavInput"][7]["calc_value"] = 6 +defs["enums"]["ImGuiNavInput"][7]["name"] = "ImGuiNavInput_DpadUp" +defs["enums"]["ImGuiNavInput"][7]["value"] = "6" +defs["enums"]["ImGuiNavInput"][8] = {} +defs["enums"]["ImGuiNavInput"][8]["calc_value"] = 7 +defs["enums"]["ImGuiNavInput"][8]["name"] = "ImGuiNavInput_DpadDown" +defs["enums"]["ImGuiNavInput"][8]["value"] = "7" +defs["enums"]["ImGuiNavInput"][9] = {} +defs["enums"]["ImGuiNavInput"][9]["calc_value"] = 8 +defs["enums"]["ImGuiNavInput"][9]["name"] = "ImGuiNavInput_LStickLeft" +defs["enums"]["ImGuiNavInput"][9]["value"] = "8" +defs["enums"]["ImGuiNavInput"][10] = {} +defs["enums"]["ImGuiNavInput"][10]["calc_value"] = 9 +defs["enums"]["ImGuiNavInput"][10]["name"] = "ImGuiNavInput_LStickRight" +defs["enums"]["ImGuiNavInput"][10]["value"] = "9" +defs["enums"]["ImGuiNavInput"][11] = {} +defs["enums"]["ImGuiNavInput"][11]["calc_value"] = 10 +defs["enums"]["ImGuiNavInput"][11]["name"] = "ImGuiNavInput_LStickUp" +defs["enums"]["ImGuiNavInput"][11]["value"] = "10" +defs["enums"]["ImGuiNavInput"][12] = {} +defs["enums"]["ImGuiNavInput"][12]["calc_value"] = 11 +defs["enums"]["ImGuiNavInput"][12]["name"] = "ImGuiNavInput_LStickDown" +defs["enums"]["ImGuiNavInput"][12]["value"] = "11" +defs["enums"]["ImGuiNavInput"][13] = {} +defs["enums"]["ImGuiNavInput"][13]["calc_value"] = 12 +defs["enums"]["ImGuiNavInput"][13]["name"] = "ImGuiNavInput_FocusPrev" +defs["enums"]["ImGuiNavInput"][13]["value"] = "12" +defs["enums"]["ImGuiNavInput"][14] = {} +defs["enums"]["ImGuiNavInput"][14]["calc_value"] = 13 +defs["enums"]["ImGuiNavInput"][14]["name"] = "ImGuiNavInput_FocusNext" +defs["enums"]["ImGuiNavInput"][14]["value"] = "13" +defs["enums"]["ImGuiNavInput"][15] = {} +defs["enums"]["ImGuiNavInput"][15]["calc_value"] = 14 +defs["enums"]["ImGuiNavInput"][15]["name"] = "ImGuiNavInput_TweakSlow" +defs["enums"]["ImGuiNavInput"][15]["value"] = "14" +defs["enums"]["ImGuiNavInput"][16] = {} +defs["enums"]["ImGuiNavInput"][16]["calc_value"] = 15 +defs["enums"]["ImGuiNavInput"][16]["name"] = "ImGuiNavInput_TweakFast" +defs["enums"]["ImGuiNavInput"][16]["value"] = "15" +defs["enums"]["ImGuiNavInput"][17] = {} +defs["enums"]["ImGuiNavInput"][17]["calc_value"] = 16 +defs["enums"]["ImGuiNavInput"][17]["name"] = "ImGuiNavInput_COUNT" +defs["enums"]["ImGuiNavInput"][17]["value"] = "16" defs["enums"]["ImGuiNavLayer"] = {} defs["enums"]["ImGuiNavLayer"][1] = {} defs["enums"]["ImGuiNavLayer"][1]["calc_value"] = 0 @@ -2264,31 +2378,6 @@ defs["enums"]["ImGuiNavMoveFlags_"][14] = {} defs["enums"]["ImGuiNavMoveFlags_"][14]["calc_value"] = 4096 defs["enums"]["ImGuiNavMoveFlags_"][14]["name"] = "ImGuiNavMoveFlags_DontSetNavHighlight" defs["enums"]["ImGuiNavMoveFlags_"][14]["value"] = "1 << 12" -defs["enums"]["ImGuiNavReadMode"] = {} -defs["enums"]["ImGuiNavReadMode"][1] = {} -defs["enums"]["ImGuiNavReadMode"][1]["calc_value"] = 0 -defs["enums"]["ImGuiNavReadMode"][1]["name"] = "ImGuiNavReadMode_Down" -defs["enums"]["ImGuiNavReadMode"][1]["value"] = "0" -defs["enums"]["ImGuiNavReadMode"][2] = {} -defs["enums"]["ImGuiNavReadMode"][2]["calc_value"] = 1 -defs["enums"]["ImGuiNavReadMode"][2]["name"] = "ImGuiNavReadMode_Pressed" -defs["enums"]["ImGuiNavReadMode"][2]["value"] = "1" -defs["enums"]["ImGuiNavReadMode"][3] = {} -defs["enums"]["ImGuiNavReadMode"][3]["calc_value"] = 2 -defs["enums"]["ImGuiNavReadMode"][3]["name"] = "ImGuiNavReadMode_Released" -defs["enums"]["ImGuiNavReadMode"][3]["value"] = "2" -defs["enums"]["ImGuiNavReadMode"][4] = {} -defs["enums"]["ImGuiNavReadMode"][4]["calc_value"] = 3 -defs["enums"]["ImGuiNavReadMode"][4]["name"] = "ImGuiNavReadMode_Repeat" -defs["enums"]["ImGuiNavReadMode"][4]["value"] = "3" -defs["enums"]["ImGuiNavReadMode"][5] = {} -defs["enums"]["ImGuiNavReadMode"][5]["calc_value"] = 4 -defs["enums"]["ImGuiNavReadMode"][5]["name"] = "ImGuiNavReadMode_RepeatSlow" -defs["enums"]["ImGuiNavReadMode"][5]["value"] = "4" -defs["enums"]["ImGuiNavReadMode"][6] = {} -defs["enums"]["ImGuiNavReadMode"][6]["calc_value"] = 5 -defs["enums"]["ImGuiNavReadMode"][6]["name"] = "ImGuiNavReadMode_RepeatFast" -defs["enums"]["ImGuiNavReadMode"][6]["value"] = "5" defs["enums"]["ImGuiNextItemDataFlags_"] = {} defs["enums"]["ImGuiNextItemDataFlags_"][1] = {} defs["enums"]["ImGuiNextItemDataFlags_"][1]["calc_value"] = 0 @@ -2517,6 +2606,10 @@ defs["enums"]["ImGuiSelectableFlagsPrivate_"][8] = {} defs["enums"]["ImGuiSelectableFlagsPrivate_"][8]["calc_value"] = 134217728 defs["enums"]["ImGuiSelectableFlagsPrivate_"][8]["name"] = "ImGuiSelectableFlags_NoPadWithHalfSpacing" defs["enums"]["ImGuiSelectableFlagsPrivate_"][8]["value"] = "1 << 27" +defs["enums"]["ImGuiSelectableFlagsPrivate_"][9] = {} +defs["enums"]["ImGuiSelectableFlagsPrivate_"][9]["calc_value"] = 268435456 +defs["enums"]["ImGuiSelectableFlagsPrivate_"][9]["name"] = "ImGuiSelectableFlags_NoSetKeyOwner" +defs["enums"]["ImGuiSelectableFlagsPrivate_"][9]["value"] = "1 << 28" defs["enums"]["ImGuiSelectableFlags_"] = {} defs["enums"]["ImGuiSelectableFlags_"][1] = {} defs["enums"]["ImGuiSelectableFlags_"][1]["calc_value"] = 0 @@ -3411,175 +3504,177 @@ defs["enums"]["ImGuiWindowFlags_"][32]["calc_value"] = 536870912 defs["enums"]["ImGuiWindowFlags_"][32]["name"] = "ImGuiWindowFlags_DockNodeHost" defs["enums"]["ImGuiWindowFlags_"][32]["value"] = "1 << 29" defs["enumtypes"] = {} +defs["enumtypes"]["ImGuiKey"] = "int" defs["locations"] = {} -defs["locations"]["ImBitVector"] = "imgui_internal:580" -defs["locations"]["ImColor"] = "imgui:2465" -defs["locations"]["ImDrawChannel"] = "imgui:2555" -defs["locations"]["ImDrawCmd"] = "imgui:2514" -defs["locations"]["ImDrawCmdHeader"] = "imgui:2547" -defs["locations"]["ImDrawData"] = "imgui:2747" -defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:752" -defs["locations"]["ImDrawFlags_"] = "imgui:2581" -defs["locations"]["ImDrawList"] = "imgui:2619" -defs["locations"]["ImDrawListFlags_"] = "imgui:2601" -defs["locations"]["ImDrawListSharedData"] = "imgui_internal:732" -defs["locations"]["ImDrawListSplitter"] = "imgui:2564" -defs["locations"]["ImDrawVert"] = "imgui:2532" -defs["locations"]["ImFont"] = "imgui:2965" -defs["locations"]["ImFontAtlas"] = "imgui:2864" -defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2826" -defs["locations"]["ImFontAtlasFlags_"] = "imgui:2839" -defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3218" -defs["locations"]["ImFontConfig"] = "imgui:2770" -defs["locations"]["ImFontGlyph"] = "imgui:2799" -defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2811" -defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1294" -defs["locations"]["ImGuiAxis"] = "imgui_internal:908" -defs["locations"]["ImGuiBackendFlags_"] = "imgui:1589" -defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:815" -defs["locations"]["ImGuiButtonFlags_"] = "imgui:1703" -defs["locations"]["ImGuiCol_"] = "imgui:1604" -defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1716" -defs["locations"]["ImGuiColorMod"] = "imgui_internal:951" -defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:838" -defs["locations"]["ImGuiComboFlags_"] = "imgui:1114" -defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:968" -defs["locations"]["ImGuiCond_"] = "imgui:1806" -defs["locations"]["ImGuiConfigFlags_"] = "imgui:1564" -defs["locations"]["ImGuiContext"] = "imgui_internal:1752" -defs["locations"]["ImGuiContextHook"] = "imgui_internal:1737" -defs["locations"]["ImGuiContextHookType"] = "imgui_internal:1735" -defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1471" -defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:934" -defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:943" -defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:928" -defs["locations"]["ImGuiDataType_"] = "imgui:1372" -defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:1668" -defs["locations"]["ImGuiDir_"] = "imgui:1388" -defs["locations"]["ImGuiDockContext"] = "imgui_internal:1569" -defs["locations"]["ImGuiDockNode"] = "imgui_internal:1487" -defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1446" -defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1337" -defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1478" -defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1350" -defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1302" -defs["locations"]["ImGuiGroupData"] = "imgui_internal:981" -defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1316" -defs["locations"]["ImGuiIO"] = "imgui:1983" -defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1231" -defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1229" -defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1227" -defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1225" -defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1223" -defs["locations"]["ImGuiInputEventMouseViewport"] = "imgui_internal:1226" -defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1224" -defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1228" -defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1197" -defs["locations"]["ImGuiInputSource"] = "imgui_internal:1210" -defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2169" -defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:806" -defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1027" -defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1016" -defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:768" -defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:783" -defs["locations"]["ImGuiKeyData"] = "imgui:1975" -defs["locations"]["ImGuiKeyPrivate_"] = "imgui_internal:1189" -defs["locations"]["ImGuiKey_"] = "imgui:1408" -defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1130" -defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:892" -defs["locations"]["ImGuiListClipper"] = "imgui:2414" -defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1278" -defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1265" -defs["locations"]["ImGuiLogType"] = "imgui_internal:898" -defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:997" -defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:1683" -defs["locations"]["ImGuiModFlags_"] = "imgui:1520" -defs["locations"]["ImGuiMouseButton_"] = "imgui:1778" -defs["locations"]["ImGuiMouseCursor_"] = "imgui:1788" -defs["locations"]["ImGuiNavDirSourceFlags_"] = "imgui_internal:1326" -defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1317" -defs["locations"]["ImGuiNavInput_"] = "imgui:1534" -defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1360" -defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1353" -defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1335" -defs["locations"]["ImGuiNavReadMode"] = "imgui_internal:1251" -defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1117" -defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1110" -defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1083" -defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1066" -defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1400" -defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1380" -defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1410" -defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2289" -defs["locations"]["ImGuiPayload"] = "imgui:2230" -defs["locations"]["ImGuiPlatformIO"] = "imgui:3129" -defs["locations"]["ImGuiPlatformImeData"] = "imgui:3201" -defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3192" -defs["locations"]["ImGuiPlotType"] = "imgui_internal:915" -defs["locations"]["ImGuiPopupData"] = "imgui_internal:1052" -defs["locations"]["ImGuiPopupFlags_"] = "imgui:1087" -defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:921" -defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1174" -defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1303" -defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:851" -defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1103" -defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:870" -defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1649" -defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1167" -defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2200" -defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:844" -defs["locations"]["ImGuiSliderFlags_"] = "imgui:1761" -defs["locations"]["ImGuiSortDirection_"] = "imgui:1399" -defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:1706" -defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1142" -defs["locations"]["ImGuiStackTool"] = "imgui_internal:1718" -defs["locations"]["ImGuiStorage"] = "imgui:2351" -defs["locations"]["ImGuiStoragePair"] = "imgui:2354" -defs["locations"]["ImGuiStyle"] = "imgui:1918" -defs["locations"]["ImGuiStyleMod"] = "imgui_internal:958" -defs["locations"]["ImGuiStyleVar_"] = "imgui:1671" -defs["locations"]["ImGuiTabBar"] = "imgui_internal:2426" -defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2388" -defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1128" -defs["locations"]["ImGuiTabItem"] = "imgui_internal:2406" -defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2396" -defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1144" -defs["locations"]["ImGuiTable"] = "imgui_internal:2562" -defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1293" -defs["locations"]["ImGuiTableCellData"] = "imgui_internal:2546" -defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2487" -defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1236" -defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:2697" -defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2252" -defs["locations"]["ImGuiTableFlags_"] = "imgui:1179" -defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:2553" -defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1278" -defs["locations"]["ImGuiTableSettings"] = "imgui_internal:2721" -defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2266" -defs["locations"]["ImGuiTableTempData"] = "imgui_internal:2676" -defs["locations"]["ImGuiTextBuffer"] = "imgui:2324" -defs["locations"]["ImGuiTextFilter"] = "imgui:2297" -defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:878" -defs["locations"]["ImGuiTextRange"] = "imgui:2307" -defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:884" -defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:865" -defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1058" -defs["locations"]["ImGuiViewport"] = "imgui:3046" -defs["locations"]["ImGuiViewportFlags_"] = "imgui:3021" -defs["locations"]["ImGuiViewportP"] = "imgui_internal:1586" -defs["locations"]["ImGuiWindow"] = "imgui_internal:2246" -defs["locations"]["ImGuiWindowClass"] = "imgui:2215" -defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1564" -defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1553" -defs["locations"]["ImGuiWindowFlags_"] = "imgui:984" -defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1632" -defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1160" -defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2198" -defs["locations"]["ImRect"] = "imgui_internal:508" -defs["locations"]["ImVec1"] = "imgui_internal:490" -defs["locations"]["ImVec2"] = "imgui:255" -defs["locations"]["ImVec2ih"] = "imgui_internal:498" -defs["locations"]["ImVec4"] = "imgui:268" +defs["locations"]["ImBitVector"] = "imgui_internal:587" +defs["locations"]["ImColor"] = "imgui:2458" +defs["locations"]["ImDrawChannel"] = "imgui:2548" +defs["locations"]["ImDrawCmd"] = "imgui:2507" +defs["locations"]["ImDrawCmdHeader"] = "imgui:2540" +defs["locations"]["ImDrawData"] = "imgui:2740" +defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:776" +defs["locations"]["ImDrawFlags_"] = "imgui:2574" +defs["locations"]["ImDrawList"] = "imgui:2612" +defs["locations"]["ImDrawListFlags_"] = "imgui:2594" +defs["locations"]["ImDrawListSharedData"] = "imgui_internal:753" +defs["locations"]["ImDrawListSplitter"] = "imgui:2557" +defs["locations"]["ImDrawVert"] = "imgui:2525" +defs["locations"]["ImFont"] = "imgui:2959" +defs["locations"]["ImFontAtlas"] = "imgui:2857" +defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2819" +defs["locations"]["ImFontAtlasFlags_"] = "imgui:2832" +defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3433" +defs["locations"]["ImFontConfig"] = "imgui:2763" +defs["locations"]["ImFontGlyph"] = "imgui:2792" +defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2804" +defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1420" +defs["locations"]["ImGuiAxis"] = "imgui_internal:943" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1579" +defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:847" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1693" +defs["locations"]["ImGuiCol_"] = "imgui:1594" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1706" +defs["locations"]["ImGuiColorMod"] = "imgui_internal:986" +defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:872" +defs["locations"]["ImGuiComboFlags_"] = "imgui:1124" +defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1003" +defs["locations"]["ImGuiCond_"] = "imgui:1797" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1554" +defs["locations"]["ImGuiContext"] = "imgui_internal:1873" +defs["locations"]["ImGuiContextHook"] = "imgui_internal:1858" +defs["locations"]["ImGuiContextHookType"] = "imgui_internal:1856" +defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1591" +defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:969" +defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:978" +defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:963" +defs["locations"]["ImGuiDataType_"] = "imgui:1376" +defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:1788" +defs["locations"]["ImGuiDir_"] = "imgui:1392" +defs["locations"]["ImGuiDockContext"] = "imgui_internal:1689" +defs["locations"]["ImGuiDockNode"] = "imgui_internal:1607" +defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1566" +defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1341" +defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1598" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1354" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1301" +defs["locations"]["ImGuiGroupData"] = "imgui_internal:1016" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1315" +defs["locations"]["ImGuiIO"] = "imgui:1974" +defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1278" +defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1276" +defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1274" +defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1272" +defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1270" +defs["locations"]["ImGuiInputEventMouseViewport"] = "imgui_internal:1273" +defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1271" +defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1275" +defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1244" +defs["locations"]["ImGuiInputFlags_"] = "imgui_internal:1341" +defs["locations"]["ImGuiInputSource"] = "imgui_internal:1257" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2162" +defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:838" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1036" +defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1051" +defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:795" +defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:815" +defs["locations"]["ImGuiKey"] = "imgui:1413" +defs["locations"]["ImGuiKeyData"] = "imgui:1966" +defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1329" +defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1304" +defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1317" +defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1165" +defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:927" +defs["locations"]["ImGuiListClipper"] = "imgui:2407" +defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1404" +defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1391" +defs["locations"]["ImGuiLogType"] = "imgui_internal:933" +defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1032" +defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:1804" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1769" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1779" +defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1443" +defs["locations"]["ImGuiNavInput"] = "imgui:1545" +defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1477" +defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1470" +defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1452" +defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1152" +defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1145" +defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1118" +defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1101" +defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1517" +defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1497" +defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1527" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2282" +defs["locations"]["ImGuiPayload"] = "imgui:2223" +defs["locations"]["ImGuiPlatformIO"] = "imgui:3123" +defs["locations"]["ImGuiPlatformImeData"] = "imgui:3195" +defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3186" +defs["locations"]["ImGuiPlotType"] = "imgui_internal:950" +defs["locations"]["ImGuiPopupData"] = "imgui_internal:1087" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:1097" +defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:956" +defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1209" +defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1429" +defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:885" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1113" +defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:905" +defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1769" +defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1202" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2193" +defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:878" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1752" +defs["locations"]["ImGuiSortDirection_"] = "imgui:1403" +defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:1827" +defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1177" +defs["locations"]["ImGuiStackTool"] = "imgui_internal:1839" +defs["locations"]["ImGuiStorage"] = "imgui:2344" +defs["locations"]["ImGuiStoragePair"] = "imgui:2347" +defs["locations"]["ImGuiStyle"] = "imgui:1909" +defs["locations"]["ImGuiStyleMod"] = "imgui_internal:993" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1661" +defs["locations"]["ImGuiTabBar"] = "imgui_internal:2575" +defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2537" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1138" +defs["locations"]["ImGuiTabItem"] = "imgui_internal:2555" +defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2545" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1154" +defs["locations"]["ImGuiTable"] = "imgui_internal:2711" +defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1292" +defs["locations"]["ImGuiTableCellData"] = "imgui_internal:2695" +defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2636" +defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1240" +defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:2846" +defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2245" +defs["locations"]["ImGuiTableFlags_"] = "imgui:1189" +defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:2702" +defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1277" +defs["locations"]["ImGuiTableSettings"] = "imgui_internal:2870" +defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2259" +defs["locations"]["ImGuiTableTempData"] = "imgui_internal:2825" +defs["locations"]["ImGuiTextBuffer"] = "imgui:2317" +defs["locations"]["ImGuiTextFilter"] = "imgui:2290" +defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:913" +defs["locations"]["ImGuiTextIndex"] = "imgui_internal:710" +defs["locations"]["ImGuiTextRange"] = "imgui:2300" +defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:919" +defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:900" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1068" +defs["locations"]["ImGuiViewport"] = "imgui:3040" +defs["locations"]["ImGuiViewportFlags_"] = "imgui:3015" +defs["locations"]["ImGuiViewportP"] = "imgui_internal:1706" +defs["locations"]["ImGuiWindow"] = "imgui_internal:2393" +defs["locations"]["ImGuiWindowClass"] = "imgui:2208" +defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1684" +defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1673" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:995" +defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1752" +defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1195" +defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2345" +defs["locations"]["ImRect"] = "imgui_internal:515" +defs["locations"]["ImVec1"] = "imgui_internal:497" +defs["locations"]["ImVec2"] = "imgui:259" +defs["locations"]["ImVec2ih"] = "imgui_internal:505" +defs["locations"]["ImVec4"] = "imgui:272" defs["locations"]["STB_TexteditState"] = "imstb_textedit:319" defs["locations"]["StbTexteditRow"] = "imstb_textedit:366" defs["locations"]["StbUndoRecord"] = "imstb_textedit:301" @@ -3690,7 +3785,7 @@ defs["structs"]["ImDrawList"][5]["name"] = "_VtxCurrentIdx" defs["structs"]["ImDrawList"][5]["type"] = "unsigned int" defs["structs"]["ImDrawList"][6] = {} defs["structs"]["ImDrawList"][6]["name"] = "_Data" -defs["structs"]["ImDrawList"][6]["type"] = "const ImDrawListSharedData*" +defs["structs"]["ImDrawList"][6]["type"] = "ImDrawListSharedData*" defs["structs"]["ImDrawList"][7] = {} defs["structs"]["ImDrawList"][7]["name"] = "_OwnerName" defs["structs"]["ImDrawList"][7]["type"] = "const char*" @@ -3744,19 +3839,23 @@ defs["structs"]["ImDrawListSharedData"][7] = {} defs["structs"]["ImDrawListSharedData"][7]["name"] = "InitialFlags" defs["structs"]["ImDrawListSharedData"][7]["type"] = "ImDrawListFlags" defs["structs"]["ImDrawListSharedData"][8] = {} -defs["structs"]["ImDrawListSharedData"][8]["name"] = "ArcFastVtx[48]" -defs["structs"]["ImDrawListSharedData"][8]["size"] = 48 -defs["structs"]["ImDrawListSharedData"][8]["type"] = "ImVec2" +defs["structs"]["ImDrawListSharedData"][8]["name"] = "TempBuffer" +defs["structs"]["ImDrawListSharedData"][8]["template_type"] = "ImVec2" +defs["structs"]["ImDrawListSharedData"][8]["type"] = "ImVector_ImVec2" defs["structs"]["ImDrawListSharedData"][9] = {} -defs["structs"]["ImDrawListSharedData"][9]["name"] = "ArcFastRadiusCutoff" -defs["structs"]["ImDrawListSharedData"][9]["type"] = "float" +defs["structs"]["ImDrawListSharedData"][9]["name"] = "ArcFastVtx[48]" +defs["structs"]["ImDrawListSharedData"][9]["size"] = 48 +defs["structs"]["ImDrawListSharedData"][9]["type"] = "ImVec2" defs["structs"]["ImDrawListSharedData"][10] = {} -defs["structs"]["ImDrawListSharedData"][10]["name"] = "CircleSegmentCounts[64]" -defs["structs"]["ImDrawListSharedData"][10]["size"] = 64 -defs["structs"]["ImDrawListSharedData"][10]["type"] = "ImU8" +defs["structs"]["ImDrawListSharedData"][10]["name"] = "ArcFastRadiusCutoff" +defs["structs"]["ImDrawListSharedData"][10]["type"] = "float" defs["structs"]["ImDrawListSharedData"][11] = {} -defs["structs"]["ImDrawListSharedData"][11]["name"] = "TexUvLines" -defs["structs"]["ImDrawListSharedData"][11]["type"] = "const ImVec4*" +defs["structs"]["ImDrawListSharedData"][11]["name"] = "CircleSegmentCounts[64]" +defs["structs"]["ImDrawListSharedData"][11]["size"] = 64 +defs["structs"]["ImDrawListSharedData"][11]["type"] = "ImU8" +defs["structs"]["ImDrawListSharedData"][12] = {} +defs["structs"]["ImDrawListSharedData"][12]["name"] = "TexUvLines" +defs["structs"]["ImDrawListSharedData"][12]["type"] = "const ImVec4*" defs["structs"]["ImDrawListSplitter"] = {} defs["structs"]["ImDrawListSplitter"][1] = {} defs["structs"]["ImDrawListSplitter"][1]["name"] = "_Current" @@ -4174,119 +4273,120 @@ defs["structs"]["ImGuiContext"][34] = {} defs["structs"]["ImGuiContext"][34]["name"] = "HoveredWindowUnderMovingWindow" defs["structs"]["ImGuiContext"][34]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][35] = {} -defs["structs"]["ImGuiContext"][35]["name"] = "HoveredDockNode" -defs["structs"]["ImGuiContext"][35]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiContext"][35]["name"] = "MovingWindow" +defs["structs"]["ImGuiContext"][35]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][36] = {} -defs["structs"]["ImGuiContext"][36]["name"] = "MovingWindow" +defs["structs"]["ImGuiContext"][36]["name"] = "WheelingWindow" defs["structs"]["ImGuiContext"][36]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][37] = {} -defs["structs"]["ImGuiContext"][37]["name"] = "WheelingWindow" -defs["structs"]["ImGuiContext"][37]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][37]["name"] = "WheelingWindowRefMousePos" +defs["structs"]["ImGuiContext"][37]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][38] = {} -defs["structs"]["ImGuiContext"][38]["name"] = "WheelingWindowRefMousePos" -defs["structs"]["ImGuiContext"][38]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][38]["name"] = "WheelingWindowReleaseTimer" +defs["structs"]["ImGuiContext"][38]["type"] = "float" defs["structs"]["ImGuiContext"][39] = {} -defs["structs"]["ImGuiContext"][39]["name"] = "WheelingWindowTimer" -defs["structs"]["ImGuiContext"][39]["type"] = "float" +defs["structs"]["ImGuiContext"][39]["name"] = "DebugHookIdInfo" +defs["structs"]["ImGuiContext"][39]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][40] = {} -defs["structs"]["ImGuiContext"][40]["name"] = "DebugHookIdInfo" +defs["structs"]["ImGuiContext"][40]["name"] = "HoveredId" defs["structs"]["ImGuiContext"][40]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][41] = {} -defs["structs"]["ImGuiContext"][41]["name"] = "HoveredId" +defs["structs"]["ImGuiContext"][41]["name"] = "HoveredIdPreviousFrame" defs["structs"]["ImGuiContext"][41]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][42] = {} -defs["structs"]["ImGuiContext"][42]["name"] = "HoveredIdPreviousFrame" -defs["structs"]["ImGuiContext"][42]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][42]["name"] = "HoveredIdAllowOverlap" +defs["structs"]["ImGuiContext"][42]["type"] = "bool" defs["structs"]["ImGuiContext"][43] = {} -defs["structs"]["ImGuiContext"][43]["name"] = "HoveredIdAllowOverlap" +defs["structs"]["ImGuiContext"][43]["name"] = "HoveredIdDisabled" defs["structs"]["ImGuiContext"][43]["type"] = "bool" defs["structs"]["ImGuiContext"][44] = {} -defs["structs"]["ImGuiContext"][44]["name"] = "HoveredIdUsingMouseWheel" -defs["structs"]["ImGuiContext"][44]["type"] = "bool" +defs["structs"]["ImGuiContext"][44]["name"] = "HoveredIdTimer" +defs["structs"]["ImGuiContext"][44]["type"] = "float" defs["structs"]["ImGuiContext"][45] = {} -defs["structs"]["ImGuiContext"][45]["name"] = "HoveredIdPreviousFrameUsingMouseWheel" -defs["structs"]["ImGuiContext"][45]["type"] = "bool" +defs["structs"]["ImGuiContext"][45]["name"] = "HoveredIdNotActiveTimer" +defs["structs"]["ImGuiContext"][45]["type"] = "float" defs["structs"]["ImGuiContext"][46] = {} -defs["structs"]["ImGuiContext"][46]["name"] = "HoveredIdDisabled" -defs["structs"]["ImGuiContext"][46]["type"] = "bool" +defs["structs"]["ImGuiContext"][46]["name"] = "ActiveId" +defs["structs"]["ImGuiContext"][46]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][47] = {} -defs["structs"]["ImGuiContext"][47]["name"] = "HoveredIdTimer" -defs["structs"]["ImGuiContext"][47]["type"] = "float" +defs["structs"]["ImGuiContext"][47]["name"] = "ActiveIdIsAlive" +defs["structs"]["ImGuiContext"][47]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][48] = {} -defs["structs"]["ImGuiContext"][48]["name"] = "HoveredIdNotActiveTimer" +defs["structs"]["ImGuiContext"][48]["name"] = "ActiveIdTimer" defs["structs"]["ImGuiContext"][48]["type"] = "float" defs["structs"]["ImGuiContext"][49] = {} -defs["structs"]["ImGuiContext"][49]["name"] = "ActiveId" -defs["structs"]["ImGuiContext"][49]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][49]["name"] = "ActiveIdIsJustActivated" +defs["structs"]["ImGuiContext"][49]["type"] = "bool" defs["structs"]["ImGuiContext"][50] = {} -defs["structs"]["ImGuiContext"][50]["name"] = "ActiveIdIsAlive" -defs["structs"]["ImGuiContext"][50]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][50]["name"] = "ActiveIdAllowOverlap" +defs["structs"]["ImGuiContext"][50]["type"] = "bool" defs["structs"]["ImGuiContext"][51] = {} -defs["structs"]["ImGuiContext"][51]["name"] = "ActiveIdTimer" -defs["structs"]["ImGuiContext"][51]["type"] = "float" +defs["structs"]["ImGuiContext"][51]["name"] = "ActiveIdNoClearOnFocusLoss" +defs["structs"]["ImGuiContext"][51]["type"] = "bool" defs["structs"]["ImGuiContext"][52] = {} -defs["structs"]["ImGuiContext"][52]["name"] = "ActiveIdIsJustActivated" +defs["structs"]["ImGuiContext"][52]["name"] = "ActiveIdHasBeenPressedBefore" defs["structs"]["ImGuiContext"][52]["type"] = "bool" defs["structs"]["ImGuiContext"][53] = {} -defs["structs"]["ImGuiContext"][53]["name"] = "ActiveIdAllowOverlap" +defs["structs"]["ImGuiContext"][53]["name"] = "ActiveIdHasBeenEditedBefore" defs["structs"]["ImGuiContext"][53]["type"] = "bool" defs["structs"]["ImGuiContext"][54] = {} -defs["structs"]["ImGuiContext"][54]["name"] = "ActiveIdNoClearOnFocusLoss" +defs["structs"]["ImGuiContext"][54]["name"] = "ActiveIdHasBeenEditedThisFrame" defs["structs"]["ImGuiContext"][54]["type"] = "bool" defs["structs"]["ImGuiContext"][55] = {} -defs["structs"]["ImGuiContext"][55]["name"] = "ActiveIdHasBeenPressedBefore" -defs["structs"]["ImGuiContext"][55]["type"] = "bool" +defs["structs"]["ImGuiContext"][55]["name"] = "ActiveIdClickOffset" +defs["structs"]["ImGuiContext"][55]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][56] = {} -defs["structs"]["ImGuiContext"][56]["name"] = "ActiveIdHasBeenEditedBefore" -defs["structs"]["ImGuiContext"][56]["type"] = "bool" +defs["structs"]["ImGuiContext"][56]["name"] = "ActiveIdWindow" +defs["structs"]["ImGuiContext"][56]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][57] = {} -defs["structs"]["ImGuiContext"][57]["name"] = "ActiveIdHasBeenEditedThisFrame" -defs["structs"]["ImGuiContext"][57]["type"] = "bool" +defs["structs"]["ImGuiContext"][57]["name"] = "ActiveIdSource" +defs["structs"]["ImGuiContext"][57]["type"] = "ImGuiInputSource" defs["structs"]["ImGuiContext"][58] = {} -defs["structs"]["ImGuiContext"][58]["name"] = "ActiveIdClickOffset" -defs["structs"]["ImGuiContext"][58]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][58]["name"] = "ActiveIdMouseButton" +defs["structs"]["ImGuiContext"][58]["type"] = "int" defs["structs"]["ImGuiContext"][59] = {} -defs["structs"]["ImGuiContext"][59]["name"] = "ActiveIdWindow" -defs["structs"]["ImGuiContext"][59]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][59]["name"] = "ActiveIdPreviousFrame" +defs["structs"]["ImGuiContext"][59]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][60] = {} -defs["structs"]["ImGuiContext"][60]["name"] = "ActiveIdSource" -defs["structs"]["ImGuiContext"][60]["type"] = "ImGuiInputSource" +defs["structs"]["ImGuiContext"][60]["name"] = "ActiveIdPreviousFrameIsAlive" +defs["structs"]["ImGuiContext"][60]["type"] = "bool" defs["structs"]["ImGuiContext"][61] = {} -defs["structs"]["ImGuiContext"][61]["name"] = "ActiveIdMouseButton" -defs["structs"]["ImGuiContext"][61]["type"] = "int" +defs["structs"]["ImGuiContext"][61]["name"] = "ActiveIdPreviousFrameHasBeenEditedBefore" +defs["structs"]["ImGuiContext"][61]["type"] = "bool" defs["structs"]["ImGuiContext"][62] = {} -defs["structs"]["ImGuiContext"][62]["name"] = "ActiveIdPreviousFrame" -defs["structs"]["ImGuiContext"][62]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][62]["name"] = "ActiveIdPreviousFrameWindow" +defs["structs"]["ImGuiContext"][62]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][63] = {} -defs["structs"]["ImGuiContext"][63]["name"] = "ActiveIdPreviousFrameIsAlive" -defs["structs"]["ImGuiContext"][63]["type"] = "bool" +defs["structs"]["ImGuiContext"][63]["name"] = "LastActiveId" +defs["structs"]["ImGuiContext"][63]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][64] = {} -defs["structs"]["ImGuiContext"][64]["name"] = "ActiveIdPreviousFrameHasBeenEditedBefore" -defs["structs"]["ImGuiContext"][64]["type"] = "bool" +defs["structs"]["ImGuiContext"][64]["name"] = "LastActiveIdTimer" +defs["structs"]["ImGuiContext"][64]["type"] = "float" defs["structs"]["ImGuiContext"][65] = {} -defs["structs"]["ImGuiContext"][65]["name"] = "ActiveIdPreviousFrameWindow" -defs["structs"]["ImGuiContext"][65]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][65]["name"] = "KeysOwnerData[ImGuiKey_NamedKey_COUNT]" +defs["structs"]["ImGuiContext"][65]["size"] = 140 +defs["structs"]["ImGuiContext"][65]["type"] = "ImGuiKeyOwnerData" defs["structs"]["ImGuiContext"][66] = {} -defs["structs"]["ImGuiContext"][66]["name"] = "LastActiveId" -defs["structs"]["ImGuiContext"][66]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][66]["name"] = "KeysRoutingTable" +defs["structs"]["ImGuiContext"][66]["type"] = "ImGuiKeyRoutingTable" defs["structs"]["ImGuiContext"][67] = {} -defs["structs"]["ImGuiContext"][67]["name"] = "LastActiveIdTimer" -defs["structs"]["ImGuiContext"][67]["type"] = "float" +defs["structs"]["ImGuiContext"][67]["name"] = "ActiveIdUsingNavDirMask" +defs["structs"]["ImGuiContext"][67]["type"] = "ImU32" defs["structs"]["ImGuiContext"][68] = {} -defs["structs"]["ImGuiContext"][68]["name"] = "ActiveIdUsingMouseWheel" +defs["structs"]["ImGuiContext"][68]["name"] = "ActiveIdUsingAllKeyboardKeys" defs["structs"]["ImGuiContext"][68]["type"] = "bool" defs["structs"]["ImGuiContext"][69] = {} -defs["structs"]["ImGuiContext"][69]["name"] = "ActiveIdUsingNavDirMask" +defs["structs"]["ImGuiContext"][69]["name"] = "ActiveIdUsingNavInputMask" defs["structs"]["ImGuiContext"][69]["type"] = "ImU32" defs["structs"]["ImGuiContext"][70] = {} -defs["structs"]["ImGuiContext"][70]["name"] = "ActiveIdUsingNavInputMask" -defs["structs"]["ImGuiContext"][70]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][70]["name"] = "CurrentFocusScopeId" +defs["structs"]["ImGuiContext"][70]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][71] = {} -defs["structs"]["ImGuiContext"][71]["name"] = "ActiveIdUsingKeyInputMask" -defs["structs"]["ImGuiContext"][71]["type"] = "ImBitArrayForNamedKeys" +defs["structs"]["ImGuiContext"][71]["name"] = "CurrentItemFlags" +defs["structs"]["ImGuiContext"][71]["type"] = "ImGuiItemFlags" defs["structs"]["ImGuiContext"][72] = {} -defs["structs"]["ImGuiContext"][72]["name"] = "CurrentItemFlags" -defs["structs"]["ImGuiContext"][72]["type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiContext"][72]["name"] = "DebugLocateId" +defs["structs"]["ImGuiContext"][72]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][73] = {} defs["structs"]["ImGuiContext"][73]["name"] = "NextItemData" defs["structs"]["ImGuiContext"][73]["type"] = "ImGuiNextItemData" @@ -4388,7 +4488,7 @@ defs["structs"]["ImGuiContext"][102]["name"] = "NavJustMovedToFocusScopeId" defs["structs"]["ImGuiContext"][102]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][103] = {} defs["structs"]["ImGuiContext"][103]["name"] = "NavJustMovedToKeyMods" -defs["structs"]["ImGuiContext"][103]["type"] = "ImGuiModFlags" +defs["structs"]["ImGuiContext"][103]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][104] = {} defs["structs"]["ImGuiContext"][104]["name"] = "NavNextActivateId" defs["structs"]["ImGuiContext"][104]["type"] = "ImGuiID" @@ -4445,7 +4545,7 @@ defs["structs"]["ImGuiContext"][121]["name"] = "NavMoveScrollFlags" defs["structs"]["ImGuiContext"][121]["type"] = "ImGuiScrollFlags" defs["structs"]["ImGuiContext"][122] = {} defs["structs"]["ImGuiContext"][122]["name"] = "NavMoveKeyMods" -defs["structs"]["ImGuiContext"][122]["type"] = "ImGuiModFlags" +defs["structs"]["ImGuiContext"][122]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][123] = {} defs["structs"]["ImGuiContext"][123]["name"] = "NavMoveDir" defs["structs"]["ImGuiContext"][123]["type"] = "ImGuiDir" @@ -4483,317 +4583,350 @@ defs["structs"]["ImGuiContext"][134] = {} defs["structs"]["ImGuiContext"][134]["name"] = "NavTabbingResultFirst" defs["structs"]["ImGuiContext"][134]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][135] = {} -defs["structs"]["ImGuiContext"][135]["name"] = "NavWindowingTarget" -defs["structs"]["ImGuiContext"][135]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][135]["name"] = "ConfigNavWindowingKeyNext" +defs["structs"]["ImGuiContext"][135]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][136] = {} -defs["structs"]["ImGuiContext"][136]["name"] = "NavWindowingTargetAnim" -defs["structs"]["ImGuiContext"][136]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][136]["name"] = "ConfigNavWindowingKeyPrev" +defs["structs"]["ImGuiContext"][136]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][137] = {} -defs["structs"]["ImGuiContext"][137]["name"] = "NavWindowingListWindow" +defs["structs"]["ImGuiContext"][137]["name"] = "NavWindowingTarget" defs["structs"]["ImGuiContext"][137]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][138] = {} -defs["structs"]["ImGuiContext"][138]["name"] = "NavWindowingTimer" -defs["structs"]["ImGuiContext"][138]["type"] = "float" +defs["structs"]["ImGuiContext"][138]["name"] = "NavWindowingTargetAnim" +defs["structs"]["ImGuiContext"][138]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][139] = {} -defs["structs"]["ImGuiContext"][139]["name"] = "NavWindowingHighlightAlpha" -defs["structs"]["ImGuiContext"][139]["type"] = "float" +defs["structs"]["ImGuiContext"][139]["name"] = "NavWindowingListWindow" +defs["structs"]["ImGuiContext"][139]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][140] = {} -defs["structs"]["ImGuiContext"][140]["name"] = "NavWindowingToggleLayer" -defs["structs"]["ImGuiContext"][140]["type"] = "bool" +defs["structs"]["ImGuiContext"][140]["name"] = "NavWindowingTimer" +defs["structs"]["ImGuiContext"][140]["type"] = "float" defs["structs"]["ImGuiContext"][141] = {} -defs["structs"]["ImGuiContext"][141]["name"] = "DimBgRatio" +defs["structs"]["ImGuiContext"][141]["name"] = "NavWindowingHighlightAlpha" defs["structs"]["ImGuiContext"][141]["type"] = "float" defs["structs"]["ImGuiContext"][142] = {} -defs["structs"]["ImGuiContext"][142]["name"] = "MouseCursor" -defs["structs"]["ImGuiContext"][142]["type"] = "ImGuiMouseCursor" +defs["structs"]["ImGuiContext"][142]["name"] = "NavWindowingToggleLayer" +defs["structs"]["ImGuiContext"][142]["type"] = "bool" defs["structs"]["ImGuiContext"][143] = {} -defs["structs"]["ImGuiContext"][143]["name"] = "DragDropActive" -defs["structs"]["ImGuiContext"][143]["type"] = "bool" +defs["structs"]["ImGuiContext"][143]["name"] = "NavWindowingAccumDeltaPos" +defs["structs"]["ImGuiContext"][143]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][144] = {} -defs["structs"]["ImGuiContext"][144]["name"] = "DragDropWithinSource" -defs["structs"]["ImGuiContext"][144]["type"] = "bool" +defs["structs"]["ImGuiContext"][144]["name"] = "NavWindowingAccumDeltaSize" +defs["structs"]["ImGuiContext"][144]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][145] = {} -defs["structs"]["ImGuiContext"][145]["name"] = "DragDropWithinTarget" -defs["structs"]["ImGuiContext"][145]["type"] = "bool" +defs["structs"]["ImGuiContext"][145]["name"] = "DimBgRatio" +defs["structs"]["ImGuiContext"][145]["type"] = "float" defs["structs"]["ImGuiContext"][146] = {} -defs["structs"]["ImGuiContext"][146]["name"] = "DragDropSourceFlags" -defs["structs"]["ImGuiContext"][146]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][146]["name"] = "MouseCursor" +defs["structs"]["ImGuiContext"][146]["type"] = "ImGuiMouseCursor" defs["structs"]["ImGuiContext"][147] = {} -defs["structs"]["ImGuiContext"][147]["name"] = "DragDropSourceFrameCount" -defs["structs"]["ImGuiContext"][147]["type"] = "int" +defs["structs"]["ImGuiContext"][147]["name"] = "DragDropActive" +defs["structs"]["ImGuiContext"][147]["type"] = "bool" defs["structs"]["ImGuiContext"][148] = {} -defs["structs"]["ImGuiContext"][148]["name"] = "DragDropMouseButton" -defs["structs"]["ImGuiContext"][148]["type"] = "int" +defs["structs"]["ImGuiContext"][148]["name"] = "DragDropWithinSource" +defs["structs"]["ImGuiContext"][148]["type"] = "bool" defs["structs"]["ImGuiContext"][149] = {} -defs["structs"]["ImGuiContext"][149]["name"] = "DragDropPayload" -defs["structs"]["ImGuiContext"][149]["type"] = "ImGuiPayload" +defs["structs"]["ImGuiContext"][149]["name"] = "DragDropWithinTarget" +defs["structs"]["ImGuiContext"][149]["type"] = "bool" defs["structs"]["ImGuiContext"][150] = {} -defs["structs"]["ImGuiContext"][150]["name"] = "DragDropTargetRect" -defs["structs"]["ImGuiContext"][150]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][150]["name"] = "DragDropSourceFlags" +defs["structs"]["ImGuiContext"][150]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][151] = {} -defs["structs"]["ImGuiContext"][151]["name"] = "DragDropTargetId" -defs["structs"]["ImGuiContext"][151]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][151]["name"] = "DragDropSourceFrameCount" +defs["structs"]["ImGuiContext"][151]["type"] = "int" defs["structs"]["ImGuiContext"][152] = {} -defs["structs"]["ImGuiContext"][152]["name"] = "DragDropAcceptFlags" -defs["structs"]["ImGuiContext"][152]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][152]["name"] = "DragDropMouseButton" +defs["structs"]["ImGuiContext"][152]["type"] = "int" defs["structs"]["ImGuiContext"][153] = {} -defs["structs"]["ImGuiContext"][153]["name"] = "DragDropAcceptIdCurrRectSurface" -defs["structs"]["ImGuiContext"][153]["type"] = "float" +defs["structs"]["ImGuiContext"][153]["name"] = "DragDropPayload" +defs["structs"]["ImGuiContext"][153]["type"] = "ImGuiPayload" defs["structs"]["ImGuiContext"][154] = {} -defs["structs"]["ImGuiContext"][154]["name"] = "DragDropAcceptIdCurr" -defs["structs"]["ImGuiContext"][154]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][154]["name"] = "DragDropTargetRect" +defs["structs"]["ImGuiContext"][154]["type"] = "ImRect" defs["structs"]["ImGuiContext"][155] = {} -defs["structs"]["ImGuiContext"][155]["name"] = "DragDropAcceptIdPrev" +defs["structs"]["ImGuiContext"][155]["name"] = "DragDropTargetId" defs["structs"]["ImGuiContext"][155]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][156] = {} -defs["structs"]["ImGuiContext"][156]["name"] = "DragDropAcceptFrameCount" -defs["structs"]["ImGuiContext"][156]["type"] = "int" +defs["structs"]["ImGuiContext"][156]["name"] = "DragDropAcceptFlags" +defs["structs"]["ImGuiContext"][156]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][157] = {} -defs["structs"]["ImGuiContext"][157]["name"] = "DragDropHoldJustPressedId" -defs["structs"]["ImGuiContext"][157]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][157]["name"] = "DragDropAcceptIdCurrRectSurface" +defs["structs"]["ImGuiContext"][157]["type"] = "float" defs["structs"]["ImGuiContext"][158] = {} -defs["structs"]["ImGuiContext"][158]["name"] = "DragDropPayloadBufHeap" -defs["structs"]["ImGuiContext"][158]["template_type"] = "unsigned char" -defs["structs"]["ImGuiContext"][158]["type"] = "ImVector_unsigned_char" +defs["structs"]["ImGuiContext"][158]["name"] = "DragDropAcceptIdCurr" +defs["structs"]["ImGuiContext"][158]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][159] = {} -defs["structs"]["ImGuiContext"][159]["name"] = "DragDropPayloadBufLocal[16]" -defs["structs"]["ImGuiContext"][159]["size"] = 16 -defs["structs"]["ImGuiContext"][159]["type"] = "unsigned char" +defs["structs"]["ImGuiContext"][159]["name"] = "DragDropAcceptIdPrev" +defs["structs"]["ImGuiContext"][159]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][160] = {} -defs["structs"]["ImGuiContext"][160]["name"] = "ClipperTempDataStacked" +defs["structs"]["ImGuiContext"][160]["name"] = "DragDropAcceptFrameCount" defs["structs"]["ImGuiContext"][160]["type"] = "int" defs["structs"]["ImGuiContext"][161] = {} -defs["structs"]["ImGuiContext"][161]["name"] = "ClipperTempData" -defs["structs"]["ImGuiContext"][161]["template_type"] = "ImGuiListClipperData" -defs["structs"]["ImGuiContext"][161]["type"] = "ImVector_ImGuiListClipperData" +defs["structs"]["ImGuiContext"][161]["name"] = "DragDropHoldJustPressedId" +defs["structs"]["ImGuiContext"][161]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][162] = {} -defs["structs"]["ImGuiContext"][162]["name"] = "CurrentTable" -defs["structs"]["ImGuiContext"][162]["type"] = "ImGuiTable*" +defs["structs"]["ImGuiContext"][162]["name"] = "DragDropPayloadBufHeap" +defs["structs"]["ImGuiContext"][162]["template_type"] = "unsigned char" +defs["structs"]["ImGuiContext"][162]["type"] = "ImVector_unsigned_char" defs["structs"]["ImGuiContext"][163] = {} -defs["structs"]["ImGuiContext"][163]["name"] = "TablesTempDataStacked" -defs["structs"]["ImGuiContext"][163]["type"] = "int" +defs["structs"]["ImGuiContext"][163]["name"] = "DragDropPayloadBufLocal[16]" +defs["structs"]["ImGuiContext"][163]["size"] = 16 +defs["structs"]["ImGuiContext"][163]["type"] = "unsigned char" defs["structs"]["ImGuiContext"][164] = {} -defs["structs"]["ImGuiContext"][164]["name"] = "TablesTempData" -defs["structs"]["ImGuiContext"][164]["template_type"] = "ImGuiTableTempData" -defs["structs"]["ImGuiContext"][164]["type"] = "ImVector_ImGuiTableTempData" +defs["structs"]["ImGuiContext"][164]["name"] = "ClipperTempDataStacked" +defs["structs"]["ImGuiContext"][164]["type"] = "int" defs["structs"]["ImGuiContext"][165] = {} -defs["structs"]["ImGuiContext"][165]["name"] = "Tables" -defs["structs"]["ImGuiContext"][165]["template_type"] = "ImGuiTable" -defs["structs"]["ImGuiContext"][165]["type"] = "ImPool_ImGuiTable" +defs["structs"]["ImGuiContext"][165]["name"] = "ClipperTempData" +defs["structs"]["ImGuiContext"][165]["template_type"] = "ImGuiListClipperData" +defs["structs"]["ImGuiContext"][165]["type"] = "ImVector_ImGuiListClipperData" defs["structs"]["ImGuiContext"][166] = {} -defs["structs"]["ImGuiContext"][166]["name"] = "TablesLastTimeActive" -defs["structs"]["ImGuiContext"][166]["template_type"] = "float" -defs["structs"]["ImGuiContext"][166]["type"] = "ImVector_float" +defs["structs"]["ImGuiContext"][166]["name"] = "CurrentTable" +defs["structs"]["ImGuiContext"][166]["type"] = "ImGuiTable*" defs["structs"]["ImGuiContext"][167] = {} -defs["structs"]["ImGuiContext"][167]["name"] = "DrawChannelsTempMergeBuffer" -defs["structs"]["ImGuiContext"][167]["template_type"] = "ImDrawChannel" -defs["structs"]["ImGuiContext"][167]["type"] = "ImVector_ImDrawChannel" +defs["structs"]["ImGuiContext"][167]["name"] = "TablesTempDataStacked" +defs["structs"]["ImGuiContext"][167]["type"] = "int" defs["structs"]["ImGuiContext"][168] = {} -defs["structs"]["ImGuiContext"][168]["name"] = "CurrentTabBar" -defs["structs"]["ImGuiContext"][168]["type"] = "ImGuiTabBar*" +defs["structs"]["ImGuiContext"][168]["name"] = "TablesTempData" +defs["structs"]["ImGuiContext"][168]["template_type"] = "ImGuiTableTempData" +defs["structs"]["ImGuiContext"][168]["type"] = "ImVector_ImGuiTableTempData" defs["structs"]["ImGuiContext"][169] = {} -defs["structs"]["ImGuiContext"][169]["name"] = "TabBars" -defs["structs"]["ImGuiContext"][169]["template_type"] = "ImGuiTabBar" -defs["structs"]["ImGuiContext"][169]["type"] = "ImPool_ImGuiTabBar" +defs["structs"]["ImGuiContext"][169]["name"] = "Tables" +defs["structs"]["ImGuiContext"][169]["template_type"] = "ImGuiTable" +defs["structs"]["ImGuiContext"][169]["type"] = "ImPool_ImGuiTable" defs["structs"]["ImGuiContext"][170] = {} -defs["structs"]["ImGuiContext"][170]["name"] = "CurrentTabBarStack" -defs["structs"]["ImGuiContext"][170]["template_type"] = "ImGuiPtrOrIndex" -defs["structs"]["ImGuiContext"][170]["type"] = "ImVector_ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][170]["name"] = "TablesLastTimeActive" +defs["structs"]["ImGuiContext"][170]["template_type"] = "float" +defs["structs"]["ImGuiContext"][170]["type"] = "ImVector_float" defs["structs"]["ImGuiContext"][171] = {} -defs["structs"]["ImGuiContext"][171]["name"] = "ShrinkWidthBuffer" -defs["structs"]["ImGuiContext"][171]["template_type"] = "ImGuiShrinkWidthItem" -defs["structs"]["ImGuiContext"][171]["type"] = "ImVector_ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][171]["name"] = "DrawChannelsTempMergeBuffer" +defs["structs"]["ImGuiContext"][171]["template_type"] = "ImDrawChannel" +defs["structs"]["ImGuiContext"][171]["type"] = "ImVector_ImDrawChannel" defs["structs"]["ImGuiContext"][172] = {} -defs["structs"]["ImGuiContext"][172]["name"] = "MouseLastValidPos" -defs["structs"]["ImGuiContext"][172]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][172]["name"] = "CurrentTabBar" +defs["structs"]["ImGuiContext"][172]["type"] = "ImGuiTabBar*" defs["structs"]["ImGuiContext"][173] = {} -defs["structs"]["ImGuiContext"][173]["name"] = "InputTextState" -defs["structs"]["ImGuiContext"][173]["type"] = "ImGuiInputTextState" +defs["structs"]["ImGuiContext"][173]["name"] = "TabBars" +defs["structs"]["ImGuiContext"][173]["template_type"] = "ImGuiTabBar" +defs["structs"]["ImGuiContext"][173]["type"] = "ImPool_ImGuiTabBar" defs["structs"]["ImGuiContext"][174] = {} -defs["structs"]["ImGuiContext"][174]["name"] = "InputTextPasswordFont" -defs["structs"]["ImGuiContext"][174]["type"] = "ImFont" +defs["structs"]["ImGuiContext"][174]["name"] = "CurrentTabBarStack" +defs["structs"]["ImGuiContext"][174]["template_type"] = "ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][174]["type"] = "ImVector_ImGuiPtrOrIndex" defs["structs"]["ImGuiContext"][175] = {} -defs["structs"]["ImGuiContext"][175]["name"] = "TempInputId" -defs["structs"]["ImGuiContext"][175]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][175]["name"] = "ShrinkWidthBuffer" +defs["structs"]["ImGuiContext"][175]["template_type"] = "ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][175]["type"] = "ImVector_ImGuiShrinkWidthItem" defs["structs"]["ImGuiContext"][176] = {} -defs["structs"]["ImGuiContext"][176]["name"] = "ColorEditOptions" -defs["structs"]["ImGuiContext"][176]["type"] = "ImGuiColorEditFlags" +defs["structs"]["ImGuiContext"][176]["name"] = "HoverDelayId" +defs["structs"]["ImGuiContext"][176]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][177] = {} -defs["structs"]["ImGuiContext"][177]["name"] = "ColorEditLastHue" -defs["structs"]["ImGuiContext"][177]["type"] = "float" +defs["structs"]["ImGuiContext"][177]["name"] = "HoverDelayIdPreviousFrame" +defs["structs"]["ImGuiContext"][177]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][178] = {} -defs["structs"]["ImGuiContext"][178]["name"] = "ColorEditLastSat" +defs["structs"]["ImGuiContext"][178]["name"] = "HoverDelayTimer" defs["structs"]["ImGuiContext"][178]["type"] = "float" defs["structs"]["ImGuiContext"][179] = {} -defs["structs"]["ImGuiContext"][179]["name"] = "ColorEditLastColor" -defs["structs"]["ImGuiContext"][179]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][179]["name"] = "HoverDelayClearTimer" +defs["structs"]["ImGuiContext"][179]["type"] = "float" defs["structs"]["ImGuiContext"][180] = {} -defs["structs"]["ImGuiContext"][180]["name"] = "ColorPickerRef" -defs["structs"]["ImGuiContext"][180]["type"] = "ImVec4" +defs["structs"]["ImGuiContext"][180]["name"] = "MouseLastValidPos" +defs["structs"]["ImGuiContext"][180]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][181] = {} -defs["structs"]["ImGuiContext"][181]["name"] = "ComboPreviewData" -defs["structs"]["ImGuiContext"][181]["type"] = "ImGuiComboPreviewData" +defs["structs"]["ImGuiContext"][181]["name"] = "InputTextState" +defs["structs"]["ImGuiContext"][181]["type"] = "ImGuiInputTextState" defs["structs"]["ImGuiContext"][182] = {} -defs["structs"]["ImGuiContext"][182]["name"] = "SliderGrabClickOffset" -defs["structs"]["ImGuiContext"][182]["type"] = "float" +defs["structs"]["ImGuiContext"][182]["name"] = "InputTextPasswordFont" +defs["structs"]["ImGuiContext"][182]["type"] = "ImFont" defs["structs"]["ImGuiContext"][183] = {} -defs["structs"]["ImGuiContext"][183]["name"] = "SliderCurrentAccum" -defs["structs"]["ImGuiContext"][183]["type"] = "float" +defs["structs"]["ImGuiContext"][183]["name"] = "TempInputId" +defs["structs"]["ImGuiContext"][183]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][184] = {} -defs["structs"]["ImGuiContext"][184]["name"] = "SliderCurrentAccumDirty" -defs["structs"]["ImGuiContext"][184]["type"] = "bool" +defs["structs"]["ImGuiContext"][184]["name"] = "ColorEditOptions" +defs["structs"]["ImGuiContext"][184]["type"] = "ImGuiColorEditFlags" defs["structs"]["ImGuiContext"][185] = {} -defs["structs"]["ImGuiContext"][185]["name"] = "DragCurrentAccumDirty" -defs["structs"]["ImGuiContext"][185]["type"] = "bool" +defs["structs"]["ImGuiContext"][185]["name"] = "ColorEditLastHue" +defs["structs"]["ImGuiContext"][185]["type"] = "float" defs["structs"]["ImGuiContext"][186] = {} -defs["structs"]["ImGuiContext"][186]["name"] = "DragCurrentAccum" +defs["structs"]["ImGuiContext"][186]["name"] = "ColorEditLastSat" defs["structs"]["ImGuiContext"][186]["type"] = "float" defs["structs"]["ImGuiContext"][187] = {} -defs["structs"]["ImGuiContext"][187]["name"] = "DragSpeedDefaultRatio" -defs["structs"]["ImGuiContext"][187]["type"] = "float" +defs["structs"]["ImGuiContext"][187]["name"] = "ColorEditLastColor" +defs["structs"]["ImGuiContext"][187]["type"] = "ImU32" defs["structs"]["ImGuiContext"][188] = {} -defs["structs"]["ImGuiContext"][188]["name"] = "ScrollbarClickDeltaToGrabCenter" -defs["structs"]["ImGuiContext"][188]["type"] = "float" +defs["structs"]["ImGuiContext"][188]["name"] = "ColorPickerRef" +defs["structs"]["ImGuiContext"][188]["type"] = "ImVec4" defs["structs"]["ImGuiContext"][189] = {} -defs["structs"]["ImGuiContext"][189]["name"] = "DisabledAlphaBackup" -defs["structs"]["ImGuiContext"][189]["type"] = "float" +defs["structs"]["ImGuiContext"][189]["name"] = "ComboPreviewData" +defs["structs"]["ImGuiContext"][189]["type"] = "ImGuiComboPreviewData" defs["structs"]["ImGuiContext"][190] = {} -defs["structs"]["ImGuiContext"][190]["name"] = "DisabledStackSize" -defs["structs"]["ImGuiContext"][190]["type"] = "short" +defs["structs"]["ImGuiContext"][190]["name"] = "SliderGrabClickOffset" +defs["structs"]["ImGuiContext"][190]["type"] = "float" defs["structs"]["ImGuiContext"][191] = {} -defs["structs"]["ImGuiContext"][191]["name"] = "TooltipOverrideCount" -defs["structs"]["ImGuiContext"][191]["type"] = "short" +defs["structs"]["ImGuiContext"][191]["name"] = "SliderCurrentAccum" +defs["structs"]["ImGuiContext"][191]["type"] = "float" defs["structs"]["ImGuiContext"][192] = {} -defs["structs"]["ImGuiContext"][192]["name"] = "TooltipSlowDelay" -defs["structs"]["ImGuiContext"][192]["type"] = "float" +defs["structs"]["ImGuiContext"][192]["name"] = "SliderCurrentAccumDirty" +defs["structs"]["ImGuiContext"][192]["type"] = "bool" defs["structs"]["ImGuiContext"][193] = {} -defs["structs"]["ImGuiContext"][193]["name"] = "ClipboardHandlerData" -defs["structs"]["ImGuiContext"][193]["template_type"] = "char" -defs["structs"]["ImGuiContext"][193]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][193]["name"] = "DragCurrentAccumDirty" +defs["structs"]["ImGuiContext"][193]["type"] = "bool" defs["structs"]["ImGuiContext"][194] = {} -defs["structs"]["ImGuiContext"][194]["name"] = "MenusIdSubmittedThisFrame" -defs["structs"]["ImGuiContext"][194]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiContext"][194]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][194]["name"] = "DragCurrentAccum" +defs["structs"]["ImGuiContext"][194]["type"] = "float" defs["structs"]["ImGuiContext"][195] = {} -defs["structs"]["ImGuiContext"][195]["name"] = "PlatformImeData" -defs["structs"]["ImGuiContext"][195]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][195]["name"] = "DragSpeedDefaultRatio" +defs["structs"]["ImGuiContext"][195]["type"] = "float" defs["structs"]["ImGuiContext"][196] = {} -defs["structs"]["ImGuiContext"][196]["name"] = "PlatformImeDataPrev" -defs["structs"]["ImGuiContext"][196]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][196]["name"] = "ScrollbarClickDeltaToGrabCenter" +defs["structs"]["ImGuiContext"][196]["type"] = "float" defs["structs"]["ImGuiContext"][197] = {} -defs["structs"]["ImGuiContext"][197]["name"] = "PlatformImeViewport" -defs["structs"]["ImGuiContext"][197]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][197]["name"] = "DisabledAlphaBackup" +defs["structs"]["ImGuiContext"][197]["type"] = "float" defs["structs"]["ImGuiContext"][198] = {} -defs["structs"]["ImGuiContext"][198]["name"] = "PlatformLocaleDecimalPoint" -defs["structs"]["ImGuiContext"][198]["type"] = "char" +defs["structs"]["ImGuiContext"][198]["name"] = "DisabledStackSize" +defs["structs"]["ImGuiContext"][198]["type"] = "short" defs["structs"]["ImGuiContext"][199] = {} -defs["structs"]["ImGuiContext"][199]["name"] = "DockContext" -defs["structs"]["ImGuiContext"][199]["type"] = "ImGuiDockContext" +defs["structs"]["ImGuiContext"][199]["name"] = "TooltipOverrideCount" +defs["structs"]["ImGuiContext"][199]["type"] = "short" defs["structs"]["ImGuiContext"][200] = {} -defs["structs"]["ImGuiContext"][200]["name"] = "SettingsLoaded" -defs["structs"]["ImGuiContext"][200]["type"] = "bool" +defs["structs"]["ImGuiContext"][200]["name"] = "ClipboardHandlerData" +defs["structs"]["ImGuiContext"][200]["template_type"] = "char" +defs["structs"]["ImGuiContext"][200]["type"] = "ImVector_char" defs["structs"]["ImGuiContext"][201] = {} -defs["structs"]["ImGuiContext"][201]["name"] = "SettingsDirtyTimer" -defs["structs"]["ImGuiContext"][201]["type"] = "float" +defs["structs"]["ImGuiContext"][201]["name"] = "MenusIdSubmittedThisFrame" +defs["structs"]["ImGuiContext"][201]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][201]["type"] = "ImVector_ImGuiID" defs["structs"]["ImGuiContext"][202] = {} -defs["structs"]["ImGuiContext"][202]["name"] = "SettingsIniData" -defs["structs"]["ImGuiContext"][202]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][202]["name"] = "PlatformImeData" +defs["structs"]["ImGuiContext"][202]["type"] = "ImGuiPlatformImeData" defs["structs"]["ImGuiContext"][203] = {} -defs["structs"]["ImGuiContext"][203]["name"] = "SettingsHandlers" -defs["structs"]["ImGuiContext"][203]["template_type"] = "ImGuiSettingsHandler" -defs["structs"]["ImGuiContext"][203]["type"] = "ImVector_ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][203]["name"] = "PlatformImeDataPrev" +defs["structs"]["ImGuiContext"][203]["type"] = "ImGuiPlatformImeData" defs["structs"]["ImGuiContext"][204] = {} -defs["structs"]["ImGuiContext"][204]["name"] = "SettingsWindows" -defs["structs"]["ImGuiContext"][204]["template_type"] = "ImGuiWindowSettings" -defs["structs"]["ImGuiContext"][204]["type"] = "ImChunkStream_ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][204]["name"] = "PlatformImeViewport" +defs["structs"]["ImGuiContext"][204]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][205] = {} -defs["structs"]["ImGuiContext"][205]["name"] = "SettingsTables" -defs["structs"]["ImGuiContext"][205]["template_type"] = "ImGuiTableSettings" -defs["structs"]["ImGuiContext"][205]["type"] = "ImChunkStream_ImGuiTableSettings" +defs["structs"]["ImGuiContext"][205]["name"] = "PlatformLocaleDecimalPoint" +defs["structs"]["ImGuiContext"][205]["type"] = "char" defs["structs"]["ImGuiContext"][206] = {} -defs["structs"]["ImGuiContext"][206]["name"] = "Hooks" -defs["structs"]["ImGuiContext"][206]["template_type"] = "ImGuiContextHook" -defs["structs"]["ImGuiContext"][206]["type"] = "ImVector_ImGuiContextHook" +defs["structs"]["ImGuiContext"][206]["name"] = "DockContext" +defs["structs"]["ImGuiContext"][206]["type"] = "ImGuiDockContext" defs["structs"]["ImGuiContext"][207] = {} -defs["structs"]["ImGuiContext"][207]["name"] = "HookIdNext" -defs["structs"]["ImGuiContext"][207]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][207]["name"] = "SettingsLoaded" +defs["structs"]["ImGuiContext"][207]["type"] = "bool" defs["structs"]["ImGuiContext"][208] = {} -defs["structs"]["ImGuiContext"][208]["name"] = "LogEnabled" -defs["structs"]["ImGuiContext"][208]["type"] = "bool" +defs["structs"]["ImGuiContext"][208]["name"] = "SettingsDirtyTimer" +defs["structs"]["ImGuiContext"][208]["type"] = "float" defs["structs"]["ImGuiContext"][209] = {} -defs["structs"]["ImGuiContext"][209]["name"] = "LogType" -defs["structs"]["ImGuiContext"][209]["type"] = "ImGuiLogType" +defs["structs"]["ImGuiContext"][209]["name"] = "SettingsIniData" +defs["structs"]["ImGuiContext"][209]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiContext"][210] = {} -defs["structs"]["ImGuiContext"][210]["name"] = "LogFile" -defs["structs"]["ImGuiContext"][210]["type"] = "ImFileHandle" +defs["structs"]["ImGuiContext"][210]["name"] = "SettingsHandlers" +defs["structs"]["ImGuiContext"][210]["template_type"] = "ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][210]["type"] = "ImVector_ImGuiSettingsHandler" defs["structs"]["ImGuiContext"][211] = {} -defs["structs"]["ImGuiContext"][211]["name"] = "LogBuffer" -defs["structs"]["ImGuiContext"][211]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][211]["name"] = "SettingsWindows" +defs["structs"]["ImGuiContext"][211]["template_type"] = "ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][211]["type"] = "ImChunkStream_ImGuiWindowSettings" defs["structs"]["ImGuiContext"][212] = {} -defs["structs"]["ImGuiContext"][212]["name"] = "LogNextPrefix" -defs["structs"]["ImGuiContext"][212]["type"] = "const char*" +defs["structs"]["ImGuiContext"][212]["name"] = "SettingsTables" +defs["structs"]["ImGuiContext"][212]["template_type"] = "ImGuiTableSettings" +defs["structs"]["ImGuiContext"][212]["type"] = "ImChunkStream_ImGuiTableSettings" defs["structs"]["ImGuiContext"][213] = {} -defs["structs"]["ImGuiContext"][213]["name"] = "LogNextSuffix" -defs["structs"]["ImGuiContext"][213]["type"] = "const char*" +defs["structs"]["ImGuiContext"][213]["name"] = "Hooks" +defs["structs"]["ImGuiContext"][213]["template_type"] = "ImGuiContextHook" +defs["structs"]["ImGuiContext"][213]["type"] = "ImVector_ImGuiContextHook" defs["structs"]["ImGuiContext"][214] = {} -defs["structs"]["ImGuiContext"][214]["name"] = "LogLinePosY" -defs["structs"]["ImGuiContext"][214]["type"] = "float" +defs["structs"]["ImGuiContext"][214]["name"] = "HookIdNext" +defs["structs"]["ImGuiContext"][214]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][215] = {} -defs["structs"]["ImGuiContext"][215]["name"] = "LogLineFirstItem" +defs["structs"]["ImGuiContext"][215]["name"] = "LogEnabled" defs["structs"]["ImGuiContext"][215]["type"] = "bool" defs["structs"]["ImGuiContext"][216] = {} -defs["structs"]["ImGuiContext"][216]["name"] = "LogDepthRef" -defs["structs"]["ImGuiContext"][216]["type"] = "int" +defs["structs"]["ImGuiContext"][216]["name"] = "LogType" +defs["structs"]["ImGuiContext"][216]["type"] = "ImGuiLogType" defs["structs"]["ImGuiContext"][217] = {} -defs["structs"]["ImGuiContext"][217]["name"] = "LogDepthToExpand" -defs["structs"]["ImGuiContext"][217]["type"] = "int" +defs["structs"]["ImGuiContext"][217]["name"] = "LogFile" +defs["structs"]["ImGuiContext"][217]["type"] = "ImFileHandle" defs["structs"]["ImGuiContext"][218] = {} -defs["structs"]["ImGuiContext"][218]["name"] = "LogDepthToExpandDefault" -defs["structs"]["ImGuiContext"][218]["type"] = "int" +defs["structs"]["ImGuiContext"][218]["name"] = "LogBuffer" +defs["structs"]["ImGuiContext"][218]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiContext"][219] = {} -defs["structs"]["ImGuiContext"][219]["name"] = "DebugLogFlags" -defs["structs"]["ImGuiContext"][219]["type"] = "ImGuiDebugLogFlags" +defs["structs"]["ImGuiContext"][219]["name"] = "LogNextPrefix" +defs["structs"]["ImGuiContext"][219]["type"] = "const char*" defs["structs"]["ImGuiContext"][220] = {} -defs["structs"]["ImGuiContext"][220]["name"] = "DebugLogBuf" -defs["structs"]["ImGuiContext"][220]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][220]["name"] = "LogNextSuffix" +defs["structs"]["ImGuiContext"][220]["type"] = "const char*" defs["structs"]["ImGuiContext"][221] = {} -defs["structs"]["ImGuiContext"][221]["name"] = "DebugItemPickerActive" -defs["structs"]["ImGuiContext"][221]["type"] = "bool" +defs["structs"]["ImGuiContext"][221]["name"] = "LogLinePosY" +defs["structs"]["ImGuiContext"][221]["type"] = "float" defs["structs"]["ImGuiContext"][222] = {} -defs["structs"]["ImGuiContext"][222]["name"] = "DebugItemPickerBreakId" -defs["structs"]["ImGuiContext"][222]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][222]["name"] = "LogLineFirstItem" +defs["structs"]["ImGuiContext"][222]["type"] = "bool" defs["structs"]["ImGuiContext"][223] = {} -defs["structs"]["ImGuiContext"][223]["name"] = "DebugMetricsConfig" -defs["structs"]["ImGuiContext"][223]["type"] = "ImGuiMetricsConfig" +defs["structs"]["ImGuiContext"][223]["name"] = "LogDepthRef" +defs["structs"]["ImGuiContext"][223]["type"] = "int" defs["structs"]["ImGuiContext"][224] = {} -defs["structs"]["ImGuiContext"][224]["name"] = "DebugStackTool" -defs["structs"]["ImGuiContext"][224]["type"] = "ImGuiStackTool" +defs["structs"]["ImGuiContext"][224]["name"] = "LogDepthToExpand" +defs["structs"]["ImGuiContext"][224]["type"] = "int" defs["structs"]["ImGuiContext"][225] = {} -defs["structs"]["ImGuiContext"][225]["name"] = "FramerateSecPerFrame[120]" -defs["structs"]["ImGuiContext"][225]["size"] = 120 -defs["structs"]["ImGuiContext"][225]["type"] = "float" +defs["structs"]["ImGuiContext"][225]["name"] = "LogDepthToExpandDefault" +defs["structs"]["ImGuiContext"][225]["type"] = "int" defs["structs"]["ImGuiContext"][226] = {} -defs["structs"]["ImGuiContext"][226]["name"] = "FramerateSecPerFrameIdx" -defs["structs"]["ImGuiContext"][226]["type"] = "int" +defs["structs"]["ImGuiContext"][226]["name"] = "DebugLogFlags" +defs["structs"]["ImGuiContext"][226]["type"] = "ImGuiDebugLogFlags" defs["structs"]["ImGuiContext"][227] = {} -defs["structs"]["ImGuiContext"][227]["name"] = "FramerateSecPerFrameCount" -defs["structs"]["ImGuiContext"][227]["type"] = "int" +defs["structs"]["ImGuiContext"][227]["name"] = "DebugLogBuf" +defs["structs"]["ImGuiContext"][227]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiContext"][228] = {} -defs["structs"]["ImGuiContext"][228]["name"] = "FramerateSecPerFrameAccum" -defs["structs"]["ImGuiContext"][228]["type"] = "float" +defs["structs"]["ImGuiContext"][228]["name"] = "DebugLogIndex" +defs["structs"]["ImGuiContext"][228]["type"] = "ImGuiTextIndex" defs["structs"]["ImGuiContext"][229] = {} -defs["structs"]["ImGuiContext"][229]["name"] = "WantCaptureMouseNextFrame" -defs["structs"]["ImGuiContext"][229]["type"] = "int" +defs["structs"]["ImGuiContext"][229]["name"] = "DebugLocateFrames" +defs["structs"]["ImGuiContext"][229]["type"] = "ImU8" defs["structs"]["ImGuiContext"][230] = {} -defs["structs"]["ImGuiContext"][230]["name"] = "WantCaptureKeyboardNextFrame" -defs["structs"]["ImGuiContext"][230]["type"] = "int" +defs["structs"]["ImGuiContext"][230]["name"] = "DebugItemPickerActive" +defs["structs"]["ImGuiContext"][230]["type"] = "bool" defs["structs"]["ImGuiContext"][231] = {} -defs["structs"]["ImGuiContext"][231]["name"] = "WantTextInputNextFrame" -defs["structs"]["ImGuiContext"][231]["type"] = "int" +defs["structs"]["ImGuiContext"][231]["name"] = "DebugItemPickerMouseButton" +defs["structs"]["ImGuiContext"][231]["type"] = "ImU8" defs["structs"]["ImGuiContext"][232] = {} -defs["structs"]["ImGuiContext"][232]["name"] = "TempBuffer" -defs["structs"]["ImGuiContext"][232]["template_type"] = "char" -defs["structs"]["ImGuiContext"][232]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][232]["name"] = "DebugItemPickerBreakId" +defs["structs"]["ImGuiContext"][232]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][233] = {} +defs["structs"]["ImGuiContext"][233]["name"] = "DebugMetricsConfig" +defs["structs"]["ImGuiContext"][233]["type"] = "ImGuiMetricsConfig" +defs["structs"]["ImGuiContext"][234] = {} +defs["structs"]["ImGuiContext"][234]["name"] = "DebugStackTool" +defs["structs"]["ImGuiContext"][234]["type"] = "ImGuiStackTool" +defs["structs"]["ImGuiContext"][235] = {} +defs["structs"]["ImGuiContext"][235]["name"] = "DebugHoveredDockNode" +defs["structs"]["ImGuiContext"][235]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiContext"][236] = {} +defs["structs"]["ImGuiContext"][236]["name"] = "FramerateSecPerFrame[60]" +defs["structs"]["ImGuiContext"][236]["size"] = 60 +defs["structs"]["ImGuiContext"][236]["type"] = "float" +defs["structs"]["ImGuiContext"][237] = {} +defs["structs"]["ImGuiContext"][237]["name"] = "FramerateSecPerFrameIdx" +defs["structs"]["ImGuiContext"][237]["type"] = "int" +defs["structs"]["ImGuiContext"][238] = {} +defs["structs"]["ImGuiContext"][238]["name"] = "FramerateSecPerFrameCount" +defs["structs"]["ImGuiContext"][238]["type"] = "int" +defs["structs"]["ImGuiContext"][239] = {} +defs["structs"]["ImGuiContext"][239]["name"] = "FramerateSecPerFrameAccum" +defs["structs"]["ImGuiContext"][239]["type"] = "float" +defs["structs"]["ImGuiContext"][240] = {} +defs["structs"]["ImGuiContext"][240]["name"] = "WantCaptureMouseNextFrame" +defs["structs"]["ImGuiContext"][240]["type"] = "int" +defs["structs"]["ImGuiContext"][241] = {} +defs["structs"]["ImGuiContext"][241]["name"] = "WantCaptureKeyboardNextFrame" +defs["structs"]["ImGuiContext"][241]["type"] = "int" +defs["structs"]["ImGuiContext"][242] = {} +defs["structs"]["ImGuiContext"][242]["name"] = "WantTextInputNextFrame" +defs["structs"]["ImGuiContext"][242]["type"] = "int" +defs["structs"]["ImGuiContext"][243] = {} +defs["structs"]["ImGuiContext"][243]["name"] = "TempBuffer" +defs["structs"]["ImGuiContext"][243]["template_type"] = "char" +defs["structs"]["ImGuiContext"][243]["type"] = "ImVector_char" defs["structs"]["ImGuiContextHook"] = {} defs["structs"]["ImGuiContextHook"][1] = {} defs["structs"]["ImGuiContextHook"][1]["name"] = "HookId" @@ -5055,278 +5188,279 @@ defs["structs"]["ImGuiIO"][12] = {} defs["structs"]["ImGuiIO"][12]["name"] = "KeyRepeatRate" defs["structs"]["ImGuiIO"][12]["type"] = "float" defs["structs"]["ImGuiIO"][13] = {} -defs["structs"]["ImGuiIO"][13]["name"] = "UserData" -defs["structs"]["ImGuiIO"][13]["type"] = "void*" +defs["structs"]["ImGuiIO"][13]["name"] = "HoverDelayNormal" +defs["structs"]["ImGuiIO"][13]["type"] = "float" defs["structs"]["ImGuiIO"][14] = {} -defs["structs"]["ImGuiIO"][14]["name"] = "Fonts" -defs["structs"]["ImGuiIO"][14]["type"] = "ImFontAtlas*" +defs["structs"]["ImGuiIO"][14]["name"] = "HoverDelayShort" +defs["structs"]["ImGuiIO"][14]["type"] = "float" defs["structs"]["ImGuiIO"][15] = {} -defs["structs"]["ImGuiIO"][15]["name"] = "FontGlobalScale" -defs["structs"]["ImGuiIO"][15]["type"] = "float" +defs["structs"]["ImGuiIO"][15]["name"] = "UserData" +defs["structs"]["ImGuiIO"][15]["type"] = "void*" defs["structs"]["ImGuiIO"][16] = {} -defs["structs"]["ImGuiIO"][16]["name"] = "FontAllowUserScaling" -defs["structs"]["ImGuiIO"][16]["type"] = "bool" +defs["structs"]["ImGuiIO"][16]["name"] = "Fonts" +defs["structs"]["ImGuiIO"][16]["type"] = "ImFontAtlas*" defs["structs"]["ImGuiIO"][17] = {} -defs["structs"]["ImGuiIO"][17]["name"] = "FontDefault" -defs["structs"]["ImGuiIO"][17]["type"] = "ImFont*" +defs["structs"]["ImGuiIO"][17]["name"] = "FontGlobalScale" +defs["structs"]["ImGuiIO"][17]["type"] = "float" defs["structs"]["ImGuiIO"][18] = {} -defs["structs"]["ImGuiIO"][18]["name"] = "DisplayFramebufferScale" -defs["structs"]["ImGuiIO"][18]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][18]["name"] = "FontAllowUserScaling" +defs["structs"]["ImGuiIO"][18]["type"] = "bool" defs["structs"]["ImGuiIO"][19] = {} -defs["structs"]["ImGuiIO"][19]["name"] = "ConfigDockingNoSplit" -defs["structs"]["ImGuiIO"][19]["type"] = "bool" +defs["structs"]["ImGuiIO"][19]["name"] = "FontDefault" +defs["structs"]["ImGuiIO"][19]["type"] = "ImFont*" defs["structs"]["ImGuiIO"][20] = {} -defs["structs"]["ImGuiIO"][20]["name"] = "ConfigDockingWithShift" -defs["structs"]["ImGuiIO"][20]["type"] = "bool" +defs["structs"]["ImGuiIO"][20]["name"] = "DisplayFramebufferScale" +defs["structs"]["ImGuiIO"][20]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][21] = {} -defs["structs"]["ImGuiIO"][21]["name"] = "ConfigDockingAlwaysTabBar" +defs["structs"]["ImGuiIO"][21]["name"] = "ConfigDockingNoSplit" defs["structs"]["ImGuiIO"][21]["type"] = "bool" defs["structs"]["ImGuiIO"][22] = {} -defs["structs"]["ImGuiIO"][22]["name"] = "ConfigDockingTransparentPayload" +defs["structs"]["ImGuiIO"][22]["name"] = "ConfigDockingWithShift" defs["structs"]["ImGuiIO"][22]["type"] = "bool" defs["structs"]["ImGuiIO"][23] = {} -defs["structs"]["ImGuiIO"][23]["name"] = "ConfigViewportsNoAutoMerge" +defs["structs"]["ImGuiIO"][23]["name"] = "ConfigDockingAlwaysTabBar" defs["structs"]["ImGuiIO"][23]["type"] = "bool" defs["structs"]["ImGuiIO"][24] = {} -defs["structs"]["ImGuiIO"][24]["name"] = "ConfigViewportsNoTaskBarIcon" +defs["structs"]["ImGuiIO"][24]["name"] = "ConfigDockingTransparentPayload" defs["structs"]["ImGuiIO"][24]["type"] = "bool" defs["structs"]["ImGuiIO"][25] = {} -defs["structs"]["ImGuiIO"][25]["name"] = "ConfigViewportsNoDecoration" +defs["structs"]["ImGuiIO"][25]["name"] = "ConfigViewportsNoAutoMerge" defs["structs"]["ImGuiIO"][25]["type"] = "bool" defs["structs"]["ImGuiIO"][26] = {} -defs["structs"]["ImGuiIO"][26]["name"] = "ConfigViewportsNoDefaultParent" +defs["structs"]["ImGuiIO"][26]["name"] = "ConfigViewportsNoTaskBarIcon" defs["structs"]["ImGuiIO"][26]["type"] = "bool" defs["structs"]["ImGuiIO"][27] = {} -defs["structs"]["ImGuiIO"][27]["name"] = "MouseDrawCursor" +defs["structs"]["ImGuiIO"][27]["name"] = "ConfigViewportsNoDecoration" defs["structs"]["ImGuiIO"][27]["type"] = "bool" defs["structs"]["ImGuiIO"][28] = {} -defs["structs"]["ImGuiIO"][28]["name"] = "ConfigMacOSXBehaviors" +defs["structs"]["ImGuiIO"][28]["name"] = "ConfigViewportsNoDefaultParent" defs["structs"]["ImGuiIO"][28]["type"] = "bool" defs["structs"]["ImGuiIO"][29] = {} -defs["structs"]["ImGuiIO"][29]["name"] = "ConfigInputTrickleEventQueue" +defs["structs"]["ImGuiIO"][29]["name"] = "MouseDrawCursor" defs["structs"]["ImGuiIO"][29]["type"] = "bool" defs["structs"]["ImGuiIO"][30] = {} -defs["structs"]["ImGuiIO"][30]["name"] = "ConfigInputTextCursorBlink" +defs["structs"]["ImGuiIO"][30]["name"] = "ConfigMacOSXBehaviors" defs["structs"]["ImGuiIO"][30]["type"] = "bool" defs["structs"]["ImGuiIO"][31] = {} -defs["structs"]["ImGuiIO"][31]["name"] = "ConfigDragClickToInputText" +defs["structs"]["ImGuiIO"][31]["name"] = "ConfigInputTrickleEventQueue" defs["structs"]["ImGuiIO"][31]["type"] = "bool" defs["structs"]["ImGuiIO"][32] = {} -defs["structs"]["ImGuiIO"][32]["name"] = "ConfigWindowsResizeFromEdges" +defs["structs"]["ImGuiIO"][32]["name"] = "ConfigInputTextCursorBlink" defs["structs"]["ImGuiIO"][32]["type"] = "bool" defs["structs"]["ImGuiIO"][33] = {} -defs["structs"]["ImGuiIO"][33]["name"] = "ConfigWindowsMoveFromTitleBarOnly" +defs["structs"]["ImGuiIO"][33]["name"] = "ConfigInputTextEnterKeepActive" defs["structs"]["ImGuiIO"][33]["type"] = "bool" defs["structs"]["ImGuiIO"][34] = {} -defs["structs"]["ImGuiIO"][34]["name"] = "ConfigMemoryCompactTimer" -defs["structs"]["ImGuiIO"][34]["type"] = "float" +defs["structs"]["ImGuiIO"][34]["name"] = "ConfigDragClickToInputText" +defs["structs"]["ImGuiIO"][34]["type"] = "bool" defs["structs"]["ImGuiIO"][35] = {} -defs["structs"]["ImGuiIO"][35]["name"] = "BackendPlatformName" -defs["structs"]["ImGuiIO"][35]["type"] = "const char*" +defs["structs"]["ImGuiIO"][35]["name"] = "ConfigWindowsResizeFromEdges" +defs["structs"]["ImGuiIO"][35]["type"] = "bool" defs["structs"]["ImGuiIO"][36] = {} -defs["structs"]["ImGuiIO"][36]["name"] = "BackendRendererName" -defs["structs"]["ImGuiIO"][36]["type"] = "const char*" +defs["structs"]["ImGuiIO"][36]["name"] = "ConfigWindowsMoveFromTitleBarOnly" +defs["structs"]["ImGuiIO"][36]["type"] = "bool" defs["structs"]["ImGuiIO"][37] = {} -defs["structs"]["ImGuiIO"][37]["name"] = "BackendPlatformUserData" -defs["structs"]["ImGuiIO"][37]["type"] = "void*" +defs["structs"]["ImGuiIO"][37]["name"] = "ConfigMemoryCompactTimer" +defs["structs"]["ImGuiIO"][37]["type"] = "float" defs["structs"]["ImGuiIO"][38] = {} -defs["structs"]["ImGuiIO"][38]["name"] = "BackendRendererUserData" -defs["structs"]["ImGuiIO"][38]["type"] = "void*" +defs["structs"]["ImGuiIO"][38]["name"] = "BackendPlatformName" +defs["structs"]["ImGuiIO"][38]["type"] = "const char*" defs["structs"]["ImGuiIO"][39] = {} -defs["structs"]["ImGuiIO"][39]["name"] = "BackendLanguageUserData" -defs["structs"]["ImGuiIO"][39]["type"] = "void*" +defs["structs"]["ImGuiIO"][39]["name"] = "BackendRendererName" +defs["structs"]["ImGuiIO"][39]["type"] = "const char*" defs["structs"]["ImGuiIO"][40] = {} -defs["structs"]["ImGuiIO"][40]["name"] = "GetClipboardTextFn" -defs["structs"]["ImGuiIO"][40]["type"] = "const char*(*)(void* user_data)" +defs["structs"]["ImGuiIO"][40]["name"] = "BackendPlatformUserData" +defs["structs"]["ImGuiIO"][40]["type"] = "void*" defs["structs"]["ImGuiIO"][41] = {} -defs["structs"]["ImGuiIO"][41]["name"] = "SetClipboardTextFn" -defs["structs"]["ImGuiIO"][41]["type"] = "void(*)(void* user_data,const char* text)" +defs["structs"]["ImGuiIO"][41]["name"] = "BackendRendererUserData" +defs["structs"]["ImGuiIO"][41]["type"] = "void*" defs["structs"]["ImGuiIO"][42] = {} -defs["structs"]["ImGuiIO"][42]["name"] = "ClipboardUserData" +defs["structs"]["ImGuiIO"][42]["name"] = "BackendLanguageUserData" defs["structs"]["ImGuiIO"][42]["type"] = "void*" defs["structs"]["ImGuiIO"][43] = {} -defs["structs"]["ImGuiIO"][43]["name"] = "SetPlatformImeDataFn" -defs["structs"]["ImGuiIO"][43]["type"] = "void(*)(ImGuiViewport* viewport,ImGuiPlatformImeData* data)" +defs["structs"]["ImGuiIO"][43]["name"] = "GetClipboardTextFn" +defs["structs"]["ImGuiIO"][43]["type"] = "const char*(*)(void* user_data)" defs["structs"]["ImGuiIO"][44] = {} -defs["structs"]["ImGuiIO"][44]["name"] = "_UnusedPadding" -defs["structs"]["ImGuiIO"][44]["type"] = "void*" +defs["structs"]["ImGuiIO"][44]["name"] = "SetClipboardTextFn" +defs["structs"]["ImGuiIO"][44]["type"] = "void(*)(void* user_data,const char* text)" defs["structs"]["ImGuiIO"][45] = {} -defs["structs"]["ImGuiIO"][45]["name"] = "WantCaptureMouse" -defs["structs"]["ImGuiIO"][45]["type"] = "bool" +defs["structs"]["ImGuiIO"][45]["name"] = "ClipboardUserData" +defs["structs"]["ImGuiIO"][45]["type"] = "void*" defs["structs"]["ImGuiIO"][46] = {} -defs["structs"]["ImGuiIO"][46]["name"] = "WantCaptureKeyboard" -defs["structs"]["ImGuiIO"][46]["type"] = "bool" +defs["structs"]["ImGuiIO"][46]["name"] = "SetPlatformImeDataFn" +defs["structs"]["ImGuiIO"][46]["type"] = "void(*)(ImGuiViewport* viewport,ImGuiPlatformImeData* data)" defs["structs"]["ImGuiIO"][47] = {} -defs["structs"]["ImGuiIO"][47]["name"] = "WantTextInput" -defs["structs"]["ImGuiIO"][47]["type"] = "bool" +defs["structs"]["ImGuiIO"][47]["name"] = "_UnusedPadding" +defs["structs"]["ImGuiIO"][47]["type"] = "void*" defs["structs"]["ImGuiIO"][48] = {} -defs["structs"]["ImGuiIO"][48]["name"] = "WantSetMousePos" +defs["structs"]["ImGuiIO"][48]["name"] = "WantCaptureMouse" defs["structs"]["ImGuiIO"][48]["type"] = "bool" defs["structs"]["ImGuiIO"][49] = {} -defs["structs"]["ImGuiIO"][49]["name"] = "WantSaveIniSettings" +defs["structs"]["ImGuiIO"][49]["name"] = "WantCaptureKeyboard" defs["structs"]["ImGuiIO"][49]["type"] = "bool" defs["structs"]["ImGuiIO"][50] = {} -defs["structs"]["ImGuiIO"][50]["name"] = "NavActive" +defs["structs"]["ImGuiIO"][50]["name"] = "WantTextInput" defs["structs"]["ImGuiIO"][50]["type"] = "bool" defs["structs"]["ImGuiIO"][51] = {} -defs["structs"]["ImGuiIO"][51]["name"] = "NavVisible" +defs["structs"]["ImGuiIO"][51]["name"] = "WantSetMousePos" defs["structs"]["ImGuiIO"][51]["type"] = "bool" defs["structs"]["ImGuiIO"][52] = {} -defs["structs"]["ImGuiIO"][52]["name"] = "Framerate" -defs["structs"]["ImGuiIO"][52]["type"] = "float" +defs["structs"]["ImGuiIO"][52]["name"] = "WantSaveIniSettings" +defs["structs"]["ImGuiIO"][52]["type"] = "bool" defs["structs"]["ImGuiIO"][53] = {} -defs["structs"]["ImGuiIO"][53]["name"] = "MetricsRenderVertices" -defs["structs"]["ImGuiIO"][53]["type"] = "int" +defs["structs"]["ImGuiIO"][53]["name"] = "NavActive" +defs["structs"]["ImGuiIO"][53]["type"] = "bool" defs["structs"]["ImGuiIO"][54] = {} -defs["structs"]["ImGuiIO"][54]["name"] = "MetricsRenderIndices" -defs["structs"]["ImGuiIO"][54]["type"] = "int" +defs["structs"]["ImGuiIO"][54]["name"] = "NavVisible" +defs["structs"]["ImGuiIO"][54]["type"] = "bool" defs["structs"]["ImGuiIO"][55] = {} -defs["structs"]["ImGuiIO"][55]["name"] = "MetricsRenderWindows" -defs["structs"]["ImGuiIO"][55]["type"] = "int" +defs["structs"]["ImGuiIO"][55]["name"] = "Framerate" +defs["structs"]["ImGuiIO"][55]["type"] = "float" defs["structs"]["ImGuiIO"][56] = {} -defs["structs"]["ImGuiIO"][56]["name"] = "MetricsActiveWindows" +defs["structs"]["ImGuiIO"][56]["name"] = "MetricsRenderVertices" defs["structs"]["ImGuiIO"][56]["type"] = "int" defs["structs"]["ImGuiIO"][57] = {} -defs["structs"]["ImGuiIO"][57]["name"] = "MetricsActiveAllocations" +defs["structs"]["ImGuiIO"][57]["name"] = "MetricsRenderIndices" defs["structs"]["ImGuiIO"][57]["type"] = "int" defs["structs"]["ImGuiIO"][58] = {} -defs["structs"]["ImGuiIO"][58]["name"] = "MouseDelta" -defs["structs"]["ImGuiIO"][58]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][58]["name"] = "MetricsRenderWindows" +defs["structs"]["ImGuiIO"][58]["type"] = "int" defs["structs"]["ImGuiIO"][59] = {} -defs["structs"]["ImGuiIO"][59]["name"] = "KeyMap[ImGuiKey_COUNT]" -defs["structs"]["ImGuiIO"][59]["size"] = 645 +defs["structs"]["ImGuiIO"][59]["name"] = "MetricsActiveWindows" defs["structs"]["ImGuiIO"][59]["type"] = "int" defs["structs"]["ImGuiIO"][60] = {} -defs["structs"]["ImGuiIO"][60]["name"] = "KeysDown[ImGuiKey_COUNT]" -defs["structs"]["ImGuiIO"][60]["size"] = 645 -defs["structs"]["ImGuiIO"][60]["type"] = "bool" +defs["structs"]["ImGuiIO"][60]["name"] = "MetricsActiveAllocations" +defs["structs"]["ImGuiIO"][60]["type"] = "int" defs["structs"]["ImGuiIO"][61] = {} -defs["structs"]["ImGuiIO"][61]["name"] = "MousePos" +defs["structs"]["ImGuiIO"][61]["name"] = "MouseDelta" defs["structs"]["ImGuiIO"][61]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][62] = {} -defs["structs"]["ImGuiIO"][62]["name"] = "MouseDown[5]" -defs["structs"]["ImGuiIO"][62]["size"] = 5 -defs["structs"]["ImGuiIO"][62]["type"] = "bool" +defs["structs"]["ImGuiIO"][62]["name"] = "KeyMap[ImGuiKey_COUNT]" +defs["structs"]["ImGuiIO"][62]["size"] = 652 +defs["structs"]["ImGuiIO"][62]["type"] = "int" defs["structs"]["ImGuiIO"][63] = {} -defs["structs"]["ImGuiIO"][63]["name"] = "MouseWheel" -defs["structs"]["ImGuiIO"][63]["type"] = "float" +defs["structs"]["ImGuiIO"][63]["name"] = "KeysDown[ImGuiKey_COUNT]" +defs["structs"]["ImGuiIO"][63]["size"] = 652 +defs["structs"]["ImGuiIO"][63]["type"] = "bool" defs["structs"]["ImGuiIO"][64] = {} -defs["structs"]["ImGuiIO"][64]["name"] = "MouseWheelH" +defs["structs"]["ImGuiIO"][64]["name"] = "NavInputs[ImGuiNavInput_COUNT]" +defs["structs"]["ImGuiIO"][64]["size"] = 16 defs["structs"]["ImGuiIO"][64]["type"] = "float" defs["structs"]["ImGuiIO"][65] = {} -defs["structs"]["ImGuiIO"][65]["name"] = "MouseHoveredViewport" -defs["structs"]["ImGuiIO"][65]["type"] = "ImGuiID" +defs["structs"]["ImGuiIO"][65]["name"] = "MousePos" +defs["structs"]["ImGuiIO"][65]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][66] = {} -defs["structs"]["ImGuiIO"][66]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][66]["name"] = "MouseDown[5]" +defs["structs"]["ImGuiIO"][66]["size"] = 5 defs["structs"]["ImGuiIO"][66]["type"] = "bool" defs["structs"]["ImGuiIO"][67] = {} -defs["structs"]["ImGuiIO"][67]["name"] = "KeyShift" -defs["structs"]["ImGuiIO"][67]["type"] = "bool" +defs["structs"]["ImGuiIO"][67]["name"] = "MouseWheel" +defs["structs"]["ImGuiIO"][67]["type"] = "float" defs["structs"]["ImGuiIO"][68] = {} -defs["structs"]["ImGuiIO"][68]["name"] = "KeyAlt" -defs["structs"]["ImGuiIO"][68]["type"] = "bool" +defs["structs"]["ImGuiIO"][68]["name"] = "MouseWheelH" +defs["structs"]["ImGuiIO"][68]["type"] = "float" defs["structs"]["ImGuiIO"][69] = {} -defs["structs"]["ImGuiIO"][69]["name"] = "KeySuper" -defs["structs"]["ImGuiIO"][69]["type"] = "bool" +defs["structs"]["ImGuiIO"][69]["name"] = "MouseHoveredViewport" +defs["structs"]["ImGuiIO"][69]["type"] = "ImGuiID" defs["structs"]["ImGuiIO"][70] = {} -defs["structs"]["ImGuiIO"][70]["name"] = "NavInputs[ImGuiNavInput_COUNT]" -defs["structs"]["ImGuiIO"][70]["size"] = 20 -defs["structs"]["ImGuiIO"][70]["type"] = "float" +defs["structs"]["ImGuiIO"][70]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][70]["type"] = "bool" defs["structs"]["ImGuiIO"][71] = {} -defs["structs"]["ImGuiIO"][71]["name"] = "KeyMods" -defs["structs"]["ImGuiIO"][71]["type"] = "ImGuiModFlags" +defs["structs"]["ImGuiIO"][71]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][71]["type"] = "bool" defs["structs"]["ImGuiIO"][72] = {} -defs["structs"]["ImGuiIO"][72]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" -defs["structs"]["ImGuiIO"][72]["size"] = 645 -defs["structs"]["ImGuiIO"][72]["type"] = "ImGuiKeyData" +defs["structs"]["ImGuiIO"][72]["name"] = "KeyAlt" +defs["structs"]["ImGuiIO"][72]["type"] = "bool" defs["structs"]["ImGuiIO"][73] = {} -defs["structs"]["ImGuiIO"][73]["name"] = "WantCaptureMouseUnlessPopupClose" +defs["structs"]["ImGuiIO"][73]["name"] = "KeySuper" defs["structs"]["ImGuiIO"][73]["type"] = "bool" defs["structs"]["ImGuiIO"][74] = {} -defs["structs"]["ImGuiIO"][74]["name"] = "MousePosPrev" -defs["structs"]["ImGuiIO"][74]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][74]["name"] = "KeyMods" +defs["structs"]["ImGuiIO"][74]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiIO"][75] = {} -defs["structs"]["ImGuiIO"][75]["name"] = "MouseClickedPos[5]" -defs["structs"]["ImGuiIO"][75]["size"] = 5 -defs["structs"]["ImGuiIO"][75]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][75]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" +defs["structs"]["ImGuiIO"][75]["size"] = 652 +defs["structs"]["ImGuiIO"][75]["type"] = "ImGuiKeyData" defs["structs"]["ImGuiIO"][76] = {} -defs["structs"]["ImGuiIO"][76]["name"] = "MouseClickedTime[5]" -defs["structs"]["ImGuiIO"][76]["size"] = 5 -defs["structs"]["ImGuiIO"][76]["type"] = "double" +defs["structs"]["ImGuiIO"][76]["name"] = "WantCaptureMouseUnlessPopupClose" +defs["structs"]["ImGuiIO"][76]["type"] = "bool" defs["structs"]["ImGuiIO"][77] = {} -defs["structs"]["ImGuiIO"][77]["name"] = "MouseClicked[5]" -defs["structs"]["ImGuiIO"][77]["size"] = 5 -defs["structs"]["ImGuiIO"][77]["type"] = "bool" +defs["structs"]["ImGuiIO"][77]["name"] = "MousePosPrev" +defs["structs"]["ImGuiIO"][77]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][78] = {} -defs["structs"]["ImGuiIO"][78]["name"] = "MouseDoubleClicked[5]" +defs["structs"]["ImGuiIO"][78]["name"] = "MouseClickedPos[5]" defs["structs"]["ImGuiIO"][78]["size"] = 5 -defs["structs"]["ImGuiIO"][78]["type"] = "bool" +defs["structs"]["ImGuiIO"][78]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][79] = {} -defs["structs"]["ImGuiIO"][79]["name"] = "MouseClickedCount[5]" +defs["structs"]["ImGuiIO"][79]["name"] = "MouseClickedTime[5]" defs["structs"]["ImGuiIO"][79]["size"] = 5 -defs["structs"]["ImGuiIO"][79]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][79]["type"] = "double" defs["structs"]["ImGuiIO"][80] = {} -defs["structs"]["ImGuiIO"][80]["name"] = "MouseClickedLastCount[5]" +defs["structs"]["ImGuiIO"][80]["name"] = "MouseClicked[5]" defs["structs"]["ImGuiIO"][80]["size"] = 5 -defs["structs"]["ImGuiIO"][80]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][80]["type"] = "bool" defs["structs"]["ImGuiIO"][81] = {} -defs["structs"]["ImGuiIO"][81]["name"] = "MouseReleased[5]" +defs["structs"]["ImGuiIO"][81]["name"] = "MouseDoubleClicked[5]" defs["structs"]["ImGuiIO"][81]["size"] = 5 defs["structs"]["ImGuiIO"][81]["type"] = "bool" defs["structs"]["ImGuiIO"][82] = {} -defs["structs"]["ImGuiIO"][82]["name"] = "MouseDownOwned[5]" +defs["structs"]["ImGuiIO"][82]["name"] = "MouseClickedCount[5]" defs["structs"]["ImGuiIO"][82]["size"] = 5 -defs["structs"]["ImGuiIO"][82]["type"] = "bool" +defs["structs"]["ImGuiIO"][82]["type"] = "ImU16" defs["structs"]["ImGuiIO"][83] = {} -defs["structs"]["ImGuiIO"][83]["name"] = "MouseDownOwnedUnlessPopupClose[5]" +defs["structs"]["ImGuiIO"][83]["name"] = "MouseClickedLastCount[5]" defs["structs"]["ImGuiIO"][83]["size"] = 5 -defs["structs"]["ImGuiIO"][83]["type"] = "bool" +defs["structs"]["ImGuiIO"][83]["type"] = "ImU16" defs["structs"]["ImGuiIO"][84] = {} -defs["structs"]["ImGuiIO"][84]["name"] = "MouseDownDuration[5]" +defs["structs"]["ImGuiIO"][84]["name"] = "MouseReleased[5]" defs["structs"]["ImGuiIO"][84]["size"] = 5 -defs["structs"]["ImGuiIO"][84]["type"] = "float" +defs["structs"]["ImGuiIO"][84]["type"] = "bool" defs["structs"]["ImGuiIO"][85] = {} -defs["structs"]["ImGuiIO"][85]["name"] = "MouseDownDurationPrev[5]" +defs["structs"]["ImGuiIO"][85]["name"] = "MouseDownOwned[5]" defs["structs"]["ImGuiIO"][85]["size"] = 5 -defs["structs"]["ImGuiIO"][85]["type"] = "float" +defs["structs"]["ImGuiIO"][85]["type"] = "bool" defs["structs"]["ImGuiIO"][86] = {} -defs["structs"]["ImGuiIO"][86]["name"] = "MouseDragMaxDistanceAbs[5]" +defs["structs"]["ImGuiIO"][86]["name"] = "MouseDownOwnedUnlessPopupClose[5]" defs["structs"]["ImGuiIO"][86]["size"] = 5 -defs["structs"]["ImGuiIO"][86]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][86]["type"] = "bool" defs["structs"]["ImGuiIO"][87] = {} -defs["structs"]["ImGuiIO"][87]["name"] = "MouseDragMaxDistanceSqr[5]" +defs["structs"]["ImGuiIO"][87]["name"] = "MouseDownDuration[5]" defs["structs"]["ImGuiIO"][87]["size"] = 5 defs["structs"]["ImGuiIO"][87]["type"] = "float" defs["structs"]["ImGuiIO"][88] = {} -defs["structs"]["ImGuiIO"][88]["name"] = "NavInputsDownDuration[ImGuiNavInput_COUNT]" -defs["structs"]["ImGuiIO"][88]["size"] = 20 +defs["structs"]["ImGuiIO"][88]["name"] = "MouseDownDurationPrev[5]" +defs["structs"]["ImGuiIO"][88]["size"] = 5 defs["structs"]["ImGuiIO"][88]["type"] = "float" defs["structs"]["ImGuiIO"][89] = {} -defs["structs"]["ImGuiIO"][89]["name"] = "NavInputsDownDurationPrev[ImGuiNavInput_COUNT]" -defs["structs"]["ImGuiIO"][89]["size"] = 20 -defs["structs"]["ImGuiIO"][89]["type"] = "float" +defs["structs"]["ImGuiIO"][89]["name"] = "MouseDragMaxDistanceAbs[5]" +defs["structs"]["ImGuiIO"][89]["size"] = 5 +defs["structs"]["ImGuiIO"][89]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][90] = {} -defs["structs"]["ImGuiIO"][90]["name"] = "PenPressure" +defs["structs"]["ImGuiIO"][90]["name"] = "MouseDragMaxDistanceSqr[5]" +defs["structs"]["ImGuiIO"][90]["size"] = 5 defs["structs"]["ImGuiIO"][90]["type"] = "float" defs["structs"]["ImGuiIO"][91] = {} -defs["structs"]["ImGuiIO"][91]["name"] = "AppFocusLost" -defs["structs"]["ImGuiIO"][91]["type"] = "bool" +defs["structs"]["ImGuiIO"][91]["name"] = "PenPressure" +defs["structs"]["ImGuiIO"][91]["type"] = "float" defs["structs"]["ImGuiIO"][92] = {} -defs["structs"]["ImGuiIO"][92]["name"] = "AppAcceptingEvents" +defs["structs"]["ImGuiIO"][92]["name"] = "AppFocusLost" defs["structs"]["ImGuiIO"][92]["type"] = "bool" defs["structs"]["ImGuiIO"][93] = {} -defs["structs"]["ImGuiIO"][93]["name"] = "BackendUsingLegacyKeyArrays" -defs["structs"]["ImGuiIO"][93]["type"] = "ImS8" +defs["structs"]["ImGuiIO"][93]["name"] = "AppAcceptingEvents" +defs["structs"]["ImGuiIO"][93]["type"] = "bool" defs["structs"]["ImGuiIO"][94] = {} -defs["structs"]["ImGuiIO"][94]["name"] = "BackendUsingLegacyNavInputArray" -defs["structs"]["ImGuiIO"][94]["type"] = "bool" +defs["structs"]["ImGuiIO"][94]["name"] = "BackendUsingLegacyKeyArrays" +defs["structs"]["ImGuiIO"][94]["type"] = "ImS8" defs["structs"]["ImGuiIO"][95] = {} -defs["structs"]["ImGuiIO"][95]["name"] = "InputQueueSurrogate" -defs["structs"]["ImGuiIO"][95]["type"] = "ImWchar16" +defs["structs"]["ImGuiIO"][95]["name"] = "BackendUsingLegacyNavInputArray" +defs["structs"]["ImGuiIO"][95]["type"] = "bool" defs["structs"]["ImGuiIO"][96] = {} -defs["structs"]["ImGuiIO"][96]["name"] = "InputQueueCharacters" -defs["structs"]["ImGuiIO"][96]["template_type"] = "ImWchar" -defs["structs"]["ImGuiIO"][96]["type"] = "ImVector_ImWchar" +defs["structs"]["ImGuiIO"][96]["name"] = "InputQueueSurrogate" +defs["structs"]["ImGuiIO"][96]["type"] = "ImWchar16" +defs["structs"]["ImGuiIO"][97] = {} +defs["structs"]["ImGuiIO"][97]["name"] = "InputQueueCharacters" +defs["structs"]["ImGuiIO"][97]["template_type"] = "ImWchar" +defs["structs"]["ImGuiIO"][97]["type"] = "ImVector_ImWchar" defs["structs"]["ImGuiInputEvent"] = {} defs["structs"]["ImGuiInputEvent"][1] = {} defs["structs"]["ImGuiInputEvent"][1]["name"] = "Type" @@ -5482,6 +5616,48 @@ defs["structs"]["ImGuiKeyData"][3]["type"] = "float" defs["structs"]["ImGuiKeyData"][4] = {} defs["structs"]["ImGuiKeyData"][4]["name"] = "AnalogValue" defs["structs"]["ImGuiKeyData"][4]["type"] = "float" +defs["structs"]["ImGuiKeyOwnerData"] = {} +defs["structs"]["ImGuiKeyOwnerData"][1] = {} +defs["structs"]["ImGuiKeyOwnerData"][1]["name"] = "OwnerCurr" +defs["structs"]["ImGuiKeyOwnerData"][1]["type"] = "ImGuiID" +defs["structs"]["ImGuiKeyOwnerData"][2] = {} +defs["structs"]["ImGuiKeyOwnerData"][2]["name"] = "OwnerNext" +defs["structs"]["ImGuiKeyOwnerData"][2]["type"] = "ImGuiID" +defs["structs"]["ImGuiKeyOwnerData"][3] = {} +defs["structs"]["ImGuiKeyOwnerData"][3]["name"] = "LockThisFrame" +defs["structs"]["ImGuiKeyOwnerData"][3]["type"] = "bool" +defs["structs"]["ImGuiKeyOwnerData"][4] = {} +defs["structs"]["ImGuiKeyOwnerData"][4]["name"] = "LockUntilRelease" +defs["structs"]["ImGuiKeyOwnerData"][4]["type"] = "bool" +defs["structs"]["ImGuiKeyRoutingData"] = {} +defs["structs"]["ImGuiKeyRoutingData"][1] = {} +defs["structs"]["ImGuiKeyRoutingData"][1]["name"] = "NextEntryIndex" +defs["structs"]["ImGuiKeyRoutingData"][1]["type"] = "ImGuiKeyRoutingIndex" +defs["structs"]["ImGuiKeyRoutingData"][2] = {} +defs["structs"]["ImGuiKeyRoutingData"][2]["name"] = "Mods" +defs["structs"]["ImGuiKeyRoutingData"][2]["type"] = "ImU16" +defs["structs"]["ImGuiKeyRoutingData"][3] = {} +defs["structs"]["ImGuiKeyRoutingData"][3]["name"] = "RoutingNextScore" +defs["structs"]["ImGuiKeyRoutingData"][3]["type"] = "ImU8" +defs["structs"]["ImGuiKeyRoutingData"][4] = {} +defs["structs"]["ImGuiKeyRoutingData"][4]["name"] = "RoutingCurr" +defs["structs"]["ImGuiKeyRoutingData"][4]["type"] = "ImGuiID" +defs["structs"]["ImGuiKeyRoutingData"][5] = {} +defs["structs"]["ImGuiKeyRoutingData"][5]["name"] = "RoutingNext" +defs["structs"]["ImGuiKeyRoutingData"][5]["type"] = "ImGuiID" +defs["structs"]["ImGuiKeyRoutingTable"] = {} +defs["structs"]["ImGuiKeyRoutingTable"][1] = {} +defs["structs"]["ImGuiKeyRoutingTable"][1]["name"] = "Index[ImGuiKey_NamedKey_COUNT]" +defs["structs"]["ImGuiKeyRoutingTable"][1]["size"] = 140 +defs["structs"]["ImGuiKeyRoutingTable"][1]["type"] = "ImGuiKeyRoutingIndex" +defs["structs"]["ImGuiKeyRoutingTable"][2] = {} +defs["structs"]["ImGuiKeyRoutingTable"][2]["name"] = "Entries" +defs["structs"]["ImGuiKeyRoutingTable"][2]["template_type"] = "ImGuiKeyRoutingData" +defs["structs"]["ImGuiKeyRoutingTable"][2]["type"] = "ImVector_ImGuiKeyRoutingData" +defs["structs"]["ImGuiKeyRoutingTable"][3] = {} +defs["structs"]["ImGuiKeyRoutingTable"][3]["name"] = "EntriesNext" +defs["structs"]["ImGuiKeyRoutingTable"][3]["template_type"] = "ImGuiKeyRoutingData" +defs["structs"]["ImGuiKeyRoutingTable"][3]["type"] = "ImVector_ImGuiKeyRoutingData" defs["structs"]["ImGuiLastItemData"] = {} defs["structs"]["ImGuiLastItemData"][1] = {} defs["structs"]["ImGuiLastItemData"][1]["name"] = "ID" @@ -5920,7 +6096,7 @@ defs["structs"]["ImGuiPopupData"][2] = {} defs["structs"]["ImGuiPopupData"][2]["name"] = "Window" defs["structs"]["ImGuiPopupData"][2]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiPopupData"][3] = {} -defs["structs"]["ImGuiPopupData"][3]["name"] = "SourceWindow" +defs["structs"]["ImGuiPopupData"][3]["name"] = "BackupNavWindow" defs["structs"]["ImGuiPopupData"][3]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiPopupData"][4] = {} defs["structs"]["ImGuiPopupData"][4]["name"] = "ParentNavLayer" @@ -6927,6 +7103,14 @@ defs["structs"]["ImGuiTextFilter"][2]["type"] = "ImVector_ImGuiTextRange" defs["structs"]["ImGuiTextFilter"][3] = {} defs["structs"]["ImGuiTextFilter"][3]["name"] = "CountGrep" defs["structs"]["ImGuiTextFilter"][3]["type"] = "int" +defs["structs"]["ImGuiTextIndex"] = {} +defs["structs"]["ImGuiTextIndex"][1] = {} +defs["structs"]["ImGuiTextIndex"][1]["name"] = "LineOffsets" +defs["structs"]["ImGuiTextIndex"][1]["template_type"] = "int" +defs["structs"]["ImGuiTextIndex"][1]["type"] = "ImVector_int" +defs["structs"]["ImGuiTextIndex"][2] = {} +defs["structs"]["ImGuiTextIndex"][2]["name"] = "EndOffset" +defs["structs"]["ImGuiTextIndex"][2]["type"] = "int" defs["structs"]["ImGuiTextRange"] = {} defs["structs"]["ImGuiTextRange"][1] = {} defs["structs"]["ImGuiTextRange"][1]["name"] = "b" @@ -7186,212 +7370,218 @@ defs["structs"]["ImGuiWindow"][44] = {} defs["structs"]["ImGuiWindow"][44]["name"] = "BeginCount" defs["structs"]["ImGuiWindow"][44]["type"] = "short" defs["structs"]["ImGuiWindow"][45] = {} -defs["structs"]["ImGuiWindow"][45]["name"] = "BeginOrderWithinParent" +defs["structs"]["ImGuiWindow"][45]["name"] = "BeginCountPreviousFrame" defs["structs"]["ImGuiWindow"][45]["type"] = "short" defs["structs"]["ImGuiWindow"][46] = {} -defs["structs"]["ImGuiWindow"][46]["name"] = "BeginOrderWithinContext" +defs["structs"]["ImGuiWindow"][46]["name"] = "BeginOrderWithinParent" defs["structs"]["ImGuiWindow"][46]["type"] = "short" defs["structs"]["ImGuiWindow"][47] = {} -defs["structs"]["ImGuiWindow"][47]["name"] = "FocusOrder" +defs["structs"]["ImGuiWindow"][47]["name"] = "BeginOrderWithinContext" defs["structs"]["ImGuiWindow"][47]["type"] = "short" defs["structs"]["ImGuiWindow"][48] = {} -defs["structs"]["ImGuiWindow"][48]["name"] = "PopupId" -defs["structs"]["ImGuiWindow"][48]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][48]["name"] = "FocusOrder" +defs["structs"]["ImGuiWindow"][48]["type"] = "short" defs["structs"]["ImGuiWindow"][49] = {} -defs["structs"]["ImGuiWindow"][49]["name"] = "AutoFitFramesX" -defs["structs"]["ImGuiWindow"][49]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][49]["name"] = "PopupId" +defs["structs"]["ImGuiWindow"][49]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][50] = {} -defs["structs"]["ImGuiWindow"][50]["name"] = "AutoFitFramesY" +defs["structs"]["ImGuiWindow"][50]["name"] = "AutoFitFramesX" defs["structs"]["ImGuiWindow"][50]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][51] = {} -defs["structs"]["ImGuiWindow"][51]["name"] = "AutoFitChildAxises" +defs["structs"]["ImGuiWindow"][51]["name"] = "AutoFitFramesY" defs["structs"]["ImGuiWindow"][51]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][52] = {} -defs["structs"]["ImGuiWindow"][52]["name"] = "AutoFitOnlyGrows" -defs["structs"]["ImGuiWindow"][52]["type"] = "bool" +defs["structs"]["ImGuiWindow"][52]["name"] = "AutoFitChildAxises" +defs["structs"]["ImGuiWindow"][52]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][53] = {} -defs["structs"]["ImGuiWindow"][53]["name"] = "AutoPosLastDirection" -defs["structs"]["ImGuiWindow"][53]["type"] = "ImGuiDir" +defs["structs"]["ImGuiWindow"][53]["name"] = "AutoFitOnlyGrows" +defs["structs"]["ImGuiWindow"][53]["type"] = "bool" defs["structs"]["ImGuiWindow"][54] = {} -defs["structs"]["ImGuiWindow"][54]["name"] = "HiddenFramesCanSkipItems" -defs["structs"]["ImGuiWindow"][54]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][54]["name"] = "AutoPosLastDirection" +defs["structs"]["ImGuiWindow"][54]["type"] = "ImGuiDir" defs["structs"]["ImGuiWindow"][55] = {} -defs["structs"]["ImGuiWindow"][55]["name"] = "HiddenFramesCannotSkipItems" +defs["structs"]["ImGuiWindow"][55]["name"] = "HiddenFramesCanSkipItems" defs["structs"]["ImGuiWindow"][55]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][56] = {} -defs["structs"]["ImGuiWindow"][56]["name"] = "HiddenFramesForRenderOnly" +defs["structs"]["ImGuiWindow"][56]["name"] = "HiddenFramesCannotSkipItems" defs["structs"]["ImGuiWindow"][56]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][57] = {} -defs["structs"]["ImGuiWindow"][57]["name"] = "DisableInputsFrames" +defs["structs"]["ImGuiWindow"][57]["name"] = "HiddenFramesForRenderOnly" defs["structs"]["ImGuiWindow"][57]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][58] = {} -defs["structs"]["ImGuiWindow"][58]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][58]["name"] = "SetWindowPosAllowFlags" -defs["structs"]["ImGuiWindow"][58]["type"] = "ImGuiCond" +defs["structs"]["ImGuiWindow"][58]["name"] = "DisableInputsFrames" +defs["structs"]["ImGuiWindow"][58]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][59] = {} defs["structs"]["ImGuiWindow"][59]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][59]["name"] = "SetWindowSizeAllowFlags" +defs["structs"]["ImGuiWindow"][59]["name"] = "SetWindowPosAllowFlags" defs["structs"]["ImGuiWindow"][59]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][60] = {} defs["structs"]["ImGuiWindow"][60]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][60]["name"] = "SetWindowCollapsedAllowFlags" +defs["structs"]["ImGuiWindow"][60]["name"] = "SetWindowSizeAllowFlags" defs["structs"]["ImGuiWindow"][60]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][61] = {} defs["structs"]["ImGuiWindow"][61]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][61]["name"] = "SetWindowDockAllowFlags" +defs["structs"]["ImGuiWindow"][61]["name"] = "SetWindowCollapsedAllowFlags" defs["structs"]["ImGuiWindow"][61]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][62] = {} -defs["structs"]["ImGuiWindow"][62]["name"] = "SetWindowPosVal" -defs["structs"]["ImGuiWindow"][62]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][62]["bitfield"] = "8" +defs["structs"]["ImGuiWindow"][62]["name"] = "SetWindowDockAllowFlags" +defs["structs"]["ImGuiWindow"][62]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][63] = {} -defs["structs"]["ImGuiWindow"][63]["name"] = "SetWindowPosPivot" +defs["structs"]["ImGuiWindow"][63]["name"] = "SetWindowPosVal" defs["structs"]["ImGuiWindow"][63]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][64] = {} -defs["structs"]["ImGuiWindow"][64]["name"] = "IDStack" -defs["structs"]["ImGuiWindow"][64]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiWindow"][64]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiWindow"][64]["name"] = "SetWindowPosPivot" +defs["structs"]["ImGuiWindow"][64]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][65] = {} -defs["structs"]["ImGuiWindow"][65]["name"] = "DC" -defs["structs"]["ImGuiWindow"][65]["type"] = "ImGuiWindowTempData" +defs["structs"]["ImGuiWindow"][65]["name"] = "IDStack" +defs["structs"]["ImGuiWindow"][65]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][65]["type"] = "ImVector_ImGuiID" defs["structs"]["ImGuiWindow"][66] = {} -defs["structs"]["ImGuiWindow"][66]["name"] = "OuterRectClipped" -defs["structs"]["ImGuiWindow"][66]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][66]["name"] = "DC" +defs["structs"]["ImGuiWindow"][66]["type"] = "ImGuiWindowTempData" defs["structs"]["ImGuiWindow"][67] = {} -defs["structs"]["ImGuiWindow"][67]["name"] = "InnerRect" +defs["structs"]["ImGuiWindow"][67]["name"] = "OuterRectClipped" defs["structs"]["ImGuiWindow"][67]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][68] = {} -defs["structs"]["ImGuiWindow"][68]["name"] = "InnerClipRect" +defs["structs"]["ImGuiWindow"][68]["name"] = "InnerRect" defs["structs"]["ImGuiWindow"][68]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][69] = {} -defs["structs"]["ImGuiWindow"][69]["name"] = "WorkRect" +defs["structs"]["ImGuiWindow"][69]["name"] = "InnerClipRect" defs["structs"]["ImGuiWindow"][69]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][70] = {} -defs["structs"]["ImGuiWindow"][70]["name"] = "ParentWorkRect" +defs["structs"]["ImGuiWindow"][70]["name"] = "WorkRect" defs["structs"]["ImGuiWindow"][70]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][71] = {} -defs["structs"]["ImGuiWindow"][71]["name"] = "ClipRect" +defs["structs"]["ImGuiWindow"][71]["name"] = "ParentWorkRect" defs["structs"]["ImGuiWindow"][71]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][72] = {} -defs["structs"]["ImGuiWindow"][72]["name"] = "ContentRegionRect" +defs["structs"]["ImGuiWindow"][72]["name"] = "ClipRect" defs["structs"]["ImGuiWindow"][72]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][73] = {} -defs["structs"]["ImGuiWindow"][73]["name"] = "HitTestHoleSize" -defs["structs"]["ImGuiWindow"][73]["type"] = "ImVec2ih" +defs["structs"]["ImGuiWindow"][73]["name"] = "ContentRegionRect" +defs["structs"]["ImGuiWindow"][73]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][74] = {} -defs["structs"]["ImGuiWindow"][74]["name"] = "HitTestHoleOffset" +defs["structs"]["ImGuiWindow"][74]["name"] = "HitTestHoleSize" defs["structs"]["ImGuiWindow"][74]["type"] = "ImVec2ih" defs["structs"]["ImGuiWindow"][75] = {} -defs["structs"]["ImGuiWindow"][75]["name"] = "LastFrameActive" -defs["structs"]["ImGuiWindow"][75]["type"] = "int" +defs["structs"]["ImGuiWindow"][75]["name"] = "HitTestHoleOffset" +defs["structs"]["ImGuiWindow"][75]["type"] = "ImVec2ih" defs["structs"]["ImGuiWindow"][76] = {} -defs["structs"]["ImGuiWindow"][76]["name"] = "LastFrameJustFocused" +defs["structs"]["ImGuiWindow"][76]["name"] = "LastFrameActive" defs["structs"]["ImGuiWindow"][76]["type"] = "int" defs["structs"]["ImGuiWindow"][77] = {} -defs["structs"]["ImGuiWindow"][77]["name"] = "LastTimeActive" -defs["structs"]["ImGuiWindow"][77]["type"] = "float" +defs["structs"]["ImGuiWindow"][77]["name"] = "LastFrameJustFocused" +defs["structs"]["ImGuiWindow"][77]["type"] = "int" defs["structs"]["ImGuiWindow"][78] = {} -defs["structs"]["ImGuiWindow"][78]["name"] = "ItemWidthDefault" +defs["structs"]["ImGuiWindow"][78]["name"] = "LastTimeActive" defs["structs"]["ImGuiWindow"][78]["type"] = "float" defs["structs"]["ImGuiWindow"][79] = {} -defs["structs"]["ImGuiWindow"][79]["name"] = "StateStorage" -defs["structs"]["ImGuiWindow"][79]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiWindow"][79]["name"] = "ItemWidthDefault" +defs["structs"]["ImGuiWindow"][79]["type"] = "float" defs["structs"]["ImGuiWindow"][80] = {} -defs["structs"]["ImGuiWindow"][80]["name"] = "ColumnsStorage" -defs["structs"]["ImGuiWindow"][80]["template_type"] = "ImGuiOldColumns" -defs["structs"]["ImGuiWindow"][80]["type"] = "ImVector_ImGuiOldColumns" +defs["structs"]["ImGuiWindow"][80]["name"] = "StateStorage" +defs["structs"]["ImGuiWindow"][80]["type"] = "ImGuiStorage" defs["structs"]["ImGuiWindow"][81] = {} -defs["structs"]["ImGuiWindow"][81]["name"] = "FontWindowScale" -defs["structs"]["ImGuiWindow"][81]["type"] = "float" +defs["structs"]["ImGuiWindow"][81]["name"] = "ColumnsStorage" +defs["structs"]["ImGuiWindow"][81]["template_type"] = "ImGuiOldColumns" +defs["structs"]["ImGuiWindow"][81]["type"] = "ImVector_ImGuiOldColumns" defs["structs"]["ImGuiWindow"][82] = {} -defs["structs"]["ImGuiWindow"][82]["name"] = "FontDpiScale" +defs["structs"]["ImGuiWindow"][82]["name"] = "FontWindowScale" defs["structs"]["ImGuiWindow"][82]["type"] = "float" defs["structs"]["ImGuiWindow"][83] = {} -defs["structs"]["ImGuiWindow"][83]["name"] = "SettingsOffset" -defs["structs"]["ImGuiWindow"][83]["type"] = "int" +defs["structs"]["ImGuiWindow"][83]["name"] = "FontDpiScale" +defs["structs"]["ImGuiWindow"][83]["type"] = "float" defs["structs"]["ImGuiWindow"][84] = {} -defs["structs"]["ImGuiWindow"][84]["name"] = "DrawList" -defs["structs"]["ImGuiWindow"][84]["type"] = "ImDrawList*" +defs["structs"]["ImGuiWindow"][84]["name"] = "SettingsOffset" +defs["structs"]["ImGuiWindow"][84]["type"] = "int" defs["structs"]["ImGuiWindow"][85] = {} -defs["structs"]["ImGuiWindow"][85]["name"] = "DrawListInst" -defs["structs"]["ImGuiWindow"][85]["type"] = "ImDrawList" +defs["structs"]["ImGuiWindow"][85]["name"] = "DrawList" +defs["structs"]["ImGuiWindow"][85]["type"] = "ImDrawList*" defs["structs"]["ImGuiWindow"][86] = {} -defs["structs"]["ImGuiWindow"][86]["name"] = "ParentWindow" -defs["structs"]["ImGuiWindow"][86]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][86]["name"] = "DrawListInst" +defs["structs"]["ImGuiWindow"][86]["type"] = "ImDrawList" defs["structs"]["ImGuiWindow"][87] = {} -defs["structs"]["ImGuiWindow"][87]["name"] = "ParentWindowInBeginStack" +defs["structs"]["ImGuiWindow"][87]["name"] = "ParentWindow" defs["structs"]["ImGuiWindow"][87]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][88] = {} -defs["structs"]["ImGuiWindow"][88]["name"] = "RootWindow" +defs["structs"]["ImGuiWindow"][88]["name"] = "ParentWindowInBeginStack" defs["structs"]["ImGuiWindow"][88]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][89] = {} -defs["structs"]["ImGuiWindow"][89]["name"] = "RootWindowPopupTree" +defs["structs"]["ImGuiWindow"][89]["name"] = "RootWindow" defs["structs"]["ImGuiWindow"][89]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][90] = {} -defs["structs"]["ImGuiWindow"][90]["name"] = "RootWindowDockTree" +defs["structs"]["ImGuiWindow"][90]["name"] = "RootWindowPopupTree" defs["structs"]["ImGuiWindow"][90]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][91] = {} -defs["structs"]["ImGuiWindow"][91]["name"] = "RootWindowForTitleBarHighlight" +defs["structs"]["ImGuiWindow"][91]["name"] = "RootWindowDockTree" defs["structs"]["ImGuiWindow"][91]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][92] = {} -defs["structs"]["ImGuiWindow"][92]["name"] = "RootWindowForNav" +defs["structs"]["ImGuiWindow"][92]["name"] = "RootWindowForTitleBarHighlight" defs["structs"]["ImGuiWindow"][92]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][93] = {} -defs["structs"]["ImGuiWindow"][93]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][93]["name"] = "RootWindowForNav" defs["structs"]["ImGuiWindow"][93]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][94] = {} -defs["structs"]["ImGuiWindow"][94]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" -defs["structs"]["ImGuiWindow"][94]["size"] = 2 -defs["structs"]["ImGuiWindow"][94]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][94]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][94]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][95] = {} -defs["structs"]["ImGuiWindow"][95]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][95]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" defs["structs"]["ImGuiWindow"][95]["size"] = 2 -defs["structs"]["ImGuiWindow"][95]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][95]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][96] = {} -defs["structs"]["ImGuiWindow"][96]["name"] = "MemoryDrawListIdxCapacity" -defs["structs"]["ImGuiWindow"][96]["type"] = "int" +defs["structs"]["ImGuiWindow"][96]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][96]["size"] = 2 +defs["structs"]["ImGuiWindow"][96]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][97] = {} -defs["structs"]["ImGuiWindow"][97]["name"] = "MemoryDrawListVtxCapacity" -defs["structs"]["ImGuiWindow"][97]["type"] = "int" +defs["structs"]["ImGuiWindow"][97]["name"] = "NavRootFocusScopeId" +defs["structs"]["ImGuiWindow"][97]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][98] = {} -defs["structs"]["ImGuiWindow"][98]["name"] = "MemoryCompacted" -defs["structs"]["ImGuiWindow"][98]["type"] = "bool" +defs["structs"]["ImGuiWindow"][98]["name"] = "MemoryDrawListIdxCapacity" +defs["structs"]["ImGuiWindow"][98]["type"] = "int" defs["structs"]["ImGuiWindow"][99] = {} -defs["structs"]["ImGuiWindow"][99]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][99]["name"] = "DockIsActive" -defs["structs"]["ImGuiWindow"][99]["type"] = "bool" +defs["structs"]["ImGuiWindow"][99]["name"] = "MemoryDrawListVtxCapacity" +defs["structs"]["ImGuiWindow"][99]["type"] = "int" defs["structs"]["ImGuiWindow"][100] = {} -defs["structs"]["ImGuiWindow"][100]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][100]["name"] = "DockNodeIsVisible" +defs["structs"]["ImGuiWindow"][100]["name"] = "MemoryCompacted" defs["structs"]["ImGuiWindow"][100]["type"] = "bool" defs["structs"]["ImGuiWindow"][101] = {} defs["structs"]["ImGuiWindow"][101]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][101]["name"] = "DockTabIsVisible" +defs["structs"]["ImGuiWindow"][101]["name"] = "DockIsActive" defs["structs"]["ImGuiWindow"][101]["type"] = "bool" defs["structs"]["ImGuiWindow"][102] = {} defs["structs"]["ImGuiWindow"][102]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][102]["name"] = "DockTabWantClose" +defs["structs"]["ImGuiWindow"][102]["name"] = "DockNodeIsVisible" defs["structs"]["ImGuiWindow"][102]["type"] = "bool" defs["structs"]["ImGuiWindow"][103] = {} -defs["structs"]["ImGuiWindow"][103]["name"] = "DockOrder" -defs["structs"]["ImGuiWindow"][103]["type"] = "short" +defs["structs"]["ImGuiWindow"][103]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][103]["name"] = "DockTabIsVisible" +defs["structs"]["ImGuiWindow"][103]["type"] = "bool" defs["structs"]["ImGuiWindow"][104] = {} -defs["structs"]["ImGuiWindow"][104]["name"] = "DockStyle" -defs["structs"]["ImGuiWindow"][104]["type"] = "ImGuiWindowDockStyle" +defs["structs"]["ImGuiWindow"][104]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][104]["name"] = "DockTabWantClose" +defs["structs"]["ImGuiWindow"][104]["type"] = "bool" defs["structs"]["ImGuiWindow"][105] = {} -defs["structs"]["ImGuiWindow"][105]["name"] = "DockNode" -defs["structs"]["ImGuiWindow"][105]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][105]["name"] = "DockOrder" +defs["structs"]["ImGuiWindow"][105]["type"] = "short" defs["structs"]["ImGuiWindow"][106] = {} -defs["structs"]["ImGuiWindow"][106]["name"] = "DockNodeAsHost" -defs["structs"]["ImGuiWindow"][106]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][106]["name"] = "DockStyle" +defs["structs"]["ImGuiWindow"][106]["type"] = "ImGuiWindowDockStyle" defs["structs"]["ImGuiWindow"][107] = {} -defs["structs"]["ImGuiWindow"][107]["name"] = "DockId" -defs["structs"]["ImGuiWindow"][107]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][107]["name"] = "DockNode" +defs["structs"]["ImGuiWindow"][107]["type"] = "ImGuiDockNode*" defs["structs"]["ImGuiWindow"][108] = {} -defs["structs"]["ImGuiWindow"][108]["name"] = "DockTabItemStatusFlags" -defs["structs"]["ImGuiWindow"][108]["type"] = "ImGuiItemStatusFlags" +defs["structs"]["ImGuiWindow"][108]["name"] = "DockNodeAsHost" +defs["structs"]["ImGuiWindow"][108]["type"] = "ImGuiDockNode*" defs["structs"]["ImGuiWindow"][109] = {} -defs["structs"]["ImGuiWindow"][109]["name"] = "DockTabItemRect" -defs["structs"]["ImGuiWindow"][109]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][109]["name"] = "DockId" +defs["structs"]["ImGuiWindow"][109]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][110] = {} +defs["structs"]["ImGuiWindow"][110]["name"] = "DockTabItemStatusFlags" +defs["structs"]["ImGuiWindow"][110]["type"] = "ImGuiItemStatusFlags" +defs["structs"]["ImGuiWindow"][111] = {} +defs["structs"]["ImGuiWindow"][111]["name"] = "DockTabItemRect" +defs["structs"]["ImGuiWindow"][111]["type"] = "ImRect" defs["structs"]["ImGuiWindowClass"] = {} defs["structs"]["ImGuiWindowClass"][1] = {} defs["structs"]["ImGuiWindowClass"][1]["name"] = "ClassId" @@ -7495,29 +7685,29 @@ defs["structs"]["ImGuiWindowTempData"][10] = {} defs["structs"]["ImGuiWindowTempData"][10]["name"] = "IsSameLine" defs["structs"]["ImGuiWindowTempData"][10]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][11] = {} -defs["structs"]["ImGuiWindowTempData"][11]["name"] = "Indent" -defs["structs"]["ImGuiWindowTempData"][11]["type"] = "ImVec1" +defs["structs"]["ImGuiWindowTempData"][11]["name"] = "IsSetPos" +defs["structs"]["ImGuiWindowTempData"][11]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][12] = {} -defs["structs"]["ImGuiWindowTempData"][12]["name"] = "ColumnsOffset" +defs["structs"]["ImGuiWindowTempData"][12]["name"] = "Indent" defs["structs"]["ImGuiWindowTempData"][12]["type"] = "ImVec1" defs["structs"]["ImGuiWindowTempData"][13] = {} -defs["structs"]["ImGuiWindowTempData"][13]["name"] = "GroupOffset" +defs["structs"]["ImGuiWindowTempData"][13]["name"] = "ColumnsOffset" defs["structs"]["ImGuiWindowTempData"][13]["type"] = "ImVec1" defs["structs"]["ImGuiWindowTempData"][14] = {} -defs["structs"]["ImGuiWindowTempData"][14]["name"] = "CursorStartPosLossyness" -defs["structs"]["ImGuiWindowTempData"][14]["type"] = "ImVec2" +defs["structs"]["ImGuiWindowTempData"][14]["name"] = "GroupOffset" +defs["structs"]["ImGuiWindowTempData"][14]["type"] = "ImVec1" defs["structs"]["ImGuiWindowTempData"][15] = {} -defs["structs"]["ImGuiWindowTempData"][15]["name"] = "NavLayerCurrent" -defs["structs"]["ImGuiWindowTempData"][15]["type"] = "ImGuiNavLayer" +defs["structs"]["ImGuiWindowTempData"][15]["name"] = "CursorStartPosLossyness" +defs["structs"]["ImGuiWindowTempData"][15]["type"] = "ImVec2" defs["structs"]["ImGuiWindowTempData"][16] = {} -defs["structs"]["ImGuiWindowTempData"][16]["name"] = "NavLayersActiveMask" -defs["structs"]["ImGuiWindowTempData"][16]["type"] = "short" +defs["structs"]["ImGuiWindowTempData"][16]["name"] = "NavLayerCurrent" +defs["structs"]["ImGuiWindowTempData"][16]["type"] = "ImGuiNavLayer" defs["structs"]["ImGuiWindowTempData"][17] = {} -defs["structs"]["ImGuiWindowTempData"][17]["name"] = "NavLayersActiveMaskNext" +defs["structs"]["ImGuiWindowTempData"][17]["name"] = "NavLayersActiveMask" defs["structs"]["ImGuiWindowTempData"][17]["type"] = "short" defs["structs"]["ImGuiWindowTempData"][18] = {} -defs["structs"]["ImGuiWindowTempData"][18]["name"] = "NavFocusScopeIdCurrent" -defs["structs"]["ImGuiWindowTempData"][18]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindowTempData"][18]["name"] = "NavLayersActiveMaskNext" +defs["structs"]["ImGuiWindowTempData"][18]["type"] = "short" defs["structs"]["ImGuiWindowTempData"][19] = {} defs["structs"]["ImGuiWindowTempData"][19]["name"] = "NavHideHighlightOneFrame" defs["structs"]["ImGuiWindowTempData"][19]["type"] = "bool" @@ -7793,6 +7983,7 @@ defs["templates_done"]["ImVector"]["ImGuiGroupData"] = true defs["templates_done"]["ImVector"]["ImGuiID"] = true defs["templates_done"]["ImVector"]["ImGuiInputEvent"] = true defs["templates_done"]["ImVector"]["ImGuiItemFlags"] = true +defs["templates_done"]["ImVector"]["ImGuiKeyRoutingData"] = true defs["templates_done"]["ImVector"]["ImGuiListClipperData"] = true defs["templates_done"]["ImVector"]["ImGuiListClipperRange"] = true defs["templates_done"]["ImVector"]["ImGuiOldColumnData"] = true @@ -7824,6 +8015,7 @@ defs["templates_done"]["ImVector"]["ImWchar"] = true defs["templates_done"]["ImVector"]["char"] = true defs["templates_done"]["ImVector"]["const char*"] = true defs["templates_done"]["ImVector"]["float"] = true +defs["templates_done"]["ImVector"]["int"] = true defs["templates_done"]["ImVector"]["unsigned char"] = true defs["typenames"] = {} defs["typenames"]["ImBitArray"] = "int BITCOUNT, int OFFSET = 0" diff --git a/generator/output/typedefs_dict.json b/generator/output/typedefs_dict.json index d45ffb6..795bdd9 100644 --- a/generator/output/typedefs_dict.json +++ b/generator/output/typedefs_dict.json @@ -63,14 +63,19 @@ "ImGuiInputEventMouseViewport": "struct ImGuiInputEventMouseViewport", "ImGuiInputEventMouseWheel": "struct ImGuiInputEventMouseWheel", "ImGuiInputEventText": "struct ImGuiInputEventText", + "ImGuiInputFlags": "int", "ImGuiInputTextCallback": "int(*)(ImGuiInputTextCallbackData* data);", "ImGuiInputTextCallbackData": "struct ImGuiInputTextCallbackData", "ImGuiInputTextFlags": "int", "ImGuiInputTextState": "struct ImGuiInputTextState", "ImGuiItemFlags": "int", "ImGuiItemStatusFlags": "int", - "ImGuiKey": "int", + "ImGuiKeyChord": "int", "ImGuiKeyData": "struct ImGuiKeyData", + "ImGuiKeyOwnerData": "struct ImGuiKeyOwnerData", + "ImGuiKeyRoutingData": "struct ImGuiKeyRoutingData", + "ImGuiKeyRoutingIndex": "ImS16", + "ImGuiKeyRoutingTable": "struct ImGuiKeyRoutingTable", "ImGuiLastItemData": "struct ImGuiLastItemData", "ImGuiLayoutType": "int", "ImGuiListClipper": "struct ImGuiListClipper", @@ -80,12 +85,9 @@ "ImGuiMemFreeFunc": "void(*)(void* ptr,void* user_data);", "ImGuiMenuColumns": "struct ImGuiMenuColumns", "ImGuiMetricsConfig": "struct ImGuiMetricsConfig", - "ImGuiModFlags": "int", "ImGuiMouseButton": "int", "ImGuiMouseCursor": "int", - "ImGuiNavDirSourceFlags": "int", "ImGuiNavHighlightFlags": "int", - "ImGuiNavInput": "int", "ImGuiNavItemData": "struct ImGuiNavItemData", "ImGuiNavMoveFlags": "int", "ImGuiNextItemData": "struct ImGuiNextItemData", @@ -143,6 +145,7 @@ "ImGuiTextBuffer": "struct ImGuiTextBuffer", "ImGuiTextFilter": "struct ImGuiTextFilter", "ImGuiTextFlags": "int", + "ImGuiTextIndex": "struct ImGuiTextIndex", "ImGuiTextRange": "struct ImGuiTextRange", "ImGuiTooltipFlags": "int", "ImGuiTreeNodeFlags": "int", diff --git a/generator/output/typedefs_dict.lua b/generator/output/typedefs_dict.lua index b5c9a24..1c9aac9 100644 --- a/generator/output/typedefs_dict.lua +++ b/generator/output/typedefs_dict.lua @@ -63,14 +63,19 @@ defs["ImGuiInputEventMousePos"] = "struct ImGuiInputEventMousePos" defs["ImGuiInputEventMouseViewport"] = "struct ImGuiInputEventMouseViewport" defs["ImGuiInputEventMouseWheel"] = "struct ImGuiInputEventMouseWheel" defs["ImGuiInputEventText"] = "struct ImGuiInputEventText" +defs["ImGuiInputFlags"] = "int" defs["ImGuiInputTextCallback"] = "int(*)(ImGuiInputTextCallbackData* data);" defs["ImGuiInputTextCallbackData"] = "struct ImGuiInputTextCallbackData" defs["ImGuiInputTextFlags"] = "int" defs["ImGuiInputTextState"] = "struct ImGuiInputTextState" defs["ImGuiItemFlags"] = "int" defs["ImGuiItemStatusFlags"] = "int" -defs["ImGuiKey"] = "int" +defs["ImGuiKeyChord"] = "int" defs["ImGuiKeyData"] = "struct ImGuiKeyData" +defs["ImGuiKeyOwnerData"] = "struct ImGuiKeyOwnerData" +defs["ImGuiKeyRoutingData"] = "struct ImGuiKeyRoutingData" +defs["ImGuiKeyRoutingIndex"] = "ImS16" +defs["ImGuiKeyRoutingTable"] = "struct ImGuiKeyRoutingTable" defs["ImGuiLastItemData"] = "struct ImGuiLastItemData" defs["ImGuiLayoutType"] = "int" defs["ImGuiListClipper"] = "struct ImGuiListClipper" @@ -80,12 +85,9 @@ defs["ImGuiMemAllocFunc"] = "void*(*)(size_t sz,void* user_data);" defs["ImGuiMemFreeFunc"] = "void(*)(void* ptr,void* user_data);" defs["ImGuiMenuColumns"] = "struct ImGuiMenuColumns" defs["ImGuiMetricsConfig"] = "struct ImGuiMetricsConfig" -defs["ImGuiModFlags"] = "int" defs["ImGuiMouseButton"] = "int" defs["ImGuiMouseCursor"] = "int" -defs["ImGuiNavDirSourceFlags"] = "int" defs["ImGuiNavHighlightFlags"] = "int" -defs["ImGuiNavInput"] = "int" defs["ImGuiNavItemData"] = "struct ImGuiNavItemData" defs["ImGuiNavMoveFlags"] = "int" defs["ImGuiNextItemData"] = "struct ImGuiNextItemData" @@ -143,6 +145,7 @@ defs["ImGuiTableTempData"] = "struct ImGuiTableTempData" defs["ImGuiTextBuffer"] = "struct ImGuiTextBuffer" defs["ImGuiTextFilter"] = "struct ImGuiTextFilter" defs["ImGuiTextFlags"] = "int" +defs["ImGuiTextIndex"] = "struct ImGuiTextIndex" defs["ImGuiTextRange"] = "struct ImGuiTextRange" defs["ImGuiTooltipFlags"] = "int" defs["ImGuiTreeNodeFlags"] = "int" diff --git a/imgui b/imgui index 9cd9c2e..94e850f 160000 --- a/imgui +++ b/imgui @@ -1 +1 @@ -Subproject commit 9cd9c2eff99877a3f10a7f9c2a3a5b9c15ea36c6 +Subproject commit 94e850fd6ff9eceb98fda3147e3ffd4781ad2dc7