diff --git a/README.md b/README.md index 58dbb98..ad51dda 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ History: Initially cimgui was developed by Stephan Dilly as hand-written code but lately turned into an auto-generated version by sonoro1234 in order to keep up with imgui more easily (letting the user select the desired branch and commit) Notes: -* currently this wrapper is based on version [1.91.4 of Dear ImGui with internal api] +* currently this wrapper is based on version [1.91.6 of Dear ImGui with internal api] * only functions, structs and enums from imgui.h (an optionally imgui_internal.h) are wrapped. * if you are interested in imgui backends you should look [LuaJIT-ImGui](https://github.com/sonoro1234/LuaJIT-ImGui) project. * All naming is algorithmic except for those names that were coded in cimgui_overloads table (https://github.com/cimgui/cimgui/blob/master/generator/generator.lua#L60). In the official version this table is empty. diff --git a/cimgui.cpp b/cimgui.cpp index 17251b3..f490dcd 100644 --- a/cimgui.cpp +++ b/cimgui.cpp @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.91.5" 19150 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.6" 19160 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //with imgui_freetype.h api @@ -5046,9 +5046,9 @@ CIMGUI_API bool igArrowButtonEx(const char* str_id,ImGuiDir dir,ImVec2 size_arg, { return ImGui::ArrowButtonEx(str_id,dir,size_arg,flags); } -CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags) +CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags) { - return ImGui::ImageButtonEx(id,texture_id,image_size,uv0,uv1,bg_col,tint_col,flags); + return ImGui::ImageButtonEx(id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col,flags); } CIMGUI_API void igSeparatorEx(ImGuiSeparatorFlags flags,float thickness) { @@ -5078,9 +5078,9 @@ CIMGUI_API void igScrollbar(ImGuiAxis axis) { return ImGui::Scrollbar(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 igScrollbarEx(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags draw_rounding_flags) { - return ImGui::ScrollbarEx(bb,id,axis,p_scroll_v,avail_v,contents_v,flags); + return ImGui::ScrollbarEx(bb,id,axis,p_scroll_v,avail_v,contents_v,draw_rounding_flags); } CIMGUI_API void igGetWindowScrollbarRect(ImRect *pOut,ImGuiWindow* window,ImGuiAxis axis) { diff --git a/cimgui.h b/cimgui.h index 01b1eac..224f3b6 100644 --- a/cimgui.h +++ b/cimgui.h @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.91.5" 19150 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.6" 19160 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //with imgui_freetype.h api #ifndef CIMGUI_INCLUDED @@ -203,6 +203,7 @@ typedef ImU64 ImTextureID; typedef unsigned short ImDrawIdx; typedef unsigned int ImWchar32; typedef unsigned short ImWchar16; + #ifdef IMGUI_USE_WCHAR32 typedef ImWchar32 ImWchar; #else @@ -299,12 +300,13 @@ typedef enum { ImGuiInputTextFlags_DisplayEmptyRefVal = 1 << 14, ImGuiInputTextFlags_NoHorizontalScroll = 1 << 15, ImGuiInputTextFlags_NoUndoRedo = 1 << 16, - ImGuiInputTextFlags_CallbackCompletion = 1 << 17, - ImGuiInputTextFlags_CallbackHistory = 1 << 18, - ImGuiInputTextFlags_CallbackAlways = 1 << 19, - ImGuiInputTextFlags_CallbackCharFilter = 1 << 20, - ImGuiInputTextFlags_CallbackResize = 1 << 21, - ImGuiInputTextFlags_CallbackEdit = 1 << 22, + ImGuiInputTextFlags_ElideLeft = 1 << 17, + ImGuiInputTextFlags_CallbackCompletion = 1 << 18, + ImGuiInputTextFlags_CallbackHistory = 1 << 19, + ImGuiInputTextFlags_CallbackAlways = 1 << 20, + ImGuiInputTextFlags_CallbackCharFilter = 1 << 21, + ImGuiInputTextFlags_CallbackResize = 1 << 22, + ImGuiInputTextFlags_CallbackEdit = 1 << 23, }ImGuiInputTextFlags_; typedef enum { ImGuiTreeNodeFlags_None = 0, @@ -1382,8 +1384,8 @@ struct ImFontGlyphRangesBuilder typedef struct ImFontAtlasCustomRect ImFontAtlasCustomRect; struct ImFontAtlasCustomRect { - unsigned short Width, Height; unsigned short X, Y; + unsigned short Width, Height; unsigned int GlyphID : 31; unsigned int GlyphColored : 1; float GlyphAdvanceX; @@ -1442,9 +1444,9 @@ struct ImFont ImFontAtlas* ContainerAtlas; const ImFontConfig* ConfigData; short ConfigDataCount; - ImWchar FallbackChar; - ImWchar EllipsisChar; short EllipsisCharCount; + ImWchar EllipsisChar; + ImWchar FallbackChar; float EllipsisWidth; float EllipsisCharStep; bool DirtyLookupTables; @@ -1582,6 +1584,7 @@ struct ImGuiTextIndex struct ImDrawListSharedData { ImVec2 TexUvWhitePixel; + const ImVec4* TexUvLines; ImFont* Font; float FontSize; float FontScale; @@ -1593,7 +1596,6 @@ struct ImDrawListSharedData ImVec2 ArcFastVtx[48]; float ArcFastRadiusCutoff; ImU8 CircleSegmentCounts[64]; - const ImVec4* TexUvLines; }; struct ImDrawDataBuilder { @@ -2319,10 +2321,11 @@ typedef enum { ImGuiDebugLogFlags_EventClipper = 1 << 5, ImGuiDebugLogFlags_EventSelection = 1 << 6, ImGuiDebugLogFlags_EventIO = 1 << 7, - ImGuiDebugLogFlags_EventInputRouting = 1 << 8, - ImGuiDebugLogFlags_EventDocking = 1 << 9, - ImGuiDebugLogFlags_EventViewport = 1 << 10, - ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventError | ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport, + ImGuiDebugLogFlags_EventFont = 1 << 8, + ImGuiDebugLogFlags_EventInputRouting = 1 << 9, + ImGuiDebugLogFlags_EventDocking = 1 << 10, + ImGuiDebugLogFlags_EventViewport = 1 << 11, + ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventError | ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventFont | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport, ImGuiDebugLogFlags_OutputToTTY = 1 << 20, ImGuiDebugLogFlags_OutputToTestEngine = 1 << 21, }ImGuiDebugLogFlags_; @@ -4520,7 +4523,7 @@ CIMGUI_API void igRenderRectFilledWithHole(ImDrawList* draw_list,const ImRect ou CIMGUI_API void igTextEx(const char* text,const char* text_end,ImGuiTextFlags flags); CIMGUI_API bool igButtonEx(const char* label,const ImVec2 size_arg,ImGuiButtonFlags flags); CIMGUI_API bool igArrowButtonEx(const char* str_id,ImGuiDir dir,ImVec2 size_arg,ImGuiButtonFlags flags); -CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags); +CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags); CIMGUI_API void igSeparatorEx(ImGuiSeparatorFlags flags,float thickness); CIMGUI_API void igSeparatorTextEx(ImGuiID id,const char* label,const char* label_end,float extra_width); CIMGUI_API bool igCheckboxFlags_S64Ptr(const char* label,ImS64* flags,ImS64 flags_value); @@ -4528,7 +4531,7 @@ CIMGUI_API bool igCheckboxFlags_U64Ptr(const char* label,ImU64* flags,ImU64 flag CIMGUI_API bool igCloseButton(ImGuiID id,const ImVec2 pos); CIMGUI_API bool igCollapseButton(ImGuiID id,const ImVec2 pos); 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 igScrollbarEx(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags draw_rounding_flags); 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); diff --git a/generator/generator.lua b/generator/generator.lua index b55e9ef..c010f61 100644 --- a/generator/generator.lua +++ b/generator/generator.lua @@ -225,7 +225,9 @@ local function colapse_defines(str, define) return str end local wchardefine = -[[#ifdef IMGUI_USE_WCHAR32 +[[ + +#ifdef IMGUI_USE_WCHAR32 typedef ImWchar32 ImWchar; #else typedef ImWchar16 ImWchar; diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 0abe2e1..a8b5888 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -13,7 +13,7 @@ "cimguiname": "ImBitArray_ClearAllBits", "defaults": {}, "funcname": "ClearAllBits", - "location": "imgui_internal:588", + "location": "imgui_internal:592", "ov_cimguiname": "ImBitArray_ClearAllBits", "ret": "void", "signature": "()", @@ -39,7 +39,7 @@ "cimguiname": "ImBitArray_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:592", + "location": "imgui_internal:596", "ov_cimguiname": "ImBitArray_ClearBit", "ret": "void", "signature": "(int)", @@ -57,7 +57,7 @@ "constructor": true, "defaults": {}, "funcname": "ImBitArray", - "location": "imgui_internal:587", + "location": "imgui_internal:591", "ov_cimguiname": "ImBitArray_ImBitArray", "signature": "()", "stname": "ImBitArray", @@ -78,7 +78,7 @@ "cimguiname": "ImBitArray_SetAllBits", "defaults": {}, "funcname": "SetAllBits", - "location": "imgui_internal:589", + "location": "imgui_internal:593", "ov_cimguiname": "ImBitArray_SetAllBits", "ret": "void", "signature": "()", @@ -104,7 +104,7 @@ "cimguiname": "ImBitArray_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:591", + "location": "imgui_internal:595", "ov_cimguiname": "ImBitArray_SetBit", "ret": "void", "signature": "(int)", @@ -134,7 +134,7 @@ "cimguiname": "ImBitArray_SetBitRange", "defaults": {}, "funcname": "SetBitRange", - "location": "imgui_internal:593", + "location": "imgui_internal:597", "ov_cimguiname": "ImBitArray_SetBitRange", "ret": "void", "signature": "(int,int)", @@ -160,7 +160,7 @@ "cimguiname": "ImBitArray_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:590", + "location": "imgui_internal:594", "ov_cimguiname": "ImBitArray_TestBit", "ret": "bool", "signature": "(int)const", @@ -181,7 +181,7 @@ "cimguiname": "ImBitArray_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:587", + "location": "imgui_internal:591", "ov_cimguiname": "ImBitArray_destroy", "ret": "void", "signature": "(ImBitArray*)", @@ -203,7 +203,7 @@ "cimguiname": "ImBitVector_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:603", + "location": "imgui_internal:607", "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -228,7 +228,7 @@ "cimguiname": "ImBitVector_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:606", + "location": "imgui_internal:610", "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -253,7 +253,7 @@ "cimguiname": "ImBitVector_Create", "defaults": {}, "funcname": "Create", - "location": "imgui_internal:602", + "location": "imgui_internal:606", "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -278,7 +278,7 @@ "cimguiname": "ImBitVector_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:605", + "location": "imgui_internal:609", "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -303,7 +303,7 @@ "cimguiname": "ImBitVector_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:604", + "location": "imgui_internal:608", "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -328,7 +328,7 @@ "cimguiname": "ImChunkStream_alloc_chunk", "defaults": {}, "funcname": "alloc_chunk", - "location": "imgui_internal:707", + "location": "imgui_internal:711", "ov_cimguiname": "ImChunkStream_alloc_chunk", "ret": "T*", "signature": "(size_t)", @@ -350,7 +350,7 @@ "cimguiname": "ImChunkStream_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:708", + "location": "imgui_internal:712", "ov_cimguiname": "ImChunkStream_begin", "ret": "T*", "signature": "()", @@ -376,7 +376,7 @@ "cimguiname": "ImChunkStream_chunk_size", "defaults": {}, "funcname": "chunk_size", - "location": "imgui_internal:710", + "location": "imgui_internal:714", "ov_cimguiname": "ImChunkStream_chunk_size", "ret": "int", "signature": "(const T*)", @@ -398,7 +398,7 @@ "cimguiname": "ImChunkStream_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:704", + "location": "imgui_internal:708", "ov_cimguiname": "ImChunkStream_clear", "ret": "void", "signature": "()", @@ -420,7 +420,7 @@ "cimguiname": "ImChunkStream_empty", "defaults": {}, "funcname": "empty", - "location": "imgui_internal:705", + "location": "imgui_internal:709", "ov_cimguiname": "ImChunkStream_empty", "ret": "bool", "signature": "()const", @@ -442,7 +442,7 @@ "cimguiname": "ImChunkStream_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:711", + "location": "imgui_internal:715", "ov_cimguiname": "ImChunkStream_end", "ret": "T*", "signature": "()", @@ -468,7 +468,7 @@ "cimguiname": "ImChunkStream_next_chunk", "defaults": {}, "funcname": "next_chunk", - "location": "imgui_internal:709", + "location": "imgui_internal:713", "ov_cimguiname": "ImChunkStream_next_chunk", "ret": "T*", "signature": "(T*)", @@ -494,7 +494,7 @@ "cimguiname": "ImChunkStream_offset_from_ptr", "defaults": {}, "funcname": "offset_from_ptr", - "location": "imgui_internal:712", + "location": "imgui_internal:716", "ov_cimguiname": "ImChunkStream_offset_from_ptr", "ret": "int", "signature": "(const T*)", @@ -520,7 +520,7 @@ "cimguiname": "ImChunkStream_ptr_from_offset", "defaults": {}, "funcname": "ptr_from_offset", - "location": "imgui_internal:713", + "location": "imgui_internal:717", "ov_cimguiname": "ImChunkStream_ptr_from_offset", "ret": "T*", "signature": "(int)", @@ -542,7 +542,7 @@ "cimguiname": "ImChunkStream_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:706", + "location": "imgui_internal:710", "ov_cimguiname": "ImChunkStream_size", "ret": "int", "signature": "()const", @@ -569,7 +569,7 @@ "cimguiname": "ImChunkStream_swap", "defaults": {}, "funcname": "swap", - "location": "imgui_internal:714", + "location": "imgui_internal:718", "ov_cimguiname": "ImChunkStream_swap", "ret": "void", "signature": "(ImChunkStream_T *)", @@ -610,7 +610,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:2755", + "location": "imgui:2761", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -628,7 +628,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2745", + "location": "imgui:2751", "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -661,7 +661,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:2746", + "location": "imgui:2752", "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -680,7 +680,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2747", + "location": "imgui:2753", "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -713,7 +713,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:2748", + "location": "imgui:2754", "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -732,7 +732,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2749", + "location": "imgui:2755", "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -770,7 +770,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:2754", + "location": "imgui:2760", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -790,7 +790,7 @@ "cimguiname": "ImColor_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2745", + "location": "imgui:2751", "ov_cimguiname": "ImColor_destroy", "ret": "void", "signature": "(ImColor*)", @@ -811,7 +811,7 @@ "cimguiname": "ImDrawCmd_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:2953", + "location": "imgui:2959", "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -828,7 +828,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:2950", + "location": "imgui:2956", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -847,7 +847,7 @@ "cimguiname": "ImDrawCmd_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2950", + "location": "imgui:2956", "ov_cimguiname": "ImDrawCmd_destroy", "ret": "void", "signature": "(ImDrawCmd*)", @@ -864,7 +864,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawDataBuilder", - "location": "imgui_internal:793", + "location": "imgui_internal:797", "ov_cimguiname": "ImDrawDataBuilder_ImDrawDataBuilder", "signature": "()", "stname": "ImDrawDataBuilder" @@ -883,7 +883,7 @@ "cimguiname": "ImDrawDataBuilder_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:793", + "location": "imgui_internal:797", "ov_cimguiname": "ImDrawDataBuilder_destroy", "ret": "void", "signature": "(ImDrawDataBuilder*)", @@ -908,7 +908,7 @@ "cimguiname": "ImDrawData_AddDrawList", "defaults": {}, "funcname": "AddDrawList", - "location": "imgui:3212", + "location": "imgui:3219", "ov_cimguiname": "ImDrawData_AddDrawList", "ret": "void", "signature": "(ImDrawList*)", @@ -929,7 +929,7 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3211", + "location": "imgui:3218", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -950,7 +950,7 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui:3213", + "location": "imgui:3220", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -967,7 +967,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", - "location": "imgui:3210", + "location": "imgui:3217", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -991,7 +991,7 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui:3214", + "location": "imgui:3221", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -1011,7 +1011,7 @@ "cimguiname": "ImDrawData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3210", + "location": "imgui:3217", "ov_cimguiname": "ImDrawData_destroy", "ret": "void", "signature": "(ImDrawData*)", @@ -1028,7 +1028,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSharedData", - "location": "imgui_internal:784", + "location": "imgui_internal:788", "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "signature": "()", "stname": "ImDrawListSharedData" @@ -1052,7 +1052,7 @@ "cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "defaults": {}, "funcname": "SetCircleTessellationMaxError", - "location": "imgui_internal:785", + "location": "imgui_internal:789", "ov_cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "ret": "void", "signature": "(float)", @@ -1072,7 +1072,7 @@ "cimguiname": "ImDrawListSharedData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:784", + "location": "imgui_internal:788", "ov_cimguiname": "ImDrawListSharedData_destroy", "ret": "void", "signature": "(ImDrawListSharedData*)", @@ -1093,7 +1093,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2998", + "location": "imgui:3004", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -1114,7 +1114,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:2999", + "location": "imgui:3005", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -1131,7 +1131,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:2996", + "location": "imgui:3002", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -1155,7 +1155,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:3001", + "location": "imgui:3007", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -1184,7 +1184,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:3002", + "location": "imgui:3008", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1213,7 +1213,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:3000", + "location": "imgui:3006", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1233,7 +1233,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2997", + "location": "imgui:3003", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -1285,7 +1285,7 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", - "location": "imgui:3102", + "location": "imgui:3109", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1332,7 +1332,7 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", - "location": "imgui:3103", + "location": "imgui:3110", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1367,7 +1367,7 @@ "userdata_size": "0" }, "funcname": "AddCallback", - "location": "imgui:3145", + "location": "imgui:3152", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*,size_t)", @@ -1411,7 +1411,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:3094", + "location": "imgui:3101", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1450,7 +1450,7 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:3095", + "location": "imgui:3102", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1483,7 +1483,7 @@ "cimguiname": "ImDrawList_AddConcavePolyFilled", "defaults": {}, "funcname": "AddConcavePolyFilled", - "location": "imgui:3110", + "location": "imgui:3117", "ov_cimguiname": "ImDrawList_AddConcavePolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1516,7 +1516,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:3109", + "location": "imgui:3116", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1537,7 +1537,7 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui:3148", + "location": "imgui:3155", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -1586,7 +1586,7 @@ "thickness": "1.0f" }, "funcname": "AddEllipse", - "location": "imgui:3098", + "location": "imgui:3105", "ov_cimguiname": "ImDrawList_AddEllipse", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", @@ -1630,7 +1630,7 @@ "rot": "0.0f" }, "funcname": "AddEllipseFilled", - "location": "imgui:3099", + "location": "imgui:3106", "ov_cimguiname": "ImDrawList_AddEllipseFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", @@ -1679,7 +1679,7 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:3116", + "location": "imgui:3123", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1746,7 +1746,7 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:3117", + "location": "imgui:3124", "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)", @@ -1801,7 +1801,7 @@ "flags": "0" }, "funcname": "AddImageRounded", - "location": "imgui:3118", + "location": "imgui:3125", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1840,7 +1840,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:3086", + "location": "imgui:3093", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1883,7 +1883,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:3096", + "location": "imgui:3103", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1920,7 +1920,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:3097", + "location": "imgui:3104", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1961,7 +1961,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", - "location": "imgui:3108", + "location": "imgui:3115", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -2008,7 +2008,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:3090", + "location": "imgui:3097", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2049,7 +2049,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:3091", + "location": "imgui:3098", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2098,7 +2098,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:3087", + "location": "imgui:3094", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -2142,7 +2142,7 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", - "location": "imgui:3088", + "location": "imgui:3095", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -2187,7 +2187,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:3089", + "location": "imgui:3096", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -2226,7 +2226,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:3100", + "location": "imgui:3107", "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -2281,7 +2281,7 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:3101", + "location": "imgui:3108", "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -2324,7 +2324,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:3092", + "location": "imgui:3099", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2361,7 +2361,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:3093", + "location": "imgui:3100", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2382,7 +2382,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui:3158", + "location": "imgui:3165", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -2407,7 +2407,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui:3159", + "location": "imgui:3166", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2432,7 +2432,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui:3157", + "location": "imgui:3164", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2453,7 +2453,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", - "location": "imgui:3149", + "location": "imgui:3156", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2478,7 +2478,7 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:3077", + "location": "imgui:3084", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -2504,7 +2504,7 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:3076", + "location": "imgui:3083", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -2527,7 +2527,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:3068", + "location": "imgui:3075", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2569,7 +2569,7 @@ "num_segments": "0" }, "funcname": "PathArcTo", - "location": "imgui:3129", + "location": "imgui:3136", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2606,7 +2606,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:3130", + "location": "imgui:3137", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2645,7 +2645,7 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", - "location": "imgui:3132", + "location": "imgui:3139", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2680,7 +2680,7 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", - "location": "imgui:3133", + "location": "imgui:3140", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -2701,7 +2701,7 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:3123", + "location": "imgui:3130", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -2748,7 +2748,7 @@ "num_segments": "0" }, "funcname": "PathEllipticalArcTo", - "location": "imgui:3131", + "location": "imgui:3138", "ov_cimguiname": "ImDrawList_PathEllipticalArcTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,float,float,int)", @@ -2773,7 +2773,7 @@ "cimguiname": "ImDrawList_PathFillConcave", "defaults": {}, "funcname": "PathFillConcave", - "location": "imgui:3127", + "location": "imgui:3134", "ov_cimguiname": "ImDrawList_PathFillConcave", "ret": "void", "signature": "(ImU32)", @@ -2798,7 +2798,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:3126", + "location": "imgui:3133", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2823,7 +2823,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:3124", + "location": "imgui:3131", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2848,7 +2848,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:3125", + "location": "imgui:3132", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2888,7 +2888,7 @@ "rounding": "0.0f" }, "funcname": "PathRect", - "location": "imgui:3134", + "location": "imgui:3141", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2924,7 +2924,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:3128", + "location": "imgui:3135", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -2945,7 +2945,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:3073", + "location": "imgui:3080", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2966,7 +2966,7 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": {}, "funcname": "PopTextureID", - "location": "imgui:3075", + "location": "imgui:3082", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -3023,7 +3023,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui:3168", + "location": "imgui:3175", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3056,7 +3056,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", - "location": "imgui:3166", + "location": "imgui:3173", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3097,7 +3097,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui:3167", + "location": "imgui:3174", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3126,7 +3126,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", - "location": "imgui:3164", + "location": "imgui:3171", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -3155,7 +3155,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui:3165", + "location": "imgui:3172", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -3188,7 +3188,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", - "location": "imgui:3171", + "location": "imgui:3178", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3213,7 +3213,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui:3170", + "location": "imgui:3177", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -3246,7 +3246,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui:3169", + "location": "imgui:3176", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3281,7 +3281,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:3071", + "location": "imgui:3078", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", @@ -3302,7 +3302,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:3072", + "location": "imgui:3079", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -3327,7 +3327,7 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": {}, "funcname": "PushTextureID", - "location": "imgui:3074", + "location": "imgui:3081", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -3352,7 +3352,7 @@ "cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", - "location": "imgui:3189", + "location": "imgui:3196", "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -3373,7 +3373,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:3182", + "location": "imgui:3189", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -3394,7 +3394,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:3185", + "location": "imgui:3192", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -3415,7 +3415,7 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": {}, "funcname": "_OnChangedTextureID", - "location": "imgui:3186", + "location": "imgui:3193", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -3436,7 +3436,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:3187", + "location": "imgui:3194", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -3477,7 +3477,7 @@ "cimguiname": "ImDrawList__PathArcToFastEx", "defaults": {}, "funcname": "_PathArcToFastEx", - "location": "imgui:3190", + "location": "imgui:3197", "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -3518,7 +3518,7 @@ "cimguiname": "ImDrawList__PathArcToN", "defaults": {}, "funcname": "_PathArcToN", - "location": "imgui:3191", + "location": "imgui:3198", "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -3539,7 +3539,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:3183", + "location": "imgui:3190", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -3560,7 +3560,7 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:3181", + "location": "imgui:3188", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", @@ -3585,7 +3585,7 @@ "cimguiname": "ImDrawList__SetTextureID", "defaults": {}, "funcname": "_SetTextureID", - "location": "imgui:3188", + "location": "imgui:3195", "ov_cimguiname": "ImDrawList__SetTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -3606,7 +3606,7 @@ "cimguiname": "ImDrawList__TryMergeDrawCmds", "defaults": {}, "funcname": "_TryMergeDrawCmds", - "location": "imgui:3184", + "location": "imgui:3191", "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -3626,7 +3626,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3070", + "location": "imgui:3076", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -3644,7 +3644,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasCustomRect", - "location": "imgui:3287", + "location": "imgui:3296", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -3664,7 +3664,7 @@ "cimguiname": "ImFontAtlasCustomRect_IsPacked", "defaults": {}, "funcname": "IsPacked", - "location": "imgui:3288", + "location": "imgui:3297", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -3684,7 +3684,7 @@ "cimguiname": "ImFontAtlasCustomRect_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3287", + "location": "imgui:3296", "ov_cimguiname": "ImFontAtlasCustomRect_destroy", "ret": "void", "signature": "(ImFontAtlasCustomRect*)", @@ -3731,7 +3731,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", - "location": "imgui:3373", + "location": "imgui:3382", "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -3760,7 +3760,7 @@ "cimguiname": "ImFontAtlas_AddCustomRectRegular", "defaults": {}, "funcname": "AddCustomRectRegular", - "location": "imgui:3372", + "location": "imgui:3381", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -3785,7 +3785,7 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", - "location": "imgui:3321", + "location": "imgui:3330", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3812,7 +3812,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui:3322", + "location": "imgui:3331", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3852,7 +3852,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", - "location": "imgui:3323", + "location": "imgui:3332", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3892,7 +3892,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui:3326", + "location": "imgui:3335", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3936,7 +3936,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui:3325", + "location": "imgui:3334", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3980,7 +3980,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui:3324", + "location": "imgui:3333", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -4001,7 +4001,7 @@ "cimguiname": "ImFontAtlas_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:3337", + "location": "imgui:3346", "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -4034,7 +4034,7 @@ "cimguiname": "ImFontAtlas_CalcCustomRectUV", "defaults": {}, "funcname": "CalcCustomRectUV", - "location": "imgui:3377", + "location": "imgui:3386", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -4055,7 +4055,7 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3330", + "location": "imgui:3339", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -4076,7 +4076,7 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", - "location": "imgui:3329", + "location": "imgui:3338", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -4097,7 +4097,7 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", - "location": "imgui:3327", + "location": "imgui:3336", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -4118,7 +4118,7 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", - "location": "imgui:3328", + "location": "imgui:3337", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -4143,7 +4143,7 @@ "cimguiname": "ImFontAtlas_GetCustomRectByIndex", "defaults": {}, "funcname": "GetCustomRectByIndex", - "location": "imgui:3374", + "location": "imgui:3383", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -4164,7 +4164,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "defaults": {}, "funcname": "GetGlyphRangesChineseFull", - "location": "imgui:3355", + "location": "imgui:3364", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -4185,7 +4185,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", - "location": "imgui:3356", + "location": "imgui:3365", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -4206,7 +4206,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "defaults": {}, "funcname": "GetGlyphRangesCyrillic", - "location": "imgui:3357", + "location": "imgui:3366", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -4227,7 +4227,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui:3351", + "location": "imgui:3360", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -4248,7 +4248,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "defaults": {}, "funcname": "GetGlyphRangesGreek", - "location": "imgui:3352", + "location": "imgui:3361", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "ret": "const ImWchar*", "signature": "()", @@ -4269,7 +4269,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "defaults": {}, "funcname": "GetGlyphRangesJapanese", - "location": "imgui:3354", + "location": "imgui:3363", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -4290,7 +4290,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "defaults": {}, "funcname": "GetGlyphRangesKorean", - "location": "imgui:3353", + "location": "imgui:3362", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -4311,7 +4311,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesThai", "defaults": {}, "funcname": "GetGlyphRangesThai", - "location": "imgui:3358", + "location": "imgui:3367", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -4332,7 +4332,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "defaults": {}, "funcname": "GetGlyphRangesVietnamese", - "location": "imgui:3359", + "location": "imgui:3368", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -4373,7 +4373,7 @@ "cimguiname": "ImFontAtlas_GetMouseCursorTexData", "defaults": {}, "funcname": "GetMouseCursorTexData", - "location": "imgui:3378", + "location": "imgui:3387", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -4412,7 +4412,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", - "location": "imgui:3338", + "location": "imgui:3347", "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4451,7 +4451,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", - "location": "imgui:3339", + "location": "imgui:3348", "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4468,7 +4468,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui:3319", + "location": "imgui:3328", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -4488,7 +4488,7 @@ "cimguiname": "ImFontAtlas_IsBuilt", "defaults": {}, "funcname": "IsBuilt", - "location": "imgui:3340", + "location": "imgui:3349", "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -4513,7 +4513,7 @@ "cimguiname": "ImFontAtlas_SetTexID", "defaults": {}, "funcname": "SetTexID", - "location": "imgui:3341", + "location": "imgui:3350", "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -4533,7 +4533,7 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3320", + "location": "imgui:3329", "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -4551,7 +4551,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui:3246", + "location": "imgui:3253", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -4570,7 +4570,7 @@ "cimguiname": "ImFontConfig_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3246", + "location": "imgui:3253", "ov_cimguiname": "ImFontConfig_destroy", "ret": "void", "signature": "(ImFontConfig*)", @@ -4595,7 +4595,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", - "location": "imgui:3271", + "location": "imgui:3278", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -4620,7 +4620,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", - "location": "imgui:3273", + "location": "imgui:3280", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -4651,7 +4651,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:3272", + "location": "imgui:3279", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -4676,7 +4676,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", - "location": "imgui:3274", + "location": "imgui:3281", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -4697,7 +4697,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:3268", + "location": "imgui:3275", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4722,7 +4722,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", - "location": "imgui:3269", + "location": "imgui:3276", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4739,7 +4739,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui:3267", + "location": "imgui:3274", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4763,7 +4763,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui:3270", + "location": "imgui:3277", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4783,7 +4783,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3267", + "location": "imgui:3274", "ov_cimguiname": "ImFontGlyphRangesBuilder_destroy", "ret": "void", "signature": "(ImFontGlyphRangesBuilder*)", @@ -4848,7 +4848,7 @@ "cimguiname": "ImFont_AddGlyph", "defaults": {}, "funcname": "AddGlyph", - "location": "imgui:3468", + "location": "imgui:3478", "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", @@ -4883,7 +4883,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", - "location": "imgui:3469", + "location": "imgui:3479", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -4904,7 +4904,7 @@ "cimguiname": "ImFont_BuildLookupTable", "defaults": {}, "funcname": "BuildLookupTable", - "location": "imgui:3465", + "location": "imgui:3475", "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -4956,7 +4956,7 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui:3459", + "location": "imgui:3469", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -4994,7 +4994,7 @@ "cimguiname": "ImFont_CalcWordWrapPositionA", "defaults": {}, "funcname": "CalcWordWrapPositionA", - "location": "imgui:3460", + "location": "imgui:3470", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)", @@ -5015,7 +5015,7 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:3466", + "location": "imgui:3476", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -5040,7 +5040,7 @@ "cimguiname": "ImFont_FindGlyph", "defaults": {}, "funcname": "FindGlyph", - "location": "imgui:3451", + "location": "imgui:3461", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)", @@ -5065,7 +5065,7 @@ "cimguiname": "ImFont_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui:3452", + "location": "imgui:3462", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)", @@ -5090,7 +5090,7 @@ "cimguiname": "ImFont_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui:3453", + "location": "imgui:3463", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)", @@ -5111,7 +5111,7 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", - "location": "imgui:3455", + "location": "imgui:3465", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -5136,7 +5136,7 @@ "cimguiname": "ImFont_GrowIndex", "defaults": {}, "funcname": "GrowIndex", - "location": "imgui:3467", + "location": "imgui:3477", "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -5153,7 +5153,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", - "location": "imgui:3449", + "location": "imgui:3459", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -5181,7 +5181,7 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui:3471", + "location": "imgui:3481", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -5202,7 +5202,7 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", - "location": "imgui:3454", + "location": "imgui:3464", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -5243,7 +5243,7 @@ "cimguiname": "ImFont_RenderChar", "defaults": {}, "funcname": "RenderChar", - "location": "imgui:3461", + "location": "imgui:3471", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)", @@ -5303,7 +5303,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui:3462", + "location": "imgui:3472", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)", @@ -5332,7 +5332,7 @@ "cimguiname": "ImFont_SetGlyphVisible", "defaults": {}, "funcname": "SetGlyphVisible", - "location": "imgui:3470", + "location": "imgui:3480", "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -5352,7 +5352,7 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3450", + "location": "imgui:3460", "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -5370,7 +5370,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiBoxSelectState", - "location": "imgui_internal:1746", + "location": "imgui_internal:1750", "ov_cimguiname": "ImGuiBoxSelectState_ImGuiBoxSelectState", "signature": "()", "stname": "ImGuiBoxSelectState" @@ -5389,7 +5389,7 @@ "cimguiname": "ImGuiBoxSelectState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1746", + "location": "imgui_internal:1750", "ov_cimguiname": "ImGuiBoxSelectState_destroy", "ret": "void", "signature": "(ImGuiBoxSelectState*)", @@ -5406,7 +5406,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiComboPreviewData", - "location": "imgui_internal:1054", + "location": "imgui_internal:1058", "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", "signature": "()", "stname": "ImGuiComboPreviewData" @@ -5425,7 +5425,7 @@ "cimguiname": "ImGuiComboPreviewData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1054", + "location": "imgui_internal:1058", "ov_cimguiname": "ImGuiComboPreviewData_destroy", "ret": "void", "signature": "(ImGuiComboPreviewData*)", @@ -5442,7 +5442,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContextHook", - "location": "imgui_internal:2016", + "location": "imgui_internal:2022", "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5461,7 +5461,7 @@ "cimguiname": "ImGuiContextHook_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2016", + "location": "imgui_internal:2022", "ov_cimguiname": "ImGuiContextHook_destroy", "ret": "void", "signature": "(ImGuiContextHook*)", @@ -5483,7 +5483,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", - "location": "imgui_internal:2385", + "location": "imgui_internal:2391", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5502,7 +5502,7 @@ "cimguiname": "ImGuiContext_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2385", + "location": "imgui_internal:2391", "ov_cimguiname": "ImGuiContext_destroy", "ret": "void", "signature": "(ImGuiContext*)", @@ -5527,7 +5527,7 @@ "cimguiname": "ImGuiDataVarInfo_GetVarPtr", "defaults": {}, "funcname": "GetVarPtr", - "location": "imgui_internal:805", + "location": "imgui_internal:809", "ov_cimguiname": "ImGuiDataVarInfo_GetVarPtr", "ret": "void*", "signature": "(void*)const", @@ -5544,7 +5544,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDebugAllocInfo", - "location": "imgui_internal:1957", + "location": "imgui_internal:1963", "ov_cimguiname": "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", "signature": "()", "stname": "ImGuiDebugAllocInfo" @@ -5563,7 +5563,7 @@ "cimguiname": "ImGuiDebugAllocInfo_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1957", + "location": "imgui_internal:1963", "ov_cimguiname": "ImGuiDebugAllocInfo_destroy", "ret": "void", "signature": "(ImGuiDebugAllocInfo*)", @@ -5580,7 +5580,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiErrorRecoveryState", - "location": "imgui_internal:1284", + "location": "imgui_internal:1288", "ov_cimguiname": "ImGuiErrorRecoveryState_ImGuiErrorRecoveryState", "signature": "()", "stname": "ImGuiErrorRecoveryState" @@ -5599,7 +5599,7 @@ "cimguiname": "ImGuiErrorRecoveryState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1284", + "location": "imgui_internal:1288", "ov_cimguiname": "ImGuiErrorRecoveryState_destroy", "ret": "void", "signature": "(ImGuiErrorRecoveryState*)", @@ -5669,7 +5669,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIDStackTool", - "location": "imgui_internal:1998", + "location": "imgui_internal:2004", "ov_cimguiname": "ImGuiIDStackTool_ImGuiIDStackTool", "signature": "()", "stname": "ImGuiIDStackTool" @@ -5688,7 +5688,7 @@ "cimguiname": "ImGuiIDStackTool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1998", + "location": "imgui_internal:2004", "ov_cimguiname": "ImGuiIDStackTool_destroy", "ret": "void", "signature": "(ImGuiIDStackTool*)", @@ -5713,7 +5713,7 @@ "cimguiname": "ImGuiIO_AddFocusEvent", "defaults": {}, "funcname": "AddFocusEvent", - "location": "imgui:2330", + "location": "imgui:2335", "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -5738,7 +5738,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:2331", + "location": "imgui:2336", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -5763,7 +5763,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:2332", + "location": "imgui:2337", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -5788,7 +5788,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:2333", + "location": "imgui:2338", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -5821,7 +5821,7 @@ "cimguiname": "ImGuiIO_AddKeyAnalogEvent", "defaults": {}, "funcname": "AddKeyAnalogEvent", - "location": "imgui:2325", + "location": "imgui:2330", "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -5850,7 +5850,7 @@ "cimguiname": "ImGuiIO_AddKeyEvent", "defaults": {}, "funcname": "AddKeyEvent", - "location": "imgui:2324", + "location": "imgui:2329", "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -5879,7 +5879,7 @@ "cimguiname": "ImGuiIO_AddMouseButtonEvent", "defaults": {}, "funcname": "AddMouseButtonEvent", - "location": "imgui:2327", + "location": "imgui:2332", "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -5908,7 +5908,7 @@ "cimguiname": "ImGuiIO_AddMousePosEvent", "defaults": {}, "funcname": "AddMousePosEvent", - "location": "imgui:2326", + "location": "imgui:2331", "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", @@ -5933,7 +5933,7 @@ "cimguiname": "ImGuiIO_AddMouseSourceEvent", "defaults": {}, "funcname": "AddMouseSourceEvent", - "location": "imgui:2329", + "location": "imgui:2334", "ov_cimguiname": "ImGuiIO_AddMouseSourceEvent", "ret": "void", "signature": "(ImGuiMouseSource)", @@ -5962,7 +5962,7 @@ "cimguiname": "ImGuiIO_AddMouseWheelEvent", "defaults": {}, "funcname": "AddMouseWheelEvent", - "location": "imgui:2328", + "location": "imgui:2333", "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", @@ -5983,7 +5983,7 @@ "cimguiname": "ImGuiIO_ClearEventsQueue", "defaults": {}, "funcname": "ClearEventsQueue", - "location": "imgui:2337", + "location": "imgui:2342", "ov_cimguiname": "ImGuiIO_ClearEventsQueue", "ret": "void", "signature": "()", @@ -6004,7 +6004,7 @@ "cimguiname": "ImGuiIO_ClearInputKeys", "defaults": {}, "funcname": "ClearInputKeys", - "location": "imgui:2338", + "location": "imgui:2343", "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", @@ -6025,7 +6025,7 @@ "cimguiname": "ImGuiIO_ClearInputMouse", "defaults": {}, "funcname": "ClearInputMouse", - "location": "imgui:2339", + "location": "imgui:2344", "ov_cimguiname": "ImGuiIO_ClearInputMouse", "ret": "void", "signature": "()", @@ -6042,7 +6042,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:2426", + "location": "imgui:2431", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -6066,7 +6066,7 @@ "cimguiname": "ImGuiIO_SetAppAcceptingEvents", "defaults": {}, "funcname": "SetAppAcceptingEvents", - "location": "imgui:2336", + "location": "imgui:2341", "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -6105,7 +6105,7 @@ "native_legacy_index": "-1" }, "funcname": "SetKeyEventNativeData", - "location": "imgui:2335", + "location": "imgui:2340", "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -6125,7 +6125,7 @@ "cimguiname": "ImGuiIO_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2426", + "location": "imgui:2431", "ov_cimguiname": "ImGuiIO_destroy", "ret": "void", "signature": "(ImGuiIO*)", @@ -6142,7 +6142,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputEvent", - "location": "imgui_internal:1413", + "location": "imgui_internal:1417", "ov_cimguiname": "ImGuiInputEvent_ImGuiInputEvent", "signature": "()", "stname": "ImGuiInputEvent" @@ -6161,7 +6161,7 @@ "cimguiname": "ImGuiInputEvent_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1413", + "location": "imgui_internal:1417", "ov_cimguiname": "ImGuiInputEvent_destroy", "ret": "void", "signature": "(ImGuiInputEvent*)", @@ -6182,7 +6182,7 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui:2470", + "location": "imgui:2475", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -6211,7 +6211,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:2467", + "location": "imgui:2472", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -6232,7 +6232,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:2471", + "location": "imgui:2476", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -6249,7 +6249,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:2466", + "location": "imgui:2471", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -6283,7 +6283,7 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:2468", + "location": "imgui:2473", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -6304,7 +6304,7 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui:2469", + "location": "imgui:2474", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -6324,7 +6324,7 @@ "cimguiname": "ImGuiInputTextCallbackData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2466", + "location": "imgui:2471", "ov_cimguiname": "ImGuiInputTextCallbackData_destroy", "ret": "void", "signature": "(ImGuiInputTextCallbackData*)", @@ -6345,7 +6345,7 @@ "cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1100", + "location": "imgui_internal:1104", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6362,7 +6362,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextDeactivatedState", - "location": "imgui_internal:1099", + "location": "imgui_internal:1103", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", "signature": "()", "stname": "ImGuiInputTextDeactivatedState" @@ -6381,7 +6381,7 @@ "cimguiname": "ImGuiInputTextDeactivatedState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1099", + "location": "imgui_internal:1103", "ov_cimguiname": "ImGuiInputTextDeactivatedState_destroy", "ret": "void", "signature": "(ImGuiInputTextDeactivatedState*)", @@ -6402,7 +6402,7 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1139", + "location": "imgui_internal:1143", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6423,7 +6423,7 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui_internal:1147", + "location": "imgui_internal:1151", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -6444,7 +6444,7 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": {}, "funcname": "ClearText", - "location": "imgui_internal:1138", + "location": "imgui_internal:1142", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -6465,7 +6465,7 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", - "location": "imgui_internal:1144", + "location": "imgui_internal:1148", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -6486,7 +6486,7 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", - "location": "imgui_internal:1145", + "location": "imgui_internal:1149", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -6507,7 +6507,7 @@ "cimguiname": "ImGuiInputTextState_GetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui_internal:1148", + "location": "imgui_internal:1152", "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", "ret": "int", "signature": "()const", @@ -6528,7 +6528,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionEnd", "defaults": {}, "funcname": "GetSelectionEnd", - "location": "imgui_internal:1150", + "location": "imgui_internal:1154", "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", @@ -6549,7 +6549,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionStart", "defaults": {}, "funcname": "GetSelectionStart", - "location": "imgui_internal:1149", + "location": "imgui_internal:1153", "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", "ret": "int", "signature": "()const", @@ -6570,7 +6570,7 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui_internal:1146", + "location": "imgui_internal:1150", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -6587,7 +6587,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextState", - "location": "imgui_internal:1136", + "location": "imgui_internal:1140", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "signature": "()", "stname": "ImGuiInputTextState" @@ -6611,7 +6611,7 @@ "cimguiname": "ImGuiInputTextState_OnCharPressed", "defaults": {}, "funcname": "OnCharPressed", - "location": "imgui_internal:1141", + "location": "imgui_internal:1145", "ov_cimguiname": "ImGuiInputTextState_OnCharPressed", "ret": "void", "signature": "(unsigned int)", @@ -6636,7 +6636,7 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": {}, "funcname": "OnKeyPressed", - "location": "imgui_internal:1140", + "location": "imgui_internal:1144", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", @@ -6657,7 +6657,7 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", "defaults": {}, "funcname": "ReloadUserBufAndKeepSelection", - "location": "imgui_internal:1159", + "location": "imgui_internal:1163", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", "ret": "void", "signature": "()", @@ -6678,7 +6678,7 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", "defaults": {}, "funcname": "ReloadUserBufAndMoveToEnd", - "location": "imgui_internal:1160", + "location": "imgui_internal:1164", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", "ret": "void", "signature": "()", @@ -6699,7 +6699,7 @@ "cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", "defaults": {}, "funcname": "ReloadUserBufAndSelectAll", - "location": "imgui_internal:1158", + "location": "imgui_internal:1162", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", "ret": "void", "signature": "()", @@ -6720,7 +6720,7 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui_internal:1151", + "location": "imgui_internal:1155", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -6740,7 +6740,7 @@ "cimguiname": "ImGuiInputTextState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1137", + "location": "imgui_internal:1141", "ov_cimguiname": "ImGuiInputTextState_destroy", "realdestructor": true, "ret": "void", @@ -6758,7 +6758,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyOwnerData", - "location": "imgui_internal:1457", + "location": "imgui_internal:1461", "ov_cimguiname": "ImGuiKeyOwnerData_ImGuiKeyOwnerData", "signature": "()", "stname": "ImGuiKeyOwnerData" @@ -6777,7 +6777,7 @@ "cimguiname": "ImGuiKeyOwnerData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1457", + "location": "imgui_internal:1461", "ov_cimguiname": "ImGuiKeyOwnerData_destroy", "ret": "void", "signature": "(ImGuiKeyOwnerData*)", @@ -6794,7 +6794,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingData", - "location": "imgui_internal:1433", + "location": "imgui_internal:1437", "ov_cimguiname": "ImGuiKeyRoutingData_ImGuiKeyRoutingData", "signature": "()", "stname": "ImGuiKeyRoutingData" @@ -6813,7 +6813,7 @@ "cimguiname": "ImGuiKeyRoutingData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1433", + "location": "imgui_internal:1437", "ov_cimguiname": "ImGuiKeyRoutingData_destroy", "ret": "void", "signature": "(ImGuiKeyRoutingData*)", @@ -6834,7 +6834,7 @@ "cimguiname": "ImGuiKeyRoutingTable_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1445", + "location": "imgui_internal:1449", "ov_cimguiname": "ImGuiKeyRoutingTable_Clear", "ret": "void", "signature": "()", @@ -6851,7 +6851,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingTable", - "location": "imgui_internal:1444", + "location": "imgui_internal:1448", "ov_cimguiname": "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", "signature": "()", "stname": "ImGuiKeyRoutingTable" @@ -6870,7 +6870,7 @@ "cimguiname": "ImGuiKeyRoutingTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1444", + "location": "imgui_internal:1448", "ov_cimguiname": "ImGuiKeyRoutingTable_destroy", "ret": "void", "signature": "(ImGuiKeyRoutingTable*)", @@ -6887,7 +6887,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiLastItemData", - "location": "imgui_internal:1254", + "location": "imgui_internal:1258", "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", "stname": "ImGuiLastItemData" @@ -6906,7 +6906,7 @@ "cimguiname": "ImGuiLastItemData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1254", + "location": "imgui_internal:1258", "ov_cimguiname": "ImGuiLastItemData_destroy", "ret": "void", "signature": "(ImGuiLastItemData*)", @@ -6923,7 +6923,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipperData", - "location": "imgui_internal:1528", + "location": "imgui_internal:1532", "ov_cimguiname": "ImGuiListClipperData_ImGuiListClipperData", "signature": "()", "stname": "ImGuiListClipperData" @@ -6947,7 +6947,7 @@ "cimguiname": "ImGuiListClipperData_Reset", "defaults": {}, "funcname": "Reset", - "location": "imgui_internal:1529", + "location": "imgui_internal:1533", "ov_cimguiname": "ImGuiListClipperData_Reset", "ret": "void", "signature": "(ImGuiListClipper*)", @@ -6967,7 +6967,7 @@ "cimguiname": "ImGuiListClipperData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1528", + "location": "imgui_internal:1532", "ov_cimguiname": "ImGuiListClipperData_destroy", "ret": "void", "signature": "(ImGuiListClipperData*)", @@ -6993,7 +6993,7 @@ "defaults": {}, "funcname": "FromIndices", "is_static_function": true, - "location": "imgui_internal:1515", + "location": "imgui_internal:1519", "ov_cimguiname": "ImGuiListClipperRange_FromIndices", "ret": "ImGuiListClipperRange", "signature": "(int,int)", @@ -7027,7 +7027,7 @@ "defaults": {}, "funcname": "FromPositions", "is_static_function": true, - "location": "imgui_internal:1516", + "location": "imgui_internal:1520", "ov_cimguiname": "ImGuiListClipperRange_FromPositions", "ret": "ImGuiListClipperRange", "signature": "(float,float,int,int)", @@ -7058,7 +7058,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui:2664", + "location": "imgui:2669", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -7079,7 +7079,7 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", - "location": "imgui:2665", + "location": "imgui:2670", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", @@ -7096,7 +7096,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:2662", + "location": "imgui:2667", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" @@ -7120,7 +7120,7 @@ "cimguiname": "ImGuiListClipper_IncludeItemByIndex", "defaults": {}, "funcname": "IncludeItemByIndex", - "location": "imgui:2670", + "location": "imgui:2675", "ov_cimguiname": "ImGuiListClipper_IncludeItemByIndex", "ret": "void", "signature": "(int)", @@ -7149,7 +7149,7 @@ "cimguiname": "ImGuiListClipper_IncludeItemsByIndex", "defaults": {}, "funcname": "IncludeItemsByIndex", - "location": "imgui:2671", + "location": "imgui:2676", "ov_cimguiname": "ImGuiListClipper_IncludeItemsByIndex", "ret": "void", "signature": "(int,int)", @@ -7174,7 +7174,7 @@ "cimguiname": "ImGuiListClipper_SeekCursorForItem", "defaults": {}, "funcname": "SeekCursorForItem", - "location": "imgui:2676", + "location": "imgui:2681", "ov_cimguiname": "ImGuiListClipper_SeekCursorForItem", "ret": "void", "signature": "(int)", @@ -7195,7 +7195,7 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", - "location": "imgui:2666", + "location": "imgui:2671", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -7215,7 +7215,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2663", + "location": "imgui:2668", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -7241,7 +7241,7 @@ "cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "defaults": {}, "funcname": "CalcNextTotalWidth", - "location": "imgui_internal:1090", + "location": "imgui_internal:1094", "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "ret": "void", "signature": "(bool)", @@ -7278,7 +7278,7 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", - "location": "imgui_internal:1089", + "location": "imgui_internal:1093", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float,float)", @@ -7295,7 +7295,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", - "location": "imgui_internal:1087", + "location": "imgui_internal:1091", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -7323,7 +7323,7 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", - "location": "imgui_internal:1088", + "location": "imgui_internal:1092", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(float,bool)", @@ -7343,7 +7343,7 @@ "cimguiname": "ImGuiMenuColumns_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1087", + "location": "imgui_internal:1091", "ov_cimguiname": "ImGuiMenuColumns_destroy", "ret": "void", "signature": "(ImGuiMenuColumns*)", @@ -7360,7 +7360,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMultiSelectState", - "location": "imgui_internal:1793", + "location": "imgui_internal:1797", "ov_cimguiname": "ImGuiMultiSelectState_ImGuiMultiSelectState", "signature": "()", "stname": "ImGuiMultiSelectState" @@ -7379,7 +7379,7 @@ "cimguiname": "ImGuiMultiSelectState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1793", + "location": "imgui_internal:1797", "ov_cimguiname": "ImGuiMultiSelectState_destroy", "ret": "void", "signature": "(ImGuiMultiSelectState*)", @@ -7400,7 +7400,7 @@ "cimguiname": "ImGuiMultiSelectTempData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1777", + "location": "imgui_internal:1781", "ov_cimguiname": "ImGuiMultiSelectTempData_Clear", "ret": "void", "signature": "()", @@ -7421,7 +7421,7 @@ "cimguiname": "ImGuiMultiSelectTempData_ClearIO", "defaults": {}, "funcname": "ClearIO", - "location": "imgui_internal:1778", + "location": "imgui_internal:1782", "ov_cimguiname": "ImGuiMultiSelectTempData_ClearIO", "ret": "void", "signature": "()", @@ -7438,7 +7438,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMultiSelectTempData", - "location": "imgui_internal:1776", + "location": "imgui_internal:1780", "ov_cimguiname": "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", "signature": "()", "stname": "ImGuiMultiSelectTempData" @@ -7457,7 +7457,7 @@ "cimguiname": "ImGuiMultiSelectTempData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1776", + "location": "imgui_internal:1780", "ov_cimguiname": "ImGuiMultiSelectTempData_destroy", "ret": "void", "signature": "(ImGuiMultiSelectTempData*)", @@ -7478,7 +7478,7 @@ "cimguiname": "ImGuiNavItemData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1618", + "location": "imgui_internal:1622", "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", @@ -7495,7 +7495,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNavItemData", - "location": "imgui_internal:1617", + "location": "imgui_internal:1621", "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", "stname": "ImGuiNavItemData" @@ -7514,7 +7514,7 @@ "cimguiname": "ImGuiNavItemData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1617", + "location": "imgui_internal:1621", "ov_cimguiname": "ImGuiNavItemData_destroy", "ret": "void", "signature": "(ImGuiNavItemData*)", @@ -7535,7 +7535,7 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1238", + "location": "imgui_internal:1242", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -7552,7 +7552,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", - "location": "imgui_internal:1237", + "location": "imgui_internal:1241", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -7571,7 +7571,7 @@ "cimguiname": "ImGuiNextItemData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1237", + "location": "imgui_internal:1241", "ov_cimguiname": "ImGuiNextItemData_destroy", "ret": "void", "signature": "(ImGuiNextItemData*)", @@ -7592,7 +7592,7 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1209", + "location": "imgui_internal:1213", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -7609,7 +7609,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", - "location": "imgui_internal:1208", + "location": "imgui_internal:1212", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -7628,7 +7628,7 @@ "cimguiname": "ImGuiNextWindowData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1208", + "location": "imgui_internal:1212", "ov_cimguiname": "ImGuiNextWindowData_destroy", "ret": "void", "signature": "(ImGuiNextWindowData*)", @@ -7645,7 +7645,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumnData", - "location": "imgui_internal:1697", + "location": "imgui_internal:1701", "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -7664,7 +7664,7 @@ "cimguiname": "ImGuiOldColumnData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1697", + "location": "imgui_internal:1701", "ov_cimguiname": "ImGuiOldColumnData_destroy", "ret": "void", "signature": "(ImGuiOldColumnData*)", @@ -7681,7 +7681,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumns", - "location": "imgui_internal:1718", + "location": "imgui_internal:1722", "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -7700,7 +7700,7 @@ "cimguiname": "ImGuiOldColumns_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1718", + "location": "imgui_internal:1722", "ov_cimguiname": "ImGuiOldColumns_destroy", "ret": "void", "signature": "(ImGuiOldColumns*)", @@ -7717,7 +7717,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:2522", + "location": "imgui:2527", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -7736,7 +7736,7 @@ "cimguiname": "ImGuiOnceUponAFrame_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2522", + "location": "imgui:2527", "ov_cimguiname": "ImGuiOnceUponAFrame_destroy", "ret": "void", "signature": "(ImGuiOnceUponAFrame*)", @@ -7757,7 +7757,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2500", + "location": "imgui:2505", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -7774,7 +7774,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:2499", + "location": "imgui:2504", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -7798,7 +7798,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:2501", + "location": "imgui:2506", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -7819,7 +7819,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:2503", + "location": "imgui:2508", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -7840,7 +7840,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:2502", + "location": "imgui:2507", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -7860,7 +7860,7 @@ "cimguiname": "ImGuiPayload_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2499", + "location": "imgui:2504", "ov_cimguiname": "ImGuiPayload_destroy", "ret": "void", "signature": "(ImGuiPayload*)", @@ -7877,7 +7877,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformIO", - "location": "imgui:3521", + "location": "imgui:3531", "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", "signature": "()", "stname": "ImGuiPlatformIO" @@ -7896,7 +7896,7 @@ "cimguiname": "ImGuiPlatformIO_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3521", + "location": "imgui:3531", "ov_cimguiname": "ImGuiPlatformIO_destroy", "ret": "void", "signature": "(ImGuiPlatformIO*)", @@ -7913,7 +7913,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformImeData", - "location": "imgui:3563", + "location": "imgui:3573", "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -7932,7 +7932,7 @@ "cimguiname": "ImGuiPlatformImeData_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3563", + "location": "imgui:3573", "ov_cimguiname": "ImGuiPlatformImeData_destroy", "ret": "void", "signature": "(ImGuiPlatformImeData*)", @@ -7949,7 +7949,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", - "location": "imgui_internal:1335", + "location": "imgui_internal:1339", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -7968,7 +7968,7 @@ "cimguiname": "ImGuiPopupData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1335", + "location": "imgui_internal:1339", "ov_cimguiname": "ImGuiPopupData_destroy", "ret": "void", "signature": "(ImGuiPopupData*)", @@ -7990,7 +7990,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1308", + "location": "imgui_internal:1312", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -8009,7 +8009,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1309", + "location": "imgui_internal:1313", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -8028,7 +8028,7 @@ "cimguiname": "ImGuiPtrOrIndex_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1308", + "location": "imgui_internal:1312", "ov_cimguiname": "ImGuiPtrOrIndex_destroy", "ret": "void", "signature": "(ImGuiPtrOrIndex*)", @@ -8053,7 +8053,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", "defaults": {}, "funcname": "ApplyRequests", - "location": "imgui:2884", + "location": "imgui:2890", "ov_cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", "ret": "void", "signature": "(ImGuiMultiSelectIO*)", @@ -8074,7 +8074,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2886", + "location": "imgui:2892", "ov_cimguiname": "ImGuiSelectionBasicStorage_Clear", "ret": "void", "signature": "()", @@ -8099,7 +8099,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui:2885", + "location": "imgui:2891", "ov_cimguiname": "ImGuiSelectionBasicStorage_Contains", "ret": "bool", "signature": "(ImGuiID)const", @@ -8128,7 +8128,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", "defaults": {}, "funcname": "GetNextSelectedItem", - "location": "imgui:2889", + "location": "imgui:2895", "ov_cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", "ret": "bool", "signature": "(void**,ImGuiID*)", @@ -8153,7 +8153,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", "defaults": {}, "funcname": "GetStorageIdFromIndex", - "location": "imgui:2890", + "location": "imgui:2896", "ov_cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", "ret": "ImGuiID", "signature": "(int)", @@ -8170,7 +8170,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSelectionBasicStorage", - "location": "imgui:2883", + "location": "imgui:2889", "ov_cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", "signature": "()", "stname": "ImGuiSelectionBasicStorage" @@ -8198,7 +8198,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", "defaults": {}, "funcname": "SetItemSelected", - "location": "imgui:2888", + "location": "imgui:2894", "ov_cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", "ret": "void", "signature": "(ImGuiID,bool)", @@ -8224,7 +8224,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_Swap", "defaults": {}, "funcname": "Swap", - "location": "imgui:2887", + "location": "imgui:2893", "ov_cimguiname": "ImGuiSelectionBasicStorage_Swap", "ret": "void", "signature": "(ImGuiSelectionBasicStorage*)", @@ -8244,7 +8244,7 @@ "cimguiname": "ImGuiSelectionBasicStorage_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2883", + "location": "imgui:2889", "ov_cimguiname": "ImGuiSelectionBasicStorage_destroy", "ret": "void", "signature": "(ImGuiSelectionBasicStorage*)", @@ -8269,7 +8269,7 @@ "cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", "defaults": {}, "funcname": "ApplyRequests", - "location": "imgui:2903", + "location": "imgui:2909", "ov_cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", "ret": "void", "signature": "(ImGuiMultiSelectIO*)", @@ -8286,7 +8286,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSelectionExternalStorage", - "location": "imgui:2902", + "location": "imgui:2908", "ov_cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", "signature": "()", "stname": "ImGuiSelectionExternalStorage" @@ -8305,7 +8305,7 @@ "cimguiname": "ImGuiSelectionExternalStorage_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2902", + "location": "imgui:2908", "ov_cimguiname": "ImGuiSelectionExternalStorage_destroy", "ret": "void", "signature": "(ImGuiSelectionExternalStorage*)", @@ -8322,7 +8322,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", - "location": "imgui_internal:1873", + "location": "imgui_internal:1877", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -8341,7 +8341,7 @@ "cimguiname": "ImGuiSettingsHandler_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1873", + "location": "imgui_internal:1877", "ov_cimguiname": "ImGuiSettingsHandler_destroy", "ret": "void", "signature": "(ImGuiSettingsHandler*)", @@ -8358,7 +8358,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackLevelInfo", - "location": "imgui_internal:1985", + "location": "imgui_internal:1991", "ov_cimguiname": "ImGuiStackLevelInfo_ImGuiStackLevelInfo", "signature": "()", "stname": "ImGuiStackLevelInfo" @@ -8377,7 +8377,7 @@ "cimguiname": "ImGuiStackLevelInfo_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1985", + "location": "imgui_internal:1991", "ov_cimguiname": "ImGuiStackLevelInfo_destroy", "ret": "void", "signature": "(ImGuiStackLevelInfo*)", @@ -8403,7 +8403,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2579", + "location": "imgui:2584", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" @@ -8426,7 +8426,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2580", + "location": "imgui:2585", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" @@ -8449,7 +8449,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2581", + "location": "imgui:2586", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -8468,7 +8468,7 @@ "cimguiname": "ImGuiStoragePair_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2579", + "location": "imgui:2584", "ov_cimguiname": "ImGuiStoragePair_destroy", "ret": "void", "signature": "(ImGuiStoragePair*)", @@ -8489,7 +8489,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:2620", + "location": "imgui:2625", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -8510,7 +8510,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2600", + "location": "imgui:2605", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -8541,7 +8541,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:2603", + "location": "imgui:2608", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -8572,7 +8572,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:2615", + "location": "imgui:2620", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -8603,7 +8603,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:2605", + "location": "imgui:2610", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -8634,7 +8634,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:2616", + "location": "imgui:2621", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -8665,7 +8665,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:2601", + "location": "imgui:2606", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -8696,7 +8696,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:2614", + "location": "imgui:2619", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -8721,7 +8721,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:2607", + "location": "imgui:2612", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -8752,7 +8752,7 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:2617", + "location": "imgui:2622", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -8777,7 +8777,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:2622", + "location": "imgui:2627", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -8806,7 +8806,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:2604", + "location": "imgui:2609", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -8835,7 +8835,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:2606", + "location": "imgui:2611", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -8864,7 +8864,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:2602", + "location": "imgui:2607", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -8893,7 +8893,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:2608", + "location": "imgui:2613", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -8919,7 +8919,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1039", + "location": "imgui_internal:1043", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Int", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -8942,7 +8942,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1040", + "location": "imgui_internal:1044", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Float", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -8965,7 +8965,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1041", + "location": "imgui_internal:1045", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Vec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -8984,7 +8984,7 @@ "cimguiname": "ImGuiStyleMod_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1039", + "location": "imgui_internal:1043", "ov_cimguiname": "ImGuiStyleMod_destroy", "ret": "void", "signature": "(ImGuiStyleMod*)", @@ -9001,7 +9001,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:2178", + "location": "imgui:2182", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -9025,7 +9025,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:2179", + "location": "imgui:2183", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -9045,7 +9045,7 @@ "cimguiname": "ImGuiStyle_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2178", + "location": "imgui:2182", "ov_cimguiname": "ImGuiStyle_destroy", "ret": "void", "signature": "(ImGuiStyle*)", @@ -9062,7 +9062,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", - "location": "imgui_internal:2646", + "location": "imgui_internal:2652", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -9081,7 +9081,7 @@ "cimguiname": "ImGuiTabBar_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2646", + "location": "imgui_internal:2652", "ov_cimguiname": "ImGuiTabBar_destroy", "ret": "void", "signature": "(ImGuiTabBar*)", @@ -9098,7 +9098,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", - "location": "imgui_internal:2605", + "location": "imgui_internal:2611", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -9117,7 +9117,7 @@ "cimguiname": "ImGuiTabItem_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2605", + "location": "imgui_internal:2611", "ov_cimguiname": "ImGuiTabItem_destroy", "ret": "void", "signature": "(ImGuiTabItem*)", @@ -9134,7 +9134,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSettings", - "location": "imgui_internal:2914", + "location": "imgui_internal:2920", "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -9153,7 +9153,7 @@ "cimguiname": "ImGuiTableColumnSettings_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2914", + "location": "imgui_internal:2920", "ov_cimguiname": "ImGuiTableColumnSettings_destroy", "ret": "void", "signature": "(ImGuiTableColumnSettings*)", @@ -9170,7 +9170,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:2002", + "location": "imgui:2006", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -9189,7 +9189,7 @@ "cimguiname": "ImGuiTableColumnSortSpecs_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2002", + "location": "imgui:2006", "ov_cimguiname": "ImGuiTableColumnSortSpecs_destroy", "ret": "void", "signature": "(ImGuiTableColumnSortSpecs*)", @@ -9206,7 +9206,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumn", - "location": "imgui_internal:2709", + "location": "imgui_internal:2715", "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -9225,7 +9225,7 @@ "cimguiname": "ImGuiTableColumn_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2709", + "location": "imgui_internal:2715", "ov_cimguiname": "ImGuiTableColumn_destroy", "ret": "void", "signature": "(ImGuiTableColumn*)", @@ -9242,7 +9242,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableInstanceData", - "location": "imgui_internal:2752", + "location": "imgui_internal:2758", "ov_cimguiname": "ImGuiTableInstanceData_ImGuiTableInstanceData", "signature": "()", "stname": "ImGuiTableInstanceData" @@ -9261,7 +9261,7 @@ "cimguiname": "ImGuiTableInstanceData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2752", + "location": "imgui_internal:2758", "ov_cimguiname": "ImGuiTableInstanceData_destroy", "ret": "void", "signature": "(ImGuiTableInstanceData*)", @@ -9282,7 +9282,7 @@ "cimguiname": "ImGuiTableSettings_GetColumnSettings", "defaults": {}, "funcname": "GetColumnSettings", - "location": "imgui_internal:2937", + "location": "imgui_internal:2943", "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -9299,7 +9299,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSettings", - "location": "imgui_internal:2936", + "location": "imgui_internal:2942", "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -9318,7 +9318,7 @@ "cimguiname": "ImGuiTableSettings_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2936", + "location": "imgui_internal:2942", "ov_cimguiname": "ImGuiTableSettings_destroy", "ret": "void", "signature": "(ImGuiTableSettings*)", @@ -9335,7 +9335,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:1991", + "location": "imgui:1995", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -9354,7 +9354,7 @@ "cimguiname": "ImGuiTableSortSpecs_destroy", "defaults": {}, "destructor": true, - "location": "imgui:1991", + "location": "imgui:1995", "ov_cimguiname": "ImGuiTableSortSpecs_destroy", "ret": "void", "signature": "(ImGuiTableSortSpecs*)", @@ -9371,7 +9371,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableTempData", - "location": "imgui_internal:2899", + "location": "imgui_internal:2905", "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", "signature": "()", "stname": "ImGuiTableTempData" @@ -9390,7 +9390,7 @@ "cimguiname": "ImGuiTableTempData_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2899", + "location": "imgui_internal:2905", "ov_cimguiname": "ImGuiTableTempData_destroy", "ret": "void", "signature": "(ImGuiTableTempData*)", @@ -9407,7 +9407,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTable", - "location": "imgui_internal:2871", + "location": "imgui_internal:2877", "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -9426,7 +9426,7 @@ "cimguiname": "ImGuiTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2872", + "location": "imgui_internal:2878", "ov_cimguiname": "ImGuiTable_destroy", "realdestructor": true, "ret": "void", @@ -9444,7 +9444,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:2560", + "location": "imgui:2565", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -9474,7 +9474,7 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:2569", + "location": "imgui:2574", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -9504,7 +9504,7 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:2570", + "location": "imgui:2575", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -9534,7 +9534,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:2571", + "location": "imgui:2576", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -9555,7 +9555,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2562", + "location": "imgui:2567", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -9576,7 +9576,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:2568", + "location": "imgui:2573", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -9597,7 +9597,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2566", + "location": "imgui:2571", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -9617,7 +9617,7 @@ "cimguiname": "ImGuiTextBuffer_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2560", + "location": "imgui:2565", "ov_cimguiname": "ImGuiTextBuffer_destroy", "ret": "void", "signature": "(ImGuiTextBuffer*)", @@ -9638,7 +9638,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2565", + "location": "imgui:2570", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -9659,7 +9659,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:2563", + "location": "imgui:2568", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -9684,7 +9684,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2567", + "location": "imgui:2572", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -9705,7 +9705,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:2564", + "location": "imgui:2569", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -9726,7 +9726,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2533", + "location": "imgui:2538", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -9747,7 +9747,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2534", + "location": "imgui:2539", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -9779,7 +9779,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:2531", + "location": "imgui:2536", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -9803,7 +9803,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:2530", + "location": "imgui:2535", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -9823,7 +9823,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:2535", + "location": "imgui:2540", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -9854,7 +9854,7 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:2532", + "location": "imgui:2537", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -9874,7 +9874,7 @@ "cimguiname": "ImGuiTextFilter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2530", + "location": "imgui:2535", "ov_cimguiname": "ImGuiTextFilter_destroy", "ret": "void", "signature": "(ImGuiTextFilter*)", @@ -9907,7 +9907,7 @@ "cimguiname": "ImGuiTextIndex_append", "defaults": {}, "funcname": "append", - "location": "imgui_internal:728", + "location": "imgui_internal:732", "ov_cimguiname": "ImGuiTextIndex_append", "ret": "void", "signature": "(const char*,int,int)", @@ -9928,7 +9928,7 @@ "cimguiname": "ImGuiTextIndex_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:724", + "location": "imgui_internal:728", "ov_cimguiname": "ImGuiTextIndex_clear", "ret": "void", "signature": "()", @@ -9957,7 +9957,7 @@ "cimguiname": "ImGuiTextIndex_get_line_begin", "defaults": {}, "funcname": "get_line_begin", - "location": "imgui_internal:726", + "location": "imgui_internal:730", "ov_cimguiname": "ImGuiTextIndex_get_line_begin", "ret": "const char*", "signature": "(const char*,int)", @@ -9986,7 +9986,7 @@ "cimguiname": "ImGuiTextIndex_get_line_end", "defaults": {}, "funcname": "get_line_end", - "location": "imgui_internal:727", + "location": "imgui_internal:731", "ov_cimguiname": "ImGuiTextIndex_get_line_end", "ret": "const char*", "signature": "(const char*,int)", @@ -10007,7 +10007,7 @@ "cimguiname": "ImGuiTextIndex_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:725", + "location": "imgui_internal:729", "ov_cimguiname": "ImGuiTextIndex_size", "ret": "int", "signature": "()", @@ -10024,7 +10024,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2543", + "location": "imgui:2548", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -10047,7 +10047,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2544", + "location": "imgui:2549", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -10066,7 +10066,7 @@ "cimguiname": "ImGuiTextRange_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2543", + "location": "imgui:2548", "ov_cimguiname": "ImGuiTextRange_destroy", "ret": "void", "signature": "(ImGuiTextRange*)", @@ -10087,7 +10087,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2545", + "location": "imgui:2550", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -10116,7 +10116,7 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:2546", + "location": "imgui:2551", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -10137,7 +10137,7 @@ "cimguiname": "ImGuiTypingSelectState_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1662", + "location": "imgui_internal:1666", "ov_cimguiname": "ImGuiTypingSelectState_Clear", "ret": "void", "signature": "()", @@ -10154,7 +10154,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTypingSelectState", - "location": "imgui_internal:1661", + "location": "imgui_internal:1665", "ov_cimguiname": "ImGuiTypingSelectState_ImGuiTypingSelectState", "signature": "()", "stname": "ImGuiTypingSelectState" @@ -10173,7 +10173,7 @@ "cimguiname": "ImGuiTypingSelectState_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1661", + "location": "imgui_internal:1665", "ov_cimguiname": "ImGuiTypingSelectState_destroy", "ret": "void", "signature": "(ImGuiTypingSelectState*)", @@ -10202,7 +10202,7 @@ "cimguiname": "ImGuiViewportP_CalcWorkRectPos", "defaults": {}, "funcname": "CalcWorkRectPos", - "location": "imgui_internal:1830", + "location": "imgui_internal:1834", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", "ret": "void", @@ -10236,7 +10236,7 @@ "cimguiname": "ImGuiViewportP_CalcWorkRectSize", "defaults": {}, "funcname": "CalcWorkRectSize", - "location": "imgui_internal:1831", + "location": "imgui_internal:1835", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", "ret": "void", @@ -10262,7 +10262,7 @@ "cimguiname": "ImGuiViewportP_GetBuildWorkRect", "defaults": {}, "funcname": "GetBuildWorkRect", - "location": "imgui_internal:1837", + "location": "imgui_internal:1841", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", "ret": "void", @@ -10288,7 +10288,7 @@ "cimguiname": "ImGuiViewportP_GetMainRect", "defaults": {}, "funcname": "GetMainRect", - "location": "imgui_internal:1835", + "location": "imgui_internal:1839", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "void", @@ -10314,7 +10314,7 @@ "cimguiname": "ImGuiViewportP_GetWorkRect", "defaults": {}, "funcname": "GetWorkRect", - "location": "imgui_internal:1836", + "location": "imgui_internal:1840", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "void", @@ -10332,7 +10332,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewportP", - "location": "imgui_internal:1826", + "location": "imgui_internal:1830", "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -10352,7 +10352,7 @@ "cimguiname": "ImGuiViewportP_UpdateWorkRect", "defaults": {}, "funcname": "UpdateWorkRect", - "location": "imgui_internal:1832", + "location": "imgui_internal:1836", "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -10372,7 +10372,7 @@ "cimguiname": "ImGuiViewportP_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1827", + "location": "imgui_internal:1831", "ov_cimguiname": "ImGuiViewportP_destroy", "realdestructor": true, "ret": "void", @@ -10398,7 +10398,7 @@ "cimguiname": "ImGuiViewport_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui:3510", + "location": "imgui:3520", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "void", @@ -10424,7 +10424,7 @@ "cimguiname": "ImGuiViewport_GetWorkCenter", "defaults": {}, "funcname": "GetWorkCenter", - "location": "imgui:3511", + "location": "imgui:3521", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "void", @@ -10442,7 +10442,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", - "location": "imgui:3507", + "location": "imgui:3517", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -10461,7 +10461,7 @@ "cimguiname": "ImGuiViewport_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3507", + "location": "imgui:3517", "ov_cimguiname": "ImGuiViewport_destroy", "ret": "void", "signature": "(ImGuiViewport*)", @@ -10482,7 +10482,7 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", - "location": "imgui_internal:1858", + "location": "imgui_internal:1862", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -10499,7 +10499,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", - "location": "imgui_internal:1857", + "location": "imgui_internal:1861", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -10518,7 +10518,7 @@ "cimguiname": "ImGuiWindowSettings_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1857", + "location": "imgui_internal:1861", "ov_cimguiname": "ImGuiWindowSettings_destroy", "ret": "void", "signature": "(ImGuiWindowSettings*)", @@ -10539,7 +10539,7 @@ "cimguiname": "ImGuiWindow_CalcFontSize", "defaults": {}, "funcname": "CalcFontSize", - "location": "imgui_internal:2564", + "location": "imgui_internal:2570", "ov_cimguiname": "ImGuiWindow_CalcFontSize", "ret": "float", "signature": "()const", @@ -10570,7 +10570,7 @@ "str_end": "NULL" }, "funcname": "GetID", - "location": "imgui_internal:2556", + "location": "imgui_internal:2562", "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -10593,7 +10593,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2557", + "location": "imgui_internal:2563", "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -10616,7 +10616,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2558", + "location": "imgui_internal:2564", "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", @@ -10641,7 +10641,7 @@ "cimguiname": "ImGuiWindow_GetIDFromPos", "defaults": {}, "funcname": "GetIDFromPos", - "location": "imgui_internal:2559", + "location": "imgui_internal:2565", "ov_cimguiname": "ImGuiWindow_GetIDFromPos", "ret": "ImGuiID", "signature": "(const ImVec2)", @@ -10666,7 +10666,7 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", - "location": "imgui_internal:2560", + "location": "imgui_internal:2566", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -10692,7 +10692,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", - "location": "imgui_internal:2552", + "location": "imgui_internal:2558", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -10716,7 +10716,7 @@ "cimguiname": "ImGuiWindow_MenuBarRect", "defaults": {}, "funcname": "MenuBarRect", - "location": "imgui_internal:2566", + "location": "imgui_internal:2572", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "void", @@ -10742,7 +10742,7 @@ "cimguiname": "ImGuiWindow_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:2563", + "location": "imgui_internal:2569", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "void", @@ -10768,7 +10768,7 @@ "cimguiname": "ImGuiWindow_TitleBarRect", "defaults": {}, "funcname": "TitleBarRect", - "location": "imgui_internal:2565", + "location": "imgui_internal:2571", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "void", @@ -10789,7 +10789,7 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2554", + "location": "imgui_internal:2560", "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -10811,7 +10811,7 @@ "cimguiname": "ImPool_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:681", + "location": "imgui_internal:685", "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -10833,7 +10833,7 @@ "cimguiname": "ImPool_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:680", + "location": "imgui_internal:684", "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -10859,7 +10859,7 @@ "cimguiname": "ImPool_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:679", + "location": "imgui_internal:683", "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -10881,7 +10881,7 @@ "cimguiname": "ImPool_GetAliveCount", "defaults": {}, "funcname": "GetAliveCount", - "location": "imgui_internal:688", + "location": "imgui_internal:692", "ov_cimguiname": "ImPool_GetAliveCount", "ret": "int", "signature": "()const", @@ -10903,7 +10903,7 @@ "cimguiname": "ImPool_GetBufSize", "defaults": {}, "funcname": "GetBufSize", - "location": "imgui_internal:689", + "location": "imgui_internal:693", "ov_cimguiname": "ImPool_GetBufSize", "ret": "int", "signature": "()const", @@ -10929,7 +10929,7 @@ "cimguiname": "ImPool_GetByIndex", "defaults": {}, "funcname": "GetByIndex", - "location": "imgui_internal:676", + "location": "imgui_internal:680", "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10955,7 +10955,7 @@ "cimguiname": "ImPool_GetByKey", "defaults": {}, "funcname": "GetByKey", - "location": "imgui_internal:675", + "location": "imgui_internal:679", "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -10981,7 +10981,7 @@ "cimguiname": "ImPool_GetIndex", "defaults": {}, "funcname": "GetIndex", - "location": "imgui_internal:677", + "location": "imgui_internal:681", "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -11003,7 +11003,7 @@ "cimguiname": "ImPool_GetMapSize", "defaults": {}, "funcname": "GetMapSize", - "location": "imgui_internal:690", + "location": "imgui_internal:694", "ov_cimguiname": "ImPool_GetMapSize", "ret": "int", "signature": "()const", @@ -11029,7 +11029,7 @@ "cimguiname": "ImPool_GetOrAddByKey", "defaults": {}, "funcname": "GetOrAddByKey", - "location": "imgui_internal:678", + "location": "imgui_internal:682", "ov_cimguiname": "ImPool_GetOrAddByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -11047,7 +11047,7 @@ "constructor": true, "defaults": {}, "funcname": "ImPool", - "location": "imgui_internal:673", + "location": "imgui_internal:677", "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -11076,7 +11076,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:682", + "location": "imgui_internal:686", "ov_cimguiname": "ImPool_Remove_TPtr", "ret": "void", "signature": "(ImGuiID,const T*)", @@ -11104,7 +11104,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:683", + "location": "imgui_internal:687", "ov_cimguiname": "ImPool_Remove_PoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", @@ -11130,7 +11130,7 @@ "cimguiname": "ImPool_Reserve", "defaults": {}, "funcname": "Reserve", - "location": "imgui_internal:684", + "location": "imgui_internal:688", "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -11156,7 +11156,7 @@ "cimguiname": "ImPool_TryGetMapData", "defaults": {}, "funcname": "TryGetMapData", - "location": "imgui_internal:691", + "location": "imgui_internal:695", "ov_cimguiname": "ImPool_TryGetMapData", "ret": "T*", "signature": "(ImPoolIdx)", @@ -11177,7 +11177,7 @@ "cimguiname": "ImPool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:674", + "location": "imgui_internal:678", "ov_cimguiname": "ImPool_destroy", "realdestructor": true, "ret": "void", @@ -11204,7 +11204,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:544", + "location": "imgui_internal:548", "ov_cimguiname": "ImRect_Add_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -11227,7 +11227,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:545", + "location": "imgui_internal:549", "ov_cimguiname": "ImRect_Add_Rect", "ret": "void", "signature": "(const ImRect)", @@ -11252,7 +11252,7 @@ "cimguiname": "ImRect_ClipWith", "defaults": {}, "funcname": "ClipWith", - "location": "imgui_internal:551", + "location": "imgui_internal:555", "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -11277,7 +11277,7 @@ "cimguiname": "ImRect_ClipWithFull", "defaults": {}, "funcname": "ClipWithFull", - "location": "imgui_internal:552", + "location": "imgui_internal:556", "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -11302,7 +11302,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:540", + "location": "imgui_internal:544", "ov_cimguiname": "ImRect_Contains_Vec2", "ret": "bool", "signature": "(const ImVec2)const", @@ -11325,7 +11325,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:541", + "location": "imgui_internal:545", "ov_cimguiname": "ImRect_Contains_Rect", "ret": "bool", "signature": "(const ImRect)const", @@ -11354,7 +11354,7 @@ "cimguiname": "ImRect_ContainsWithPad", "defaults": {}, "funcname": "ContainsWithPad", - "location": "imgui_internal:542", + "location": "imgui_internal:546", "ov_cimguiname": "ImRect_ContainsWithPad", "ret": "bool", "signature": "(const ImVec2,const ImVec2)const", @@ -11379,7 +11379,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:546", + "location": "imgui_internal:550", "ov_cimguiname": "ImRect_Expand_Float", "ret": "void", "signature": "(const float)", @@ -11402,7 +11402,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:547", + "location": "imgui_internal:551", "ov_cimguiname": "ImRect_Expand_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -11423,7 +11423,7 @@ "cimguiname": "ImRect_Floor", "defaults": {}, "funcname": "Floor", - "location": "imgui_internal:553", + "location": "imgui_internal:557", "ov_cimguiname": "ImRect_Floor", "ret": "void", "signature": "()", @@ -11444,7 +11444,7 @@ "cimguiname": "ImRect_GetArea", "defaults": {}, "funcname": "GetArea", - "location": "imgui_internal:535", + "location": "imgui_internal:539", "ov_cimguiname": "ImRect_GetArea", "ret": "float", "signature": "()const", @@ -11469,7 +11469,7 @@ "cimguiname": "ImRect_GetBL", "defaults": {}, "funcname": "GetBL", - "location": "imgui_internal:538", + "location": "imgui_internal:542", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "void", @@ -11495,7 +11495,7 @@ "cimguiname": "ImRect_GetBR", "defaults": {}, "funcname": "GetBR", - "location": "imgui_internal:539", + "location": "imgui_internal:543", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "void", @@ -11521,7 +11521,7 @@ "cimguiname": "ImRect_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui_internal:531", + "location": "imgui_internal:535", "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "void", @@ -11543,7 +11543,7 @@ "cimguiname": "ImRect_GetHeight", "defaults": {}, "funcname": "GetHeight", - "location": "imgui_internal:534", + "location": "imgui_internal:538", "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -11568,7 +11568,7 @@ "cimguiname": "ImRect_GetSize", "defaults": {}, "funcname": "GetSize", - "location": "imgui_internal:532", + "location": "imgui_internal:536", "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "void", @@ -11594,7 +11594,7 @@ "cimguiname": "ImRect_GetTL", "defaults": {}, "funcname": "GetTL", - "location": "imgui_internal:536", + "location": "imgui_internal:540", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "void", @@ -11620,7 +11620,7 @@ "cimguiname": "ImRect_GetTR", "defaults": {}, "funcname": "GetTR", - "location": "imgui_internal:537", + "location": "imgui_internal:541", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "void", @@ -11642,7 +11642,7 @@ "cimguiname": "ImRect_GetWidth", "defaults": {}, "funcname": "GetWidth", - "location": "imgui_internal:533", + "location": "imgui_internal:537", "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -11659,7 +11659,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:526", + "location": "imgui_internal:530", "ov_cimguiname": "ImRect_ImRect_Nil", "signature": "()", "stname": "ImRect" @@ -11682,7 +11682,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:527", + "location": "imgui_internal:531", "ov_cimguiname": "ImRect_ImRect_Vec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" @@ -11701,7 +11701,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:528", + "location": "imgui_internal:532", "ov_cimguiname": "ImRect_ImRect_Vec4", "signature": "(const ImVec4)", "stname": "ImRect" @@ -11732,7 +11732,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:529", + "location": "imgui_internal:533", "ov_cimguiname": "ImRect_ImRect_Float", "signature": "(float,float,float,float)", "stname": "ImRect" @@ -11752,7 +11752,7 @@ "cimguiname": "ImRect_IsInverted", "defaults": {}, "funcname": "IsInverted", - "location": "imgui_internal:554", + "location": "imgui_internal:558", "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -11777,7 +11777,7 @@ "cimguiname": "ImRect_Overlaps", "defaults": {}, "funcname": "Overlaps", - "location": "imgui_internal:543", + "location": "imgui_internal:547", "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -11802,7 +11802,7 @@ "cimguiname": "ImRect_ToVec4", "defaults": {}, "funcname": "ToVec4", - "location": "imgui_internal:555", + "location": "imgui_internal:559", "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "void", @@ -11828,7 +11828,7 @@ "cimguiname": "ImRect_Translate", "defaults": {}, "funcname": "Translate", - "location": "imgui_internal:548", + "location": "imgui_internal:552", "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -11853,7 +11853,7 @@ "cimguiname": "ImRect_TranslateX", "defaults": {}, "funcname": "TranslateX", - "location": "imgui_internal:549", + "location": "imgui_internal:553", "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -11878,7 +11878,7 @@ "cimguiname": "ImRect_TranslateY", "defaults": {}, "funcname": "TranslateY", - "location": "imgui_internal:550", + "location": "imgui_internal:554", "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -11898,7 +11898,7 @@ "cimguiname": "ImRect_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:526", + "location": "imgui_internal:530", "ov_cimguiname": "ImRect_destroy", "ret": "void", "signature": "(ImRect*)", @@ -11919,7 +11919,7 @@ "cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "defaults": {}, "funcname": "GetArenaSizeInBytes", - "location": "imgui_internal:653", + "location": "imgui_internal:657", "ov_cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "ret": "int", "signature": "()", @@ -11945,7 +11945,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "defaults": {}, "funcname": "GetSpanPtrBegin", - "location": "imgui_internal:655", + "location": "imgui_internal:659", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "ret": "void*", "signature": "(int)", @@ -11971,7 +11971,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "defaults": {}, "funcname": "GetSpanPtrEnd", - "location": "imgui_internal:656", + "location": "imgui_internal:660", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "ret": "void*", "signature": "(int)", @@ -11989,7 +11989,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpanAllocator", - "location": "imgui_internal:651", + "location": "imgui_internal:655", "ov_cimguiname": "ImSpanAllocator_ImSpanAllocator", "signature": "()", "stname": "ImSpanAllocator", @@ -12024,7 +12024,7 @@ "a": "4" }, "funcname": "Reserve", - "location": "imgui_internal:652", + "location": "imgui_internal:656", "ov_cimguiname": "ImSpanAllocator_Reserve", "ret": "void", "signature": "(int,size_t,int)", @@ -12050,7 +12050,7 @@ "cimguiname": "ImSpanAllocator_SetArenaBasePtr", "defaults": {}, "funcname": "SetArenaBasePtr", - "location": "imgui_internal:654", + "location": "imgui_internal:658", "ov_cimguiname": "ImSpanAllocator_SetArenaBasePtr", "ret": "void", "signature": "(void*)", @@ -12071,7 +12071,7 @@ "cimguiname": "ImSpanAllocator_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:651", + "location": "imgui_internal:655", "ov_cimguiname": "ImSpanAllocator_destroy", "ret": "void", "signature": "(ImSpanAllocator*)", @@ -12089,7 +12089,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:619", + "location": "imgui_internal:623", "ov_cimguiname": "ImSpan_ImSpan_Nil", "signature": "()", "stname": "ImSpan", @@ -12113,7 +12113,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:620", + "location": "imgui_internal:624", "ov_cimguiname": "ImSpan_ImSpan_TPtrInt", "signature": "(T*,int)", "stname": "ImSpan", @@ -12137,7 +12137,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:621", + "location": "imgui_internal:625", "ov_cimguiname": "ImSpan_ImSpan_TPtrTPtr", "signature": "(T*,T*)", "stname": "ImSpan", @@ -12158,7 +12158,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:630", + "location": "imgui_internal:634", "ov_cimguiname": "ImSpan_begin_Nil", "ret": "T*", "signature": "()", @@ -12178,7 +12178,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:631", + "location": "imgui_internal:635", "ov_cimguiname": "ImSpan_begin__const", "ret": "const T*", "signature": "()const", @@ -12199,7 +12199,7 @@ "cimguiname": "ImSpan_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:619", + "location": "imgui_internal:623", "ov_cimguiname": "ImSpan_destroy", "ret": "void", "signature": "(ImSpan*)", @@ -12221,7 +12221,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:632", + "location": "imgui_internal:636", "ov_cimguiname": "ImSpan_end_Nil", "ret": "T*", "signature": "()", @@ -12241,7 +12241,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:633", + "location": "imgui_internal:637", "ov_cimguiname": "ImSpan_end__const", "ret": "const T*", "signature": "()const", @@ -12267,7 +12267,7 @@ "cimguiname": "ImSpan_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui_internal:636", + "location": "imgui_internal:640", "ov_cimguiname": "ImSpan_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -12297,7 +12297,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:623", + "location": "imgui_internal:627", "ov_cimguiname": "ImSpan_set_Int", "ret": "void", "signature": "(T*,int)", @@ -12325,7 +12325,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:624", + "location": "imgui_internal:628", "ov_cimguiname": "ImSpan_set_TPtr", "ret": "void", "signature": "(T*,T*)", @@ -12347,7 +12347,7 @@ "cimguiname": "ImSpan_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:625", + "location": "imgui_internal:629", "ov_cimguiname": "ImSpan_size", "ret": "int", "signature": "()const", @@ -12369,7 +12369,7 @@ "cimguiname": "ImSpan_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui_internal:626", + "location": "imgui_internal:630", "ov_cimguiname": "ImSpan_size_in_bytes", "ret": "int", "signature": "()const", @@ -12387,7 +12387,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:506", + "location": "imgui_internal:510", "ov_cimguiname": "ImVec1_ImVec1_Nil", "signature": "()", "stname": "ImVec1" @@ -12406,7 +12406,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:507", + "location": "imgui_internal:511", "ov_cimguiname": "ImVec1_ImVec1_Float", "signature": "(float)", "stname": "ImVec1" @@ -12425,7 +12425,7 @@ "cimguiname": "ImVec1_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:506", + "location": "imgui_internal:510", "ov_cimguiname": "ImVec1_destroy", "ret": "void", "signature": "(ImVec1*)", @@ -12501,7 +12501,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:514", + "location": "imgui_internal:518", "ov_cimguiname": "ImVec2ih_ImVec2ih_Nil", "signature": "()", "stname": "ImVec2ih" @@ -12524,7 +12524,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:515", + "location": "imgui_internal:519", "ov_cimguiname": "ImVec2ih_ImVec2ih_short", "signature": "(short,short)", "stname": "ImVec2ih" @@ -12543,7 +12543,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:516", + "location": "imgui_internal:520", "ov_cimguiname": "ImVec2ih_ImVec2ih_Vec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" @@ -12562,7 +12562,7 @@ "cimguiname": "ImVec2ih_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:514", + "location": "imgui_internal:518", "ov_cimguiname": "ImVec2ih_destroy", "ret": "void", "signature": "(ImVec2ih*)", @@ -12646,7 +12646,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:2059", + "location": "imgui:2063", "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -12666,7 +12666,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:2060", + "location": "imgui:2064", "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -12691,7 +12691,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:2086", + "location": "imgui:2090", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -12713,7 +12713,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:2082", + "location": "imgui:2086", "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -12734,7 +12734,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:2083", + "location": "imgui:2087", "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -12757,7 +12757,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2076", + "location": "imgui:2080", "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -12777,7 +12777,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2077", + "location": "imgui:2081", "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -12799,7 +12799,7 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:2072", + "location": "imgui:2076", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -12821,7 +12821,7 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2064", + "location": "imgui:2068", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -12843,7 +12843,7 @@ "cimguiname": "ImVector_clear_delete", "defaults": {}, "funcname": "clear_delete", - "location": "imgui:2065", + "location": "imgui:2069", "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -12865,7 +12865,7 @@ "cimguiname": "ImVector_clear_destruct", "defaults": {}, "funcname": "clear_destruct", - "location": "imgui:2066", + "location": "imgui:2070", "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -12891,7 +12891,7 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:2101", + "location": "imgui:2105", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -12912,7 +12912,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2062", + "location": "imgui:2066", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -12935,7 +12935,7 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2068", + "location": "imgui:2072", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -12957,7 +12957,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:2078", + "location": "imgui:2082", "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -12977,7 +12977,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:2079", + "location": "imgui:2083", "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -13003,7 +13003,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:2097", + "location": "imgui:2101", "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -13031,7 +13031,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:2098", + "location": "imgui:2102", "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -13057,7 +13057,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:2099", + "location": "imgui:2103", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -13083,7 +13083,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:2102", + "location": "imgui:2106", "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -13107,7 +13107,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:2103", + "location": "imgui:2107", "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -13133,7 +13133,7 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:2105", + "location": "imgui:2109", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -13159,7 +13159,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:2106", + "location": "imgui:2110", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -13185,7 +13185,7 @@ "cimguiname": "ImVector_find_index", "defaults": {}, "funcname": "find_index", - "location": "imgui:2104", + "location": "imgui:2108", "ov_cimguiname": "ImVector_find_index", "ret": "int", "signature": "(const T)const", @@ -13207,7 +13207,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:2080", + "location": "imgui:2084", "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -13228,7 +13228,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:2081", + "location": "imgui:2085", "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -13255,7 +13255,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:2107", + "location": "imgui:2111", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -13285,7 +13285,7 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:2100", + "location": "imgui:2104", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -13307,7 +13307,7 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", - "location": "imgui:2071", + "location": "imgui:2075", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -13329,7 +13329,7 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:2095", + "location": "imgui:2099", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -13355,7 +13355,7 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:2094", + "location": "imgui:2098", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -13381,7 +13381,7 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:2096", + "location": "imgui:2100", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -13407,7 +13407,7 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2090", + "location": "imgui:2094", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -13433,7 +13433,7 @@ "cimguiname": "ImVector_reserve_discard", "defaults": {}, "funcname": "reserve_discard", - "location": "imgui:2091", + "location": "imgui:2095", "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -13459,7 +13459,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:2087", + "location": "imgui:2091", "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -13487,7 +13487,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:2088", + "location": "imgui:2092", "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -13513,7 +13513,7 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:2089", + "location": "imgui:2093", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -13535,7 +13535,7 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:2069", + "location": "imgui:2073", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -13557,7 +13557,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:2070", + "location": "imgui:2074", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -13584,7 +13584,7 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:2084", + "location": "imgui:2088", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", @@ -13612,7 +13612,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui:886", + "location": "imgui:887", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -13634,7 +13634,7 @@ "cimguiname": "igActivateItemByID", "defaults": {}, "funcname": "ActivateItemByID", - "location": "imgui_internal:3142", + "location": "imgui_internal:3148", "namespace": "ImGui", "ov_cimguiname": "igActivateItemByID", "ret": "void", @@ -13660,7 +13660,7 @@ "cimguiname": "igAddContextHook", "defaults": {}, "funcname": "AddContextHook", - "location": "imgui_internal:3009", + "location": "imgui_internal:3015", "namespace": "ImGui", "ov_cimguiname": "igAddContextHook", "ret": "ImGuiID", @@ -13690,7 +13690,7 @@ "cimguiname": "igAddDrawListToDrawDataEx", "defaults": {}, "funcname": "AddDrawListToDrawDataEx", - "location": "imgui_internal:2994", + "location": "imgui_internal:3000", "namespace": "ImGui", "ov_cimguiname": "igAddDrawListToDrawDataEx", "ret": "void", @@ -13712,7 +13712,7 @@ "cimguiname": "igAddSettingsHandler", "defaults": {}, "funcname": "AddSettingsHandler", - "location": "imgui_internal:3020", + "location": "imgui_internal:3026", "namespace": "ImGui", "ov_cimguiname": "igAddSettingsHandler", "ret": "void", @@ -13791,7 +13791,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "imgui_internal:3386", + "location": "imgui_internal:3392", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -13858,7 +13858,7 @@ "cimguiname": "igBeginBoxSelect", "defaults": {}, "funcname": "BeginBoxSelect", - "location": "imgui_internal:3257", + "location": "imgui_internal:3263", "namespace": "ImGui", "ov_cimguiname": "igBeginBoxSelect", "ret": "bool", @@ -13970,7 +13970,7 @@ "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", - "location": "imgui_internal:3089", + "location": "imgui_internal:3095", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", @@ -14002,7 +14002,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "imgui_internal:3270", + "location": "imgui_internal:3276", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -14034,7 +14034,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui:573", + "location": "imgui:574", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -14064,7 +14064,7 @@ "cimguiname": "igBeginComboPopup", "defaults": {}, "funcname": "BeginComboPopup", - "location": "imgui_internal:3115", + "location": "imgui_internal:3121", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPopup", "ret": "bool", @@ -14081,7 +14081,7 @@ "cimguiname": "igBeginComboPreview", "defaults": {}, "funcname": "BeginComboPreview", - "location": "imgui_internal:3116", + "location": "imgui_internal:3122", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPreview", "ret": "bool", @@ -14105,7 +14105,7 @@ "disabled": "true" }, "funcname": "BeginDisabled", - "location": "imgui:895", + "location": "imgui:896", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabled", "ret": "void", @@ -14122,7 +14122,7 @@ "cimguiname": "igBeginDisabledOverrideReenable", "defaults": {}, "funcname": "BeginDisabledOverrideReenable", - "location": "imgui_internal:3079", + "location": "imgui_internal:3085", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabledOverrideReenable", "ret": "void", @@ -14146,7 +14146,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui:882", + "location": "imgui:883", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -14163,7 +14163,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui:885", + "location": "imgui:886", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -14189,7 +14189,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", - "location": "imgui_internal:3243", + "location": "imgui_internal:3249", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -14206,7 +14206,7 @@ "cimguiname": "igBeginErrorTooltip", "defaults": {}, "funcname": "BeginErrorTooltip", - "location": "imgui_internal:3469", + "location": "imgui_internal:3475", "namespace": "ImGui", "ov_cimguiname": "igBeginErrorTooltip", "ret": "bool", @@ -14240,7 +14240,7 @@ "cimguiname": "igBeginItemTooltip", "defaults": {}, "funcname": "BeginItemTooltip", - "location": "imgui:744", + "location": "imgui:745", "namespace": "ImGui", "ov_cimguiname": "igBeginItemTooltip", "ret": "bool", @@ -14268,7 +14268,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginListBox", - "location": "imgui:698", + "location": "imgui:699", "namespace": "ImGui", "ov_cimguiname": "igBeginListBox", "ret": "bool", @@ -14285,7 +14285,7 @@ "cimguiname": "igBeginMainMenuBar", "defaults": {}, "funcname": "BeginMainMenuBar", - "location": "imgui:724", + "location": "imgui:725", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -14313,7 +14313,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui:726", + "location": "imgui:727", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -14330,7 +14330,7 @@ "cimguiname": "igBeginMenuBar", "defaults": {}, "funcname": "BeginMenuBar", - "location": "imgui:722", + "location": "imgui:723", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -14362,7 +14362,7 @@ "enabled": "true" }, "funcname": "BeginMenuEx", - "location": "imgui_internal:3111", + "location": "imgui_internal:3117", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuEx", "ret": "bool", @@ -14395,7 +14395,7 @@ "selection_size": "-1" }, "funcname": "BeginMultiSelect", - "location": "imgui:687", + "location": "imgui:688", "namespace": "ImGui", "ov_cimguiname": "igBeginMultiSelect", "ret": "ImGuiMultiSelectIO*", @@ -14423,7 +14423,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui:758", + "location": "imgui:759", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -14452,7 +14452,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui:780", + "location": "imgui:781", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -14481,7 +14481,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui:782", + "location": "imgui:783", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -14510,7 +14510,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui:781", + "location": "imgui:782", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -14536,7 +14536,7 @@ "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", - "location": "imgui_internal:3092", + "location": "imgui_internal:3098", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -14569,7 +14569,7 @@ "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui:759", + "location": "imgui:760", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -14597,7 +14597,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui:860", + "location": "imgui:861", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -14627,7 +14627,7 @@ "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", - "location": "imgui_internal:3338", + "location": "imgui_internal:3344", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", @@ -14660,7 +14660,7 @@ "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui:862", + "location": "imgui:863", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -14702,7 +14702,7 @@ "outer_size": "ImVec2(0.0f,0.0f)" }, "funcname": "BeginTable", - "location": "imgui:811", + "location": "imgui:812", "namespace": "ImGui", "ov_cimguiname": "igBeginTable", "ret": "bool", @@ -14748,7 +14748,7 @@ "outer_size": "ImVec2(0,0)" }, "funcname": "BeginTableEx", - "location": "imgui_internal:3294", + "location": "imgui_internal:3300", "namespace": "ImGui", "ov_cimguiname": "igBeginTableEx", "ret": "bool", @@ -14765,7 +14765,7 @@ "cimguiname": "igBeginTooltip", "defaults": {}, "funcname": "BeginTooltip", - "location": "imgui:735", + "location": "imgui:736", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", "ret": "bool", @@ -14791,7 +14791,7 @@ "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", - "location": "imgui_internal:3106", + "location": "imgui_internal:3112", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", "ret": "bool", @@ -14808,7 +14808,7 @@ "cimguiname": "igBeginTooltipHidden", "defaults": {}, "funcname": "BeginTooltipHidden", - "location": "imgui_internal:3107", + "location": "imgui_internal:3113", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipHidden", "ret": "bool", @@ -14846,7 +14846,7 @@ "cimguiname": "igBeginViewportSideBar", "defaults": {}, "funcname": "BeginViewportSideBar", - "location": "imgui_internal:3110", + "location": "imgui_internal:3116", "namespace": "ImGui", "ov_cimguiname": "igBeginViewportSideBar", "ret": "bool", @@ -14868,7 +14868,7 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", - "location": "imgui_internal:2980", + "location": "imgui_internal:2986", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -14894,7 +14894,7 @@ "cimguiname": "igBringWindowToDisplayBehind", "defaults": {}, "funcname": "BringWindowToDisplayBehind", - "location": "imgui_internal:2981", + "location": "imgui_internal:2987", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBehind", "ret": "void", @@ -14916,7 +14916,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", - "location": "imgui_internal:2979", + "location": "imgui_internal:2985", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -14938,7 +14938,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", - "location": "imgui_internal:2978", + "location": "imgui_internal:2984", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -15076,7 +15076,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "imgui_internal:3404", + "location": "imgui_internal:3410", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -15109,7 +15109,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "imgui_internal:3385", + "location": "imgui_internal:3391", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -15143,7 +15143,7 @@ "cimguiname": "igCalcItemSize", "defaults": {}, "funcname": "CalcItemSize", - "location": "imgui_internal:3072", + "location": "imgui_internal:3078", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -15203,7 +15203,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:955", + "location": "imgui:956", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -15238,7 +15238,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", - "location": "imgui_internal:3171", + "location": "imgui_internal:3177", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -15264,7 +15264,7 @@ "cimguiname": "igCalcWindowNextAutoFitSize", "defaults": {}, "funcname": "CalcWindowNextAutoFitSize", - "location": "imgui_internal:2959", + "location": "imgui_internal:2965", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowNextAutoFitSize", @@ -15291,7 +15291,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", - "location": "imgui_internal:3073", + "location": "imgui_internal:3079", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -15317,7 +15317,7 @@ "cimguiname": "igCallContextHooks", "defaults": {}, "funcname": "CallContextHooks", - "location": "imgui_internal:3011", + "location": "imgui_internal:3017", "namespace": "ImGui", "ov_cimguiname": "igCallContextHooks", "ret": "void", @@ -15429,7 +15429,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3390", + "location": "imgui_internal:3396", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_S64Ptr", "ret": "bool", @@ -15457,7 +15457,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3391", + "location": "imgui_internal:3397", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_U64Ptr", "ret": "bool", @@ -15474,7 +15474,7 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", - "location": "imgui_internal:3055", + "location": "imgui_internal:3061", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -15491,7 +15491,7 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", - "location": "imgui_internal:3244", + "location": "imgui_internal:3250", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -15508,7 +15508,7 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", - "location": "imgui_internal:3019", + "location": "imgui_internal:3025", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -15530,7 +15530,7 @@ "cimguiname": "igClearWindowSettings", "defaults": {}, "funcname": "ClearWindowSettings", - "location": "imgui_internal:3028", + "location": "imgui_internal:3034", "namespace": "ImGui", "ov_cimguiname": "igClearWindowSettings", "ret": "void", @@ -15556,7 +15556,7 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", - "location": "imgui_internal:3394", + "location": "imgui_internal:3400", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -15573,7 +15573,7 @@ "cimguiname": "igCloseCurrentPopup", "defaults": {}, "funcname": "CloseCurrentPopup", - "location": "imgui:773", + "location": "imgui:774", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -15599,7 +15599,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", - "location": "imgui_internal:3094", + "location": "imgui_internal:3100", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -15616,7 +15616,7 @@ "cimguiname": "igClosePopupsExceptModals", "defaults": {}, "funcname": "ClosePopupsExceptModals", - "location": "imgui_internal:3096", + "location": "imgui_internal:3102", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsExceptModals", "ret": "void", @@ -15642,7 +15642,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", - "location": "imgui_internal:3095", + "location": "imgui_internal:3101", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -15668,7 +15668,7 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", - "location": "imgui_internal:3395", + "location": "imgui_internal:3401", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -15696,7 +15696,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:669", + "location": "imgui:670", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_TreeNodeFlags", "ret": "bool", @@ -15726,7 +15726,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:670", + "location": "imgui:671", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_BoolPtr", "ret": "bool", @@ -15763,7 +15763,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui:650", + "location": "imgui:651", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -15785,7 +15785,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:959", + "location": "imgui:960", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -15830,7 +15830,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:961", + "location": "imgui:962", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -15875,7 +15875,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:960", + "location": "imgui:961", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -15901,7 +15901,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:958", + "location": "imgui:959", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -15934,7 +15934,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui:646", + "location": "imgui:647", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -15966,7 +15966,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui:647", + "location": "imgui:648", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -15992,7 +15992,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", - "location": "imgui_internal:3446", + "location": "imgui_internal:3452", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -16024,7 +16024,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui:648", + "location": "imgui:649", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -16061,7 +16061,7 @@ "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui:649", + "location": "imgui:650", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -16087,7 +16087,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", - "location": "imgui_internal:3447", + "location": "imgui_internal:3453", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -16117,7 +16117,7 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", - "location": "imgui_internal:3445", + "location": "imgui_internal:3451", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -16151,7 +16151,7 @@ "id": "NULL" }, "funcname": "Columns", - "location": "imgui:849", + "location": "imgui:850", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -16191,7 +16191,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:575", + "location": "imgui:576", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str_arr", "ret": "bool", @@ -16225,7 +16225,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:576", + "location": "imgui:577", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str", "ret": "bool", @@ -16269,7 +16269,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:577", + "location": "imgui:578", "namespace": "ImGui", "ov_cimguiname": "igCombo_FnStrPtr", "ret": "bool", @@ -16291,7 +16291,7 @@ "cimguiname": "igConvertSingleModFlagToKey", "defaults": {}, "funcname": "ConvertSingleModFlagToKey", - "location": "imgui_internal:3155", + "location": "imgui_internal:3161", "namespace": "ImGui", "ov_cimguiname": "igConvertSingleModFlagToKey", "ret": "ImGuiKey", @@ -16337,7 +16337,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", - "location": "imgui_internal:3025", + "location": "imgui_internal:3031", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -16377,7 +16377,7 @@ "p_data_when_empty": "NULL" }, "funcname": "DataTypeApplyFromText", - "location": "imgui_internal:3430", + "location": "imgui_internal:3436", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyFromText", "ret": "bool", @@ -16415,7 +16415,7 @@ "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", - "location": "imgui_internal:3429", + "location": "imgui_internal:3435", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -16449,7 +16449,7 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", - "location": "imgui_internal:3432", + "location": "imgui_internal:3438", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -16479,7 +16479,7 @@ "cimguiname": "igDataTypeCompare", "defaults": {}, "funcname": "DataTypeCompare", - "location": "imgui_internal:3431", + "location": "imgui_internal:3437", "namespace": "ImGui", "ov_cimguiname": "igDataTypeCompare", "ret": "int", @@ -16517,7 +16517,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", - "location": "imgui_internal:3428", + "location": "imgui_internal:3434", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -16539,7 +16539,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", - "location": "imgui_internal:3427", + "location": "imgui_internal:3433", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -16565,7 +16565,7 @@ "cimguiname": "igDataTypeIsZero", "defaults": {}, "funcname": "DataTypeIsZero", - "location": "imgui_internal:3433", + "location": "imgui_internal:3439", "namespace": "ImGui", "ov_cimguiname": "igDataTypeIsZero", "ret": "bool", @@ -16599,7 +16599,7 @@ "cimguiname": "igDebugAllocHook", "defaults": {}, "funcname": "DebugAllocHook", - "location": "imgui_internal:3473", + "location": "imgui_internal:3479", "namespace": "ImGui", "ov_cimguiname": "igDebugAllocHook", "ret": "void", @@ -16625,7 +16625,7 @@ "cimguiname": "igDebugBreakButton", "defaults": {}, "funcname": "DebugBreakButton", - "location": "imgui_internal:3482", + "location": "imgui_internal:3488", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButton", "ret": "bool", @@ -16651,7 +16651,7 @@ "cimguiname": "igDebugBreakButtonTooltip", "defaults": {}, "funcname": "DebugBreakButtonTooltip", - "location": "imgui_internal:3483", + "location": "imgui_internal:3489", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakButtonTooltip", "ret": "void", @@ -16668,7 +16668,7 @@ "cimguiname": "igDebugBreakClearData", "defaults": {}, "funcname": "DebugBreakClearData", - "location": "imgui_internal:3481", + "location": "imgui_internal:3487", "namespace": "ImGui", "ov_cimguiname": "igDebugBreakClearData", "ret": "void", @@ -16714,7 +16714,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:1041", + "location": "imgui:1042", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -16738,7 +16738,7 @@ "col": "4278190335" }, "funcname": "DebugDrawCursorPos", - "location": "imgui_internal:3474", + "location": "imgui_internal:3480", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawCursorPos", "ret": "void", @@ -16762,7 +16762,7 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "imgui_internal:3476", + "location": "imgui_internal:3482", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -16786,7 +16786,7 @@ "col": "4278190335" }, "funcname": "DebugDrawLineExtents", - "location": "imgui_internal:3475", + "location": "imgui_internal:3481", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawLineExtents", "ret": "void", @@ -16808,7 +16808,7 @@ "cimguiname": "igDebugFlashStyleColor", "defaults": {}, "funcname": "DebugFlashStyleColor", - "location": "imgui:1039", + "location": "imgui:1040", "namespace": "ImGui", "ov_cimguiname": "igDebugFlashStyleColor", "ret": "void", @@ -16842,7 +16842,7 @@ "cimguiname": "igDebugHookIdInfo", "defaults": {}, "funcname": "DebugHookIdInfo", - "location": "imgui_internal:3485", + "location": "imgui_internal:3491", "namespace": "ImGui", "ov_cimguiname": "igDebugHookIdInfo", "ret": "void", @@ -16864,7 +16864,7 @@ "cimguiname": "igDebugLocateItem", "defaults": {}, "funcname": "DebugLocateItem", - "location": "imgui_internal:3478", + "location": "imgui_internal:3484", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItem", "ret": "void", @@ -16886,7 +16886,7 @@ "cimguiname": "igDebugLocateItemOnHover", "defaults": {}, "funcname": "DebugLocateItemOnHover", - "location": "imgui_internal:3479", + "location": "imgui_internal:3485", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemOnHover", "ret": "void", @@ -16903,7 +16903,7 @@ "cimguiname": "igDebugLocateItemResolveWithLastItem", "defaults": {}, "funcname": "DebugLocateItemResolveWithLastItem", - "location": "imgui_internal:3480", + "location": "imgui_internal:3486", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemResolveWithLastItem", "ret": "void", @@ -16930,7 +16930,7 @@ "defaults": {}, "funcname": "DebugLog", "isvararg": "...)", - "location": "imgui:1043", + "location": "imgui:1044", "namespace": "ImGui", "ov_cimguiname": "igDebugLog", "ret": "void", @@ -16956,7 +16956,7 @@ "cimguiname": "igDebugLogV", "defaults": {}, "funcname": "DebugLogV", - "location": "imgui:1044", + "location": "imgui:1045", "namespace": "ImGui", "ov_cimguiname": "igDebugLogV", "ret": "void", @@ -16978,7 +16978,7 @@ "cimguiname": "igDebugNodeColumns", "defaults": {}, "funcname": "DebugNodeColumns", - "location": "imgui_internal:3486", + "location": "imgui_internal:3492", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeColumns", "ret": "void", @@ -17016,7 +17016,7 @@ "cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "defaults": {}, "funcname": "DebugNodeDrawCmdShowMeshAndBoundingBox", - "location": "imgui_internal:3488", + "location": "imgui_internal:3494", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "ret": "void", @@ -17050,7 +17050,7 @@ "cimguiname": "igDebugNodeDrawList", "defaults": {}, "funcname": "DebugNodeDrawList", - "location": "imgui_internal:3487", + "location": "imgui_internal:3493", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawList", "ret": "void", @@ -17072,7 +17072,7 @@ "cimguiname": "igDebugNodeFont", "defaults": {}, "funcname": "DebugNodeFont", - "location": "imgui_internal:3489", + "location": "imgui_internal:3495", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFont", "ret": "void", @@ -17098,7 +17098,7 @@ "cimguiname": "igDebugNodeFontGlyph", "defaults": {}, "funcname": "DebugNodeFontGlyph", - "location": "imgui_internal:3490", + "location": "imgui_internal:3496", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFontGlyph", "ret": "void", @@ -17120,7 +17120,7 @@ "cimguiname": "igDebugNodeInputTextState", "defaults": {}, "funcname": "DebugNodeInputTextState", - "location": "imgui_internal:3495", + "location": "imgui_internal:3501", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeInputTextState", "ret": "void", @@ -17142,7 +17142,7 @@ "cimguiname": "igDebugNodeMultiSelectState", "defaults": {}, "funcname": "DebugNodeMultiSelectState", - "location": "imgui_internal:3497", + "location": "imgui_internal:3503", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeMultiSelectState", "ret": "void", @@ -17168,7 +17168,7 @@ "cimguiname": "igDebugNodeStorage", "defaults": {}, "funcname": "DebugNodeStorage", - "location": "imgui_internal:3491", + "location": "imgui_internal:3497", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeStorage", "ret": "void", @@ -17194,7 +17194,7 @@ "cimguiname": "igDebugNodeTabBar", "defaults": {}, "funcname": "DebugNodeTabBar", - "location": "imgui_internal:3492", + "location": "imgui_internal:3498", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTabBar", "ret": "void", @@ -17216,7 +17216,7 @@ "cimguiname": "igDebugNodeTable", "defaults": {}, "funcname": "DebugNodeTable", - "location": "imgui_internal:3493", + "location": "imgui_internal:3499", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTable", "ret": "void", @@ -17238,7 +17238,7 @@ "cimguiname": "igDebugNodeTableSettings", "defaults": {}, "funcname": "DebugNodeTableSettings", - "location": "imgui_internal:3494", + "location": "imgui_internal:3500", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTableSettings", "ret": "void", @@ -17260,7 +17260,7 @@ "cimguiname": "igDebugNodeTypingSelectState", "defaults": {}, "funcname": "DebugNodeTypingSelectState", - "location": "imgui_internal:3496", + "location": "imgui_internal:3502", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTypingSelectState", "ret": "void", @@ -17282,7 +17282,7 @@ "cimguiname": "igDebugNodeViewport", "defaults": {}, "funcname": "DebugNodeViewport", - "location": "imgui_internal:3502", + "location": "imgui_internal:3508", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeViewport", "ret": "void", @@ -17308,7 +17308,7 @@ "cimguiname": "igDebugNodeWindow", "defaults": {}, "funcname": "DebugNodeWindow", - "location": "imgui_internal:3498", + "location": "imgui_internal:3504", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindow", "ret": "void", @@ -17330,7 +17330,7 @@ "cimguiname": "igDebugNodeWindowSettings", "defaults": {}, "funcname": "DebugNodeWindowSettings", - "location": "imgui_internal:3499", + "location": "imgui_internal:3505", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowSettings", "ret": "void", @@ -17356,7 +17356,7 @@ "cimguiname": "igDebugNodeWindowsList", "defaults": {}, "funcname": "DebugNodeWindowsList", - "location": "imgui_internal:3500", + "location": "imgui_internal:3506", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsList", "ret": "void", @@ -17386,7 +17386,7 @@ "cimguiname": "igDebugNodeWindowsListByBeginStackParent", "defaults": {}, "funcname": "DebugNodeWindowsListByBeginStackParent", - "location": "imgui_internal:3501", + "location": "imgui_internal:3507", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsListByBeginStackParent", "ret": "void", @@ -17408,7 +17408,7 @@ "cimguiname": "igDebugRenderKeyboardPreview", "defaults": {}, "funcname": "DebugRenderKeyboardPreview", - "location": "imgui_internal:3503", + "location": "imgui_internal:3509", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderKeyboardPreview", "ret": "void", @@ -17438,7 +17438,7 @@ "cimguiname": "igDebugRenderViewportThumbnail", "defaults": {}, "funcname": "DebugRenderViewportThumbnail", - "location": "imgui_internal:3504", + "location": "imgui_internal:3510", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderViewportThumbnail", "ret": "void", @@ -17455,7 +17455,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", - "location": "imgui:1040", + "location": "imgui:1041", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -17477,7 +17477,7 @@ "cimguiname": "igDebugTextEncoding", "defaults": {}, "funcname": "DebugTextEncoding", - "location": "imgui:1038", + "location": "imgui:1039", "namespace": "ImGui", "ov_cimguiname": "igDebugTextEncoding", "ret": "void", @@ -17503,7 +17503,7 @@ "cimguiname": "igDebugTextUnformattedWithLocateItem", "defaults": {}, "funcname": "DebugTextUnformattedWithLocateItem", - "location": "imgui_internal:3477", + "location": "imgui_internal:3483", "namespace": "ImGui", "ov_cimguiname": "igDebugTextUnformattedWithLocateItem", "ret": "void", @@ -17577,7 +17577,7 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", - "location": "imgui_internal:3405", + "location": "imgui_internal:3411", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -17629,7 +17629,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui:591", + "location": "imgui:592", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -17681,7 +17681,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui:592", + "location": "imgui:593", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -17733,7 +17733,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui:593", + "location": "imgui:594", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -17785,7 +17785,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui:594", + "location": "imgui:595", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -17846,7 +17846,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui:595", + "location": "imgui:596", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -17898,7 +17898,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui:596", + "location": "imgui:597", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -17950,7 +17950,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui:597", + "location": "imgui:598", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -18002,7 +18002,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui:598", + "location": "imgui:599", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -18054,7 +18054,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui:599", + "location": "imgui:600", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -18115,7 +18115,7 @@ "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui:600", + "location": "imgui:601", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -18171,7 +18171,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalar", - "location": "imgui:601", + "location": "imgui:602", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -18231,7 +18231,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalarN", - "location": "imgui:602", + "location": "imgui:603", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -18296,7 +18296,7 @@ "cimguiname": "igEndBoxSelect", "defaults": {}, "funcname": "EndBoxSelect", - "location": "imgui_internal:3258", + "location": "imgui_internal:3264", "namespace": "ImGui", "ov_cimguiname": "igEndBoxSelect", "ret": "void", @@ -18330,7 +18330,7 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", - "location": "imgui_internal:3271", + "location": "imgui_internal:3277", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -18347,7 +18347,7 @@ "cimguiname": "igEndCombo", "defaults": {}, "funcname": "EndCombo", - "location": "imgui:574", + "location": "imgui:575", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -18364,7 +18364,7 @@ "cimguiname": "igEndComboPreview", "defaults": {}, "funcname": "EndComboPreview", - "location": "imgui_internal:3117", + "location": "imgui_internal:3123", "namespace": "ImGui", "ov_cimguiname": "igEndComboPreview", "ret": "void", @@ -18381,7 +18381,7 @@ "cimguiname": "igEndDisabled", "defaults": {}, "funcname": "EndDisabled", - "location": "imgui:896", + "location": "imgui:897", "namespace": "ImGui", "ov_cimguiname": "igEndDisabled", "ret": "void", @@ -18398,7 +18398,7 @@ "cimguiname": "igEndDisabledOverrideReenable", "defaults": {}, "funcname": "EndDisabledOverrideReenable", - "location": "imgui_internal:3080", + "location": "imgui_internal:3086", "namespace": "ImGui", "ov_cimguiname": "igEndDisabledOverrideReenable", "ret": "void", @@ -18415,7 +18415,7 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui:884", + "location": "imgui:885", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -18432,7 +18432,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui:887", + "location": "imgui:888", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -18449,7 +18449,7 @@ "cimguiname": "igEndErrorTooltip", "defaults": {}, "funcname": "EndErrorTooltip", - "location": "imgui_internal:3470", + "location": "imgui_internal:3476", "namespace": "ImGui", "ov_cimguiname": "igEndErrorTooltip", "ret": "void", @@ -18500,7 +18500,7 @@ "cimguiname": "igEndListBox", "defaults": {}, "funcname": "EndListBox", - "location": "imgui:699", + "location": "imgui:700", "namespace": "ImGui", "ov_cimguiname": "igEndListBox", "ret": "void", @@ -18517,7 +18517,7 @@ "cimguiname": "igEndMainMenuBar", "defaults": {}, "funcname": "EndMainMenuBar", - "location": "imgui:725", + "location": "imgui:726", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -18534,7 +18534,7 @@ "cimguiname": "igEndMenu", "defaults": {}, "funcname": "EndMenu", - "location": "imgui:727", + "location": "imgui:728", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -18551,7 +18551,7 @@ "cimguiname": "igEndMenuBar", "defaults": {}, "funcname": "EndMenuBar", - "location": "imgui:723", + "location": "imgui:724", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -18568,7 +18568,7 @@ "cimguiname": "igEndMultiSelect", "defaults": {}, "funcname": "EndMultiSelect", - "location": "imgui:688", + "location": "imgui:689", "namespace": "ImGui", "ov_cimguiname": "igEndMultiSelect", "ret": "ImGuiMultiSelectIO*", @@ -18585,7 +18585,7 @@ "cimguiname": "igEndPopup", "defaults": {}, "funcname": "EndPopup", - "location": "imgui:760", + "location": "imgui:761", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -18602,7 +18602,7 @@ "cimguiname": "igEndTabBar", "defaults": {}, "funcname": "EndTabBar", - "location": "imgui:861", + "location": "imgui:862", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -18619,7 +18619,7 @@ "cimguiname": "igEndTabItem", "defaults": {}, "funcname": "EndTabItem", - "location": "imgui:863", + "location": "imgui:864", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -18636,7 +18636,7 @@ "cimguiname": "igEndTable", "defaults": {}, "funcname": "EndTable", - "location": "imgui:812", + "location": "imgui:813", "namespace": "ImGui", "ov_cimguiname": "igEndTable", "ret": "void", @@ -18653,7 +18653,7 @@ "cimguiname": "igEndTooltip", "defaults": {}, "funcname": "EndTooltip", - "location": "imgui:736", + "location": "imgui:737", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -18670,7 +18670,7 @@ "cimguiname": "igErrorCheckEndFrameFinalizeErrorTooltip", "defaults": {}, "funcname": "ErrorCheckEndFrameFinalizeErrorTooltip", - "location": "imgui_internal:3468", + "location": "imgui_internal:3474", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndFrameFinalizeErrorTooltip", "ret": "void", @@ -18687,7 +18687,7 @@ "cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "defaults": {}, "funcname": "ErrorCheckUsingSetCursorPosToExtendParentBoundaries", - "location": "imgui_internal:3467", + "location": "imgui_internal:3473", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "ret": "void", @@ -18709,7 +18709,7 @@ "cimguiname": "igErrorLog", "defaults": {}, "funcname": "ErrorLog", - "location": "imgui_internal:3463", + "location": "imgui_internal:3469", "namespace": "ImGui", "ov_cimguiname": "igErrorLog", "ret": "bool", @@ -18731,7 +18731,7 @@ "cimguiname": "igErrorRecoveryStoreState", "defaults": {}, "funcname": "ErrorRecoveryStoreState", - "location": "imgui_internal:3464", + "location": "imgui_internal:3470", "namespace": "ImGui", "ov_cimguiname": "igErrorRecoveryStoreState", "ret": "void", @@ -18753,7 +18753,7 @@ "cimguiname": "igErrorRecoveryTryToRecoverState", "defaults": {}, "funcname": "ErrorRecoveryTryToRecoverState", - "location": "imgui_internal:3465", + "location": "imgui_internal:3471", "namespace": "ImGui", "ov_cimguiname": "igErrorRecoveryTryToRecoverState", "ret": "void", @@ -18775,7 +18775,7 @@ "cimguiname": "igErrorRecoveryTryToRecoverWindowState", "defaults": {}, "funcname": "ErrorRecoveryTryToRecoverWindowState", - "location": "imgui_internal:3466", + "location": "imgui_internal:3472", "namespace": "ImGui", "ov_cimguiname": "igErrorRecoveryTryToRecoverWindowState", "ret": "void", @@ -18801,7 +18801,7 @@ "cimguiname": "igFindBestWindowPosForPopup", "defaults": {}, "funcname": "FindBestWindowPosForPopup", - "location": "imgui_internal:3102", + "location": "imgui_internal:3108", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -18848,7 +18848,7 @@ "cimguiname": "igFindBestWindowPosForPopupEx", "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", - "location": "imgui_internal:3103", + "location": "imgui_internal:3109", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -18871,7 +18871,7 @@ "cimguiname": "igFindBlockingModal", "defaults": {}, "funcname": "FindBlockingModal", - "location": "imgui_internal:3101", + "location": "imgui_internal:3107", "namespace": "ImGui", "ov_cimguiname": "igFindBlockingModal", "ret": "ImGuiWindow*", @@ -18893,7 +18893,7 @@ "cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "defaults": {}, "funcname": "FindBottomMostVisibleWindowWithinBeginStack", - "location": "imgui_internal:2983", + "location": "imgui_internal:2989", "namespace": "ImGui", "ov_cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "ret": "ImGuiWindow*", @@ -18927,7 +18927,7 @@ "cimguiname": "igFindHoveredWindowEx", "defaults": {}, "funcname": "FindHoveredWindowEx", - "location": "imgui_internal:3003", + "location": "imgui_internal:3009", "namespace": "ImGui", "ov_cimguiname": "igFindHoveredWindowEx", "ret": "void", @@ -18953,7 +18953,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", - "location": "imgui_internal:3276", + "location": "imgui_internal:3282", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiOldColumns*", @@ -18981,7 +18981,7 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "imgui_internal:3372", + "location": "imgui_internal:3378", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -19003,7 +19003,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", - "location": "imgui_internal:3022", + "location": "imgui_internal:3028", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -19025,7 +19025,7 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", - "location": "imgui_internal:2955", + "location": "imgui_internal:2961", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -19047,7 +19047,7 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", - "location": "imgui_internal:2956", + "location": "imgui_internal:2962", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -19069,7 +19069,7 @@ "cimguiname": "igFindWindowDisplayIndex", "defaults": {}, "funcname": "FindWindowDisplayIndex", - "location": "imgui_internal:2982", + "location": "imgui_internal:2988", "namespace": "ImGui", "ov_cimguiname": "igFindWindowDisplayIndex", "ret": "int", @@ -19091,7 +19091,7 @@ "cimguiname": "igFindWindowSettingsByID", "defaults": {}, "funcname": "FindWindowSettingsByID", - "location": "imgui_internal:3026", + "location": "imgui_internal:3032", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByID", "ret": "ImGuiWindowSettings*", @@ -19113,7 +19113,7 @@ "cimguiname": "igFindWindowSettingsByWindow", "defaults": {}, "funcname": "FindWindowSettingsByWindow", - "location": "imgui_internal:3027", + "location": "imgui_internal:3033", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettingsByWindow", "ret": "ImGuiWindowSettings*", @@ -19135,7 +19135,7 @@ "cimguiname": "igFixupKeyChord", "defaults": {}, "funcname": "FixupKeyChord", - "location": "imgui_internal:3154", + "location": "imgui_internal:3160", "namespace": "ImGui", "ov_cimguiname": "igFixupKeyChord", "ret": "ImGuiKeyChord", @@ -19152,7 +19152,7 @@ "cimguiname": "igFocusItem", "defaults": {}, "funcname": "FocusItem", - "location": "imgui_internal:3141", + "location": "imgui_internal:3147", "namespace": "ImGui", "ov_cimguiname": "igFocusItem", "ret": "void", @@ -19186,7 +19186,7 @@ "cimguiname": "igFocusTopMostWindowUnderOne", "defaults": {}, "funcname": "FocusTopMostWindowUnderOne", - "location": "imgui_internal:2977", + "location": "imgui_internal:2983", "namespace": "ImGui", "ov_cimguiname": "igFocusTopMostWindowUnderOne", "ret": "void", @@ -19214,7 +19214,7 @@ "flags": "0" }, "funcname": "FocusWindow", - "location": "imgui_internal:2976", + "location": "imgui_internal:2982", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", @@ -19236,7 +19236,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", - "location": "imgui_internal:3460", + "location": "imgui_internal:3466", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -19253,7 +19253,7 @@ "cimguiname": "igGcCompactTransientMiscBuffers", "defaults": {}, "funcname": "GcCompactTransientMiscBuffers", - "location": "imgui_internal:3458", + "location": "imgui_internal:3464", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientMiscBuffers", "ret": "void", @@ -19275,7 +19275,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", - "location": "imgui_internal:3459", + "location": "imgui_internal:3465", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -19292,7 +19292,7 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", - "location": "imgui_internal:3051", + "location": "imgui_internal:3057", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -19322,7 +19322,7 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", - "location": "imgui:1052", + "location": "imgui:1053", "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -19339,7 +19339,7 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui:941", + "location": "imgui:942", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList_Nil", "ret": "ImDrawList*", @@ -19359,7 +19359,7 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui_internal:2992", + "location": "imgui_internal:2998", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -19381,7 +19381,7 @@ "cimguiname": "igGetBoxSelectState", "defaults": {}, "funcname": "GetBoxSelectState", - "location": "imgui_internal:3265", + "location": "imgui_internal:3271", "namespace": "ImGui", "ov_cimguiname": "igGetBoxSelectState", "ret": "ImGuiBoxSelectState*", @@ -19398,7 +19398,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:1024", + "location": "imgui:1025", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -19489,7 +19489,7 @@ "cimguiname": "igGetColumnIndex", "defaults": {}, "funcname": "GetColumnIndex", - "location": "imgui:851", + "location": "imgui:852", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -19515,7 +19515,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", - "location": "imgui_internal:3278", + "location": "imgui_internal:3284", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -19539,7 +19539,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui:854", + "location": "imgui:855", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -19565,7 +19565,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", - "location": "imgui_internal:3277", + "location": "imgui_internal:3283", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -19589,7 +19589,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui:852", + "location": "imgui:853", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -19606,7 +19606,7 @@ "cimguiname": "igGetColumnsCount", "defaults": {}, "funcname": "GetColumnsCount", - "location": "imgui:856", + "location": "imgui:857", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -19632,7 +19632,7 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", - "location": "imgui_internal:3275", + "location": "imgui_internal:3281", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -19689,7 +19689,7 @@ "cimguiname": "igGetCurrentFocusScope", "defaults": {}, "funcname": "GetCurrentFocusScope", - "location": "imgui_internal:3239", + "location": "imgui_internal:3245", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentFocusScope", "ret": "ImGuiID", @@ -19706,7 +19706,7 @@ "cimguiname": "igGetCurrentTabBar", "defaults": {}, "funcname": "GetCurrentTabBar", - "location": "imgui_internal:3337", + "location": "imgui_internal:3343", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTabBar", "ret": "ImGuiTabBar*", @@ -19723,7 +19723,7 @@ "cimguiname": "igGetCurrentTable", "defaults": {}, "funcname": "GetCurrentTable", - "location": "imgui_internal:3292", + "location": "imgui_internal:3298", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTable", "ret": "ImGuiTable*", @@ -19740,7 +19740,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", - "location": "imgui_internal:2954", + "location": "imgui_internal:2960", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -19757,7 +19757,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", - "location": "imgui_internal:2953", + "location": "imgui_internal:2959", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -19877,7 +19877,7 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", - "location": "imgui_internal:2990", + "location": "imgui_internal:2996", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -19894,7 +19894,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui:888", + "location": "imgui:889", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -19928,7 +19928,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui:949", + "location": "imgui:950", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -19945,7 +19945,7 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", - "location": "imgui_internal:3052", + "location": "imgui_internal:3058", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -20019,7 +20019,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui:942", + "location": "imgui:943", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_Nil", "ret": "ImDrawList*", @@ -20039,7 +20039,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:2991", + "location": "imgui_internal:2997", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_WindowPtr", "ret": "ImDrawList*", @@ -20059,7 +20059,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:2993", + "location": "imgui_internal:2999", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -20076,7 +20076,7 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui:948", + "location": "imgui:949", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -20127,7 +20127,7 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", - "location": "imgui_internal:3056", + "location": "imgui_internal:3062", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -20243,7 +20243,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3061", + "location": "imgui_internal:3067", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Str", "ret": "ImGuiID", @@ -20267,7 +20267,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3062", + "location": "imgui_internal:3068", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed_Int", "ret": "ImGuiID", @@ -20307,7 +20307,7 @@ "cimguiname": "igGetIOEx", "defaults": {}, "funcname": "GetIOEx", - "location": "imgui_internal:2952", + "location": "imgui_internal:2958", "namespace": "ImGui", "ov_cimguiname": "igGetIOEx", "ret": "ImGuiIO*", @@ -20330,7 +20330,7 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", - "location": "imgui_internal:3441", + "location": "imgui_internal:3447", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -20347,7 +20347,7 @@ "cimguiname": "igGetItemFlags", "defaults": {}, "funcname": "GetItemFlags", - "location": "imgui_internal:3050", + "location": "imgui_internal:3056", "namespace": "ImGui", "ov_cimguiname": "igGetItemFlags", "ret": "ImGuiItemFlags", @@ -20364,7 +20364,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui:929", + "location": "imgui:930", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -20386,7 +20386,7 @@ "cimguiname": "igGetItemRectMax", "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui:931", + "location": "imgui:932", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -20409,7 +20409,7 @@ "cimguiname": "igGetItemRectMin", "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui:930", + "location": "imgui:931", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -20432,7 +20432,7 @@ "cimguiname": "igGetItemRectSize", "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui:932", + "location": "imgui:933", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -20450,7 +20450,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", - "location": "imgui_internal:3049", + "location": "imgui_internal:3055", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -20472,7 +20472,7 @@ "cimguiname": "igGetKeyChordName", "defaults": {}, "funcname": "GetKeyChordName", - "location": "imgui_internal:3166", + "location": "imgui_internal:3172", "namespace": "ImGui", "ov_cimguiname": "igGetKeyChordName", "ret": "const char*", @@ -20498,7 +20498,7 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3164", + "location": "imgui_internal:3170", "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_ContextPtr", "ret": "ImGuiKeyData*", @@ -20518,7 +20518,7 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3165", + "location": "imgui_internal:3171", "namespace": "ImGui", "ov_cimguiname": "igGetKeyData_Key", "ret": "ImGuiKeyData*", @@ -20556,7 +20556,7 @@ "cimguiname": "igGetKeyMagnitude2d", "defaults": {}, "funcname": "GetKeyMagnitude2d", - "location": "imgui_internal:3169", + "location": "imgui_internal:3175", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetKeyMagnitude2d", @@ -20579,7 +20579,7 @@ "cimguiname": "igGetKeyName", "defaults": {}, "funcname": "GetKeyName", - "location": "imgui:972", + "location": "imgui:973", "namespace": "ImGui", "ov_cimguiname": "igGetKeyName", "ret": "const char*", @@ -20601,7 +20601,7 @@ "cimguiname": "igGetKeyOwner", "defaults": {}, "funcname": "GetKeyOwner", - "location": "imgui_internal:3188", + "location": "imgui_internal:3194", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwner", "ret": "ImGuiID", @@ -20627,7 +20627,7 @@ "cimguiname": "igGetKeyOwnerData", "defaults": {}, "funcname": "GetKeyOwnerData", - "location": "imgui_internal:3193", + "location": "imgui_internal:3199", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwnerData", "ret": "ImGuiKeyOwnerData*", @@ -20657,7 +20657,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:971", + "location": "imgui:972", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -20674,7 +20674,7 @@ "cimguiname": "igGetMainViewport", "defaults": {}, "funcname": "GetMainViewport", - "location": "imgui:938", + "location": "imgui:939", "namespace": "ImGui", "ov_cimguiname": "igGetMainViewport", "ret": "ImGuiViewport*", @@ -20696,7 +20696,7 @@ "cimguiname": "igGetMouseClickedCount", "defaults": {}, "funcname": "GetMouseClickedCount", - "location": "imgui:1009", + "location": "imgui:1010", "namespace": "ImGui", "ov_cimguiname": "igGetMouseClickedCount", "ret": "int", @@ -20713,7 +20713,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:1018", + "location": "imgui:1019", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -20746,7 +20746,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:1016", + "location": "imgui:1017", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -20769,7 +20769,7 @@ "cimguiname": "igGetMousePos", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:1013", + "location": "imgui:1014", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -20792,7 +20792,7 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:1014", + "location": "imgui:1015", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -20815,7 +20815,7 @@ "cimguiname": "igGetMultiSelectState", "defaults": {}, "funcname": "GetMultiSelectState", - "location": "imgui_internal:3266", + "location": "imgui_internal:3272", "namespace": "ImGui", "ov_cimguiname": "igGetMultiSelectState", "ret": "ImGuiMultiSelectState*", @@ -20837,7 +20837,7 @@ "cimguiname": "igGetNavTweakPressedAmount", "defaults": {}, "funcname": "GetNavTweakPressedAmount", - "location": "imgui_internal:3170", + "location": "imgui_internal:3176", "namespace": "ImGui", "ov_cimguiname": "igGetNavTweakPressedAmount", "ret": "float", @@ -20881,7 +20881,7 @@ "cimguiname": "igGetPopupAllowedExtentRect", "defaults": {}, "funcname": "GetPopupAllowedExtentRect", - "location": "imgui_internal:3098", + "location": "imgui_internal:3104", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetPopupAllowedExtentRect", @@ -20972,7 +20972,7 @@ "cimguiname": "igGetShortcutRoutingData", "defaults": {}, "funcname": "GetShortcutRoutingData", - "location": "imgui_internal:3227", + "location": "imgui_internal:3233", "namespace": "ImGui", "ov_cimguiname": "igGetShortcutRoutingData", "ret": "ImGuiKeyRoutingData*", @@ -20989,7 +20989,7 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui:952", + "location": "imgui:953", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -21029,7 +21029,7 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui:950", + "location": "imgui:951", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -21074,7 +21074,7 @@ "cimguiname": "igGetStyleVarInfo", "defaults": {}, "funcname": "GetStyleVarInfo", - "location": "imgui_internal:3078", + "location": "imgui_internal:3084", "namespace": "ImGui", "ov_cimguiname": "igGetStyleVarInfo", "ret": "const ImGuiDataVarInfo*", @@ -21125,7 +21125,7 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", - "location": "imgui:947", + "location": "imgui:948", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -21142,7 +21142,7 @@ "cimguiname": "igGetTopMostAndVisiblePopupModal", "defaults": {}, "funcname": "GetTopMostAndVisiblePopupModal", - "location": "imgui_internal:3100", + "location": "imgui_internal:3106", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostAndVisiblePopupModal", "ret": "ImGuiWindow*", @@ -21159,7 +21159,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", - "location": "imgui_internal:3099", + "location": "imgui_internal:3105", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -21176,7 +21176,7 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui:668", + "location": "imgui:669", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -21206,7 +21206,7 @@ "cimguiname": "igGetTypematicRepeatRate", "defaults": {}, "funcname": "GetTypematicRepeatRate", - "location": "imgui_internal:3172", + "location": "imgui_internal:3178", "namespace": "ImGui", "ov_cimguiname": "igGetTypematicRepeatRate", "ret": "void", @@ -21230,7 +21230,7 @@ "flags": "ImGuiTypingSelectFlags_None" }, "funcname": "GetTypingSelectRequest", - "location": "imgui_internal:3251", + "location": "imgui_internal:3257", "namespace": "ImGui", "ov_cimguiname": "igGetTypingSelectRequest", "ret": "ImGuiTypingSelectRequest*", @@ -21330,7 +21330,7 @@ "cimguiname": "igGetWindowResizeBorderID", "defaults": {}, "funcname": "GetWindowResizeBorderID", - "location": "imgui_internal:3401", + "location": "imgui_internal:3407", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeBorderID", "ret": "ImGuiID", @@ -21356,7 +21356,7 @@ "cimguiname": "igGetWindowResizeCornerID", "defaults": {}, "funcname": "GetWindowResizeCornerID", - "location": "imgui_internal:3400", + "location": "imgui_internal:3406", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeCornerID", "ret": "ImGuiID", @@ -21382,7 +21382,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", - "location": "imgui_internal:3399", + "location": "imgui_internal:3405", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -21412,7 +21412,7 @@ "cimguiname": "igGetWindowScrollbarRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", - "location": "imgui_internal:3398", + "location": "imgui_internal:3404", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -21475,7 +21475,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:442", + "location": "imgui_internal:446", "ov_cimguiname": "igImAbs_Int", "ret": "int", "signature": "(int)", @@ -21494,7 +21494,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:443", + "location": "imgui_internal:447", "ov_cimguiname": "igImAbs_Float", "ret": "float", "signature": "(float)", @@ -21513,7 +21513,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:444", + "location": "imgui_internal:448", "ov_cimguiname": "igImAbs_double", "ret": "double", "signature": "(double)", @@ -21538,7 +21538,7 @@ "cimguiname": "igImAlphaBlendColors", "defaults": {}, "funcname": "ImAlphaBlendColors", - "location": "imgui_internal:353", + "location": "imgui_internal:357", "ov_cimguiname": "igImAlphaBlendColors", "ret": "ImU32", "signature": "(ImU32,ImU32)", @@ -21579,7 +21579,7 @@ "cimguiname": "igImBezierCubicCalc", "defaults": {}, "funcname": "ImBezierCubicCalc", - "location": "imgui_internal:489", + "location": "imgui_internal:493", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicCalc", "ret": "void", @@ -21625,7 +21625,7 @@ "cimguiname": "igImBezierCubicClosestPoint", "defaults": {}, "funcname": "ImBezierCubicClosestPoint", - "location": "imgui_internal:490", + "location": "imgui_internal:494", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPoint", "ret": "void", @@ -21671,7 +21671,7 @@ "cimguiname": "igImBezierCubicClosestPointCasteljau", "defaults": {}, "funcname": "ImBezierCubicClosestPointCasteljau", - "location": "imgui_internal:491", + "location": "imgui_internal:495", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPointCasteljau", "ret": "void", @@ -21709,7 +21709,7 @@ "cimguiname": "igImBezierQuadraticCalc", "defaults": {}, "funcname": "ImBezierQuadraticCalc", - "location": "imgui_internal:492", + "location": "imgui_internal:496", "nonUDT": 1, "ov_cimguiname": "igImBezierQuadraticCalc", "ret": "void", @@ -21735,7 +21735,7 @@ "cimguiname": "igImBitArrayClearAllBits", "defaults": {}, "funcname": "ImBitArrayClearAllBits", - "location": "imgui_internal:562", + "location": "imgui_internal:566", "ov_cimguiname": "igImBitArrayClearAllBits", "ret": "void", "signature": "(ImU32*,int)", @@ -21760,7 +21760,7 @@ "cimguiname": "igImBitArrayClearBit", "defaults": {}, "funcname": "ImBitArrayClearBit", - "location": "imgui_internal:564", + "location": "imgui_internal:568", "ov_cimguiname": "igImBitArrayClearBit", "ret": "void", "signature": "(ImU32*,int)", @@ -21781,7 +21781,7 @@ "cimguiname": "igImBitArrayGetStorageSizeInBytes", "defaults": {}, "funcname": "ImBitArrayGetStorageSizeInBytes", - "location": "imgui_internal:561", + "location": "imgui_internal:565", "ov_cimguiname": "igImBitArrayGetStorageSizeInBytes", "ret": "size_t", "signature": "(int)", @@ -21806,7 +21806,7 @@ "cimguiname": "igImBitArraySetBit", "defaults": {}, "funcname": "ImBitArraySetBit", - "location": "imgui_internal:565", + "location": "imgui_internal:569", "ov_cimguiname": "igImBitArraySetBit", "ret": "void", "signature": "(ImU32*,int)", @@ -21835,7 +21835,7 @@ "cimguiname": "igImBitArraySetBitRange", "defaults": {}, "funcname": "ImBitArraySetBitRange", - "location": "imgui_internal:566", + "location": "imgui_internal:570", "ov_cimguiname": "igImBitArraySetBitRange", "ret": "void", "signature": "(ImU32*,int,int)", @@ -21860,7 +21860,7 @@ "cimguiname": "igImBitArrayTestBit", "defaults": {}, "funcname": "ImBitArrayTestBit", - "location": "imgui_internal:563", + "location": "imgui_internal:567", "ov_cimguiname": "igImBitArrayTestBit", "ret": "bool", "signature": "(const ImU32*,int)", @@ -21881,7 +21881,7 @@ "cimguiname": "igImCharIsBlankA", "defaults": {}, "funcname": "ImCharIsBlankA", - "location": "imgui_internal:375", + "location": "imgui_internal:379", "ov_cimguiname": "igImCharIsBlankA", "ret": "bool", "signature": "(char)", @@ -21902,7 +21902,7 @@ "cimguiname": "igImCharIsBlankW", "defaults": {}, "funcname": "ImCharIsBlankW", - "location": "imgui_internal:376", + "location": "imgui_internal:380", "ov_cimguiname": "igImCharIsBlankW", "ret": "bool", "signature": "(unsigned int)", @@ -21923,7 +21923,7 @@ "cimguiname": "igImCharIsXdigitA", "defaults": {}, "funcname": "ImCharIsXdigitA", - "location": "imgui_internal:377", + "location": "imgui_internal:381", "ov_cimguiname": "igImCharIsXdigitA", "ret": "bool", "signature": "(char)", @@ -21956,7 +21956,7 @@ "cimguiname": "igImClamp", "defaults": {}, "funcname": "ImClamp", - "location": "imgui_internal:466", + "location": "imgui_internal:470", "nonUDT": 1, "ov_cimguiname": "igImClamp", "ret": "void", @@ -21982,7 +21982,7 @@ "cimguiname": "igImDot", "defaults": {}, "funcname": "ImDot", - "location": "imgui_internal:479", + "location": "imgui_internal:483", "ov_cimguiname": "igImDot", "ret": "float", "signature": "(const ImVec2,const ImVec2)", @@ -22011,7 +22011,7 @@ "cimguiname": "igImExponentialMovingAverage", "defaults": {}, "funcname": "ImExponentialMovingAverage", - "location": "imgui_internal:485", + "location": "imgui_internal:489", "ov_cimguiname": "igImExponentialMovingAverage", "ret": "float", "signature": "(float,float,int)", @@ -22032,7 +22032,7 @@ "cimguiname": "igImFileClose", "defaults": {}, "funcname": "ImFileClose", - "location": "imgui_internal:416", + "location": "imgui_internal:420", "ov_cimguiname": "igImFileClose", "ret": "bool", "signature": "(ImFileHandle)", @@ -22053,7 +22053,7 @@ "cimguiname": "igImFileGetSize", "defaults": {}, "funcname": "ImFileGetSize", - "location": "imgui_internal:417", + "location": "imgui_internal:421", "ov_cimguiname": "igImFileGetSize", "ret": "ImU64", "signature": "(ImFileHandle)", @@ -22089,7 +22089,7 @@ "padding_bytes": "0" }, "funcname": "ImFileLoadToMemory", - "location": "imgui_internal:423", + "location": "imgui_internal:427", "ov_cimguiname": "igImFileLoadToMemory", "ret": "void*", "signature": "(const char*,const char*,size_t*,int)", @@ -22114,7 +22114,7 @@ "cimguiname": "igImFileOpen", "defaults": {}, "funcname": "ImFileOpen", - "location": "imgui_internal:415", + "location": "imgui_internal:419", "ov_cimguiname": "igImFileOpen", "ret": "ImFileHandle", "signature": "(const char*,const char*)", @@ -22147,7 +22147,7 @@ "cimguiname": "igImFileRead", "defaults": {}, "funcname": "ImFileRead", - "location": "imgui_internal:418", + "location": "imgui_internal:422", "ov_cimguiname": "igImFileRead", "ret": "ImU64", "signature": "(void*,ImU64,ImU64,ImFileHandle)", @@ -22180,7 +22180,7 @@ "cimguiname": "igImFileWrite", "defaults": {}, "funcname": "ImFileWrite", - "location": "imgui_internal:419", + "location": "imgui_internal:423", "ov_cimguiname": "igImFileWrite", "ret": "ImU64", "signature": "(const void*,ImU64,ImU64,ImFileHandle)", @@ -22201,7 +22201,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:476", + "location": "imgui_internal:480", "ov_cimguiname": "igImFloor_Float", "ret": "float", "signature": "(float)", @@ -22224,7 +22224,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:477", + "location": "imgui_internal:481", "nonUDT": 1, "ov_cimguiname": "igImFloor_Vec2", "ret": "void", @@ -22246,7 +22246,7 @@ "cimguiname": "igImFontAtlasBuildFinish", "defaults": {}, "funcname": "ImFontAtlasBuildFinish", - "location": "imgui_internal:3541", + "location": "imgui_internal:3548", "ov_cimguiname": "igImFontAtlasBuildFinish", "ret": "void", "signature": "(ImFontAtlas*)", @@ -22267,7 +22267,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", - "location": "imgui_internal:3538", + "location": "imgui_internal:3545", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -22292,7 +22292,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", - "location": "imgui_internal:3544", + "location": "imgui_internal:3551", "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "ret": "void", "signature": "(unsigned char[256],float)", @@ -22337,7 +22337,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", - "location": "imgui_internal:3545", + "location": "imgui_internal:3552", "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "ret": "void", "signature": "(const unsigned char[256],unsigned char*,int,int,int,int,int)", @@ -22362,7 +22362,7 @@ "cimguiname": "igImFontAtlasBuildPackCustomRects", "defaults": {}, "funcname": "ImFontAtlasBuildPackCustomRects", - "location": "imgui_internal:3540", + "location": "imgui_internal:3547", "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", "ret": "void", "signature": "(ImFontAtlas*,void*)", @@ -22411,7 +22411,7 @@ "cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender32bppRectFromString", - "location": "imgui_internal:3543", + "location": "imgui_internal:3550", "ov_cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)", @@ -22460,7 +22460,7 @@ "cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender8bppRectFromString", - "location": "imgui_internal:3542", + "location": "imgui_internal:3549", "ov_cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)", @@ -22497,7 +22497,7 @@ "cimguiname": "igImFontAtlasBuildSetupFont", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFont", - "location": "imgui_internal:3539", + "location": "imgui_internal:3546", "ov_cimguiname": "igImFontAtlasBuildSetupFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)", @@ -22513,7 +22513,7 @@ "cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "defaults": {}, "funcname": "ImFontAtlasGetBuilderForStbTruetype", - "location": "imgui_internal:3535", + "location": "imgui_internal:3542", "ov_cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "ret": "const ImFontBuilderIO*", "signature": "()", @@ -22534,7 +22534,7 @@ "cimguiname": "igImFontAtlasUpdateConfigDataPointers", "defaults": {}, "funcname": "ImFontAtlasUpdateConfigDataPointers", - "location": "imgui_internal:3537", + "location": "imgui_internal:3544", "ov_cimguiname": "igImFontAtlasUpdateConfigDataPointers", "ret": "void", "signature": "(ImFontAtlas*)", @@ -22568,7 +22568,7 @@ "defaults": {}, "funcname": "ImFormatString", "isvararg": "...)", - "location": "imgui_internal:381", + "location": "imgui_internal:385", "ov_cimguiname": "igImFormatString", "ret": "int", "signature": "(char*,size_t,const char*,...)", @@ -22602,7 +22602,7 @@ "defaults": {}, "funcname": "ImFormatStringToTempBuffer", "isvararg": "...)", - "location": "imgui_internal:383", + "location": "imgui_internal:387", "ov_cimguiname": "igImFormatStringToTempBuffer", "ret": "void", "signature": "(const char**,const char**,const char*,...)", @@ -22635,7 +22635,7 @@ "cimguiname": "igImFormatStringToTempBufferV", "defaults": {}, "funcname": "ImFormatStringToTempBufferV", - "location": "imgui_internal:384", + "location": "imgui_internal:388", "ov_cimguiname": "igImFormatStringToTempBufferV", "ret": "void", "signature": "(const char**,const char**,const char*,va_list)", @@ -22668,7 +22668,7 @@ "cimguiname": "igImFormatStringV", "defaults": {}, "funcname": "ImFormatStringV", - "location": "imgui_internal:382", + "location": "imgui_internal:386", "ov_cimguiname": "igImFormatStringV", "ret": "int", "signature": "(char*,size_t,const char*,va_list)", @@ -22699,7 +22699,7 @@ "seed": "0" }, "funcname": "ImHashData", - "location": "imgui_internal:344", + "location": "imgui_internal:348", "ov_cimguiname": "igImHashData", "ret": "ImGuiID", "signature": "(const void*,size_t,ImGuiID)", @@ -22731,7 +22731,7 @@ "seed": "0" }, "funcname": "ImHashStr", - "location": "imgui_internal:345", + "location": "imgui_internal:349", "ov_cimguiname": "igImHashStr", "ret": "ImGuiID", "signature": "(const char*,size_t,ImGuiID)", @@ -22756,7 +22756,7 @@ "cimguiname": "igImInvLength", "defaults": {}, "funcname": "ImInvLength", - "location": "imgui_internal:473", + "location": "imgui_internal:477", "ov_cimguiname": "igImInvLength", "ret": "float", "signature": "(const ImVec2,float)", @@ -22777,7 +22777,7 @@ "cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "defaults": {}, "funcname": "ImIsFloatAboveGuaranteedIntegerPrecision", - "location": "imgui_internal:484", + "location": "imgui_internal:488", "ov_cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "ret": "bool", "signature": "(float)", @@ -22798,7 +22798,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:356", + "location": "imgui_internal:360", "ov_cimguiname": "igImIsPowerOfTwo_Int", "ret": "bool", "signature": "(int)", @@ -22817,7 +22817,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:357", + "location": "imgui_internal:361", "ov_cimguiname": "igImIsPowerOfTwo_U64", "ret": "bool", "signature": "(ImU64)", @@ -22838,7 +22838,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:471", + "location": "imgui_internal:475", "ov_cimguiname": "igImLengthSqr_Vec2", "ret": "float", "signature": "(const ImVec2)", @@ -22857,7 +22857,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:472", + "location": "imgui_internal:476", "ov_cimguiname": "igImLengthSqr_Vec4", "ret": "float", "signature": "(const ImVec4)", @@ -22890,7 +22890,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:467", + "location": "imgui_internal:471", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Float", "ret": "void", @@ -22922,7 +22922,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:468", + "location": "imgui_internal:472", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Vec2", "ret": "void", @@ -22954,7 +22954,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:469", + "location": "imgui_internal:473", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec4", "ret": "void", @@ -22988,7 +22988,7 @@ "cimguiname": "igImLineClosestPoint", "defaults": {}, "funcname": "ImLineClosestPoint", - "location": "imgui_internal:493", + "location": "imgui_internal:497", "nonUDT": 1, "ov_cimguiname": "igImLineClosestPoint", "ret": "void", @@ -23026,7 +23026,7 @@ "cimguiname": "igImLinearRemapClamp", "defaults": {}, "funcname": "ImLinearRemapClamp", - "location": "imgui_internal:482", + "location": "imgui_internal:486", "ov_cimguiname": "igImLinearRemapClamp", "ret": "float", "signature": "(float,float,float,float,float)", @@ -23055,7 +23055,7 @@ "cimguiname": "igImLinearSweep", "defaults": {}, "funcname": "ImLinearSweep", - "location": "imgui_internal:481", + "location": "imgui_internal:485", "ov_cimguiname": "igImLinearSweep", "ret": "float", "signature": "(float,float,float)", @@ -23076,7 +23076,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:440", + "location": "imgui_internal:444", "ov_cimguiname": "igImLog_Float", "ret": "float", "signature": "(float)", @@ -23095,7 +23095,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:441", + "location": "imgui_internal:445", "ov_cimguiname": "igImLog_double", "ret": "double", "signature": "(double)", @@ -23124,7 +23124,7 @@ "cimguiname": "igImLowerBound", "defaults": {}, "funcname": "ImLowerBound", - "location": "imgui_internal:732", + "location": "imgui_internal:736", "ov_cimguiname": "igImLowerBound", "ret": "ImGuiStoragePair*", "signature": "(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)", @@ -23153,7 +23153,7 @@ "cimguiname": "igImMax", "defaults": {}, "funcname": "ImMax", - "location": "imgui_internal:465", + "location": "imgui_internal:469", "nonUDT": 1, "ov_cimguiname": "igImMax", "ret": "void", @@ -23183,7 +23183,7 @@ "cimguiname": "igImMin", "defaults": {}, "funcname": "ImMin", - "location": "imgui_internal:464", + "location": "imgui_internal:468", "nonUDT": 1, "ov_cimguiname": "igImMin", "ret": "void", @@ -23209,7 +23209,7 @@ "cimguiname": "igImModPositive", "defaults": {}, "funcname": "ImModPositive", - "location": "imgui_internal:478", + "location": "imgui_internal:482", "ov_cimguiname": "igImModPositive", "ret": "int", "signature": "(int,int)", @@ -23238,7 +23238,7 @@ "cimguiname": "igImMul", "defaults": {}, "funcname": "ImMul", - "location": "imgui_internal:483", + "location": "imgui_internal:487", "nonUDT": 1, "ov_cimguiname": "igImMul", "ret": "void", @@ -23260,7 +23260,7 @@ "cimguiname": "igImParseFormatFindEnd", "defaults": {}, "funcname": "ImParseFormatFindEnd", - "location": "imgui_internal:386", + "location": "imgui_internal:390", "ov_cimguiname": "igImParseFormatFindEnd", "ret": "const char*", "signature": "(const char*)", @@ -23281,7 +23281,7 @@ "cimguiname": "igImParseFormatFindStart", "defaults": {}, "funcname": "ImParseFormatFindStart", - "location": "imgui_internal:385", + "location": "imgui_internal:389", "ov_cimguiname": "igImParseFormatFindStart", "ret": "const char*", "signature": "(const char*)", @@ -23306,7 +23306,7 @@ "cimguiname": "igImParseFormatPrecision", "defaults": {}, "funcname": "ImParseFormatPrecision", - "location": "imgui_internal:390", + "location": "imgui_internal:394", "ov_cimguiname": "igImParseFormatPrecision", "ret": "int", "signature": "(const char*,int)", @@ -23335,7 +23335,7 @@ "cimguiname": "igImParseFormatSanitizeForPrinting", "defaults": {}, "funcname": "ImParseFormatSanitizeForPrinting", - "location": "imgui_internal:388", + "location": "imgui_internal:392", "ov_cimguiname": "igImParseFormatSanitizeForPrinting", "ret": "void", "signature": "(const char*,char*,size_t)", @@ -23364,7 +23364,7 @@ "cimguiname": "igImParseFormatSanitizeForScanning", "defaults": {}, "funcname": "ImParseFormatSanitizeForScanning", - "location": "imgui_internal:389", + "location": "imgui_internal:393", "ov_cimguiname": "igImParseFormatSanitizeForScanning", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -23393,7 +23393,7 @@ "cimguiname": "igImParseFormatTrimDecorations", "defaults": {}, "funcname": "ImParseFormatTrimDecorations", - "location": "imgui_internal:387", + "location": "imgui_internal:391", "ov_cimguiname": "igImParseFormatTrimDecorations", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -23418,7 +23418,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:438", + "location": "imgui_internal:442", "ov_cimguiname": "igImPow_Float", "ret": "float", "signature": "(float,float)", @@ -23441,7 +23441,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:439", + "location": "imgui_internal:443", "ov_cimguiname": "igImPow_double", "ret": "double", "signature": "(double,double)", @@ -23476,7 +23476,7 @@ "cimguiname": "igImQsort", "defaults": {}, "funcname": "ImQsort", - "location": "imgui_internal:349", + "location": "imgui_internal:353", "ov_cimguiname": "igImQsort", "ret": "void", "signature": "(void*,size_t,size_t,int(*)(void const*,void const*))", @@ -23509,7 +23509,7 @@ "cimguiname": "igImRotate", "defaults": {}, "funcname": "ImRotate", - "location": "imgui_internal:480", + "location": "imgui_internal:484", "nonUDT": 1, "ov_cimguiname": "igImRotate", "ret": "void", @@ -23531,7 +23531,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:450", + "location": "imgui_internal:454", "ov_cimguiname": "igImRsqrt_Float", "ret": "float", "signature": "(float)", @@ -23550,7 +23550,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:452", + "location": "imgui_internal:456", "ov_cimguiname": "igImRsqrt_double", "ret": "double", "signature": "(double)", @@ -23571,7 +23571,7 @@ "cimguiname": "igImSaturate", "defaults": {}, "funcname": "ImSaturate", - "location": "imgui_internal:470", + "location": "imgui_internal:474", "ov_cimguiname": "igImSaturate", "ret": "float", "signature": "(float)", @@ -23592,7 +23592,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:445", + "location": "imgui_internal:449", "ov_cimguiname": "igImSign_Float", "ret": "float", "signature": "(float)", @@ -23611,7 +23611,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:446", + "location": "imgui_internal:450", "ov_cimguiname": "igImSign_double", "ret": "double", "signature": "(double)", @@ -23632,7 +23632,7 @@ "cimguiname": "igImStrSkipBlank", "defaults": {}, "funcname": "ImStrSkipBlank", - "location": "imgui_internal:370", + "location": "imgui_internal:374", "ov_cimguiname": "igImStrSkipBlank", "ret": "const char*", "signature": "(const char*)", @@ -23653,7 +23653,7 @@ "cimguiname": "igImStrTrimBlanks", "defaults": {}, "funcname": "ImStrTrimBlanks", - "location": "imgui_internal:369", + "location": "imgui_internal:373", "ov_cimguiname": "igImStrTrimBlanks", "ret": "void", "signature": "(char*)", @@ -23678,7 +23678,7 @@ "cimguiname": "igImStrbol", "defaults": {}, "funcname": "ImStrbol", - "location": "imgui_internal:372", + "location": "imgui_internal:376", "ov_cimguiname": "igImStrbol", "ret": "const char*", "signature": "(const char*,const char*)", @@ -23707,7 +23707,7 @@ "cimguiname": "igImStrchrRange", "defaults": {}, "funcname": "ImStrchrRange", - "location": "imgui_internal:366", + "location": "imgui_internal:370", "ov_cimguiname": "igImStrchrRange", "ret": "const char*", "signature": "(const char*,const char*,char)", @@ -23728,7 +23728,7 @@ "cimguiname": "igImStrdup", "defaults": {}, "funcname": "ImStrdup", - "location": "imgui_internal:364", + "location": "imgui_internal:368", "ov_cimguiname": "igImStrdup", "ret": "char*", "signature": "(const char*)", @@ -23757,7 +23757,7 @@ "cimguiname": "igImStrdupcpy", "defaults": {}, "funcname": "ImStrdupcpy", - "location": "imgui_internal:365", + "location": "imgui_internal:369", "ov_cimguiname": "igImStrdupcpy", "ret": "char*", "signature": "(char*,size_t*,const char*)", @@ -23782,7 +23782,7 @@ "cimguiname": "igImStreolRange", "defaults": {}, "funcname": "ImStreolRange", - "location": "imgui_internal:367", + "location": "imgui_internal:371", "ov_cimguiname": "igImStreolRange", "ret": "const char*", "signature": "(const char*,const char*)", @@ -23807,7 +23807,7 @@ "cimguiname": "igImStricmp", "defaults": {}, "funcname": "ImStricmp", - "location": "imgui_internal:361", + "location": "imgui_internal:365", "ov_cimguiname": "igImStricmp", "ret": "int", "signature": "(const char*,const char*)", @@ -23840,7 +23840,7 @@ "cimguiname": "igImStristr", "defaults": {}, "funcname": "ImStristr", - "location": "imgui_internal:368", + "location": "imgui_internal:372", "ov_cimguiname": "igImStristr", "ret": "const char*", "signature": "(const char*,const char*,const char*,const char*)", @@ -23861,7 +23861,7 @@ "cimguiname": "igImStrlenW", "defaults": {}, "funcname": "ImStrlenW", - "location": "imgui_internal:371", + "location": "imgui_internal:375", "ov_cimguiname": "igImStrlenW", "ret": "int", "signature": "(const ImWchar*)", @@ -23890,7 +23890,7 @@ "cimguiname": "igImStrncpy", "defaults": {}, "funcname": "ImStrncpy", - "location": "imgui_internal:363", + "location": "imgui_internal:367", "ov_cimguiname": "igImStrncpy", "ret": "void", "signature": "(char*,const char*,size_t)", @@ -23919,7 +23919,7 @@ "cimguiname": "igImStrnicmp", "defaults": {}, "funcname": "ImStrnicmp", - "location": "imgui_internal:362", + "location": "imgui_internal:366", "ov_cimguiname": "igImStrnicmp", "ret": "int", "signature": "(const char*,const char*,size_t)", @@ -23948,7 +23948,7 @@ "cimguiname": "igImTextCharFromUtf8", "defaults": {}, "funcname": "ImTextCharFromUtf8", - "location": "imgui_internal:395", + "location": "imgui_internal:399", "ov_cimguiname": "igImTextCharFromUtf8", "ret": "int", "signature": "(unsigned int*,const char*,const char*)", @@ -23973,7 +23973,7 @@ "cimguiname": "igImTextCharToUtf8", "defaults": {}, "funcname": "ImTextCharToUtf8", - "location": "imgui_internal:393", + "location": "imgui_internal:397", "ov_cimguiname": "igImTextCharToUtf8", "ret": "const char*", "signature": "(char[5],unsigned int)", @@ -23998,7 +23998,7 @@ "cimguiname": "igImTextCountCharsFromUtf8", "defaults": {}, "funcname": "ImTextCountCharsFromUtf8", - "location": "imgui_internal:397", + "location": "imgui_internal:401", "ov_cimguiname": "igImTextCountCharsFromUtf8", "ret": "int", "signature": "(const char*,const char*)", @@ -24023,7 +24023,7 @@ "cimguiname": "igImTextCountLines", "defaults": {}, "funcname": "ImTextCountLines", - "location": "imgui_internal:401", + "location": "imgui_internal:405", "ov_cimguiname": "igImTextCountLines", "ret": "int", "signature": "(const char*,const char*)", @@ -24048,7 +24048,7 @@ "cimguiname": "igImTextCountUtf8BytesFromChar", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromChar", - "location": "imgui_internal:398", + "location": "imgui_internal:402", "ov_cimguiname": "igImTextCountUtf8BytesFromChar", "ret": "int", "signature": "(const char*,const char*)", @@ -24073,7 +24073,7 @@ "cimguiname": "igImTextCountUtf8BytesFromStr", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromStr", - "location": "imgui_internal:399", + "location": "imgui_internal:403", "ov_cimguiname": "igImTextCountUtf8BytesFromStr", "ret": "int", "signature": "(const ImWchar*,const ImWchar*)", @@ -24098,7 +24098,7 @@ "cimguiname": "igImTextFindPreviousUtf8Codepoint", "defaults": {}, "funcname": "ImTextFindPreviousUtf8Codepoint", - "location": "imgui_internal:400", + "location": "imgui_internal:404", "ov_cimguiname": "igImTextFindPreviousUtf8Codepoint", "ret": "const char*", "signature": "(const char*,const char*)", @@ -24137,7 +24137,7 @@ "in_remaining": "NULL" }, "funcname": "ImTextStrFromUtf8", - "location": "imgui_internal:396", + "location": "imgui_internal:400", "ov_cimguiname": "igImTextStrFromUtf8", "ret": "int", "signature": "(ImWchar*,int,const char*,const char*,const char**)", @@ -24170,7 +24170,7 @@ "cimguiname": "igImTextStrToUtf8", "defaults": {}, "funcname": "ImTextStrToUtf8", - "location": "imgui_internal:394", + "location": "imgui_internal:398", "ov_cimguiname": "igImTextStrToUtf8", "ret": "int", "signature": "(char*,int,const ImWchar*,const ImWchar*)", @@ -24191,7 +24191,7 @@ "cimguiname": "igImToUpper", "defaults": {}, "funcname": "ImToUpper", - "location": "imgui_internal:374", + "location": "imgui_internal:378", "ov_cimguiname": "igImToUpper", "ret": "char", "signature": "(char)", @@ -24220,7 +24220,7 @@ "cimguiname": "igImTriangleArea", "defaults": {}, "funcname": "ImTriangleArea", - "location": "imgui_internal:497", + "location": "imgui_internal:501", "ov_cimguiname": "igImTriangleArea", "ret": "float", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -24268,7 +24268,7 @@ "cimguiname": "igImTriangleBarycentricCoords", "defaults": {}, "funcname": "ImTriangleBarycentricCoords", - "location": "imgui_internal:496", + "location": "imgui_internal:500", "ov_cimguiname": "igImTriangleBarycentricCoords", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -24305,7 +24305,7 @@ "cimguiname": "igImTriangleClosestPoint", "defaults": {}, "funcname": "ImTriangleClosestPoint", - "location": "imgui_internal:495", + "location": "imgui_internal:499", "nonUDT": 1, "ov_cimguiname": "igImTriangleClosestPoint", "ret": "void", @@ -24339,7 +24339,7 @@ "cimguiname": "igImTriangleContainsPoint", "defaults": {}, "funcname": "ImTriangleContainsPoint", - "location": "imgui_internal:494", + "location": "imgui_internal:498", "ov_cimguiname": "igImTriangleContainsPoint", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", @@ -24368,7 +24368,7 @@ "cimguiname": "igImTriangleIsClockwise", "defaults": {}, "funcname": "ImTriangleIsClockwise", - "location": "imgui_internal:498", + "location": "imgui_internal:502", "ov_cimguiname": "igImTriangleIsClockwise", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -24389,7 +24389,7 @@ "cimguiname": "igImTrunc", "defaults": {}, "funcname": "ImTrunc", - "location": "imgui_internal:474", + "location": "imgui_internal:478", "ov_cimguiname": "igImTrunc_Float", "ret": "float", "signature": "(float)", @@ -24412,7 +24412,7 @@ "cimguiname": "igImTrunc", "defaults": {}, "funcname": "ImTrunc", - "location": "imgui_internal:475", + "location": "imgui_internal:479", "nonUDT": 1, "ov_cimguiname": "igImTrunc_Vec2", "ret": "void", @@ -24434,7 +24434,7 @@ "cimguiname": "igImUpperPowerOfTwo", "defaults": {}, "funcname": "ImUpperPowerOfTwo", - "location": "imgui_internal:358", + "location": "imgui_internal:362", "ov_cimguiname": "igImUpperPowerOfTwo", "ret": "int", "signature": "(int)", @@ -24480,7 +24480,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui:567", + "location": "imgui:568", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -24531,7 +24531,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui:568", + "location": "imgui:569", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -24541,14 +24541,14 @@ ], "igImageButtonEx": [ { - "args": "(ImGuiID id,ImTextureID texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags)", + "args": "(ImGuiID id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags)", "argsT": [ { "name": "id", "type": "ImGuiID" }, { - "name": "texture_id", + "name": "user_texture_id", "type": "ImTextureID" }, { @@ -24576,14 +24576,14 @@ "type": "ImGuiButtonFlags" } ], - "argsoriginal": "(ImGuiID id,ImTextureID texture_id,const ImVec2& image_size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col,ImGuiButtonFlags flags=0)", - "call_args": "(id,texture_id,image_size,uv0,uv1,bg_col,tint_col,flags)", + "argsoriginal": "(ImGuiID id,ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col,ImGuiButtonFlags flags=0)", + "call_args": "(id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col,flags)", "cimguiname": "igImageButtonEx", "defaults": { "flags": "0" }, "funcname": "ImageButtonEx", - "location": "imgui_internal:3387", + "location": "imgui_internal:3393", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", @@ -24624,7 +24624,7 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", - "location": "imgui_internal:2997", + "location": "imgui_internal:3003", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -24671,7 +24671,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui:639", + "location": "imgui:640", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -24718,7 +24718,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui:631", + "location": "imgui:632", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -24755,7 +24755,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui:632", + "location": "imgui:633", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -24792,7 +24792,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui:633", + "location": "imgui:634", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -24829,7 +24829,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui:634", + "location": "imgui:635", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -24871,7 +24871,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui:635", + "location": "imgui:636", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -24903,7 +24903,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui:636", + "location": "imgui:637", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -24935,7 +24935,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui:637", + "location": "imgui:638", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -24967,7 +24967,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui:638", + "location": "imgui:639", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -25018,7 +25018,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui:640", + "location": "imgui:641", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -25073,7 +25073,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui:641", + "location": "imgui:642", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -25119,7 +25119,7 @@ "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui:628", + "location": "imgui:629", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -25141,7 +25141,7 @@ "cimguiname": "igInputTextDeactivateHook", "defaults": {}, "funcname": "InputTextDeactivateHook", - "location": "imgui_internal:3437", + "location": "imgui_internal:3443", "namespace": "ImGui", "ov_cimguiname": "igInputTextDeactivateHook", "ret": "void", @@ -25194,7 +25194,7 @@ "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "imgui_internal:3436", + "location": "imgui_internal:3442", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -25245,7 +25245,7 @@ "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui:629", + "location": "imgui:630", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -25295,7 +25295,7 @@ "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui:630", + "location": "imgui:631", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -25349,7 +25349,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", - "location": "imgui_internal:3175", + "location": "imgui_internal:3181", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -25371,7 +25371,7 @@ "cimguiname": "igIsAliasKey", "defaults": {}, "funcname": "IsAliasKey", - "location": "imgui_internal:3152", + "location": "imgui_internal:3158", "namespace": "ImGui", "ov_cimguiname": "igIsAliasKey", "ret": "bool", @@ -25388,7 +25388,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui:927", + "location": "imgui:928", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -25405,7 +25405,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui:928", + "location": "imgui:929", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -25422,7 +25422,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui:926", + "location": "imgui:927", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -25439,7 +25439,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:1012", + "location": "imgui:1013", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -25465,7 +25465,7 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", - "location": "imgui_internal:3070", + "location": "imgui_internal:3076", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -25482,7 +25482,7 @@ "cimguiname": "igIsDragDropActive", "defaults": {}, "funcname": "IsDragDropActive", - "location": "imgui_internal:3242", + "location": "imgui_internal:3248", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropActive", "ret": "bool", @@ -25499,7 +25499,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", - "location": "imgui_internal:3245", + "location": "imgui_internal:3251", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -25521,7 +25521,7 @@ "cimguiname": "igIsGamepadKey", "defaults": {}, "funcname": "IsGamepadKey", - "location": "imgui_internal:3150", + "location": "imgui_internal:3156", "namespace": "ImGui", "ov_cimguiname": "igIsGamepadKey", "ret": "bool", @@ -25538,7 +25538,7 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui:922", + "location": "imgui:923", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -25555,7 +25555,7 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", - "location": "imgui:917", + "location": "imgui:918", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -25579,7 +25579,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui:919", + "location": "imgui:920", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -25596,7 +25596,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui:923", + "location": "imgui:924", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -25613,7 +25613,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui:924", + "location": "imgui:925", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -25630,7 +25630,7 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui:921", + "location": "imgui:922", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -25647,7 +25647,7 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui:918", + "location": "imgui:919", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -25671,7 +25671,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui:916", + "location": "imgui:917", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -25688,7 +25688,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui:925", + "location": "imgui:926", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -25705,7 +25705,7 @@ "cimguiname": "igIsItemToggledSelection", "defaults": {}, "funcname": "IsItemToggledSelection", - "location": "imgui:690", + "location": "imgui:691", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -25722,7 +25722,7 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui:920", + "location": "imgui:921", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -25744,7 +25744,7 @@ "cimguiname": "igIsKeyChordPressed", "defaults": {}, "funcname": "IsKeyChordPressed", - "location": "imgui:970", + "location": "imgui:971", "namespace": "ImGui", "ov_cimguiname": "igIsKeyChordPressed_Nil", "ret": "bool", @@ -25774,7 +25774,7 @@ "owner_id": "0" }, "funcname": "IsKeyChordPressed", - "location": "imgui_internal:3204", + "location": "imgui_internal:3210", "namespace": "ImGui", "ov_cimguiname": "igIsKeyChordPressed_InputFlags", "ret": "bool", @@ -25796,7 +25796,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:967", + "location": "imgui:968", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_Nil", "ret": "bool", @@ -25820,7 +25820,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui_internal:3201", + "location": "imgui_internal:3207", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_ID", "ret": "bool", @@ -25848,7 +25848,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:968", + "location": "imgui:969", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_Bool", "ret": "bool", @@ -25878,7 +25878,7 @@ "owner_id": "0" }, "funcname": "IsKeyPressed", - "location": "imgui_internal:3202", + "location": "imgui_internal:3208", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_InputFlags", "ret": "bool", @@ -25900,7 +25900,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:969", + "location": "imgui:970", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_Nil", "ret": "bool", @@ -25924,7 +25924,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui_internal:3203", + "location": "imgui_internal:3209", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_ID", "ret": "bool", @@ -25946,7 +25946,7 @@ "cimguiname": "igIsKeyboardKey", "defaults": {}, "funcname": "IsKeyboardKey", - "location": "imgui_internal:3149", + "location": "imgui_internal:3155", "namespace": "ImGui", "ov_cimguiname": "igIsKeyboardKey", "ret": "bool", @@ -25968,7 +25968,7 @@ "cimguiname": "igIsLRModKey", "defaults": {}, "funcname": "IsLRModKey", - "location": "imgui_internal:3153", + "location": "imgui_internal:3159", "namespace": "ImGui", "ov_cimguiname": "igIsLRModKey", "ret": "bool", @@ -25990,7 +25990,7 @@ "cimguiname": "igIsLegacyKey", "defaults": {}, "funcname": "IsLegacyKey", - "location": "imgui_internal:3148", + "location": "imgui_internal:3154", "namespace": "ImGui", "ov_cimguiname": "igIsLegacyKey", "ret": "bool", @@ -26018,7 +26018,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:1006", + "location": "imgui:1007", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_Bool", "ret": "bool", @@ -26048,7 +26048,7 @@ "owner_id": "0" }, "funcname": "IsMouseClicked", - "location": "imgui_internal:3206", + "location": "imgui_internal:3212", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_InputFlags", "ret": "bool", @@ -26070,7 +26070,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:1008", + "location": "imgui:1009", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_Nil", "ret": "bool", @@ -26094,7 +26094,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui_internal:3208", + "location": "imgui_internal:3214", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked_ID", "ret": "bool", @@ -26116,7 +26116,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:1005", + "location": "imgui:1006", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_Nil", "ret": "bool", @@ -26140,7 +26140,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui_internal:3205", + "location": "imgui_internal:3211", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_ID", "ret": "bool", @@ -26168,7 +26168,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "imgui_internal:3168", + "location": "imgui_internal:3174", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -26196,7 +26196,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:1015", + "location": "imgui:1016", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -26228,7 +26228,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:1010", + "location": "imgui:1011", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -26250,7 +26250,7 @@ "cimguiname": "igIsMouseKey", "defaults": {}, "funcname": "IsMouseKey", - "location": "imgui_internal:3151", + "location": "imgui_internal:3157", "namespace": "ImGui", "ov_cimguiname": "igIsMouseKey", "ret": "bool", @@ -26274,7 +26274,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:1011", + "location": "imgui:1012", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -26296,7 +26296,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:1007", + "location": "imgui:1008", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_Nil", "ret": "bool", @@ -26320,7 +26320,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui_internal:3207", + "location": "imgui_internal:3213", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_ID", "ret": "bool", @@ -26342,7 +26342,7 @@ "cimguiname": "igIsNamedKey", "defaults": {}, "funcname": "IsNamedKey", - "location": "imgui_internal:3146", + "location": "imgui_internal:3152", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKey", "ret": "bool", @@ -26364,7 +26364,7 @@ "cimguiname": "igIsNamedKeyOrMod", "defaults": {}, "funcname": "IsNamedKeyOrMod", - "location": "imgui_internal:3147", + "location": "imgui_internal:3153", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKeyOrMod", "ret": "bool", @@ -26392,7 +26392,7 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui:788", + "location": "imgui:789", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_Str", "ret": "bool", @@ -26416,7 +26416,7 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", - "location": "imgui_internal:3097", + "location": "imgui_internal:3103", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_ID", "ret": "bool", @@ -26438,7 +26438,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:945", + "location": "imgui:946", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Nil", "ret": "bool", @@ -26462,7 +26462,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:946", + "location": "imgui:947", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Vec2", "ret": "bool", @@ -26488,7 +26488,7 @@ "cimguiname": "igIsWindowAbove", "defaults": {}, "funcname": "IsWindowAbove", - "location": "imgui_internal:2962", + "location": "imgui_internal:2968", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAbove", "ret": "bool", @@ -26535,7 +26535,7 @@ "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", - "location": "imgui_internal:2960", + "location": "imgui_internal:2966", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -26580,7 +26580,7 @@ "flags": "0" }, "funcname": "IsWindowContentHoverable", - "location": "imgui_internal:3069", + "location": "imgui_internal:3075", "namespace": "ImGui", "ov_cimguiname": "igIsWindowContentHoverable", "ret": "bool", @@ -26650,7 +26650,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", - "location": "imgui_internal:2963", + "location": "imgui_internal:2969", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -26676,7 +26676,7 @@ "cimguiname": "igIsWindowWithinBeginStackOf", "defaults": {}, "funcname": "IsWindowWithinBeginStackOf", - "location": "imgui_internal:2961", + "location": "imgui_internal:2967", "namespace": "ImGui", "ov_cimguiname": "igIsWindowWithinBeginStackOf", "ret": "bool", @@ -26713,7 +26713,7 @@ "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "imgui_internal:3067", + "location": "imgui_internal:3073", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -26743,7 +26743,7 @@ "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", - "location": "imgui_internal:3068", + "location": "imgui_internal:3074", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", @@ -26771,7 +26771,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3065", + "location": "imgui_internal:3071", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Vec2", "ret": "void", @@ -26797,7 +26797,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3066", + "location": "imgui_internal:3072", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Rect", "ret": "void", @@ -26819,7 +26819,7 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", - "location": "imgui_internal:3058", + "location": "imgui_internal:3064", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -26920,7 +26920,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:700", + "location": "imgui:701", "namespace": "ImGui", "ov_cimguiname": "igListBox_Str_arr", "ret": "bool", @@ -26964,7 +26964,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:701", + "location": "imgui:702", "namespace": "ImGui", "ov_cimguiname": "igListBox_FnStrPtr", "ret": "bool", @@ -26986,7 +26986,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:1031", + "location": "imgui:1032", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -27014,7 +27014,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:1032", + "location": "imgui:1033", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -27036,7 +27036,7 @@ "cimguiname": "igLocalizeGetMsg", "defaults": {}, "funcname": "LocalizeGetMsg", - "location": "imgui_internal:3032", + "location": "imgui_internal:3038", "namespace": "ImGui", "ov_cimguiname": "igLocalizeGetMsg", "ret": "const char*", @@ -27062,7 +27062,7 @@ "cimguiname": "igLocalizeRegisterEntries", "defaults": {}, "funcname": "LocalizeRegisterEntries", - "location": "imgui_internal:3031", + "location": "imgui_internal:3037", "namespace": "ImGui", "ov_cimguiname": "igLocalizeRegisterEntries", "ret": "void", @@ -27088,7 +27088,7 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", - "location": "imgui_internal:3083", + "location": "imgui_internal:3089", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -27105,7 +27105,7 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", - "location": "imgui:873", + "location": "imgui:874", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -27122,7 +27122,7 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", - "location": "imgui:872", + "location": "imgui:873", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -27154,7 +27154,7 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "imgui_internal:3085", + "location": "imgui_internal:3091", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -27180,7 +27180,7 @@ "cimguiname": "igLogSetNextTextDecoration", "defaults": {}, "funcname": "LogSetNextTextDecoration", - "location": "imgui_internal:3086", + "location": "imgui_internal:3092", "namespace": "ImGui", "ov_cimguiname": "igLogSetNextTextDecoration", "ret": "void", @@ -27207,7 +27207,7 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui:874", + "location": "imgui:875", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -27234,7 +27234,7 @@ "cimguiname": "igLogTextV", "defaults": {}, "funcname": "LogTextV", - "location": "imgui:875", + "location": "imgui:876", "namespace": "ImGui", "ov_cimguiname": "igLogTextV", "ret": "void", @@ -27258,7 +27258,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "imgui_internal:3084", + "location": "imgui_internal:3090", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -27282,7 +27282,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui:871", + "location": "imgui:872", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -27311,7 +27311,7 @@ "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui:870", + "location": "imgui:871", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -27335,7 +27335,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui:869", + "location": "imgui:870", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -27352,7 +27352,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3017", + "location": "imgui_internal:3023", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_Nil", "ret": "void", @@ -27372,7 +27372,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3018", + "location": "imgui_internal:3024", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_WindowPtr", "ret": "void", @@ -27394,7 +27394,7 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", - "location": "imgui_internal:3059", + "location": "imgui_internal:3065", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -27416,7 +27416,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:1053", + "location": "imgui:1054", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -27438,7 +27438,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:1054", + "location": "imgui:1055", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -27476,7 +27476,7 @@ "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui:728", + "location": "imgui:729", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_Bool", "ret": "bool", @@ -27510,7 +27510,7 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui:729", + "location": "imgui:730", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_BoolPtr", "ret": "bool", @@ -27552,7 +27552,7 @@ "shortcut": "NULL" }, "funcname": "MenuItemEx", - "location": "imgui_internal:3112", + "location": "imgui_internal:3118", "namespace": "ImGui", "ov_cimguiname": "igMenuItemEx", "ret": "bool", @@ -27574,7 +27574,7 @@ "cimguiname": "igMouseButtonToKey", "defaults": {}, "funcname": "MouseButtonToKey", - "location": "imgui_internal:3167", + "location": "imgui_internal:3173", "namespace": "ImGui", "ov_cimguiname": "igMouseButtonToKey", "ret": "ImGuiKey", @@ -27600,7 +27600,7 @@ "cimguiname": "igMultiSelectAddSetAll", "defaults": {}, "funcname": "MultiSelectAddSetAll", - "location": "imgui_internal:3263", + "location": "imgui_internal:3269", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectAddSetAll", "ret": "void", @@ -27638,7 +27638,7 @@ "cimguiname": "igMultiSelectAddSetRange", "defaults": {}, "funcname": "MultiSelectAddSetRange", - "location": "imgui_internal:3264", + "location": "imgui_internal:3270", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectAddSetRange", "ret": "void", @@ -27668,7 +27668,7 @@ "cimguiname": "igMultiSelectItemFooter", "defaults": {}, "funcname": "MultiSelectItemFooter", - "location": "imgui_internal:3262", + "location": "imgui_internal:3268", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectItemFooter", "ret": "void", @@ -27698,7 +27698,7 @@ "cimguiname": "igMultiSelectItemHeader", "defaults": {}, "funcname": "MultiSelectItemHeader", - "location": "imgui_internal:3261", + "location": "imgui_internal:3267", "namespace": "ImGui", "ov_cimguiname": "igMultiSelectItemHeader", "ret": "void", @@ -27720,7 +27720,7 @@ "cimguiname": "igNavClearPreferredPosForAxis", "defaults": {}, "funcname": "NavClearPreferredPosForAxis", - "location": "imgui_internal:3131", + "location": "imgui_internal:3137", "namespace": "ImGui", "ov_cimguiname": "igNavClearPreferredPosForAxis", "ret": "void", @@ -27742,7 +27742,7 @@ "cimguiname": "igNavHighlightActivated", "defaults": {}, "funcname": "NavHighlightActivated", - "location": "imgui_internal:3130", + "location": "imgui_internal:3136", "namespace": "ImGui", "ov_cimguiname": "igNavHighlightActivated", "ret": "void", @@ -27759,7 +27759,7 @@ "cimguiname": "igNavInitRequestApplyResult", "defaults": {}, "funcname": "NavInitRequestApplyResult", - "location": "imgui_internal:3121", + "location": "imgui_internal:3127", "namespace": "ImGui", "ov_cimguiname": "igNavInitRequestApplyResult", "ret": "void", @@ -27785,7 +27785,7 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", - "location": "imgui_internal:3120", + "location": "imgui_internal:3126", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -27802,7 +27802,7 @@ "cimguiname": "igNavMoveRequestApplyResult", "defaults": {}, "funcname": "NavMoveRequestApplyResult", - "location": "imgui_internal:3128", + "location": "imgui_internal:3134", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestApplyResult", "ret": "void", @@ -27819,7 +27819,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", - "location": "imgui_internal:3122", + "location": "imgui_internal:3128", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -27836,7 +27836,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", - "location": "imgui_internal:3127", + "location": "imgui_internal:3133", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -27870,7 +27870,7 @@ "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", - "location": "imgui_internal:3124", + "location": "imgui_internal:3130", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -27892,7 +27892,7 @@ "cimguiname": "igNavMoveRequestResolveWithLastItem", "defaults": {}, "funcname": "NavMoveRequestResolveWithLastItem", - "location": "imgui_internal:3125", + "location": "imgui_internal:3131", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithLastItem", "ret": "void", @@ -27918,7 +27918,7 @@ "cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "defaults": {}, "funcname": "NavMoveRequestResolveWithPastTreeNode", - "location": "imgui_internal:3126", + "location": "imgui_internal:3132", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithPastTreeNode", "ret": "void", @@ -27952,7 +27952,7 @@ "cimguiname": "igNavMoveRequestSubmit", "defaults": {}, "funcname": "NavMoveRequestSubmit", - "location": "imgui_internal:3123", + "location": "imgui_internal:3129", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestSubmit", "ret": "void", @@ -27978,7 +27978,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", - "location": "imgui_internal:3129", + "location": "imgui_internal:3135", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -27995,7 +27995,7 @@ "cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "defaults": {}, "funcname": "NavUpdateCurrentWindowIsScrollPushableX", - "location": "imgui_internal:3133", + "location": "imgui_internal:3139", "namespace": "ImGui", "ov_cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", "ret": "void", @@ -28046,7 +28046,7 @@ "cimguiname": "igNextColumn", "defaults": {}, "funcname": "NextColumn", - "location": "imgui:850", + "location": "imgui:851", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -28074,7 +28074,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:770", + "location": "imgui:771", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_Str", "ret": "void", @@ -28100,7 +28100,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:771", + "location": "imgui:772", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_ID", "ret": "void", @@ -28128,7 +28128,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "imgui_internal:3093", + "location": "imgui_internal:3099", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -28157,7 +28157,7 @@ "str_id": "NULL" }, "funcname": "OpenPopupOnItemClick", - "location": "imgui:772", + "location": "imgui:773", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "void", @@ -28217,7 +28217,7 @@ "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", - "location": "imgui_internal:3450", + "location": "imgui_internal:3456", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", @@ -28278,7 +28278,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:707", + "location": "imgui:708", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FloatPtr", "ret": "void", @@ -28338,7 +28338,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:708", + "location": "imgui:709", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FnFloatPtr", "ret": "void", @@ -28399,7 +28399,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:705", + "location": "imgui:706", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FloatPtr", "ret": "void", @@ -28459,7 +28459,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:706", + "location": "imgui:707", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FnFloatPtr", "ret": "void", @@ -28476,7 +28476,7 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:901", + "location": "imgui:902", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -28493,7 +28493,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", - "location": "imgui_internal:3274", + "location": "imgui_internal:3280", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -28510,7 +28510,7 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", - "location": "imgui_internal:3238", + "location": "imgui_internal:3244", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -28706,7 +28706,7 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", - "location": "imgui:900", + "location": "imgui:901", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -28728,7 +28728,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", - "location": "imgui_internal:3272", + "location": "imgui_internal:3278", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -28745,7 +28745,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", - "location": "imgui_internal:3273", + "location": "imgui_internal:3279", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -28767,7 +28767,7 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", - "location": "imgui_internal:3237", + "location": "imgui_internal:3243", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -28949,7 +28949,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", - "location": "imgui_internal:3074", + "location": "imgui_internal:3080", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -28971,7 +28971,7 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", - "location": "imgui_internal:3060", + "location": "imgui_internal:3066", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -29227,7 +29227,7 @@ "cimguiname": "igRemoveContextHook", "defaults": {}, "funcname": "RemoveContextHook", - "location": "imgui_internal:3010", + "location": "imgui_internal:3016", "namespace": "ImGui", "ov_cimguiname": "igRemoveContextHook", "ret": "void", @@ -29249,7 +29249,7 @@ "cimguiname": "igRemoveSettingsHandler", "defaults": {}, "funcname": "RemoveSettingsHandler", - "location": "imgui_internal:3021", + "location": "imgui_internal:3027", "namespace": "ImGui", "ov_cimguiname": "igRemoveSettingsHandler", "ret": "void", @@ -29306,7 +29306,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "imgui_internal:3376", + "location": "imgui_internal:3382", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -29344,7 +29344,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", - "location": "imgui_internal:3379", + "location": "imgui_internal:3385", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -29374,7 +29374,7 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", - "location": "imgui_internal:3377", + "location": "imgui_internal:3383", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -29408,7 +29408,7 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", - "location": "imgui_internal:3378", + "location": "imgui_internal:3384", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -29461,7 +29461,7 @@ "rounding": "0.0f" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "imgui_internal:3367", + "location": "imgui_internal:3373", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -29487,7 +29487,7 @@ "cimguiname": "igRenderDragDropTargetRect", "defaults": {}, "funcname": "RenderDragDropTargetRect", - "location": "imgui_internal:3246", + "location": "imgui_internal:3252", "namespace": "ImGui", "ov_cimguiname": "igRenderDragDropTargetRect", "ret": "void", @@ -29528,7 +29528,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "imgui_internal:3365", + "location": "imgui_internal:3371", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -29560,7 +29560,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "imgui_internal:3366", + "location": "imgui_internal:3372", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -29602,7 +29602,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", - "location": "imgui_internal:3373", + "location": "imgui_internal:3379", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -29634,7 +29634,7 @@ "flags": "ImGuiNavRenderCursorFlags_None" }, "funcname": "RenderNavCursor", - "location": "imgui_internal:3368", + "location": "imgui_internal:3374", "namespace": "ImGui", "ov_cimguiname": "igRenderNavCursor", "ret": "void", @@ -29676,7 +29676,7 @@ "cimguiname": "igRenderRectFilledRangeH", "defaults": {}, "funcname": "RenderRectFilledRangeH", - "location": "imgui_internal:3380", + "location": "imgui_internal:3386", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledRangeH", "ret": "void", @@ -29714,7 +29714,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", - "location": "imgui_internal:3381", + "location": "imgui_internal:3387", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -29751,7 +29751,7 @@ "text_end": "NULL" }, "funcname": "RenderText", - "location": "imgui_internal:3360", + "location": "imgui_internal:3366", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -29800,7 +29800,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "imgui_internal:3362", + "location": "imgui_internal:3368", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -29853,7 +29853,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "imgui_internal:3363", + "location": "imgui_internal:3369", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -29903,7 +29903,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", - "location": "imgui_internal:3364", + "location": "imgui_internal:3370", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -29937,7 +29937,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", - "location": "imgui_internal:3361", + "location": "imgui_internal:3367", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -29961,7 +29961,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:1017", + "location": "imgui:1018", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -30012,7 +30012,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:1033", + "location": "imgui:1034", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -30036,7 +30036,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:1034", + "location": "imgui:1035", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -30062,7 +30062,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", - "location": "imgui_internal:3045", + "location": "imgui_internal:3051", "namespace": "ImGui", "ov_cimguiname": "igScrollToBringRectIntoView", "ret": "void", @@ -30086,7 +30086,7 @@ "flags": "0" }, "funcname": "ScrollToItem", - "location": "imgui_internal:3041", + "location": "imgui_internal:3047", "namespace": "ImGui", "ov_cimguiname": "igScrollToItem", "ret": "void", @@ -30118,7 +30118,7 @@ "flags": "0" }, "funcname": "ScrollToRect", - "location": "imgui_internal:3042", + "location": "imgui_internal:3048", "namespace": "ImGui", "ov_cimguiname": "igScrollToRect", "ret": "void", @@ -30154,7 +30154,7 @@ "flags": "0" }, "funcname": "ScrollToRectEx", - "location": "imgui_internal:3043", + "location": "imgui_internal:3049", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToRectEx", @@ -30177,7 +30177,7 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", - "location": "imgui_internal:3396", + "location": "imgui_internal:3402", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -30187,7 +30187,7 @@ ], "igScrollbarEx": [ { - "args": "(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags flags)", + "args": "(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags draw_rounding_flags)", "argsT": [ { "name": "bb", @@ -30214,16 +30214,18 @@ "type": "ImS64" }, { - "name": "flags", + "name": "draw_rounding_flags", "type": "ImDrawFlags" } ], - "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags flags)", - "call_args": "(bb,id,axis,p_scroll_v,avail_v,contents_v,flags)", + "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags draw_rounding_flags=0)", + "call_args": "(bb,id,axis,p_scroll_v,avail_v,contents_v,draw_rounding_flags)", "cimguiname": "igScrollbarEx", - "defaults": {}, + "defaults": { + "draw_rounding_flags": "0" + }, "funcname": "ScrollbarEx", - "location": "imgui_internal:3397", + "location": "imgui_internal:3403", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -30261,7 +30263,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:677", + "location": "imgui:678", "namespace": "ImGui", "ov_cimguiname": "igSelectable_Bool", "ret": "bool", @@ -30296,7 +30298,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:678", + "location": "imgui:679", "namespace": "ImGui", "ov_cimguiname": "igSelectable_BoolPtr", "ret": "bool", @@ -30341,7 +30343,7 @@ "thickness": "1.0f" }, "funcname": "SeparatorEx", - "location": "imgui_internal:3388", + "location": "imgui_internal:3394", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", @@ -30397,7 +30399,7 @@ "cimguiname": "igSeparatorTextEx", "defaults": {}, "funcname": "SeparatorTextEx", - "location": "imgui_internal:3389", + "location": "imgui_internal:3395", "namespace": "ImGui", "ov_cimguiname": "igSeparatorTextEx", "ret": "void", @@ -30423,7 +30425,7 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", - "location": "imgui_internal:3053", + "location": "imgui_internal:3059", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -30440,7 +30442,7 @@ "cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "defaults": {}, "funcname": "SetActiveIdUsingAllKeyboardKeys", - "location": "imgui_internal:3174", + "location": "imgui_internal:3180", "namespace": "ImGui", "ov_cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "ret": "void", @@ -30472,7 +30474,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:1051", + "location": "imgui:1052", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -30494,7 +30496,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:1025", + "location": "imgui:1026", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -30516,7 +30518,7 @@ "cimguiname": "igSetColorEditOptions", "defaults": {}, "funcname": "SetColorEditOptions", - "location": "imgui:651", + "location": "imgui:652", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -30542,7 +30544,7 @@ "cimguiname": "igSetColumnOffset", "defaults": {}, "funcname": "SetColumnOffset", - "location": "imgui:855", + "location": "imgui:856", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -30568,7 +30570,7 @@ "cimguiname": "igSetColumnWidth", "defaults": {}, "funcname": "SetColumnWidth", - "location": "imgui:853", + "location": "imgui:854", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -30612,7 +30614,7 @@ "cimguiname": "igSetCurrentFont", "defaults": {}, "funcname": "SetCurrentFont", - "location": "imgui_internal:2989", + "location": "imgui_internal:2995", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -30736,7 +30738,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui:883", + "location": "imgui:884", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -30762,7 +30764,7 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", - "location": "imgui_internal:3054", + "location": "imgui_internal:3060", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -30784,7 +30786,7 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", - "location": "imgui_internal:3057", + "location": "imgui_internal:3063", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -30801,7 +30803,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui:904", + "location": "imgui:905", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -30823,7 +30825,7 @@ "cimguiname": "igSetItemKeyOwner", "defaults": {}, "funcname": "SetItemKeyOwner", - "location": "imgui:999", + "location": "imgui:1000", "namespace": "ImGui", "ov_cimguiname": "igSetItemKeyOwner_Nil", "ret": "void", @@ -30847,7 +30849,7 @@ "cimguiname": "igSetItemKeyOwner", "defaults": {}, "funcname": "SetItemKeyOwner", - "location": "imgui_internal:3191", + "location": "imgui_internal:3197", "namespace": "ImGui", "ov_cimguiname": "igSetItemKeyOwner_InputFlags", "ret": "void", @@ -30874,7 +30876,7 @@ "defaults": {}, "funcname": "SetItemTooltip", "isvararg": "...)", - "location": "imgui:745", + "location": "imgui:746", "namespace": "ImGui", "ov_cimguiname": "igSetItemTooltip", "ret": "void", @@ -30900,7 +30902,7 @@ "cimguiname": "igSetItemTooltipV", "defaults": {}, "funcname": "SetItemTooltipV", - "location": "imgui:746", + "location": "imgui:747", "namespace": "ImGui", "ov_cimguiname": "igSetItemTooltipV", "ret": "void", @@ -30932,7 +30934,7 @@ "flags": "0" }, "funcname": "SetKeyOwner", - "location": "imgui_internal:3189", + "location": "imgui_internal:3195", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwner", "ret": "void", @@ -30964,7 +30966,7 @@ "flags": "0" }, "funcname": "SetKeyOwnersForKeyChord", - "location": "imgui_internal:3190", + "location": "imgui_internal:3196", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwnersForKeyChord", "ret": "void", @@ -30988,7 +30990,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui:905", + "location": "imgui:906", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -31022,7 +31024,7 @@ "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", - "location": "imgui_internal:3071", + "location": "imgui_internal:3077", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -31044,7 +31046,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:1019", + "location": "imgui:1020", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -31066,7 +31068,7 @@ "cimguiname": "igSetNavCursorVisible", "defaults": {}, "funcname": "SetNavCursorVisible", - "location": "imgui:908", + "location": "imgui:909", "namespace": "ImGui", "ov_cimguiname": "igSetNavCursorVisible", "ret": "void", @@ -31083,7 +31085,7 @@ "cimguiname": "igSetNavCursorVisibleAfterMove", "defaults": {}, "funcname": "SetNavCursorVisibleAfterMove", - "location": "imgui_internal:3132", + "location": "imgui_internal:3138", "namespace": "ImGui", "ov_cimguiname": "igSetNavCursorVisibleAfterMove", "ret": "void", @@ -31105,7 +31107,7 @@ "cimguiname": "igSetNavFocusScope", "defaults": {}, "funcname": "SetNavFocusScope", - "location": "imgui_internal:3136", + "location": "imgui_internal:3142", "namespace": "ImGui", "ov_cimguiname": "igSetNavFocusScope", "ret": "void", @@ -31139,7 +31141,7 @@ "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", - "location": "imgui_internal:3135", + "location": "imgui_internal:3141", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -31161,7 +31163,7 @@ "cimguiname": "igSetNavWindow", "defaults": {}, "funcname": "SetNavWindow", - "location": "imgui_internal:3134", + "location": "imgui_internal:3140", "namespace": "ImGui", "ov_cimguiname": "igSetNavWindow", "ret": "void", @@ -31183,7 +31185,7 @@ "cimguiname": "igSetNextFrameWantCaptureKeyboard", "defaults": {}, "funcname": "SetNextFrameWantCaptureKeyboard", - "location": "imgui:973", + "location": "imgui:974", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureKeyboard", "ret": "void", @@ -31205,7 +31207,7 @@ "cimguiname": "igSetNextFrameWantCaptureMouse", "defaults": {}, "funcname": "SetNextFrameWantCaptureMouse", - "location": "imgui:1020", + "location": "imgui:1021", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureMouse", "ret": "void", @@ -31222,7 +31224,7 @@ "cimguiname": "igSetNextItemAllowOverlap", "defaults": {}, "funcname": "SetNextItemAllowOverlap", - "location": "imgui:911", + "location": "imgui:912", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemAllowOverlap", "ret": "void", @@ -31250,7 +31252,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui:671", + "location": "imgui:672", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -31276,7 +31278,7 @@ "cimguiname": "igSetNextItemRefVal", "defaults": {}, "funcname": "SetNextItemRefVal", - "location": "imgui_internal:3442", + "location": "imgui_internal:3448", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemRefVal", "ret": "void", @@ -31298,7 +31300,7 @@ "cimguiname": "igSetNextItemSelectionUserData", "defaults": {}, "funcname": "SetNextItemSelectionUserData", - "location": "imgui:689", + "location": "imgui:690", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemSelectionUserData", "ret": "void", @@ -31326,7 +31328,7 @@ "flags": "0" }, "funcname": "SetNextItemShortcut", - "location": "imgui:991", + "location": "imgui:992", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemShortcut", "ret": "void", @@ -31348,7 +31350,7 @@ "cimguiname": "igSetNextItemStorageID", "defaults": {}, "funcname": "SetNextItemStorageID", - "location": "imgui:672", + "location": "imgui:673", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemStorageID", "ret": "void", @@ -31514,7 +31516,7 @@ "cimguiname": "igSetNextWindowRefreshPolicy", "defaults": {}, "funcname": "SetNextWindowRefreshPolicy", - "location": "imgui_internal:2986", + "location": "imgui_internal:2992", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowRefreshPolicy", "ret": "void", @@ -31657,7 +31659,7 @@ "cimguiname": "igSetScrollFromPosX", "defaults": {}, "funcname": "SetScrollFromPosX", - "location": "imgui_internal:3037", + "location": "imgui_internal:3043", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_WindowPtr", "ret": "void", @@ -31713,7 +31715,7 @@ "cimguiname": "igSetScrollFromPosY", "defaults": {}, "funcname": "SetScrollFromPosY", - "location": "imgui_internal:3038", + "location": "imgui_internal:3044", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_WindowPtr", "ret": "void", @@ -31807,7 +31809,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui_internal:3035", + "location": "imgui_internal:3041", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_WindowPtr", "ret": "void", @@ -31853,7 +31855,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui_internal:3036", + "location": "imgui_internal:3042", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_WindowPtr", "ret": "void", @@ -31883,7 +31885,7 @@ "cimguiname": "igSetShortcutRouting", "defaults": {}, "funcname": "SetShortcutRouting", - "location": "imgui_internal:3225", + "location": "imgui_internal:3231", "namespace": "ImGui", "ov_cimguiname": "igSetShortcutRouting", "ret": "bool", @@ -31905,7 +31907,7 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui:951", + "location": "imgui:952", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -31927,7 +31929,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui:865", + "location": "imgui:866", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -31954,7 +31956,7 @@ "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui:737", + "location": "imgui:738", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -31980,7 +31982,7 @@ "cimguiname": "igSetTooltipV", "defaults": {}, "funcname": "SetTooltipV", - "location": "imgui:738", + "location": "imgui:739", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -32006,7 +32008,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "imgui_internal:3269", + "location": "imgui_internal:3275", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -32094,7 +32096,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui_internal:2966", + "location": "imgui_internal:2972", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_WindowPtr", "ret": "void", @@ -32175,7 +32177,7 @@ "cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "defaults": {}, "funcname": "SetWindowHiddenAndSkipItemsForCurrentFrame", - "location": "imgui_internal:2968", + "location": "imgui_internal:2974", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", "ret": "void", @@ -32205,7 +32207,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", - "location": "imgui_internal:2967", + "location": "imgui_internal:2973", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -32231,7 +32233,7 @@ "cimguiname": "igSetWindowParentWindowForFocusRoute", "defaults": {}, "funcname": "SetWindowParentWindowForFocusRoute", - "location": "imgui_internal:2969", + "location": "imgui_internal:2975", "namespace": "ImGui", "ov_cimguiname": "igSetWindowParentWindowForFocusRoute", "ret": "void", @@ -32319,7 +32321,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui_internal:2964", + "location": "imgui_internal:2970", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_WindowPtr", "ret": "void", @@ -32407,7 +32409,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui_internal:2965", + "location": "imgui_internal:2971", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_WindowPtr", "ret": "void", @@ -32433,7 +32435,7 @@ "cimguiname": "igSetWindowViewport", "defaults": {}, "funcname": "SetWindowViewport", - "location": "imgui_internal:3014", + "location": "imgui_internal:3020", "namespace": "ImGui", "ov_cimguiname": "igSetWindowViewport", "ret": "void", @@ -32479,7 +32481,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "imgui_internal:3453", + "location": "imgui_internal:3459", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -32529,7 +32531,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", - "location": "imgui_internal:3454", + "location": "imgui_internal:3460", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -32575,7 +32577,7 @@ "cimguiname": "igShadeVertsTransformPos", "defaults": {}, "funcname": "ShadeVertsTransformPos", - "location": "imgui_internal:3455", + "location": "imgui_internal:3461", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsTransformPos", "ret": "void", @@ -32603,7 +32605,7 @@ "flags": "0" }, "funcname": "Shortcut", - "location": "imgui:990", + "location": "imgui:991", "namespace": "ImGui", "ov_cimguiname": "igShortcut_Nil", "ret": "bool", @@ -32631,7 +32633,7 @@ "cimguiname": "igShortcut", "defaults": {}, "funcname": "Shortcut", - "location": "imgui_internal:3224", + "location": "imgui_internal:3230", "namespace": "ImGui", "ov_cimguiname": "igShortcut_ID", "ret": "bool", @@ -32725,7 +32727,7 @@ "cimguiname": "igShowFontAtlas", "defaults": {}, "funcname": "ShowFontAtlas", - "location": "imgui_internal:3484", + "location": "imgui_internal:3490", "namespace": "ImGui", "ov_cimguiname": "igShowFontAtlas", "ret": "void", @@ -32888,7 +32890,7 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", - "location": "imgui_internal:3075", + "location": "imgui_internal:3081", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -32905,7 +32907,7 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", - "location": "imgui_internal:2998", + "location": "imgui_internal:3004", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -32952,7 +32954,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui:614", + "location": "imgui:615", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -33006,7 +33008,7 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", - "location": "imgui_internal:3406", + "location": "imgui_internal:3412", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -33051,7 +33053,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui:610", + "location": "imgui:611", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -33096,7 +33098,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui:611", + "location": "imgui:612", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -33141,7 +33143,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui:612", + "location": "imgui:613", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -33186,7 +33188,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui:613", + "location": "imgui:614", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -33231,7 +33233,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui:615", + "location": "imgui:616", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -33276,7 +33278,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui:616", + "location": "imgui:617", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -33321,7 +33323,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui:617", + "location": "imgui:618", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -33366,7 +33368,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui:618", + "location": "imgui:619", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -33415,7 +33417,7 @@ "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui:619", + "location": "imgui:620", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -33468,7 +33470,7 @@ "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui:620", + "location": "imgui:621", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -33569,7 +33571,7 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "imgui_internal:3407", + "location": "imgui_internal:3413", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -33591,7 +33593,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", - "location": "imgui_internal:3004", + "location": "imgui_internal:3010", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -33689,7 +33691,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", - "location": "imgui_internal:3345", + "location": "imgui_internal:3351", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -33715,7 +33717,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", - "location": "imgui_internal:3339", + "location": "imgui_internal:3345", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -33741,7 +33743,7 @@ "cimguiname": "igTabBarFindTabByOrder", "defaults": {}, "funcname": "TabBarFindTabByOrder", - "location": "imgui_internal:3340", + "location": "imgui_internal:3346", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByOrder", "ret": "ImGuiTabItem*", @@ -33763,7 +33765,7 @@ "cimguiname": "igTabBarGetCurrentTab", "defaults": {}, "funcname": "TabBarGetCurrentTab", - "location": "imgui_internal:3341", + "location": "imgui_internal:3347", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetCurrentTab", "ret": "ImGuiTabItem*", @@ -33789,7 +33791,7 @@ "cimguiname": "igTabBarGetTabName", "defaults": {}, "funcname": "TabBarGetTabName", - "location": "imgui_internal:3343", + "location": "imgui_internal:3349", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabName", "ret": "const char*", @@ -33815,7 +33817,7 @@ "cimguiname": "igTabBarGetTabOrder", "defaults": {}, "funcname": "TabBarGetTabOrder", - "location": "imgui_internal:3342", + "location": "imgui_internal:3348", "namespace": "ImGui", "ov_cimguiname": "igTabBarGetTabOrder", "ret": "int", @@ -33837,7 +33839,7 @@ "cimguiname": "igTabBarProcessReorder", "defaults": {}, "funcname": "TabBarProcessReorder", - "location": "imgui_internal:3350", + "location": "imgui_internal:3356", "namespace": "ImGui", "ov_cimguiname": "igTabBarProcessReorder", "ret": "bool", @@ -33863,7 +33865,7 @@ "cimguiname": "igTabBarQueueFocus", "defaults": {}, "funcname": "TabBarQueueFocus", - "location": "imgui_internal:3346", + "location": "imgui_internal:3352", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueFocus_TabItemPtr", "ret": "void", @@ -33887,7 +33889,7 @@ "cimguiname": "igTabBarQueueFocus", "defaults": {}, "funcname": "TabBarQueueFocus", - "location": "imgui_internal:3347", + "location": "imgui_internal:3353", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueFocus_Str", "ret": "void", @@ -33917,7 +33919,7 @@ "cimguiname": "igTabBarQueueReorder", "defaults": {}, "funcname": "TabBarQueueReorder", - "location": "imgui_internal:3348", + "location": "imgui_internal:3354", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", @@ -33947,7 +33949,7 @@ "cimguiname": "igTabBarQueueReorderFromMousePos", "defaults": {}, "funcname": "TabBarQueueReorderFromMousePos", - "location": "imgui_internal:3349", + "location": "imgui_internal:3355", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorderFromMousePos", "ret": "void", @@ -33973,7 +33975,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", - "location": "imgui_internal:3344", + "location": "imgui_internal:3350", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -34007,7 +34009,7 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", - "location": "imgui_internal:3354", + "location": "imgui_internal:3360", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -34035,7 +34037,7 @@ "flags": "0" }, "funcname": "TabItemButton", - "location": "imgui:864", + "location": "imgui:865", "namespace": "ImGui", "ov_cimguiname": "igTabItemButton", "ret": "bool", @@ -34065,7 +34067,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3352", + "location": "imgui_internal:3358", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_Str", @@ -34090,7 +34092,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3353", + "location": "imgui_internal:3359", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_WindowPtr", @@ -34129,7 +34131,7 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", - "location": "imgui_internal:3351", + "location": "imgui_internal:3357", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -34187,7 +34189,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", - "location": "imgui_internal:3355", + "location": "imgui_internal:3361", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "void", @@ -34204,7 +34206,7 @@ "cimguiname": "igTableAngledHeadersRow", "defaults": {}, "funcname": "TableAngledHeadersRow", - "location": "imgui:829", + "location": "imgui:830", "namespace": "ImGui", "ov_cimguiname": "igTableAngledHeadersRow", "ret": "void", @@ -34242,7 +34244,7 @@ "cimguiname": "igTableAngledHeadersRowEx", "defaults": {}, "funcname": "TableAngledHeadersRowEx", - "location": "imgui_internal:3289", + "location": "imgui_internal:3295", "namespace": "ImGui", "ov_cimguiname": "igTableAngledHeadersRowEx", "ret": "void", @@ -34264,7 +34266,7 @@ "cimguiname": "igTableBeginApplyRequests", "defaults": {}, "funcname": "TableBeginApplyRequests", - "location": "imgui_internal:3296", + "location": "imgui_internal:3302", "namespace": "ImGui", "ov_cimguiname": "igTableBeginApplyRequests", "ret": "void", @@ -34290,7 +34292,7 @@ "cimguiname": "igTableBeginCell", "defaults": {}, "funcname": "TableBeginCell", - "location": "imgui_internal:3314", + "location": "imgui_internal:3320", "namespace": "ImGui", "ov_cimguiname": "igTableBeginCell", "ret": "void", @@ -34312,7 +34314,7 @@ "cimguiname": "igTableBeginContextMenuPopup", "defaults": {}, "funcname": "TableBeginContextMenuPopup", - "location": "imgui_internal:3303", + "location": "imgui_internal:3309", "namespace": "ImGui", "ov_cimguiname": "igTableBeginContextMenuPopup", "ret": "bool", @@ -34338,7 +34340,7 @@ "cimguiname": "igTableBeginInitMemory", "defaults": {}, "funcname": "TableBeginInitMemory", - "location": "imgui_internal:3295", + "location": "imgui_internal:3301", "namespace": "ImGui", "ov_cimguiname": "igTableBeginInitMemory", "ret": "void", @@ -34360,7 +34362,7 @@ "cimguiname": "igTableBeginRow", "defaults": {}, "funcname": "TableBeginRow", - "location": "imgui_internal:3312", + "location": "imgui_internal:3318", "namespace": "ImGui", "ov_cimguiname": "igTableBeginRow", "ret": "void", @@ -34386,7 +34388,7 @@ "cimguiname": "igTableCalcMaxColumnWidth", "defaults": {}, "funcname": "TableCalcMaxColumnWidth", - "location": "imgui_internal:3319", + "location": "imgui_internal:3325", "namespace": "ImGui", "ov_cimguiname": "igTableCalcMaxColumnWidth", "ret": "float", @@ -34408,7 +34410,7 @@ "cimguiname": "igTableDrawBorders", "defaults": {}, "funcname": "TableDrawBorders", - "location": "imgui_internal:3301", + "location": "imgui_internal:3307", "namespace": "ImGui", "ov_cimguiname": "igTableDrawBorders", "ret": "void", @@ -34434,7 +34436,7 @@ "cimguiname": "igTableDrawDefaultContextMenu", "defaults": {}, "funcname": "TableDrawDefaultContextMenu", - "location": "imgui_internal:3302", + "location": "imgui_internal:3308", "namespace": "ImGui", "ov_cimguiname": "igTableDrawDefaultContextMenu", "ret": "void", @@ -34456,7 +34458,7 @@ "cimguiname": "igTableEndCell", "defaults": {}, "funcname": "TableEndCell", - "location": "imgui_internal:3315", + "location": "imgui_internal:3321", "namespace": "ImGui", "ov_cimguiname": "igTableEndCell", "ret": "void", @@ -34478,7 +34480,7 @@ "cimguiname": "igTableEndRow", "defaults": {}, "funcname": "TableEndRow", - "location": "imgui_internal:3313", + "location": "imgui_internal:3319", "namespace": "ImGui", "ov_cimguiname": "igTableEndRow", "ret": "void", @@ -34500,7 +34502,7 @@ "cimguiname": "igTableFindByID", "defaults": {}, "funcname": "TableFindByID", - "location": "imgui_internal:3293", + "location": "imgui_internal:3299", "namespace": "ImGui", "ov_cimguiname": "igTableFindByID", "ret": "ImGuiTable*", @@ -34526,7 +34528,7 @@ "cimguiname": "igTableFixColumnSortDirection", "defaults": {}, "funcname": "TableFixColumnSortDirection", - "location": "imgui_internal:3310", + "location": "imgui_internal:3316", "namespace": "ImGui", "ov_cimguiname": "igTableFixColumnSortDirection", "ret": "void", @@ -34543,7 +34545,7 @@ "cimguiname": "igTableGcCompactSettings", "defaults": {}, "funcname": "TableGcCompactSettings", - "location": "imgui_internal:3325", + "location": "imgui_internal:3331", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactSettings", "ret": "void", @@ -34565,7 +34567,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3323", + "location": "imgui_internal:3329", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TablePtr", "ret": "void", @@ -34585,7 +34587,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3324", + "location": "imgui_internal:3330", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TableTempDataPtr", "ret": "void", @@ -34607,7 +34609,7 @@ "cimguiname": "igTableGetBoundSettings", "defaults": {}, "funcname": "TableGetBoundSettings", - "location": "imgui_internal:3331", + "location": "imgui_internal:3337", "namespace": "ImGui", "ov_cimguiname": "igTableGetBoundSettings", "ret": "ImGuiTableSettings*", @@ -34637,7 +34639,7 @@ "cimguiname": "igTableGetCellBgRect", "defaults": {}, "funcname": "TableGetCellBgRect", - "location": "imgui_internal:3316", + "location": "imgui_internal:3322", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTableGetCellBgRect", @@ -34655,7 +34657,7 @@ "cimguiname": "igTableGetColumnCount", "defaults": {}, "funcname": "TableGetColumnCount", - "location": "imgui:838", + "location": "imgui:839", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnCount", "ret": "int", @@ -34679,7 +34681,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnFlags", - "location": "imgui:842", + "location": "imgui:843", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnFlags", "ret": "ImGuiTableColumnFlags", @@ -34696,7 +34698,7 @@ "cimguiname": "igTableGetColumnIndex", "defaults": {}, "funcname": "TableGetColumnIndex", - "location": "imgui:839", + "location": "imgui:840", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnIndex", "ret": "int", @@ -34720,7 +34722,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnName", - "location": "imgui:841", + "location": "imgui:842", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_Int", "ret": "const char*", @@ -34744,7 +34746,7 @@ "cimguiname": "igTableGetColumnName", "defaults": {}, "funcname": "TableGetColumnName", - "location": "imgui_internal:3317", + "location": "imgui_internal:3323", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_TablePtr", "ret": "const char*", @@ -34766,7 +34768,7 @@ "cimguiname": "igTableGetColumnNextSortDirection", "defaults": {}, "funcname": "TableGetColumnNextSortDirection", - "location": "imgui_internal:3309", + "location": "imgui_internal:3315", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnNextSortDirection", "ret": "ImGuiSortDirection", @@ -34798,7 +34800,7 @@ "instance_no": "0" }, "funcname": "TableGetColumnResizeID", - "location": "imgui_internal:3318", + "location": "imgui_internal:3324", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnResizeID", "ret": "ImGuiID", @@ -34824,7 +34826,7 @@ "cimguiname": "igTableGetColumnWidthAuto", "defaults": {}, "funcname": "TableGetColumnWidthAuto", - "location": "imgui_internal:3311", + "location": "imgui_internal:3317", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnWidthAuto", "ret": "float", @@ -34841,7 +34843,7 @@ "cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "defaults": {}, "funcname": "TableGetHeaderAngledMaxLabelWidth", - "location": "imgui_internal:3286", + "location": "imgui_internal:3292", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderAngledMaxLabelWidth", "ret": "float", @@ -34858,7 +34860,7 @@ "cimguiname": "igTableGetHeaderRowHeight", "defaults": {}, "funcname": "TableGetHeaderRowHeight", - "location": "imgui_internal:3285", + "location": "imgui_internal:3291", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderRowHeight", "ret": "float", @@ -34875,7 +34877,7 @@ "cimguiname": "igTableGetHoveredColumn", "defaults": {}, "funcname": "TableGetHoveredColumn", - "location": "imgui:844", + "location": "imgui:845", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredColumn", "ret": "int", @@ -34892,7 +34894,7 @@ "cimguiname": "igTableGetHoveredRow", "defaults": {}, "funcname": "TableGetHoveredRow", - "location": "imgui_internal:3284", + "location": "imgui_internal:3290", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredRow", "ret": "int", @@ -34918,7 +34920,7 @@ "cimguiname": "igTableGetInstanceData", "defaults": {}, "funcname": "TableGetInstanceData", - "location": "imgui_internal:3305", + "location": "imgui_internal:3311", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceData", "ret": "ImGuiTableInstanceData*", @@ -34944,7 +34946,7 @@ "cimguiname": "igTableGetInstanceID", "defaults": {}, "funcname": "TableGetInstanceID", - "location": "imgui_internal:3306", + "location": "imgui_internal:3312", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceID", "ret": "ImGuiID", @@ -34961,7 +34963,7 @@ "cimguiname": "igTableGetRowIndex", "defaults": {}, "funcname": "TableGetRowIndex", - "location": "imgui:840", + "location": "imgui:841", "namespace": "ImGui", "ov_cimguiname": "igTableGetRowIndex", "ret": "int", @@ -34978,7 +34980,7 @@ "cimguiname": "igTableGetSortSpecs", "defaults": {}, "funcname": "TableGetSortSpecs", - "location": "imgui:837", + "location": "imgui:838", "namespace": "ImGui", "ov_cimguiname": "igTableGetSortSpecs", "ret": "ImGuiTableSortSpecs*", @@ -35000,7 +35002,7 @@ "cimguiname": "igTableHeader", "defaults": {}, "funcname": "TableHeader", - "location": "imgui:827", + "location": "imgui:828", "namespace": "ImGui", "ov_cimguiname": "igTableHeader", "ret": "void", @@ -35017,7 +35019,7 @@ "cimguiname": "igTableHeadersRow", "defaults": {}, "funcname": "TableHeadersRow", - "location": "imgui:828", + "location": "imgui:829", "namespace": "ImGui", "ov_cimguiname": "igTableHeadersRow", "ret": "void", @@ -35039,7 +35041,7 @@ "cimguiname": "igTableLoadSettings", "defaults": {}, "funcname": "TableLoadSettings", - "location": "imgui_internal:3328", + "location": "imgui_internal:3334", "namespace": "ImGui", "ov_cimguiname": "igTableLoadSettings", "ret": "void", @@ -35061,7 +35063,7 @@ "cimguiname": "igTableMergeDrawChannels", "defaults": {}, "funcname": "TableMergeDrawChannels", - "location": "imgui_internal:3304", + "location": "imgui_internal:3310", "namespace": "ImGui", "ov_cimguiname": "igTableMergeDrawChannels", "ret": "void", @@ -35078,7 +35080,7 @@ "cimguiname": "igTableNextColumn", "defaults": {}, "funcname": "TableNextColumn", - "location": "imgui:814", + "location": "imgui:815", "namespace": "ImGui", "ov_cimguiname": "igTableNextColumn", "ret": "bool", @@ -35107,7 +35109,7 @@ "row_flags": "0" }, "funcname": "TableNextRow", - "location": "imgui:813", + "location": "imgui:814", "namespace": "ImGui", "ov_cimguiname": "igTableNextRow", "ret": "void", @@ -35131,7 +35133,7 @@ "column_n": "-1" }, "funcname": "TableOpenContextMenu", - "location": "imgui_internal:3281", + "location": "imgui_internal:3287", "namespace": "ImGui", "ov_cimguiname": "igTableOpenContextMenu", "ret": "void", @@ -35148,7 +35150,7 @@ "cimguiname": "igTablePopBackgroundChannel", "defaults": {}, "funcname": "TablePopBackgroundChannel", - "location": "imgui_internal:3288", + "location": "imgui_internal:3294", "namespace": "ImGui", "ov_cimguiname": "igTablePopBackgroundChannel", "ret": "void", @@ -35165,7 +35167,7 @@ "cimguiname": "igTablePushBackgroundChannel", "defaults": {}, "funcname": "TablePushBackgroundChannel", - "location": "imgui_internal:3287", + "location": "imgui_internal:3293", "namespace": "ImGui", "ov_cimguiname": "igTablePushBackgroundChannel", "ret": "void", @@ -35187,7 +35189,7 @@ "cimguiname": "igTableRemove", "defaults": {}, "funcname": "TableRemove", - "location": "imgui_internal:3322", + "location": "imgui_internal:3328", "namespace": "ImGui", "ov_cimguiname": "igTableRemove", "ret": "void", @@ -35209,7 +35211,7 @@ "cimguiname": "igTableResetSettings", "defaults": {}, "funcname": "TableResetSettings", - "location": "imgui_internal:3330", + "location": "imgui_internal:3336", "namespace": "ImGui", "ov_cimguiname": "igTableResetSettings", "ret": "void", @@ -35231,7 +35233,7 @@ "cimguiname": "igTableSaveSettings", "defaults": {}, "funcname": "TableSaveSettings", - "location": "imgui_internal:3329", + "location": "imgui_internal:3335", "namespace": "ImGui", "ov_cimguiname": "igTableSaveSettings", "ret": "void", @@ -35263,7 +35265,7 @@ "column_n": "-1" }, "funcname": "TableSetBgColor", - "location": "imgui:845", + "location": "imgui:846", "namespace": "ImGui", "ov_cimguiname": "igTableSetBgColor", "ret": "void", @@ -35289,7 +35291,7 @@ "cimguiname": "igTableSetColumnEnabled", "defaults": {}, "funcname": "TableSetColumnEnabled", - "location": "imgui:843", + "location": "imgui:844", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnEnabled", "ret": "void", @@ -35311,7 +35313,7 @@ "cimguiname": "igTableSetColumnIndex", "defaults": {}, "funcname": "TableSetColumnIndex", - "location": "imgui:815", + "location": "imgui:816", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnIndex", "ret": "bool", @@ -35341,7 +35343,7 @@ "cimguiname": "igTableSetColumnSortDirection", "defaults": {}, "funcname": "TableSetColumnSortDirection", - "location": "imgui_internal:3283", + "location": "imgui_internal:3289", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnSortDirection", "ret": "void", @@ -35367,7 +35369,7 @@ "cimguiname": "igTableSetColumnWidth", "defaults": {}, "funcname": "TableSetColumnWidth", - "location": "imgui_internal:3282", + "location": "imgui_internal:3288", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidth", "ret": "void", @@ -35389,7 +35391,7 @@ "cimguiname": "igTableSetColumnWidthAutoAll", "defaults": {}, "funcname": "TableSetColumnWidthAutoAll", - "location": "imgui_internal:3321", + "location": "imgui_internal:3327", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoAll", "ret": "void", @@ -35415,7 +35417,7 @@ "cimguiname": "igTableSetColumnWidthAutoSingle", "defaults": {}, "funcname": "TableSetColumnWidthAutoSingle", - "location": "imgui_internal:3320", + "location": "imgui_internal:3326", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoSingle", "ret": "void", @@ -35432,7 +35434,7 @@ "cimguiname": "igTableSettingsAddSettingsHandler", "defaults": {}, "funcname": "TableSettingsAddSettingsHandler", - "location": "imgui_internal:3332", + "location": "imgui_internal:3338", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsAddSettingsHandler", "ret": "void", @@ -35458,7 +35460,7 @@ "cimguiname": "igTableSettingsCreate", "defaults": {}, "funcname": "TableSettingsCreate", - "location": "imgui_internal:3333", + "location": "imgui_internal:3339", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsCreate", "ret": "ImGuiTableSettings*", @@ -35480,7 +35482,7 @@ "cimguiname": "igTableSettingsFindByID", "defaults": {}, "funcname": "TableSettingsFindByID", - "location": "imgui_internal:3334", + "location": "imgui_internal:3340", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsFindByID", "ret": "ImGuiTableSettings*", @@ -35518,7 +35520,7 @@ "user_id": "0" }, "funcname": "TableSetupColumn", - "location": "imgui:825", + "location": "imgui:826", "namespace": "ImGui", "ov_cimguiname": "igTableSetupColumn", "ret": "void", @@ -35540,7 +35542,7 @@ "cimguiname": "igTableSetupDrawChannels", "defaults": {}, "funcname": "TableSetupDrawChannels", - "location": "imgui_internal:3297", + "location": "imgui_internal:3303", "namespace": "ImGui", "ov_cimguiname": "igTableSetupDrawChannels", "ret": "void", @@ -35566,7 +35568,7 @@ "cimguiname": "igTableSetupScrollFreeze", "defaults": {}, "funcname": "TableSetupScrollFreeze", - "location": "imgui:826", + "location": "imgui:827", "namespace": "ImGui", "ov_cimguiname": "igTableSetupScrollFreeze", "ret": "void", @@ -35588,7 +35590,7 @@ "cimguiname": "igTableSortSpecsBuild", "defaults": {}, "funcname": "TableSortSpecsBuild", - "location": "imgui_internal:3308", + "location": "imgui_internal:3314", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsBuild", "ret": "void", @@ -35610,7 +35612,7 @@ "cimguiname": "igTableSortSpecsSanitize", "defaults": {}, "funcname": "TableSortSpecsSanitize", - "location": "imgui_internal:3307", + "location": "imgui_internal:3313", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsSanitize", "ret": "void", @@ -35632,7 +35634,7 @@ "cimguiname": "igTableUpdateBorders", "defaults": {}, "funcname": "TableUpdateBorders", - "location": "imgui_internal:3299", + "location": "imgui_internal:3305", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateBorders", "ret": "void", @@ -35654,7 +35656,7 @@ "cimguiname": "igTableUpdateColumnsWeightFromWidth", "defaults": {}, "funcname": "TableUpdateColumnsWeightFromWidth", - "location": "imgui_internal:3300", + "location": "imgui_internal:3306", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateColumnsWeightFromWidth", "ret": "void", @@ -35676,7 +35678,7 @@ "cimguiname": "igTableUpdateLayout", "defaults": {}, "funcname": "TableUpdateLayout", - "location": "imgui_internal:3298", + "location": "imgui_internal:3304", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateLayout", "ret": "void", @@ -35698,7 +35700,7 @@ "cimguiname": "igTeleportMousePos", "defaults": {}, "funcname": "TeleportMousePos", - "location": "imgui_internal:3173", + "location": "imgui_internal:3179", "namespace": "ImGui", "ov_cimguiname": "igTeleportMousePos", "ret": "void", @@ -35720,7 +35722,7 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", - "location": "imgui_internal:3440", + "location": "imgui_internal:3446", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -35773,7 +35775,7 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "imgui_internal:3439", + "location": "imgui_internal:3445", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -35815,7 +35817,7 @@ "cimguiname": "igTempInputText", "defaults": {}, "funcname": "TempInputText", - "location": "imgui_internal:3438", + "location": "imgui_internal:3444", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -35841,7 +35843,7 @@ "cimguiname": "igTestKeyOwner", "defaults": {}, "funcname": "TestKeyOwner", - "location": "imgui_internal:3192", + "location": "imgui_internal:3198", "namespace": "ImGui", "ov_cimguiname": "igTestKeyOwner", "ret": "bool", @@ -35867,7 +35869,7 @@ "cimguiname": "igTestShortcutRouting", "defaults": {}, "funcname": "TestShortcutRouting", - "location": "imgui_internal:3226", + "location": "imgui_internal:3232", "namespace": "ImGui", "ov_cimguiname": "igTestShortcutRouting", "ret": "bool", @@ -36041,7 +36043,7 @@ "text_end": "NULL" }, "funcname": "TextEx", - "location": "imgui_internal:3384", + "location": "imgui_internal:3390", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -36220,7 +36222,7 @@ "cimguiname": "igTreeNode", "defaults": {}, "funcname": "TreeNode", - "location": "imgui:655", + "location": "imgui:656", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Str", "ret": "bool", @@ -36249,7 +36251,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:656", + "location": "imgui:657", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_StrStr", "ret": "bool", @@ -36278,7 +36280,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:657", + "location": "imgui:658", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Ptr", "ret": "bool", @@ -36314,7 +36316,7 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "imgui_internal:3410", + "location": "imgui_internal:3416", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -36342,7 +36344,7 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui:660", + "location": "imgui:661", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Str", "ret": "bool", @@ -36375,7 +36377,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:661", + "location": "imgui:662", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_StrStr", "ret": "bool", @@ -36408,7 +36410,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:662", + "location": "imgui:663", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Ptr", "ret": "bool", @@ -36442,7 +36444,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:663", + "location": "imgui:664", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Str", "ret": "bool", @@ -36474,7 +36476,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:664", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Ptr", "ret": "bool", @@ -36496,7 +36498,7 @@ "cimguiname": "igTreeNodeGetOpen", "defaults": {}, "funcname": "TreeNodeGetOpen", - "location": "imgui_internal:3412", + "location": "imgui_internal:3418", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeGetOpen", "ret": "bool", @@ -36522,7 +36524,7 @@ "cimguiname": "igTreeNodeSetOpen", "defaults": {}, "funcname": "TreeNodeSetOpen", - "location": "imgui_internal:3413", + "location": "imgui_internal:3419", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeSetOpen", "ret": "void", @@ -36548,7 +36550,7 @@ "cimguiname": "igTreeNodeUpdateNextOpen", "defaults": {}, "funcname": "TreeNodeUpdateNextOpen", - "location": "imgui_internal:3414", + "location": "imgui_internal:3420", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeUpdateNextOpen", "ret": "bool", @@ -36578,7 +36580,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:658", + "location": "imgui:659", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Str", "ret": "bool", @@ -36606,7 +36608,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:659", + "location": "imgui:660", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Ptr", "ret": "bool", @@ -36623,7 +36625,7 @@ "cimguiname": "igTreePop", "defaults": {}, "funcname": "TreePop", - "location": "imgui:667", + "location": "imgui:668", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -36645,7 +36647,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:665", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Str", "ret": "void", @@ -36665,7 +36667,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:666", + "location": "imgui:667", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Ptr", "ret": "void", @@ -36687,7 +36689,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", - "location": "imgui_internal:3411", + "location": "imgui_internal:3417", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -36723,7 +36725,7 @@ "cimguiname": "igTypingSelectFindBestLeadingMatch", "defaults": {}, "funcname": "TypingSelectFindBestLeadingMatch", - "location": "imgui_internal:3254", + "location": "imgui_internal:3260", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindBestLeadingMatch", "ret": "int", @@ -36763,7 +36765,7 @@ "cimguiname": "igTypingSelectFindMatch", "defaults": {}, "funcname": "TypingSelectFindMatch", - "location": "imgui_internal:3252", + "location": "imgui_internal:3258", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindMatch", "ret": "int", @@ -36803,7 +36805,7 @@ "cimguiname": "igTypingSelectFindNextSingleCharMatch", "defaults": {}, "funcname": "TypingSelectFindNextSingleCharMatch", - "location": "imgui_internal:3253", + "location": "imgui_internal:3259", "namespace": "ImGui", "ov_cimguiname": "igTypingSelectFindNextSingleCharMatch", "ret": "int", @@ -36844,7 +36846,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "imgui_internal:3002", + "location": "imgui_internal:3008", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -36866,7 +36868,7 @@ "cimguiname": "igUpdateInputEvents", "defaults": {}, "funcname": "UpdateInputEvents", - "location": "imgui_internal:3001", + "location": "imgui_internal:3007", "namespace": "ImGui", "ov_cimguiname": "igUpdateInputEvents", "ret": "void", @@ -36883,7 +36885,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "imgui_internal:3006", + "location": "imgui_internal:3012", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -36900,7 +36902,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "imgui_internal:3005", + "location": "imgui_internal:3011", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -36930,7 +36932,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", - "location": "imgui_internal:2957", + "location": "imgui_internal:2963", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -36952,7 +36954,7 @@ "cimguiname": "igUpdateWindowSkipRefresh", "defaults": {}, "funcname": "UpdateWindowSkipRefresh", - "location": "imgui_internal:2958", + "location": "imgui_internal:2964", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowSkipRefresh", "ret": "void", @@ -37001,7 +37003,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui:621", + "location": "imgui:622", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -37050,7 +37052,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui:622", + "location": "imgui:623", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -37103,7 +37105,7 @@ "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui:623", + "location": "imgui:624", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -37129,7 +37131,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:712", + "location": "imgui:713", "namespace": "ImGui", "ov_cimguiname": "igValue_Bool", "ret": "void", @@ -37153,7 +37155,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:713", + "location": "imgui:714", "namespace": "ImGui", "ov_cimguiname": "igValue_Int", "ret": "void", @@ -37177,7 +37179,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:714", + "location": "imgui:715", "namespace": "ImGui", "ov_cimguiname": "igValue_Uint", "ret": "void", @@ -37207,7 +37209,7 @@ "float_format": "NULL" }, "funcname": "Value", - "location": "imgui:715", + "location": "imgui:716", "namespace": "ImGui", "ov_cimguiname": "igValue_Float", "ret": "void", @@ -37237,7 +37239,7 @@ "cimguiname": "igWindowPosAbsToRel", "defaults": {}, "funcname": "WindowPosAbsToRel", - "location": "imgui_internal:2972", + "location": "imgui_internal:2978", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowPosAbsToRel", @@ -37268,7 +37270,7 @@ "cimguiname": "igWindowPosRelToAbs", "defaults": {}, "funcname": "WindowPosRelToAbs", - "location": "imgui_internal:2973", + "location": "imgui_internal:2979", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowPosRelToAbs", @@ -37299,7 +37301,7 @@ "cimguiname": "igWindowRectAbsToRel", "defaults": {}, "funcname": "WindowRectAbsToRel", - "location": "imgui_internal:2970", + "location": "imgui_internal:2976", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectAbsToRel", @@ -37330,7 +37332,7 @@ "cimguiname": "igWindowRectRelToAbs", "defaults": {}, "funcname": "WindowRectRelToAbs", - "location": "imgui_internal:2971", + "location": "imgui_internal:2977", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectRelToAbs", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index 95f9b66..e7300ee 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -11,7 +11,7 @@ defs["ImBitArray_ClearAllBits"][1]["call_args"] = "()" defs["ImBitArray_ClearAllBits"][1]["cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["defaults"] = {} defs["ImBitArray_ClearAllBits"][1]["funcname"] = "ClearAllBits" -defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:588" +defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:592" defs["ImBitArray_ClearAllBits"][1]["ov_cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["ret"] = "void" defs["ImBitArray_ClearAllBits"][1]["signature"] = "()" @@ -33,7 +33,7 @@ defs["ImBitArray_ClearBit"][1]["call_args"] = "(n)" defs["ImBitArray_ClearBit"][1]["cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["defaults"] = {} defs["ImBitArray_ClearBit"][1]["funcname"] = "ClearBit" -defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:592" +defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:596" defs["ImBitArray_ClearBit"][1]["ov_cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["ret"] = "void" defs["ImBitArray_ClearBit"][1]["signature"] = "(int)" @@ -50,7 +50,7 @@ defs["ImBitArray_ImBitArray"][1]["cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["constructor"] = true defs["ImBitArray_ImBitArray"][1]["defaults"] = {} defs["ImBitArray_ImBitArray"][1]["funcname"] = "ImBitArray" -defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:587" +defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:591" defs["ImBitArray_ImBitArray"][1]["ov_cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["signature"] = "()" defs["ImBitArray_ImBitArray"][1]["stname"] = "ImBitArray" @@ -68,7 +68,7 @@ defs["ImBitArray_SetAllBits"][1]["call_args"] = "()" defs["ImBitArray_SetAllBits"][1]["cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["defaults"] = {} defs["ImBitArray_SetAllBits"][1]["funcname"] = "SetAllBits" -defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:589" +defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:593" defs["ImBitArray_SetAllBits"][1]["ov_cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["ret"] = "void" defs["ImBitArray_SetAllBits"][1]["signature"] = "()" @@ -90,7 +90,7 @@ defs["ImBitArray_SetBit"][1]["call_args"] = "(n)" defs["ImBitArray_SetBit"][1]["cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["defaults"] = {} defs["ImBitArray_SetBit"][1]["funcname"] = "SetBit" -defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:591" +defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:595" defs["ImBitArray_SetBit"][1]["ov_cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["ret"] = "void" defs["ImBitArray_SetBit"][1]["signature"] = "(int)" @@ -115,7 +115,7 @@ defs["ImBitArray_SetBitRange"][1]["call_args"] = "(n,n2)" defs["ImBitArray_SetBitRange"][1]["cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["defaults"] = {} defs["ImBitArray_SetBitRange"][1]["funcname"] = "SetBitRange" -defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:593" +defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:597" defs["ImBitArray_SetBitRange"][1]["ov_cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["ret"] = "void" defs["ImBitArray_SetBitRange"][1]["signature"] = "(int,int)" @@ -137,7 +137,7 @@ defs["ImBitArray_TestBit"][1]["call_args"] = "(n)" defs["ImBitArray_TestBit"][1]["cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["defaults"] = {} defs["ImBitArray_TestBit"][1]["funcname"] = "TestBit" -defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:590" +defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:594" defs["ImBitArray_TestBit"][1]["ov_cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["ret"] = "bool" defs["ImBitArray_TestBit"][1]["signature"] = "(int)const" @@ -155,7 +155,7 @@ defs["ImBitArray_destroy"][1]["call_args"] = "(self)" defs["ImBitArray_destroy"][1]["cimguiname"] = "ImBitArray_destroy" defs["ImBitArray_destroy"][1]["defaults"] = {} defs["ImBitArray_destroy"][1]["destructor"] = true -defs["ImBitArray_destroy"][1]["location"] = "imgui_internal:587" +defs["ImBitArray_destroy"][1]["location"] = "imgui_internal:591" defs["ImBitArray_destroy"][1]["ov_cimguiname"] = "ImBitArray_destroy" defs["ImBitArray_destroy"][1]["ret"] = "void" defs["ImBitArray_destroy"][1]["signature"] = "(ImBitArray*)" @@ -174,7 +174,7 @@ defs["ImBitVector_Clear"][1]["call_args"] = "()" defs["ImBitVector_Clear"][1]["cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["defaults"] = {} defs["ImBitVector_Clear"][1]["funcname"] = "Clear" -defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:603" +defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:607" defs["ImBitVector_Clear"][1]["ov_cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["ret"] = "void" defs["ImBitVector_Clear"][1]["signature"] = "()" @@ -195,7 +195,7 @@ defs["ImBitVector_ClearBit"][1]["call_args"] = "(n)" defs["ImBitVector_ClearBit"][1]["cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["defaults"] = {} defs["ImBitVector_ClearBit"][1]["funcname"] = "ClearBit" -defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:606" +defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:610" defs["ImBitVector_ClearBit"][1]["ov_cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["ret"] = "void" defs["ImBitVector_ClearBit"][1]["signature"] = "(int)" @@ -216,7 +216,7 @@ defs["ImBitVector_Create"][1]["call_args"] = "(sz)" defs["ImBitVector_Create"][1]["cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["defaults"] = {} defs["ImBitVector_Create"][1]["funcname"] = "Create" -defs["ImBitVector_Create"][1]["location"] = "imgui_internal:602" +defs["ImBitVector_Create"][1]["location"] = "imgui_internal:606" defs["ImBitVector_Create"][1]["ov_cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["ret"] = "void" defs["ImBitVector_Create"][1]["signature"] = "(int)" @@ -237,7 +237,7 @@ defs["ImBitVector_SetBit"][1]["call_args"] = "(n)" defs["ImBitVector_SetBit"][1]["cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["defaults"] = {} defs["ImBitVector_SetBit"][1]["funcname"] = "SetBit" -defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:605" +defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:609" defs["ImBitVector_SetBit"][1]["ov_cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["ret"] = "void" defs["ImBitVector_SetBit"][1]["signature"] = "(int)" @@ -258,7 +258,7 @@ defs["ImBitVector_TestBit"][1]["call_args"] = "(n)" defs["ImBitVector_TestBit"][1]["cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["defaults"] = {} defs["ImBitVector_TestBit"][1]["funcname"] = "TestBit" -defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:604" +defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:608" defs["ImBitVector_TestBit"][1]["ov_cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["ret"] = "bool" defs["ImBitVector_TestBit"][1]["signature"] = "(int)const" @@ -279,7 +279,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:707" +defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:711" 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)" @@ -298,7 +298,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:708" +defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:712" defs["ImChunkStream_begin"][1]["ov_cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["ret"] = "T*" defs["ImChunkStream_begin"][1]["signature"] = "()" @@ -320,7 +320,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:710" +defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:714" 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*)" @@ -339,7 +339,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:704" +defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:708" defs["ImChunkStream_clear"][1]["ov_cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["ret"] = "void" defs["ImChunkStream_clear"][1]["signature"] = "()" @@ -358,7 +358,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:705" +defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:709" defs["ImChunkStream_empty"][1]["ov_cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["ret"] = "bool" defs["ImChunkStream_empty"][1]["signature"] = "()const" @@ -377,7 +377,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:711" +defs["ImChunkStream_end"][1]["location"] = "imgui_internal:715" defs["ImChunkStream_end"][1]["ov_cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["ret"] = "T*" defs["ImChunkStream_end"][1]["signature"] = "()" @@ -399,7 +399,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:709" +defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:713" defs["ImChunkStream_next_chunk"][1]["ov_cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["ret"] = "T*" defs["ImChunkStream_next_chunk"][1]["signature"] = "(T*)" @@ -421,7 +421,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:712" +defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:716" 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*)" @@ -443,7 +443,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:713" +defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:717" 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)" @@ -462,7 +462,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:706" +defs["ImChunkStream_size"][1]["location"] = "imgui_internal:710" defs["ImChunkStream_size"][1]["ov_cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["ret"] = "int" defs["ImChunkStream_size"][1]["signature"] = "()const" @@ -485,7 +485,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:714" +defs["ImChunkStream_swap"][1]["location"] = "imgui_internal:718" defs["ImChunkStream_swap"][1]["ov_cimguiname"] = "ImChunkStream_swap" defs["ImChunkStream_swap"][1]["ret"] = "void" defs["ImChunkStream_swap"][1]["signature"] = "(ImChunkStream_T *)" @@ -518,7 +518,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:2755" +defs["ImColor_HSV"][1]["location"] = "imgui:2761" defs["ImColor_HSV"][1]["nonUDT"] = 1 defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "void" @@ -535,7 +535,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:2745" +defs["ImColor_ImColor"][1]["location"] = "imgui:2751" defs["ImColor_ImColor"][1]["ov_cimguiname"] = "ImColor_ImColor_Nil" defs["ImColor_ImColor"][1]["signature"] = "()" defs["ImColor_ImColor"][1]["stname"] = "ImColor" @@ -561,7 +561,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:2746" +defs["ImColor_ImColor"][2]["location"] = "imgui:2752" defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColor_Float" defs["ImColor_ImColor"][2]["signature"] = "(float,float,float,float)" defs["ImColor_ImColor"][2]["stname"] = "ImColor" @@ -577,7 +577,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:2747" +defs["ImColor_ImColor"][3]["location"] = "imgui:2753" defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColor_Vec4" defs["ImColor_ImColor"][3]["signature"] = "(const ImVec4)" defs["ImColor_ImColor"][3]["stname"] = "ImColor" @@ -603,7 +603,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:2748" +defs["ImColor_ImColor"][4]["location"] = "imgui:2754" defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColor_Int" defs["ImColor_ImColor"][4]["signature"] = "(int,int,int,int)" defs["ImColor_ImColor"][4]["stname"] = "ImColor" @@ -619,7 +619,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:2749" +defs["ImColor_ImColor"][5]["location"] = "imgui:2755" defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColor_U32" defs["ImColor_ImColor"][5]["signature"] = "(ImU32)" defs["ImColor_ImColor"][5]["stname"] = "ImColor" @@ -653,7 +653,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:2754" +defs["ImColor_SetHSV"][1]["location"] = "imgui:2760" defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" @@ -670,7 +670,7 @@ defs["ImColor_destroy"][1]["call_args"] = "(self)" defs["ImColor_destroy"][1]["cimguiname"] = "ImColor_destroy" defs["ImColor_destroy"][1]["defaults"] = {} defs["ImColor_destroy"][1]["destructor"] = true -defs["ImColor_destroy"][1]["location"] = "imgui:2745" +defs["ImColor_destroy"][1]["location"] = "imgui:2751" defs["ImColor_destroy"][1]["ov_cimguiname"] = "ImColor_destroy" defs["ImColor_destroy"][1]["ret"] = "void" defs["ImColor_destroy"][1]["signature"] = "(ImColor*)" @@ -688,7 +688,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:2953" +defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2959" defs["ImDrawCmd_GetTexID"][1]["ov_cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["ret"] = "ImTextureID" defs["ImDrawCmd_GetTexID"][1]["signature"] = "()const" @@ -704,7 +704,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:2950" +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2956" defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -720,7 +720,7 @@ defs["ImDrawCmd_destroy"][1]["call_args"] = "(self)" defs["ImDrawCmd_destroy"][1]["cimguiname"] = "ImDrawCmd_destroy" defs["ImDrawCmd_destroy"][1]["defaults"] = {} defs["ImDrawCmd_destroy"][1]["destructor"] = true -defs["ImDrawCmd_destroy"][1]["location"] = "imgui:2950" +defs["ImDrawCmd_destroy"][1]["location"] = "imgui:2956" defs["ImDrawCmd_destroy"][1]["ov_cimguiname"] = "ImDrawCmd_destroy" defs["ImDrawCmd_destroy"][1]["ret"] = "void" defs["ImDrawCmd_destroy"][1]["signature"] = "(ImDrawCmd*)" @@ -736,7 +736,7 @@ defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["cimguiname"] = "ImDrawDataBuilde defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["constructor"] = true defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["defaults"] = {} defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["funcname"] = "ImDrawDataBuilder" -defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["location"] = "imgui_internal:793" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["location"] = "imgui_internal:797" defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["ov_cimguiname"] = "ImDrawDataBuilder_ImDrawDataBuilder" defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["signature"] = "()" defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["stname"] = "ImDrawDataBuilder" @@ -752,7 +752,7 @@ defs["ImDrawDataBuilder_destroy"][1]["call_args"] = "(self)" defs["ImDrawDataBuilder_destroy"][1]["cimguiname"] = "ImDrawDataBuilder_destroy" defs["ImDrawDataBuilder_destroy"][1]["defaults"] = {} defs["ImDrawDataBuilder_destroy"][1]["destructor"] = true -defs["ImDrawDataBuilder_destroy"][1]["location"] = "imgui_internal:793" +defs["ImDrawDataBuilder_destroy"][1]["location"] = "imgui_internal:797" defs["ImDrawDataBuilder_destroy"][1]["ov_cimguiname"] = "ImDrawDataBuilder_destroy" defs["ImDrawDataBuilder_destroy"][1]["ret"] = "void" defs["ImDrawDataBuilder_destroy"][1]["signature"] = "(ImDrawDataBuilder*)" @@ -773,7 +773,7 @@ defs["ImDrawData_AddDrawList"][1]["call_args"] = "(draw_list)" defs["ImDrawData_AddDrawList"][1]["cimguiname"] = "ImDrawData_AddDrawList" defs["ImDrawData_AddDrawList"][1]["defaults"] = {} defs["ImDrawData_AddDrawList"][1]["funcname"] = "AddDrawList" -defs["ImDrawData_AddDrawList"][1]["location"] = "imgui:3212" +defs["ImDrawData_AddDrawList"][1]["location"] = "imgui:3219" defs["ImDrawData_AddDrawList"][1]["ov_cimguiname"] = "ImDrawData_AddDrawList" defs["ImDrawData_AddDrawList"][1]["ret"] = "void" defs["ImDrawData_AddDrawList"][1]["signature"] = "(ImDrawList*)" @@ -791,7 +791,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:3211" +defs["ImDrawData_Clear"][1]["location"] = "imgui:3218" defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" @@ -809,7 +809,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:3213" +defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:3220" defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" @@ -825,7 +825,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:3210" +defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:3217" defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" @@ -845,7 +845,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:3214" +defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:3221" defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" @@ -862,7 +862,7 @@ defs["ImDrawData_destroy"][1]["call_args"] = "(self)" defs["ImDrawData_destroy"][1]["cimguiname"] = "ImDrawData_destroy" defs["ImDrawData_destroy"][1]["defaults"] = {} defs["ImDrawData_destroy"][1]["destructor"] = true -defs["ImDrawData_destroy"][1]["location"] = "imgui:3210" +defs["ImDrawData_destroy"][1]["location"] = "imgui:3217" defs["ImDrawData_destroy"][1]["ov_cimguiname"] = "ImDrawData_destroy" defs["ImDrawData_destroy"][1]["ret"] = "void" defs["ImDrawData_destroy"][1]["signature"] = "(ImDrawData*)" @@ -878,7 +878,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:784" +defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:788" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["ov_cimguiname"] = "ImDrawListSharedData_ImDrawListSharedData" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["signature"] = "()" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["stname"] = "ImDrawListSharedData" @@ -898,7 +898,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:785" +defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["location"] = "imgui_internal:789" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ov_cimguiname"] = "ImDrawListSharedData_SetCircleTessellationMaxError" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ret"] = "void" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["signature"] = "(float)" @@ -915,7 +915,7 @@ defs["ImDrawListSharedData_destroy"][1]["call_args"] = "(self)" defs["ImDrawListSharedData_destroy"][1]["cimguiname"] = "ImDrawListSharedData_destroy" defs["ImDrawListSharedData_destroy"][1]["defaults"] = {} defs["ImDrawListSharedData_destroy"][1]["destructor"] = true -defs["ImDrawListSharedData_destroy"][1]["location"] = "imgui_internal:784" +defs["ImDrawListSharedData_destroy"][1]["location"] = "imgui_internal:788" defs["ImDrawListSharedData_destroy"][1]["ov_cimguiname"] = "ImDrawListSharedData_destroy" defs["ImDrawListSharedData_destroy"][1]["ret"] = "void" defs["ImDrawListSharedData_destroy"][1]["signature"] = "(ImDrawListSharedData*)" @@ -933,7 +933,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:2998" +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:3004" defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -951,7 +951,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:2999" +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:3005" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -967,7 +967,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:2996" +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:3002" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -987,7 +987,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:3001" +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:3007" defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -1011,7 +1011,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:3002" +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:3008" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -1035,7 +1035,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:3000" +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:3006" defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -1052,7 +1052,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:2997" +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:3003" defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" @@ -1093,7 +1093,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:3102" +defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:3109" 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)" @@ -1130,7 +1130,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:3103" +defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:3110" 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)" @@ -1158,7 +1158,7 @@ defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["defaults"]["userdata_size"] = "0" defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" -defs["ImDrawList_AddCallback"][1]["location"] = "imgui:3145" +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:3152" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*,size_t)" @@ -1193,7 +1193,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:3094" +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:3101" 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)" @@ -1224,7 +1224,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:3095" +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:3102" defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1251,7 +1251,7 @@ defs["ImDrawList_AddConcavePolyFilled"][1]["call_args"] = "(points,num_points,co defs["ImDrawList_AddConcavePolyFilled"][1]["cimguiname"] = "ImDrawList_AddConcavePolyFilled" defs["ImDrawList_AddConcavePolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConcavePolyFilled"][1]["funcname"] = "AddConcavePolyFilled" -defs["ImDrawList_AddConcavePolyFilled"][1]["location"] = "imgui:3110" +defs["ImDrawList_AddConcavePolyFilled"][1]["location"] = "imgui:3117" defs["ImDrawList_AddConcavePolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConcavePolyFilled" defs["ImDrawList_AddConcavePolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConcavePolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1278,7 +1278,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:3109" +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:3116" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1296,7 +1296,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:3148" +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:3155" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" @@ -1335,7 +1335,7 @@ defs["ImDrawList_AddEllipse"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddEllipse"][1]["defaults"]["rot"] = "0.0f" defs["ImDrawList_AddEllipse"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddEllipse"][1]["funcname"] = "AddEllipse" -defs["ImDrawList_AddEllipse"][1]["location"] = "imgui:3098" +defs["ImDrawList_AddEllipse"][1]["location"] = "imgui:3105" defs["ImDrawList_AddEllipse"][1]["ov_cimguiname"] = "ImDrawList_AddEllipse" defs["ImDrawList_AddEllipse"][1]["ret"] = "void" defs["ImDrawList_AddEllipse"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int,float)" @@ -1370,7 +1370,7 @@ defs["ImDrawList_AddEllipseFilled"][1]["defaults"] = {} defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["rot"] = "0.0f" defs["ImDrawList_AddEllipseFilled"][1]["funcname"] = "AddEllipseFilled" -defs["ImDrawList_AddEllipseFilled"][1]["location"] = "imgui:3099" +defs["ImDrawList_AddEllipseFilled"][1]["location"] = "imgui:3106" defs["ImDrawList_AddEllipseFilled"][1]["ov_cimguiname"] = "ImDrawList_AddEllipseFilled" defs["ImDrawList_AddEllipseFilled"][1]["ret"] = "void" defs["ImDrawList_AddEllipseFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int)" @@ -1409,7 +1409,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:3116" +defs["ImDrawList_AddImage"][1]["location"] = "imgui:3123" 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)" @@ -1462,7 +1462,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:3117" +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:3124" 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)" @@ -1505,7 +1505,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:3118" +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:3125" 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)" @@ -1536,7 +1536,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:3086" +defs["ImDrawList_AddLine"][1]["location"] = "imgui:3093" 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)" @@ -1570,7 +1570,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:3096" +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:3103" 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)" @@ -1600,7 +1600,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:3097" +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:3104" defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1633,7 +1633,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:3108" +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:3115" 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)" @@ -1670,7 +1670,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:3090" +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:3097" 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)" @@ -1703,7 +1703,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:3091" +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:3098" 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)" @@ -1742,7 +1742,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:3087" +defs["ImDrawList_AddRect"][1]["location"] = "imgui:3094" 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)" @@ -1777,7 +1777,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:3088" +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:3095" 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)" @@ -1813,7 +1813,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:3089" +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:3096" 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)" @@ -1844,7 +1844,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:3100" +defs["ImDrawList_AddText"][1]["location"] = "imgui:3107" 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*)" @@ -1887,7 +1887,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:3101" +defs["ImDrawList_AddText"][2]["location"] = "imgui:3108" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddText_FontPtr" defs["ImDrawList_AddText"][2]["ret"] = "void" defs["ImDrawList_AddText"][2]["signature"] = "(ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)" @@ -1922,7 +1922,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:3092" +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:3099" 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)" @@ -1952,7 +1952,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:3093" +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:3100" 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)" @@ -1970,7 +1970,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:3158" +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:3165" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1991,7 +1991,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:3159" +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:3166" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -2012,7 +2012,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:3157" +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:3164" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -2030,7 +2030,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:3149" +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:3156" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -2051,7 +2051,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:3077" +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:3084" defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -2073,7 +2073,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:3076" +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:3083" defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -2093,7 +2093,7 @@ defs["ImDrawList_ImDrawList"][1]["cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" -defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:3068" +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:3075" defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" @@ -2126,7 +2126,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:3129" +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:3136" 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)" @@ -2156,7 +2156,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:3130" +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:3137" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -2187,7 +2187,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:3132" +defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:3139" 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)" @@ -2215,7 +2215,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:3133" +defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:3140" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierQuadraticCurveTo" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,int)" @@ -2233,7 +2233,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:3123" +defs["ImDrawList_PathClear"][1]["location"] = "imgui:3130" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" @@ -2270,7 +2270,7 @@ defs["ImDrawList_PathEllipticalArcTo"][1]["cimguiname"] = "ImDrawList_PathEllipt defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"] = {} defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathEllipticalArcTo"][1]["funcname"] = "PathEllipticalArcTo" -defs["ImDrawList_PathEllipticalArcTo"][1]["location"] = "imgui:3131" +defs["ImDrawList_PathEllipticalArcTo"][1]["location"] = "imgui:3138" defs["ImDrawList_PathEllipticalArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathEllipticalArcTo" defs["ImDrawList_PathEllipticalArcTo"][1]["ret"] = "void" defs["ImDrawList_PathEllipticalArcTo"][1]["signature"] = "(const ImVec2,const ImVec2,float,float,float,int)" @@ -2291,7 +2291,7 @@ defs["ImDrawList_PathFillConcave"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConcave"][1]["cimguiname"] = "ImDrawList_PathFillConcave" defs["ImDrawList_PathFillConcave"][1]["defaults"] = {} defs["ImDrawList_PathFillConcave"][1]["funcname"] = "PathFillConcave" -defs["ImDrawList_PathFillConcave"][1]["location"] = "imgui:3127" +defs["ImDrawList_PathFillConcave"][1]["location"] = "imgui:3134" defs["ImDrawList_PathFillConcave"][1]["ov_cimguiname"] = "ImDrawList_PathFillConcave" defs["ImDrawList_PathFillConcave"][1]["ret"] = "void" defs["ImDrawList_PathFillConcave"][1]["signature"] = "(ImU32)" @@ -2312,7 +2312,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:3126" +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:3133" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -2333,7 +2333,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:3124" +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:3131" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -2354,7 +2354,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:3125" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:3132" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -2386,7 +2386,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:3134" +defs["ImDrawList_PathRect"][1]["location"] = "imgui:3141" 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)" @@ -2415,7 +2415,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:3128" +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:3135" defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,ImDrawFlags,float)" @@ -2433,7 +2433,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:3073" +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:3080" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -2451,7 +2451,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:3075" +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:3082" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -2496,7 +2496,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:3168" +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:3175" 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)" @@ -2523,7 +2523,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:3166" +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:3173" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2556,7 +2556,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:3167" +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:3174" 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)" @@ -2580,7 +2580,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:3164" +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:3171" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -2604,7 +2604,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:3165" +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:3172" defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -2631,7 +2631,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:3171" +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:3178" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2652,7 +2652,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:3170" +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:3177" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -2679,7 +2679,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:3169" +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:3176" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2707,7 +2707,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:3071" +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:3078" defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" @@ -2725,7 +2725,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:3072" +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:3079" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -2746,7 +2746,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:3074" +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:3081" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -2767,7 +2767,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:3189" +defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:3196" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ov_cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ret"] = "int" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["signature"] = "(float)const" @@ -2785,7 +2785,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:3182" +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:3189" defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -2803,7 +2803,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:3185" +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:3192" defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -2821,7 +2821,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:3186" +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:3193" defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -2839,7 +2839,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:3187" +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:3194" defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -2872,7 +2872,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:3190" +defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:3197" 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)" @@ -2905,7 +2905,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:3191" +defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:3198" 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)" @@ -2923,7 +2923,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:3183" +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:3190" defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2941,7 +2941,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:3181" +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:3188" defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" @@ -2962,7 +2962,7 @@ defs["ImDrawList__SetTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList__SetTextureID"][1]["cimguiname"] = "ImDrawList__SetTextureID" defs["ImDrawList__SetTextureID"][1]["defaults"] = {} defs["ImDrawList__SetTextureID"][1]["funcname"] = "_SetTextureID" -defs["ImDrawList__SetTextureID"][1]["location"] = "imgui:3188" +defs["ImDrawList__SetTextureID"][1]["location"] = "imgui:3195" defs["ImDrawList__SetTextureID"][1]["ov_cimguiname"] = "ImDrawList__SetTextureID" defs["ImDrawList__SetTextureID"][1]["ret"] = "void" defs["ImDrawList__SetTextureID"][1]["signature"] = "(ImTextureID)" @@ -2980,7 +2980,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:3184" +defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:3191" defs["ImDrawList__TryMergeDrawCmds"][1]["ov_cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["ret"] = "void" defs["ImDrawList__TryMergeDrawCmds"][1]["signature"] = "()" @@ -2997,7 +2997,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:3070" +defs["ImDrawList_destroy"][1]["location"] = "imgui:3076" defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" @@ -3014,7 +3014,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:3287" +defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:3296" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_ImFontAtlasCustomRect" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["signature"] = "()" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["stname"] = "ImFontAtlasCustomRect" @@ -3031,7 +3031,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:3288" +defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:3297" defs["ImFontAtlasCustomRect_IsPacked"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["ret"] = "bool" defs["ImFontAtlasCustomRect_IsPacked"][1]["signature"] = "()const" @@ -3048,7 +3048,7 @@ defs["ImFontAtlasCustomRect_destroy"][1]["call_args"] = "(self)" defs["ImFontAtlasCustomRect_destroy"][1]["cimguiname"] = "ImFontAtlasCustomRect_destroy" defs["ImFontAtlasCustomRect_destroy"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_destroy"][1]["destructor"] = true -defs["ImFontAtlasCustomRect_destroy"][1]["location"] = "imgui:3287" +defs["ImFontAtlasCustomRect_destroy"][1]["location"] = "imgui:3296" defs["ImFontAtlasCustomRect_destroy"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_destroy" defs["ImFontAtlasCustomRect_destroy"][1]["ret"] = "void" defs["ImFontAtlasCustomRect_destroy"][1]["signature"] = "(ImFontAtlasCustomRect*)" @@ -3085,7 +3085,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:3373" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:3382" 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)" @@ -3109,7 +3109,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:3372" +defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:3381" defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(int,int)" @@ -3130,7 +3130,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:3321" +defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:3330" defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" @@ -3152,7 +3152,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:3322" +defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:3331" defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -3184,7 +3184,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:3323" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:3332" 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*)" @@ -3216,7 +3216,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:3326" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:3335" 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*)" @@ -3251,7 +3251,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:3325" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:3334" 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*)" @@ -3286,7 +3286,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:3324" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:3333" 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*)" @@ -3304,7 +3304,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:3337" +defs["ImFontAtlas_Build"][1]["location"] = "imgui:3346" defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" @@ -3331,7 +3331,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:3377" +defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:3386" defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const" @@ -3349,7 +3349,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:3330" +defs["ImFontAtlas_Clear"][1]["location"] = "imgui:3339" defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" @@ -3367,7 +3367,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:3329" +defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:3338" defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" @@ -3385,7 +3385,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:3327" +defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:3336" defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" @@ -3403,7 +3403,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:3328" +defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:3337" defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" @@ -3424,7 +3424,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:3374" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:3383" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "ImFontAtlasCustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" @@ -3442,7 +3442,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:3355" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:3364" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" @@ -3460,7 +3460,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:3356" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:3365" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" @@ -3478,7 +3478,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:3357" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:3366" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" @@ -3496,7 +3496,7 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" -defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:3351" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:3360" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" @@ -3514,7 +3514,7 @@ 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:3352" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:3361" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["signature"] = "()" @@ -3532,7 +3532,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:3354" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:3363" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" @@ -3550,7 +3550,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:3353" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:3362" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" @@ -3568,7 +3568,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:3358" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:3367" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" @@ -3586,7 +3586,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:3359" +defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:3368" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["signature"] = "()" @@ -3619,7 +3619,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:3378" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:3387" 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])" @@ -3650,7 +3650,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:3338" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:3347" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3681,7 +3681,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:3339" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:3348" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3697,7 +3697,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:3319" +defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:3328" defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" @@ -3714,7 +3714,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:3340" +defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:3349" defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()const" @@ -3735,7 +3735,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:3341" +defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:3350" defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" @@ -3752,7 +3752,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:3320" +defs["ImFontAtlas_destroy"][1]["location"] = "imgui:3329" defs["ImFontAtlas_destroy"][1]["ov_cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["realdestructor"] = true defs["ImFontAtlas_destroy"][1]["ret"] = "void" @@ -3769,7 +3769,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:3246" +defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:3253" defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" @@ -3785,7 +3785,7 @@ defs["ImFontConfig_destroy"][1]["call_args"] = "(self)" defs["ImFontConfig_destroy"][1]["cimguiname"] = "ImFontConfig_destroy" defs["ImFontConfig_destroy"][1]["defaults"] = {} defs["ImFontConfig_destroy"][1]["destructor"] = true -defs["ImFontConfig_destroy"][1]["location"] = "imgui:3246" +defs["ImFontConfig_destroy"][1]["location"] = "imgui:3253" defs["ImFontConfig_destroy"][1]["ov_cimguiname"] = "ImFontConfig_destroy" defs["ImFontConfig_destroy"][1]["ret"] = "void" defs["ImFontConfig_destroy"][1]["signature"] = "(ImFontConfig*)" @@ -3806,7 +3806,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:3271" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:3278" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" @@ -3827,7 +3827,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:3273" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:3280" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" @@ -3852,7 +3852,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:3272" +defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:3279" defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -3873,7 +3873,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:3274" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:3281" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" @@ -3891,7 +3891,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:3268" +defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:3275" defs["ImFontGlyphRangesBuilder_Clear"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_Clear"][1]["signature"] = "()" @@ -3912,7 +3912,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:3269" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:3276" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(size_t)const" @@ -3928,7 +3928,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:3267" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:3274" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -3948,7 +3948,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:3270" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:3277" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(size_t)" @@ -3965,7 +3965,7 @@ defs["ImFontGlyphRangesBuilder_destroy"][1]["call_args"] = "(self)" defs["ImFontGlyphRangesBuilder_destroy"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_destroy" defs["ImFontGlyphRangesBuilder_destroy"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_destroy"][1]["destructor"] = true -defs["ImFontGlyphRangesBuilder_destroy"][1]["location"] = "imgui:3267" +defs["ImFontGlyphRangesBuilder_destroy"][1]["location"] = "imgui:3274" defs["ImFontGlyphRangesBuilder_destroy"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_destroy" defs["ImFontGlyphRangesBuilder_destroy"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_destroy"][1]["signature"] = "(ImFontGlyphRangesBuilder*)" @@ -4016,7 +4016,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:3468" +defs["ImFont_AddGlyph"][1]["location"] = "imgui:3478" 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)" @@ -4044,7 +4044,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:3469" +defs["ImFont_AddRemapChar"][1]["location"] = "imgui:3479" defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" @@ -4062,7 +4062,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:3465" +defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:3475" defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" @@ -4103,7 +4103,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:3459" +defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:3469" defs["ImFont_CalcTextSizeA"][1]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "void" @@ -4134,7 +4134,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:3460" +defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:3470" 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)" @@ -4152,7 +4152,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:3466" +defs["ImFont_ClearOutputData"][1]["location"] = "imgui:3476" defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" @@ -4173,7 +4173,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:3451" +defs["ImFont_FindGlyph"][1]["location"] = "imgui:3461" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)" @@ -4194,7 +4194,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:3452" +defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:3462" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)" @@ -4215,7 +4215,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:3453" +defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:3463" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)" @@ -4233,7 +4233,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:3455" +defs["ImFont_GetDebugName"][1]["location"] = "imgui:3465" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()const" @@ -4254,7 +4254,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:3467" +defs["ImFont_GrowIndex"][1]["location"] = "imgui:3477" defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" @@ -4270,7 +4270,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:3449" +defs["ImFont_ImFont"][1]["location"] = "imgui:3459" defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" @@ -4293,7 +4293,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:3471" +defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:3481" defs["ImFont_IsGlyphRangeUnused"][1]["ov_cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["ret"] = "bool" defs["ImFont_IsGlyphRangeUnused"][1]["signature"] = "(unsigned int,unsigned int)" @@ -4311,7 +4311,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:3454" +defs["ImFont_IsLoaded"][1]["location"] = "imgui:3464" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()const" @@ -4344,7 +4344,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:3461" +defs["ImFont_RenderChar"][1]["location"] = "imgui:3471" 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)" @@ -4391,7 +4391,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:3462" +defs["ImFont_RenderText"][1]["location"] = "imgui:3472" 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)" @@ -4415,7 +4415,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:3470" +defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:3480" defs["ImFont_SetGlyphVisible"][1]["ov_cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["ret"] = "void" defs["ImFont_SetGlyphVisible"][1]["signature"] = "(ImWchar,bool)" @@ -4432,7 +4432,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:3450" +defs["ImFont_destroy"][1]["location"] = "imgui:3460" defs["ImFont_destroy"][1]["ov_cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["realdestructor"] = true defs["ImFont_destroy"][1]["ret"] = "void" @@ -4449,7 +4449,7 @@ defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["cimguiname"] = "ImGuiBoxSele defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["constructor"] = true defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["defaults"] = {} defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["funcname"] = "ImGuiBoxSelectState" -defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["location"] = "imgui_internal:1746" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["location"] = "imgui_internal:1750" defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["ov_cimguiname"] = "ImGuiBoxSelectState_ImGuiBoxSelectState" defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["signature"] = "()" defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["stname"] = "ImGuiBoxSelectState" @@ -4465,7 +4465,7 @@ defs["ImGuiBoxSelectState_destroy"][1]["call_args"] = "(self)" defs["ImGuiBoxSelectState_destroy"][1]["cimguiname"] = "ImGuiBoxSelectState_destroy" defs["ImGuiBoxSelectState_destroy"][1]["defaults"] = {} defs["ImGuiBoxSelectState_destroy"][1]["destructor"] = true -defs["ImGuiBoxSelectState_destroy"][1]["location"] = "imgui_internal:1746" +defs["ImGuiBoxSelectState_destroy"][1]["location"] = "imgui_internal:1750" defs["ImGuiBoxSelectState_destroy"][1]["ov_cimguiname"] = "ImGuiBoxSelectState_destroy" defs["ImGuiBoxSelectState_destroy"][1]["ret"] = "void" defs["ImGuiBoxSelectState_destroy"][1]["signature"] = "(ImGuiBoxSelectState*)" @@ -4481,7 +4481,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:1054" +defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:1058" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["ov_cimguiname"] = "ImGuiComboPreviewData_ImGuiComboPreviewData" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["signature"] = "()" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["stname"] = "ImGuiComboPreviewData" @@ -4497,7 +4497,7 @@ defs["ImGuiComboPreviewData_destroy"][1]["call_args"] = "(self)" defs["ImGuiComboPreviewData_destroy"][1]["cimguiname"] = "ImGuiComboPreviewData_destroy" defs["ImGuiComboPreviewData_destroy"][1]["defaults"] = {} defs["ImGuiComboPreviewData_destroy"][1]["destructor"] = true -defs["ImGuiComboPreviewData_destroy"][1]["location"] = "imgui_internal:1054" +defs["ImGuiComboPreviewData_destroy"][1]["location"] = "imgui_internal:1058" defs["ImGuiComboPreviewData_destroy"][1]["ov_cimguiname"] = "ImGuiComboPreviewData_destroy" defs["ImGuiComboPreviewData_destroy"][1]["ret"] = "void" defs["ImGuiComboPreviewData_destroy"][1]["signature"] = "(ImGuiComboPreviewData*)" @@ -4513,7 +4513,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:2016" +defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:2022" defs["ImGuiContextHook_ImGuiContextHook"][1]["ov_cimguiname"] = "ImGuiContextHook_ImGuiContextHook" defs["ImGuiContextHook_ImGuiContextHook"][1]["signature"] = "()" defs["ImGuiContextHook_ImGuiContextHook"][1]["stname"] = "ImGuiContextHook" @@ -4529,7 +4529,7 @@ defs["ImGuiContextHook_destroy"][1]["call_args"] = "(self)" defs["ImGuiContextHook_destroy"][1]["cimguiname"] = "ImGuiContextHook_destroy" defs["ImGuiContextHook_destroy"][1]["defaults"] = {} defs["ImGuiContextHook_destroy"][1]["destructor"] = true -defs["ImGuiContextHook_destroy"][1]["location"] = "imgui_internal:2016" +defs["ImGuiContextHook_destroy"][1]["location"] = "imgui_internal:2022" defs["ImGuiContextHook_destroy"][1]["ov_cimguiname"] = "ImGuiContextHook_destroy" defs["ImGuiContextHook_destroy"][1]["ret"] = "void" defs["ImGuiContextHook_destroy"][1]["signature"] = "(ImGuiContextHook*)" @@ -4548,7 +4548,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:2385" +defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:2391" defs["ImGuiContext_ImGuiContext"][1]["ov_cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["signature"] = "(ImFontAtlas*)" defs["ImGuiContext_ImGuiContext"][1]["stname"] = "ImGuiContext" @@ -4564,7 +4564,7 @@ defs["ImGuiContext_destroy"][1]["call_args"] = "(self)" defs["ImGuiContext_destroy"][1]["cimguiname"] = "ImGuiContext_destroy" defs["ImGuiContext_destroy"][1]["defaults"] = {} defs["ImGuiContext_destroy"][1]["destructor"] = true -defs["ImGuiContext_destroy"][1]["location"] = "imgui_internal:2385" +defs["ImGuiContext_destroy"][1]["location"] = "imgui_internal:2391" defs["ImGuiContext_destroy"][1]["ov_cimguiname"] = "ImGuiContext_destroy" defs["ImGuiContext_destroy"][1]["ret"] = "void" defs["ImGuiContext_destroy"][1]["signature"] = "(ImGuiContext*)" @@ -4585,7 +4585,7 @@ defs["ImGuiDataVarInfo_GetVarPtr"][1]["call_args"] = "(parent)" defs["ImGuiDataVarInfo_GetVarPtr"][1]["cimguiname"] = "ImGuiDataVarInfo_GetVarPtr" defs["ImGuiDataVarInfo_GetVarPtr"][1]["defaults"] = {} defs["ImGuiDataVarInfo_GetVarPtr"][1]["funcname"] = "GetVarPtr" -defs["ImGuiDataVarInfo_GetVarPtr"][1]["location"] = "imgui_internal:805" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["location"] = "imgui_internal:809" defs["ImGuiDataVarInfo_GetVarPtr"][1]["ov_cimguiname"] = "ImGuiDataVarInfo_GetVarPtr" defs["ImGuiDataVarInfo_GetVarPtr"][1]["ret"] = "void*" defs["ImGuiDataVarInfo_GetVarPtr"][1]["signature"] = "(void*)const" @@ -4601,7 +4601,7 @@ defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["cimguiname"] = "ImGuiDebugAl defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["constructor"] = true defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["defaults"] = {} defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["funcname"] = "ImGuiDebugAllocInfo" -defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["location"] = "imgui_internal:1957" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["location"] = "imgui_internal:1963" defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["ov_cimguiname"] = "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo" defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["signature"] = "()" defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["stname"] = "ImGuiDebugAllocInfo" @@ -4617,7 +4617,7 @@ defs["ImGuiDebugAllocInfo_destroy"][1]["call_args"] = "(self)" defs["ImGuiDebugAllocInfo_destroy"][1]["cimguiname"] = "ImGuiDebugAllocInfo_destroy" defs["ImGuiDebugAllocInfo_destroy"][1]["defaults"] = {} defs["ImGuiDebugAllocInfo_destroy"][1]["destructor"] = true -defs["ImGuiDebugAllocInfo_destroy"][1]["location"] = "imgui_internal:1957" +defs["ImGuiDebugAllocInfo_destroy"][1]["location"] = "imgui_internal:1963" defs["ImGuiDebugAllocInfo_destroy"][1]["ov_cimguiname"] = "ImGuiDebugAllocInfo_destroy" defs["ImGuiDebugAllocInfo_destroy"][1]["ret"] = "void" defs["ImGuiDebugAllocInfo_destroy"][1]["signature"] = "(ImGuiDebugAllocInfo*)" @@ -4633,7 +4633,7 @@ defs["ImGuiErrorRecoveryState_ImGuiErrorRecoveryState"][1]["cimguiname"] = "ImGu defs["ImGuiErrorRecoveryState_ImGuiErrorRecoveryState"][1]["constructor"] = true defs["ImGuiErrorRecoveryState_ImGuiErrorRecoveryState"][1]["defaults"] = {} defs["ImGuiErrorRecoveryState_ImGuiErrorRecoveryState"][1]["funcname"] = "ImGuiErrorRecoveryState" -defs["ImGuiErrorRecoveryState_ImGuiErrorRecoveryState"][1]["location"] = "imgui_internal:1284" +defs["ImGuiErrorRecoveryState_ImGuiErrorRecoveryState"][1]["location"] = "imgui_internal:1288" defs["ImGuiErrorRecoveryState_ImGuiErrorRecoveryState"][1]["ov_cimguiname"] = "ImGuiErrorRecoveryState_ImGuiErrorRecoveryState" defs["ImGuiErrorRecoveryState_ImGuiErrorRecoveryState"][1]["signature"] = "()" defs["ImGuiErrorRecoveryState_ImGuiErrorRecoveryState"][1]["stname"] = "ImGuiErrorRecoveryState" @@ -4649,7 +4649,7 @@ defs["ImGuiErrorRecoveryState_destroy"][1]["call_args"] = "(self)" defs["ImGuiErrorRecoveryState_destroy"][1]["cimguiname"] = "ImGuiErrorRecoveryState_destroy" defs["ImGuiErrorRecoveryState_destroy"][1]["defaults"] = {} defs["ImGuiErrorRecoveryState_destroy"][1]["destructor"] = true -defs["ImGuiErrorRecoveryState_destroy"][1]["location"] = "imgui_internal:1284" +defs["ImGuiErrorRecoveryState_destroy"][1]["location"] = "imgui_internal:1288" defs["ImGuiErrorRecoveryState_destroy"][1]["ov_cimguiname"] = "ImGuiErrorRecoveryState_destroy" defs["ImGuiErrorRecoveryState_destroy"][1]["ret"] = "void" defs["ImGuiErrorRecoveryState_destroy"][1]["signature"] = "(ImGuiErrorRecoveryState*)" @@ -4711,7 +4711,7 @@ defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["cimguiname"] = "ImGuiIDStackTool_I defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["constructor"] = true defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["defaults"] = {} defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["funcname"] = "ImGuiIDStackTool" -defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["location"] = "imgui_internal:1998" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["location"] = "imgui_internal:2004" defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["ov_cimguiname"] = "ImGuiIDStackTool_ImGuiIDStackTool" defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["signature"] = "()" defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["stname"] = "ImGuiIDStackTool" @@ -4727,7 +4727,7 @@ defs["ImGuiIDStackTool_destroy"][1]["call_args"] = "(self)" defs["ImGuiIDStackTool_destroy"][1]["cimguiname"] = "ImGuiIDStackTool_destroy" defs["ImGuiIDStackTool_destroy"][1]["defaults"] = {} defs["ImGuiIDStackTool_destroy"][1]["destructor"] = true -defs["ImGuiIDStackTool_destroy"][1]["location"] = "imgui_internal:1998" +defs["ImGuiIDStackTool_destroy"][1]["location"] = "imgui_internal:2004" defs["ImGuiIDStackTool_destroy"][1]["ov_cimguiname"] = "ImGuiIDStackTool_destroy" defs["ImGuiIDStackTool_destroy"][1]["ret"] = "void" defs["ImGuiIDStackTool_destroy"][1]["signature"] = "(ImGuiIDStackTool*)" @@ -4748,7 +4748,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:2330" +defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2335" defs["ImGuiIO_AddFocusEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["ret"] = "void" defs["ImGuiIO_AddFocusEvent"][1]["signature"] = "(bool)" @@ -4769,7 +4769,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:2331" +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2336" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -4790,7 +4790,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:2332" +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2337" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -4811,7 +4811,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:2333" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2338" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -4838,7 +4838,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:2325" +defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2330" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyAnalogEvent"][1]["signature"] = "(ImGuiKey,bool,float)" @@ -4862,7 +4862,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:2324" +defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2329" defs["ImGuiIO_AddKeyEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyEvent"][1]["signature"] = "(ImGuiKey,bool)" @@ -4886,7 +4886,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:2327" +defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2332" defs["ImGuiIO_AddMouseButtonEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseButtonEvent"][1]["signature"] = "(int,bool)" @@ -4910,7 +4910,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:2326" +defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2331" defs["ImGuiIO_AddMousePosEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMousePosEvent"][1]["signature"] = "(float,float)" @@ -4931,7 +4931,7 @@ defs["ImGuiIO_AddMouseSourceEvent"][1]["call_args"] = "(source)" defs["ImGuiIO_AddMouseSourceEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseSourceEvent" defs["ImGuiIO_AddMouseSourceEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseSourceEvent"][1]["funcname"] = "AddMouseSourceEvent" -defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2329" +defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2334" defs["ImGuiIO_AddMouseSourceEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseSourceEvent" defs["ImGuiIO_AddMouseSourceEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseSourceEvent"][1]["signature"] = "(ImGuiMouseSource)" @@ -4955,7 +4955,7 @@ defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wheel_x,wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["funcname"] = "AddMouseWheelEvent" -defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2328" +defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2333" defs["ImGuiIO_AddMouseWheelEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseWheelEvent"][1]["signature"] = "(float,float)" @@ -4973,7 +4973,7 @@ defs["ImGuiIO_ClearEventsQueue"][1]["call_args"] = "()" defs["ImGuiIO_ClearEventsQueue"][1]["cimguiname"] = "ImGuiIO_ClearEventsQueue" defs["ImGuiIO_ClearEventsQueue"][1]["defaults"] = {} defs["ImGuiIO_ClearEventsQueue"][1]["funcname"] = "ClearEventsQueue" -defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2337" +defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2342" defs["ImGuiIO_ClearEventsQueue"][1]["ov_cimguiname"] = "ImGuiIO_ClearEventsQueue" defs["ImGuiIO_ClearEventsQueue"][1]["ret"] = "void" defs["ImGuiIO_ClearEventsQueue"][1]["signature"] = "()" @@ -4991,7 +4991,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:2338" +defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2343" defs["ImGuiIO_ClearInputKeys"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["ret"] = "void" defs["ImGuiIO_ClearInputKeys"][1]["signature"] = "()" @@ -5009,7 +5009,7 @@ defs["ImGuiIO_ClearInputMouse"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputMouse"][1]["cimguiname"] = "ImGuiIO_ClearInputMouse" defs["ImGuiIO_ClearInputMouse"][1]["defaults"] = {} defs["ImGuiIO_ClearInputMouse"][1]["funcname"] = "ClearInputMouse" -defs["ImGuiIO_ClearInputMouse"][1]["location"] = "imgui:2339" +defs["ImGuiIO_ClearInputMouse"][1]["location"] = "imgui:2344" defs["ImGuiIO_ClearInputMouse"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputMouse" defs["ImGuiIO_ClearInputMouse"][1]["ret"] = "void" defs["ImGuiIO_ClearInputMouse"][1]["signature"] = "()" @@ -5025,7 +5025,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:2426" +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2431" defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -5045,7 +5045,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:2336" +defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2341" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ov_cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ret"] = "void" defs["ImGuiIO_SetAppAcceptingEvents"][1]["signature"] = "(bool)" @@ -5076,7 +5076,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:2335" +defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2340" defs["ImGuiIO_SetKeyEventNativeData"][1]["ov_cimguiname"] = "ImGuiIO_SetKeyEventNativeData" defs["ImGuiIO_SetKeyEventNativeData"][1]["ret"] = "void" defs["ImGuiIO_SetKeyEventNativeData"][1]["signature"] = "(ImGuiKey,int,int,int)" @@ -5093,7 +5093,7 @@ defs["ImGuiIO_destroy"][1]["call_args"] = "(self)" defs["ImGuiIO_destroy"][1]["cimguiname"] = "ImGuiIO_destroy" defs["ImGuiIO_destroy"][1]["defaults"] = {} defs["ImGuiIO_destroy"][1]["destructor"] = true -defs["ImGuiIO_destroy"][1]["location"] = "imgui:2426" +defs["ImGuiIO_destroy"][1]["location"] = "imgui:2431" defs["ImGuiIO_destroy"][1]["ov_cimguiname"] = "ImGuiIO_destroy" defs["ImGuiIO_destroy"][1]["ret"] = "void" defs["ImGuiIO_destroy"][1]["signature"] = "(ImGuiIO*)" @@ -5109,7 +5109,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:1413" +defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1417" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["ov_cimguiname"] = "ImGuiInputEvent_ImGuiInputEvent" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["signature"] = "()" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["stname"] = "ImGuiInputEvent" @@ -5125,7 +5125,7 @@ defs["ImGuiInputEvent_destroy"][1]["call_args"] = "(self)" defs["ImGuiInputEvent_destroy"][1]["cimguiname"] = "ImGuiInputEvent_destroy" defs["ImGuiInputEvent_destroy"][1]["defaults"] = {} defs["ImGuiInputEvent_destroy"][1]["destructor"] = true -defs["ImGuiInputEvent_destroy"][1]["location"] = "imgui_internal:1413" +defs["ImGuiInputEvent_destroy"][1]["location"] = "imgui_internal:1417" defs["ImGuiInputEvent_destroy"][1]["ov_cimguiname"] = "ImGuiInputEvent_destroy" defs["ImGuiInputEvent_destroy"][1]["ret"] = "void" defs["ImGuiInputEvent_destroy"][1]["signature"] = "(ImGuiInputEvent*)" @@ -5143,7 +5143,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:2470" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2475" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["signature"] = "()" @@ -5167,7 +5167,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:2467" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2472" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -5185,7 +5185,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:2471" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2476" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -5201,7 +5201,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:2466" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2471" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -5228,7 +5228,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:2468" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2473" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" @@ -5246,7 +5246,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:2469" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2474" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_SelectAll"][1]["signature"] = "()" @@ -5263,7 +5263,7 @@ defs["ImGuiInputTextCallbackData_destroy"][1]["call_args"] = "(self)" defs["ImGuiInputTextCallbackData_destroy"][1]["cimguiname"] = "ImGuiInputTextCallbackData_destroy" defs["ImGuiInputTextCallbackData_destroy"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_destroy"][1]["destructor"] = true -defs["ImGuiInputTextCallbackData_destroy"][1]["location"] = "imgui:2466" +defs["ImGuiInputTextCallbackData_destroy"][1]["location"] = "imgui:2471" defs["ImGuiInputTextCallbackData_destroy"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_destroy" defs["ImGuiInputTextCallbackData_destroy"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_destroy"][1]["signature"] = "(ImGuiInputTextCallbackData*)" @@ -5281,7 +5281,7 @@ defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["call_args"] = "()" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["defaults"] = {} defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["location"] = "imgui_internal:1100" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["location"] = "imgui_internal:1104" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["signature"] = "()" @@ -5297,7 +5297,7 @@ defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["cimgui defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["constructor"] = true defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["defaults"] = {} defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["funcname"] = "ImGuiInputTextDeactivatedState" -defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["location"] = "imgui_internal:1099" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["location"] = "imgui_internal:1103" defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState" defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["signature"] = "()" defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["stname"] = "ImGuiInputTextDeactivatedState" @@ -5313,7 +5313,7 @@ defs["ImGuiInputTextDeactivatedState_destroy"][1]["call_args"] = "(self)" defs["ImGuiInputTextDeactivatedState_destroy"][1]["cimguiname"] = "ImGuiInputTextDeactivatedState_destroy" defs["ImGuiInputTextDeactivatedState_destroy"][1]["defaults"] = {} defs["ImGuiInputTextDeactivatedState_destroy"][1]["destructor"] = true -defs["ImGuiInputTextDeactivatedState_destroy"][1]["location"] = "imgui_internal:1099" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["location"] = "imgui_internal:1103" defs["ImGuiInputTextDeactivatedState_destroy"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_destroy" defs["ImGuiInputTextDeactivatedState_destroy"][1]["ret"] = "void" defs["ImGuiInputTextDeactivatedState_destroy"][1]["signature"] = "(ImGuiInputTextDeactivatedState*)" @@ -5331,7 +5331,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:1139" +defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1143" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearFreeMemory"][1]["signature"] = "()" @@ -5349,7 +5349,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:1147" +defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1151" defs["ImGuiInputTextState_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearSelection"][1]["signature"] = "()" @@ -5367,7 +5367,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:1138" +defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1142" defs["ImGuiInputTextState_ClearText"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearText"][1]["signature"] = "()" @@ -5385,7 +5385,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:1144" +defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1148" defs["ImGuiInputTextState_CursorAnimReset"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorAnimReset"][1]["signature"] = "()" @@ -5403,7 +5403,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:1145" +defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1149" defs["ImGuiInputTextState_CursorClamp"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorClamp"][1]["signature"] = "()" @@ -5421,7 +5421,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:1148" +defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1152" defs["ImGuiInputTextState_GetCursorPos"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["ret"] = "int" defs["ImGuiInputTextState_GetCursorPos"][1]["signature"] = "()const" @@ -5439,7 +5439,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:1150" +defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1154" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionEnd"][1]["signature"] = "()const" @@ -5457,7 +5457,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:1149" +defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1153" defs["ImGuiInputTextState_GetSelectionStart"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionStart"][1]["signature"] = "()const" @@ -5475,7 +5475,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:1146" +defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1150" defs["ImGuiInputTextState_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextState_HasSelection"][1]["signature"] = "()const" @@ -5491,7 +5491,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:1136" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1140" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["ov_cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["stname"] = "ImGuiInputTextState" @@ -5511,7 +5511,7 @@ defs["ImGuiInputTextState_OnCharPressed"][1]["call_args"] = "(c)" defs["ImGuiInputTextState_OnCharPressed"][1]["cimguiname"] = "ImGuiInputTextState_OnCharPressed" defs["ImGuiInputTextState_OnCharPressed"][1]["defaults"] = {} defs["ImGuiInputTextState_OnCharPressed"][1]["funcname"] = "OnCharPressed" -defs["ImGuiInputTextState_OnCharPressed"][1]["location"] = "imgui_internal:1141" +defs["ImGuiInputTextState_OnCharPressed"][1]["location"] = "imgui_internal:1145" defs["ImGuiInputTextState_OnCharPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnCharPressed" defs["ImGuiInputTextState_OnCharPressed"][1]["ret"] = "void" defs["ImGuiInputTextState_OnCharPressed"][1]["signature"] = "(unsigned int)" @@ -5532,7 +5532,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:1140" +defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1144" defs["ImGuiInputTextState_OnKeyPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["ret"] = "void" defs["ImGuiInputTextState_OnKeyPressed"][1]["signature"] = "(int)" @@ -5550,7 +5550,7 @@ defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["funcname"] = "ReloadUserBufAndKeepSelection" -defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["location"] = "imgui_internal:1159" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["location"] = "imgui_internal:1163" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["signature"] = "()" @@ -5568,7 +5568,7 @@ defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["call_args"] = "()" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["defaults"] = {} defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["funcname"] = "ReloadUserBufAndMoveToEnd" -defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["location"] = "imgui_internal:1160" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["location"] = "imgui_internal:1164" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ret"] = "void" defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["signature"] = "()" @@ -5586,7 +5586,7 @@ defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["defaults"] = {} defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["funcname"] = "ReloadUserBufAndSelectAll" -defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["location"] = "imgui_internal:1158" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["location"] = "imgui_internal:1162" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["signature"] = "()" @@ -5604,7 +5604,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:1151" +defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1155" defs["ImGuiInputTextState_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_SelectAll"][1]["signature"] = "()" @@ -5621,7 +5621,7 @@ defs["ImGuiInputTextState_destroy"][1]["call_args"] = "(self)" defs["ImGuiInputTextState_destroy"][1]["cimguiname"] = "ImGuiInputTextState_destroy" defs["ImGuiInputTextState_destroy"][1]["defaults"] = {} defs["ImGuiInputTextState_destroy"][1]["destructor"] = true -defs["ImGuiInputTextState_destroy"][1]["location"] = "imgui_internal:1137" +defs["ImGuiInputTextState_destroy"][1]["location"] = "imgui_internal:1141" defs["ImGuiInputTextState_destroy"][1]["ov_cimguiname"] = "ImGuiInputTextState_destroy" defs["ImGuiInputTextState_destroy"][1]["realdestructor"] = true defs["ImGuiInputTextState_destroy"][1]["ret"] = "void" @@ -5638,7 +5638,7 @@ defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["cimguiname"] = "ImGuiKeyOwnerDat defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["constructor"] = true defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["defaults"] = {} defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["funcname"] = "ImGuiKeyOwnerData" -defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1457" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1461" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["ov_cimguiname"] = "ImGuiKeyOwnerData_ImGuiKeyOwnerData" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["signature"] = "()" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["stname"] = "ImGuiKeyOwnerData" @@ -5654,7 +5654,7 @@ 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]["location"] = "imgui_internal:1457" +defs["ImGuiKeyOwnerData_destroy"][1]["location"] = "imgui_internal:1461" defs["ImGuiKeyOwnerData_destroy"][1]["ov_cimguiname"] = "ImGuiKeyOwnerData_destroy" defs["ImGuiKeyOwnerData_destroy"][1]["ret"] = "void" defs["ImGuiKeyOwnerData_destroy"][1]["signature"] = "(ImGuiKeyOwnerData*)" @@ -5670,7 +5670,7 @@ defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["cimguiname"] = "ImGuiKeyRout defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["constructor"] = true defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["defaults"] = {} defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["funcname"] = "ImGuiKeyRoutingData" -defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1433" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1437" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["ov_cimguiname"] = "ImGuiKeyRoutingData_ImGuiKeyRoutingData" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["signature"] = "()" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["stname"] = "ImGuiKeyRoutingData" @@ -5686,7 +5686,7 @@ 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]["location"] = "imgui_internal:1433" +defs["ImGuiKeyRoutingData_destroy"][1]["location"] = "imgui_internal:1437" defs["ImGuiKeyRoutingData_destroy"][1]["ov_cimguiname"] = "ImGuiKeyRoutingData_destroy" defs["ImGuiKeyRoutingData_destroy"][1]["ret"] = "void" defs["ImGuiKeyRoutingData_destroy"][1]["signature"] = "(ImGuiKeyRoutingData*)" @@ -5704,7 +5704,7 @@ defs["ImGuiKeyRoutingTable_Clear"][1]["call_args"] = "()" defs["ImGuiKeyRoutingTable_Clear"][1]["cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_Clear"][1]["funcname"] = "Clear" -defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1445" +defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1449" defs["ImGuiKeyRoutingTable_Clear"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["ret"] = "void" defs["ImGuiKeyRoutingTable_Clear"][1]["signature"] = "()" @@ -5720,7 +5720,7 @@ defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["cimguiname"] = "ImGuiKeyRo defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["constructor"] = true defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["funcname"] = "ImGuiKeyRoutingTable" -defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1444" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1448" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["signature"] = "()" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["stname"] = "ImGuiKeyRoutingTable" @@ -5736,7 +5736,7 @@ 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]["location"] = "imgui_internal:1444" +defs["ImGuiKeyRoutingTable_destroy"][1]["location"] = "imgui_internal:1448" defs["ImGuiKeyRoutingTable_destroy"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_destroy" defs["ImGuiKeyRoutingTable_destroy"][1]["ret"] = "void" defs["ImGuiKeyRoutingTable_destroy"][1]["signature"] = "(ImGuiKeyRoutingTable*)" @@ -5752,7 +5752,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:1254" +defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1258" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["ov_cimguiname"] = "ImGuiLastItemData_ImGuiLastItemData" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["signature"] = "()" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["stname"] = "ImGuiLastItemData" @@ -5768,7 +5768,7 @@ defs["ImGuiLastItemData_destroy"][1]["call_args"] = "(self)" defs["ImGuiLastItemData_destroy"][1]["cimguiname"] = "ImGuiLastItemData_destroy" defs["ImGuiLastItemData_destroy"][1]["defaults"] = {} defs["ImGuiLastItemData_destroy"][1]["destructor"] = true -defs["ImGuiLastItemData_destroy"][1]["location"] = "imgui_internal:1254" +defs["ImGuiLastItemData_destroy"][1]["location"] = "imgui_internal:1258" defs["ImGuiLastItemData_destroy"][1]["ov_cimguiname"] = "ImGuiLastItemData_destroy" defs["ImGuiLastItemData_destroy"][1]["ret"] = "void" defs["ImGuiLastItemData_destroy"][1]["signature"] = "(ImGuiLastItemData*)" @@ -5784,7 +5784,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:1528" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1532" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["ov_cimguiname"] = "ImGuiListClipperData_ImGuiListClipperData" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["signature"] = "()" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["stname"] = "ImGuiListClipperData" @@ -5804,7 +5804,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:1529" +defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1533" defs["ImGuiListClipperData_Reset"][1]["ov_cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["ret"] = "void" defs["ImGuiListClipperData_Reset"][1]["signature"] = "(ImGuiListClipper*)" @@ -5821,7 +5821,7 @@ defs["ImGuiListClipperData_destroy"][1]["call_args"] = "(self)" defs["ImGuiListClipperData_destroy"][1]["cimguiname"] = "ImGuiListClipperData_destroy" defs["ImGuiListClipperData_destroy"][1]["defaults"] = {} defs["ImGuiListClipperData_destroy"][1]["destructor"] = true -defs["ImGuiListClipperData_destroy"][1]["location"] = "imgui_internal:1528" +defs["ImGuiListClipperData_destroy"][1]["location"] = "imgui_internal:1532" defs["ImGuiListClipperData_destroy"][1]["ov_cimguiname"] = "ImGuiListClipperData_destroy" defs["ImGuiListClipperData_destroy"][1]["ret"] = "void" defs["ImGuiListClipperData_destroy"][1]["signature"] = "(ImGuiListClipperData*)" @@ -5843,7 +5843,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:1515" +defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1519" defs["ImGuiListClipperRange_FromIndices"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromIndices"][1]["signature"] = "(int,int)" @@ -5871,7 +5871,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:1516" +defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1520" defs["ImGuiListClipperRange_FromPositions"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromPositions"][1]["signature"] = "(float,float,int,int)" @@ -5896,7 +5896,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:2664" +defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2669" defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" @@ -5914,7 +5914,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:2665" +defs["ImGuiListClipper_End"][1]["location"] = "imgui:2670" defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" @@ -5930,7 +5930,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:2662" +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2667" defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" @@ -5950,7 +5950,7 @@ defs["ImGuiListClipper_IncludeItemByIndex"][1]["call_args"] = "(item_index)" defs["ImGuiListClipper_IncludeItemByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" defs["ImGuiListClipper_IncludeItemByIndex"][1]["defaults"] = {} defs["ImGuiListClipper_IncludeItemByIndex"][1]["funcname"] = "IncludeItemByIndex" -defs["ImGuiListClipper_IncludeItemByIndex"][1]["location"] = "imgui:2670" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["location"] = "imgui:2675" defs["ImGuiListClipper_IncludeItemByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" defs["ImGuiListClipper_IncludeItemByIndex"][1]["ret"] = "void" defs["ImGuiListClipper_IncludeItemByIndex"][1]["signature"] = "(int)" @@ -5974,7 +5974,7 @@ defs["ImGuiListClipper_IncludeItemsByIndex"][1]["call_args"] = "(item_begin,item defs["ImGuiListClipper_IncludeItemsByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" defs["ImGuiListClipper_IncludeItemsByIndex"][1]["defaults"] = {} defs["ImGuiListClipper_IncludeItemsByIndex"][1]["funcname"] = "IncludeItemsByIndex" -defs["ImGuiListClipper_IncludeItemsByIndex"][1]["location"] = "imgui:2671" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["location"] = "imgui:2676" defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ret"] = "void" defs["ImGuiListClipper_IncludeItemsByIndex"][1]["signature"] = "(int,int)" @@ -5995,7 +5995,7 @@ defs["ImGuiListClipper_SeekCursorForItem"][1]["call_args"] = "(item_index)" defs["ImGuiListClipper_SeekCursorForItem"][1]["cimguiname"] = "ImGuiListClipper_SeekCursorForItem" defs["ImGuiListClipper_SeekCursorForItem"][1]["defaults"] = {} defs["ImGuiListClipper_SeekCursorForItem"][1]["funcname"] = "SeekCursorForItem" -defs["ImGuiListClipper_SeekCursorForItem"][1]["location"] = "imgui:2676" +defs["ImGuiListClipper_SeekCursorForItem"][1]["location"] = "imgui:2681" defs["ImGuiListClipper_SeekCursorForItem"][1]["ov_cimguiname"] = "ImGuiListClipper_SeekCursorForItem" defs["ImGuiListClipper_SeekCursorForItem"][1]["ret"] = "void" defs["ImGuiListClipper_SeekCursorForItem"][1]["signature"] = "(int)" @@ -6013,7 +6013,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:2666" +defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2671" defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" @@ -6030,7 +6030,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:2663" +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2668" defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" @@ -6052,7 +6052,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:1090" +defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1094" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ov_cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ret"] = "void" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["signature"] = "(bool)" @@ -6082,7 +6082,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:1089" +defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1093" defs["ImGuiMenuColumns_DeclColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["ret"] = "float" defs["ImGuiMenuColumns_DeclColumns"][1]["signature"] = "(float,float,float,float)" @@ -6098,7 +6098,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:1087" +defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1091" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_ImGuiMenuColumns" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["signature"] = "()" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["stname"] = "ImGuiMenuColumns" @@ -6121,7 +6121,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:1088" +defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1092" defs["ImGuiMenuColumns_Update"][1]["ov_cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["ret"] = "void" defs["ImGuiMenuColumns_Update"][1]["signature"] = "(float,bool)" @@ -6138,7 +6138,7 @@ defs["ImGuiMenuColumns_destroy"][1]["call_args"] = "(self)" defs["ImGuiMenuColumns_destroy"][1]["cimguiname"] = "ImGuiMenuColumns_destroy" defs["ImGuiMenuColumns_destroy"][1]["defaults"] = {} defs["ImGuiMenuColumns_destroy"][1]["destructor"] = true -defs["ImGuiMenuColumns_destroy"][1]["location"] = "imgui_internal:1087" +defs["ImGuiMenuColumns_destroy"][1]["location"] = "imgui_internal:1091" defs["ImGuiMenuColumns_destroy"][1]["ov_cimguiname"] = "ImGuiMenuColumns_destroy" defs["ImGuiMenuColumns_destroy"][1]["ret"] = "void" defs["ImGuiMenuColumns_destroy"][1]["signature"] = "(ImGuiMenuColumns*)" @@ -6154,7 +6154,7 @@ defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["cimguiname"] = "ImGuiMul defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["constructor"] = true defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["defaults"] = {} defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["funcname"] = "ImGuiMultiSelectState" -defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["location"] = "imgui_internal:1793" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["location"] = "imgui_internal:1797" defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["ov_cimguiname"] = "ImGuiMultiSelectState_ImGuiMultiSelectState" defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["signature"] = "()" defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["stname"] = "ImGuiMultiSelectState" @@ -6170,7 +6170,7 @@ defs["ImGuiMultiSelectState_destroy"][1]["call_args"] = "(self)" defs["ImGuiMultiSelectState_destroy"][1]["cimguiname"] = "ImGuiMultiSelectState_destroy" defs["ImGuiMultiSelectState_destroy"][1]["defaults"] = {} defs["ImGuiMultiSelectState_destroy"][1]["destructor"] = true -defs["ImGuiMultiSelectState_destroy"][1]["location"] = "imgui_internal:1793" +defs["ImGuiMultiSelectState_destroy"][1]["location"] = "imgui_internal:1797" defs["ImGuiMultiSelectState_destroy"][1]["ov_cimguiname"] = "ImGuiMultiSelectState_destroy" defs["ImGuiMultiSelectState_destroy"][1]["ret"] = "void" defs["ImGuiMultiSelectState_destroy"][1]["signature"] = "(ImGuiMultiSelectState*)" @@ -6188,7 +6188,7 @@ defs["ImGuiMultiSelectTempData_Clear"][1]["call_args"] = "()" defs["ImGuiMultiSelectTempData_Clear"][1]["cimguiname"] = "ImGuiMultiSelectTempData_Clear" defs["ImGuiMultiSelectTempData_Clear"][1]["defaults"] = {} defs["ImGuiMultiSelectTempData_Clear"][1]["funcname"] = "Clear" -defs["ImGuiMultiSelectTempData_Clear"][1]["location"] = "imgui_internal:1777" +defs["ImGuiMultiSelectTempData_Clear"][1]["location"] = "imgui_internal:1781" defs["ImGuiMultiSelectTempData_Clear"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_Clear" defs["ImGuiMultiSelectTempData_Clear"][1]["ret"] = "void" defs["ImGuiMultiSelectTempData_Clear"][1]["signature"] = "()" @@ -6206,7 +6206,7 @@ defs["ImGuiMultiSelectTempData_ClearIO"][1]["call_args"] = "()" defs["ImGuiMultiSelectTempData_ClearIO"][1]["cimguiname"] = "ImGuiMultiSelectTempData_ClearIO" defs["ImGuiMultiSelectTempData_ClearIO"][1]["defaults"] = {} defs["ImGuiMultiSelectTempData_ClearIO"][1]["funcname"] = "ClearIO" -defs["ImGuiMultiSelectTempData_ClearIO"][1]["location"] = "imgui_internal:1778" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["location"] = "imgui_internal:1782" defs["ImGuiMultiSelectTempData_ClearIO"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_ClearIO" defs["ImGuiMultiSelectTempData_ClearIO"][1]["ret"] = "void" defs["ImGuiMultiSelectTempData_ClearIO"][1]["signature"] = "()" @@ -6222,7 +6222,7 @@ defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["cimguiname"] = "Im defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["constructor"] = true defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["defaults"] = {} defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["funcname"] = "ImGuiMultiSelectTempData" -defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["location"] = "imgui_internal:1776" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["location"] = "imgui_internal:1780" defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData" defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["signature"] = "()" defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["stname"] = "ImGuiMultiSelectTempData" @@ -6238,7 +6238,7 @@ defs["ImGuiMultiSelectTempData_destroy"][1]["call_args"] = "(self)" defs["ImGuiMultiSelectTempData_destroy"][1]["cimguiname"] = "ImGuiMultiSelectTempData_destroy" defs["ImGuiMultiSelectTempData_destroy"][1]["defaults"] = {} defs["ImGuiMultiSelectTempData_destroy"][1]["destructor"] = true -defs["ImGuiMultiSelectTempData_destroy"][1]["location"] = "imgui_internal:1776" +defs["ImGuiMultiSelectTempData_destroy"][1]["location"] = "imgui_internal:1780" defs["ImGuiMultiSelectTempData_destroy"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_destroy" defs["ImGuiMultiSelectTempData_destroy"][1]["ret"] = "void" defs["ImGuiMultiSelectTempData_destroy"][1]["signature"] = "(ImGuiMultiSelectTempData*)" @@ -6256,7 +6256,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:1618" +defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1622" defs["ImGuiNavItemData_Clear"][1]["ov_cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["ret"] = "void" defs["ImGuiNavItemData_Clear"][1]["signature"] = "()" @@ -6272,7 +6272,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:1617" +defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1621" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["ov_cimguiname"] = "ImGuiNavItemData_ImGuiNavItemData" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["signature"] = "()" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["stname"] = "ImGuiNavItemData" @@ -6288,7 +6288,7 @@ defs["ImGuiNavItemData_destroy"][1]["call_args"] = "(self)" defs["ImGuiNavItemData_destroy"][1]["cimguiname"] = "ImGuiNavItemData_destroy" defs["ImGuiNavItemData_destroy"][1]["defaults"] = {} defs["ImGuiNavItemData_destroy"][1]["destructor"] = true -defs["ImGuiNavItemData_destroy"][1]["location"] = "imgui_internal:1617" +defs["ImGuiNavItemData_destroy"][1]["location"] = "imgui_internal:1621" defs["ImGuiNavItemData_destroy"][1]["ov_cimguiname"] = "ImGuiNavItemData_destroy" defs["ImGuiNavItemData_destroy"][1]["ret"] = "void" defs["ImGuiNavItemData_destroy"][1]["signature"] = "(ImGuiNavItemData*)" @@ -6306,7 +6306,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:1238" +defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1242" defs["ImGuiNextItemData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextItemData_ClearFlags"][1]["signature"] = "()" @@ -6322,7 +6322,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:1237" +defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1241" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["ov_cimguiname"] = "ImGuiNextItemData_ImGuiNextItemData" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["signature"] = "()" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["stname"] = "ImGuiNextItemData" @@ -6338,7 +6338,7 @@ defs["ImGuiNextItemData_destroy"][1]["call_args"] = "(self)" defs["ImGuiNextItemData_destroy"][1]["cimguiname"] = "ImGuiNextItemData_destroy" defs["ImGuiNextItemData_destroy"][1]["defaults"] = {} defs["ImGuiNextItemData_destroy"][1]["destructor"] = true -defs["ImGuiNextItemData_destroy"][1]["location"] = "imgui_internal:1237" +defs["ImGuiNextItemData_destroy"][1]["location"] = "imgui_internal:1241" defs["ImGuiNextItemData_destroy"][1]["ov_cimguiname"] = "ImGuiNextItemData_destroy" defs["ImGuiNextItemData_destroy"][1]["ret"] = "void" defs["ImGuiNextItemData_destroy"][1]["signature"] = "(ImGuiNextItemData*)" @@ -6356,7 +6356,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:1209" +defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1213" defs["ImGuiNextWindowData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextWindowData_ClearFlags"][1]["signature"] = "()" @@ -6372,7 +6372,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:1208" +defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1212" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ImGuiNextWindowData" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["signature"] = "()" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["stname"] = "ImGuiNextWindowData" @@ -6388,7 +6388,7 @@ defs["ImGuiNextWindowData_destroy"][1]["call_args"] = "(self)" defs["ImGuiNextWindowData_destroy"][1]["cimguiname"] = "ImGuiNextWindowData_destroy" defs["ImGuiNextWindowData_destroy"][1]["defaults"] = {} defs["ImGuiNextWindowData_destroy"][1]["destructor"] = true -defs["ImGuiNextWindowData_destroy"][1]["location"] = "imgui_internal:1208" +defs["ImGuiNextWindowData_destroy"][1]["location"] = "imgui_internal:1212" defs["ImGuiNextWindowData_destroy"][1]["ov_cimguiname"] = "ImGuiNextWindowData_destroy" defs["ImGuiNextWindowData_destroy"][1]["ret"] = "void" defs["ImGuiNextWindowData_destroy"][1]["signature"] = "(ImGuiNextWindowData*)" @@ -6404,7 +6404,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:1697" +defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1701" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["ov_cimguiname"] = "ImGuiOldColumnData_ImGuiOldColumnData" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["signature"] = "()" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["stname"] = "ImGuiOldColumnData" @@ -6420,7 +6420,7 @@ defs["ImGuiOldColumnData_destroy"][1]["call_args"] = "(self)" defs["ImGuiOldColumnData_destroy"][1]["cimguiname"] = "ImGuiOldColumnData_destroy" defs["ImGuiOldColumnData_destroy"][1]["defaults"] = {} defs["ImGuiOldColumnData_destroy"][1]["destructor"] = true -defs["ImGuiOldColumnData_destroy"][1]["location"] = "imgui_internal:1697" +defs["ImGuiOldColumnData_destroy"][1]["location"] = "imgui_internal:1701" defs["ImGuiOldColumnData_destroy"][1]["ov_cimguiname"] = "ImGuiOldColumnData_destroy" defs["ImGuiOldColumnData_destroy"][1]["ret"] = "void" defs["ImGuiOldColumnData_destroy"][1]["signature"] = "(ImGuiOldColumnData*)" @@ -6436,7 +6436,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:1718" +defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1722" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["ov_cimguiname"] = "ImGuiOldColumns_ImGuiOldColumns" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["signature"] = "()" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["stname"] = "ImGuiOldColumns" @@ -6452,7 +6452,7 @@ defs["ImGuiOldColumns_destroy"][1]["call_args"] = "(self)" defs["ImGuiOldColumns_destroy"][1]["cimguiname"] = "ImGuiOldColumns_destroy" defs["ImGuiOldColumns_destroy"][1]["defaults"] = {} defs["ImGuiOldColumns_destroy"][1]["destructor"] = true -defs["ImGuiOldColumns_destroy"][1]["location"] = "imgui_internal:1718" +defs["ImGuiOldColumns_destroy"][1]["location"] = "imgui_internal:1722" defs["ImGuiOldColumns_destroy"][1]["ov_cimguiname"] = "ImGuiOldColumns_destroy" defs["ImGuiOldColumns_destroy"][1]["ret"] = "void" defs["ImGuiOldColumns_destroy"][1]["signature"] = "(ImGuiOldColumns*)" @@ -6468,7 +6468,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:2522" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2527" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -6484,7 +6484,7 @@ defs["ImGuiOnceUponAFrame_destroy"][1]["call_args"] = "(self)" defs["ImGuiOnceUponAFrame_destroy"][1]["cimguiname"] = "ImGuiOnceUponAFrame_destroy" defs["ImGuiOnceUponAFrame_destroy"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_destroy"][1]["destructor"] = true -defs["ImGuiOnceUponAFrame_destroy"][1]["location"] = "imgui:2522" +defs["ImGuiOnceUponAFrame_destroy"][1]["location"] = "imgui:2527" defs["ImGuiOnceUponAFrame_destroy"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_destroy" defs["ImGuiOnceUponAFrame_destroy"][1]["ret"] = "void" defs["ImGuiOnceUponAFrame_destroy"][1]["signature"] = "(ImGuiOnceUponAFrame*)" @@ -6502,7 +6502,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:2500" +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2505" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -6518,7 +6518,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:2499" +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2504" defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -6538,7 +6538,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:2501" +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2506" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -6556,7 +6556,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:2503" +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2508" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -6574,7 +6574,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:2502" +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2507" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -6591,7 +6591,7 @@ defs["ImGuiPayload_destroy"][1]["call_args"] = "(self)" defs["ImGuiPayload_destroy"][1]["cimguiname"] = "ImGuiPayload_destroy" defs["ImGuiPayload_destroy"][1]["defaults"] = {} defs["ImGuiPayload_destroy"][1]["destructor"] = true -defs["ImGuiPayload_destroy"][1]["location"] = "imgui:2499" +defs["ImGuiPayload_destroy"][1]["location"] = "imgui:2504" defs["ImGuiPayload_destroy"][1]["ov_cimguiname"] = "ImGuiPayload_destroy" defs["ImGuiPayload_destroy"][1]["ret"] = "void" defs["ImGuiPayload_destroy"][1]["signature"] = "(ImGuiPayload*)" @@ -6607,7 +6607,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:3521" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3531" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["ov_cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["signature"] = "()" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["stname"] = "ImGuiPlatformIO" @@ -6623,7 +6623,7 @@ defs["ImGuiPlatformIO_destroy"][1]["call_args"] = "(self)" defs["ImGuiPlatformIO_destroy"][1]["cimguiname"] = "ImGuiPlatformIO_destroy" defs["ImGuiPlatformIO_destroy"][1]["defaults"] = {} defs["ImGuiPlatformIO_destroy"][1]["destructor"] = true -defs["ImGuiPlatformIO_destroy"][1]["location"] = "imgui:3521" +defs["ImGuiPlatformIO_destroy"][1]["location"] = "imgui:3531" defs["ImGuiPlatformIO_destroy"][1]["ov_cimguiname"] = "ImGuiPlatformIO_destroy" defs["ImGuiPlatformIO_destroy"][1]["ret"] = "void" defs["ImGuiPlatformIO_destroy"][1]["signature"] = "(ImGuiPlatformIO*)" @@ -6639,7 +6639,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:3563" +defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3573" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["ov_cimguiname"] = "ImGuiPlatformImeData_ImGuiPlatformImeData" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["signature"] = "()" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["stname"] = "ImGuiPlatformImeData" @@ -6655,7 +6655,7 @@ defs["ImGuiPlatformImeData_destroy"][1]["call_args"] = "(self)" defs["ImGuiPlatformImeData_destroy"][1]["cimguiname"] = "ImGuiPlatformImeData_destroy" defs["ImGuiPlatformImeData_destroy"][1]["defaults"] = {} defs["ImGuiPlatformImeData_destroy"][1]["destructor"] = true -defs["ImGuiPlatformImeData_destroy"][1]["location"] = "imgui:3563" +defs["ImGuiPlatformImeData_destroy"][1]["location"] = "imgui:3573" defs["ImGuiPlatformImeData_destroy"][1]["ov_cimguiname"] = "ImGuiPlatformImeData_destroy" defs["ImGuiPlatformImeData_destroy"][1]["ret"] = "void" defs["ImGuiPlatformImeData_destroy"][1]["signature"] = "(ImGuiPlatformImeData*)" @@ -6671,7 +6671,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:1335" +defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1339" defs["ImGuiPopupData_ImGuiPopupData"][1]["ov_cimguiname"] = "ImGuiPopupData_ImGuiPopupData" defs["ImGuiPopupData_ImGuiPopupData"][1]["signature"] = "()" defs["ImGuiPopupData_ImGuiPopupData"][1]["stname"] = "ImGuiPopupData" @@ -6687,7 +6687,7 @@ defs["ImGuiPopupData_destroy"][1]["call_args"] = "(self)" defs["ImGuiPopupData_destroy"][1]["cimguiname"] = "ImGuiPopupData_destroy" defs["ImGuiPopupData_destroy"][1]["defaults"] = {} defs["ImGuiPopupData_destroy"][1]["destructor"] = true -defs["ImGuiPopupData_destroy"][1]["location"] = "imgui_internal:1335" +defs["ImGuiPopupData_destroy"][1]["location"] = "imgui_internal:1339" defs["ImGuiPopupData_destroy"][1]["ov_cimguiname"] = "ImGuiPopupData_destroy" defs["ImGuiPopupData_destroy"][1]["ret"] = "void" defs["ImGuiPopupData_destroy"][1]["signature"] = "(ImGuiPopupData*)" @@ -6706,7 +6706,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:1308" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1312" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["signature"] = "(void*)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["stname"] = "ImGuiPtrOrIndex" @@ -6722,7 +6722,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:1309" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1313" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["signature"] = "(int)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["stname"] = "ImGuiPtrOrIndex" @@ -6739,7 +6739,7 @@ defs["ImGuiPtrOrIndex_destroy"][1]["call_args"] = "(self)" defs["ImGuiPtrOrIndex_destroy"][1]["cimguiname"] = "ImGuiPtrOrIndex_destroy" defs["ImGuiPtrOrIndex_destroy"][1]["defaults"] = {} defs["ImGuiPtrOrIndex_destroy"][1]["destructor"] = true -defs["ImGuiPtrOrIndex_destroy"][1]["location"] = "imgui_internal:1308" +defs["ImGuiPtrOrIndex_destroy"][1]["location"] = "imgui_internal:1312" defs["ImGuiPtrOrIndex_destroy"][1]["ov_cimguiname"] = "ImGuiPtrOrIndex_destroy" defs["ImGuiPtrOrIndex_destroy"][1]["ret"] = "void" defs["ImGuiPtrOrIndex_destroy"][1]["signature"] = "(ImGuiPtrOrIndex*)" @@ -6760,7 +6760,7 @@ defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" -defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["location"] = "imgui:2884" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["location"] = "imgui:2890" defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ret"] = "void" defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" @@ -6778,7 +6778,7 @@ defs["ImGuiSelectionBasicStorage_Clear"][1]["call_args"] = "()" defs["ImGuiSelectionBasicStorage_Clear"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Clear" defs["ImGuiSelectionBasicStorage_Clear"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_Clear"][1]["funcname"] = "Clear" -defs["ImGuiSelectionBasicStorage_Clear"][1]["location"] = "imgui:2886" +defs["ImGuiSelectionBasicStorage_Clear"][1]["location"] = "imgui:2892" defs["ImGuiSelectionBasicStorage_Clear"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Clear" defs["ImGuiSelectionBasicStorage_Clear"][1]["ret"] = "void" defs["ImGuiSelectionBasicStorage_Clear"][1]["signature"] = "()" @@ -6799,7 +6799,7 @@ defs["ImGuiSelectionBasicStorage_Contains"][1]["call_args"] = "(id)" defs["ImGuiSelectionBasicStorage_Contains"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Contains" defs["ImGuiSelectionBasicStorage_Contains"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_Contains"][1]["funcname"] = "Contains" -defs["ImGuiSelectionBasicStorage_Contains"][1]["location"] = "imgui:2885" +defs["ImGuiSelectionBasicStorage_Contains"][1]["location"] = "imgui:2891" defs["ImGuiSelectionBasicStorage_Contains"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Contains" defs["ImGuiSelectionBasicStorage_Contains"][1]["ret"] = "bool" defs["ImGuiSelectionBasicStorage_Contains"][1]["signature"] = "(ImGuiID)const" @@ -6823,7 +6823,7 @@ defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["call_args"] = "(opaqu defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["funcname"] = "GetNextSelectedItem" -defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["location"] = "imgui:2889" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["location"] = "imgui:2895" defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ret"] = "bool" defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["signature"] = "(void**,ImGuiID*)" @@ -6844,7 +6844,7 @@ defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["call_args"] = "(idx defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["funcname"] = "GetStorageIdFromIndex" -defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["location"] = "imgui:2890" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["location"] = "imgui:2896" defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ret"] = "ImGuiID" defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["signature"] = "(int)" @@ -6860,7 +6860,7 @@ defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["cimguiname"] = defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["constructor"] = true defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["funcname"] = "ImGuiSelectionBasicStorage" -defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["location"] = "imgui:2883" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["location"] = "imgui:2889" defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage" defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["signature"] = "()" defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["stname"] = "ImGuiSelectionBasicStorage" @@ -6883,7 +6883,7 @@ defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["call_args"] = "(id,select defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["funcname"] = "SetItemSelected" -defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["location"] = "imgui:2888" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["location"] = "imgui:2894" defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ret"] = "void" defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["signature"] = "(ImGuiID,bool)" @@ -6905,7 +6905,7 @@ defs["ImGuiSelectionBasicStorage_Swap"][1]["call_args"] = "(*r)" defs["ImGuiSelectionBasicStorage_Swap"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Swap" defs["ImGuiSelectionBasicStorage_Swap"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_Swap"][1]["funcname"] = "Swap" -defs["ImGuiSelectionBasicStorage_Swap"][1]["location"] = "imgui:2887" +defs["ImGuiSelectionBasicStorage_Swap"][1]["location"] = "imgui:2893" defs["ImGuiSelectionBasicStorage_Swap"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Swap" defs["ImGuiSelectionBasicStorage_Swap"][1]["ret"] = "void" defs["ImGuiSelectionBasicStorage_Swap"][1]["signature"] = "(ImGuiSelectionBasicStorage*)" @@ -6922,7 +6922,7 @@ defs["ImGuiSelectionBasicStorage_destroy"][1]["call_args"] = "(self)" defs["ImGuiSelectionBasicStorage_destroy"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_destroy" defs["ImGuiSelectionBasicStorage_destroy"][1]["defaults"] = {} defs["ImGuiSelectionBasicStorage_destroy"][1]["destructor"] = true -defs["ImGuiSelectionBasicStorage_destroy"][1]["location"] = "imgui:2883" +defs["ImGuiSelectionBasicStorage_destroy"][1]["location"] = "imgui:2889" defs["ImGuiSelectionBasicStorage_destroy"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_destroy" defs["ImGuiSelectionBasicStorage_destroy"][1]["ret"] = "void" defs["ImGuiSelectionBasicStorage_destroy"][1]["signature"] = "(ImGuiSelectionBasicStorage*)" @@ -6943,7 +6943,7 @@ defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["defaults"] = {} defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" -defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["location"] = "imgui:2903" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["location"] = "imgui:2909" defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ret"] = "void" defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" @@ -6959,7 +6959,7 @@ defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["cimguina defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["constructor"] = true defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["defaults"] = {} defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["funcname"] = "ImGuiSelectionExternalStorage" -defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["location"] = "imgui:2902" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["location"] = "imgui:2908" defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage" defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["signature"] = "()" defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["stname"] = "ImGuiSelectionExternalStorage" @@ -6975,7 +6975,7 @@ defs["ImGuiSelectionExternalStorage_destroy"][1]["call_args"] = "(self)" defs["ImGuiSelectionExternalStorage_destroy"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_destroy" defs["ImGuiSelectionExternalStorage_destroy"][1]["defaults"] = {} defs["ImGuiSelectionExternalStorage_destroy"][1]["destructor"] = true -defs["ImGuiSelectionExternalStorage_destroy"][1]["location"] = "imgui:2902" +defs["ImGuiSelectionExternalStorage_destroy"][1]["location"] = "imgui:2908" defs["ImGuiSelectionExternalStorage_destroy"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_destroy" defs["ImGuiSelectionExternalStorage_destroy"][1]["ret"] = "void" defs["ImGuiSelectionExternalStorage_destroy"][1]["signature"] = "(ImGuiSelectionExternalStorage*)" @@ -6991,7 +6991,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:1873" +defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:1877" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["ov_cimguiname"] = "ImGuiSettingsHandler_ImGuiSettingsHandler" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["signature"] = "()" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["stname"] = "ImGuiSettingsHandler" @@ -7007,7 +7007,7 @@ defs["ImGuiSettingsHandler_destroy"][1]["call_args"] = "(self)" defs["ImGuiSettingsHandler_destroy"][1]["cimguiname"] = "ImGuiSettingsHandler_destroy" defs["ImGuiSettingsHandler_destroy"][1]["defaults"] = {} defs["ImGuiSettingsHandler_destroy"][1]["destructor"] = true -defs["ImGuiSettingsHandler_destroy"][1]["location"] = "imgui_internal:1873" +defs["ImGuiSettingsHandler_destroy"][1]["location"] = "imgui_internal:1877" defs["ImGuiSettingsHandler_destroy"][1]["ov_cimguiname"] = "ImGuiSettingsHandler_destroy" defs["ImGuiSettingsHandler_destroy"][1]["ret"] = "void" defs["ImGuiSettingsHandler_destroy"][1]["signature"] = "(ImGuiSettingsHandler*)" @@ -7023,7 +7023,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:1985" +defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:1991" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["ov_cimguiname"] = "ImGuiStackLevelInfo_ImGuiStackLevelInfo" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["signature"] = "()" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["stname"] = "ImGuiStackLevelInfo" @@ -7039,7 +7039,7 @@ defs["ImGuiStackLevelInfo_destroy"][1]["call_args"] = "(self)" defs["ImGuiStackLevelInfo_destroy"][1]["cimguiname"] = "ImGuiStackLevelInfo_destroy" defs["ImGuiStackLevelInfo_destroy"][1]["defaults"] = {} defs["ImGuiStackLevelInfo_destroy"][1]["destructor"] = true -defs["ImGuiStackLevelInfo_destroy"][1]["location"] = "imgui_internal:1985" +defs["ImGuiStackLevelInfo_destroy"][1]["location"] = "imgui_internal:1991" defs["ImGuiStackLevelInfo_destroy"][1]["ov_cimguiname"] = "ImGuiStackLevelInfo_destroy" defs["ImGuiStackLevelInfo_destroy"][1]["ret"] = "void" defs["ImGuiStackLevelInfo_destroy"][1]["signature"] = "(ImGuiStackLevelInfo*)" @@ -7061,7 +7061,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:2579" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2584" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Int" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" @@ -7080,7 +7080,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:2580" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2585" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Float" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" @@ -7099,7 +7099,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:2581" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2586" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Ptr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -7117,7 +7117,7 @@ defs["ImGuiStoragePair_destroy"][1]["call_args"] = "(self)" defs["ImGuiStoragePair_destroy"][1]["cimguiname"] = "ImGuiStoragePair_destroy" defs["ImGuiStoragePair_destroy"][1]["defaults"] = {} defs["ImGuiStoragePair_destroy"][1]["destructor"] = true -defs["ImGuiStoragePair_destroy"][1]["location"] = "imgui:2579" +defs["ImGuiStoragePair_destroy"][1]["location"] = "imgui:2584" defs["ImGuiStoragePair_destroy"][1]["ov_cimguiname"] = "ImGuiStoragePair_destroy" defs["ImGuiStoragePair_destroy"][1]["ret"] = "void" defs["ImGuiStoragePair_destroy"][1]["signature"] = "(ImGuiStoragePair*)" @@ -7135,7 +7135,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:2620" +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2625" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -7153,7 +7153,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:2600" +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2605" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -7178,7 +7178,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:2603" +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2608" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -7203,7 +7203,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:2615" +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2620" defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -7228,7 +7228,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:2605" +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2610" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -7253,7 +7253,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:2616" +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2621" defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -7278,7 +7278,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:2601" +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2606" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -7303,7 +7303,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:2614" +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2619" defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -7324,7 +7324,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:2607" +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2612" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -7349,7 +7349,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:2617" +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2622" defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -7370,7 +7370,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:2622" +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2627" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -7394,7 +7394,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:2604" +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2609" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -7418,7 +7418,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:2606" +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2611" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -7442,7 +7442,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:2602" +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2607" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -7466,7 +7466,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:2608" +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2613" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -7488,7 +7488,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:1039" +defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:1043" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Int" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["signature"] = "(ImGuiStyleVar,int)" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["stname"] = "ImGuiStyleMod" @@ -7507,7 +7507,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:1040" +defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:1044" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Float" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["signature"] = "(ImGuiStyleVar,float)" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["stname"] = "ImGuiStyleMod" @@ -7526,7 +7526,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:1041" +defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:1045" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Vec2" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["signature"] = "(ImGuiStyleVar,ImVec2)" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["stname"] = "ImGuiStyleMod" @@ -7544,7 +7544,7 @@ defs["ImGuiStyleMod_destroy"][1]["call_args"] = "(self)" defs["ImGuiStyleMod_destroy"][1]["cimguiname"] = "ImGuiStyleMod_destroy" defs["ImGuiStyleMod_destroy"][1]["defaults"] = {} defs["ImGuiStyleMod_destroy"][1]["destructor"] = true -defs["ImGuiStyleMod_destroy"][1]["location"] = "imgui_internal:1039" +defs["ImGuiStyleMod_destroy"][1]["location"] = "imgui_internal:1043" defs["ImGuiStyleMod_destroy"][1]["ov_cimguiname"] = "ImGuiStyleMod_destroy" defs["ImGuiStyleMod_destroy"][1]["ret"] = "void" defs["ImGuiStyleMod_destroy"][1]["signature"] = "(ImGuiStyleMod*)" @@ -7560,7 +7560,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:2178" +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:2182" defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -7580,7 +7580,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:2179" +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:2183" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -7597,7 +7597,7 @@ defs["ImGuiStyle_destroy"][1]["call_args"] = "(self)" defs["ImGuiStyle_destroy"][1]["cimguiname"] = "ImGuiStyle_destroy" defs["ImGuiStyle_destroy"][1]["defaults"] = {} defs["ImGuiStyle_destroy"][1]["destructor"] = true -defs["ImGuiStyle_destroy"][1]["location"] = "imgui:2178" +defs["ImGuiStyle_destroy"][1]["location"] = "imgui:2182" defs["ImGuiStyle_destroy"][1]["ov_cimguiname"] = "ImGuiStyle_destroy" defs["ImGuiStyle_destroy"][1]["ret"] = "void" defs["ImGuiStyle_destroy"][1]["signature"] = "(ImGuiStyle*)" @@ -7613,7 +7613,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:2646" +defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:2652" defs["ImGuiTabBar_ImGuiTabBar"][1]["ov_cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["signature"] = "()" defs["ImGuiTabBar_ImGuiTabBar"][1]["stname"] = "ImGuiTabBar" @@ -7629,7 +7629,7 @@ defs["ImGuiTabBar_destroy"][1]["call_args"] = "(self)" defs["ImGuiTabBar_destroy"][1]["cimguiname"] = "ImGuiTabBar_destroy" defs["ImGuiTabBar_destroy"][1]["defaults"] = {} defs["ImGuiTabBar_destroy"][1]["destructor"] = true -defs["ImGuiTabBar_destroy"][1]["location"] = "imgui_internal:2646" +defs["ImGuiTabBar_destroy"][1]["location"] = "imgui_internal:2652" defs["ImGuiTabBar_destroy"][1]["ov_cimguiname"] = "ImGuiTabBar_destroy" defs["ImGuiTabBar_destroy"][1]["ret"] = "void" defs["ImGuiTabBar_destroy"][1]["signature"] = "(ImGuiTabBar*)" @@ -7645,7 +7645,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:2605" +defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:2611" defs["ImGuiTabItem_ImGuiTabItem"][1]["ov_cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["signature"] = "()" defs["ImGuiTabItem_ImGuiTabItem"][1]["stname"] = "ImGuiTabItem" @@ -7661,7 +7661,7 @@ defs["ImGuiTabItem_destroy"][1]["call_args"] = "(self)" defs["ImGuiTabItem_destroy"][1]["cimguiname"] = "ImGuiTabItem_destroy" defs["ImGuiTabItem_destroy"][1]["defaults"] = {} defs["ImGuiTabItem_destroy"][1]["destructor"] = true -defs["ImGuiTabItem_destroy"][1]["location"] = "imgui_internal:2605" +defs["ImGuiTabItem_destroy"][1]["location"] = "imgui_internal:2611" defs["ImGuiTabItem_destroy"][1]["ov_cimguiname"] = "ImGuiTabItem_destroy" defs["ImGuiTabItem_destroy"][1]["ret"] = "void" defs["ImGuiTabItem_destroy"][1]["signature"] = "(ImGuiTabItem*)" @@ -7677,7 +7677,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:2914" +defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:2920" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableColumnSettings_ImGuiTableColumnSettings" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["signature"] = "()" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["stname"] = "ImGuiTableColumnSettings" @@ -7693,7 +7693,7 @@ defs["ImGuiTableColumnSettings_destroy"][1]["call_args"] = "(self)" defs["ImGuiTableColumnSettings_destroy"][1]["cimguiname"] = "ImGuiTableColumnSettings_destroy" defs["ImGuiTableColumnSettings_destroy"][1]["defaults"] = {} defs["ImGuiTableColumnSettings_destroy"][1]["destructor"] = true -defs["ImGuiTableColumnSettings_destroy"][1]["location"] = "imgui_internal:2914" +defs["ImGuiTableColumnSettings_destroy"][1]["location"] = "imgui_internal:2920" defs["ImGuiTableColumnSettings_destroy"][1]["ov_cimguiname"] = "ImGuiTableColumnSettings_destroy" defs["ImGuiTableColumnSettings_destroy"][1]["ret"] = "void" defs["ImGuiTableColumnSettings_destroy"][1]["signature"] = "(ImGuiTableColumnSettings*)" @@ -7709,7 +7709,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:2002" +defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2006" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["signature"] = "()" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["stname"] = "ImGuiTableColumnSortSpecs" @@ -7725,7 +7725,7 @@ defs["ImGuiTableColumnSortSpecs_destroy"][1]["call_args"] = "(self)" defs["ImGuiTableColumnSortSpecs_destroy"][1]["cimguiname"] = "ImGuiTableColumnSortSpecs_destroy" defs["ImGuiTableColumnSortSpecs_destroy"][1]["defaults"] = {} defs["ImGuiTableColumnSortSpecs_destroy"][1]["destructor"] = true -defs["ImGuiTableColumnSortSpecs_destroy"][1]["location"] = "imgui:2002" +defs["ImGuiTableColumnSortSpecs_destroy"][1]["location"] = "imgui:2006" defs["ImGuiTableColumnSortSpecs_destroy"][1]["ov_cimguiname"] = "ImGuiTableColumnSortSpecs_destroy" defs["ImGuiTableColumnSortSpecs_destroy"][1]["ret"] = "void" defs["ImGuiTableColumnSortSpecs_destroy"][1]["signature"] = "(ImGuiTableColumnSortSpecs*)" @@ -7741,7 +7741,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:2709" +defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:2715" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["ov_cimguiname"] = "ImGuiTableColumn_ImGuiTableColumn" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["signature"] = "()" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["stname"] = "ImGuiTableColumn" @@ -7757,7 +7757,7 @@ defs["ImGuiTableColumn_destroy"][1]["call_args"] = "(self)" defs["ImGuiTableColumn_destroy"][1]["cimguiname"] = "ImGuiTableColumn_destroy" defs["ImGuiTableColumn_destroy"][1]["defaults"] = {} defs["ImGuiTableColumn_destroy"][1]["destructor"] = true -defs["ImGuiTableColumn_destroy"][1]["location"] = "imgui_internal:2709" +defs["ImGuiTableColumn_destroy"][1]["location"] = "imgui_internal:2715" defs["ImGuiTableColumn_destroy"][1]["ov_cimguiname"] = "ImGuiTableColumn_destroy" defs["ImGuiTableColumn_destroy"][1]["ret"] = "void" defs["ImGuiTableColumn_destroy"][1]["signature"] = "(ImGuiTableColumn*)" @@ -7773,7 +7773,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:2752" +defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:2758" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["ov_cimguiname"] = "ImGuiTableInstanceData_ImGuiTableInstanceData" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["signature"] = "()" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["stname"] = "ImGuiTableInstanceData" @@ -7789,7 +7789,7 @@ defs["ImGuiTableInstanceData_destroy"][1]["call_args"] = "(self)" defs["ImGuiTableInstanceData_destroy"][1]["cimguiname"] = "ImGuiTableInstanceData_destroy" defs["ImGuiTableInstanceData_destroy"][1]["defaults"] = {} defs["ImGuiTableInstanceData_destroy"][1]["destructor"] = true -defs["ImGuiTableInstanceData_destroy"][1]["location"] = "imgui_internal:2752" +defs["ImGuiTableInstanceData_destroy"][1]["location"] = "imgui_internal:2758" defs["ImGuiTableInstanceData_destroy"][1]["ov_cimguiname"] = "ImGuiTableInstanceData_destroy" defs["ImGuiTableInstanceData_destroy"][1]["ret"] = "void" defs["ImGuiTableInstanceData_destroy"][1]["signature"] = "(ImGuiTableInstanceData*)" @@ -7807,7 +7807,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:2937" +defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:2943" defs["ImGuiTableSettings_GetColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["ret"] = "ImGuiTableColumnSettings*" defs["ImGuiTableSettings_GetColumnSettings"][1]["signature"] = "()" @@ -7823,7 +7823,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:2936" +defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:2942" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_ImGuiTableSettings" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["signature"] = "()" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["stname"] = "ImGuiTableSettings" @@ -7839,7 +7839,7 @@ defs["ImGuiTableSettings_destroy"][1]["call_args"] = "(self)" defs["ImGuiTableSettings_destroy"][1]["cimguiname"] = "ImGuiTableSettings_destroy" defs["ImGuiTableSettings_destroy"][1]["defaults"] = {} defs["ImGuiTableSettings_destroy"][1]["destructor"] = true -defs["ImGuiTableSettings_destroy"][1]["location"] = "imgui_internal:2936" +defs["ImGuiTableSettings_destroy"][1]["location"] = "imgui_internal:2942" defs["ImGuiTableSettings_destroy"][1]["ov_cimguiname"] = "ImGuiTableSettings_destroy" defs["ImGuiTableSettings_destroy"][1]["ret"] = "void" defs["ImGuiTableSettings_destroy"][1]["signature"] = "(ImGuiTableSettings*)" @@ -7855,7 +7855,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:1991" +defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:1995" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableSortSpecs_ImGuiTableSortSpecs" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["signature"] = "()" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["stname"] = "ImGuiTableSortSpecs" @@ -7871,7 +7871,7 @@ defs["ImGuiTableSortSpecs_destroy"][1]["call_args"] = "(self)" defs["ImGuiTableSortSpecs_destroy"][1]["cimguiname"] = "ImGuiTableSortSpecs_destroy" defs["ImGuiTableSortSpecs_destroy"][1]["defaults"] = {} defs["ImGuiTableSortSpecs_destroy"][1]["destructor"] = true -defs["ImGuiTableSortSpecs_destroy"][1]["location"] = "imgui:1991" +defs["ImGuiTableSortSpecs_destroy"][1]["location"] = "imgui:1995" defs["ImGuiTableSortSpecs_destroy"][1]["ov_cimguiname"] = "ImGuiTableSortSpecs_destroy" defs["ImGuiTableSortSpecs_destroy"][1]["ret"] = "void" defs["ImGuiTableSortSpecs_destroy"][1]["signature"] = "(ImGuiTableSortSpecs*)" @@ -7887,7 +7887,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:2899" +defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:2905" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["ov_cimguiname"] = "ImGuiTableTempData_ImGuiTableTempData" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["signature"] = "()" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["stname"] = "ImGuiTableTempData" @@ -7903,7 +7903,7 @@ defs["ImGuiTableTempData_destroy"][1]["call_args"] = "(self)" defs["ImGuiTableTempData_destroy"][1]["cimguiname"] = "ImGuiTableTempData_destroy" defs["ImGuiTableTempData_destroy"][1]["defaults"] = {} defs["ImGuiTableTempData_destroy"][1]["destructor"] = true -defs["ImGuiTableTempData_destroy"][1]["location"] = "imgui_internal:2899" +defs["ImGuiTableTempData_destroy"][1]["location"] = "imgui_internal:2905" defs["ImGuiTableTempData_destroy"][1]["ov_cimguiname"] = "ImGuiTableTempData_destroy" defs["ImGuiTableTempData_destroy"][1]["ret"] = "void" defs["ImGuiTableTempData_destroy"][1]["signature"] = "(ImGuiTableTempData*)" @@ -7919,7 +7919,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:2871" +defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:2877" defs["ImGuiTable_ImGuiTable"][1]["ov_cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["signature"] = "()" defs["ImGuiTable_ImGuiTable"][1]["stname"] = "ImGuiTable" @@ -7935,7 +7935,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:2872" +defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:2878" defs["ImGuiTable_destroy"][1]["ov_cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["realdestructor"] = true defs["ImGuiTable_destroy"][1]["ret"] = "void" @@ -7952,7 +7952,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:2560" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2565" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -7976,7 +7976,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:2569" +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2574" defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -8001,7 +8001,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:2570" +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2575" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -8026,7 +8026,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:2571" +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2576" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -8044,7 +8044,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:2562" +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2567" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -8062,7 +8062,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:2568" +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2573" 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" @@ -8080,7 +8080,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:2566" +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2571" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -8097,7 +8097,7 @@ defs["ImGuiTextBuffer_destroy"][1]["call_args"] = "(self)" defs["ImGuiTextBuffer_destroy"][1]["cimguiname"] = "ImGuiTextBuffer_destroy" defs["ImGuiTextBuffer_destroy"][1]["defaults"] = {} defs["ImGuiTextBuffer_destroy"][1]["destructor"] = true -defs["ImGuiTextBuffer_destroy"][1]["location"] = "imgui:2560" +defs["ImGuiTextBuffer_destroy"][1]["location"] = "imgui:2565" defs["ImGuiTextBuffer_destroy"][1]["ov_cimguiname"] = "ImGuiTextBuffer_destroy" defs["ImGuiTextBuffer_destroy"][1]["ret"] = "void" defs["ImGuiTextBuffer_destroy"][1]["signature"] = "(ImGuiTextBuffer*)" @@ -8115,7 +8115,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:2565" +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2570" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -8133,7 +8133,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:2563" +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2568" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -8154,7 +8154,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:2567" +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2572" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -8172,7 +8172,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:2564" +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2569" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -8190,7 +8190,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:2533" +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2538" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -8208,7 +8208,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:2534" +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2539" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -8234,7 +8234,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:2531" +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2536" defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -8254,7 +8254,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:2530" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2535" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -8271,7 +8271,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:2535" +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2540" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -8296,7 +8296,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:2532" +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2537" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -8313,7 +8313,7 @@ defs["ImGuiTextFilter_destroy"][1]["call_args"] = "(self)" defs["ImGuiTextFilter_destroy"][1]["cimguiname"] = "ImGuiTextFilter_destroy" defs["ImGuiTextFilter_destroy"][1]["defaults"] = {} defs["ImGuiTextFilter_destroy"][1]["destructor"] = true -defs["ImGuiTextFilter_destroy"][1]["location"] = "imgui:2530" +defs["ImGuiTextFilter_destroy"][1]["location"] = "imgui:2535" defs["ImGuiTextFilter_destroy"][1]["ov_cimguiname"] = "ImGuiTextFilter_destroy" defs["ImGuiTextFilter_destroy"][1]["ret"] = "void" defs["ImGuiTextFilter_destroy"][1]["signature"] = "(ImGuiTextFilter*)" @@ -8340,7 +8340,7 @@ 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:728" +defs["ImGuiTextIndex_append"][1]["location"] = "imgui_internal:732" defs["ImGuiTextIndex_append"][1]["ov_cimguiname"] = "ImGuiTextIndex_append" defs["ImGuiTextIndex_append"][1]["ret"] = "void" defs["ImGuiTextIndex_append"][1]["signature"] = "(const char*,int,int)" @@ -8358,7 +8358,7 @@ 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:724" +defs["ImGuiTextIndex_clear"][1]["location"] = "imgui_internal:728" defs["ImGuiTextIndex_clear"][1]["ov_cimguiname"] = "ImGuiTextIndex_clear" defs["ImGuiTextIndex_clear"][1]["ret"] = "void" defs["ImGuiTextIndex_clear"][1]["signature"] = "()" @@ -8382,7 +8382,7 @@ 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:726" +defs["ImGuiTextIndex_get_line_begin"][1]["location"] = "imgui_internal:730" 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)" @@ -8406,7 +8406,7 @@ 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:727" +defs["ImGuiTextIndex_get_line_end"][1]["location"] = "imgui_internal:731" 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)" @@ -8424,7 +8424,7 @@ 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:725" +defs["ImGuiTextIndex_size"][1]["location"] = "imgui_internal:729" defs["ImGuiTextIndex_size"][1]["ov_cimguiname"] = "ImGuiTextIndex_size" defs["ImGuiTextIndex_size"][1]["ret"] = "int" defs["ImGuiTextIndex_size"][1]["signature"] = "()" @@ -8440,7 +8440,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:2543" +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2548" defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Nil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -8459,7 +8459,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:2544" +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2549" defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Str" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -8476,7 +8476,7 @@ defs["ImGuiTextRange_destroy"][1]["call_args"] = "(self)" defs["ImGuiTextRange_destroy"][1]["cimguiname"] = "ImGuiTextRange_destroy" defs["ImGuiTextRange_destroy"][1]["defaults"] = {} defs["ImGuiTextRange_destroy"][1]["destructor"] = true -defs["ImGuiTextRange_destroy"][1]["location"] = "imgui:2543" +defs["ImGuiTextRange_destroy"][1]["location"] = "imgui:2548" defs["ImGuiTextRange_destroy"][1]["ov_cimguiname"] = "ImGuiTextRange_destroy" defs["ImGuiTextRange_destroy"][1]["ret"] = "void" defs["ImGuiTextRange_destroy"][1]["signature"] = "(ImGuiTextRange*)" @@ -8494,7 +8494,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:2545" +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2550" defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -8518,7 +8518,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:2546" +defs["ImGuiTextRange_split"][1]["location"] = "imgui:2551" defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" @@ -8536,7 +8536,7 @@ defs["ImGuiTypingSelectState_Clear"][1]["call_args"] = "()" defs["ImGuiTypingSelectState_Clear"][1]["cimguiname"] = "ImGuiTypingSelectState_Clear" defs["ImGuiTypingSelectState_Clear"][1]["defaults"] = {} defs["ImGuiTypingSelectState_Clear"][1]["funcname"] = "Clear" -defs["ImGuiTypingSelectState_Clear"][1]["location"] = "imgui_internal:1662" +defs["ImGuiTypingSelectState_Clear"][1]["location"] = "imgui_internal:1666" defs["ImGuiTypingSelectState_Clear"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_Clear" defs["ImGuiTypingSelectState_Clear"][1]["ret"] = "void" defs["ImGuiTypingSelectState_Clear"][1]["signature"] = "()" @@ -8552,7 +8552,7 @@ defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["cimguiname"] = "ImGuiT defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["constructor"] = true defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["defaults"] = {} defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["funcname"] = "ImGuiTypingSelectState" -defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["location"] = "imgui_internal:1661" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["location"] = "imgui_internal:1665" defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_ImGuiTypingSelectState" defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["signature"] = "()" defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["stname"] = "ImGuiTypingSelectState" @@ -8568,7 +8568,7 @@ defs["ImGuiTypingSelectState_destroy"][1]["call_args"] = "(self)" defs["ImGuiTypingSelectState_destroy"][1]["cimguiname"] = "ImGuiTypingSelectState_destroy" defs["ImGuiTypingSelectState_destroy"][1]["defaults"] = {} defs["ImGuiTypingSelectState_destroy"][1]["destructor"] = true -defs["ImGuiTypingSelectState_destroy"][1]["location"] = "imgui_internal:1661" +defs["ImGuiTypingSelectState_destroy"][1]["location"] = "imgui_internal:1665" defs["ImGuiTypingSelectState_destroy"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_destroy" defs["ImGuiTypingSelectState_destroy"][1]["ret"] = "void" defs["ImGuiTypingSelectState_destroy"][1]["signature"] = "(ImGuiTypingSelectState*)" @@ -8592,7 +8592,7 @@ defs["ImGuiViewportP_CalcWorkRectPos"][1]["call_args"] = "(inset_min)" defs["ImGuiViewportP_CalcWorkRectPos"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["funcname"] = "CalcWorkRectPos" -defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1830" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1834" defs["ImGuiViewportP_CalcWorkRectPos"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectPos"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["ret"] = "void" @@ -8620,7 +8620,7 @@ defs["ImGuiViewportP_CalcWorkRectSize"][1]["call_args"] = "(inset_min,inset_max) defs["ImGuiViewportP_CalcWorkRectSize"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["funcname"] = "CalcWorkRectSize" -defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1831" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1835" defs["ImGuiViewportP_CalcWorkRectSize"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectSize"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["ret"] = "void" @@ -8642,7 +8642,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:1837" +defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:1841" defs["ImGuiViewportP_GetBuildWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetBuildWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["ret"] = "void" @@ -8664,7 +8664,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:1835" +defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:1839" defs["ImGuiViewportP_GetMainRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetMainRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["ret"] = "void" @@ -8686,7 +8686,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:1836" +defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:1840" defs["ImGuiViewportP_GetWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["ret"] = "void" @@ -8703,7 +8703,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:1826" +defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1830" defs["ImGuiViewportP_ImGuiViewportP"][1]["ov_cimguiname"] = "ImGuiViewportP_ImGuiViewportP" defs["ImGuiViewportP_ImGuiViewportP"][1]["signature"] = "()" defs["ImGuiViewportP_ImGuiViewportP"][1]["stname"] = "ImGuiViewportP" @@ -8720,7 +8720,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:1832" +defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:1836" defs["ImGuiViewportP_UpdateWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["ret"] = "void" defs["ImGuiViewportP_UpdateWorkRect"][1]["signature"] = "()" @@ -8737,7 +8737,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:1827" +defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1831" defs["ImGuiViewportP_destroy"][1]["ov_cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["realdestructor"] = true defs["ImGuiViewportP_destroy"][1]["ret"] = "void" @@ -8759,7 +8759,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:3510" +defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3520" defs["ImGuiViewport_GetCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["ret"] = "void" @@ -8781,7 +8781,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:3511" +defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3521" defs["ImGuiViewport_GetWorkCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetWorkCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["ret"] = "void" @@ -8798,7 +8798,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:3507" +defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3517" defs["ImGuiViewport_ImGuiViewport"][1]["ov_cimguiname"] = "ImGuiViewport_ImGuiViewport" defs["ImGuiViewport_ImGuiViewport"][1]["signature"] = "()" defs["ImGuiViewport_ImGuiViewport"][1]["stname"] = "ImGuiViewport" @@ -8814,7 +8814,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:3507" +defs["ImGuiViewport_destroy"][1]["location"] = "imgui:3517" defs["ImGuiViewport_destroy"][1]["ov_cimguiname"] = "ImGuiViewport_destroy" defs["ImGuiViewport_destroy"][1]["ret"] = "void" defs["ImGuiViewport_destroy"][1]["signature"] = "(ImGuiViewport*)" @@ -8832,7 +8832,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:1858" +defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:1862" defs["ImGuiWindowSettings_GetName"][1]["ov_cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["ret"] = "char*" defs["ImGuiWindowSettings_GetName"][1]["signature"] = "()" @@ -8848,7 +8848,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:1857" +defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:1861" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["ov_cimguiname"] = "ImGuiWindowSettings_ImGuiWindowSettings" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["signature"] = "()" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["stname"] = "ImGuiWindowSettings" @@ -8864,7 +8864,7 @@ defs["ImGuiWindowSettings_destroy"][1]["call_args"] = "(self)" defs["ImGuiWindowSettings_destroy"][1]["cimguiname"] = "ImGuiWindowSettings_destroy" defs["ImGuiWindowSettings_destroy"][1]["defaults"] = {} defs["ImGuiWindowSettings_destroy"][1]["destructor"] = true -defs["ImGuiWindowSettings_destroy"][1]["location"] = "imgui_internal:1857" +defs["ImGuiWindowSettings_destroy"][1]["location"] = "imgui_internal:1861" defs["ImGuiWindowSettings_destroy"][1]["ov_cimguiname"] = "ImGuiWindowSettings_destroy" defs["ImGuiWindowSettings_destroy"][1]["ret"] = "void" defs["ImGuiWindowSettings_destroy"][1]["signature"] = "(ImGuiWindowSettings*)" @@ -8882,7 +8882,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:2564" +defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2570" defs["ImGuiWindow_CalcFontSize"][1]["ov_cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["ret"] = "float" defs["ImGuiWindow_CalcFontSize"][1]["signature"] = "()const" @@ -8907,7 +8907,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:2556" +defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2562" defs["ImGuiWindow_GetID"][1]["ov_cimguiname"] = "ImGuiWindow_GetID_Str" defs["ImGuiWindow_GetID"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][1]["signature"] = "(const char*,const char*)" @@ -8926,7 +8926,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:2557" +defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2563" defs["ImGuiWindow_GetID"][2]["ov_cimguiname"] = "ImGuiWindow_GetID_Ptr" defs["ImGuiWindow_GetID"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][2]["signature"] = "(const void*)" @@ -8945,7 +8945,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:2558" +defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2564" defs["ImGuiWindow_GetID"][3]["ov_cimguiname"] = "ImGuiWindow_GetID_Int" defs["ImGuiWindow_GetID"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][3]["signature"] = "(int)" @@ -8968,7 +8968,7 @@ defs["ImGuiWindow_GetIDFromPos"][1]["call_args"] = "(p_abs)" defs["ImGuiWindow_GetIDFromPos"][1]["cimguiname"] = "ImGuiWindow_GetIDFromPos" defs["ImGuiWindow_GetIDFromPos"][1]["defaults"] = {} defs["ImGuiWindow_GetIDFromPos"][1]["funcname"] = "GetIDFromPos" -defs["ImGuiWindow_GetIDFromPos"][1]["location"] = "imgui_internal:2559" +defs["ImGuiWindow_GetIDFromPos"][1]["location"] = "imgui_internal:2565" defs["ImGuiWindow_GetIDFromPos"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromPos" defs["ImGuiWindow_GetIDFromPos"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDFromPos"][1]["signature"] = "(const ImVec2)" @@ -8989,7 +8989,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:2560" +defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2566" defs["ImGuiWindow_GetIDFromRectangle"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDFromRectangle"][1]["signature"] = "(const ImRect)" @@ -9011,7 +9011,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:2552" +defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2558" defs["ImGuiWindow_ImGuiWindow"][1]["ov_cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["signature"] = "(ImGuiContext*,const char*)" defs["ImGuiWindow_ImGuiWindow"][1]["stname"] = "ImGuiWindow" @@ -9031,7 +9031,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:2566" +defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2572" defs["ImGuiWindow_MenuBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_MenuBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["ret"] = "void" @@ -9053,7 +9053,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:2563" +defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2569" defs["ImGuiWindow_Rect"][1]["nonUDT"] = 1 defs["ImGuiWindow_Rect"][1]["ov_cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["ret"] = "void" @@ -9075,7 +9075,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:2565" +defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2571" defs["ImGuiWindow_TitleBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_TitleBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["ret"] = "void" @@ -9093,7 +9093,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:2554" +defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2560" defs["ImGuiWindow_destroy"][1]["ov_cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["realdestructor"] = true defs["ImGuiWindow_destroy"][1]["ret"] = "void" @@ -9112,7 +9112,7 @@ defs["ImPool_Add"][1]["call_args"] = "()" defs["ImPool_Add"][1]["cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["defaults"] = {} defs["ImPool_Add"][1]["funcname"] = "Add" -defs["ImPool_Add"][1]["location"] = "imgui_internal:681" +defs["ImPool_Add"][1]["location"] = "imgui_internal:685" defs["ImPool_Add"][1]["ov_cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["ret"] = "T*" defs["ImPool_Add"][1]["signature"] = "()" @@ -9131,7 +9131,7 @@ defs["ImPool_Clear"][1]["call_args"] = "()" defs["ImPool_Clear"][1]["cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["defaults"] = {} defs["ImPool_Clear"][1]["funcname"] = "Clear" -defs["ImPool_Clear"][1]["location"] = "imgui_internal:680" +defs["ImPool_Clear"][1]["location"] = "imgui_internal:684" defs["ImPool_Clear"][1]["ov_cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["ret"] = "void" defs["ImPool_Clear"][1]["signature"] = "()" @@ -9153,7 +9153,7 @@ defs["ImPool_Contains"][1]["call_args"] = "(p)" defs["ImPool_Contains"][1]["cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["defaults"] = {} defs["ImPool_Contains"][1]["funcname"] = "Contains" -defs["ImPool_Contains"][1]["location"] = "imgui_internal:679" +defs["ImPool_Contains"][1]["location"] = "imgui_internal:683" defs["ImPool_Contains"][1]["ov_cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["ret"] = "bool" defs["ImPool_Contains"][1]["signature"] = "(const T*)const" @@ -9172,7 +9172,7 @@ defs["ImPool_GetAliveCount"][1]["call_args"] = "()" defs["ImPool_GetAliveCount"][1]["cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["defaults"] = {} defs["ImPool_GetAliveCount"][1]["funcname"] = "GetAliveCount" -defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:688" +defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:692" defs["ImPool_GetAliveCount"][1]["ov_cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["ret"] = "int" defs["ImPool_GetAliveCount"][1]["signature"] = "()const" @@ -9191,7 +9191,7 @@ defs["ImPool_GetBufSize"][1]["call_args"] = "()" defs["ImPool_GetBufSize"][1]["cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["defaults"] = {} defs["ImPool_GetBufSize"][1]["funcname"] = "GetBufSize" -defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:689" +defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:693" defs["ImPool_GetBufSize"][1]["ov_cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["ret"] = "int" defs["ImPool_GetBufSize"][1]["signature"] = "()const" @@ -9213,7 +9213,7 @@ defs["ImPool_GetByIndex"][1]["call_args"] = "(n)" defs["ImPool_GetByIndex"][1]["cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["defaults"] = {} defs["ImPool_GetByIndex"][1]["funcname"] = "GetByIndex" -defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:676" +defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:680" defs["ImPool_GetByIndex"][1]["ov_cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["ret"] = "T*" defs["ImPool_GetByIndex"][1]["signature"] = "(ImPoolIdx)" @@ -9235,7 +9235,7 @@ defs["ImPool_GetByKey"][1]["call_args"] = "(key)" defs["ImPool_GetByKey"][1]["cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["defaults"] = {} defs["ImPool_GetByKey"][1]["funcname"] = "GetByKey" -defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:675" +defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:679" defs["ImPool_GetByKey"][1]["ov_cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["ret"] = "T*" defs["ImPool_GetByKey"][1]["signature"] = "(ImGuiID)" @@ -9257,7 +9257,7 @@ defs["ImPool_GetIndex"][1]["call_args"] = "(p)" defs["ImPool_GetIndex"][1]["cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["defaults"] = {} defs["ImPool_GetIndex"][1]["funcname"] = "GetIndex" -defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:677" +defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:681" defs["ImPool_GetIndex"][1]["ov_cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["ret"] = "ImPoolIdx" defs["ImPool_GetIndex"][1]["signature"] = "(const T*)const" @@ -9276,7 +9276,7 @@ defs["ImPool_GetMapSize"][1]["call_args"] = "()" defs["ImPool_GetMapSize"][1]["cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["defaults"] = {} defs["ImPool_GetMapSize"][1]["funcname"] = "GetMapSize" -defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:690" +defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:694" defs["ImPool_GetMapSize"][1]["ov_cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["ret"] = "int" defs["ImPool_GetMapSize"][1]["signature"] = "()const" @@ -9298,7 +9298,7 @@ defs["ImPool_GetOrAddByKey"][1]["call_args"] = "(key)" defs["ImPool_GetOrAddByKey"][1]["cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["defaults"] = {} defs["ImPool_GetOrAddByKey"][1]["funcname"] = "GetOrAddByKey" -defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:678" +defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:682" defs["ImPool_GetOrAddByKey"][1]["ov_cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["ret"] = "T*" defs["ImPool_GetOrAddByKey"][1]["signature"] = "(ImGuiID)" @@ -9315,7 +9315,7 @@ defs["ImPool_ImPool"][1]["cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["constructor"] = true defs["ImPool_ImPool"][1]["defaults"] = {} defs["ImPool_ImPool"][1]["funcname"] = "ImPool" -defs["ImPool_ImPool"][1]["location"] = "imgui_internal:673" +defs["ImPool_ImPool"][1]["location"] = "imgui_internal:677" defs["ImPool_ImPool"][1]["ov_cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["signature"] = "()" defs["ImPool_ImPool"][1]["stname"] = "ImPool" @@ -9339,7 +9339,7 @@ defs["ImPool_Remove"][1]["call_args"] = "(key,p)" defs["ImPool_Remove"][1]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][1]["defaults"] = {} defs["ImPool_Remove"][1]["funcname"] = "Remove" -defs["ImPool_Remove"][1]["location"] = "imgui_internal:682" +defs["ImPool_Remove"][1]["location"] = "imgui_internal:686" defs["ImPool_Remove"][1]["ov_cimguiname"] = "ImPool_Remove_TPtr" defs["ImPool_Remove"][1]["ret"] = "void" defs["ImPool_Remove"][1]["signature"] = "(ImGuiID,const T*)" @@ -9362,7 +9362,7 @@ defs["ImPool_Remove"][2]["call_args"] = "(key,idx)" defs["ImPool_Remove"][2]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][2]["defaults"] = {} defs["ImPool_Remove"][2]["funcname"] = "Remove" -defs["ImPool_Remove"][2]["location"] = "imgui_internal:683" +defs["ImPool_Remove"][2]["location"] = "imgui_internal:687" defs["ImPool_Remove"][2]["ov_cimguiname"] = "ImPool_Remove_PoolIdx" defs["ImPool_Remove"][2]["ret"] = "void" defs["ImPool_Remove"][2]["signature"] = "(ImGuiID,ImPoolIdx)" @@ -9385,7 +9385,7 @@ defs["ImPool_Reserve"][1]["call_args"] = "(capacity)" defs["ImPool_Reserve"][1]["cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["defaults"] = {} defs["ImPool_Reserve"][1]["funcname"] = "Reserve" -defs["ImPool_Reserve"][1]["location"] = "imgui_internal:684" +defs["ImPool_Reserve"][1]["location"] = "imgui_internal:688" defs["ImPool_Reserve"][1]["ov_cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["ret"] = "void" defs["ImPool_Reserve"][1]["signature"] = "(int)" @@ -9407,7 +9407,7 @@ defs["ImPool_TryGetMapData"][1]["call_args"] = "(n)" defs["ImPool_TryGetMapData"][1]["cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["defaults"] = {} defs["ImPool_TryGetMapData"][1]["funcname"] = "TryGetMapData" -defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:691" +defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:695" defs["ImPool_TryGetMapData"][1]["ov_cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["ret"] = "T*" defs["ImPool_TryGetMapData"][1]["signature"] = "(ImPoolIdx)" @@ -9425,7 +9425,7 @@ defs["ImPool_destroy"][1]["call_args"] = "(self)" defs["ImPool_destroy"][1]["cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["defaults"] = {} defs["ImPool_destroy"][1]["destructor"] = true -defs["ImPool_destroy"][1]["location"] = "imgui_internal:674" +defs["ImPool_destroy"][1]["location"] = "imgui_internal:678" defs["ImPool_destroy"][1]["ov_cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["realdestructor"] = true defs["ImPool_destroy"][1]["ret"] = "void" @@ -9448,7 +9448,7 @@ defs["ImRect_Add"][1]["call_args"] = "(p)" defs["ImRect_Add"][1]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][1]["defaults"] = {} defs["ImRect_Add"][1]["funcname"] = "Add" -defs["ImRect_Add"][1]["location"] = "imgui_internal:544" +defs["ImRect_Add"][1]["location"] = "imgui_internal:548" defs["ImRect_Add"][1]["ov_cimguiname"] = "ImRect_Add_Vec2" defs["ImRect_Add"][1]["ret"] = "void" defs["ImRect_Add"][1]["signature"] = "(const ImVec2)" @@ -9467,7 +9467,7 @@ defs["ImRect_Add"][2]["call_args"] = "(r)" defs["ImRect_Add"][2]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][2]["defaults"] = {} defs["ImRect_Add"][2]["funcname"] = "Add" -defs["ImRect_Add"][2]["location"] = "imgui_internal:545" +defs["ImRect_Add"][2]["location"] = "imgui_internal:549" defs["ImRect_Add"][2]["ov_cimguiname"] = "ImRect_Add_Rect" defs["ImRect_Add"][2]["ret"] = "void" defs["ImRect_Add"][2]["signature"] = "(const ImRect)" @@ -9489,7 +9489,7 @@ defs["ImRect_ClipWith"][1]["call_args"] = "(r)" defs["ImRect_ClipWith"][1]["cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["defaults"] = {} defs["ImRect_ClipWith"][1]["funcname"] = "ClipWith" -defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:551" +defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:555" defs["ImRect_ClipWith"][1]["ov_cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["ret"] = "void" defs["ImRect_ClipWith"][1]["signature"] = "(const ImRect)" @@ -9510,7 +9510,7 @@ defs["ImRect_ClipWithFull"][1]["call_args"] = "(r)" defs["ImRect_ClipWithFull"][1]["cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["defaults"] = {} defs["ImRect_ClipWithFull"][1]["funcname"] = "ClipWithFull" -defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:552" +defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:556" defs["ImRect_ClipWithFull"][1]["ov_cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["ret"] = "void" defs["ImRect_ClipWithFull"][1]["signature"] = "(const ImRect)" @@ -9531,7 +9531,7 @@ defs["ImRect_Contains"][1]["call_args"] = "(p)" defs["ImRect_Contains"][1]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][1]["defaults"] = {} defs["ImRect_Contains"][1]["funcname"] = "Contains" -defs["ImRect_Contains"][1]["location"] = "imgui_internal:540" +defs["ImRect_Contains"][1]["location"] = "imgui_internal:544" defs["ImRect_Contains"][1]["ov_cimguiname"] = "ImRect_Contains_Vec2" defs["ImRect_Contains"][1]["ret"] = "bool" defs["ImRect_Contains"][1]["signature"] = "(const ImVec2)const" @@ -9550,7 +9550,7 @@ defs["ImRect_Contains"][2]["call_args"] = "(r)" defs["ImRect_Contains"][2]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][2]["defaults"] = {} defs["ImRect_Contains"][2]["funcname"] = "Contains" -defs["ImRect_Contains"][2]["location"] = "imgui_internal:541" +defs["ImRect_Contains"][2]["location"] = "imgui_internal:545" defs["ImRect_Contains"][2]["ov_cimguiname"] = "ImRect_Contains_Rect" defs["ImRect_Contains"][2]["ret"] = "bool" defs["ImRect_Contains"][2]["signature"] = "(const ImRect)const" @@ -9575,7 +9575,7 @@ defs["ImRect_ContainsWithPad"][1]["call_args"] = "(p,pad)" defs["ImRect_ContainsWithPad"][1]["cimguiname"] = "ImRect_ContainsWithPad" defs["ImRect_ContainsWithPad"][1]["defaults"] = {} defs["ImRect_ContainsWithPad"][1]["funcname"] = "ContainsWithPad" -defs["ImRect_ContainsWithPad"][1]["location"] = "imgui_internal:542" +defs["ImRect_ContainsWithPad"][1]["location"] = "imgui_internal:546" defs["ImRect_ContainsWithPad"][1]["ov_cimguiname"] = "ImRect_ContainsWithPad" defs["ImRect_ContainsWithPad"][1]["ret"] = "bool" defs["ImRect_ContainsWithPad"][1]["signature"] = "(const ImVec2,const ImVec2)const" @@ -9596,7 +9596,7 @@ defs["ImRect_Expand"][1]["call_args"] = "(amount)" defs["ImRect_Expand"][1]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][1]["defaults"] = {} defs["ImRect_Expand"][1]["funcname"] = "Expand" -defs["ImRect_Expand"][1]["location"] = "imgui_internal:546" +defs["ImRect_Expand"][1]["location"] = "imgui_internal:550" defs["ImRect_Expand"][1]["ov_cimguiname"] = "ImRect_Expand_Float" defs["ImRect_Expand"][1]["ret"] = "void" defs["ImRect_Expand"][1]["signature"] = "(const float)" @@ -9615,7 +9615,7 @@ defs["ImRect_Expand"][2]["call_args"] = "(amount)" defs["ImRect_Expand"][2]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][2]["defaults"] = {} defs["ImRect_Expand"][2]["funcname"] = "Expand" -defs["ImRect_Expand"][2]["location"] = "imgui_internal:547" +defs["ImRect_Expand"][2]["location"] = "imgui_internal:551" defs["ImRect_Expand"][2]["ov_cimguiname"] = "ImRect_Expand_Vec2" defs["ImRect_Expand"][2]["ret"] = "void" defs["ImRect_Expand"][2]["signature"] = "(const ImVec2)" @@ -9634,7 +9634,7 @@ defs["ImRect_Floor"][1]["call_args"] = "()" defs["ImRect_Floor"][1]["cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["defaults"] = {} defs["ImRect_Floor"][1]["funcname"] = "Floor" -defs["ImRect_Floor"][1]["location"] = "imgui_internal:553" +defs["ImRect_Floor"][1]["location"] = "imgui_internal:557" defs["ImRect_Floor"][1]["ov_cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["ret"] = "void" defs["ImRect_Floor"][1]["signature"] = "()" @@ -9652,7 +9652,7 @@ defs["ImRect_GetArea"][1]["call_args"] = "()" defs["ImRect_GetArea"][1]["cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["defaults"] = {} defs["ImRect_GetArea"][1]["funcname"] = "GetArea" -defs["ImRect_GetArea"][1]["location"] = "imgui_internal:535" +defs["ImRect_GetArea"][1]["location"] = "imgui_internal:539" defs["ImRect_GetArea"][1]["ov_cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["ret"] = "float" defs["ImRect_GetArea"][1]["signature"] = "()const" @@ -9673,7 +9673,7 @@ defs["ImRect_GetBL"][1]["call_args"] = "()" defs["ImRect_GetBL"][1]["cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["defaults"] = {} defs["ImRect_GetBL"][1]["funcname"] = "GetBL" -defs["ImRect_GetBL"][1]["location"] = "imgui_internal:538" +defs["ImRect_GetBL"][1]["location"] = "imgui_internal:542" defs["ImRect_GetBL"][1]["nonUDT"] = 1 defs["ImRect_GetBL"][1]["ov_cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["ret"] = "void" @@ -9695,7 +9695,7 @@ defs["ImRect_GetBR"][1]["call_args"] = "()" defs["ImRect_GetBR"][1]["cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["defaults"] = {} defs["ImRect_GetBR"][1]["funcname"] = "GetBR" -defs["ImRect_GetBR"][1]["location"] = "imgui_internal:539" +defs["ImRect_GetBR"][1]["location"] = "imgui_internal:543" defs["ImRect_GetBR"][1]["nonUDT"] = 1 defs["ImRect_GetBR"][1]["ov_cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["ret"] = "void" @@ -9717,7 +9717,7 @@ defs["ImRect_GetCenter"][1]["call_args"] = "()" defs["ImRect_GetCenter"][1]["cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["defaults"] = {} defs["ImRect_GetCenter"][1]["funcname"] = "GetCenter" -defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:531" +defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:535" defs["ImRect_GetCenter"][1]["nonUDT"] = 1 defs["ImRect_GetCenter"][1]["ov_cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["ret"] = "void" @@ -9736,7 +9736,7 @@ defs["ImRect_GetHeight"][1]["call_args"] = "()" defs["ImRect_GetHeight"][1]["cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["defaults"] = {} defs["ImRect_GetHeight"][1]["funcname"] = "GetHeight" -defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:534" +defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:538" defs["ImRect_GetHeight"][1]["ov_cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["ret"] = "float" defs["ImRect_GetHeight"][1]["signature"] = "()const" @@ -9757,7 +9757,7 @@ defs["ImRect_GetSize"][1]["call_args"] = "()" defs["ImRect_GetSize"][1]["cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["defaults"] = {} defs["ImRect_GetSize"][1]["funcname"] = "GetSize" -defs["ImRect_GetSize"][1]["location"] = "imgui_internal:532" +defs["ImRect_GetSize"][1]["location"] = "imgui_internal:536" defs["ImRect_GetSize"][1]["nonUDT"] = 1 defs["ImRect_GetSize"][1]["ov_cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["ret"] = "void" @@ -9779,7 +9779,7 @@ defs["ImRect_GetTL"][1]["call_args"] = "()" defs["ImRect_GetTL"][1]["cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["defaults"] = {} defs["ImRect_GetTL"][1]["funcname"] = "GetTL" -defs["ImRect_GetTL"][1]["location"] = "imgui_internal:536" +defs["ImRect_GetTL"][1]["location"] = "imgui_internal:540" defs["ImRect_GetTL"][1]["nonUDT"] = 1 defs["ImRect_GetTL"][1]["ov_cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["ret"] = "void" @@ -9801,7 +9801,7 @@ defs["ImRect_GetTR"][1]["call_args"] = "()" defs["ImRect_GetTR"][1]["cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["defaults"] = {} defs["ImRect_GetTR"][1]["funcname"] = "GetTR" -defs["ImRect_GetTR"][1]["location"] = "imgui_internal:537" +defs["ImRect_GetTR"][1]["location"] = "imgui_internal:541" defs["ImRect_GetTR"][1]["nonUDT"] = 1 defs["ImRect_GetTR"][1]["ov_cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["ret"] = "void" @@ -9820,7 +9820,7 @@ defs["ImRect_GetWidth"][1]["call_args"] = "()" defs["ImRect_GetWidth"][1]["cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["defaults"] = {} defs["ImRect_GetWidth"][1]["funcname"] = "GetWidth" -defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:533" +defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:537" defs["ImRect_GetWidth"][1]["ov_cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["ret"] = "float" defs["ImRect_GetWidth"][1]["signature"] = "()const" @@ -9836,7 +9836,7 @@ defs["ImRect_ImRect"][1]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][1]["constructor"] = true defs["ImRect_ImRect"][1]["defaults"] = {} defs["ImRect_ImRect"][1]["funcname"] = "ImRect" -defs["ImRect_ImRect"][1]["location"] = "imgui_internal:526" +defs["ImRect_ImRect"][1]["location"] = "imgui_internal:530" defs["ImRect_ImRect"][1]["ov_cimguiname"] = "ImRect_ImRect_Nil" defs["ImRect_ImRect"][1]["signature"] = "()" defs["ImRect_ImRect"][1]["stname"] = "ImRect" @@ -9855,7 +9855,7 @@ defs["ImRect_ImRect"][2]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][2]["constructor"] = true defs["ImRect_ImRect"][2]["defaults"] = {} defs["ImRect_ImRect"][2]["funcname"] = "ImRect" -defs["ImRect_ImRect"][2]["location"] = "imgui_internal:527" +defs["ImRect_ImRect"][2]["location"] = "imgui_internal:531" defs["ImRect_ImRect"][2]["ov_cimguiname"] = "ImRect_ImRect_Vec2" defs["ImRect_ImRect"][2]["signature"] = "(const ImVec2,const ImVec2)" defs["ImRect_ImRect"][2]["stname"] = "ImRect" @@ -9871,7 +9871,7 @@ defs["ImRect_ImRect"][3]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][3]["constructor"] = true defs["ImRect_ImRect"][3]["defaults"] = {} defs["ImRect_ImRect"][3]["funcname"] = "ImRect" -defs["ImRect_ImRect"][3]["location"] = "imgui_internal:528" +defs["ImRect_ImRect"][3]["location"] = "imgui_internal:532" defs["ImRect_ImRect"][3]["ov_cimguiname"] = "ImRect_ImRect_Vec4" defs["ImRect_ImRect"][3]["signature"] = "(const ImVec4)" defs["ImRect_ImRect"][3]["stname"] = "ImRect" @@ -9896,7 +9896,7 @@ defs["ImRect_ImRect"][4]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][4]["constructor"] = true defs["ImRect_ImRect"][4]["defaults"] = {} defs["ImRect_ImRect"][4]["funcname"] = "ImRect" -defs["ImRect_ImRect"][4]["location"] = "imgui_internal:529" +defs["ImRect_ImRect"][4]["location"] = "imgui_internal:533" defs["ImRect_ImRect"][4]["ov_cimguiname"] = "ImRect_ImRect_Float" defs["ImRect_ImRect"][4]["signature"] = "(float,float,float,float)" defs["ImRect_ImRect"][4]["stname"] = "ImRect" @@ -9916,7 +9916,7 @@ defs["ImRect_IsInverted"][1]["call_args"] = "()" defs["ImRect_IsInverted"][1]["cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["defaults"] = {} defs["ImRect_IsInverted"][1]["funcname"] = "IsInverted" -defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:554" +defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:558" defs["ImRect_IsInverted"][1]["ov_cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["ret"] = "bool" defs["ImRect_IsInverted"][1]["signature"] = "()const" @@ -9937,7 +9937,7 @@ defs["ImRect_Overlaps"][1]["call_args"] = "(r)" defs["ImRect_Overlaps"][1]["cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["defaults"] = {} defs["ImRect_Overlaps"][1]["funcname"] = "Overlaps" -defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:543" +defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:547" defs["ImRect_Overlaps"][1]["ov_cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["ret"] = "bool" defs["ImRect_Overlaps"][1]["signature"] = "(const ImRect)const" @@ -9958,7 +9958,7 @@ defs["ImRect_ToVec4"][1]["call_args"] = "()" defs["ImRect_ToVec4"][1]["cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["defaults"] = {} defs["ImRect_ToVec4"][1]["funcname"] = "ToVec4" -defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:555" +defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:559" defs["ImRect_ToVec4"][1]["nonUDT"] = 1 defs["ImRect_ToVec4"][1]["ov_cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["ret"] = "void" @@ -9980,7 +9980,7 @@ defs["ImRect_Translate"][1]["call_args"] = "(d)" defs["ImRect_Translate"][1]["cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["defaults"] = {} defs["ImRect_Translate"][1]["funcname"] = "Translate" -defs["ImRect_Translate"][1]["location"] = "imgui_internal:548" +defs["ImRect_Translate"][1]["location"] = "imgui_internal:552" defs["ImRect_Translate"][1]["ov_cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["ret"] = "void" defs["ImRect_Translate"][1]["signature"] = "(const ImVec2)" @@ -10001,7 +10001,7 @@ defs["ImRect_TranslateX"][1]["call_args"] = "(dx)" defs["ImRect_TranslateX"][1]["cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["defaults"] = {} defs["ImRect_TranslateX"][1]["funcname"] = "TranslateX" -defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:549" +defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:553" defs["ImRect_TranslateX"][1]["ov_cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["ret"] = "void" defs["ImRect_TranslateX"][1]["signature"] = "(float)" @@ -10022,7 +10022,7 @@ defs["ImRect_TranslateY"][1]["call_args"] = "(dy)" defs["ImRect_TranslateY"][1]["cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["defaults"] = {} defs["ImRect_TranslateY"][1]["funcname"] = "TranslateY" -defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:550" +defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:554" defs["ImRect_TranslateY"][1]["ov_cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["ret"] = "void" defs["ImRect_TranslateY"][1]["signature"] = "(float)" @@ -10039,7 +10039,7 @@ defs["ImRect_destroy"][1]["call_args"] = "(self)" defs["ImRect_destroy"][1]["cimguiname"] = "ImRect_destroy" defs["ImRect_destroy"][1]["defaults"] = {} defs["ImRect_destroy"][1]["destructor"] = true -defs["ImRect_destroy"][1]["location"] = "imgui_internal:526" +defs["ImRect_destroy"][1]["location"] = "imgui_internal:530" defs["ImRect_destroy"][1]["ov_cimguiname"] = "ImRect_destroy" defs["ImRect_destroy"][1]["ret"] = "void" defs["ImRect_destroy"][1]["signature"] = "(ImRect*)" @@ -10057,7 +10057,7 @@ defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["call_args"] = "()" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["defaults"] = {} defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["funcname"] = "GetArenaSizeInBytes" -defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:653" +defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:657" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ov_cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ret"] = "int" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["signature"] = "()" @@ -10079,7 +10079,7 @@ defs["ImSpanAllocator_GetSpanPtrBegin"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrBegin"][1]["funcname"] = "GetSpanPtrBegin" -defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:655" +defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:659" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["signature"] = "(int)" @@ -10101,7 +10101,7 @@ defs["ImSpanAllocator_GetSpanPtrEnd"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrEnd"][1]["funcname"] = "GetSpanPtrEnd" -defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:656" +defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:660" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["signature"] = "(int)" @@ -10118,7 +10118,7 @@ defs["ImSpanAllocator_ImSpanAllocator"][1]["cimguiname"] = "ImSpanAllocator_ImSp defs["ImSpanAllocator_ImSpanAllocator"][1]["constructor"] = true defs["ImSpanAllocator_ImSpanAllocator"][1]["defaults"] = {} defs["ImSpanAllocator_ImSpanAllocator"][1]["funcname"] = "ImSpanAllocator" -defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:651" +defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:655" defs["ImSpanAllocator_ImSpanAllocator"][1]["ov_cimguiname"] = "ImSpanAllocator_ImSpanAllocator" defs["ImSpanAllocator_ImSpanAllocator"][1]["signature"] = "()" defs["ImSpanAllocator_ImSpanAllocator"][1]["stname"] = "ImSpanAllocator" @@ -10146,7 +10146,7 @@ defs["ImSpanAllocator_Reserve"][1]["cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["defaults"] = {} defs["ImSpanAllocator_Reserve"][1]["defaults"]["a"] = "4" defs["ImSpanAllocator_Reserve"][1]["funcname"] = "Reserve" -defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:652" +defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:656" defs["ImSpanAllocator_Reserve"][1]["ov_cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["ret"] = "void" defs["ImSpanAllocator_Reserve"][1]["signature"] = "(int,size_t,int)" @@ -10168,7 +10168,7 @@ defs["ImSpanAllocator_SetArenaBasePtr"][1]["call_args"] = "(base_ptr)" defs["ImSpanAllocator_SetArenaBasePtr"][1]["cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["defaults"] = {} defs["ImSpanAllocator_SetArenaBasePtr"][1]["funcname"] = "SetArenaBasePtr" -defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:654" +defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:658" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ov_cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ret"] = "void" defs["ImSpanAllocator_SetArenaBasePtr"][1]["signature"] = "(void*)" @@ -10186,7 +10186,7 @@ defs["ImSpanAllocator_destroy"][1]["call_args"] = "(self)" defs["ImSpanAllocator_destroy"][1]["cimguiname"] = "ImSpanAllocator_destroy" defs["ImSpanAllocator_destroy"][1]["defaults"] = {} defs["ImSpanAllocator_destroy"][1]["destructor"] = true -defs["ImSpanAllocator_destroy"][1]["location"] = "imgui_internal:651" +defs["ImSpanAllocator_destroy"][1]["location"] = "imgui_internal:655" defs["ImSpanAllocator_destroy"][1]["ov_cimguiname"] = "ImSpanAllocator_destroy" defs["ImSpanAllocator_destroy"][1]["ret"] = "void" defs["ImSpanAllocator_destroy"][1]["signature"] = "(ImSpanAllocator*)" @@ -10203,7 +10203,7 @@ defs["ImSpan_ImSpan"][1]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][1]["constructor"] = true defs["ImSpan_ImSpan"][1]["defaults"] = {} defs["ImSpan_ImSpan"][1]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:619" +defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:623" defs["ImSpan_ImSpan"][1]["ov_cimguiname"] = "ImSpan_ImSpan_Nil" defs["ImSpan_ImSpan"][1]["signature"] = "()" defs["ImSpan_ImSpan"][1]["stname"] = "ImSpan" @@ -10223,7 +10223,7 @@ defs["ImSpan_ImSpan"][2]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][2]["constructor"] = true defs["ImSpan_ImSpan"][2]["defaults"] = {} defs["ImSpan_ImSpan"][2]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:620" +defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:624" defs["ImSpan_ImSpan"][2]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrInt" defs["ImSpan_ImSpan"][2]["signature"] = "(T*,int)" defs["ImSpan_ImSpan"][2]["stname"] = "ImSpan" @@ -10243,7 +10243,7 @@ defs["ImSpan_ImSpan"][3]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][3]["constructor"] = true defs["ImSpan_ImSpan"][3]["defaults"] = {} defs["ImSpan_ImSpan"][3]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:621" +defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:625" defs["ImSpan_ImSpan"][3]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrTPtr" defs["ImSpan_ImSpan"][3]["signature"] = "(T*,T*)" defs["ImSpan_ImSpan"][3]["stname"] = "ImSpan" @@ -10263,7 +10263,7 @@ defs["ImSpan_begin"][1]["call_args"] = "()" defs["ImSpan_begin"][1]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][1]["defaults"] = {} defs["ImSpan_begin"][1]["funcname"] = "begin" -defs["ImSpan_begin"][1]["location"] = "imgui_internal:630" +defs["ImSpan_begin"][1]["location"] = "imgui_internal:634" defs["ImSpan_begin"][1]["ov_cimguiname"] = "ImSpan_begin_Nil" defs["ImSpan_begin"][1]["ret"] = "T*" defs["ImSpan_begin"][1]["signature"] = "()" @@ -10280,7 +10280,7 @@ defs["ImSpan_begin"][2]["call_args"] = "()" defs["ImSpan_begin"][2]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][2]["defaults"] = {} defs["ImSpan_begin"][2]["funcname"] = "begin" -defs["ImSpan_begin"][2]["location"] = "imgui_internal:631" +defs["ImSpan_begin"][2]["location"] = "imgui_internal:635" defs["ImSpan_begin"][2]["ov_cimguiname"] = "ImSpan_begin__const" defs["ImSpan_begin"][2]["ret"] = "const T*" defs["ImSpan_begin"][2]["signature"] = "()const" @@ -10299,7 +10299,7 @@ defs["ImSpan_destroy"][1]["call_args"] = "(self)" defs["ImSpan_destroy"][1]["cimguiname"] = "ImSpan_destroy" defs["ImSpan_destroy"][1]["defaults"] = {} defs["ImSpan_destroy"][1]["destructor"] = true -defs["ImSpan_destroy"][1]["location"] = "imgui_internal:619" +defs["ImSpan_destroy"][1]["location"] = "imgui_internal:623" defs["ImSpan_destroy"][1]["ov_cimguiname"] = "ImSpan_destroy" defs["ImSpan_destroy"][1]["ret"] = "void" defs["ImSpan_destroy"][1]["signature"] = "(ImSpan*)" @@ -10318,7 +10318,7 @@ defs["ImSpan_end"][1]["call_args"] = "()" defs["ImSpan_end"][1]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][1]["defaults"] = {} defs["ImSpan_end"][1]["funcname"] = "end" -defs["ImSpan_end"][1]["location"] = "imgui_internal:632" +defs["ImSpan_end"][1]["location"] = "imgui_internal:636" defs["ImSpan_end"][1]["ov_cimguiname"] = "ImSpan_end_Nil" defs["ImSpan_end"][1]["ret"] = "T*" defs["ImSpan_end"][1]["signature"] = "()" @@ -10335,7 +10335,7 @@ defs["ImSpan_end"][2]["call_args"] = "()" defs["ImSpan_end"][2]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][2]["defaults"] = {} defs["ImSpan_end"][2]["funcname"] = "end" -defs["ImSpan_end"][2]["location"] = "imgui_internal:633" +defs["ImSpan_end"][2]["location"] = "imgui_internal:637" defs["ImSpan_end"][2]["ov_cimguiname"] = "ImSpan_end__const" defs["ImSpan_end"][2]["ret"] = "const T*" defs["ImSpan_end"][2]["signature"] = "()const" @@ -10358,7 +10358,7 @@ defs["ImSpan_index_from_ptr"][1]["call_args"] = "(it)" defs["ImSpan_index_from_ptr"][1]["cimguiname"] = "ImSpan_index_from_ptr" defs["ImSpan_index_from_ptr"][1]["defaults"] = {} defs["ImSpan_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:636" +defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:640" 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" @@ -10383,7 +10383,7 @@ defs["ImSpan_set"][1]["call_args"] = "(data,size)" defs["ImSpan_set"][1]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][1]["defaults"] = {} defs["ImSpan_set"][1]["funcname"] = "set" -defs["ImSpan_set"][1]["location"] = "imgui_internal:623" +defs["ImSpan_set"][1]["location"] = "imgui_internal:627" defs["ImSpan_set"][1]["ov_cimguiname"] = "ImSpan_set_Int" defs["ImSpan_set"][1]["ret"] = "void" defs["ImSpan_set"][1]["signature"] = "(T*,int)" @@ -10406,7 +10406,7 @@ defs["ImSpan_set"][2]["call_args"] = "(data,data_end)" defs["ImSpan_set"][2]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][2]["defaults"] = {} defs["ImSpan_set"][2]["funcname"] = "set" -defs["ImSpan_set"][2]["location"] = "imgui_internal:624" +defs["ImSpan_set"][2]["location"] = "imgui_internal:628" defs["ImSpan_set"][2]["ov_cimguiname"] = "ImSpan_set_TPtr" defs["ImSpan_set"][2]["ret"] = "void" defs["ImSpan_set"][2]["signature"] = "(T*,T*)" @@ -10426,7 +10426,7 @@ defs["ImSpan_size"][1]["call_args"] = "()" defs["ImSpan_size"][1]["cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["defaults"] = {} defs["ImSpan_size"][1]["funcname"] = "size" -defs["ImSpan_size"][1]["location"] = "imgui_internal:625" +defs["ImSpan_size"][1]["location"] = "imgui_internal:629" defs["ImSpan_size"][1]["ov_cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["ret"] = "int" defs["ImSpan_size"][1]["signature"] = "()const" @@ -10445,7 +10445,7 @@ defs["ImSpan_size_in_bytes"][1]["call_args"] = "()" defs["ImSpan_size_in_bytes"][1]["cimguiname"] = "ImSpan_size_in_bytes" defs["ImSpan_size_in_bytes"][1]["defaults"] = {} defs["ImSpan_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:626" +defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:630" 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" @@ -10462,7 +10462,7 @@ defs["ImVec1_ImVec1"][1]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][1]["constructor"] = true defs["ImVec1_ImVec1"][1]["defaults"] = {} defs["ImVec1_ImVec1"][1]["funcname"] = "ImVec1" -defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:506" +defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:510" defs["ImVec1_ImVec1"][1]["ov_cimguiname"] = "ImVec1_ImVec1_Nil" defs["ImVec1_ImVec1"][1]["signature"] = "()" defs["ImVec1_ImVec1"][1]["stname"] = "ImVec1" @@ -10478,7 +10478,7 @@ defs["ImVec1_ImVec1"][2]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][2]["constructor"] = true defs["ImVec1_ImVec1"][2]["defaults"] = {} defs["ImVec1_ImVec1"][2]["funcname"] = "ImVec1" -defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:507" +defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:511" defs["ImVec1_ImVec1"][2]["ov_cimguiname"] = "ImVec1_ImVec1_Float" defs["ImVec1_ImVec1"][2]["signature"] = "(float)" defs["ImVec1_ImVec1"][2]["stname"] = "ImVec1" @@ -10495,7 +10495,7 @@ defs["ImVec1_destroy"][1]["call_args"] = "(self)" defs["ImVec1_destroy"][1]["cimguiname"] = "ImVec1_destroy" defs["ImVec1_destroy"][1]["defaults"] = {} defs["ImVec1_destroy"][1]["destructor"] = true -defs["ImVec1_destroy"][1]["location"] = "imgui_internal:506" +defs["ImVec1_destroy"][1]["location"] = "imgui_internal:510" defs["ImVec1_destroy"][1]["ov_cimguiname"] = "ImVec1_destroy" defs["ImVec1_destroy"][1]["ret"] = "void" defs["ImVec1_destroy"][1]["signature"] = "(ImVec1*)" @@ -10563,7 +10563,7 @@ defs["ImVec2ih_ImVec2ih"][1]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][1]["constructor"] = true defs["ImVec2ih_ImVec2ih"][1]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][1]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:514" +defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:518" defs["ImVec2ih_ImVec2ih"][1]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Nil" defs["ImVec2ih_ImVec2ih"][1]["signature"] = "()" defs["ImVec2ih_ImVec2ih"][1]["stname"] = "ImVec2ih" @@ -10582,7 +10582,7 @@ defs["ImVec2ih_ImVec2ih"][2]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][2]["constructor"] = true defs["ImVec2ih_ImVec2ih"][2]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][2]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:515" +defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:519" defs["ImVec2ih_ImVec2ih"][2]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_short" defs["ImVec2ih_ImVec2ih"][2]["signature"] = "(short,short)" defs["ImVec2ih_ImVec2ih"][2]["stname"] = "ImVec2ih" @@ -10598,7 +10598,7 @@ defs["ImVec2ih_ImVec2ih"][3]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][3]["constructor"] = true defs["ImVec2ih_ImVec2ih"][3]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][3]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:516" +defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:520" defs["ImVec2ih_ImVec2ih"][3]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Vec2" defs["ImVec2ih_ImVec2ih"][3]["signature"] = "(const ImVec2)" defs["ImVec2ih_ImVec2ih"][3]["stname"] = "ImVec2ih" @@ -10616,7 +10616,7 @@ defs["ImVec2ih_destroy"][1]["call_args"] = "(self)" defs["ImVec2ih_destroy"][1]["cimguiname"] = "ImVec2ih_destroy" defs["ImVec2ih_destroy"][1]["defaults"] = {} defs["ImVec2ih_destroy"][1]["destructor"] = true -defs["ImVec2ih_destroy"][1]["location"] = "imgui_internal:514" +defs["ImVec2ih_destroy"][1]["location"] = "imgui_internal:518" defs["ImVec2ih_destroy"][1]["ov_cimguiname"] = "ImVec2ih_destroy" defs["ImVec2ih_destroy"][1]["ret"] = "void" defs["ImVec2ih_destroy"][1]["signature"] = "(ImVec2ih*)" @@ -10690,7 +10690,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:2059" +defs["ImVector_ImVector"][1]["location"] = "imgui:2063" defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVector_Nil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -10707,7 +10707,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:2060" +defs["ImVector_ImVector"][2]["location"] = "imgui:2064" defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVector_Vector_T_" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_T )" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -10729,7 +10729,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:2086" +defs["ImVector__grow_capacity"][1]["location"] = "imgui:2090" 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" @@ -10748,7 +10748,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:2082" +defs["ImVector_back"][1]["location"] = "imgui:2086" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_back_Nil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -10766,7 +10766,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:2083" +defs["ImVector_back"][2]["location"] = "imgui:2087" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back__const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -10787,7 +10787,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:2076" +defs["ImVector_begin"][1]["location"] = "imgui:2080" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin_Nil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -10804,7 +10804,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:2077" +defs["ImVector_begin"][2]["location"] = "imgui:2081" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin__const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -10824,7 +10824,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:2072" +defs["ImVector_capacity"][1]["location"] = "imgui:2076" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -10843,7 +10843,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:2064" +defs["ImVector_clear"][1]["location"] = "imgui:2068" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -10862,7 +10862,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:2065" +defs["ImVector_clear_delete"][1]["location"] = "imgui:2069" defs["ImVector_clear_delete"][1]["ov_cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["ret"] = "void" defs["ImVector_clear_delete"][1]["signature"] = "()" @@ -10881,7 +10881,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:2066" +defs["ImVector_clear_destruct"][1]["location"] = "imgui:2070" defs["ImVector_clear_destruct"][1]["ov_cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["ret"] = "void" defs["ImVector_clear_destruct"][1]["signature"] = "()" @@ -10903,7 +10903,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:2101" +defs["ImVector_contains"][1]["location"] = "imgui:2105" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -10921,7 +10921,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:2062" +defs["ImVector_destroy"][1]["location"] = "imgui:2066" defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" @@ -10941,7 +10941,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:2068" +defs["ImVector_empty"][1]["location"] = "imgui:2072" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -10960,7 +10960,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:2078" +defs["ImVector_end"][1]["location"] = "imgui:2082" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end_Nil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -10977,7 +10977,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:2079" +defs["ImVector_end"][2]["location"] = "imgui:2083" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end__const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -11000,7 +11000,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:2097" +defs["ImVector_erase"][1]["location"] = "imgui:2101" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase_Nil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -11023,7 +11023,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:2098" +defs["ImVector_erase"][2]["location"] = "imgui:2102" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_erase_TPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -11046,7 +11046,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:2099" +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:2103" 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*)" @@ -11068,7 +11068,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:2102" +defs["ImVector_find"][1]["location"] = "imgui:2106" defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_find_Nil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -11088,7 +11088,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:2103" +defs["ImVector_find"][2]["location"] = "imgui:2107" defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find__const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -11111,7 +11111,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:2105" +defs["ImVector_find_erase"][1]["location"] = "imgui:2109" 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)" @@ -11133,7 +11133,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:2106" +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:2110" 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)" @@ -11155,7 +11155,7 @@ defs["ImVector_find_index"][1]["call_args"] = "(v)" defs["ImVector_find_index"][1]["cimguiname"] = "ImVector_find_index" defs["ImVector_find_index"][1]["defaults"] = {} defs["ImVector_find_index"][1]["funcname"] = "find_index" -defs["ImVector_find_index"][1]["location"] = "imgui:2104" +defs["ImVector_find_index"][1]["location"] = "imgui:2108" defs["ImVector_find_index"][1]["ov_cimguiname"] = "ImVector_find_index" defs["ImVector_find_index"][1]["ret"] = "int" defs["ImVector_find_index"][1]["signature"] = "(const T)const" @@ -11174,7 +11174,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:2080" +defs["ImVector_front"][1]["location"] = "imgui:2084" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_front_Nil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -11192,7 +11192,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:2081" +defs["ImVector_front"][2]["location"] = "imgui:2085" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front__const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -11216,7 +11216,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:2107" +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:2111" 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" @@ -11241,7 +11241,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:2100" +defs["ImVector_insert"][1]["location"] = "imgui:2104" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" @@ -11260,7 +11260,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:2071" +defs["ImVector_max_size"][1]["location"] = "imgui:2075" defs["ImVector_max_size"][1]["ov_cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["ret"] = "int" defs["ImVector_max_size"][1]["signature"] = "()const" @@ -11279,7 +11279,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:2095" +defs["ImVector_pop_back"][1]["location"] = "imgui:2099" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -11301,7 +11301,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:2094" +defs["ImVector_push_back"][1]["location"] = "imgui:2098" 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)" @@ -11323,7 +11323,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:2096" +defs["ImVector_push_front"][1]["location"] = "imgui:2100" 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)" @@ -11345,7 +11345,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:2090" +defs["ImVector_reserve"][1]["location"] = "imgui:2094" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -11367,7 +11367,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:2091" +defs["ImVector_reserve_discard"][1]["location"] = "imgui:2095" defs["ImVector_reserve_discard"][1]["ov_cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["ret"] = "void" defs["ImVector_reserve_discard"][1]["signature"] = "(int)" @@ -11389,7 +11389,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:2087" +defs["ImVector_resize"][1]["location"] = "imgui:2091" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize_Nil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -11412,7 +11412,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:2088" +defs["ImVector_resize"][2]["location"] = "imgui:2092" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resize_T" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -11435,7 +11435,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:2089" +defs["ImVector_shrink"][1]["location"] = "imgui:2093" defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -11454,7 +11454,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:2069" +defs["ImVector_size"][1]["location"] = "imgui:2073" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -11473,7 +11473,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:2070" +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:2074" 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" @@ -11496,7 +11496,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:2084" +defs["ImVector_swap"][1]["location"] = "imgui:2088" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" defs["ImVector_swap"][1]["signature"] = "(ImVector_T *)" @@ -11519,7 +11519,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:886" +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:887" defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -11538,7 +11538,7 @@ defs["igActivateItemByID"][1]["call_args"] = "(id)" defs["igActivateItemByID"][1]["cimguiname"] = "igActivateItemByID" defs["igActivateItemByID"][1]["defaults"] = {} defs["igActivateItemByID"][1]["funcname"] = "ActivateItemByID" -defs["igActivateItemByID"][1]["location"] = "imgui_internal:3142" +defs["igActivateItemByID"][1]["location"] = "imgui_internal:3148" defs["igActivateItemByID"][1]["namespace"] = "ImGui" defs["igActivateItemByID"][1]["ov_cimguiname"] = "igActivateItemByID" defs["igActivateItemByID"][1]["ret"] = "void" @@ -11560,7 +11560,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:3009" +defs["igAddContextHook"][1]["location"] = "imgui_internal:3015" defs["igAddContextHook"][1]["namespace"] = "ImGui" defs["igAddContextHook"][1]["ov_cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["ret"] = "ImGuiID" @@ -11585,7 +11585,7 @@ defs["igAddDrawListToDrawDataEx"][1]["call_args"] = "(draw_data,out_list,draw_li defs["igAddDrawListToDrawDataEx"][1]["cimguiname"] = "igAddDrawListToDrawDataEx" defs["igAddDrawListToDrawDataEx"][1]["defaults"] = {} defs["igAddDrawListToDrawDataEx"][1]["funcname"] = "AddDrawListToDrawDataEx" -defs["igAddDrawListToDrawDataEx"][1]["location"] = "imgui_internal:2994" +defs["igAddDrawListToDrawDataEx"][1]["location"] = "imgui_internal:3000" defs["igAddDrawListToDrawDataEx"][1]["namespace"] = "ImGui" defs["igAddDrawListToDrawDataEx"][1]["ov_cimguiname"] = "igAddDrawListToDrawDataEx" defs["igAddDrawListToDrawDataEx"][1]["ret"] = "void" @@ -11604,7 +11604,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:3020" +defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:3026" defs["igAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igAddSettingsHandler"][1]["ov_cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["ret"] = "void" @@ -11671,7 +11671,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:3386" +defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3392" defs["igArrowButtonEx"][1]["namespace"] = "ImGui" defs["igArrowButtonEx"][1]["ov_cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["ret"] = "bool" @@ -11726,7 +11726,7 @@ defs["igBeginBoxSelect"][1]["call_args"] = "(scope_rect,window,box_select_id,ms_ defs["igBeginBoxSelect"][1]["cimguiname"] = "igBeginBoxSelect" defs["igBeginBoxSelect"][1]["defaults"] = {} defs["igBeginBoxSelect"][1]["funcname"] = "BeginBoxSelect" -defs["igBeginBoxSelect"][1]["location"] = "imgui_internal:3257" +defs["igBeginBoxSelect"][1]["location"] = "imgui_internal:3263" defs["igBeginBoxSelect"][1]["namespace"] = "ImGui" defs["igBeginBoxSelect"][1]["ov_cimguiname"] = "igBeginBoxSelect" defs["igBeginBoxSelect"][1]["ret"] = "bool" @@ -11818,7 +11818,7 @@ defs["igBeginChildEx"][1]["call_args"] = "(name,id,size_arg,child_flags,window_f defs["igBeginChildEx"][1]["cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["defaults"] = {} defs["igBeginChildEx"][1]["funcname"] = "BeginChildEx" -defs["igBeginChildEx"][1]["location"] = "imgui_internal:3089" +defs["igBeginChildEx"][1]["location"] = "imgui_internal:3095" defs["igBeginChildEx"][1]["namespace"] = "ImGui" defs["igBeginChildEx"][1]["ov_cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["ret"] = "bool" @@ -11844,7 +11844,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:3270" +defs["igBeginColumns"][1]["location"] = "imgui_internal:3276" defs["igBeginColumns"][1]["namespace"] = "ImGui" defs["igBeginColumns"][1]["ov_cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["ret"] = "void" @@ -11870,7 +11870,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:573" +defs["igBeginCombo"][1]["location"] = "imgui:574" defs["igBeginCombo"][1]["namespace"] = "ImGui" defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" @@ -11895,7 +11895,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:3115" +defs["igBeginComboPopup"][1]["location"] = "imgui_internal:3121" defs["igBeginComboPopup"][1]["namespace"] = "ImGui" defs["igBeginComboPopup"][1]["ov_cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["ret"] = "bool" @@ -11911,7 +11911,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:3116" +defs["igBeginComboPreview"][1]["location"] = "imgui_internal:3122" defs["igBeginComboPreview"][1]["namespace"] = "ImGui" defs["igBeginComboPreview"][1]["ov_cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["ret"] = "bool" @@ -11931,7 +11931,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:895" +defs["igBeginDisabled"][1]["location"] = "imgui:896" defs["igBeginDisabled"][1]["namespace"] = "ImGui" defs["igBeginDisabled"][1]["ov_cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["ret"] = "void" @@ -11947,7 +11947,7 @@ defs["igBeginDisabledOverrideReenable"][1]["call_args"] = "()" defs["igBeginDisabledOverrideReenable"][1]["cimguiname"] = "igBeginDisabledOverrideReenable" defs["igBeginDisabledOverrideReenable"][1]["defaults"] = {} defs["igBeginDisabledOverrideReenable"][1]["funcname"] = "BeginDisabledOverrideReenable" -defs["igBeginDisabledOverrideReenable"][1]["location"] = "imgui_internal:3079" +defs["igBeginDisabledOverrideReenable"][1]["location"] = "imgui_internal:3085" defs["igBeginDisabledOverrideReenable"][1]["namespace"] = "ImGui" defs["igBeginDisabledOverrideReenable"][1]["ov_cimguiname"] = "igBeginDisabledOverrideReenable" defs["igBeginDisabledOverrideReenable"][1]["ret"] = "void" @@ -11967,7 +11967,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:882" +defs["igBeginDragDropSource"][1]["location"] = "imgui:883" defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -11983,7 +11983,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:885" +defs["igBeginDragDropTarget"][1]["location"] = "imgui:886" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -12005,7 +12005,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:3243" +defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:3249" defs["igBeginDragDropTargetCustom"][1]["namespace"] = "ImGui" defs["igBeginDragDropTargetCustom"][1]["ov_cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["ret"] = "bool" @@ -12021,7 +12021,7 @@ defs["igBeginErrorTooltip"][1]["call_args"] = "()" defs["igBeginErrorTooltip"][1]["cimguiname"] = "igBeginErrorTooltip" defs["igBeginErrorTooltip"][1]["defaults"] = {} defs["igBeginErrorTooltip"][1]["funcname"] = "BeginErrorTooltip" -defs["igBeginErrorTooltip"][1]["location"] = "imgui_internal:3469" +defs["igBeginErrorTooltip"][1]["location"] = "imgui_internal:3475" defs["igBeginErrorTooltip"][1]["namespace"] = "ImGui" defs["igBeginErrorTooltip"][1]["ov_cimguiname"] = "igBeginErrorTooltip" defs["igBeginErrorTooltip"][1]["ret"] = "bool" @@ -12053,7 +12053,7 @@ defs["igBeginItemTooltip"][1]["call_args"] = "()" defs["igBeginItemTooltip"][1]["cimguiname"] = "igBeginItemTooltip" defs["igBeginItemTooltip"][1]["defaults"] = {} defs["igBeginItemTooltip"][1]["funcname"] = "BeginItemTooltip" -defs["igBeginItemTooltip"][1]["location"] = "imgui:744" +defs["igBeginItemTooltip"][1]["location"] = "imgui:745" defs["igBeginItemTooltip"][1]["namespace"] = "ImGui" defs["igBeginItemTooltip"][1]["ov_cimguiname"] = "igBeginItemTooltip" defs["igBeginItemTooltip"][1]["ret"] = "bool" @@ -12076,7 +12076,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:698" +defs["igBeginListBox"][1]["location"] = "imgui:699" defs["igBeginListBox"][1]["namespace"] = "ImGui" defs["igBeginListBox"][1]["ov_cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["ret"] = "bool" @@ -12092,7 +12092,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:724" +defs["igBeginMainMenuBar"][1]["location"] = "imgui:725" defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" @@ -12115,7 +12115,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:726" +defs["igBeginMenu"][1]["location"] = "imgui:727" defs["igBeginMenu"][1]["namespace"] = "ImGui" defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" @@ -12131,7 +12131,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:722" +defs["igBeginMenuBar"][1]["location"] = "imgui:723" defs["igBeginMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" @@ -12157,7 +12157,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:3111" +defs["igBeginMenuEx"][1]["location"] = "imgui_internal:3117" defs["igBeginMenuEx"][1]["namespace"] = "ImGui" defs["igBeginMenuEx"][1]["ov_cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["ret"] = "bool" @@ -12184,7 +12184,7 @@ defs["igBeginMultiSelect"][1]["defaults"] = {} defs["igBeginMultiSelect"][1]["defaults"]["items_count"] = "-1" defs["igBeginMultiSelect"][1]["defaults"]["selection_size"] = "-1" defs["igBeginMultiSelect"][1]["funcname"] = "BeginMultiSelect" -defs["igBeginMultiSelect"][1]["location"] = "imgui:687" +defs["igBeginMultiSelect"][1]["location"] = "imgui:688" defs["igBeginMultiSelect"][1]["namespace"] = "ImGui" defs["igBeginMultiSelect"][1]["ov_cimguiname"] = "igBeginMultiSelect" defs["igBeginMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" @@ -12207,7 +12207,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:758" +defs["igBeginPopup"][1]["location"] = "imgui:759" defs["igBeginPopup"][1]["namespace"] = "ImGui" defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" @@ -12231,7 +12231,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:780" +defs["igBeginPopupContextItem"][1]["location"] = "imgui:781" defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" @@ -12255,7 +12255,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:782" +defs["igBeginPopupContextVoid"][1]["location"] = "imgui:783" defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" @@ -12279,7 +12279,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:781" +defs["igBeginPopupContextWindow"][1]["location"] = "imgui:782" defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" @@ -12301,7 +12301,7 @@ defs["igBeginPopupEx"][1]["call_args"] = "(id,extra_window_flags)" defs["igBeginPopupEx"][1]["cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["defaults"] = {} defs["igBeginPopupEx"][1]["funcname"] = "BeginPopupEx" -defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3092" +defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3098" defs["igBeginPopupEx"][1]["namespace"] = "ImGui" defs["igBeginPopupEx"][1]["ov_cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["ret"] = "bool" @@ -12328,7 +12328,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:759" +defs["igBeginPopupModal"][1]["location"] = "imgui:760" defs["igBeginPopupModal"][1]["namespace"] = "ImGui" defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" @@ -12351,7 +12351,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:860" +defs["igBeginTabBar"][1]["location"] = "imgui:861" defs["igBeginTabBar"][1]["namespace"] = "ImGui" defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" @@ -12376,7 +12376,7 @@ defs["igBeginTabBarEx"][1]["call_args"] = "(tab_bar,bb,flags)" defs["igBeginTabBarEx"][1]["cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["defaults"] = {} defs["igBeginTabBarEx"][1]["funcname"] = "BeginTabBarEx" -defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3338" +defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3344" defs["igBeginTabBarEx"][1]["namespace"] = "ImGui" defs["igBeginTabBarEx"][1]["ov_cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["ret"] = "bool" @@ -12403,7 +12403,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:862" +defs["igBeginTabItem"][1]["location"] = "imgui:863" defs["igBeginTabItem"][1]["namespace"] = "ImGui" defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" @@ -12437,7 +12437,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:811" +defs["igBeginTable"][1]["location"] = "imgui:812" defs["igBeginTable"][1]["namespace"] = "ImGui" defs["igBeginTable"][1]["ov_cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["ret"] = "bool" @@ -12474,7 +12474,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:3294" +defs["igBeginTableEx"][1]["location"] = "imgui_internal:3300" defs["igBeginTableEx"][1]["namespace"] = "ImGui" defs["igBeginTableEx"][1]["ov_cimguiname"] = "igBeginTableEx" defs["igBeginTableEx"][1]["ret"] = "bool" @@ -12490,7 +12490,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:735" +defs["igBeginTooltip"][1]["location"] = "imgui:736" defs["igBeginTooltip"][1]["namespace"] = "ImGui" defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["ret"] = "bool" @@ -12512,7 +12512,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:3106" +defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3112" defs["igBeginTooltipEx"][1]["namespace"] = "ImGui" defs["igBeginTooltipEx"][1]["ov_cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["ret"] = "bool" @@ -12528,7 +12528,7 @@ defs["igBeginTooltipHidden"][1]["call_args"] = "()" defs["igBeginTooltipHidden"][1]["cimguiname"] = "igBeginTooltipHidden" defs["igBeginTooltipHidden"][1]["defaults"] = {} defs["igBeginTooltipHidden"][1]["funcname"] = "BeginTooltipHidden" -defs["igBeginTooltipHidden"][1]["location"] = "imgui_internal:3107" +defs["igBeginTooltipHidden"][1]["location"] = "imgui_internal:3113" defs["igBeginTooltipHidden"][1]["namespace"] = "ImGui" defs["igBeginTooltipHidden"][1]["ov_cimguiname"] = "igBeginTooltipHidden" defs["igBeginTooltipHidden"][1]["ret"] = "bool" @@ -12559,7 +12559,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:3110" +defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:3116" defs["igBeginViewportSideBar"][1]["namespace"] = "ImGui" defs["igBeginViewportSideBar"][1]["ov_cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["ret"] = "bool" @@ -12578,7 +12578,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:2980" +defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:2986" defs["igBringWindowToDisplayBack"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBack"][1]["ov_cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["ret"] = "void" @@ -12600,7 +12600,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:2981" +defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:2987" defs["igBringWindowToDisplayBehind"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBehind"][1]["ov_cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["ret"] = "void" @@ -12619,7 +12619,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:2979" +defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:2985" defs["igBringWindowToDisplayFront"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayFront"][1]["ov_cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["ret"] = "void" @@ -12638,7 +12638,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:2978" +defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:2984" defs["igBringWindowToFocusFront"][1]["namespace"] = "ImGui" defs["igBringWindowToFocusFront"][1]["ov_cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["ret"] = "void" @@ -12754,7 +12754,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:3404" +defs["igButtonBehavior"][1]["location"] = "imgui_internal:3410" defs["igButtonBehavior"][1]["namespace"] = "ImGui" defs["igButtonBehavior"][1]["ov_cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["ret"] = "bool" @@ -12781,7 +12781,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:3385" +defs["igButtonEx"][1]["location"] = "imgui_internal:3391" defs["igButtonEx"][1]["namespace"] = "ImGui" defs["igButtonEx"][1]["ov_cimguiname"] = "igButtonEx" defs["igButtonEx"][1]["ret"] = "bool" @@ -12809,7 +12809,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:3072" +defs["igCalcItemSize"][1]["location"] = "imgui_internal:3078" defs["igCalcItemSize"][1]["namespace"] = "ImGui" defs["igCalcItemSize"][1]["nonUDT"] = 1 defs["igCalcItemSize"][1]["ov_cimguiname"] = "igCalcItemSize" @@ -12860,7 +12860,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:955" +defs["igCalcTextSize"][1]["location"] = "imgui:956" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -12889,7 +12889,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:3171" +defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:3177" defs["igCalcTypematicRepeatAmount"][1]["namespace"] = "ImGui" defs["igCalcTypematicRepeatAmount"][1]["ov_cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["ret"] = "int" @@ -12911,7 +12911,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:2959" +defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:2965" defs["igCalcWindowNextAutoFitSize"][1]["namespace"] = "ImGui" defs["igCalcWindowNextAutoFitSize"][1]["nonUDT"] = 1 defs["igCalcWindowNextAutoFitSize"][1]["ov_cimguiname"] = "igCalcWindowNextAutoFitSize" @@ -12934,7 +12934,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:3073" +defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:3079" defs["igCalcWrapWidthForPos"][1]["namespace"] = "ImGui" defs["igCalcWrapWidthForPos"][1]["ov_cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["ret"] = "float" @@ -12956,7 +12956,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:3011" +defs["igCallContextHooks"][1]["location"] = "imgui_internal:3017" defs["igCallContextHooks"][1]["namespace"] = "ImGui" defs["igCallContextHooks"][1]["ov_cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["ret"] = "void" @@ -13049,7 +13049,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:3390" +defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3396" defs["igCheckboxFlags"][3]["namespace"] = "ImGui" defs["igCheckboxFlags"][3]["ov_cimguiname"] = "igCheckboxFlags_S64Ptr" defs["igCheckboxFlags"][3]["ret"] = "bool" @@ -13072,7 +13072,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:3391" +defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3397" defs["igCheckboxFlags"][4]["namespace"] = "ImGui" defs["igCheckboxFlags"][4]["ov_cimguiname"] = "igCheckboxFlags_U64Ptr" defs["igCheckboxFlags"][4]["ret"] = "bool" @@ -13091,7 +13091,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:3055" +defs["igClearActiveID"][1]["location"] = "imgui_internal:3061" defs["igClearActiveID"][1]["namespace"] = "ImGui" defs["igClearActiveID"][1]["ov_cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["ret"] = "void" @@ -13107,7 +13107,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:3244" +defs["igClearDragDrop"][1]["location"] = "imgui_internal:3250" defs["igClearDragDrop"][1]["namespace"] = "ImGui" defs["igClearDragDrop"][1]["ov_cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["ret"] = "void" @@ -13123,7 +13123,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:3019" +defs["igClearIniSettings"][1]["location"] = "imgui_internal:3025" defs["igClearIniSettings"][1]["namespace"] = "ImGui" defs["igClearIniSettings"][1]["ov_cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["ret"] = "void" @@ -13142,7 +13142,7 @@ defs["igClearWindowSettings"][1]["call_args"] = "(name)" defs["igClearWindowSettings"][1]["cimguiname"] = "igClearWindowSettings" defs["igClearWindowSettings"][1]["defaults"] = {} defs["igClearWindowSettings"][1]["funcname"] = "ClearWindowSettings" -defs["igClearWindowSettings"][1]["location"] = "imgui_internal:3028" +defs["igClearWindowSettings"][1]["location"] = "imgui_internal:3034" defs["igClearWindowSettings"][1]["namespace"] = "ImGui" defs["igClearWindowSettings"][1]["ov_cimguiname"] = "igClearWindowSettings" defs["igClearWindowSettings"][1]["ret"] = "void" @@ -13164,7 +13164,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:3394" +defs["igCloseButton"][1]["location"] = "imgui_internal:3400" defs["igCloseButton"][1]["namespace"] = "ImGui" defs["igCloseButton"][1]["ov_cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["ret"] = "bool" @@ -13180,7 +13180,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:773" +defs["igCloseCurrentPopup"][1]["location"] = "imgui:774" defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" @@ -13202,7 +13202,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:3094" +defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:3100" defs["igClosePopupToLevel"][1]["namespace"] = "ImGui" defs["igClosePopupToLevel"][1]["ov_cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["ret"] = "void" @@ -13218,7 +13218,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:3096" +defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:3102" defs["igClosePopupsExceptModals"][1]["namespace"] = "ImGui" defs["igClosePopupsExceptModals"][1]["ov_cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["ret"] = "void" @@ -13240,7 +13240,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:3095" +defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:3101" defs["igClosePopupsOverWindow"][1]["namespace"] = "ImGui" defs["igClosePopupsOverWindow"][1]["ov_cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["ret"] = "void" @@ -13262,7 +13262,7 @@ defs["igCollapseButton"][1]["call_args"] = "(id,pos)" defs["igCollapseButton"][1]["cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["defaults"] = {} defs["igCollapseButton"][1]["funcname"] = "CollapseButton" -defs["igCollapseButton"][1]["location"] = "imgui_internal:3395" +defs["igCollapseButton"][1]["location"] = "imgui_internal:3401" defs["igCollapseButton"][1]["namespace"] = "ImGui" defs["igCollapseButton"][1]["ov_cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["ret"] = "bool" @@ -13285,7 +13285,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:669" +defs["igCollapsingHeader"][1]["location"] = "imgui:670" defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeader_TreeNodeFlags" defs["igCollapsingHeader"][1]["ret"] = "bool" @@ -13309,7 +13309,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:670" +defs["igCollapsingHeader"][2]["location"] = "imgui:671" defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeader_BoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" @@ -13340,7 +13340,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:650" +defs["igColorButton"][1]["location"] = "imgui:651" defs["igColorButton"][1]["namespace"] = "ImGui" defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" @@ -13359,7 +13359,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:959" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:960" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -13396,7 +13396,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:961" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:962" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -13433,7 +13433,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:960" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:961" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -13455,7 +13455,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:958" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:959" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -13482,7 +13482,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:646" +defs["igColorEdit3"][1]["location"] = "imgui:647" defs["igColorEdit3"][1]["namespace"] = "ImGui" defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" @@ -13508,7 +13508,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:647" +defs["igColorEdit4"][1]["location"] = "imgui:648" defs["igColorEdit4"][1]["namespace"] = "ImGui" defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" @@ -13530,7 +13530,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:3446" +defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3452" defs["igColorEditOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorEditOptionsPopup"][1]["ov_cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["ret"] = "void" @@ -13556,7 +13556,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:648" +defs["igColorPicker3"][1]["location"] = "imgui:649" defs["igColorPicker3"][1]["namespace"] = "ImGui" defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" @@ -13586,7 +13586,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:649" +defs["igColorPicker4"][1]["location"] = "imgui:650" defs["igColorPicker4"][1]["namespace"] = "ImGui" defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" @@ -13608,7 +13608,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:3447" +defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3453" defs["igColorPickerOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorPickerOptionsPopup"][1]["ov_cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["ret"] = "void" @@ -13633,7 +13633,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:3445" +defs["igColorTooltip"][1]["location"] = "imgui_internal:3451" defs["igColorTooltip"][1]["namespace"] = "ImGui" defs["igColorTooltip"][1]["ov_cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["ret"] = "void" @@ -13661,7 +13661,7 @@ defs["igColumns"][1]["defaults"]["borders"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" defs["igColumns"][1]["defaults"]["id"] = "NULL" defs["igColumns"][1]["funcname"] = "Columns" -defs["igColumns"][1]["location"] = "imgui:849" +defs["igColumns"][1]["location"] = "imgui:850" defs["igColumns"][1]["namespace"] = "ImGui" defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" @@ -13693,7 +13693,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:575" +defs["igCombo"][1]["location"] = "imgui:576" defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igCombo_Str_arr" defs["igCombo"][1]["ret"] = "bool" @@ -13720,7 +13720,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:576" +defs["igCombo"][2]["location"] = "imgui:577" defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igCombo_Str" defs["igCombo"][2]["ret"] = "bool" @@ -13755,7 +13755,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:577" +defs["igCombo"][3]["location"] = "imgui:578" defs["igCombo"][3]["namespace"] = "ImGui" defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnStrPtr" defs["igCombo"][3]["ret"] = "bool" @@ -13776,7 +13776,7 @@ defs["igConvertSingleModFlagToKey"][1]["call_args"] = "(key)" defs["igConvertSingleModFlagToKey"][1]["cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["defaults"] = {} defs["igConvertSingleModFlagToKey"][1]["funcname"] = "ConvertSingleModFlagToKey" -defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3155" +defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3161" defs["igConvertSingleModFlagToKey"][1]["namespace"] = "ImGui" defs["igConvertSingleModFlagToKey"][1]["ov_cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["ret"] = "ImGuiKey" @@ -13815,7 +13815,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:3025" +defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:3031" defs["igCreateNewWindowSettings"][1]["namespace"] = "ImGui" defs["igCreateNewWindowSettings"][1]["ov_cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -13847,7 +13847,7 @@ defs["igDataTypeApplyFromText"][1]["cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["defaults"] = {} defs["igDataTypeApplyFromText"][1]["defaults"]["p_data_when_empty"] = "NULL" defs["igDataTypeApplyFromText"][1]["funcname"] = "DataTypeApplyFromText" -defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3430" +defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3436" defs["igDataTypeApplyFromText"][1]["namespace"] = "ImGui" defs["igDataTypeApplyFromText"][1]["ov_cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["ret"] = "bool" @@ -13878,7 +13878,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:3429" +defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3435" defs["igDataTypeApplyOp"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOp"][1]["ov_cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["ret"] = "void" @@ -13906,7 +13906,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:3432" +defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3438" defs["igDataTypeClamp"][1]["namespace"] = "ImGui" defs["igDataTypeClamp"][1]["ov_cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["ret"] = "bool" @@ -13931,7 +13931,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:3431" +defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3437" defs["igDataTypeCompare"][1]["namespace"] = "ImGui" defs["igDataTypeCompare"][1]["ov_cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["ret"] = "int" @@ -13962,7 +13962,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:3428" +defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3434" defs["igDataTypeFormatString"][1]["namespace"] = "ImGui" defs["igDataTypeFormatString"][1]["ov_cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["ret"] = "int" @@ -13981,7 +13981,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:3427" +defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3433" defs["igDataTypeGetInfo"][1]["namespace"] = "ImGui" defs["igDataTypeGetInfo"][1]["ov_cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["ret"] = "const ImGuiDataTypeInfo*" @@ -14003,7 +14003,7 @@ defs["igDataTypeIsZero"][1]["call_args"] = "(data_type,p_data)" defs["igDataTypeIsZero"][1]["cimguiname"] = "igDataTypeIsZero" defs["igDataTypeIsZero"][1]["defaults"] = {} defs["igDataTypeIsZero"][1]["funcname"] = "DataTypeIsZero" -defs["igDataTypeIsZero"][1]["location"] = "imgui_internal:3433" +defs["igDataTypeIsZero"][1]["location"] = "imgui_internal:3439" defs["igDataTypeIsZero"][1]["namespace"] = "ImGui" defs["igDataTypeIsZero"][1]["ov_cimguiname"] = "igDataTypeIsZero" defs["igDataTypeIsZero"][1]["ret"] = "bool" @@ -14031,7 +14031,7 @@ defs["igDebugAllocHook"][1]["call_args"] = "(info,frame_count,ptr,size)" defs["igDebugAllocHook"][1]["cimguiname"] = "igDebugAllocHook" defs["igDebugAllocHook"][1]["defaults"] = {} defs["igDebugAllocHook"][1]["funcname"] = "DebugAllocHook" -defs["igDebugAllocHook"][1]["location"] = "imgui_internal:3473" +defs["igDebugAllocHook"][1]["location"] = "imgui_internal:3479" defs["igDebugAllocHook"][1]["namespace"] = "ImGui" defs["igDebugAllocHook"][1]["ov_cimguiname"] = "igDebugAllocHook" defs["igDebugAllocHook"][1]["ret"] = "void" @@ -14053,7 +14053,7 @@ defs["igDebugBreakButton"][1]["call_args"] = "(label,description_of_location)" defs["igDebugBreakButton"][1]["cimguiname"] = "igDebugBreakButton" defs["igDebugBreakButton"][1]["defaults"] = {} defs["igDebugBreakButton"][1]["funcname"] = "DebugBreakButton" -defs["igDebugBreakButton"][1]["location"] = "imgui_internal:3482" +defs["igDebugBreakButton"][1]["location"] = "imgui_internal:3488" defs["igDebugBreakButton"][1]["namespace"] = "ImGui" defs["igDebugBreakButton"][1]["ov_cimguiname"] = "igDebugBreakButton" defs["igDebugBreakButton"][1]["ret"] = "bool" @@ -14075,7 +14075,7 @@ defs["igDebugBreakButtonTooltip"][1]["call_args"] = "(keyboard_only,description_ defs["igDebugBreakButtonTooltip"][1]["cimguiname"] = "igDebugBreakButtonTooltip" defs["igDebugBreakButtonTooltip"][1]["defaults"] = {} defs["igDebugBreakButtonTooltip"][1]["funcname"] = "DebugBreakButtonTooltip" -defs["igDebugBreakButtonTooltip"][1]["location"] = "imgui_internal:3483" +defs["igDebugBreakButtonTooltip"][1]["location"] = "imgui_internal:3489" defs["igDebugBreakButtonTooltip"][1]["namespace"] = "ImGui" defs["igDebugBreakButtonTooltip"][1]["ov_cimguiname"] = "igDebugBreakButtonTooltip" defs["igDebugBreakButtonTooltip"][1]["ret"] = "void" @@ -14091,7 +14091,7 @@ defs["igDebugBreakClearData"][1]["call_args"] = "()" defs["igDebugBreakClearData"][1]["cimguiname"] = "igDebugBreakClearData" defs["igDebugBreakClearData"][1]["defaults"] = {} defs["igDebugBreakClearData"][1]["funcname"] = "DebugBreakClearData" -defs["igDebugBreakClearData"][1]["location"] = "imgui_internal:3481" +defs["igDebugBreakClearData"][1]["location"] = "imgui_internal:3487" defs["igDebugBreakClearData"][1]["namespace"] = "ImGui" defs["igDebugBreakClearData"][1]["ov_cimguiname"] = "igDebugBreakClearData" defs["igDebugBreakClearData"][1]["ret"] = "void" @@ -14128,7 +14128,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:1041" +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:1042" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" @@ -14148,7 +14148,7 @@ defs["igDebugDrawCursorPos"][1]["cimguiname"] = "igDebugDrawCursorPos" defs["igDebugDrawCursorPos"][1]["defaults"] = {} defs["igDebugDrawCursorPos"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawCursorPos"][1]["funcname"] = "DebugDrawCursorPos" -defs["igDebugDrawCursorPos"][1]["location"] = "imgui_internal:3474" +defs["igDebugDrawCursorPos"][1]["location"] = "imgui_internal:3480" defs["igDebugDrawCursorPos"][1]["namespace"] = "ImGui" defs["igDebugDrawCursorPos"][1]["ov_cimguiname"] = "igDebugDrawCursorPos" defs["igDebugDrawCursorPos"][1]["ret"] = "void" @@ -14168,7 +14168,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:3476" +defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3482" defs["igDebugDrawItemRect"][1]["namespace"] = "ImGui" defs["igDebugDrawItemRect"][1]["ov_cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["ret"] = "void" @@ -14188,7 +14188,7 @@ defs["igDebugDrawLineExtents"][1]["cimguiname"] = "igDebugDrawLineExtents" defs["igDebugDrawLineExtents"][1]["defaults"] = {} defs["igDebugDrawLineExtents"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawLineExtents"][1]["funcname"] = "DebugDrawLineExtents" -defs["igDebugDrawLineExtents"][1]["location"] = "imgui_internal:3475" +defs["igDebugDrawLineExtents"][1]["location"] = "imgui_internal:3481" defs["igDebugDrawLineExtents"][1]["namespace"] = "ImGui" defs["igDebugDrawLineExtents"][1]["ov_cimguiname"] = "igDebugDrawLineExtents" defs["igDebugDrawLineExtents"][1]["ret"] = "void" @@ -14207,7 +14207,7 @@ defs["igDebugFlashStyleColor"][1]["call_args"] = "(idx)" defs["igDebugFlashStyleColor"][1]["cimguiname"] = "igDebugFlashStyleColor" defs["igDebugFlashStyleColor"][1]["defaults"] = {} defs["igDebugFlashStyleColor"][1]["funcname"] = "DebugFlashStyleColor" -defs["igDebugFlashStyleColor"][1]["location"] = "imgui:1039" +defs["igDebugFlashStyleColor"][1]["location"] = "imgui:1040" defs["igDebugFlashStyleColor"][1]["namespace"] = "ImGui" defs["igDebugFlashStyleColor"][1]["ov_cimguiname"] = "igDebugFlashStyleColor" defs["igDebugFlashStyleColor"][1]["ret"] = "void" @@ -14235,7 +14235,7 @@ defs["igDebugHookIdInfo"][1]["call_args"] = "(id,data_type,data_id,data_id_end)" defs["igDebugHookIdInfo"][1]["cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["defaults"] = {} defs["igDebugHookIdInfo"][1]["funcname"] = "DebugHookIdInfo" -defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3485" +defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3491" defs["igDebugHookIdInfo"][1]["namespace"] = "ImGui" defs["igDebugHookIdInfo"][1]["ov_cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["ret"] = "void" @@ -14254,7 +14254,7 @@ defs["igDebugLocateItem"][1]["call_args"] = "(target_id)" defs["igDebugLocateItem"][1]["cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["defaults"] = {} defs["igDebugLocateItem"][1]["funcname"] = "DebugLocateItem" -defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3478" +defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3484" defs["igDebugLocateItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItem"][1]["ov_cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["ret"] = "void" @@ -14273,7 +14273,7 @@ defs["igDebugLocateItemOnHover"][1]["call_args"] = "(target_id)" defs["igDebugLocateItemOnHover"][1]["cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["defaults"] = {} defs["igDebugLocateItemOnHover"][1]["funcname"] = "DebugLocateItemOnHover" -defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3479" +defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3485" defs["igDebugLocateItemOnHover"][1]["namespace"] = "ImGui" defs["igDebugLocateItemOnHover"][1]["ov_cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["ret"] = "void" @@ -14289,7 +14289,7 @@ defs["igDebugLocateItemResolveWithLastItem"][1]["call_args"] = "()" defs["igDebugLocateItemResolveWithLastItem"][1]["cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["defaults"] = {} defs["igDebugLocateItemResolveWithLastItem"][1]["funcname"] = "DebugLocateItemResolveWithLastItem" -defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3480" +defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3486" defs["igDebugLocateItemResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItemResolveWithLastItem"][1]["ov_cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["ret"] = "void" @@ -14312,7 +14312,7 @@ defs["igDebugLog"][1]["cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["defaults"] = {} defs["igDebugLog"][1]["funcname"] = "DebugLog" defs["igDebugLog"][1]["isvararg"] = "...)" -defs["igDebugLog"][1]["location"] = "imgui:1043" +defs["igDebugLog"][1]["location"] = "imgui:1044" defs["igDebugLog"][1]["namespace"] = "ImGui" defs["igDebugLog"][1]["ov_cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["ret"] = "void" @@ -14334,7 +14334,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:1044" +defs["igDebugLogV"][1]["location"] = "imgui:1045" defs["igDebugLogV"][1]["namespace"] = "ImGui" defs["igDebugLogV"][1]["ov_cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["ret"] = "void" @@ -14353,7 +14353,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:3486" +defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3492" defs["igDebugNodeColumns"][1]["namespace"] = "ImGui" defs["igDebugNodeColumns"][1]["ov_cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["ret"] = "void" @@ -14384,7 +14384,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:3488" +defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3494" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ov_cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ret"] = "void" @@ -14412,7 +14412,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:3487" +defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3493" defs["igDebugNodeDrawList"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawList"][1]["ov_cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["ret"] = "void" @@ -14431,7 +14431,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:3489" +defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3495" defs["igDebugNodeFont"][1]["namespace"] = "ImGui" defs["igDebugNodeFont"][1]["ov_cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["ret"] = "void" @@ -14453,7 +14453,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:3490" +defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3496" defs["igDebugNodeFontGlyph"][1]["namespace"] = "ImGui" defs["igDebugNodeFontGlyph"][1]["ov_cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["ret"] = "void" @@ -14472,7 +14472,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:3495" +defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3501" defs["igDebugNodeInputTextState"][1]["namespace"] = "ImGui" defs["igDebugNodeInputTextState"][1]["ov_cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["ret"] = "void" @@ -14491,7 +14491,7 @@ defs["igDebugNodeMultiSelectState"][1]["call_args"] = "(state)" defs["igDebugNodeMultiSelectState"][1]["cimguiname"] = "igDebugNodeMultiSelectState" defs["igDebugNodeMultiSelectState"][1]["defaults"] = {} defs["igDebugNodeMultiSelectState"][1]["funcname"] = "DebugNodeMultiSelectState" -defs["igDebugNodeMultiSelectState"][1]["location"] = "imgui_internal:3497" +defs["igDebugNodeMultiSelectState"][1]["location"] = "imgui_internal:3503" defs["igDebugNodeMultiSelectState"][1]["namespace"] = "ImGui" defs["igDebugNodeMultiSelectState"][1]["ov_cimguiname"] = "igDebugNodeMultiSelectState" defs["igDebugNodeMultiSelectState"][1]["ret"] = "void" @@ -14513,7 +14513,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:3491" +defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3497" defs["igDebugNodeStorage"][1]["namespace"] = "ImGui" defs["igDebugNodeStorage"][1]["ov_cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["ret"] = "void" @@ -14535,7 +14535,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:3492" +defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3498" defs["igDebugNodeTabBar"][1]["namespace"] = "ImGui" defs["igDebugNodeTabBar"][1]["ov_cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["ret"] = "void" @@ -14554,7 +14554,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:3493" +defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3499" defs["igDebugNodeTable"][1]["namespace"] = "ImGui" defs["igDebugNodeTable"][1]["ov_cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["ret"] = "void" @@ -14573,7 +14573,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:3494" +defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3500" defs["igDebugNodeTableSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeTableSettings"][1]["ov_cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["ret"] = "void" @@ -14592,7 +14592,7 @@ defs["igDebugNodeTypingSelectState"][1]["call_args"] = "(state)" defs["igDebugNodeTypingSelectState"][1]["cimguiname"] = "igDebugNodeTypingSelectState" defs["igDebugNodeTypingSelectState"][1]["defaults"] = {} defs["igDebugNodeTypingSelectState"][1]["funcname"] = "DebugNodeTypingSelectState" -defs["igDebugNodeTypingSelectState"][1]["location"] = "imgui_internal:3496" +defs["igDebugNodeTypingSelectState"][1]["location"] = "imgui_internal:3502" defs["igDebugNodeTypingSelectState"][1]["namespace"] = "ImGui" defs["igDebugNodeTypingSelectState"][1]["ov_cimguiname"] = "igDebugNodeTypingSelectState" defs["igDebugNodeTypingSelectState"][1]["ret"] = "void" @@ -14611,7 +14611,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:3502" +defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3508" defs["igDebugNodeViewport"][1]["namespace"] = "ImGui" defs["igDebugNodeViewport"][1]["ov_cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["ret"] = "void" @@ -14633,7 +14633,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:3498" +defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3504" defs["igDebugNodeWindow"][1]["namespace"] = "ImGui" defs["igDebugNodeWindow"][1]["ov_cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["ret"] = "void" @@ -14652,7 +14652,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:3499" +defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3505" defs["igDebugNodeWindowSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowSettings"][1]["ov_cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["ret"] = "void" @@ -14674,7 +14674,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:3500" +defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3506" defs["igDebugNodeWindowsList"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsList"][1]["ov_cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["ret"] = "void" @@ -14699,7 +14699,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:3501" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3507" defs["igDebugNodeWindowsListByBeginStackParent"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ov_cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ret"] = "void" @@ -14718,7 +14718,7 @@ defs["igDebugRenderKeyboardPreview"][1]["call_args"] = "(draw_list)" defs["igDebugRenderKeyboardPreview"][1]["cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["defaults"] = {} defs["igDebugRenderKeyboardPreview"][1]["funcname"] = "DebugRenderKeyboardPreview" -defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3503" +defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3509" defs["igDebugRenderKeyboardPreview"][1]["namespace"] = "ImGui" defs["igDebugRenderKeyboardPreview"][1]["ov_cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["ret"] = "void" @@ -14743,7 +14743,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:3504" +defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3510" defs["igDebugRenderViewportThumbnail"][1]["namespace"] = "ImGui" defs["igDebugRenderViewportThumbnail"][1]["ov_cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["ret"] = "void" @@ -14759,7 +14759,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:1040" +defs["igDebugStartItemPicker"][1]["location"] = "imgui:1041" defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["ret"] = "void" @@ -14778,7 +14778,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:1038" +defs["igDebugTextEncoding"][1]["location"] = "imgui:1039" defs["igDebugTextEncoding"][1]["namespace"] = "ImGui" defs["igDebugTextEncoding"][1]["ov_cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["ret"] = "void" @@ -14800,7 +14800,7 @@ defs["igDebugTextUnformattedWithLocateItem"][1]["call_args"] = "(line_begin,line defs["igDebugTextUnformattedWithLocateItem"][1]["cimguiname"] = "igDebugTextUnformattedWithLocateItem" defs["igDebugTextUnformattedWithLocateItem"][1]["defaults"] = {} defs["igDebugTextUnformattedWithLocateItem"][1]["funcname"] = "DebugTextUnformattedWithLocateItem" -defs["igDebugTextUnformattedWithLocateItem"][1]["location"] = "imgui_internal:3477" +defs["igDebugTextUnformattedWithLocateItem"][1]["location"] = "imgui_internal:3483" defs["igDebugTextUnformattedWithLocateItem"][1]["namespace"] = "ImGui" defs["igDebugTextUnformattedWithLocateItem"][1]["ov_cimguiname"] = "igDebugTextUnformattedWithLocateItem" defs["igDebugTextUnformattedWithLocateItem"][1]["ret"] = "void" @@ -14860,7 +14860,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:3405" +defs["igDragBehavior"][1]["location"] = "imgui_internal:3411" defs["igDragBehavior"][1]["namespace"] = "ImGui" defs["igDragBehavior"][1]["ov_cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["ret"] = "bool" @@ -14902,7 +14902,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:591" +defs["igDragFloat"][1]["location"] = "imgui:592" defs["igDragFloat"][1]["namespace"] = "ImGui" defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" @@ -14944,7 +14944,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:592" +defs["igDragFloat2"][1]["location"] = "imgui:593" defs["igDragFloat2"][1]["namespace"] = "ImGui" defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" @@ -14986,7 +14986,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:593" +defs["igDragFloat3"][1]["location"] = "imgui:594" defs["igDragFloat3"][1]["namespace"] = "ImGui" defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" @@ -15028,7 +15028,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:594" +defs["igDragFloat4"][1]["location"] = "imgui:595" defs["igDragFloat4"][1]["namespace"] = "ImGui" defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" @@ -15077,7 +15077,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:595" +defs["igDragFloatRange2"][1]["location"] = "imgui:596" defs["igDragFloatRange2"][1]["namespace"] = "ImGui" defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" @@ -15119,7 +15119,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:596" +defs["igDragInt"][1]["location"] = "imgui:597" defs["igDragInt"][1]["namespace"] = "ImGui" defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" @@ -15161,7 +15161,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:597" +defs["igDragInt2"][1]["location"] = "imgui:598" defs["igDragInt2"][1]["namespace"] = "ImGui" defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" @@ -15203,7 +15203,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:598" +defs["igDragInt3"][1]["location"] = "imgui:599" defs["igDragInt3"][1]["namespace"] = "ImGui" defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" @@ -15245,7 +15245,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:599" +defs["igDragInt4"][1]["location"] = "imgui:600" defs["igDragInt4"][1]["namespace"] = "ImGui" defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" @@ -15294,7 +15294,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:600" +defs["igDragIntRange2"][1]["location"] = "imgui:601" defs["igDragIntRange2"][1]["namespace"] = "ImGui" defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" @@ -15339,7 +15339,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:601" +defs["igDragScalar"][1]["location"] = "imgui:602" defs["igDragScalar"][1]["namespace"] = "ImGui" defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" @@ -15387,7 +15387,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:602" +defs["igDragScalarN"][1]["location"] = "imgui:603" defs["igDragScalarN"][1]["namespace"] = "ImGui" defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" @@ -15444,7 +15444,7 @@ defs["igEndBoxSelect"][1]["call_args"] = "(scope_rect,ms_flags)" defs["igEndBoxSelect"][1]["cimguiname"] = "igEndBoxSelect" defs["igEndBoxSelect"][1]["defaults"] = {} defs["igEndBoxSelect"][1]["funcname"] = "EndBoxSelect" -defs["igEndBoxSelect"][1]["location"] = "imgui_internal:3258" +defs["igEndBoxSelect"][1]["location"] = "imgui_internal:3264" defs["igEndBoxSelect"][1]["namespace"] = "ImGui" defs["igEndBoxSelect"][1]["ov_cimguiname"] = "igEndBoxSelect" defs["igEndBoxSelect"][1]["ret"] = "void" @@ -15476,7 +15476,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:3271" +defs["igEndColumns"][1]["location"] = "imgui_internal:3277" defs["igEndColumns"][1]["namespace"] = "ImGui" defs["igEndColumns"][1]["ov_cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["ret"] = "void" @@ -15492,7 +15492,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:574" +defs["igEndCombo"][1]["location"] = "imgui:575" defs["igEndCombo"][1]["namespace"] = "ImGui" defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" @@ -15508,7 +15508,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:3117" +defs["igEndComboPreview"][1]["location"] = "imgui_internal:3123" defs["igEndComboPreview"][1]["namespace"] = "ImGui" defs["igEndComboPreview"][1]["ov_cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["ret"] = "void" @@ -15524,7 +15524,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:896" +defs["igEndDisabled"][1]["location"] = "imgui:897" defs["igEndDisabled"][1]["namespace"] = "ImGui" defs["igEndDisabled"][1]["ov_cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["ret"] = "void" @@ -15540,7 +15540,7 @@ defs["igEndDisabledOverrideReenable"][1]["call_args"] = "()" defs["igEndDisabledOverrideReenable"][1]["cimguiname"] = "igEndDisabledOverrideReenable" defs["igEndDisabledOverrideReenable"][1]["defaults"] = {} defs["igEndDisabledOverrideReenable"][1]["funcname"] = "EndDisabledOverrideReenable" -defs["igEndDisabledOverrideReenable"][1]["location"] = "imgui_internal:3080" +defs["igEndDisabledOverrideReenable"][1]["location"] = "imgui_internal:3086" defs["igEndDisabledOverrideReenable"][1]["namespace"] = "ImGui" defs["igEndDisabledOverrideReenable"][1]["ov_cimguiname"] = "igEndDisabledOverrideReenable" defs["igEndDisabledOverrideReenable"][1]["ret"] = "void" @@ -15556,7 +15556,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:884" +defs["igEndDragDropSource"][1]["location"] = "imgui:885" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -15572,7 +15572,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:887" +defs["igEndDragDropTarget"][1]["location"] = "imgui:888" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -15588,7 +15588,7 @@ defs["igEndErrorTooltip"][1]["call_args"] = "()" defs["igEndErrorTooltip"][1]["cimguiname"] = "igEndErrorTooltip" defs["igEndErrorTooltip"][1]["defaults"] = {} defs["igEndErrorTooltip"][1]["funcname"] = "EndErrorTooltip" -defs["igEndErrorTooltip"][1]["location"] = "imgui_internal:3470" +defs["igEndErrorTooltip"][1]["location"] = "imgui_internal:3476" defs["igEndErrorTooltip"][1]["namespace"] = "ImGui" defs["igEndErrorTooltip"][1]["ov_cimguiname"] = "igEndErrorTooltip" defs["igEndErrorTooltip"][1]["ret"] = "void" @@ -15636,7 +15636,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:699" +defs["igEndListBox"][1]["location"] = "imgui:700" defs["igEndListBox"][1]["namespace"] = "ImGui" defs["igEndListBox"][1]["ov_cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["ret"] = "void" @@ -15652,7 +15652,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:725" +defs["igEndMainMenuBar"][1]["location"] = "imgui:726" defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" @@ -15668,7 +15668,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:727" +defs["igEndMenu"][1]["location"] = "imgui:728" defs["igEndMenu"][1]["namespace"] = "ImGui" defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" @@ -15684,7 +15684,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:723" +defs["igEndMenuBar"][1]["location"] = "imgui:724" defs["igEndMenuBar"][1]["namespace"] = "ImGui" defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" @@ -15700,7 +15700,7 @@ defs["igEndMultiSelect"][1]["call_args"] = "()" defs["igEndMultiSelect"][1]["cimguiname"] = "igEndMultiSelect" defs["igEndMultiSelect"][1]["defaults"] = {} defs["igEndMultiSelect"][1]["funcname"] = "EndMultiSelect" -defs["igEndMultiSelect"][1]["location"] = "imgui:688" +defs["igEndMultiSelect"][1]["location"] = "imgui:689" defs["igEndMultiSelect"][1]["namespace"] = "ImGui" defs["igEndMultiSelect"][1]["ov_cimguiname"] = "igEndMultiSelect" defs["igEndMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" @@ -15716,7 +15716,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:760" +defs["igEndPopup"][1]["location"] = "imgui:761" defs["igEndPopup"][1]["namespace"] = "ImGui" defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" @@ -15732,7 +15732,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:861" +defs["igEndTabBar"][1]["location"] = "imgui:862" defs["igEndTabBar"][1]["namespace"] = "ImGui" defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" @@ -15748,7 +15748,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:863" +defs["igEndTabItem"][1]["location"] = "imgui:864" defs["igEndTabItem"][1]["namespace"] = "ImGui" defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" @@ -15764,7 +15764,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:812" +defs["igEndTable"][1]["location"] = "imgui:813" defs["igEndTable"][1]["namespace"] = "ImGui" defs["igEndTable"][1]["ov_cimguiname"] = "igEndTable" defs["igEndTable"][1]["ret"] = "void" @@ -15780,7 +15780,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:736" +defs["igEndTooltip"][1]["location"] = "imgui:737" defs["igEndTooltip"][1]["namespace"] = "ImGui" defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" @@ -15796,7 +15796,7 @@ defs["igErrorCheckEndFrameFinalizeErrorTooltip"][1]["call_args"] = "()" defs["igErrorCheckEndFrameFinalizeErrorTooltip"][1]["cimguiname"] = "igErrorCheckEndFrameFinalizeErrorTooltip" defs["igErrorCheckEndFrameFinalizeErrorTooltip"][1]["defaults"] = {} defs["igErrorCheckEndFrameFinalizeErrorTooltip"][1]["funcname"] = "ErrorCheckEndFrameFinalizeErrorTooltip" -defs["igErrorCheckEndFrameFinalizeErrorTooltip"][1]["location"] = "imgui_internal:3468" +defs["igErrorCheckEndFrameFinalizeErrorTooltip"][1]["location"] = "imgui_internal:3474" defs["igErrorCheckEndFrameFinalizeErrorTooltip"][1]["namespace"] = "ImGui" defs["igErrorCheckEndFrameFinalizeErrorTooltip"][1]["ov_cimguiname"] = "igErrorCheckEndFrameFinalizeErrorTooltip" defs["igErrorCheckEndFrameFinalizeErrorTooltip"][1]["ret"] = "void" @@ -15812,7 +15812,7 @@ defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["call_args"] = defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["defaults"] = {} defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["funcname"] = "ErrorCheckUsingSetCursorPosToExtendParentBoundaries" -defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3467" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3473" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["namespace"] = "ImGui" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ov_cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ret"] = "void" @@ -15831,7 +15831,7 @@ defs["igErrorLog"][1]["call_args"] = "(msg)" defs["igErrorLog"][1]["cimguiname"] = "igErrorLog" defs["igErrorLog"][1]["defaults"] = {} defs["igErrorLog"][1]["funcname"] = "ErrorLog" -defs["igErrorLog"][1]["location"] = "imgui_internal:3463" +defs["igErrorLog"][1]["location"] = "imgui_internal:3469" defs["igErrorLog"][1]["namespace"] = "ImGui" defs["igErrorLog"][1]["ov_cimguiname"] = "igErrorLog" defs["igErrorLog"][1]["ret"] = "bool" @@ -15850,7 +15850,7 @@ defs["igErrorRecoveryStoreState"][1]["call_args"] = "(state_out)" defs["igErrorRecoveryStoreState"][1]["cimguiname"] = "igErrorRecoveryStoreState" defs["igErrorRecoveryStoreState"][1]["defaults"] = {} defs["igErrorRecoveryStoreState"][1]["funcname"] = "ErrorRecoveryStoreState" -defs["igErrorRecoveryStoreState"][1]["location"] = "imgui_internal:3464" +defs["igErrorRecoveryStoreState"][1]["location"] = "imgui_internal:3470" defs["igErrorRecoveryStoreState"][1]["namespace"] = "ImGui" defs["igErrorRecoveryStoreState"][1]["ov_cimguiname"] = "igErrorRecoveryStoreState" defs["igErrorRecoveryStoreState"][1]["ret"] = "void" @@ -15869,7 +15869,7 @@ defs["igErrorRecoveryTryToRecoverState"][1]["call_args"] = "(state_in)" defs["igErrorRecoveryTryToRecoverState"][1]["cimguiname"] = "igErrorRecoveryTryToRecoverState" defs["igErrorRecoveryTryToRecoverState"][1]["defaults"] = {} defs["igErrorRecoveryTryToRecoverState"][1]["funcname"] = "ErrorRecoveryTryToRecoverState" -defs["igErrorRecoveryTryToRecoverState"][1]["location"] = "imgui_internal:3465" +defs["igErrorRecoveryTryToRecoverState"][1]["location"] = "imgui_internal:3471" defs["igErrorRecoveryTryToRecoverState"][1]["namespace"] = "ImGui" defs["igErrorRecoveryTryToRecoverState"][1]["ov_cimguiname"] = "igErrorRecoveryTryToRecoverState" defs["igErrorRecoveryTryToRecoverState"][1]["ret"] = "void" @@ -15888,7 +15888,7 @@ defs["igErrorRecoveryTryToRecoverWindowState"][1]["call_args"] = "(state_in)" defs["igErrorRecoveryTryToRecoverWindowState"][1]["cimguiname"] = "igErrorRecoveryTryToRecoverWindowState" defs["igErrorRecoveryTryToRecoverWindowState"][1]["defaults"] = {} defs["igErrorRecoveryTryToRecoverWindowState"][1]["funcname"] = "ErrorRecoveryTryToRecoverWindowState" -defs["igErrorRecoveryTryToRecoverWindowState"][1]["location"] = "imgui_internal:3466" +defs["igErrorRecoveryTryToRecoverWindowState"][1]["location"] = "imgui_internal:3472" defs["igErrorRecoveryTryToRecoverWindowState"][1]["namespace"] = "ImGui" defs["igErrorRecoveryTryToRecoverWindowState"][1]["ov_cimguiname"] = "igErrorRecoveryTryToRecoverWindowState" defs["igErrorRecoveryTryToRecoverWindowState"][1]["ret"] = "void" @@ -15910,7 +15910,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:3102" +defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:3108" defs["igFindBestWindowPosForPopup"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopup"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopup"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopup" @@ -15948,7 +15948,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:3103" +defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:3109" defs["igFindBestWindowPosForPopupEx"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopupEx"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopupEx"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopupEx" @@ -15968,7 +15968,7 @@ defs["igFindBlockingModal"][1]["call_args"] = "(window)" defs["igFindBlockingModal"][1]["cimguiname"] = "igFindBlockingModal" defs["igFindBlockingModal"][1]["defaults"] = {} defs["igFindBlockingModal"][1]["funcname"] = "FindBlockingModal" -defs["igFindBlockingModal"][1]["location"] = "imgui_internal:3101" +defs["igFindBlockingModal"][1]["location"] = "imgui_internal:3107" defs["igFindBlockingModal"][1]["namespace"] = "ImGui" defs["igFindBlockingModal"][1]["ov_cimguiname"] = "igFindBlockingModal" defs["igFindBlockingModal"][1]["ret"] = "ImGuiWindow*" @@ -15987,7 +15987,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:2983" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:2989" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["namespace"] = "ImGui" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ov_cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ret"] = "ImGuiWindow*" @@ -16015,7 +16015,7 @@ defs["igFindHoveredWindowEx"][1]["call_args"] = "(pos,find_first_and_in_any_view defs["igFindHoveredWindowEx"][1]["cimguiname"] = "igFindHoveredWindowEx" defs["igFindHoveredWindowEx"][1]["defaults"] = {} defs["igFindHoveredWindowEx"][1]["funcname"] = "FindHoveredWindowEx" -defs["igFindHoveredWindowEx"][1]["location"] = "imgui_internal:3003" +defs["igFindHoveredWindowEx"][1]["location"] = "imgui_internal:3009" defs["igFindHoveredWindowEx"][1]["namespace"] = "ImGui" defs["igFindHoveredWindowEx"][1]["ov_cimguiname"] = "igFindHoveredWindowEx" defs["igFindHoveredWindowEx"][1]["ret"] = "void" @@ -16037,7 +16037,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:3276" +defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:3282" defs["igFindOrCreateColumns"][1]["namespace"] = "ImGui" defs["igFindOrCreateColumns"][1]["ov_cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["ret"] = "ImGuiOldColumns*" @@ -16060,7 +16060,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:3372" +defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:3378" defs["igFindRenderedTextEnd"][1]["namespace"] = "ImGui" defs["igFindRenderedTextEnd"][1]["ov_cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["ret"] = "const char*" @@ -16079,7 +16079,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:3022" +defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:3028" defs["igFindSettingsHandler"][1]["namespace"] = "ImGui" defs["igFindSettingsHandler"][1]["ov_cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["ret"] = "ImGuiSettingsHandler*" @@ -16098,7 +16098,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:2955" +defs["igFindWindowByID"][1]["location"] = "imgui_internal:2961" defs["igFindWindowByID"][1]["namespace"] = "ImGui" defs["igFindWindowByID"][1]["ov_cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["ret"] = "ImGuiWindow*" @@ -16117,7 +16117,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:2956" +defs["igFindWindowByName"][1]["location"] = "imgui_internal:2962" defs["igFindWindowByName"][1]["namespace"] = "ImGui" defs["igFindWindowByName"][1]["ov_cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["ret"] = "ImGuiWindow*" @@ -16136,7 +16136,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:2982" +defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:2988" defs["igFindWindowDisplayIndex"][1]["namespace"] = "ImGui" defs["igFindWindowDisplayIndex"][1]["ov_cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["ret"] = "int" @@ -16155,7 +16155,7 @@ defs["igFindWindowSettingsByID"][1]["call_args"] = "(id)" defs["igFindWindowSettingsByID"][1]["cimguiname"] = "igFindWindowSettingsByID" defs["igFindWindowSettingsByID"][1]["defaults"] = {} defs["igFindWindowSettingsByID"][1]["funcname"] = "FindWindowSettingsByID" -defs["igFindWindowSettingsByID"][1]["location"] = "imgui_internal:3026" +defs["igFindWindowSettingsByID"][1]["location"] = "imgui_internal:3032" defs["igFindWindowSettingsByID"][1]["namespace"] = "ImGui" defs["igFindWindowSettingsByID"][1]["ov_cimguiname"] = "igFindWindowSettingsByID" defs["igFindWindowSettingsByID"][1]["ret"] = "ImGuiWindowSettings*" @@ -16174,7 +16174,7 @@ defs["igFindWindowSettingsByWindow"][1]["call_args"] = "(window)" defs["igFindWindowSettingsByWindow"][1]["cimguiname"] = "igFindWindowSettingsByWindow" defs["igFindWindowSettingsByWindow"][1]["defaults"] = {} defs["igFindWindowSettingsByWindow"][1]["funcname"] = "FindWindowSettingsByWindow" -defs["igFindWindowSettingsByWindow"][1]["location"] = "imgui_internal:3027" +defs["igFindWindowSettingsByWindow"][1]["location"] = "imgui_internal:3033" defs["igFindWindowSettingsByWindow"][1]["namespace"] = "ImGui" defs["igFindWindowSettingsByWindow"][1]["ov_cimguiname"] = "igFindWindowSettingsByWindow" defs["igFindWindowSettingsByWindow"][1]["ret"] = "ImGuiWindowSettings*" @@ -16193,7 +16193,7 @@ defs["igFixupKeyChord"][1]["call_args"] = "(key_chord)" defs["igFixupKeyChord"][1]["cimguiname"] = "igFixupKeyChord" defs["igFixupKeyChord"][1]["defaults"] = {} defs["igFixupKeyChord"][1]["funcname"] = "FixupKeyChord" -defs["igFixupKeyChord"][1]["location"] = "imgui_internal:3154" +defs["igFixupKeyChord"][1]["location"] = "imgui_internal:3160" defs["igFixupKeyChord"][1]["namespace"] = "ImGui" defs["igFixupKeyChord"][1]["ov_cimguiname"] = "igFixupKeyChord" defs["igFixupKeyChord"][1]["ret"] = "ImGuiKeyChord" @@ -16209,7 +16209,7 @@ defs["igFocusItem"][1]["call_args"] = "()" defs["igFocusItem"][1]["cimguiname"] = "igFocusItem" defs["igFocusItem"][1]["defaults"] = {} defs["igFocusItem"][1]["funcname"] = "FocusItem" -defs["igFocusItem"][1]["location"] = "imgui_internal:3141" +defs["igFocusItem"][1]["location"] = "imgui_internal:3147" defs["igFocusItem"][1]["namespace"] = "ImGui" defs["igFocusItem"][1]["ov_cimguiname"] = "igFocusItem" defs["igFocusItem"][1]["ret"] = "void" @@ -16237,7 +16237,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:2977" +defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:2983" defs["igFocusTopMostWindowUnderOne"][1]["namespace"] = "ImGui" defs["igFocusTopMostWindowUnderOne"][1]["ov_cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["ret"] = "void" @@ -16260,7 +16260,7 @@ defs["igFocusWindow"][1]["cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["defaults"] = {} defs["igFocusWindow"][1]["defaults"]["flags"] = "0" defs["igFocusWindow"][1]["funcname"] = "FocusWindow" -defs["igFocusWindow"][1]["location"] = "imgui_internal:2976" +defs["igFocusWindow"][1]["location"] = "imgui_internal:2982" defs["igFocusWindow"][1]["namespace"] = "ImGui" defs["igFocusWindow"][1]["ov_cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["ret"] = "void" @@ -16279,7 +16279,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:3460" +defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3466" defs["igGcAwakeTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcAwakeTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["ret"] = "void" @@ -16295,7 +16295,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:3458" +defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3464" defs["igGcCompactTransientMiscBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientMiscBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["ret"] = "void" @@ -16314,7 +16314,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:3459" +defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3465" defs["igGcCompactTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["ret"] = "void" @@ -16330,7 +16330,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:3051" +defs["igGetActiveID"][1]["location"] = "imgui_internal:3057" defs["igGetActiveID"][1]["namespace"] = "ImGui" defs["igGetActiveID"][1]["ov_cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["ret"] = "ImGuiID" @@ -16355,7 +16355,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:1052" +defs["igGetAllocatorFunctions"][1]["location"] = "imgui:1053" defs["igGetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igGetAllocatorFunctions"][1]["ov_cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["ret"] = "void" @@ -16371,7 +16371,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:941" +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:942" defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList_Nil" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" @@ -16388,7 +16388,7 @@ defs["igGetBackgroundDrawList"][2]["call_args"] = "(viewport)" defs["igGetBackgroundDrawList"][2]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][2]["defaults"] = {} defs["igGetBackgroundDrawList"][2]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][2]["location"] = "imgui_internal:2992" +defs["igGetBackgroundDrawList"][2]["location"] = "imgui_internal:2998" defs["igGetBackgroundDrawList"][2]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][2]["ov_cimguiname"] = "igGetBackgroundDrawList_ViewportPtr" defs["igGetBackgroundDrawList"][2]["ret"] = "ImDrawList*" @@ -16408,7 +16408,7 @@ defs["igGetBoxSelectState"][1]["call_args"] = "(id)" defs["igGetBoxSelectState"][1]["cimguiname"] = "igGetBoxSelectState" defs["igGetBoxSelectState"][1]["defaults"] = {} defs["igGetBoxSelectState"][1]["funcname"] = "GetBoxSelectState" -defs["igGetBoxSelectState"][1]["location"] = "imgui_internal:3265" +defs["igGetBoxSelectState"][1]["location"] = "imgui_internal:3271" defs["igGetBoxSelectState"][1]["namespace"] = "ImGui" defs["igGetBoxSelectState"][1]["ov_cimguiname"] = "igGetBoxSelectState" defs["igGetBoxSelectState"][1]["ret"] = "ImGuiBoxSelectState*" @@ -16424,7 +16424,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:1024" +defs["igGetClipboardText"][1]["location"] = "imgui:1025" defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -16503,7 +16503,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:851" +defs["igGetColumnIndex"][1]["location"] = "imgui:852" defs["igGetColumnIndex"][1]["namespace"] = "ImGui" defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" @@ -16525,7 +16525,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:3278" +defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:3284" defs["igGetColumnNormFromOffset"][1]["namespace"] = "ImGui" defs["igGetColumnNormFromOffset"][1]["ov_cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["ret"] = "float" @@ -16545,7 +16545,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:854" +defs["igGetColumnOffset"][1]["location"] = "imgui:855" defs["igGetColumnOffset"][1]["namespace"] = "ImGui" defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" @@ -16567,7 +16567,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:3277" +defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:3283" defs["igGetColumnOffsetFromNorm"][1]["namespace"] = "ImGui" defs["igGetColumnOffsetFromNorm"][1]["ov_cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["ret"] = "float" @@ -16587,7 +16587,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:852" +defs["igGetColumnWidth"][1]["location"] = "imgui:853" defs["igGetColumnWidth"][1]["namespace"] = "ImGui" defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" @@ -16603,7 +16603,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:856" +defs["igGetColumnsCount"][1]["location"] = "imgui:857" defs["igGetColumnsCount"][1]["namespace"] = "ImGui" defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" @@ -16625,7 +16625,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:3275" +defs["igGetColumnsID"][1]["location"] = "imgui_internal:3281" defs["igGetColumnsID"][1]["namespace"] = "ImGui" defs["igGetColumnsID"][1]["ov_cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["ret"] = "ImGuiID" @@ -16677,7 +16677,7 @@ defs["igGetCurrentFocusScope"][1]["call_args"] = "()" defs["igGetCurrentFocusScope"][1]["cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["defaults"] = {} defs["igGetCurrentFocusScope"][1]["funcname"] = "GetCurrentFocusScope" -defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3239" +defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3245" defs["igGetCurrentFocusScope"][1]["namespace"] = "ImGui" defs["igGetCurrentFocusScope"][1]["ov_cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["ret"] = "ImGuiID" @@ -16693,7 +16693,7 @@ defs["igGetCurrentTabBar"][1]["call_args"] = "()" defs["igGetCurrentTabBar"][1]["cimguiname"] = "igGetCurrentTabBar" defs["igGetCurrentTabBar"][1]["defaults"] = {} defs["igGetCurrentTabBar"][1]["funcname"] = "GetCurrentTabBar" -defs["igGetCurrentTabBar"][1]["location"] = "imgui_internal:3337" +defs["igGetCurrentTabBar"][1]["location"] = "imgui_internal:3343" defs["igGetCurrentTabBar"][1]["namespace"] = "ImGui" defs["igGetCurrentTabBar"][1]["ov_cimguiname"] = "igGetCurrentTabBar" defs["igGetCurrentTabBar"][1]["ret"] = "ImGuiTabBar*" @@ -16709,7 +16709,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:3292" +defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3298" defs["igGetCurrentTable"][1]["namespace"] = "ImGui" defs["igGetCurrentTable"][1]["ov_cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["ret"] = "ImGuiTable*" @@ -16725,7 +16725,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:2954" +defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:2960" defs["igGetCurrentWindow"][1]["namespace"] = "ImGui" defs["igGetCurrentWindow"][1]["ov_cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["ret"] = "ImGuiWindow*" @@ -16741,7 +16741,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:2953" +defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:2959" defs["igGetCurrentWindowRead"][1]["namespace"] = "ImGui" defs["igGetCurrentWindowRead"][1]["ov_cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["ret"] = "ImGuiWindow*" @@ -16849,7 +16849,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:2990" +defs["igGetDefaultFont"][1]["location"] = "imgui_internal:2996" defs["igGetDefaultFont"][1]["namespace"] = "ImGui" defs["igGetDefaultFont"][1]["ov_cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["ret"] = "ImFont*" @@ -16865,7 +16865,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:888" +defs["igGetDragDropPayload"][1]["location"] = "imgui:889" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -16897,7 +16897,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:949" +defs["igGetDrawListSharedData"][1]["location"] = "imgui:950" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -16913,7 +16913,7 @@ defs["igGetFocusID"][1]["call_args"] = "()" defs["igGetFocusID"][1]["cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["defaults"] = {} defs["igGetFocusID"][1]["funcname"] = "GetFocusID" -defs["igGetFocusID"][1]["location"] = "imgui_internal:3052" +defs["igGetFocusID"][1]["location"] = "imgui_internal:3058" defs["igGetFocusID"][1]["namespace"] = "ImGui" defs["igGetFocusID"][1]["ov_cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["ret"] = "ImGuiID" @@ -16981,7 +16981,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:942" +defs["igGetForegroundDrawList"][1]["location"] = "imgui:943" defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList_Nil" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" @@ -16998,7 +16998,7 @@ defs["igGetForegroundDrawList"][2]["call_args"] = "(window)" defs["igGetForegroundDrawList"][2]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][2]["defaults"] = {} defs["igGetForegroundDrawList"][2]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:2991" +defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:2997" defs["igGetForegroundDrawList"][2]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][2]["ov_cimguiname"] = "igGetForegroundDrawList_WindowPtr" defs["igGetForegroundDrawList"][2]["ret"] = "ImDrawList*" @@ -17015,7 +17015,7 @@ defs["igGetForegroundDrawList"][3]["call_args"] = "(viewport)" defs["igGetForegroundDrawList"][3]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][3]["defaults"] = {} defs["igGetForegroundDrawList"][3]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][3]["location"] = "imgui_internal:2993" +defs["igGetForegroundDrawList"][3]["location"] = "imgui_internal:2999" defs["igGetForegroundDrawList"][3]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][3]["ov_cimguiname"] = "igGetForegroundDrawList_ViewportPtr" defs["igGetForegroundDrawList"][3]["ret"] = "ImDrawList*" @@ -17033,7 +17033,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:948" +defs["igGetFrameCount"][1]["location"] = "imgui:949" defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -17081,7 +17081,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:3056" +defs["igGetHoveredID"][1]["location"] = "imgui_internal:3062" defs["igGetHoveredID"][1]["namespace"] = "ImGui" defs["igGetHoveredID"][1]["ov_cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["ret"] = "ImGuiID" @@ -17182,7 +17182,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:3061" +defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:3067" defs["igGetIDWithSeed"][1]["namespace"] = "ImGui" defs["igGetIDWithSeed"][1]["ov_cimguiname"] = "igGetIDWithSeed_Str" defs["igGetIDWithSeed"][1]["ret"] = "ImGuiID" @@ -17202,7 +17202,7 @@ defs["igGetIDWithSeed"][2]["call_args"] = "(n,seed)" defs["igGetIDWithSeed"][2]["cimguiname"] = "igGetIDWithSeed" defs["igGetIDWithSeed"][2]["defaults"] = {} defs["igGetIDWithSeed"][2]["funcname"] = "GetIDWithSeed" -defs["igGetIDWithSeed"][2]["location"] = "imgui_internal:3062" +defs["igGetIDWithSeed"][2]["location"] = "imgui_internal:3068" defs["igGetIDWithSeed"][2]["namespace"] = "ImGui" defs["igGetIDWithSeed"][2]["ov_cimguiname"] = "igGetIDWithSeed_Int" defs["igGetIDWithSeed"][2]["ret"] = "ImGuiID" @@ -17239,7 +17239,7 @@ defs["igGetIOEx"][1]["call_args"] = "(ctx)" defs["igGetIOEx"][1]["cimguiname"] = "igGetIOEx" defs["igGetIOEx"][1]["defaults"] = {} defs["igGetIOEx"][1]["funcname"] = "GetIOEx" -defs["igGetIOEx"][1]["location"] = "imgui_internal:2952" +defs["igGetIOEx"][1]["location"] = "imgui_internal:2958" defs["igGetIOEx"][1]["namespace"] = "ImGui" defs["igGetIOEx"][1]["ov_cimguiname"] = "igGetIOEx" defs["igGetIOEx"][1]["ret"] = "ImGuiIO*" @@ -17259,7 +17259,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:3441" +defs["igGetInputTextState"][1]["location"] = "imgui_internal:3447" defs["igGetInputTextState"][1]["namespace"] = "ImGui" defs["igGetInputTextState"][1]["ov_cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["ret"] = "ImGuiInputTextState*" @@ -17275,7 +17275,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:3050" +defs["igGetItemFlags"][1]["location"] = "imgui_internal:3056" defs["igGetItemFlags"][1]["namespace"] = "ImGui" defs["igGetItemFlags"][1]["ov_cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["ret"] = "ImGuiItemFlags" @@ -17291,7 +17291,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:929" +defs["igGetItemID"][1]["location"] = "imgui:930" defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -17310,7 +17310,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:931" +defs["igGetItemRectMax"][1]["location"] = "imgui:932" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -17330,7 +17330,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:930" +defs["igGetItemRectMin"][1]["location"] = "imgui:931" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -17350,7 +17350,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:932" +defs["igGetItemRectSize"][1]["location"] = "imgui:933" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -17367,7 +17367,7 @@ defs["igGetItemStatusFlags"][1]["call_args"] = "()" defs["igGetItemStatusFlags"][1]["cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["defaults"] = {} defs["igGetItemStatusFlags"][1]["funcname"] = "GetItemStatusFlags" -defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:3049" +defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:3055" defs["igGetItemStatusFlags"][1]["namespace"] = "ImGui" defs["igGetItemStatusFlags"][1]["ov_cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["ret"] = "ImGuiItemStatusFlags" @@ -17386,7 +17386,7 @@ defs["igGetKeyChordName"][1]["call_args"] = "(key_chord)" defs["igGetKeyChordName"][1]["cimguiname"] = "igGetKeyChordName" defs["igGetKeyChordName"][1]["defaults"] = {} defs["igGetKeyChordName"][1]["funcname"] = "GetKeyChordName" -defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3166" +defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3172" defs["igGetKeyChordName"][1]["namespace"] = "ImGui" defs["igGetKeyChordName"][1]["ov_cimguiname"] = "igGetKeyChordName" defs["igGetKeyChordName"][1]["ret"] = "const char*" @@ -17408,7 +17408,7 @@ defs["igGetKeyData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyData"][1]["cimguiname"] = "igGetKeyData" defs["igGetKeyData"][1]["defaults"] = {} defs["igGetKeyData"][1]["funcname"] = "GetKeyData" -defs["igGetKeyData"][1]["location"] = "imgui_internal:3164" +defs["igGetKeyData"][1]["location"] = "imgui_internal:3170" defs["igGetKeyData"][1]["namespace"] = "ImGui" defs["igGetKeyData"][1]["ov_cimguiname"] = "igGetKeyData_ContextPtr" defs["igGetKeyData"][1]["ret"] = "ImGuiKeyData*" @@ -17425,7 +17425,7 @@ defs["igGetKeyData"][2]["call_args"] = "(key)" defs["igGetKeyData"][2]["cimguiname"] = "igGetKeyData" defs["igGetKeyData"][2]["defaults"] = {} defs["igGetKeyData"][2]["funcname"] = "GetKeyData" -defs["igGetKeyData"][2]["location"] = "imgui_internal:3165" +defs["igGetKeyData"][2]["location"] = "imgui_internal:3171" defs["igGetKeyData"][2]["namespace"] = "ImGui" defs["igGetKeyData"][2]["ov_cimguiname"] = "igGetKeyData_Key" defs["igGetKeyData"][2]["ret"] = "ImGuiKeyData*" @@ -17457,7 +17457,7 @@ defs["igGetKeyMagnitude2d"][1]["call_args"] = "(key_left,key_right,key_up,key_do defs["igGetKeyMagnitude2d"][1]["cimguiname"] = "igGetKeyMagnitude2d" defs["igGetKeyMagnitude2d"][1]["defaults"] = {} defs["igGetKeyMagnitude2d"][1]["funcname"] = "GetKeyMagnitude2d" -defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3169" +defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3175" defs["igGetKeyMagnitude2d"][1]["namespace"] = "ImGui" defs["igGetKeyMagnitude2d"][1]["nonUDT"] = 1 defs["igGetKeyMagnitude2d"][1]["ov_cimguiname"] = "igGetKeyMagnitude2d" @@ -17477,7 +17477,7 @@ defs["igGetKeyName"][1]["call_args"] = "(key)" defs["igGetKeyName"][1]["cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["defaults"] = {} defs["igGetKeyName"][1]["funcname"] = "GetKeyName" -defs["igGetKeyName"][1]["location"] = "imgui:972" +defs["igGetKeyName"][1]["location"] = "imgui:973" defs["igGetKeyName"][1]["namespace"] = "ImGui" defs["igGetKeyName"][1]["ov_cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["ret"] = "const char*" @@ -17496,7 +17496,7 @@ defs["igGetKeyOwner"][1]["call_args"] = "(key)" defs["igGetKeyOwner"][1]["cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["defaults"] = {} defs["igGetKeyOwner"][1]["funcname"] = "GetKeyOwner" -defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3188" +defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3194" defs["igGetKeyOwner"][1]["namespace"] = "ImGui" defs["igGetKeyOwner"][1]["ov_cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["ret"] = "ImGuiID" @@ -17518,7 +17518,7 @@ defs["igGetKeyOwnerData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyOwnerData"][1]["cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["defaults"] = {} defs["igGetKeyOwnerData"][1]["funcname"] = "GetKeyOwnerData" -defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3193" +defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3199" defs["igGetKeyOwnerData"][1]["namespace"] = "ImGui" defs["igGetKeyOwnerData"][1]["ov_cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["ret"] = "ImGuiKeyOwnerData*" @@ -17543,7 +17543,7 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui:971" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:972" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -17559,7 +17559,7 @@ defs["igGetMainViewport"][1]["call_args"] = "()" defs["igGetMainViewport"][1]["cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["defaults"] = {} defs["igGetMainViewport"][1]["funcname"] = "GetMainViewport" -defs["igGetMainViewport"][1]["location"] = "imgui:938" +defs["igGetMainViewport"][1]["location"] = "imgui:939" defs["igGetMainViewport"][1]["namespace"] = "ImGui" defs["igGetMainViewport"][1]["ov_cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["ret"] = "ImGuiViewport*" @@ -17578,7 +17578,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:1009" +defs["igGetMouseClickedCount"][1]["location"] = "imgui:1010" defs["igGetMouseClickedCount"][1]["namespace"] = "ImGui" defs["igGetMouseClickedCount"][1]["ov_cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["ret"] = "int" @@ -17594,7 +17594,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:1018" +defs["igGetMouseCursor"][1]["location"] = "imgui:1019" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -17621,7 +17621,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:1016" +defs["igGetMouseDragDelta"][1]["location"] = "imgui:1017" defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -17641,7 +17641,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:1013" +defs["igGetMousePos"][1]["location"] = "imgui:1014" defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -17661,7 +17661,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:1014" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:1015" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -17681,7 +17681,7 @@ defs["igGetMultiSelectState"][1]["call_args"] = "(id)" defs["igGetMultiSelectState"][1]["cimguiname"] = "igGetMultiSelectState" defs["igGetMultiSelectState"][1]["defaults"] = {} defs["igGetMultiSelectState"][1]["funcname"] = "GetMultiSelectState" -defs["igGetMultiSelectState"][1]["location"] = "imgui_internal:3266" +defs["igGetMultiSelectState"][1]["location"] = "imgui_internal:3272" defs["igGetMultiSelectState"][1]["namespace"] = "ImGui" defs["igGetMultiSelectState"][1]["ov_cimguiname"] = "igGetMultiSelectState" defs["igGetMultiSelectState"][1]["ret"] = "ImGuiMultiSelectState*" @@ -17700,7 +17700,7 @@ defs["igGetNavTweakPressedAmount"][1]["call_args"] = "(axis)" defs["igGetNavTweakPressedAmount"][1]["cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["defaults"] = {} defs["igGetNavTweakPressedAmount"][1]["funcname"] = "GetNavTweakPressedAmount" -defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3170" +defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3176" defs["igGetNavTweakPressedAmount"][1]["namespace"] = "ImGui" defs["igGetNavTweakPressedAmount"][1]["ov_cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["ret"] = "float" @@ -17739,7 +17739,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:3098" +defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:3104" defs["igGetPopupAllowedExtentRect"][1]["namespace"] = "ImGui" defs["igGetPopupAllowedExtentRect"][1]["nonUDT"] = 1 defs["igGetPopupAllowedExtentRect"][1]["ov_cimguiname"] = "igGetPopupAllowedExtentRect" @@ -17823,7 +17823,7 @@ defs["igGetShortcutRoutingData"][1]["call_args"] = "(key_chord)" defs["igGetShortcutRoutingData"][1]["cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["defaults"] = {} defs["igGetShortcutRoutingData"][1]["funcname"] = "GetShortcutRoutingData" -defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3227" +defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3233" defs["igGetShortcutRoutingData"][1]["namespace"] = "ImGui" defs["igGetShortcutRoutingData"][1]["ov_cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["ret"] = "ImGuiKeyRoutingData*" @@ -17839,7 +17839,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:952" +defs["igGetStateStorage"][1]["location"] = "imgui:953" defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -17875,7 +17875,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:950" +defs["igGetStyleColorName"][1]["location"] = "imgui:951" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -17914,7 +17914,7 @@ defs["igGetStyleVarInfo"][1]["call_args"] = "(idx)" defs["igGetStyleVarInfo"][1]["cimguiname"] = "igGetStyleVarInfo" defs["igGetStyleVarInfo"][1]["defaults"] = {} defs["igGetStyleVarInfo"][1]["funcname"] = "GetStyleVarInfo" -defs["igGetStyleVarInfo"][1]["location"] = "imgui_internal:3078" +defs["igGetStyleVarInfo"][1]["location"] = "imgui_internal:3084" defs["igGetStyleVarInfo"][1]["namespace"] = "ImGui" defs["igGetStyleVarInfo"][1]["ov_cimguiname"] = "igGetStyleVarInfo" defs["igGetStyleVarInfo"][1]["ret"] = "const ImGuiDataVarInfo*" @@ -17962,7 +17962,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:947" +defs["igGetTime"][1]["location"] = "imgui:948" defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -17978,7 +17978,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:3100" +defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3106" defs["igGetTopMostAndVisiblePopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostAndVisiblePopupModal"][1]["ov_cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["ret"] = "ImGuiWindow*" @@ -17994,7 +17994,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:3099" +defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:3105" defs["igGetTopMostPopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostPopupModal"][1]["ov_cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["ret"] = "ImGuiWindow*" @@ -18010,7 +18010,7 @@ defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" -defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:668" +defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:669" defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" @@ -18035,7 +18035,7 @@ defs["igGetTypematicRepeatRate"][1]["call_args"] = "(flags,repeat_delay,repeat_r defs["igGetTypematicRepeatRate"][1]["cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["defaults"] = {} defs["igGetTypematicRepeatRate"][1]["funcname"] = "GetTypematicRepeatRate" -defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3172" +defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3178" defs["igGetTypematicRepeatRate"][1]["namespace"] = "ImGui" defs["igGetTypematicRepeatRate"][1]["ov_cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["ret"] = "void" @@ -18055,7 +18055,7 @@ defs["igGetTypingSelectRequest"][1]["cimguiname"] = "igGetTypingSelectRequest" defs["igGetTypingSelectRequest"][1]["defaults"] = {} defs["igGetTypingSelectRequest"][1]["defaults"]["flags"] = "ImGuiTypingSelectFlags_None" defs["igGetTypingSelectRequest"][1]["funcname"] = "GetTypingSelectRequest" -defs["igGetTypingSelectRequest"][1]["location"] = "imgui_internal:3251" +defs["igGetTypingSelectRequest"][1]["location"] = "imgui_internal:3257" defs["igGetTypingSelectRequest"][1]["namespace"] = "ImGui" defs["igGetTypingSelectRequest"][1]["ov_cimguiname"] = "igGetTypingSelectRequest" defs["igGetTypingSelectRequest"][1]["ret"] = "ImGuiTypingSelectRequest*" @@ -18145,7 +18145,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:3401" +defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3407" defs["igGetWindowResizeBorderID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeBorderID"][1]["ov_cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["ret"] = "ImGuiID" @@ -18167,7 +18167,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:3400" +defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3406" defs["igGetWindowResizeCornerID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeCornerID"][1]["ov_cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["ret"] = "ImGuiID" @@ -18189,7 +18189,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:3399" +defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3405" defs["igGetWindowScrollbarID"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarID"][1]["ov_cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["ret"] = "ImGuiID" @@ -18214,7 +18214,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:3398" +defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3404" defs["igGetWindowScrollbarRect"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarRect"][1]["nonUDT"] = 1 defs["igGetWindowScrollbarRect"][1]["ov_cimguiname"] = "igGetWindowScrollbarRect" @@ -18270,7 +18270,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:442" +defs["igImAbs"][1]["location"] = "imgui_internal:446" defs["igImAbs"][1]["ov_cimguiname"] = "igImAbs_Int" defs["igImAbs"][1]["ret"] = "int" defs["igImAbs"][1]["signature"] = "(int)" @@ -18286,7 +18286,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:443" +defs["igImAbs"][2]["location"] = "imgui_internal:447" defs["igImAbs"][2]["ov_cimguiname"] = "igImAbs_Float" defs["igImAbs"][2]["ret"] = "float" defs["igImAbs"][2]["signature"] = "(float)" @@ -18302,7 +18302,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:444" +defs["igImAbs"][3]["location"] = "imgui_internal:448" defs["igImAbs"][3]["ov_cimguiname"] = "igImAbs_double" defs["igImAbs"][3]["ret"] = "double" defs["igImAbs"][3]["signature"] = "(double)" @@ -18325,7 +18325,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:353" +defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:357" defs["igImAlphaBlendColors"][1]["ov_cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["ret"] = "ImU32" defs["igImAlphaBlendColors"][1]["signature"] = "(ImU32,ImU32)" @@ -18358,7 +18358,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:489" +defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:493" defs["igImBezierCubicCalc"][1]["nonUDT"] = 1 defs["igImBezierCubicCalc"][1]["ov_cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["ret"] = "void" @@ -18395,7 +18395,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:490" +defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:494" defs["igImBezierCubicClosestPoint"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPoint"][1]["ov_cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["ret"] = "void" @@ -18432,7 +18432,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:491" +defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:495" defs["igImBezierCubicClosestPointCasteljau"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPointCasteljau"][1]["ov_cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["ret"] = "void" @@ -18463,7 +18463,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:492" +defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:496" defs["igImBezierQuadraticCalc"][1]["nonUDT"] = 1 defs["igImBezierQuadraticCalc"][1]["ov_cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["ret"] = "void" @@ -18485,7 +18485,7 @@ defs["igImBitArrayClearAllBits"][1]["call_args"] = "(arr,bitcount)" defs["igImBitArrayClearAllBits"][1]["cimguiname"] = "igImBitArrayClearAllBits" defs["igImBitArrayClearAllBits"][1]["defaults"] = {} defs["igImBitArrayClearAllBits"][1]["funcname"] = "ImBitArrayClearAllBits" -defs["igImBitArrayClearAllBits"][1]["location"] = "imgui_internal:562" +defs["igImBitArrayClearAllBits"][1]["location"] = "imgui_internal:566" defs["igImBitArrayClearAllBits"][1]["ov_cimguiname"] = "igImBitArrayClearAllBits" defs["igImBitArrayClearAllBits"][1]["ret"] = "void" defs["igImBitArrayClearAllBits"][1]["signature"] = "(ImU32*,int)" @@ -18506,7 +18506,7 @@ defs["igImBitArrayClearBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayClearBit"][1]["cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["defaults"] = {} defs["igImBitArrayClearBit"][1]["funcname"] = "ImBitArrayClearBit" -defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:564" +defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:568" defs["igImBitArrayClearBit"][1]["ov_cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["ret"] = "void" defs["igImBitArrayClearBit"][1]["signature"] = "(ImU32*,int)" @@ -18524,7 +18524,7 @@ defs["igImBitArrayGetStorageSizeInBytes"][1]["call_args"] = "(bitcount)" defs["igImBitArrayGetStorageSizeInBytes"][1]["cimguiname"] = "igImBitArrayGetStorageSizeInBytes" defs["igImBitArrayGetStorageSizeInBytes"][1]["defaults"] = {} defs["igImBitArrayGetStorageSizeInBytes"][1]["funcname"] = "ImBitArrayGetStorageSizeInBytes" -defs["igImBitArrayGetStorageSizeInBytes"][1]["location"] = "imgui_internal:561" +defs["igImBitArrayGetStorageSizeInBytes"][1]["location"] = "imgui_internal:565" defs["igImBitArrayGetStorageSizeInBytes"][1]["ov_cimguiname"] = "igImBitArrayGetStorageSizeInBytes" defs["igImBitArrayGetStorageSizeInBytes"][1]["ret"] = "size_t" defs["igImBitArrayGetStorageSizeInBytes"][1]["signature"] = "(int)" @@ -18545,7 +18545,7 @@ defs["igImBitArraySetBit"][1]["call_args"] = "(arr,n)" defs["igImBitArraySetBit"][1]["cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["defaults"] = {} defs["igImBitArraySetBit"][1]["funcname"] = "ImBitArraySetBit" -defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:565" +defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:569" defs["igImBitArraySetBit"][1]["ov_cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["ret"] = "void" defs["igImBitArraySetBit"][1]["signature"] = "(ImU32*,int)" @@ -18569,7 +18569,7 @@ defs["igImBitArraySetBitRange"][1]["call_args"] = "(arr,n,n2)" defs["igImBitArraySetBitRange"][1]["cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["defaults"] = {} defs["igImBitArraySetBitRange"][1]["funcname"] = "ImBitArraySetBitRange" -defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:566" +defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:570" defs["igImBitArraySetBitRange"][1]["ov_cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["ret"] = "void" defs["igImBitArraySetBitRange"][1]["signature"] = "(ImU32*,int,int)" @@ -18590,7 +18590,7 @@ defs["igImBitArrayTestBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayTestBit"][1]["cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["defaults"] = {} defs["igImBitArrayTestBit"][1]["funcname"] = "ImBitArrayTestBit" -defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:563" +defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:567" defs["igImBitArrayTestBit"][1]["ov_cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["ret"] = "bool" defs["igImBitArrayTestBit"][1]["signature"] = "(const ImU32*,int)" @@ -18608,7 +18608,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:375" +defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:379" defs["igImCharIsBlankA"][1]["ov_cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["ret"] = "bool" defs["igImCharIsBlankA"][1]["signature"] = "(char)" @@ -18626,7 +18626,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:376" +defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:380" defs["igImCharIsBlankW"][1]["ov_cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["ret"] = "bool" defs["igImCharIsBlankW"][1]["signature"] = "(unsigned int)" @@ -18644,7 +18644,7 @@ defs["igImCharIsXdigitA"][1]["call_args"] = "(c)" defs["igImCharIsXdigitA"][1]["cimguiname"] = "igImCharIsXdigitA" defs["igImCharIsXdigitA"][1]["defaults"] = {} defs["igImCharIsXdigitA"][1]["funcname"] = "ImCharIsXdigitA" -defs["igImCharIsXdigitA"][1]["location"] = "imgui_internal:377" +defs["igImCharIsXdigitA"][1]["location"] = "imgui_internal:381" defs["igImCharIsXdigitA"][1]["ov_cimguiname"] = "igImCharIsXdigitA" defs["igImCharIsXdigitA"][1]["ret"] = "bool" defs["igImCharIsXdigitA"][1]["signature"] = "(char)" @@ -18671,7 +18671,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:466" +defs["igImClamp"][1]["location"] = "imgui_internal:470" defs["igImClamp"][1]["nonUDT"] = 1 defs["igImClamp"][1]["ov_cimguiname"] = "igImClamp" defs["igImClamp"][1]["ret"] = "void" @@ -18693,7 +18693,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:479" +defs["igImDot"][1]["location"] = "imgui_internal:483" defs["igImDot"][1]["ov_cimguiname"] = "igImDot" defs["igImDot"][1]["ret"] = "float" defs["igImDot"][1]["signature"] = "(const ImVec2,const ImVec2)" @@ -18717,7 +18717,7 @@ defs["igImExponentialMovingAverage"][1]["call_args"] = "(avg,sample,n)" defs["igImExponentialMovingAverage"][1]["cimguiname"] = "igImExponentialMovingAverage" defs["igImExponentialMovingAverage"][1]["defaults"] = {} defs["igImExponentialMovingAverage"][1]["funcname"] = "ImExponentialMovingAverage" -defs["igImExponentialMovingAverage"][1]["location"] = "imgui_internal:485" +defs["igImExponentialMovingAverage"][1]["location"] = "imgui_internal:489" defs["igImExponentialMovingAverage"][1]["ov_cimguiname"] = "igImExponentialMovingAverage" defs["igImExponentialMovingAverage"][1]["ret"] = "float" defs["igImExponentialMovingAverage"][1]["signature"] = "(float,float,int)" @@ -18735,7 +18735,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:416" +defs["igImFileClose"][1]["location"] = "imgui_internal:420" defs["igImFileClose"][1]["ov_cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["ret"] = "bool" defs["igImFileClose"][1]["signature"] = "(ImFileHandle)" @@ -18753,7 +18753,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:417" +defs["igImFileGetSize"][1]["location"] = "imgui_internal:421" defs["igImFileGetSize"][1]["ov_cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["ret"] = "ImU64" defs["igImFileGetSize"][1]["signature"] = "(ImFileHandle)" @@ -18782,7 +18782,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:423" +defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:427" defs["igImFileLoadToMemory"][1]["ov_cimguiname"] = "igImFileLoadToMemory" defs["igImFileLoadToMemory"][1]["ret"] = "void*" defs["igImFileLoadToMemory"][1]["signature"] = "(const char*,const char*,size_t*,int)" @@ -18803,7 +18803,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:415" +defs["igImFileOpen"][1]["location"] = "imgui_internal:419" defs["igImFileOpen"][1]["ov_cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["ret"] = "ImFileHandle" defs["igImFileOpen"][1]["signature"] = "(const char*,const char*)" @@ -18830,7 +18830,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:418" +defs["igImFileRead"][1]["location"] = "imgui_internal:422" defs["igImFileRead"][1]["ov_cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["ret"] = "ImU64" defs["igImFileRead"][1]["signature"] = "(void*,ImU64,ImU64,ImFileHandle)" @@ -18857,7 +18857,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:419" +defs["igImFileWrite"][1]["location"] = "imgui_internal:423" defs["igImFileWrite"][1]["ov_cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["ret"] = "ImU64" defs["igImFileWrite"][1]["signature"] = "(const void*,ImU64,ImU64,ImFileHandle)" @@ -18875,7 +18875,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:476" +defs["igImFloor"][1]["location"] = "imgui_internal:480" defs["igImFloor"][1]["ov_cimguiname"] = "igImFloor_Float" defs["igImFloor"][1]["ret"] = "float" defs["igImFloor"][1]["signature"] = "(float)" @@ -18894,7 +18894,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:477" +defs["igImFloor"][2]["location"] = "imgui_internal:481" defs["igImFloor"][2]["nonUDT"] = 1 defs["igImFloor"][2]["ov_cimguiname"] = "igImFloor_Vec2" defs["igImFloor"][2]["ret"] = "void" @@ -18914,7 +18914,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:3541" +defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3548" defs["igImFontAtlasBuildFinish"][1]["ov_cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["ret"] = "void" defs["igImFontAtlasBuildFinish"][1]["signature"] = "(ImFontAtlas*)" @@ -18932,7 +18932,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:3538" +defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3545" defs["igImFontAtlasBuildInit"][1]["ov_cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["ret"] = "void" defs["igImFontAtlasBuildInit"][1]["signature"] = "(ImFontAtlas*)" @@ -18953,7 +18953,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:3544" +defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:3551" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["signature"] = "(unsigned char[256],float)" @@ -18989,7 +18989,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:3545" +defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:3552" 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)" @@ -19010,7 +19010,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:3540" +defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3547" defs["igImFontAtlasBuildPackCustomRects"][1]["ov_cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["ret"] = "void" defs["igImFontAtlasBuildPackCustomRects"][1]["signature"] = "(ImFontAtlas*,void*)" @@ -19049,7 +19049,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:3543" +defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3550" 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)" @@ -19088,7 +19088,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:3542" +defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3549" 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)" @@ -19118,7 +19118,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:3539" +defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3546" defs["igImFontAtlasBuildSetupFont"][1]["ov_cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["ret"] = "void" defs["igImFontAtlasBuildSetupFont"][1]["signature"] = "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)" @@ -19133,7 +19133,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:3535" +defs["igImFontAtlasGetBuilderForStbTruetype"][1]["location"] = "imgui_internal:3542" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ov_cimguiname"] = "igImFontAtlasGetBuilderForStbTruetype" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ret"] = "const ImFontBuilderIO*" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["signature"] = "()" @@ -19151,7 +19151,7 @@ defs["igImFontAtlasUpdateConfigDataPointers"][1]["call_args"] = "(atlas)" defs["igImFontAtlasUpdateConfigDataPointers"][1]["cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" defs["igImFontAtlasUpdateConfigDataPointers"][1]["defaults"] = {} defs["igImFontAtlasUpdateConfigDataPointers"][1]["funcname"] = "ImFontAtlasUpdateConfigDataPointers" -defs["igImFontAtlasUpdateConfigDataPointers"][1]["location"] = "imgui_internal:3537" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["location"] = "imgui_internal:3544" defs["igImFontAtlasUpdateConfigDataPointers"][1]["ov_cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" defs["igImFontAtlasUpdateConfigDataPointers"][1]["ret"] = "void" defs["igImFontAtlasUpdateConfigDataPointers"][1]["signature"] = "(ImFontAtlas*)" @@ -19179,7 +19179,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:381" +defs["igImFormatString"][1]["location"] = "imgui_internal:385" defs["igImFormatString"][1]["ov_cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["ret"] = "int" defs["igImFormatString"][1]["signature"] = "(char*,size_t,const char*,...)" @@ -19207,7 +19207,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:383" +defs["igImFormatStringToTempBuffer"][1]["location"] = "imgui_internal:387" defs["igImFormatStringToTempBuffer"][1]["ov_cimguiname"] = "igImFormatStringToTempBuffer" defs["igImFormatStringToTempBuffer"][1]["ret"] = "void" defs["igImFormatStringToTempBuffer"][1]["signature"] = "(const char**,const char**,const char*,...)" @@ -19234,7 +19234,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:384" +defs["igImFormatStringToTempBufferV"][1]["location"] = "imgui_internal:388" defs["igImFormatStringToTempBufferV"][1]["ov_cimguiname"] = "igImFormatStringToTempBufferV" defs["igImFormatStringToTempBufferV"][1]["ret"] = "void" defs["igImFormatStringToTempBufferV"][1]["signature"] = "(const char**,const char**,const char*,va_list)" @@ -19261,7 +19261,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:382" +defs["igImFormatStringV"][1]["location"] = "imgui_internal:386" defs["igImFormatStringV"][1]["ov_cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["ret"] = "int" defs["igImFormatStringV"][1]["signature"] = "(char*,size_t,const char*,va_list)" @@ -19286,7 +19286,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:344" +defs["igImHashData"][1]["location"] = "imgui_internal:348" defs["igImHashData"][1]["ov_cimguiname"] = "igImHashData" defs["igImHashData"][1]["ret"] = "ImGuiID" defs["igImHashData"][1]["signature"] = "(const void*,size_t,ImGuiID)" @@ -19312,7 +19312,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:345" +defs["igImHashStr"][1]["location"] = "imgui_internal:349" defs["igImHashStr"][1]["ov_cimguiname"] = "igImHashStr" defs["igImHashStr"][1]["ret"] = "ImGuiID" defs["igImHashStr"][1]["signature"] = "(const char*,size_t,ImGuiID)" @@ -19333,7 +19333,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:473" +defs["igImInvLength"][1]["location"] = "imgui_internal:477" defs["igImInvLength"][1]["ov_cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["ret"] = "float" defs["igImInvLength"][1]["signature"] = "(const ImVec2,float)" @@ -19351,7 +19351,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:484" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["location"] = "imgui_internal:488" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ov_cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ret"] = "bool" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["signature"] = "(float)" @@ -19369,7 +19369,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:356" +defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:360" defs["igImIsPowerOfTwo"][1]["ov_cimguiname"] = "igImIsPowerOfTwo_Int" defs["igImIsPowerOfTwo"][1]["ret"] = "bool" defs["igImIsPowerOfTwo"][1]["signature"] = "(int)" @@ -19385,7 +19385,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:357" +defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:361" defs["igImIsPowerOfTwo"][2]["ov_cimguiname"] = "igImIsPowerOfTwo_U64" defs["igImIsPowerOfTwo"][2]["ret"] = "bool" defs["igImIsPowerOfTwo"][2]["signature"] = "(ImU64)" @@ -19404,7 +19404,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:471" +defs["igImLengthSqr"][1]["location"] = "imgui_internal:475" defs["igImLengthSqr"][1]["ov_cimguiname"] = "igImLengthSqr_Vec2" defs["igImLengthSqr"][1]["ret"] = "float" defs["igImLengthSqr"][1]["signature"] = "(const ImVec2)" @@ -19420,7 +19420,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:472" +defs["igImLengthSqr"][2]["location"] = "imgui_internal:476" defs["igImLengthSqr"][2]["ov_cimguiname"] = "igImLengthSqr_Vec4" defs["igImLengthSqr"][2]["ret"] = "float" defs["igImLengthSqr"][2]["signature"] = "(const ImVec4)" @@ -19448,7 +19448,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:467" +defs["igImLerp"][1]["location"] = "imgui_internal:471" defs["igImLerp"][1]["nonUDT"] = 1 defs["igImLerp"][1]["ov_cimguiname"] = "igImLerp_Vec2Float" defs["igImLerp"][1]["ret"] = "void" @@ -19474,7 +19474,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:468" +defs["igImLerp"][2]["location"] = "imgui_internal:472" defs["igImLerp"][2]["nonUDT"] = 1 defs["igImLerp"][2]["ov_cimguiname"] = "igImLerp_Vec2Vec2" defs["igImLerp"][2]["ret"] = "void" @@ -19500,7 +19500,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:469" +defs["igImLerp"][3]["location"] = "imgui_internal:473" defs["igImLerp"][3]["nonUDT"] = 1 defs["igImLerp"][3]["ov_cimguiname"] = "igImLerp_Vec4" defs["igImLerp"][3]["ret"] = "void" @@ -19530,7 +19530,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:493" +defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:497" defs["igImLineClosestPoint"][1]["nonUDT"] = 1 defs["igImLineClosestPoint"][1]["ov_cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["ret"] = "void" @@ -19561,7 +19561,7 @@ defs["igImLinearRemapClamp"][1]["call_args"] = "(s0,s1,d0,d1,x)" defs["igImLinearRemapClamp"][1]["cimguiname"] = "igImLinearRemapClamp" defs["igImLinearRemapClamp"][1]["defaults"] = {} defs["igImLinearRemapClamp"][1]["funcname"] = "ImLinearRemapClamp" -defs["igImLinearRemapClamp"][1]["location"] = "imgui_internal:482" +defs["igImLinearRemapClamp"][1]["location"] = "imgui_internal:486" defs["igImLinearRemapClamp"][1]["ov_cimguiname"] = "igImLinearRemapClamp" defs["igImLinearRemapClamp"][1]["ret"] = "float" defs["igImLinearRemapClamp"][1]["signature"] = "(float,float,float,float,float)" @@ -19585,7 +19585,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:481" +defs["igImLinearSweep"][1]["location"] = "imgui_internal:485" defs["igImLinearSweep"][1]["ov_cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["ret"] = "float" defs["igImLinearSweep"][1]["signature"] = "(float,float,float)" @@ -19603,7 +19603,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:440" +defs["igImLog"][1]["location"] = "imgui_internal:444" defs["igImLog"][1]["ov_cimguiname"] = "igImLog_Float" defs["igImLog"][1]["ret"] = "float" defs["igImLog"][1]["signature"] = "(float)" @@ -19619,7 +19619,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:441" +defs["igImLog"][2]["location"] = "imgui_internal:445" defs["igImLog"][2]["ov_cimguiname"] = "igImLog_double" defs["igImLog"][2]["ret"] = "double" defs["igImLog"][2]["signature"] = "(double)" @@ -19644,7 +19644,7 @@ defs["igImLowerBound"][1]["call_args"] = "(in_begin,in_end,key)" defs["igImLowerBound"][1]["cimguiname"] = "igImLowerBound" defs["igImLowerBound"][1]["defaults"] = {} defs["igImLowerBound"][1]["funcname"] = "ImLowerBound" -defs["igImLowerBound"][1]["location"] = "imgui_internal:732" +defs["igImLowerBound"][1]["location"] = "imgui_internal:736" defs["igImLowerBound"][1]["ov_cimguiname"] = "igImLowerBound" defs["igImLowerBound"][1]["ret"] = "ImGuiStoragePair*" defs["igImLowerBound"][1]["signature"] = "(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)" @@ -19668,7 +19668,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:465" +defs["igImMax"][1]["location"] = "imgui_internal:469" defs["igImMax"][1]["nonUDT"] = 1 defs["igImMax"][1]["ov_cimguiname"] = "igImMax" defs["igImMax"][1]["ret"] = "void" @@ -19693,7 +19693,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:464" +defs["igImMin"][1]["location"] = "imgui_internal:468" defs["igImMin"][1]["nonUDT"] = 1 defs["igImMin"][1]["ov_cimguiname"] = "igImMin" defs["igImMin"][1]["ret"] = "void" @@ -19715,7 +19715,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:478" +defs["igImModPositive"][1]["location"] = "imgui_internal:482" defs["igImModPositive"][1]["ov_cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["ret"] = "int" defs["igImModPositive"][1]["signature"] = "(int,int)" @@ -19739,7 +19739,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:483" +defs["igImMul"][1]["location"] = "imgui_internal:487" defs["igImMul"][1]["nonUDT"] = 1 defs["igImMul"][1]["ov_cimguiname"] = "igImMul" defs["igImMul"][1]["ret"] = "void" @@ -19758,7 +19758,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:386" +defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:390" defs["igImParseFormatFindEnd"][1]["ov_cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["ret"] = "const char*" defs["igImParseFormatFindEnd"][1]["signature"] = "(const char*)" @@ -19776,7 +19776,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:385" +defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:389" defs["igImParseFormatFindStart"][1]["ov_cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["ret"] = "const char*" defs["igImParseFormatFindStart"][1]["signature"] = "(const char*)" @@ -19797,7 +19797,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:390" +defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:394" defs["igImParseFormatPrecision"][1]["ov_cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["ret"] = "int" defs["igImParseFormatPrecision"][1]["signature"] = "(const char*,int)" @@ -19821,7 +19821,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:388" +defs["igImParseFormatSanitizeForPrinting"][1]["location"] = "imgui_internal:392" defs["igImParseFormatSanitizeForPrinting"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForPrinting" defs["igImParseFormatSanitizeForPrinting"][1]["ret"] = "void" defs["igImParseFormatSanitizeForPrinting"][1]["signature"] = "(const char*,char*,size_t)" @@ -19845,7 +19845,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:389" +defs["igImParseFormatSanitizeForScanning"][1]["location"] = "imgui_internal:393" defs["igImParseFormatSanitizeForScanning"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForScanning" defs["igImParseFormatSanitizeForScanning"][1]["ret"] = "const char*" defs["igImParseFormatSanitizeForScanning"][1]["signature"] = "(const char*,char*,size_t)" @@ -19869,7 +19869,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:387" +defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:391" defs["igImParseFormatTrimDecorations"][1]["ov_cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["ret"] = "const char*" defs["igImParseFormatTrimDecorations"][1]["signature"] = "(const char*,char*,size_t)" @@ -19890,7 +19890,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:438" +defs["igImPow"][1]["location"] = "imgui_internal:442" defs["igImPow"][1]["ov_cimguiname"] = "igImPow_Float" defs["igImPow"][1]["ret"] = "float" defs["igImPow"][1]["signature"] = "(float,float)" @@ -19909,7 +19909,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:439" +defs["igImPow"][2]["location"] = "imgui_internal:443" defs["igImPow"][2]["ov_cimguiname"] = "igImPow_double" defs["igImPow"][2]["ret"] = "double" defs["igImPow"][2]["signature"] = "(double,double)" @@ -19939,7 +19939,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:349" +defs["igImQsort"][1]["location"] = "imgui_internal:353" 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*))" @@ -19966,7 +19966,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:480" +defs["igImRotate"][1]["location"] = "imgui_internal:484" defs["igImRotate"][1]["nonUDT"] = 1 defs["igImRotate"][1]["ov_cimguiname"] = "igImRotate" defs["igImRotate"][1]["ret"] = "void" @@ -19985,7 +19985,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:450" +defs["igImRsqrt"][1]["location"] = "imgui_internal:454" defs["igImRsqrt"][1]["ov_cimguiname"] = "igImRsqrt_Float" defs["igImRsqrt"][1]["ret"] = "float" defs["igImRsqrt"][1]["signature"] = "(float)" @@ -20001,7 +20001,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:452" +defs["igImRsqrt"][2]["location"] = "imgui_internal:456" defs["igImRsqrt"][2]["ov_cimguiname"] = "igImRsqrt_double" defs["igImRsqrt"][2]["ret"] = "double" defs["igImRsqrt"][2]["signature"] = "(double)" @@ -20020,7 +20020,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:470" +defs["igImSaturate"][1]["location"] = "imgui_internal:474" defs["igImSaturate"][1]["ov_cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["ret"] = "float" defs["igImSaturate"][1]["signature"] = "(float)" @@ -20038,7 +20038,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:445" +defs["igImSign"][1]["location"] = "imgui_internal:449" defs["igImSign"][1]["ov_cimguiname"] = "igImSign_Float" defs["igImSign"][1]["ret"] = "float" defs["igImSign"][1]["signature"] = "(float)" @@ -20054,7 +20054,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:446" +defs["igImSign"][2]["location"] = "imgui_internal:450" defs["igImSign"][2]["ov_cimguiname"] = "igImSign_double" defs["igImSign"][2]["ret"] = "double" defs["igImSign"][2]["signature"] = "(double)" @@ -20073,7 +20073,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:370" +defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:374" defs["igImStrSkipBlank"][1]["ov_cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["ret"] = "const char*" defs["igImStrSkipBlank"][1]["signature"] = "(const char*)" @@ -20091,7 +20091,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:369" +defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:373" defs["igImStrTrimBlanks"][1]["ov_cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["ret"] = "void" defs["igImStrTrimBlanks"][1]["signature"] = "(char*)" @@ -20112,7 +20112,7 @@ defs["igImStrbol"][1]["call_args"] = "(buf_mid_line,buf_begin)" defs["igImStrbol"][1]["cimguiname"] = "igImStrbol" defs["igImStrbol"][1]["defaults"] = {} defs["igImStrbol"][1]["funcname"] = "ImStrbol" -defs["igImStrbol"][1]["location"] = "imgui_internal:372" +defs["igImStrbol"][1]["location"] = "imgui_internal:376" defs["igImStrbol"][1]["ov_cimguiname"] = "igImStrbol" defs["igImStrbol"][1]["ret"] = "const char*" defs["igImStrbol"][1]["signature"] = "(const char*,const char*)" @@ -20136,7 +20136,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:366" +defs["igImStrchrRange"][1]["location"] = "imgui_internal:370" defs["igImStrchrRange"][1]["ov_cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["ret"] = "const char*" defs["igImStrchrRange"][1]["signature"] = "(const char*,const char*,char)" @@ -20154,7 +20154,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:364" +defs["igImStrdup"][1]["location"] = "imgui_internal:368" defs["igImStrdup"][1]["ov_cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["ret"] = "char*" defs["igImStrdup"][1]["signature"] = "(const char*)" @@ -20178,7 +20178,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:365" +defs["igImStrdupcpy"][1]["location"] = "imgui_internal:369" defs["igImStrdupcpy"][1]["ov_cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["ret"] = "char*" defs["igImStrdupcpy"][1]["signature"] = "(char*,size_t*,const char*)" @@ -20199,7 +20199,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:367" +defs["igImStreolRange"][1]["location"] = "imgui_internal:371" defs["igImStreolRange"][1]["ov_cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["ret"] = "const char*" defs["igImStreolRange"][1]["signature"] = "(const char*,const char*)" @@ -20220,7 +20220,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:361" +defs["igImStricmp"][1]["location"] = "imgui_internal:365" defs["igImStricmp"][1]["ov_cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["ret"] = "int" defs["igImStricmp"][1]["signature"] = "(const char*,const char*)" @@ -20247,7 +20247,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:368" +defs["igImStristr"][1]["location"] = "imgui_internal:372" defs["igImStristr"][1]["ov_cimguiname"] = "igImStristr" defs["igImStristr"][1]["ret"] = "const char*" defs["igImStristr"][1]["signature"] = "(const char*,const char*,const char*,const char*)" @@ -20265,7 +20265,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:371" +defs["igImStrlenW"][1]["location"] = "imgui_internal:375" defs["igImStrlenW"][1]["ov_cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["ret"] = "int" defs["igImStrlenW"][1]["signature"] = "(const ImWchar*)" @@ -20289,7 +20289,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:363" +defs["igImStrncpy"][1]["location"] = "imgui_internal:367" defs["igImStrncpy"][1]["ov_cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["ret"] = "void" defs["igImStrncpy"][1]["signature"] = "(char*,const char*,size_t)" @@ -20313,7 +20313,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:362" +defs["igImStrnicmp"][1]["location"] = "imgui_internal:366" defs["igImStrnicmp"][1]["ov_cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["ret"] = "int" defs["igImStrnicmp"][1]["signature"] = "(const char*,const char*,size_t)" @@ -20337,7 +20337,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:395" +defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:399" defs["igImTextCharFromUtf8"][1]["ov_cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["ret"] = "int" defs["igImTextCharFromUtf8"][1]["signature"] = "(unsigned int*,const char*,const char*)" @@ -20358,7 +20358,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:393" +defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:397" defs["igImTextCharToUtf8"][1]["ov_cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["ret"] = "const char*" defs["igImTextCharToUtf8"][1]["signature"] = "(char[5],unsigned int)" @@ -20379,7 +20379,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:397" +defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:401" defs["igImTextCountCharsFromUtf8"][1]["ov_cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["ret"] = "int" defs["igImTextCountCharsFromUtf8"][1]["signature"] = "(const char*,const char*)" @@ -20400,7 +20400,7 @@ defs["igImTextCountLines"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountLines"][1]["cimguiname"] = "igImTextCountLines" defs["igImTextCountLines"][1]["defaults"] = {} defs["igImTextCountLines"][1]["funcname"] = "ImTextCountLines" -defs["igImTextCountLines"][1]["location"] = "imgui_internal:401" +defs["igImTextCountLines"][1]["location"] = "imgui_internal:405" defs["igImTextCountLines"][1]["ov_cimguiname"] = "igImTextCountLines" defs["igImTextCountLines"][1]["ret"] = "int" defs["igImTextCountLines"][1]["signature"] = "(const char*,const char*)" @@ -20421,7 +20421,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:398" +defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:402" defs["igImTextCountUtf8BytesFromChar"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromChar"][1]["signature"] = "(const char*,const char*)" @@ -20442,7 +20442,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:399" +defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:403" defs["igImTextCountUtf8BytesFromStr"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromStr"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -20463,7 +20463,7 @@ defs["igImTextFindPreviousUtf8Codepoint"][1]["call_args"] = "(in_text_start,in_t defs["igImTextFindPreviousUtf8Codepoint"][1]["cimguiname"] = "igImTextFindPreviousUtf8Codepoint" defs["igImTextFindPreviousUtf8Codepoint"][1]["defaults"] = {} defs["igImTextFindPreviousUtf8Codepoint"][1]["funcname"] = "ImTextFindPreviousUtf8Codepoint" -defs["igImTextFindPreviousUtf8Codepoint"][1]["location"] = "imgui_internal:400" +defs["igImTextFindPreviousUtf8Codepoint"][1]["location"] = "imgui_internal:404" defs["igImTextFindPreviousUtf8Codepoint"][1]["ov_cimguiname"] = "igImTextFindPreviousUtf8Codepoint" defs["igImTextFindPreviousUtf8Codepoint"][1]["ret"] = "const char*" defs["igImTextFindPreviousUtf8Codepoint"][1]["signature"] = "(const char*,const char*)" @@ -20494,7 +20494,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:396" +defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:400" defs["igImTextStrFromUtf8"][1]["ov_cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["ret"] = "int" defs["igImTextStrFromUtf8"][1]["signature"] = "(ImWchar*,int,const char*,const char*,const char**)" @@ -20521,7 +20521,7 @@ defs["igImTextStrToUtf8"][1]["call_args"] = "(out_buf,out_buf_size,in_text,in_te defs["igImTextStrToUtf8"][1]["cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["defaults"] = {} defs["igImTextStrToUtf8"][1]["funcname"] = "ImTextStrToUtf8" -defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:394" +defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:398" defs["igImTextStrToUtf8"][1]["ov_cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["ret"] = "int" defs["igImTextStrToUtf8"][1]["signature"] = "(char*,int,const ImWchar*,const ImWchar*)" @@ -20539,7 +20539,7 @@ defs["igImToUpper"][1]["call_args"] = "(c)" defs["igImToUpper"][1]["cimguiname"] = "igImToUpper" defs["igImToUpper"][1]["defaults"] = {} defs["igImToUpper"][1]["funcname"] = "ImToUpper" -defs["igImToUpper"][1]["location"] = "imgui_internal:374" +defs["igImToUpper"][1]["location"] = "imgui_internal:378" defs["igImToUpper"][1]["ov_cimguiname"] = "igImToUpper" defs["igImToUpper"][1]["ret"] = "char" defs["igImToUpper"][1]["signature"] = "(char)" @@ -20563,7 +20563,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:497" +defs["igImTriangleArea"][1]["location"] = "imgui_internal:501" defs["igImTriangleArea"][1]["ov_cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["ret"] = "float" defs["igImTriangleArea"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" @@ -20602,7 +20602,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:496" +defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:500" defs["igImTriangleBarycentricCoords"][1]["ov_cimguiname"] = "igImTriangleBarycentricCoords" defs["igImTriangleBarycentricCoords"][1]["ret"] = "void" defs["igImTriangleBarycentricCoords"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)" @@ -20632,7 +20632,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:495" +defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:499" defs["igImTriangleClosestPoint"][1]["nonUDT"] = 1 defs["igImTriangleClosestPoint"][1]["ov_cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["ret"] = "void" @@ -20660,7 +20660,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:494" +defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:498" defs["igImTriangleContainsPoint"][1]["ov_cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["ret"] = "bool" defs["igImTriangleContainsPoint"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)" @@ -20684,7 +20684,7 @@ defs["igImTriangleIsClockwise"][1]["call_args"] = "(a,b,c)" defs["igImTriangleIsClockwise"][1]["cimguiname"] = "igImTriangleIsClockwise" defs["igImTriangleIsClockwise"][1]["defaults"] = {} defs["igImTriangleIsClockwise"][1]["funcname"] = "ImTriangleIsClockwise" -defs["igImTriangleIsClockwise"][1]["location"] = "imgui_internal:498" +defs["igImTriangleIsClockwise"][1]["location"] = "imgui_internal:502" defs["igImTriangleIsClockwise"][1]["ov_cimguiname"] = "igImTriangleIsClockwise" defs["igImTriangleIsClockwise"][1]["ret"] = "bool" defs["igImTriangleIsClockwise"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" @@ -20702,7 +20702,7 @@ defs["igImTrunc"][1]["call_args"] = "(f)" defs["igImTrunc"][1]["cimguiname"] = "igImTrunc" defs["igImTrunc"][1]["defaults"] = {} defs["igImTrunc"][1]["funcname"] = "ImTrunc" -defs["igImTrunc"][1]["location"] = "imgui_internal:474" +defs["igImTrunc"][1]["location"] = "imgui_internal:478" defs["igImTrunc"][1]["ov_cimguiname"] = "igImTrunc_Float" defs["igImTrunc"][1]["ret"] = "float" defs["igImTrunc"][1]["signature"] = "(float)" @@ -20721,7 +20721,7 @@ defs["igImTrunc"][2]["call_args"] = "(v)" defs["igImTrunc"][2]["cimguiname"] = "igImTrunc" defs["igImTrunc"][2]["defaults"] = {} defs["igImTrunc"][2]["funcname"] = "ImTrunc" -defs["igImTrunc"][2]["location"] = "imgui_internal:475" +defs["igImTrunc"][2]["location"] = "imgui_internal:479" defs["igImTrunc"][2]["nonUDT"] = 1 defs["igImTrunc"][2]["ov_cimguiname"] = "igImTrunc_Vec2" defs["igImTrunc"][2]["ret"] = "void" @@ -20741,7 +20741,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:358" +defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:362" defs["igImUpperPowerOfTwo"][1]["ov_cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["ret"] = "int" defs["igImUpperPowerOfTwo"][1]["signature"] = "(int)" @@ -20778,7 +20778,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:567" +defs["igImage"][1]["location"] = "imgui:568" defs["igImage"][1]["namespace"] = "ImGui" defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" @@ -20819,7 +20819,7 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" -defs["igImageButton"][1]["location"] = "imgui:568" +defs["igImageButton"][1]["location"] = "imgui:569" defs["igImageButton"][1]["namespace"] = "ImGui" defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" @@ -20828,13 +20828,13 @@ defs["igImageButton"][1]["stname"] = "" 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 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags)" +defs["igImageButtonEx"][1]["args"] = "(ImGuiID id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags)" defs["igImageButtonEx"][1]["argsT"] = {} defs["igImageButtonEx"][1]["argsT"][1] = {} defs["igImageButtonEx"][1]["argsT"][1]["name"] = "id" defs["igImageButtonEx"][1]["argsT"][1]["type"] = "ImGuiID" defs["igImageButtonEx"][1]["argsT"][2] = {} -defs["igImageButtonEx"][1]["argsT"][2]["name"] = "texture_id" +defs["igImageButtonEx"][1]["argsT"][2]["name"] = "user_texture_id" defs["igImageButtonEx"][1]["argsT"][2]["type"] = "ImTextureID" defs["igImageButtonEx"][1]["argsT"][3] = {} defs["igImageButtonEx"][1]["argsT"][3]["name"] = "image_size" @@ -20854,13 +20854,13 @@ defs["igImageButtonEx"][1]["argsT"][7]["type"] = "const ImVec4" defs["igImageButtonEx"][1]["argsT"][8] = {} defs["igImageButtonEx"][1]["argsT"][8]["name"] = "flags" defs["igImageButtonEx"][1]["argsT"][8]["type"] = "ImGuiButtonFlags" -defs["igImageButtonEx"][1]["argsoriginal"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2& image_size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col,ImGuiButtonFlags flags=0)" -defs["igImageButtonEx"][1]["call_args"] = "(id,texture_id,image_size,uv0,uv1,bg_col,tint_col,flags)" +defs["igImageButtonEx"][1]["argsoriginal"] = "(ImGuiID id,ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col,ImGuiButtonFlags flags=0)" +defs["igImageButtonEx"][1]["call_args"] = "(id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col,flags)" defs["igImageButtonEx"][1]["cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["defaults"] = {} defs["igImageButtonEx"][1]["defaults"]["flags"] = "0" defs["igImageButtonEx"][1]["funcname"] = "ImageButtonEx" -defs["igImageButtonEx"][1]["location"] = "imgui_internal:3387" +defs["igImageButtonEx"][1]["location"] = "imgui_internal:3393" defs["igImageButtonEx"][1]["namespace"] = "ImGui" defs["igImageButtonEx"][1]["ov_cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["ret"] = "bool" @@ -20896,7 +20896,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:2997" +defs["igInitialize"][1]["location"] = "imgui_internal:3003" defs["igInitialize"][1]["namespace"] = "ImGui" defs["igInitialize"][1]["ov_cimguiname"] = "igInitialize" defs["igInitialize"][1]["ret"] = "void" @@ -20934,7 +20934,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:639" +defs["igInputDouble"][1]["location"] = "imgui:640" defs["igInputDouble"][1]["namespace"] = "ImGui" defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" @@ -20972,7 +20972,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:631" +defs["igInputFloat"][1]["location"] = "imgui:632" defs["igInputFloat"][1]["namespace"] = "ImGui" defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" @@ -21002,7 +21002,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:632" +defs["igInputFloat2"][1]["location"] = "imgui:633" defs["igInputFloat2"][1]["namespace"] = "ImGui" defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" @@ -21032,7 +21032,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:633" +defs["igInputFloat3"][1]["location"] = "imgui:634" defs["igInputFloat3"][1]["namespace"] = "ImGui" defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" @@ -21062,7 +21062,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:634" +defs["igInputFloat4"][1]["location"] = "imgui:635" defs["igInputFloat4"][1]["namespace"] = "ImGui" defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" @@ -21096,7 +21096,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:635" +defs["igInputInt"][1]["location"] = "imgui:636" defs["igInputInt"][1]["namespace"] = "ImGui" defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" @@ -21122,7 +21122,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:636" +defs["igInputInt2"][1]["location"] = "imgui:637" defs["igInputInt2"][1]["namespace"] = "ImGui" defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" @@ -21148,7 +21148,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:637" +defs["igInputInt3"][1]["location"] = "imgui:638" defs["igInputInt3"][1]["namespace"] = "ImGui" defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" @@ -21174,7 +21174,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:638" +defs["igInputInt4"][1]["location"] = "imgui:639" defs["igInputInt4"][1]["namespace"] = "ImGui" defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" @@ -21215,7 +21215,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:640" +defs["igInputScalar"][1]["location"] = "imgui:641" defs["igInputScalar"][1]["namespace"] = "ImGui" defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" @@ -21259,7 +21259,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:641" +defs["igInputScalarN"][1]["location"] = "imgui:642" defs["igInputScalarN"][1]["namespace"] = "ImGui" defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" @@ -21296,7 +21296,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:628" +defs["igInputText"][1]["location"] = "imgui:629" defs["igInputText"][1]["namespace"] = "ImGui" defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" @@ -21315,7 +21315,7 @@ defs["igInputTextDeactivateHook"][1]["call_args"] = "(id)" defs["igInputTextDeactivateHook"][1]["cimguiname"] = "igInputTextDeactivateHook" defs["igInputTextDeactivateHook"][1]["defaults"] = {} defs["igInputTextDeactivateHook"][1]["funcname"] = "InputTextDeactivateHook" -defs["igInputTextDeactivateHook"][1]["location"] = "imgui_internal:3437" +defs["igInputTextDeactivateHook"][1]["location"] = "imgui_internal:3443" defs["igInputTextDeactivateHook"][1]["namespace"] = "ImGui" defs["igInputTextDeactivateHook"][1]["ov_cimguiname"] = "igInputTextDeactivateHook" defs["igInputTextDeactivateHook"][1]["ret"] = "void" @@ -21357,7 +21357,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:3436" +defs["igInputTextEx"][1]["location"] = "imgui_internal:3442" defs["igInputTextEx"][1]["namespace"] = "ImGui" defs["igInputTextEx"][1]["ov_cimguiname"] = "igInputTextEx" defs["igInputTextEx"][1]["ret"] = "bool" @@ -21398,7 +21398,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:629" +defs["igInputTextMultiline"][1]["location"] = "imgui:630" defs["igInputTextMultiline"][1]["namespace"] = "ImGui" defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" @@ -21438,7 +21438,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:630" +defs["igInputTextWithHint"][1]["location"] = "imgui:631" defs["igInputTextWithHint"][1]["namespace"] = "ImGui" defs["igInputTextWithHint"][1]["ov_cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["ret"] = "bool" @@ -21483,7 +21483,7 @@ defs["igIsActiveIdUsingNavDir"][1]["call_args"] = "(dir)" defs["igIsActiveIdUsingNavDir"][1]["cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["defaults"] = {} defs["igIsActiveIdUsingNavDir"][1]["funcname"] = "IsActiveIdUsingNavDir" -defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3175" +defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3181" defs["igIsActiveIdUsingNavDir"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavDir"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["ret"] = "bool" @@ -21502,7 +21502,7 @@ defs["igIsAliasKey"][1]["call_args"] = "(key)" defs["igIsAliasKey"][1]["cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["defaults"] = {} defs["igIsAliasKey"][1]["funcname"] = "IsAliasKey" -defs["igIsAliasKey"][1]["location"] = "imgui_internal:3152" +defs["igIsAliasKey"][1]["location"] = "imgui_internal:3158" defs["igIsAliasKey"][1]["namespace"] = "ImGui" defs["igIsAliasKey"][1]["ov_cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["ret"] = "bool" @@ -21518,7 +21518,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:927" +defs["igIsAnyItemActive"][1]["location"] = "imgui:928" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -21534,7 +21534,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:928" +defs["igIsAnyItemFocused"][1]["location"] = "imgui:929" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -21550,7 +21550,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:926" +defs["igIsAnyItemHovered"][1]["location"] = "imgui:927" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -21566,7 +21566,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:1012" +defs["igIsAnyMouseDown"][1]["location"] = "imgui:1013" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -21588,7 +21588,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:3070" +defs["igIsClippedEx"][1]["location"] = "imgui_internal:3076" defs["igIsClippedEx"][1]["namespace"] = "ImGui" defs["igIsClippedEx"][1]["ov_cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["ret"] = "bool" @@ -21604,7 +21604,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:3242" +defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3248" defs["igIsDragDropActive"][1]["namespace"] = "ImGui" defs["igIsDragDropActive"][1]["ov_cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["ret"] = "bool" @@ -21620,7 +21620,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:3245" +defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:3251" defs["igIsDragDropPayloadBeingAccepted"][1]["namespace"] = "ImGui" defs["igIsDragDropPayloadBeingAccepted"][1]["ov_cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["ret"] = "bool" @@ -21639,7 +21639,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:3150" +defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3156" defs["igIsGamepadKey"][1]["namespace"] = "ImGui" defs["igIsGamepadKey"][1]["ov_cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["ret"] = "bool" @@ -21655,7 +21655,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:922" +defs["igIsItemActivated"][1]["location"] = "imgui:923" defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -21671,7 +21671,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:917" +defs["igIsItemActive"][1]["location"] = "imgui:918" defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -21691,7 +21691,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:919" +defs["igIsItemClicked"][1]["location"] = "imgui:920" defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -21707,7 +21707,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:923" +defs["igIsItemDeactivated"][1]["location"] = "imgui:924" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -21723,7 +21723,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:924" +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:925" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -21739,7 +21739,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:921" +defs["igIsItemEdited"][1]["location"] = "imgui:922" defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -21755,7 +21755,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:918" +defs["igIsItemFocused"][1]["location"] = "imgui:919" defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -21775,7 +21775,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:916" +defs["igIsItemHovered"][1]["location"] = "imgui:917" defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -21791,7 +21791,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:925" +defs["igIsItemToggledOpen"][1]["location"] = "imgui:926" defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" @@ -21807,7 +21807,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:690" +defs["igIsItemToggledSelection"][1]["location"] = "imgui:691" defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["ret"] = "bool" @@ -21823,7 +21823,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:920" +defs["igIsItemVisible"][1]["location"] = "imgui:921" defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" @@ -21842,7 +21842,7 @@ defs["igIsKeyChordPressed"][1]["call_args"] = "(key_chord)" defs["igIsKeyChordPressed"][1]["cimguiname"] = "igIsKeyChordPressed" defs["igIsKeyChordPressed"][1]["defaults"] = {} defs["igIsKeyChordPressed"][1]["funcname"] = "IsKeyChordPressed" -defs["igIsKeyChordPressed"][1]["location"] = "imgui:970" +defs["igIsKeyChordPressed"][1]["location"] = "imgui:971" defs["igIsKeyChordPressed"][1]["namespace"] = "ImGui" defs["igIsKeyChordPressed"][1]["ov_cimguiname"] = "igIsKeyChordPressed_Nil" defs["igIsKeyChordPressed"][1]["ret"] = "bool" @@ -21866,7 +21866,7 @@ defs["igIsKeyChordPressed"][2]["cimguiname"] = "igIsKeyChordPressed" defs["igIsKeyChordPressed"][2]["defaults"] = {} defs["igIsKeyChordPressed"][2]["defaults"]["owner_id"] = "0" defs["igIsKeyChordPressed"][2]["funcname"] = "IsKeyChordPressed" -defs["igIsKeyChordPressed"][2]["location"] = "imgui_internal:3204" +defs["igIsKeyChordPressed"][2]["location"] = "imgui_internal:3210" defs["igIsKeyChordPressed"][2]["namespace"] = "ImGui" defs["igIsKeyChordPressed"][2]["ov_cimguiname"] = "igIsKeyChordPressed_InputFlags" defs["igIsKeyChordPressed"][2]["ret"] = "bool" @@ -21886,7 +21886,7 @@ defs["igIsKeyDown"][1]["call_args"] = "(key)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui:967" +defs["igIsKeyDown"][1]["location"] = "imgui:968" defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown_Nil" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -21906,7 +21906,7 @@ defs["igIsKeyDown"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyDown"][2]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][2]["defaults"] = {} defs["igIsKeyDown"][2]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][2]["location"] = "imgui_internal:3201" +defs["igIsKeyDown"][2]["location"] = "imgui_internal:3207" defs["igIsKeyDown"][2]["namespace"] = "ImGui" defs["igIsKeyDown"][2]["ov_cimguiname"] = "igIsKeyDown_ID" defs["igIsKeyDown"][2]["ret"] = "bool" @@ -21930,7 +21930,7 @@ defs["igIsKeyPressed"][1]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][1]["location"] = "imgui:968" +defs["igIsKeyPressed"][1]["location"] = "imgui:969" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed_Bool" defs["igIsKeyPressed"][1]["ret"] = "bool" @@ -21954,7 +21954,7 @@ defs["igIsKeyPressed"][2]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][2]["defaults"] = {} defs["igIsKeyPressed"][2]["defaults"]["owner_id"] = "0" defs["igIsKeyPressed"][2]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3202" +defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3208" defs["igIsKeyPressed"][2]["namespace"] = "ImGui" defs["igIsKeyPressed"][2]["ov_cimguiname"] = "igIsKeyPressed_InputFlags" defs["igIsKeyPressed"][2]["ret"] = "bool" @@ -21974,7 +21974,7 @@ defs["igIsKeyReleased"][1]["call_args"] = "(key)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui:969" +defs["igIsKeyReleased"][1]["location"] = "imgui:970" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased_Nil" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -21994,7 +21994,7 @@ defs["igIsKeyReleased"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyReleased"][2]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][2]["defaults"] = {} defs["igIsKeyReleased"][2]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3203" +defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3209" defs["igIsKeyReleased"][2]["namespace"] = "ImGui" defs["igIsKeyReleased"][2]["ov_cimguiname"] = "igIsKeyReleased_ID" defs["igIsKeyReleased"][2]["ret"] = "bool" @@ -22014,7 +22014,7 @@ defs["igIsKeyboardKey"][1]["call_args"] = "(key)" defs["igIsKeyboardKey"][1]["cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["defaults"] = {} defs["igIsKeyboardKey"][1]["funcname"] = "IsKeyboardKey" -defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3149" +defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3155" defs["igIsKeyboardKey"][1]["namespace"] = "ImGui" defs["igIsKeyboardKey"][1]["ov_cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["ret"] = "bool" @@ -22033,7 +22033,7 @@ defs["igIsLRModKey"][1]["call_args"] = "(key)" defs["igIsLRModKey"][1]["cimguiname"] = "igIsLRModKey" defs["igIsLRModKey"][1]["defaults"] = {} defs["igIsLRModKey"][1]["funcname"] = "IsLRModKey" -defs["igIsLRModKey"][1]["location"] = "imgui_internal:3153" +defs["igIsLRModKey"][1]["location"] = "imgui_internal:3159" defs["igIsLRModKey"][1]["namespace"] = "ImGui" defs["igIsLRModKey"][1]["ov_cimguiname"] = "igIsLRModKey" defs["igIsLRModKey"][1]["ret"] = "bool" @@ -22052,7 +22052,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:3148" +defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3154" defs["igIsLegacyKey"][1]["namespace"] = "ImGui" defs["igIsLegacyKey"][1]["ov_cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["ret"] = "bool" @@ -22075,7 +22075,7 @@ defs["igIsMouseClicked"][1]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][1]["location"] = "imgui:1006" +defs["igIsMouseClicked"][1]["location"] = "imgui:1007" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked_Bool" defs["igIsMouseClicked"][1]["ret"] = "bool" @@ -22099,7 +22099,7 @@ defs["igIsMouseClicked"][2]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][2]["defaults"] = {} defs["igIsMouseClicked"][2]["defaults"]["owner_id"] = "0" defs["igIsMouseClicked"][2]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3206" +defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3212" defs["igIsMouseClicked"][2]["namespace"] = "ImGui" defs["igIsMouseClicked"][2]["ov_cimguiname"] = "igIsMouseClicked_InputFlags" defs["igIsMouseClicked"][2]["ret"] = "bool" @@ -22119,7 +22119,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:1008" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:1009" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked_Nil" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" @@ -22139,7 +22139,7 @@ defs["igIsMouseDoubleClicked"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseDoubleClicked"][2]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][2]["defaults"] = {} defs["igIsMouseDoubleClicked"][2]["funcname"] = "IsMouseDoubleClicked" -defs["igIsMouseDoubleClicked"][2]["location"] = "imgui_internal:3208" +defs["igIsMouseDoubleClicked"][2]["location"] = "imgui_internal:3214" defs["igIsMouseDoubleClicked"][2]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][2]["ov_cimguiname"] = "igIsMouseDoubleClicked_ID" defs["igIsMouseDoubleClicked"][2]["ret"] = "bool" @@ -22159,7 +22159,7 @@ defs["igIsMouseDown"][1]["call_args"] = "(button)" defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][1]["location"] = "imgui:1005" +defs["igIsMouseDown"][1]["location"] = "imgui:1006" defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown_Nil" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -22179,7 +22179,7 @@ defs["igIsMouseDown"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseDown"][2]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][2]["defaults"] = {} defs["igIsMouseDown"][2]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][2]["location"] = "imgui_internal:3205" +defs["igIsMouseDown"][2]["location"] = "imgui_internal:3211" defs["igIsMouseDown"][2]["namespace"] = "ImGui" defs["igIsMouseDown"][2]["ov_cimguiname"] = "igIsMouseDown_ID" defs["igIsMouseDown"][2]["ret"] = "bool" @@ -22203,7 +22203,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:3168" +defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:3174" defs["igIsMouseDragPastThreshold"][1]["namespace"] = "ImGui" defs["igIsMouseDragPastThreshold"][1]["ov_cimguiname"] = "igIsMouseDragPastThreshold" defs["igIsMouseDragPastThreshold"][1]["ret"] = "bool" @@ -22226,7 +22226,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:1015" +defs["igIsMouseDragging"][1]["location"] = "imgui:1016" defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -22252,7 +22252,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:1010" +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:1011" defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -22271,7 +22271,7 @@ defs["igIsMouseKey"][1]["call_args"] = "(key)" defs["igIsMouseKey"][1]["cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["defaults"] = {} defs["igIsMouseKey"][1]["funcname"] = "IsMouseKey" -defs["igIsMouseKey"][1]["location"] = "imgui_internal:3151" +defs["igIsMouseKey"][1]["location"] = "imgui_internal:3157" defs["igIsMouseKey"][1]["namespace"] = "ImGui" defs["igIsMouseKey"][1]["ov_cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["ret"] = "bool" @@ -22291,7 +22291,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:1011" +defs["igIsMousePosValid"][1]["location"] = "imgui:1012" defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -22310,7 +22310,7 @@ defs["igIsMouseReleased"][1]["call_args"] = "(button)" defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][1]["location"] = "imgui:1007" +defs["igIsMouseReleased"][1]["location"] = "imgui:1008" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased_Nil" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -22330,7 +22330,7 @@ defs["igIsMouseReleased"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseReleased"][2]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][2]["defaults"] = {} defs["igIsMouseReleased"][2]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3207" +defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3213" defs["igIsMouseReleased"][2]["namespace"] = "ImGui" defs["igIsMouseReleased"][2]["ov_cimguiname"] = "igIsMouseReleased_ID" defs["igIsMouseReleased"][2]["ret"] = "bool" @@ -22350,7 +22350,7 @@ defs["igIsNamedKey"][1]["call_args"] = "(key)" defs["igIsNamedKey"][1]["cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["defaults"] = {} defs["igIsNamedKey"][1]["funcname"] = "IsNamedKey" -defs["igIsNamedKey"][1]["location"] = "imgui_internal:3146" +defs["igIsNamedKey"][1]["location"] = "imgui_internal:3152" defs["igIsNamedKey"][1]["namespace"] = "ImGui" defs["igIsNamedKey"][1]["ov_cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["ret"] = "bool" @@ -22369,7 +22369,7 @@ defs["igIsNamedKeyOrMod"][1]["call_args"] = "(key)" defs["igIsNamedKeyOrMod"][1]["cimguiname"] = "igIsNamedKeyOrMod" defs["igIsNamedKeyOrMod"][1]["defaults"] = {} defs["igIsNamedKeyOrMod"][1]["funcname"] = "IsNamedKeyOrMod" -defs["igIsNamedKeyOrMod"][1]["location"] = "imgui_internal:3147" +defs["igIsNamedKeyOrMod"][1]["location"] = "imgui_internal:3153" defs["igIsNamedKeyOrMod"][1]["namespace"] = "ImGui" defs["igIsNamedKeyOrMod"][1]["ov_cimguiname"] = "igIsNamedKeyOrMod" defs["igIsNamedKeyOrMod"][1]["ret"] = "bool" @@ -22392,7 +22392,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:788" +defs["igIsPopupOpen"][1]["location"] = "imgui:789" defs["igIsPopupOpen"][1]["namespace"] = "ImGui" defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen_Str" defs["igIsPopupOpen"][1]["ret"] = "bool" @@ -22412,7 +22412,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:3097" +defs["igIsPopupOpen"][2]["location"] = "imgui_internal:3103" defs["igIsPopupOpen"][2]["namespace"] = "ImGui" defs["igIsPopupOpen"][2]["ov_cimguiname"] = "igIsPopupOpen_ID" defs["igIsPopupOpen"][2]["ret"] = "bool" @@ -22432,7 +22432,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:945" +defs["igIsRectVisible"][1]["location"] = "imgui:946" defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisible_Nil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -22452,7 +22452,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:946" +defs["igIsRectVisible"][2]["location"] = "imgui:947" defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisible_Vec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -22475,7 +22475,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:2962" +defs["igIsWindowAbove"][1]["location"] = "imgui_internal:2968" defs["igIsWindowAbove"][1]["namespace"] = "ImGui" defs["igIsWindowAbove"][1]["ov_cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["ret"] = "bool" @@ -22516,7 +22516,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:2960" +defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:2966" defs["igIsWindowChildOf"][1]["namespace"] = "ImGui" defs["igIsWindowChildOf"][1]["ov_cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["ret"] = "bool" @@ -22555,7 +22555,7 @@ defs["igIsWindowContentHoverable"][1]["cimguiname"] = "igIsWindowContentHoverabl defs["igIsWindowContentHoverable"][1]["defaults"] = {} defs["igIsWindowContentHoverable"][1]["defaults"]["flags"] = "0" defs["igIsWindowContentHoverable"][1]["funcname"] = "IsWindowContentHoverable" -defs["igIsWindowContentHoverable"][1]["location"] = "imgui_internal:3069" +defs["igIsWindowContentHoverable"][1]["location"] = "imgui_internal:3075" defs["igIsWindowContentHoverable"][1]["namespace"] = "ImGui" defs["igIsWindowContentHoverable"][1]["ov_cimguiname"] = "igIsWindowContentHoverable" defs["igIsWindowContentHoverable"][1]["ret"] = "bool" @@ -22614,7 +22614,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:2963" +defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:2969" defs["igIsWindowNavFocusable"][1]["namespace"] = "ImGui" defs["igIsWindowNavFocusable"][1]["ov_cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["ret"] = "bool" @@ -22636,7 +22636,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:2961" +defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:2967" defs["igIsWindowWithinBeginStackOf"][1]["namespace"] = "ImGui" defs["igIsWindowWithinBeginStackOf"][1]["ov_cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["ret"] = "bool" @@ -22666,7 +22666,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:3067" +defs["igItemAdd"][1]["location"] = "imgui_internal:3073" defs["igItemAdd"][1]["namespace"] = "ImGui" defs["igItemAdd"][1]["ov_cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["ret"] = "bool" @@ -22691,7 +22691,7 @@ defs["igItemHoverable"][1]["call_args"] = "(bb,id,item_flags)" defs["igItemHoverable"][1]["cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["defaults"] = {} defs["igItemHoverable"][1]["funcname"] = "ItemHoverable" -defs["igItemHoverable"][1]["location"] = "imgui_internal:3068" +defs["igItemHoverable"][1]["location"] = "imgui_internal:3074" defs["igItemHoverable"][1]["namespace"] = "ImGui" defs["igItemHoverable"][1]["ov_cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["ret"] = "bool" @@ -22714,7 +22714,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:3065" +defs["igItemSize"][1]["location"] = "imgui_internal:3071" defs["igItemSize"][1]["namespace"] = "ImGui" defs["igItemSize"][1]["ov_cimguiname"] = "igItemSize_Vec2" defs["igItemSize"][1]["ret"] = "void" @@ -22735,7 +22735,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:3066" +defs["igItemSize"][2]["location"] = "imgui_internal:3072" defs["igItemSize"][2]["namespace"] = "ImGui" defs["igItemSize"][2]["ov_cimguiname"] = "igItemSize_Rect" defs["igItemSize"][2]["ret"] = "void" @@ -22755,7 +22755,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:3058" +defs["igKeepAliveID"][1]["location"] = "imgui_internal:3064" defs["igKeepAliveID"][1]["namespace"] = "ImGui" defs["igKeepAliveID"][1]["ov_cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["ret"] = "void" @@ -22838,7 +22838,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:700" +defs["igListBox"][1]["location"] = "imgui:701" defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBox_Str_arr" defs["igListBox"][1]["ret"] = "bool" @@ -22873,7 +22873,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:701" +defs["igListBox"][2]["location"] = "imgui:702" defs["igListBox"][2]["namespace"] = "ImGui" defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnStrPtr" defs["igListBox"][2]["ret"] = "bool" @@ -22893,7 +22893,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:1031" +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:1032" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -22916,7 +22916,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:1032" +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:1033" defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -22935,7 +22935,7 @@ defs["igLocalizeGetMsg"][1]["call_args"] = "(key)" defs["igLocalizeGetMsg"][1]["cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["defaults"] = {} defs["igLocalizeGetMsg"][1]["funcname"] = "LocalizeGetMsg" -defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3032" +defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3038" defs["igLocalizeGetMsg"][1]["namespace"] = "ImGui" defs["igLocalizeGetMsg"][1]["ov_cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["ret"] = "const char*" @@ -22957,7 +22957,7 @@ defs["igLocalizeRegisterEntries"][1]["call_args"] = "(entries,count)" defs["igLocalizeRegisterEntries"][1]["cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["defaults"] = {} defs["igLocalizeRegisterEntries"][1]["funcname"] = "LocalizeRegisterEntries" -defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3031" +defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3037" defs["igLocalizeRegisterEntries"][1]["namespace"] = "ImGui" defs["igLocalizeRegisterEntries"][1]["ov_cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["ret"] = "void" @@ -22979,7 +22979,7 @@ defs["igLogBegin"][1]["call_args"] = "(flags,auto_open_depth)" defs["igLogBegin"][1]["cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["defaults"] = {} defs["igLogBegin"][1]["funcname"] = "LogBegin" -defs["igLogBegin"][1]["location"] = "imgui_internal:3083" +defs["igLogBegin"][1]["location"] = "imgui_internal:3089" defs["igLogBegin"][1]["namespace"] = "ImGui" defs["igLogBegin"][1]["ov_cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["ret"] = "void" @@ -22995,7 +22995,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:873" +defs["igLogButtons"][1]["location"] = "imgui:874" defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -23011,7 +23011,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:872" +defs["igLogFinish"][1]["location"] = "imgui:873" defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -23037,7 +23037,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:3085" +defs["igLogRenderedText"][1]["location"] = "imgui_internal:3091" defs["igLogRenderedText"][1]["namespace"] = "ImGui" defs["igLogRenderedText"][1]["ov_cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["ret"] = "void" @@ -23059,7 +23059,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:3086" +defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:3092" defs["igLogSetNextTextDecoration"][1]["namespace"] = "ImGui" defs["igLogSetNextTextDecoration"][1]["ov_cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["ret"] = "void" @@ -23082,7 +23082,7 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" -defs["igLogText"][1]["location"] = "imgui:874" +defs["igLogText"][1]["location"] = "imgui:875" defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -23105,7 +23105,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:875" +defs["igLogTextV"][1]["location"] = "imgui:876" defs["igLogTextV"][1]["namespace"] = "ImGui" defs["igLogTextV"][1]["ov_cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["ret"] = "void" @@ -23125,7 +23125,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:3084" +defs["igLogToBuffer"][1]["location"] = "imgui_internal:3090" defs["igLogToBuffer"][1]["namespace"] = "ImGui" defs["igLogToBuffer"][1]["ov_cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["ret"] = "void" @@ -23145,7 +23145,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:871" +defs["igLogToClipboard"][1]["location"] = "imgui:872" defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -23169,7 +23169,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:870" +defs["igLogToFile"][1]["location"] = "imgui:871" defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -23189,7 +23189,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:869" +defs["igLogToTTY"][1]["location"] = "imgui:870" defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -23205,7 +23205,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:3017" +defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:3023" defs["igMarkIniSettingsDirty"][1]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][1]["ov_cimguiname"] = "igMarkIniSettingsDirty_Nil" defs["igMarkIniSettingsDirty"][1]["ret"] = "void" @@ -23222,7 +23222,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:3018" +defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:3024" defs["igMarkIniSettingsDirty"][2]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][2]["ov_cimguiname"] = "igMarkIniSettingsDirty_WindowPtr" defs["igMarkIniSettingsDirty"][2]["ret"] = "void" @@ -23242,7 +23242,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:3059" +defs["igMarkItemEdited"][1]["location"] = "imgui_internal:3065" defs["igMarkItemEdited"][1]["namespace"] = "ImGui" defs["igMarkItemEdited"][1]["ov_cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["ret"] = "void" @@ -23261,7 +23261,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:1053" +defs["igMemAlloc"][1]["location"] = "imgui:1054" defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -23280,7 +23280,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:1054" +defs["igMemFree"][1]["location"] = "imgui:1055" defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -23311,7 +23311,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:728" +defs["igMenuItem"][1]["location"] = "imgui:729" defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItem_Bool" defs["igMenuItem"][1]["ret"] = "bool" @@ -23338,7 +23338,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:729" +defs["igMenuItem"][2]["location"] = "imgui:730" defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItem_BoolPtr" defs["igMenuItem"][2]["ret"] = "bool" @@ -23373,7 +23373,7 @@ defs["igMenuItemEx"][1]["defaults"]["enabled"] = "true" defs["igMenuItemEx"][1]["defaults"]["selected"] = "false" defs["igMenuItemEx"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItemEx"][1]["funcname"] = "MenuItemEx" -defs["igMenuItemEx"][1]["location"] = "imgui_internal:3112" +defs["igMenuItemEx"][1]["location"] = "imgui_internal:3118" defs["igMenuItemEx"][1]["namespace"] = "ImGui" defs["igMenuItemEx"][1]["ov_cimguiname"] = "igMenuItemEx" defs["igMenuItemEx"][1]["ret"] = "bool" @@ -23392,7 +23392,7 @@ defs["igMouseButtonToKey"][1]["call_args"] = "(button)" defs["igMouseButtonToKey"][1]["cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["defaults"] = {} defs["igMouseButtonToKey"][1]["funcname"] = "MouseButtonToKey" -defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3167" +defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3173" defs["igMouseButtonToKey"][1]["namespace"] = "ImGui" defs["igMouseButtonToKey"][1]["ov_cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["ret"] = "ImGuiKey" @@ -23414,7 +23414,7 @@ defs["igMultiSelectAddSetAll"][1]["call_args"] = "(ms,selected)" defs["igMultiSelectAddSetAll"][1]["cimguiname"] = "igMultiSelectAddSetAll" defs["igMultiSelectAddSetAll"][1]["defaults"] = {} defs["igMultiSelectAddSetAll"][1]["funcname"] = "MultiSelectAddSetAll" -defs["igMultiSelectAddSetAll"][1]["location"] = "imgui_internal:3263" +defs["igMultiSelectAddSetAll"][1]["location"] = "imgui_internal:3269" defs["igMultiSelectAddSetAll"][1]["namespace"] = "ImGui" defs["igMultiSelectAddSetAll"][1]["ov_cimguiname"] = "igMultiSelectAddSetAll" defs["igMultiSelectAddSetAll"][1]["ret"] = "void" @@ -23445,7 +23445,7 @@ defs["igMultiSelectAddSetRange"][1]["call_args"] = "(ms,selected,range_dir,first defs["igMultiSelectAddSetRange"][1]["cimguiname"] = "igMultiSelectAddSetRange" defs["igMultiSelectAddSetRange"][1]["defaults"] = {} defs["igMultiSelectAddSetRange"][1]["funcname"] = "MultiSelectAddSetRange" -defs["igMultiSelectAddSetRange"][1]["location"] = "imgui_internal:3264" +defs["igMultiSelectAddSetRange"][1]["location"] = "imgui_internal:3270" defs["igMultiSelectAddSetRange"][1]["namespace"] = "ImGui" defs["igMultiSelectAddSetRange"][1]["ov_cimguiname"] = "igMultiSelectAddSetRange" defs["igMultiSelectAddSetRange"][1]["ret"] = "void" @@ -23470,7 +23470,7 @@ defs["igMultiSelectItemFooter"][1]["call_args"] = "(id,p_selected,p_pressed)" defs["igMultiSelectItemFooter"][1]["cimguiname"] = "igMultiSelectItemFooter" defs["igMultiSelectItemFooter"][1]["defaults"] = {} defs["igMultiSelectItemFooter"][1]["funcname"] = "MultiSelectItemFooter" -defs["igMultiSelectItemFooter"][1]["location"] = "imgui_internal:3262" +defs["igMultiSelectItemFooter"][1]["location"] = "imgui_internal:3268" defs["igMultiSelectItemFooter"][1]["namespace"] = "ImGui" defs["igMultiSelectItemFooter"][1]["ov_cimguiname"] = "igMultiSelectItemFooter" defs["igMultiSelectItemFooter"][1]["ret"] = "void" @@ -23495,7 +23495,7 @@ defs["igMultiSelectItemHeader"][1]["call_args"] = "(id,p_selected,p_button_flags defs["igMultiSelectItemHeader"][1]["cimguiname"] = "igMultiSelectItemHeader" defs["igMultiSelectItemHeader"][1]["defaults"] = {} defs["igMultiSelectItemHeader"][1]["funcname"] = "MultiSelectItemHeader" -defs["igMultiSelectItemHeader"][1]["location"] = "imgui_internal:3261" +defs["igMultiSelectItemHeader"][1]["location"] = "imgui_internal:3267" defs["igMultiSelectItemHeader"][1]["namespace"] = "ImGui" defs["igMultiSelectItemHeader"][1]["ov_cimguiname"] = "igMultiSelectItemHeader" defs["igMultiSelectItemHeader"][1]["ret"] = "void" @@ -23514,7 +23514,7 @@ defs["igNavClearPreferredPosForAxis"][1]["call_args"] = "(axis)" defs["igNavClearPreferredPosForAxis"][1]["cimguiname"] = "igNavClearPreferredPosForAxis" defs["igNavClearPreferredPosForAxis"][1]["defaults"] = {} defs["igNavClearPreferredPosForAxis"][1]["funcname"] = "NavClearPreferredPosForAxis" -defs["igNavClearPreferredPosForAxis"][1]["location"] = "imgui_internal:3131" +defs["igNavClearPreferredPosForAxis"][1]["location"] = "imgui_internal:3137" defs["igNavClearPreferredPosForAxis"][1]["namespace"] = "ImGui" defs["igNavClearPreferredPosForAxis"][1]["ov_cimguiname"] = "igNavClearPreferredPosForAxis" defs["igNavClearPreferredPosForAxis"][1]["ret"] = "void" @@ -23533,7 +23533,7 @@ defs["igNavHighlightActivated"][1]["call_args"] = "(id)" defs["igNavHighlightActivated"][1]["cimguiname"] = "igNavHighlightActivated" defs["igNavHighlightActivated"][1]["defaults"] = {} defs["igNavHighlightActivated"][1]["funcname"] = "NavHighlightActivated" -defs["igNavHighlightActivated"][1]["location"] = "imgui_internal:3130" +defs["igNavHighlightActivated"][1]["location"] = "imgui_internal:3136" defs["igNavHighlightActivated"][1]["namespace"] = "ImGui" defs["igNavHighlightActivated"][1]["ov_cimguiname"] = "igNavHighlightActivated" defs["igNavHighlightActivated"][1]["ret"] = "void" @@ -23549,7 +23549,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:3121" +defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:3127" defs["igNavInitRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavInitRequestApplyResult"][1]["ov_cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["ret"] = "void" @@ -23571,7 +23571,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:3120" +defs["igNavInitWindow"][1]["location"] = "imgui_internal:3126" defs["igNavInitWindow"][1]["namespace"] = "ImGui" defs["igNavInitWindow"][1]["ov_cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["ret"] = "void" @@ -23587,7 +23587,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:3128" +defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:3134" defs["igNavMoveRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavMoveRequestApplyResult"][1]["ov_cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["ret"] = "void" @@ -23603,7 +23603,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:3122" +defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:3128" defs["igNavMoveRequestButNoResultYet"][1]["namespace"] = "ImGui" defs["igNavMoveRequestButNoResultYet"][1]["ov_cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["ret"] = "bool" @@ -23619,7 +23619,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:3127" +defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:3133" defs["igNavMoveRequestCancel"][1]["namespace"] = "ImGui" defs["igNavMoveRequestCancel"][1]["ov_cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["ret"] = "void" @@ -23647,7 +23647,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:3124" +defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:3130" defs["igNavMoveRequestForward"][1]["namespace"] = "ImGui" defs["igNavMoveRequestForward"][1]["ov_cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["ret"] = "void" @@ -23666,7 +23666,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:3125" +defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3131" defs["igNavMoveRequestResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithLastItem"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["ret"] = "void" @@ -23688,7 +23688,7 @@ defs["igNavMoveRequestResolveWithPastTreeNode"][1]["call_args"] = "(result,tree_ defs["igNavMoveRequestResolveWithPastTreeNode"][1]["cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["defaults"] = {} defs["igNavMoveRequestResolveWithPastTreeNode"][1]["funcname"] = "NavMoveRequestResolveWithPastTreeNode" -defs["igNavMoveRequestResolveWithPastTreeNode"][1]["location"] = "imgui_internal:3126" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["location"] = "imgui_internal:3132" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ret"] = "void" @@ -23716,7 +23716,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:3123" +defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:3129" defs["igNavMoveRequestSubmit"][1]["namespace"] = "ImGui" defs["igNavMoveRequestSubmit"][1]["ov_cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["ret"] = "void" @@ -23738,7 +23738,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:3129" +defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:3135" defs["igNavMoveRequestTryWrapping"][1]["namespace"] = "ImGui" defs["igNavMoveRequestTryWrapping"][1]["ov_cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["ret"] = "void" @@ -23754,7 +23754,7 @@ defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["call_args"] = "()" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["defaults"] = {} defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["funcname"] = "NavUpdateCurrentWindowIsScrollPushableX" -defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["location"] = "imgui_internal:3133" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["location"] = "imgui_internal:3139" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["namespace"] = "ImGui" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ov_cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ret"] = "void" @@ -23802,7 +23802,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:850" +defs["igNextColumn"][1]["location"] = "imgui:851" defs["igNextColumn"][1]["namespace"] = "ImGui" defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" @@ -23825,7 +23825,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:770" +defs["igOpenPopup"][1]["location"] = "imgui:771" defs["igOpenPopup"][1]["namespace"] = "ImGui" defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup_Str" defs["igOpenPopup"][1]["ret"] = "void" @@ -23846,7 +23846,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:771" +defs["igOpenPopup"][2]["location"] = "imgui:772" defs["igOpenPopup"][2]["namespace"] = "ImGui" defs["igOpenPopup"][2]["ov_cimguiname"] = "igOpenPopup_ID" defs["igOpenPopup"][2]["ret"] = "void" @@ -23870,7 +23870,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:3093" +defs["igOpenPopupEx"][1]["location"] = "imgui_internal:3099" defs["igOpenPopupEx"][1]["namespace"] = "ImGui" defs["igOpenPopupEx"][1]["ov_cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["ret"] = "void" @@ -23894,7 +23894,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:772" +defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:773" defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "void" @@ -23942,7 +23942,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:3450" +defs["igPlotEx"][1]["location"] = "imgui_internal:3456" defs["igPlotEx"][1]["namespace"] = "ImGui" defs["igPlotEx"][1]["ov_cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["ret"] = "int" @@ -23991,7 +23991,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:707" +defs["igPlotHistogram"][1]["location"] = "imgui:708" defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogram_FloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" @@ -24039,7 +24039,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:708" +defs["igPlotHistogram"][2]["location"] = "imgui:709" defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogram_FnFloatPtr" defs["igPlotHistogram"][2]["ret"] = "void" @@ -24089,7 +24089,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:705" +defs["igPlotLines"][1]["location"] = "imgui:706" defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLines_FloatPtr" defs["igPlotLines"][1]["ret"] = "void" @@ -24137,7 +24137,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:706" +defs["igPlotLines"][2]["location"] = "imgui:707" defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLines_FnFloatPtr" defs["igPlotLines"][2]["ret"] = "void" @@ -24154,7 +24154,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:901" +defs["igPopClipRect"][1]["location"] = "imgui:902" defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -24170,7 +24170,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:3274" +defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:3280" defs["igPopColumnsBackground"][1]["namespace"] = "ImGui" defs["igPopColumnsBackground"][1]["ov_cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["ret"] = "void" @@ -24186,7 +24186,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:3238" +defs["igPopFocusScope"][1]["location"] = "imgui_internal:3244" defs["igPopFocusScope"][1]["namespace"] = "ImGui" defs["igPopFocusScope"][1]["ov_cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["ret"] = "void" @@ -24358,7 +24358,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:900" +defs["igPushClipRect"][1]["location"] = "imgui:901" defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -24377,7 +24377,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:3272" +defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:3278" defs["igPushColumnClipRect"][1]["namespace"] = "ImGui" defs["igPushColumnClipRect"][1]["ov_cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["ret"] = "void" @@ -24393,7 +24393,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:3273" +defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:3279" defs["igPushColumnsBackground"][1]["namespace"] = "ImGui" defs["igPushColumnsBackground"][1]["ov_cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["ret"] = "void" @@ -24412,7 +24412,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:3237" +defs["igPushFocusScope"][1]["location"] = "imgui_internal:3243" defs["igPushFocusScope"][1]["namespace"] = "ImGui" defs["igPushFocusScope"][1]["ov_cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["ret"] = "void" @@ -24570,7 +24570,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:3074" +defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:3080" defs["igPushMultiItemsWidths"][1]["namespace"] = "ImGui" defs["igPushMultiItemsWidths"][1]["ov_cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["ret"] = "void" @@ -24589,7 +24589,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:3060" +defs["igPushOverrideID"][1]["location"] = "imgui_internal:3066" defs["igPushOverrideID"][1]["namespace"] = "ImGui" defs["igPushOverrideID"][1]["ov_cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["ret"] = "void" @@ -24807,7 +24807,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:3010" +defs["igRemoveContextHook"][1]["location"] = "imgui_internal:3016" defs["igRemoveContextHook"][1]["namespace"] = "ImGui" defs["igRemoveContextHook"][1]["ov_cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["ret"] = "void" @@ -24826,7 +24826,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:3021" +defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:3027" defs["igRemoveSettingsHandler"][1]["namespace"] = "ImGui" defs["igRemoveSettingsHandler"][1]["ov_cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["ret"] = "void" @@ -24874,7 +24874,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:3376" +defs["igRenderArrow"][1]["location"] = "imgui_internal:3382" defs["igRenderArrow"][1]["namespace"] = "ImGui" defs["igRenderArrow"][1]["ov_cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["ret"] = "void" @@ -24905,7 +24905,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:3379" +defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:3385" defs["igRenderArrowPointingAt"][1]["namespace"] = "ImGui" defs["igRenderArrowPointingAt"][1]["ov_cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["ret"] = "void" @@ -24930,7 +24930,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:3377" +defs["igRenderBullet"][1]["location"] = "imgui_internal:3383" defs["igRenderBullet"][1]["namespace"] = "ImGui" defs["igRenderBullet"][1]["ov_cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["ret"] = "void" @@ -24958,7 +24958,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:3378" +defs["igRenderCheckMark"][1]["location"] = "imgui_internal:3384" defs["igRenderCheckMark"][1]["namespace"] = "ImGui" defs["igRenderCheckMark"][1]["ov_cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["ret"] = "void" @@ -25000,7 +25000,7 @@ defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"] = {} defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["flags"] = "0" defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderColorRectWithAlphaCheckerboard"][1]["funcname"] = "RenderColorRectWithAlphaCheckerboard" -defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3367" +defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3373" defs["igRenderColorRectWithAlphaCheckerboard"][1]["namespace"] = "ImGui" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ov_cimguiname"] = "igRenderColorRectWithAlphaCheckerboard" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ret"] = "void" @@ -25022,7 +25022,7 @@ defs["igRenderDragDropTargetRect"][1]["call_args"] = "(bb,item_clip_rect)" defs["igRenderDragDropTargetRect"][1]["cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["defaults"] = {} defs["igRenderDragDropTargetRect"][1]["funcname"] = "RenderDragDropTargetRect" -defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3246" +defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3252" defs["igRenderDragDropTargetRect"][1]["namespace"] = "ImGui" defs["igRenderDragDropTargetRect"][1]["ov_cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["ret"] = "void" @@ -25055,7 +25055,7 @@ defs["igRenderFrame"][1]["defaults"] = {} defs["igRenderFrame"][1]["defaults"]["borders"] = "true" defs["igRenderFrame"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrame"][1]["funcname"] = "RenderFrame" -defs["igRenderFrame"][1]["location"] = "imgui_internal:3365" +defs["igRenderFrame"][1]["location"] = "imgui_internal:3371" defs["igRenderFrame"][1]["namespace"] = "ImGui" defs["igRenderFrame"][1]["ov_cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["ret"] = "void" @@ -25081,7 +25081,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:3366" +defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:3372" defs["igRenderFrameBorder"][1]["namespace"] = "ImGui" defs["igRenderFrameBorder"][1]["ov_cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["ret"] = "void" @@ -25115,7 +25115,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:3373" +defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3379" defs["igRenderMouseCursor"][1]["namespace"] = "ImGui" defs["igRenderMouseCursor"][1]["ov_cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["ret"] = "void" @@ -25141,7 +25141,7 @@ defs["igRenderNavCursor"][1]["cimguiname"] = "igRenderNavCursor" defs["igRenderNavCursor"][1]["defaults"] = {} defs["igRenderNavCursor"][1]["defaults"]["flags"] = "ImGuiNavRenderCursorFlags_None" defs["igRenderNavCursor"][1]["funcname"] = "RenderNavCursor" -defs["igRenderNavCursor"][1]["location"] = "imgui_internal:3368" +defs["igRenderNavCursor"][1]["location"] = "imgui_internal:3374" defs["igRenderNavCursor"][1]["namespace"] = "ImGui" defs["igRenderNavCursor"][1]["ov_cimguiname"] = "igRenderNavCursor" defs["igRenderNavCursor"][1]["ret"] = "void" @@ -25175,7 +25175,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:3380" +defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:3386" defs["igRenderRectFilledRangeH"][1]["namespace"] = "ImGui" defs["igRenderRectFilledRangeH"][1]["ov_cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["ret"] = "void" @@ -25206,7 +25206,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:3381" +defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:3387" defs["igRenderRectFilledWithHole"][1]["namespace"] = "ImGui" defs["igRenderRectFilledWithHole"][1]["ov_cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["ret"] = "void" @@ -25236,7 +25236,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:3360" +defs["igRenderText"][1]["location"] = "imgui_internal:3366" defs["igRenderText"][1]["namespace"] = "ImGui" defs["igRenderText"][1]["ov_cimguiname"] = "igRenderText" defs["igRenderText"][1]["ret"] = "void" @@ -25275,7 +25275,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:3362" +defs["igRenderTextClipped"][1]["location"] = "imgui_internal:3368" defs["igRenderTextClipped"][1]["namespace"] = "ImGui" defs["igRenderTextClipped"][1]["ov_cimguiname"] = "igRenderTextClipped" defs["igRenderTextClipped"][1]["ret"] = "void" @@ -25317,7 +25317,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:3363" +defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:3369" defs["igRenderTextClippedEx"][1]["namespace"] = "ImGui" defs["igRenderTextClippedEx"][1]["ov_cimguiname"] = "igRenderTextClippedEx" defs["igRenderTextClippedEx"][1]["ret"] = "void" @@ -25357,7 +25357,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:3364" +defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:3370" defs["igRenderTextEllipsis"][1]["namespace"] = "ImGui" defs["igRenderTextEllipsis"][1]["ov_cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["ret"] = "void" @@ -25385,7 +25385,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:3361" +defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:3367" defs["igRenderTextWrapped"][1]["namespace"] = "ImGui" defs["igRenderTextWrapped"][1]["ov_cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["ret"] = "void" @@ -25405,7 +25405,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:1017" +defs["igResetMouseDragDelta"][1]["location"] = "imgui:1018" defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -25448,7 +25448,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:1033" +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:1034" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -25468,7 +25468,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:1034" +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:1035" defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" @@ -25490,7 +25490,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:3045" +defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:3051" defs["igScrollToBringRectIntoView"][1]["namespace"] = "ImGui" defs["igScrollToBringRectIntoView"][1]["ov_cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["ret"] = "void" @@ -25510,7 +25510,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:3041" +defs["igScrollToItem"][1]["location"] = "imgui_internal:3047" defs["igScrollToItem"][1]["namespace"] = "ImGui" defs["igScrollToItem"][1]["ov_cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["ret"] = "void" @@ -25536,7 +25536,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:3042" +defs["igScrollToRect"][1]["location"] = "imgui_internal:3048" defs["igScrollToRect"][1]["namespace"] = "ImGui" defs["igScrollToRect"][1]["ov_cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["ret"] = "void" @@ -25565,7 +25565,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:3043" +defs["igScrollToRectEx"][1]["location"] = "imgui_internal:3049" defs["igScrollToRectEx"][1]["namespace"] = "ImGui" defs["igScrollToRectEx"][1]["nonUDT"] = 1 defs["igScrollToRectEx"][1]["ov_cimguiname"] = "igScrollToRectEx" @@ -25585,7 +25585,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:3396" +defs["igScrollbar"][1]["location"] = "imgui_internal:3402" defs["igScrollbar"][1]["namespace"] = "ImGui" defs["igScrollbar"][1]["ov_cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["ret"] = "void" @@ -25594,7 +25594,7 @@ defs["igScrollbar"][1]["stname"] = "" defs["igScrollbar"]["(ImGuiAxis)"] = defs["igScrollbar"][1] defs["igScrollbarEx"] = {} defs["igScrollbarEx"][1] = {} -defs["igScrollbarEx"][1]["args"] = "(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags flags)" +defs["igScrollbarEx"][1]["args"] = "(const ImRect bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags draw_rounding_flags)" defs["igScrollbarEx"][1]["argsT"] = {} defs["igScrollbarEx"][1]["argsT"][1] = {} defs["igScrollbarEx"][1]["argsT"][1]["name"] = "bb" @@ -25615,14 +25615,15 @@ defs["igScrollbarEx"][1]["argsT"][6] = {} defs["igScrollbarEx"][1]["argsT"][6]["name"] = "contents_v" defs["igScrollbarEx"][1]["argsT"][6]["type"] = "ImS64" defs["igScrollbarEx"][1]["argsT"][7] = {} -defs["igScrollbarEx"][1]["argsT"][7]["name"] = "flags" +defs["igScrollbarEx"][1]["argsT"][7]["name"] = "draw_rounding_flags" defs["igScrollbarEx"][1]["argsT"][7]["type"] = "ImDrawFlags" -defs["igScrollbarEx"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags flags)" -defs["igScrollbarEx"][1]["call_args"] = "(bb,id,axis,p_scroll_v,avail_v,contents_v,flags)" +defs["igScrollbarEx"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,ImS64* p_scroll_v,ImS64 avail_v,ImS64 contents_v,ImDrawFlags draw_rounding_flags=0)" +defs["igScrollbarEx"][1]["call_args"] = "(bb,id,axis,p_scroll_v,avail_v,contents_v,draw_rounding_flags)" defs["igScrollbarEx"][1]["cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["defaults"] = {} +defs["igScrollbarEx"][1]["defaults"]["draw_rounding_flags"] = "0" defs["igScrollbarEx"][1]["funcname"] = "ScrollbarEx" -defs["igScrollbarEx"][1]["location"] = "imgui_internal:3397" +defs["igScrollbarEx"][1]["location"] = "imgui_internal:3403" defs["igScrollbarEx"][1]["namespace"] = "ImGui" defs["igScrollbarEx"][1]["ov_cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["ret"] = "bool" @@ -25653,7 +25654,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:677" +defs["igSelectable"][1]["location"] = "imgui:678" defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectable_Bool" defs["igSelectable"][1]["ret"] = "bool" @@ -25681,7 +25682,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:678" +defs["igSelectable"][2]["location"] = "imgui:679" defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectable_BoolPtr" defs["igSelectable"][2]["ret"] = "bool" @@ -25721,7 +25722,7 @@ defs["igSeparatorEx"][1]["cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["defaults"] = {} defs["igSeparatorEx"][1]["defaults"]["thickness"] = "1.0f" defs["igSeparatorEx"][1]["funcname"] = "SeparatorEx" -defs["igSeparatorEx"][1]["location"] = "imgui_internal:3388" +defs["igSeparatorEx"][1]["location"] = "imgui_internal:3394" defs["igSeparatorEx"][1]["namespace"] = "ImGui" defs["igSeparatorEx"][1]["ov_cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["ret"] = "void" @@ -25768,7 +25769,7 @@ defs["igSeparatorTextEx"][1]["call_args"] = "(id,label,label_end,extra_width)" defs["igSeparatorTextEx"][1]["cimguiname"] = "igSeparatorTextEx" defs["igSeparatorTextEx"][1]["defaults"] = {} defs["igSeparatorTextEx"][1]["funcname"] = "SeparatorTextEx" -defs["igSeparatorTextEx"][1]["location"] = "imgui_internal:3389" +defs["igSeparatorTextEx"][1]["location"] = "imgui_internal:3395" defs["igSeparatorTextEx"][1]["namespace"] = "ImGui" defs["igSeparatorTextEx"][1]["ov_cimguiname"] = "igSeparatorTextEx" defs["igSeparatorTextEx"][1]["ret"] = "void" @@ -25790,7 +25791,7 @@ defs["igSetActiveID"][1]["call_args"] = "(id,window)" defs["igSetActiveID"][1]["cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["defaults"] = {} defs["igSetActiveID"][1]["funcname"] = "SetActiveID" -defs["igSetActiveID"][1]["location"] = "imgui_internal:3053" +defs["igSetActiveID"][1]["location"] = "imgui_internal:3059" defs["igSetActiveID"][1]["namespace"] = "ImGui" defs["igSetActiveID"][1]["ov_cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["ret"] = "void" @@ -25806,7 +25807,7 @@ defs["igSetActiveIdUsingAllKeyboardKeys"][1]["call_args"] = "()" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["defaults"] = {} defs["igSetActiveIdUsingAllKeyboardKeys"][1]["funcname"] = "SetActiveIdUsingAllKeyboardKeys" -defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3174" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3180" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["namespace"] = "ImGui" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ov_cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ret"] = "void" @@ -25832,7 +25833,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:1051" +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:1052" defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -25851,7 +25852,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:1025" +defs["igSetClipboardText"][1]["location"] = "imgui:1026" defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -25870,7 +25871,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:651" +defs["igSetColorEditOptions"][1]["location"] = "imgui:652" defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" @@ -25892,7 +25893,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:855" +defs["igSetColumnOffset"][1]["location"] = "imgui:856" defs["igSetColumnOffset"][1]["namespace"] = "ImGui" defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" @@ -25914,7 +25915,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:853" +defs["igSetColumnWidth"][1]["location"] = "imgui:854" defs["igSetColumnWidth"][1]["namespace"] = "ImGui" defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" @@ -25952,7 +25953,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:2989" +defs["igSetCurrentFont"][1]["location"] = "imgui_internal:2995" defs["igSetCurrentFont"][1]["namespace"] = "ImGui" defs["igSetCurrentFont"][1]["ov_cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["ret"] = "void" @@ -26057,7 +26058,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:883" +defs["igSetDragDropPayload"][1]["location"] = "imgui:884" defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" @@ -26079,7 +26080,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:3054" +defs["igSetFocusID"][1]["location"] = "imgui_internal:3060" defs["igSetFocusID"][1]["namespace"] = "ImGui" defs["igSetFocusID"][1]["ov_cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["ret"] = "void" @@ -26098,7 +26099,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:3057" +defs["igSetHoveredID"][1]["location"] = "imgui_internal:3063" defs["igSetHoveredID"][1]["namespace"] = "ImGui" defs["igSetHoveredID"][1]["ov_cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["ret"] = "void" @@ -26114,7 +26115,7 @@ defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" -defs["igSetItemDefaultFocus"][1]["location"] = "imgui:904" +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:905" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" @@ -26133,7 +26134,7 @@ defs["igSetItemKeyOwner"][1]["call_args"] = "(key)" defs["igSetItemKeyOwner"][1]["cimguiname"] = "igSetItemKeyOwner" defs["igSetItemKeyOwner"][1]["defaults"] = {} defs["igSetItemKeyOwner"][1]["funcname"] = "SetItemKeyOwner" -defs["igSetItemKeyOwner"][1]["location"] = "imgui:999" +defs["igSetItemKeyOwner"][1]["location"] = "imgui:1000" defs["igSetItemKeyOwner"][1]["namespace"] = "ImGui" defs["igSetItemKeyOwner"][1]["ov_cimguiname"] = "igSetItemKeyOwner_Nil" defs["igSetItemKeyOwner"][1]["ret"] = "void" @@ -26153,7 +26154,7 @@ defs["igSetItemKeyOwner"][2]["call_args"] = "(key,flags)" defs["igSetItemKeyOwner"][2]["cimguiname"] = "igSetItemKeyOwner" defs["igSetItemKeyOwner"][2]["defaults"] = {} defs["igSetItemKeyOwner"][2]["funcname"] = "SetItemKeyOwner" -defs["igSetItemKeyOwner"][2]["location"] = "imgui_internal:3191" +defs["igSetItemKeyOwner"][2]["location"] = "imgui_internal:3197" defs["igSetItemKeyOwner"][2]["namespace"] = "ImGui" defs["igSetItemKeyOwner"][2]["ov_cimguiname"] = "igSetItemKeyOwner_InputFlags" defs["igSetItemKeyOwner"][2]["ret"] = "void" @@ -26177,7 +26178,7 @@ defs["igSetItemTooltip"][1]["cimguiname"] = "igSetItemTooltip" defs["igSetItemTooltip"][1]["defaults"] = {} defs["igSetItemTooltip"][1]["funcname"] = "SetItemTooltip" defs["igSetItemTooltip"][1]["isvararg"] = "...)" -defs["igSetItemTooltip"][1]["location"] = "imgui:745" +defs["igSetItemTooltip"][1]["location"] = "imgui:746" defs["igSetItemTooltip"][1]["namespace"] = "ImGui" defs["igSetItemTooltip"][1]["ov_cimguiname"] = "igSetItemTooltip" defs["igSetItemTooltip"][1]["ret"] = "void" @@ -26199,7 +26200,7 @@ defs["igSetItemTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetItemTooltipV"][1]["cimguiname"] = "igSetItemTooltipV" defs["igSetItemTooltipV"][1]["defaults"] = {} defs["igSetItemTooltipV"][1]["funcname"] = "SetItemTooltipV" -defs["igSetItemTooltipV"][1]["location"] = "imgui:746" +defs["igSetItemTooltipV"][1]["location"] = "imgui:747" defs["igSetItemTooltipV"][1]["namespace"] = "ImGui" defs["igSetItemTooltipV"][1]["ov_cimguiname"] = "igSetItemTooltipV" defs["igSetItemTooltipV"][1]["ret"] = "void" @@ -26225,7 +26226,7 @@ defs["igSetKeyOwner"][1]["cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["defaults"] = {} defs["igSetKeyOwner"][1]["defaults"]["flags"] = "0" defs["igSetKeyOwner"][1]["funcname"] = "SetKeyOwner" -defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3189" +defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3195" defs["igSetKeyOwner"][1]["namespace"] = "ImGui" defs["igSetKeyOwner"][1]["ov_cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["ret"] = "void" @@ -26251,7 +26252,7 @@ defs["igSetKeyOwnersForKeyChord"][1]["cimguiname"] = "igSetKeyOwnersForKeyChord" defs["igSetKeyOwnersForKeyChord"][1]["defaults"] = {} defs["igSetKeyOwnersForKeyChord"][1]["defaults"]["flags"] = "0" defs["igSetKeyOwnersForKeyChord"][1]["funcname"] = "SetKeyOwnersForKeyChord" -defs["igSetKeyOwnersForKeyChord"][1]["location"] = "imgui_internal:3190" +defs["igSetKeyOwnersForKeyChord"][1]["location"] = "imgui_internal:3196" defs["igSetKeyOwnersForKeyChord"][1]["namespace"] = "ImGui" defs["igSetKeyOwnersForKeyChord"][1]["ov_cimguiname"] = "igSetKeyOwnersForKeyChord" defs["igSetKeyOwnersForKeyChord"][1]["ret"] = "void" @@ -26271,7 +26272,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:905" +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:906" defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -26299,7 +26300,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:3071" +defs["igSetLastItemData"][1]["location"] = "imgui_internal:3077" defs["igSetLastItemData"][1]["namespace"] = "ImGui" defs["igSetLastItemData"][1]["ov_cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["ret"] = "void" @@ -26318,7 +26319,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:1019" +defs["igSetMouseCursor"][1]["location"] = "imgui:1020" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" @@ -26337,7 +26338,7 @@ defs["igSetNavCursorVisible"][1]["call_args"] = "(visible)" defs["igSetNavCursorVisible"][1]["cimguiname"] = "igSetNavCursorVisible" defs["igSetNavCursorVisible"][1]["defaults"] = {} defs["igSetNavCursorVisible"][1]["funcname"] = "SetNavCursorVisible" -defs["igSetNavCursorVisible"][1]["location"] = "imgui:908" +defs["igSetNavCursorVisible"][1]["location"] = "imgui:909" defs["igSetNavCursorVisible"][1]["namespace"] = "ImGui" defs["igSetNavCursorVisible"][1]["ov_cimguiname"] = "igSetNavCursorVisible" defs["igSetNavCursorVisible"][1]["ret"] = "void" @@ -26353,7 +26354,7 @@ defs["igSetNavCursorVisibleAfterMove"][1]["call_args"] = "()" defs["igSetNavCursorVisibleAfterMove"][1]["cimguiname"] = "igSetNavCursorVisibleAfterMove" defs["igSetNavCursorVisibleAfterMove"][1]["defaults"] = {} defs["igSetNavCursorVisibleAfterMove"][1]["funcname"] = "SetNavCursorVisibleAfterMove" -defs["igSetNavCursorVisibleAfterMove"][1]["location"] = "imgui_internal:3132" +defs["igSetNavCursorVisibleAfterMove"][1]["location"] = "imgui_internal:3138" defs["igSetNavCursorVisibleAfterMove"][1]["namespace"] = "ImGui" defs["igSetNavCursorVisibleAfterMove"][1]["ov_cimguiname"] = "igSetNavCursorVisibleAfterMove" defs["igSetNavCursorVisibleAfterMove"][1]["ret"] = "void" @@ -26372,7 +26373,7 @@ defs["igSetNavFocusScope"][1]["call_args"] = "(focus_scope_id)" defs["igSetNavFocusScope"][1]["cimguiname"] = "igSetNavFocusScope" defs["igSetNavFocusScope"][1]["defaults"] = {} defs["igSetNavFocusScope"][1]["funcname"] = "SetNavFocusScope" -defs["igSetNavFocusScope"][1]["location"] = "imgui_internal:3136" +defs["igSetNavFocusScope"][1]["location"] = "imgui_internal:3142" defs["igSetNavFocusScope"][1]["namespace"] = "ImGui" defs["igSetNavFocusScope"][1]["ov_cimguiname"] = "igSetNavFocusScope" defs["igSetNavFocusScope"][1]["ret"] = "void" @@ -26400,7 +26401,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:3135" +defs["igSetNavID"][1]["location"] = "imgui_internal:3141" defs["igSetNavID"][1]["namespace"] = "ImGui" defs["igSetNavID"][1]["ov_cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["ret"] = "void" @@ -26419,7 +26420,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:3134" +defs["igSetNavWindow"][1]["location"] = "imgui_internal:3140" defs["igSetNavWindow"][1]["namespace"] = "ImGui" defs["igSetNavWindow"][1]["ov_cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["ret"] = "void" @@ -26438,7 +26439,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:973" +defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:974" defs["igSetNextFrameWantCaptureKeyboard"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureKeyboard"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["ret"] = "void" @@ -26457,7 +26458,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:1020" +defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:1021" defs["igSetNextFrameWantCaptureMouse"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureMouse"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["ret"] = "void" @@ -26473,7 +26474,7 @@ defs["igSetNextItemAllowOverlap"][1]["call_args"] = "()" defs["igSetNextItemAllowOverlap"][1]["cimguiname"] = "igSetNextItemAllowOverlap" defs["igSetNextItemAllowOverlap"][1]["defaults"] = {} defs["igSetNextItemAllowOverlap"][1]["funcname"] = "SetNextItemAllowOverlap" -defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:911" +defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:912" defs["igSetNextItemAllowOverlap"][1]["namespace"] = "ImGui" defs["igSetNextItemAllowOverlap"][1]["ov_cimguiname"] = "igSetNextItemAllowOverlap" defs["igSetNextItemAllowOverlap"][1]["ret"] = "void" @@ -26496,7 +26497,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:671" +defs["igSetNextItemOpen"][1]["location"] = "imgui:672" defs["igSetNextItemOpen"][1]["namespace"] = "ImGui" defs["igSetNextItemOpen"][1]["ov_cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["ret"] = "void" @@ -26518,7 +26519,7 @@ defs["igSetNextItemRefVal"][1]["call_args"] = "(data_type,p_data)" defs["igSetNextItemRefVal"][1]["cimguiname"] = "igSetNextItemRefVal" defs["igSetNextItemRefVal"][1]["defaults"] = {} defs["igSetNextItemRefVal"][1]["funcname"] = "SetNextItemRefVal" -defs["igSetNextItemRefVal"][1]["location"] = "imgui_internal:3442" +defs["igSetNextItemRefVal"][1]["location"] = "imgui_internal:3448" defs["igSetNextItemRefVal"][1]["namespace"] = "ImGui" defs["igSetNextItemRefVal"][1]["ov_cimguiname"] = "igSetNextItemRefVal" defs["igSetNextItemRefVal"][1]["ret"] = "void" @@ -26537,7 +26538,7 @@ defs["igSetNextItemSelectionUserData"][1]["call_args"] = "(selection_user_data)" defs["igSetNextItemSelectionUserData"][1]["cimguiname"] = "igSetNextItemSelectionUserData" defs["igSetNextItemSelectionUserData"][1]["defaults"] = {} defs["igSetNextItemSelectionUserData"][1]["funcname"] = "SetNextItemSelectionUserData" -defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui:689" +defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui:690" defs["igSetNextItemSelectionUserData"][1]["namespace"] = "ImGui" defs["igSetNextItemSelectionUserData"][1]["ov_cimguiname"] = "igSetNextItemSelectionUserData" defs["igSetNextItemSelectionUserData"][1]["ret"] = "void" @@ -26560,7 +26561,7 @@ defs["igSetNextItemShortcut"][1]["cimguiname"] = "igSetNextItemShortcut" defs["igSetNextItemShortcut"][1]["defaults"] = {} defs["igSetNextItemShortcut"][1]["defaults"]["flags"] = "0" defs["igSetNextItemShortcut"][1]["funcname"] = "SetNextItemShortcut" -defs["igSetNextItemShortcut"][1]["location"] = "imgui:991" +defs["igSetNextItemShortcut"][1]["location"] = "imgui:992" defs["igSetNextItemShortcut"][1]["namespace"] = "ImGui" defs["igSetNextItemShortcut"][1]["ov_cimguiname"] = "igSetNextItemShortcut" defs["igSetNextItemShortcut"][1]["ret"] = "void" @@ -26579,7 +26580,7 @@ defs["igSetNextItemStorageID"][1]["call_args"] = "(storage_id)" defs["igSetNextItemStorageID"][1]["cimguiname"] = "igSetNextItemStorageID" defs["igSetNextItemStorageID"][1]["defaults"] = {} defs["igSetNextItemStorageID"][1]["funcname"] = "SetNextItemStorageID" -defs["igSetNextItemStorageID"][1]["location"] = "imgui:672" +defs["igSetNextItemStorageID"][1]["location"] = "imgui:673" defs["igSetNextItemStorageID"][1]["namespace"] = "ImGui" defs["igSetNextItemStorageID"][1]["ov_cimguiname"] = "igSetNextItemStorageID" defs["igSetNextItemStorageID"][1]["ret"] = "void" @@ -26721,7 +26722,7 @@ defs["igSetNextWindowRefreshPolicy"][1]["call_args"] = "(flags)" defs["igSetNextWindowRefreshPolicy"][1]["cimguiname"] = "igSetNextWindowRefreshPolicy" defs["igSetNextWindowRefreshPolicy"][1]["defaults"] = {} defs["igSetNextWindowRefreshPolicy"][1]["funcname"] = "SetNextWindowRefreshPolicy" -defs["igSetNextWindowRefreshPolicy"][1]["location"] = "imgui_internal:2986" +defs["igSetNextWindowRefreshPolicy"][1]["location"] = "imgui_internal:2992" defs["igSetNextWindowRefreshPolicy"][1]["namespace"] = "ImGui" defs["igSetNextWindowRefreshPolicy"][1]["ov_cimguiname"] = "igSetNextWindowRefreshPolicy" defs["igSetNextWindowRefreshPolicy"][1]["ret"] = "void" @@ -26839,7 +26840,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:3037" +defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:3043" defs["igSetScrollFromPosX"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][2]["ov_cimguiname"] = "igSetScrollFromPosX_WindowPtr" defs["igSetScrollFromPosX"][2]["ret"] = "void" @@ -26886,7 +26887,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:3038" +defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:3044" defs["igSetScrollFromPosY"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][2]["ov_cimguiname"] = "igSetScrollFromPosY_WindowPtr" defs["igSetScrollFromPosY"][2]["ret"] = "void" @@ -26966,7 +26967,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:3035" +defs["igSetScrollX"][2]["location"] = "imgui_internal:3041" defs["igSetScrollX"][2]["namespace"] = "ImGui" defs["igSetScrollX"][2]["ov_cimguiname"] = "igSetScrollX_WindowPtr" defs["igSetScrollX"][2]["ret"] = "void" @@ -27006,7 +27007,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:3036" +defs["igSetScrollY"][2]["location"] = "imgui_internal:3042" defs["igSetScrollY"][2]["namespace"] = "ImGui" defs["igSetScrollY"][2]["ov_cimguiname"] = "igSetScrollY_WindowPtr" defs["igSetScrollY"][2]["ret"] = "void" @@ -27032,7 +27033,7 @@ defs["igSetShortcutRouting"][1]["call_args"] = "(key_chord,flags,owner_id)" defs["igSetShortcutRouting"][1]["cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["defaults"] = {} defs["igSetShortcutRouting"][1]["funcname"] = "SetShortcutRouting" -defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3225" +defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3231" defs["igSetShortcutRouting"][1]["namespace"] = "ImGui" defs["igSetShortcutRouting"][1]["ov_cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["ret"] = "bool" @@ -27051,7 +27052,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:951" +defs["igSetStateStorage"][1]["location"] = "imgui:952" defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -27070,7 +27071,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:865" +defs["igSetTabItemClosed"][1]["location"] = "imgui:866" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -27093,7 +27094,7 @@ defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" -defs["igSetTooltip"][1]["location"] = "imgui:737" +defs["igSetTooltip"][1]["location"] = "imgui:738" defs["igSetTooltip"][1]["namespace"] = "ImGui" defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" @@ -27115,7 +27116,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:738" +defs["igSetTooltipV"][1]["location"] = "imgui:739" defs["igSetTooltipV"][1]["namespace"] = "ImGui" defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" @@ -27137,7 +27138,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:3269" +defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:3275" defs["igSetWindowClipRectBeforeSetChannel"][1]["namespace"] = "ImGui" defs["igSetWindowClipRectBeforeSetChannel"][1]["ov_cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["ret"] = "void" @@ -27208,7 +27209,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:2966" +defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:2972" defs["igSetWindowCollapsed"][3]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][3]["ov_cimguiname"] = "igSetWindowCollapsed_WindowPtr" defs["igSetWindowCollapsed"][3]["ret"] = "void" @@ -27282,7 +27283,7 @@ defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["call_args"] = "(window) defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["defaults"] = {} defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["funcname"] = "SetWindowHiddenAndSkipItemsForCurrentFrame" -defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["location"] = "imgui_internal:2968" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["location"] = "imgui_internal:2974" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["namespace"] = "ImGui" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ov_cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ret"] = "void" @@ -27307,7 +27308,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:2967" +defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:2973" defs["igSetWindowHitTestHole"][1]["namespace"] = "ImGui" defs["igSetWindowHitTestHole"][1]["ov_cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["ret"] = "void" @@ -27329,7 +27330,7 @@ defs["igSetWindowParentWindowForFocusRoute"][1]["call_args"] = "(window,parent_w defs["igSetWindowParentWindowForFocusRoute"][1]["cimguiname"] = "igSetWindowParentWindowForFocusRoute" defs["igSetWindowParentWindowForFocusRoute"][1]["defaults"] = {} defs["igSetWindowParentWindowForFocusRoute"][1]["funcname"] = "SetWindowParentWindowForFocusRoute" -defs["igSetWindowParentWindowForFocusRoute"][1]["location"] = "imgui_internal:2969" +defs["igSetWindowParentWindowForFocusRoute"][1]["location"] = "imgui_internal:2975" defs["igSetWindowParentWindowForFocusRoute"][1]["namespace"] = "ImGui" defs["igSetWindowParentWindowForFocusRoute"][1]["ov_cimguiname"] = "igSetWindowParentWindowForFocusRoute" defs["igSetWindowParentWindowForFocusRoute"][1]["ret"] = "void" @@ -27400,7 +27401,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:2964" +defs["igSetWindowPos"][3]["location"] = "imgui_internal:2970" defs["igSetWindowPos"][3]["namespace"] = "ImGui" defs["igSetWindowPos"][3]["ov_cimguiname"] = "igSetWindowPos_WindowPtr" defs["igSetWindowPos"][3]["ret"] = "void" @@ -27473,7 +27474,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:2965" +defs["igSetWindowSize"][3]["location"] = "imgui_internal:2971" defs["igSetWindowSize"][3]["namespace"] = "ImGui" defs["igSetWindowSize"][3]["ov_cimguiname"] = "igSetWindowSize_WindowPtr" defs["igSetWindowSize"][3]["ret"] = "void" @@ -27497,7 +27498,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:3014" +defs["igSetWindowViewport"][1]["location"] = "imgui_internal:3020" defs["igSetWindowViewport"][1]["namespace"] = "ImGui" defs["igSetWindowViewport"][1]["ov_cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["ret"] = "void" @@ -27534,7 +27535,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:3453" +defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3459" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ov_cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ret"] = "void" @@ -27574,7 +27575,7 @@ defs["igShadeVertsLinearUV"][1]["call_args"] = "(draw_list,vert_start_idx,vert_e defs["igShadeVertsLinearUV"][1]["cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["defaults"] = {} defs["igShadeVertsLinearUV"][1]["funcname"] = "ShadeVertsLinearUV" -defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3454" +defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3460" defs["igShadeVertsLinearUV"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearUV"][1]["ov_cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["ret"] = "void" @@ -27611,7 +27612,7 @@ defs["igShadeVertsTransformPos"][1]["call_args"] = "(draw_list,vert_start_idx,ve defs["igShadeVertsTransformPos"][1]["cimguiname"] = "igShadeVertsTransformPos" defs["igShadeVertsTransformPos"][1]["defaults"] = {} defs["igShadeVertsTransformPos"][1]["funcname"] = "ShadeVertsTransformPos" -defs["igShadeVertsTransformPos"][1]["location"] = "imgui_internal:3455" +defs["igShadeVertsTransformPos"][1]["location"] = "imgui_internal:3461" defs["igShadeVertsTransformPos"][1]["namespace"] = "ImGui" defs["igShadeVertsTransformPos"][1]["ov_cimguiname"] = "igShadeVertsTransformPos" defs["igShadeVertsTransformPos"][1]["ret"] = "void" @@ -27634,7 +27635,7 @@ defs["igShortcut"][1]["cimguiname"] = "igShortcut" defs["igShortcut"][1]["defaults"] = {} defs["igShortcut"][1]["defaults"]["flags"] = "0" defs["igShortcut"][1]["funcname"] = "Shortcut" -defs["igShortcut"][1]["location"] = "imgui:990" +defs["igShortcut"][1]["location"] = "imgui:991" defs["igShortcut"][1]["namespace"] = "ImGui" defs["igShortcut"][1]["ov_cimguiname"] = "igShortcut_Nil" defs["igShortcut"][1]["ret"] = "bool" @@ -27657,7 +27658,7 @@ defs["igShortcut"][2]["call_args"] = "(key_chord,flags,owner_id)" defs["igShortcut"][2]["cimguiname"] = "igShortcut" defs["igShortcut"][2]["defaults"] = {} defs["igShortcut"][2]["funcname"] = "Shortcut" -defs["igShortcut"][2]["location"] = "imgui_internal:3224" +defs["igShortcut"][2]["location"] = "imgui_internal:3230" defs["igShortcut"][2]["namespace"] = "ImGui" defs["igShortcut"][2]["ov_cimguiname"] = "igShortcut_ID" defs["igShortcut"][2]["ret"] = "bool" @@ -27737,7 +27738,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:3484" +defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3490" defs["igShowFontAtlas"][1]["namespace"] = "ImGui" defs["igShowFontAtlas"][1]["ov_cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["ret"] = "void" @@ -27876,7 +27877,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:3075" +defs["igShrinkWidths"][1]["location"] = "imgui_internal:3081" defs["igShrinkWidths"][1]["namespace"] = "ImGui" defs["igShrinkWidths"][1]["ov_cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["ret"] = "void" @@ -27892,7 +27893,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:2998" +defs["igShutdown"][1]["location"] = "imgui_internal:3004" defs["igShutdown"][1]["namespace"] = "ImGui" defs["igShutdown"][1]["ov_cimguiname"] = "igShutdown" defs["igShutdown"][1]["ret"] = "void" @@ -27930,7 +27931,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:614" +defs["igSliderAngle"][1]["location"] = "imgui:615" defs["igSliderAngle"][1]["namespace"] = "ImGui" defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" @@ -27973,7 +27974,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:3406" +defs["igSliderBehavior"][1]["location"] = "imgui_internal:3412" defs["igSliderBehavior"][1]["namespace"] = "ImGui" defs["igSliderBehavior"][1]["ov_cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["ret"] = "bool" @@ -28009,7 +28010,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:610" +defs["igSliderFloat"][1]["location"] = "imgui:611" defs["igSliderFloat"][1]["namespace"] = "ImGui" defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" @@ -28045,7 +28046,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:611" +defs["igSliderFloat2"][1]["location"] = "imgui:612" defs["igSliderFloat2"][1]["namespace"] = "ImGui" defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" @@ -28081,7 +28082,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:612" +defs["igSliderFloat3"][1]["location"] = "imgui:613" defs["igSliderFloat3"][1]["namespace"] = "ImGui" defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" @@ -28117,7 +28118,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:613" +defs["igSliderFloat4"][1]["location"] = "imgui:614" defs["igSliderFloat4"][1]["namespace"] = "ImGui" defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" @@ -28153,7 +28154,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:615" +defs["igSliderInt"][1]["location"] = "imgui:616" defs["igSliderInt"][1]["namespace"] = "ImGui" defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" @@ -28189,7 +28190,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:616" +defs["igSliderInt2"][1]["location"] = "imgui:617" defs["igSliderInt2"][1]["namespace"] = "ImGui" defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" @@ -28225,7 +28226,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:617" +defs["igSliderInt3"][1]["location"] = "imgui:618" defs["igSliderInt3"][1]["namespace"] = "ImGui" defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" @@ -28261,7 +28262,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:618" +defs["igSliderInt4"][1]["location"] = "imgui:619" defs["igSliderInt4"][1]["namespace"] = "ImGui" defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" @@ -28300,7 +28301,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:619" +defs["igSliderScalar"][1]["location"] = "imgui:620" defs["igSliderScalar"][1]["namespace"] = "ImGui" defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -28342,7 +28343,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:620" +defs["igSliderScalarN"][1]["location"] = "imgui:621" defs["igSliderScalarN"][1]["namespace"] = "ImGui" defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -28426,7 +28427,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:3407" +defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3413" defs["igSplitterBehavior"][1]["namespace"] = "ImGui" defs["igSplitterBehavior"][1]["ov_cimguiname"] = "igSplitterBehavior" defs["igSplitterBehavior"][1]["ret"] = "bool" @@ -28445,7 +28446,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:3004" +defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:3010" defs["igStartMouseMovingWindow"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindow"][1]["ov_cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["ret"] = "void" @@ -28527,7 +28528,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:3345" +defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:3351" defs["igTabBarCloseTab"][1]["namespace"] = "ImGui" defs["igTabBarCloseTab"][1]["ov_cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["ret"] = "void" @@ -28549,7 +28550,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:3339" +defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3345" defs["igTabBarFindTabByID"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByID"][1]["ov_cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["ret"] = "ImGuiTabItem*" @@ -28571,7 +28572,7 @@ defs["igTabBarFindTabByOrder"][1]["call_args"] = "(tab_bar,order)" defs["igTabBarFindTabByOrder"][1]["cimguiname"] = "igTabBarFindTabByOrder" defs["igTabBarFindTabByOrder"][1]["defaults"] = {} defs["igTabBarFindTabByOrder"][1]["funcname"] = "TabBarFindTabByOrder" -defs["igTabBarFindTabByOrder"][1]["location"] = "imgui_internal:3340" +defs["igTabBarFindTabByOrder"][1]["location"] = "imgui_internal:3346" defs["igTabBarFindTabByOrder"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByOrder"][1]["ov_cimguiname"] = "igTabBarFindTabByOrder" defs["igTabBarFindTabByOrder"][1]["ret"] = "ImGuiTabItem*" @@ -28590,7 +28591,7 @@ defs["igTabBarGetCurrentTab"][1]["call_args"] = "(tab_bar)" defs["igTabBarGetCurrentTab"][1]["cimguiname"] = "igTabBarGetCurrentTab" defs["igTabBarGetCurrentTab"][1]["defaults"] = {} defs["igTabBarGetCurrentTab"][1]["funcname"] = "TabBarGetCurrentTab" -defs["igTabBarGetCurrentTab"][1]["location"] = "imgui_internal:3341" +defs["igTabBarGetCurrentTab"][1]["location"] = "imgui_internal:3347" defs["igTabBarGetCurrentTab"][1]["namespace"] = "ImGui" defs["igTabBarGetCurrentTab"][1]["ov_cimguiname"] = "igTabBarGetCurrentTab" defs["igTabBarGetCurrentTab"][1]["ret"] = "ImGuiTabItem*" @@ -28612,7 +28613,7 @@ defs["igTabBarGetTabName"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarGetTabName"][1]["cimguiname"] = "igTabBarGetTabName" defs["igTabBarGetTabName"][1]["defaults"] = {} defs["igTabBarGetTabName"][1]["funcname"] = "TabBarGetTabName" -defs["igTabBarGetTabName"][1]["location"] = "imgui_internal:3343" +defs["igTabBarGetTabName"][1]["location"] = "imgui_internal:3349" defs["igTabBarGetTabName"][1]["namespace"] = "ImGui" defs["igTabBarGetTabName"][1]["ov_cimguiname"] = "igTabBarGetTabName" defs["igTabBarGetTabName"][1]["ret"] = "const char*" @@ -28634,7 +28635,7 @@ defs["igTabBarGetTabOrder"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarGetTabOrder"][1]["cimguiname"] = "igTabBarGetTabOrder" defs["igTabBarGetTabOrder"][1]["defaults"] = {} defs["igTabBarGetTabOrder"][1]["funcname"] = "TabBarGetTabOrder" -defs["igTabBarGetTabOrder"][1]["location"] = "imgui_internal:3342" +defs["igTabBarGetTabOrder"][1]["location"] = "imgui_internal:3348" defs["igTabBarGetTabOrder"][1]["namespace"] = "ImGui" defs["igTabBarGetTabOrder"][1]["ov_cimguiname"] = "igTabBarGetTabOrder" defs["igTabBarGetTabOrder"][1]["ret"] = "int" @@ -28653,7 +28654,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:3350" +defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3356" defs["igTabBarProcessReorder"][1]["namespace"] = "ImGui" defs["igTabBarProcessReorder"][1]["ov_cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["ret"] = "bool" @@ -28675,7 +28676,7 @@ defs["igTabBarQueueFocus"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarQueueFocus"][1]["cimguiname"] = "igTabBarQueueFocus" defs["igTabBarQueueFocus"][1]["defaults"] = {} defs["igTabBarQueueFocus"][1]["funcname"] = "TabBarQueueFocus" -defs["igTabBarQueueFocus"][1]["location"] = "imgui_internal:3346" +defs["igTabBarQueueFocus"][1]["location"] = "imgui_internal:3352" defs["igTabBarQueueFocus"][1]["namespace"] = "ImGui" defs["igTabBarQueueFocus"][1]["ov_cimguiname"] = "igTabBarQueueFocus_TabItemPtr" defs["igTabBarQueueFocus"][1]["ret"] = "void" @@ -28695,7 +28696,7 @@ defs["igTabBarQueueFocus"][2]["call_args"] = "(tab_bar,tab_name)" defs["igTabBarQueueFocus"][2]["cimguiname"] = "igTabBarQueueFocus" defs["igTabBarQueueFocus"][2]["defaults"] = {} defs["igTabBarQueueFocus"][2]["funcname"] = "TabBarQueueFocus" -defs["igTabBarQueueFocus"][2]["location"] = "imgui_internal:3347" +defs["igTabBarQueueFocus"][2]["location"] = "imgui_internal:3353" defs["igTabBarQueueFocus"][2]["namespace"] = "ImGui" defs["igTabBarQueueFocus"][2]["ov_cimguiname"] = "igTabBarQueueFocus_Str" defs["igTabBarQueueFocus"][2]["ret"] = "void" @@ -28721,7 +28722,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:3348" +defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3354" defs["igTabBarQueueReorder"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorder"][1]["ov_cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["ret"] = "void" @@ -28746,7 +28747,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:3349" +defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3355" defs["igTabBarQueueReorderFromMousePos"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorderFromMousePos"][1]["ov_cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["ret"] = "void" @@ -28768,7 +28769,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:3344" +defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:3350" defs["igTabBarRemoveTab"][1]["namespace"] = "ImGui" defs["igTabBarRemoveTab"][1]["ov_cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["ret"] = "void" @@ -28796,7 +28797,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:3354" +defs["igTabItemBackground"][1]["location"] = "imgui_internal:3360" defs["igTabItemBackground"][1]["namespace"] = "ImGui" defs["igTabItemBackground"][1]["ov_cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["ret"] = "void" @@ -28819,7 +28820,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:864" +defs["igTabItemButton"][1]["location"] = "imgui:865" defs["igTabItemButton"][1]["namespace"] = "ImGui" defs["igTabItemButton"][1]["ov_cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["ret"] = "bool" @@ -28844,7 +28845,7 @@ defs["igTabItemCalcSize"][1]["call_args"] = "(label,has_close_button_or_unsaved_ defs["igTabItemCalcSize"][1]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][1]["defaults"] = {} defs["igTabItemCalcSize"][1]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3352" +defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3358" defs["igTabItemCalcSize"][1]["namespace"] = "ImGui" defs["igTabItemCalcSize"][1]["nonUDT"] = 1 defs["igTabItemCalcSize"][1]["ov_cimguiname"] = "igTabItemCalcSize_Str" @@ -28865,7 +28866,7 @@ defs["igTabItemCalcSize"][2]["call_args"] = "(window)" defs["igTabItemCalcSize"][2]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][2]["defaults"] = {} defs["igTabItemCalcSize"][2]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3353" +defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3359" defs["igTabItemCalcSize"][2]["namespace"] = "ImGui" defs["igTabItemCalcSize"][2]["nonUDT"] = 1 defs["igTabItemCalcSize"][2]["ov_cimguiname"] = "igTabItemCalcSize_WindowPtr" @@ -28898,7 +28899,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:3351" +defs["igTabItemEx"][1]["location"] = "imgui_internal:3357" defs["igTabItemEx"][1]["namespace"] = "ImGui" defs["igTabItemEx"][1]["ov_cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["ret"] = "bool" @@ -28944,7 +28945,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:3355" +defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:3361" defs["igTabItemLabelAndCloseButton"][1]["namespace"] = "ImGui" defs["igTabItemLabelAndCloseButton"][1]["ov_cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["ret"] = "void" @@ -28960,7 +28961,7 @@ defs["igTableAngledHeadersRow"][1]["call_args"] = "()" defs["igTableAngledHeadersRow"][1]["cimguiname"] = "igTableAngledHeadersRow" defs["igTableAngledHeadersRow"][1]["defaults"] = {} defs["igTableAngledHeadersRow"][1]["funcname"] = "TableAngledHeadersRow" -defs["igTableAngledHeadersRow"][1]["location"] = "imgui:829" +defs["igTableAngledHeadersRow"][1]["location"] = "imgui:830" defs["igTableAngledHeadersRow"][1]["namespace"] = "ImGui" defs["igTableAngledHeadersRow"][1]["ov_cimguiname"] = "igTableAngledHeadersRow" defs["igTableAngledHeadersRow"][1]["ret"] = "void" @@ -28991,7 +28992,7 @@ defs["igTableAngledHeadersRowEx"][1]["call_args"] = "(row_id,angle,max_label_wid defs["igTableAngledHeadersRowEx"][1]["cimguiname"] = "igTableAngledHeadersRowEx" defs["igTableAngledHeadersRowEx"][1]["defaults"] = {} defs["igTableAngledHeadersRowEx"][1]["funcname"] = "TableAngledHeadersRowEx" -defs["igTableAngledHeadersRowEx"][1]["location"] = "imgui_internal:3289" +defs["igTableAngledHeadersRowEx"][1]["location"] = "imgui_internal:3295" defs["igTableAngledHeadersRowEx"][1]["namespace"] = "ImGui" defs["igTableAngledHeadersRowEx"][1]["ov_cimguiname"] = "igTableAngledHeadersRowEx" defs["igTableAngledHeadersRowEx"][1]["ret"] = "void" @@ -29010,7 +29011,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:3296" +defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3302" defs["igTableBeginApplyRequests"][1]["namespace"] = "ImGui" defs["igTableBeginApplyRequests"][1]["ov_cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["ret"] = "void" @@ -29032,7 +29033,7 @@ defs["igTableBeginCell"][1]["call_args"] = "(table,column_n)" defs["igTableBeginCell"][1]["cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["defaults"] = {} defs["igTableBeginCell"][1]["funcname"] = "TableBeginCell" -defs["igTableBeginCell"][1]["location"] = "imgui_internal:3314" +defs["igTableBeginCell"][1]["location"] = "imgui_internal:3320" defs["igTableBeginCell"][1]["namespace"] = "ImGui" defs["igTableBeginCell"][1]["ov_cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["ret"] = "void" @@ -29051,7 +29052,7 @@ defs["igTableBeginContextMenuPopup"][1]["call_args"] = "(table)" defs["igTableBeginContextMenuPopup"][1]["cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["defaults"] = {} defs["igTableBeginContextMenuPopup"][1]["funcname"] = "TableBeginContextMenuPopup" -defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3303" +defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3309" defs["igTableBeginContextMenuPopup"][1]["namespace"] = "ImGui" defs["igTableBeginContextMenuPopup"][1]["ov_cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["ret"] = "bool" @@ -29073,7 +29074,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:3295" +defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3301" defs["igTableBeginInitMemory"][1]["namespace"] = "ImGui" defs["igTableBeginInitMemory"][1]["ov_cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["ret"] = "void" @@ -29092,7 +29093,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:3312" +defs["igTableBeginRow"][1]["location"] = "imgui_internal:3318" defs["igTableBeginRow"][1]["namespace"] = "ImGui" defs["igTableBeginRow"][1]["ov_cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["ret"] = "void" @@ -29114,7 +29115,7 @@ defs["igTableCalcMaxColumnWidth"][1]["call_args"] = "(table,column_n)" defs["igTableCalcMaxColumnWidth"][1]["cimguiname"] = "igTableCalcMaxColumnWidth" defs["igTableCalcMaxColumnWidth"][1]["defaults"] = {} defs["igTableCalcMaxColumnWidth"][1]["funcname"] = "TableCalcMaxColumnWidth" -defs["igTableCalcMaxColumnWidth"][1]["location"] = "imgui_internal:3319" +defs["igTableCalcMaxColumnWidth"][1]["location"] = "imgui_internal:3325" defs["igTableCalcMaxColumnWidth"][1]["namespace"] = "ImGui" defs["igTableCalcMaxColumnWidth"][1]["ov_cimguiname"] = "igTableCalcMaxColumnWidth" defs["igTableCalcMaxColumnWidth"][1]["ret"] = "float" @@ -29133,7 +29134,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:3301" +defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3307" defs["igTableDrawBorders"][1]["namespace"] = "ImGui" defs["igTableDrawBorders"][1]["ov_cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["ret"] = "void" @@ -29155,7 +29156,7 @@ defs["igTableDrawDefaultContextMenu"][1]["call_args"] = "(table,flags_for_sectio defs["igTableDrawDefaultContextMenu"][1]["cimguiname"] = "igTableDrawDefaultContextMenu" defs["igTableDrawDefaultContextMenu"][1]["defaults"] = {} defs["igTableDrawDefaultContextMenu"][1]["funcname"] = "TableDrawDefaultContextMenu" -defs["igTableDrawDefaultContextMenu"][1]["location"] = "imgui_internal:3302" +defs["igTableDrawDefaultContextMenu"][1]["location"] = "imgui_internal:3308" defs["igTableDrawDefaultContextMenu"][1]["namespace"] = "ImGui" defs["igTableDrawDefaultContextMenu"][1]["ov_cimguiname"] = "igTableDrawDefaultContextMenu" defs["igTableDrawDefaultContextMenu"][1]["ret"] = "void" @@ -29174,7 +29175,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:3315" +defs["igTableEndCell"][1]["location"] = "imgui_internal:3321" defs["igTableEndCell"][1]["namespace"] = "ImGui" defs["igTableEndCell"][1]["ov_cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["ret"] = "void" @@ -29193,7 +29194,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:3313" +defs["igTableEndRow"][1]["location"] = "imgui_internal:3319" defs["igTableEndRow"][1]["namespace"] = "ImGui" defs["igTableEndRow"][1]["ov_cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["ret"] = "void" @@ -29212,7 +29213,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:3293" +defs["igTableFindByID"][1]["location"] = "imgui_internal:3299" defs["igTableFindByID"][1]["namespace"] = "ImGui" defs["igTableFindByID"][1]["ov_cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["ret"] = "ImGuiTable*" @@ -29234,7 +29235,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:3310" +defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3316" defs["igTableFixColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableFixColumnSortDirection"][1]["ov_cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["ret"] = "void" @@ -29250,7 +29251,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:3325" +defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3331" defs["igTableGcCompactSettings"][1]["namespace"] = "ImGui" defs["igTableGcCompactSettings"][1]["ov_cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["ret"] = "void" @@ -29269,7 +29270,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:3323" +defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3329" defs["igTableGcCompactTransientBuffers"][1]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][1]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TablePtr" defs["igTableGcCompactTransientBuffers"][1]["ret"] = "void" @@ -29286,7 +29287,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:3324" +defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3330" defs["igTableGcCompactTransientBuffers"][2]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][2]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TableTempDataPtr" defs["igTableGcCompactTransientBuffers"][2]["ret"] = "void" @@ -29306,7 +29307,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:3331" +defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3337" defs["igTableGetBoundSettings"][1]["namespace"] = "ImGui" defs["igTableGetBoundSettings"][1]["ov_cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["ret"] = "ImGuiTableSettings*" @@ -29331,7 +29332,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:3316" +defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3322" defs["igTableGetCellBgRect"][1]["namespace"] = "ImGui" defs["igTableGetCellBgRect"][1]["nonUDT"] = 1 defs["igTableGetCellBgRect"][1]["ov_cimguiname"] = "igTableGetCellBgRect" @@ -29348,7 +29349,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:838" +defs["igTableGetColumnCount"][1]["location"] = "imgui:839" defs["igTableGetColumnCount"][1]["namespace"] = "ImGui" defs["igTableGetColumnCount"][1]["ov_cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["ret"] = "int" @@ -29368,7 +29369,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:842" +defs["igTableGetColumnFlags"][1]["location"] = "imgui:843" defs["igTableGetColumnFlags"][1]["namespace"] = "ImGui" defs["igTableGetColumnFlags"][1]["ov_cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["ret"] = "ImGuiTableColumnFlags" @@ -29384,7 +29385,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:839" +defs["igTableGetColumnIndex"][1]["location"] = "imgui:840" defs["igTableGetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableGetColumnIndex"][1]["ov_cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["ret"] = "int" @@ -29404,7 +29405,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:841" +defs["igTableGetColumnName"][1]["location"] = "imgui:842" defs["igTableGetColumnName"][1]["namespace"] = "ImGui" defs["igTableGetColumnName"][1]["ov_cimguiname"] = "igTableGetColumnName_Int" defs["igTableGetColumnName"][1]["ret"] = "const char*" @@ -29424,7 +29425,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:3317" +defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3323" defs["igTableGetColumnName"][2]["namespace"] = "ImGui" defs["igTableGetColumnName"][2]["ov_cimguiname"] = "igTableGetColumnName_TablePtr" defs["igTableGetColumnName"][2]["ret"] = "const char*" @@ -29444,7 +29445,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:3309" +defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3315" defs["igTableGetColumnNextSortDirection"][1]["namespace"] = "ImGui" defs["igTableGetColumnNextSortDirection"][1]["ov_cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["ret"] = "ImGuiSortDirection" @@ -29470,7 +29471,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:3318" +defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3324" defs["igTableGetColumnResizeID"][1]["namespace"] = "ImGui" defs["igTableGetColumnResizeID"][1]["ov_cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["ret"] = "ImGuiID" @@ -29492,7 +29493,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:3311" +defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3317" defs["igTableGetColumnWidthAuto"][1]["namespace"] = "ImGui" defs["igTableGetColumnWidthAuto"][1]["ov_cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["ret"] = "float" @@ -29508,7 +29509,7 @@ defs["igTableGetHeaderAngledMaxLabelWidth"][1]["call_args"] = "()" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["defaults"] = {} defs["igTableGetHeaderAngledMaxLabelWidth"][1]["funcname"] = "TableGetHeaderAngledMaxLabelWidth" -defs["igTableGetHeaderAngledMaxLabelWidth"][1]["location"] = "imgui_internal:3286" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["location"] = "imgui_internal:3292" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["namespace"] = "ImGui" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ov_cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ret"] = "float" @@ -29524,7 +29525,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:3285" +defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3291" defs["igTableGetHeaderRowHeight"][1]["namespace"] = "ImGui" defs["igTableGetHeaderRowHeight"][1]["ov_cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["ret"] = "float" @@ -29540,7 +29541,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:844" +defs["igTableGetHoveredColumn"][1]["location"] = "imgui:845" defs["igTableGetHoveredColumn"][1]["namespace"] = "ImGui" defs["igTableGetHoveredColumn"][1]["ov_cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["ret"] = "int" @@ -29556,7 +29557,7 @@ defs["igTableGetHoveredRow"][1]["call_args"] = "()" defs["igTableGetHoveredRow"][1]["cimguiname"] = "igTableGetHoveredRow" defs["igTableGetHoveredRow"][1]["defaults"] = {} defs["igTableGetHoveredRow"][1]["funcname"] = "TableGetHoveredRow" -defs["igTableGetHoveredRow"][1]["location"] = "imgui_internal:3284" +defs["igTableGetHoveredRow"][1]["location"] = "imgui_internal:3290" defs["igTableGetHoveredRow"][1]["namespace"] = "ImGui" defs["igTableGetHoveredRow"][1]["ov_cimguiname"] = "igTableGetHoveredRow" defs["igTableGetHoveredRow"][1]["ret"] = "int" @@ -29578,7 +29579,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:3305" +defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3311" defs["igTableGetInstanceData"][1]["namespace"] = "ImGui" defs["igTableGetInstanceData"][1]["ov_cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["ret"] = "ImGuiTableInstanceData*" @@ -29600,7 +29601,7 @@ defs["igTableGetInstanceID"][1]["call_args"] = "(table,instance_no)" defs["igTableGetInstanceID"][1]["cimguiname"] = "igTableGetInstanceID" defs["igTableGetInstanceID"][1]["defaults"] = {} defs["igTableGetInstanceID"][1]["funcname"] = "TableGetInstanceID" -defs["igTableGetInstanceID"][1]["location"] = "imgui_internal:3306" +defs["igTableGetInstanceID"][1]["location"] = "imgui_internal:3312" defs["igTableGetInstanceID"][1]["namespace"] = "ImGui" defs["igTableGetInstanceID"][1]["ov_cimguiname"] = "igTableGetInstanceID" defs["igTableGetInstanceID"][1]["ret"] = "ImGuiID" @@ -29616,7 +29617,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:840" +defs["igTableGetRowIndex"][1]["location"] = "imgui:841" defs["igTableGetRowIndex"][1]["namespace"] = "ImGui" defs["igTableGetRowIndex"][1]["ov_cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["ret"] = "int" @@ -29632,7 +29633,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:837" +defs["igTableGetSortSpecs"][1]["location"] = "imgui:838" defs["igTableGetSortSpecs"][1]["namespace"] = "ImGui" defs["igTableGetSortSpecs"][1]["ov_cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["ret"] = "ImGuiTableSortSpecs*" @@ -29651,7 +29652,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:827" +defs["igTableHeader"][1]["location"] = "imgui:828" defs["igTableHeader"][1]["namespace"] = "ImGui" defs["igTableHeader"][1]["ov_cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["ret"] = "void" @@ -29667,7 +29668,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:828" +defs["igTableHeadersRow"][1]["location"] = "imgui:829" defs["igTableHeadersRow"][1]["namespace"] = "ImGui" defs["igTableHeadersRow"][1]["ov_cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["ret"] = "void" @@ -29686,7 +29687,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:3328" +defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3334" defs["igTableLoadSettings"][1]["namespace"] = "ImGui" defs["igTableLoadSettings"][1]["ov_cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["ret"] = "void" @@ -29705,7 +29706,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:3304" +defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3310" defs["igTableMergeDrawChannels"][1]["namespace"] = "ImGui" defs["igTableMergeDrawChannels"][1]["ov_cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["ret"] = "void" @@ -29721,7 +29722,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:814" +defs["igTableNextColumn"][1]["location"] = "imgui:815" defs["igTableNextColumn"][1]["namespace"] = "ImGui" defs["igTableNextColumn"][1]["ov_cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["ret"] = "bool" @@ -29745,7 +29746,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:813" +defs["igTableNextRow"][1]["location"] = "imgui:814" defs["igTableNextRow"][1]["namespace"] = "ImGui" defs["igTableNextRow"][1]["ov_cimguiname"] = "igTableNextRow" defs["igTableNextRow"][1]["ret"] = "void" @@ -29765,7 +29766,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:3281" +defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3287" defs["igTableOpenContextMenu"][1]["namespace"] = "ImGui" defs["igTableOpenContextMenu"][1]["ov_cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["ret"] = "void" @@ -29781,7 +29782,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:3288" +defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3294" defs["igTablePopBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePopBackgroundChannel"][1]["ov_cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["ret"] = "void" @@ -29797,7 +29798,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:3287" +defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3293" defs["igTablePushBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePushBackgroundChannel"][1]["ov_cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["ret"] = "void" @@ -29816,7 +29817,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:3322" +defs["igTableRemove"][1]["location"] = "imgui_internal:3328" defs["igTableRemove"][1]["namespace"] = "ImGui" defs["igTableRemove"][1]["ov_cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["ret"] = "void" @@ -29835,7 +29836,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:3330" +defs["igTableResetSettings"][1]["location"] = "imgui_internal:3336" defs["igTableResetSettings"][1]["namespace"] = "ImGui" defs["igTableResetSettings"][1]["ov_cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["ret"] = "void" @@ -29854,7 +29855,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:3329" +defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3335" defs["igTableSaveSettings"][1]["namespace"] = "ImGui" defs["igTableSaveSettings"][1]["ov_cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["ret"] = "void" @@ -29880,7 +29881,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:845" +defs["igTableSetBgColor"][1]["location"] = "imgui:846" defs["igTableSetBgColor"][1]["namespace"] = "ImGui" defs["igTableSetBgColor"][1]["ov_cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["ret"] = "void" @@ -29902,7 +29903,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:843" +defs["igTableSetColumnEnabled"][1]["location"] = "imgui:844" defs["igTableSetColumnEnabled"][1]["namespace"] = "ImGui" defs["igTableSetColumnEnabled"][1]["ov_cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["ret"] = "void" @@ -29921,7 +29922,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:815" +defs["igTableSetColumnIndex"][1]["location"] = "imgui:816" defs["igTableSetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableSetColumnIndex"][1]["ov_cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["ret"] = "bool" @@ -29946,7 +29947,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:3283" +defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3289" defs["igTableSetColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableSetColumnSortDirection"][1]["ov_cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["ret"] = "void" @@ -29968,7 +29969,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:3282" +defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3288" defs["igTableSetColumnWidth"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidth"][1]["ov_cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["ret"] = "void" @@ -29987,7 +29988,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:3321" +defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3327" defs["igTableSetColumnWidthAutoAll"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoAll"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["ret"] = "void" @@ -30009,7 +30010,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:3320" +defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3326" defs["igTableSetColumnWidthAutoSingle"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoSingle"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["ret"] = "void" @@ -30025,7 +30026,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:3332" +defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3338" defs["igTableSettingsAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igTableSettingsAddSettingsHandler"][1]["ov_cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["ret"] = "void" @@ -30047,7 +30048,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:3333" +defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3339" defs["igTableSettingsCreate"][1]["namespace"] = "ImGui" defs["igTableSettingsCreate"][1]["ov_cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["ret"] = "ImGuiTableSettings*" @@ -30066,7 +30067,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:3334" +defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3340" defs["igTableSettingsFindByID"][1]["namespace"] = "ImGui" defs["igTableSettingsFindByID"][1]["ov_cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["ret"] = "ImGuiTableSettings*" @@ -30097,7 +30098,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:825" +defs["igTableSetupColumn"][1]["location"] = "imgui:826" defs["igTableSetupColumn"][1]["namespace"] = "ImGui" defs["igTableSetupColumn"][1]["ov_cimguiname"] = "igTableSetupColumn" defs["igTableSetupColumn"][1]["ret"] = "void" @@ -30116,7 +30117,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:3297" +defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3303" defs["igTableSetupDrawChannels"][1]["namespace"] = "ImGui" defs["igTableSetupDrawChannels"][1]["ov_cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["ret"] = "void" @@ -30138,7 +30139,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:826" +defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:827" defs["igTableSetupScrollFreeze"][1]["namespace"] = "ImGui" defs["igTableSetupScrollFreeze"][1]["ov_cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["ret"] = "void" @@ -30157,7 +30158,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:3308" +defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3314" defs["igTableSortSpecsBuild"][1]["namespace"] = "ImGui" defs["igTableSortSpecsBuild"][1]["ov_cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["ret"] = "void" @@ -30176,7 +30177,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:3307" +defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3313" defs["igTableSortSpecsSanitize"][1]["namespace"] = "ImGui" defs["igTableSortSpecsSanitize"][1]["ov_cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["ret"] = "void" @@ -30195,7 +30196,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:3299" +defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3305" defs["igTableUpdateBorders"][1]["namespace"] = "ImGui" defs["igTableUpdateBorders"][1]["ov_cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["ret"] = "void" @@ -30214,7 +30215,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:3300" +defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3306" defs["igTableUpdateColumnsWeightFromWidth"][1]["namespace"] = "ImGui" defs["igTableUpdateColumnsWeightFromWidth"][1]["ov_cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["ret"] = "void" @@ -30233,7 +30234,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:3298" +defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3304" defs["igTableUpdateLayout"][1]["namespace"] = "ImGui" defs["igTableUpdateLayout"][1]["ov_cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["ret"] = "void" @@ -30252,7 +30253,7 @@ defs["igTeleportMousePos"][1]["call_args"] = "(pos)" defs["igTeleportMousePos"][1]["cimguiname"] = "igTeleportMousePos" defs["igTeleportMousePos"][1]["defaults"] = {} defs["igTeleportMousePos"][1]["funcname"] = "TeleportMousePos" -defs["igTeleportMousePos"][1]["location"] = "imgui_internal:3173" +defs["igTeleportMousePos"][1]["location"] = "imgui_internal:3179" defs["igTeleportMousePos"][1]["namespace"] = "ImGui" defs["igTeleportMousePos"][1]["ov_cimguiname"] = "igTeleportMousePos" defs["igTeleportMousePos"][1]["ret"] = "void" @@ -30271,7 +30272,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:3440" +defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3446" defs["igTempInputIsActive"][1]["namespace"] = "ImGui" defs["igTempInputIsActive"][1]["ov_cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["ret"] = "bool" @@ -30313,7 +30314,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:3439" +defs["igTempInputScalar"][1]["location"] = "imgui_internal:3445" defs["igTempInputScalar"][1]["namespace"] = "ImGui" defs["igTempInputScalar"][1]["ov_cimguiname"] = "igTempInputScalar" defs["igTempInputScalar"][1]["ret"] = "bool" @@ -30347,7 +30348,7 @@ defs["igTempInputText"][1]["call_args"] = "(bb,id,label,buf,buf_size,flags)" defs["igTempInputText"][1]["cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["defaults"] = {} defs["igTempInputText"][1]["funcname"] = "TempInputText" -defs["igTempInputText"][1]["location"] = "imgui_internal:3438" +defs["igTempInputText"][1]["location"] = "imgui_internal:3444" defs["igTempInputText"][1]["namespace"] = "ImGui" defs["igTempInputText"][1]["ov_cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["ret"] = "bool" @@ -30369,7 +30370,7 @@ defs["igTestKeyOwner"][1]["call_args"] = "(key,owner_id)" defs["igTestKeyOwner"][1]["cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["defaults"] = {} defs["igTestKeyOwner"][1]["funcname"] = "TestKeyOwner" -defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3192" +defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3198" defs["igTestKeyOwner"][1]["namespace"] = "ImGui" defs["igTestKeyOwner"][1]["ov_cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["ret"] = "bool" @@ -30391,7 +30392,7 @@ defs["igTestShortcutRouting"][1]["call_args"] = "(key_chord,owner_id)" defs["igTestShortcutRouting"][1]["cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["defaults"] = {} defs["igTestShortcutRouting"][1]["funcname"] = "TestShortcutRouting" -defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3226" +defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3232" defs["igTestShortcutRouting"][1]["namespace"] = "ImGui" defs["igTestShortcutRouting"][1]["ov_cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["ret"] = "bool" @@ -30537,7 +30538,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:3384" +defs["igTextEx"][1]["location"] = "imgui_internal:3390" defs["igTextEx"][1]["namespace"] = "ImGui" defs["igTextEx"][1]["ov_cimguiname"] = "igTextEx" defs["igTextEx"][1]["ret"] = "void" @@ -30688,7 +30689,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:655" +defs["igTreeNode"][1]["location"] = "imgui:656" defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNode_Str" defs["igTreeNode"][1]["ret"] = "bool" @@ -30712,7 +30713,7 @@ defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" -defs["igTreeNode"][2]["location"] = "imgui:656" +defs["igTreeNode"][2]["location"] = "imgui:657" defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNode_StrStr" defs["igTreeNode"][2]["ret"] = "bool" @@ -30736,7 +30737,7 @@ defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" -defs["igTreeNode"][3]["location"] = "imgui:657" +defs["igTreeNode"][3]["location"] = "imgui:658" defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNode_Ptr" defs["igTreeNode"][3]["ret"] = "bool" @@ -30767,7 +30768,7 @@ defs["igTreeNodeBehavior"][1]["cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["defaults"] = {} defs["igTreeNodeBehavior"][1]["defaults"]["label_end"] = "NULL" defs["igTreeNodeBehavior"][1]["funcname"] = "TreeNodeBehavior" -defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3410" +defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3416" defs["igTreeNodeBehavior"][1]["namespace"] = "ImGui" defs["igTreeNodeBehavior"][1]["ov_cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["ret"] = "bool" @@ -30790,7 +30791,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:660" +defs["igTreeNodeEx"][1]["location"] = "imgui:661" defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeEx_Str" defs["igTreeNodeEx"][1]["ret"] = "bool" @@ -30817,7 +30818,7 @@ defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" -defs["igTreeNodeEx"][2]["location"] = "imgui:661" +defs["igTreeNodeEx"][2]["location"] = "imgui:662" defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeEx_StrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" @@ -30844,7 +30845,7 @@ defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" -defs["igTreeNodeEx"][3]["location"] = "imgui:662" +defs["igTreeNodeEx"][3]["location"] = "imgui:663" defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeEx_Ptr" defs["igTreeNodeEx"][3]["ret"] = "bool" @@ -30874,7 +30875,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:663" +defs["igTreeNodeExV"][1]["location"] = "imgui:664" defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExV_Str" defs["igTreeNodeExV"][1]["ret"] = "bool" @@ -30900,7 +30901,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:664" +defs["igTreeNodeExV"][2]["location"] = "imgui:665" defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExV_Ptr" defs["igTreeNodeExV"][2]["ret"] = "bool" @@ -30920,7 +30921,7 @@ defs["igTreeNodeGetOpen"][1]["call_args"] = "(storage_id)" defs["igTreeNodeGetOpen"][1]["cimguiname"] = "igTreeNodeGetOpen" defs["igTreeNodeGetOpen"][1]["defaults"] = {} defs["igTreeNodeGetOpen"][1]["funcname"] = "TreeNodeGetOpen" -defs["igTreeNodeGetOpen"][1]["location"] = "imgui_internal:3412" +defs["igTreeNodeGetOpen"][1]["location"] = "imgui_internal:3418" defs["igTreeNodeGetOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeGetOpen"][1]["ov_cimguiname"] = "igTreeNodeGetOpen" defs["igTreeNodeGetOpen"][1]["ret"] = "bool" @@ -30942,7 +30943,7 @@ defs["igTreeNodeSetOpen"][1]["call_args"] = "(storage_id,open)" defs["igTreeNodeSetOpen"][1]["cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["defaults"] = {} defs["igTreeNodeSetOpen"][1]["funcname"] = "TreeNodeSetOpen" -defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3413" +defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3419" defs["igTreeNodeSetOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeSetOpen"][1]["ov_cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["ret"] = "void" @@ -30964,7 +30965,7 @@ defs["igTreeNodeUpdateNextOpen"][1]["call_args"] = "(storage_id,flags)" defs["igTreeNodeUpdateNextOpen"][1]["cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["defaults"] = {} defs["igTreeNodeUpdateNextOpen"][1]["funcname"] = "TreeNodeUpdateNextOpen" -defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3414" +defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3420" defs["igTreeNodeUpdateNextOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeUpdateNextOpen"][1]["ov_cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["ret"] = "bool" @@ -30989,7 +30990,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:658" +defs["igTreeNodeV"][1]["location"] = "imgui:659" defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeV_Str" defs["igTreeNodeV"][1]["ret"] = "bool" @@ -31012,7 +31013,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:659" +defs["igTreeNodeV"][2]["location"] = "imgui:660" defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeV_Ptr" defs["igTreeNodeV"][2]["ret"] = "bool" @@ -31029,7 +31030,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:667" +defs["igTreePop"][1]["location"] = "imgui:668" defs["igTreePop"][1]["namespace"] = "ImGui" defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" @@ -31048,7 +31049,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:665" +defs["igTreePush"][1]["location"] = "imgui:666" defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePush_Str" defs["igTreePush"][1]["ret"] = "void" @@ -31065,7 +31066,7 @@ defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["defaults"] = {} defs["igTreePush"][2]["funcname"] = "TreePush" -defs["igTreePush"][2]["location"] = "imgui:666" +defs["igTreePush"][2]["location"] = "imgui:667" defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePush_Ptr" defs["igTreePush"][2]["ret"] = "void" @@ -31085,7 +31086,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:3411" +defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3417" defs["igTreePushOverrideID"][1]["namespace"] = "ImGui" defs["igTreePushOverrideID"][1]["ov_cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["ret"] = "void" @@ -31115,7 +31116,7 @@ defs["igTypingSelectFindBestLeadingMatch"][1]["call_args"] = "(req,items_count,g defs["igTypingSelectFindBestLeadingMatch"][1]["cimguiname"] = "igTypingSelectFindBestLeadingMatch" defs["igTypingSelectFindBestLeadingMatch"][1]["defaults"] = {} defs["igTypingSelectFindBestLeadingMatch"][1]["funcname"] = "TypingSelectFindBestLeadingMatch" -defs["igTypingSelectFindBestLeadingMatch"][1]["location"] = "imgui_internal:3254" +defs["igTypingSelectFindBestLeadingMatch"][1]["location"] = "imgui_internal:3260" defs["igTypingSelectFindBestLeadingMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindBestLeadingMatch"][1]["ov_cimguiname"] = "igTypingSelectFindBestLeadingMatch" defs["igTypingSelectFindBestLeadingMatch"][1]["ret"] = "int" @@ -31148,7 +31149,7 @@ defs["igTypingSelectFindMatch"][1]["call_args"] = "(req,items_count,get_item_nam defs["igTypingSelectFindMatch"][1]["cimguiname"] = "igTypingSelectFindMatch" defs["igTypingSelectFindMatch"][1]["defaults"] = {} defs["igTypingSelectFindMatch"][1]["funcname"] = "TypingSelectFindMatch" -defs["igTypingSelectFindMatch"][1]["location"] = "imgui_internal:3252" +defs["igTypingSelectFindMatch"][1]["location"] = "imgui_internal:3258" defs["igTypingSelectFindMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindMatch"][1]["ov_cimguiname"] = "igTypingSelectFindMatch" defs["igTypingSelectFindMatch"][1]["ret"] = "int" @@ -31181,7 +31182,7 @@ defs["igTypingSelectFindNextSingleCharMatch"][1]["call_args"] = "(req,items_coun defs["igTypingSelectFindNextSingleCharMatch"][1]["cimguiname"] = "igTypingSelectFindNextSingleCharMatch" defs["igTypingSelectFindNextSingleCharMatch"][1]["defaults"] = {} defs["igTypingSelectFindNextSingleCharMatch"][1]["funcname"] = "TypingSelectFindNextSingleCharMatch" -defs["igTypingSelectFindNextSingleCharMatch"][1]["location"] = "imgui_internal:3253" +defs["igTypingSelectFindNextSingleCharMatch"][1]["location"] = "imgui_internal:3259" defs["igTypingSelectFindNextSingleCharMatch"][1]["namespace"] = "ImGui" defs["igTypingSelectFindNextSingleCharMatch"][1]["ov_cimguiname"] = "igTypingSelectFindNextSingleCharMatch" defs["igTypingSelectFindNextSingleCharMatch"][1]["ret"] = "int" @@ -31217,7 +31218,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:3002" +defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:3008" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["namespace"] = "ImGui" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ov_cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ret"] = "void" @@ -31236,7 +31237,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:3001" +defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:3007" defs["igUpdateInputEvents"][1]["namespace"] = "ImGui" defs["igUpdateInputEvents"][1]["ov_cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["ret"] = "void" @@ -31252,7 +31253,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:3006" +defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:3012" defs["igUpdateMouseMovingWindowEndFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowEndFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["ret"] = "void" @@ -31268,7 +31269,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:3005" +defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:3011" defs["igUpdateMouseMovingWindowNewFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowNewFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["ret"] = "void" @@ -31293,7 +31294,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:2957" +defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:2963" defs["igUpdateWindowParentAndRootLinks"][1]["namespace"] = "ImGui" defs["igUpdateWindowParentAndRootLinks"][1]["ov_cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["ret"] = "void" @@ -31312,7 +31313,7 @@ defs["igUpdateWindowSkipRefresh"][1]["call_args"] = "(window)" defs["igUpdateWindowSkipRefresh"][1]["cimguiname"] = "igUpdateWindowSkipRefresh" defs["igUpdateWindowSkipRefresh"][1]["defaults"] = {} defs["igUpdateWindowSkipRefresh"][1]["funcname"] = "UpdateWindowSkipRefresh" -defs["igUpdateWindowSkipRefresh"][1]["location"] = "imgui_internal:2958" +defs["igUpdateWindowSkipRefresh"][1]["location"] = "imgui_internal:2964" defs["igUpdateWindowSkipRefresh"][1]["namespace"] = "ImGui" defs["igUpdateWindowSkipRefresh"][1]["ov_cimguiname"] = "igUpdateWindowSkipRefresh" defs["igUpdateWindowSkipRefresh"][1]["ret"] = "void" @@ -31351,7 +31352,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:621" +defs["igVSliderFloat"][1]["location"] = "imgui:622" defs["igVSliderFloat"][1]["namespace"] = "ImGui" defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" @@ -31390,7 +31391,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:622" +defs["igVSliderInt"][1]["location"] = "imgui:623" defs["igVSliderInt"][1]["namespace"] = "ImGui" defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" @@ -31432,7 +31433,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:623" +defs["igVSliderScalar"][1]["location"] = "imgui:624" defs["igVSliderScalar"][1]["namespace"] = "ImGui" defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -31454,7 +31455,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:712" +defs["igValue"][1]["location"] = "imgui:713" defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValue_Bool" defs["igValue"][1]["ret"] = "void" @@ -31474,7 +31475,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:713" +defs["igValue"][2]["location"] = "imgui:714" defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValue_Int" defs["igValue"][2]["ret"] = "void" @@ -31494,7 +31495,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:714" +defs["igValue"][3]["location"] = "imgui:715" defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValue_Uint" defs["igValue"][3]["ret"] = "void" @@ -31518,7 +31519,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:715" +defs["igValue"][4]["location"] = "imgui:716" defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValue_Float" defs["igValue"][4]["ret"] = "void" @@ -31546,7 +31547,7 @@ defs["igWindowPosAbsToRel"][1]["call_args"] = "(window,p)" defs["igWindowPosAbsToRel"][1]["cimguiname"] = "igWindowPosAbsToRel" defs["igWindowPosAbsToRel"][1]["defaults"] = {} defs["igWindowPosAbsToRel"][1]["funcname"] = "WindowPosAbsToRel" -defs["igWindowPosAbsToRel"][1]["location"] = "imgui_internal:2972" +defs["igWindowPosAbsToRel"][1]["location"] = "imgui_internal:2978" defs["igWindowPosAbsToRel"][1]["namespace"] = "ImGui" defs["igWindowPosAbsToRel"][1]["nonUDT"] = 1 defs["igWindowPosAbsToRel"][1]["ov_cimguiname"] = "igWindowPosAbsToRel" @@ -31572,7 +31573,7 @@ defs["igWindowPosRelToAbs"][1]["call_args"] = "(window,p)" defs["igWindowPosRelToAbs"][1]["cimguiname"] = "igWindowPosRelToAbs" defs["igWindowPosRelToAbs"][1]["defaults"] = {} defs["igWindowPosRelToAbs"][1]["funcname"] = "WindowPosRelToAbs" -defs["igWindowPosRelToAbs"][1]["location"] = "imgui_internal:2973" +defs["igWindowPosRelToAbs"][1]["location"] = "imgui_internal:2979" defs["igWindowPosRelToAbs"][1]["namespace"] = "ImGui" defs["igWindowPosRelToAbs"][1]["nonUDT"] = 1 defs["igWindowPosRelToAbs"][1]["ov_cimguiname"] = "igWindowPosRelToAbs" @@ -31598,7 +31599,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:2970" +defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:2976" defs["igWindowRectAbsToRel"][1]["namespace"] = "ImGui" defs["igWindowRectAbsToRel"][1]["nonUDT"] = 1 defs["igWindowRectAbsToRel"][1]["ov_cimguiname"] = "igWindowRectAbsToRel" @@ -31624,7 +31625,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:2971" +defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:2977" 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 39a11aa..a83dd05 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -427,7 +427,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "location": "imgui_impl_opengl2:36", + "location": "imgui_impl_opengl2:38", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -443,7 +443,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "location": "imgui_impl_opengl2:34", + "location": "imgui_impl_opengl2:36", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -459,7 +459,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "location": "imgui_impl_opengl2:37", + "location": "imgui_impl_opengl2:39", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -475,7 +475,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "location": "imgui_impl_opengl2:35", + "location": "imgui_impl_opengl2:37", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -491,7 +491,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Init", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Init", - "location": "imgui_impl_opengl2:28", + "location": "imgui_impl_opengl2:30", "ov_cimguiname": "ImGui_ImplOpenGL2_Init", "ret": "bool", "signature": "()", @@ -507,7 +507,7 @@ "cimguiname": "ImGui_ImplOpenGL2_NewFrame", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_NewFrame", - "location": "imgui_impl_opengl2:30", + "location": "imgui_impl_opengl2:32", "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", "ret": "void", "signature": "()", @@ -528,7 +528,7 @@ "cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_RenderDrawData", - "location": "imgui_impl_opengl2:31", + "location": "imgui_impl_opengl2:33", "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -544,7 +544,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Shutdown", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Shutdown", - "location": "imgui_impl_opengl2:29", + "location": "imgui_impl_opengl2:31", "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", "ret": "void", "signature": "()", @@ -879,11 +879,11 @@ "type": "int" } ], - "argsoriginal": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)", + "argsoriginal": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=nullptr,int manual_gamepads_count=-1)", "call_args": "(mode,manual_gamepads_array,manual_gamepads_count)", "cimguiname": "ImGui_ImplSDL2_SetGamepadMode", "defaults": { - "manual_gamepads_array": "NULL", + "manual_gamepads_array": "nullptr", "manual_gamepads_count": "-1" }, "funcname": "ImGui_ImplSDL2_SetGamepadMode", @@ -924,7 +924,7 @@ "cimguiname": "ImGui_ImplSDL3_InitForD3D", "defaults": {}, "funcname": "ImGui_ImplSDL3_InitForD3D", - "location": "imgui_impl_sdl3:34", + "location": "imgui_impl_sdl3:35", "ov_cimguiname": "ImGui_ImplSDL3_InitForD3D", "ret": "bool", "signature": "(SDL_Window*)", @@ -945,7 +945,7 @@ "cimguiname": "ImGui_ImplSDL3_InitForMetal", "defaults": {}, "funcname": "ImGui_ImplSDL3_InitForMetal", - "location": "imgui_impl_sdl3:35", + "location": "imgui_impl_sdl3:36", "ov_cimguiname": "ImGui_ImplSDL3_InitForMetal", "ret": "bool", "signature": "(SDL_Window*)", @@ -970,7 +970,7 @@ "cimguiname": "ImGui_ImplSDL3_InitForOpenGL", "defaults": {}, "funcname": "ImGui_ImplSDL3_InitForOpenGL", - "location": "imgui_impl_sdl3:32", + "location": "imgui_impl_sdl3:33", "ov_cimguiname": "ImGui_ImplSDL3_InitForOpenGL", "ret": "bool", "signature": "(SDL_Window*,void*)", @@ -991,7 +991,7 @@ "cimguiname": "ImGui_ImplSDL3_InitForOther", "defaults": {}, "funcname": "ImGui_ImplSDL3_InitForOther", - "location": "imgui_impl_sdl3:37", + "location": "imgui_impl_sdl3:38", "ov_cimguiname": "ImGui_ImplSDL3_InitForOther", "ret": "bool", "signature": "(SDL_Window*)", @@ -1016,7 +1016,7 @@ "cimguiname": "ImGui_ImplSDL3_InitForSDLRenderer", "defaults": {}, "funcname": "ImGui_ImplSDL3_InitForSDLRenderer", - "location": "imgui_impl_sdl3:36", + "location": "imgui_impl_sdl3:37", "ov_cimguiname": "ImGui_ImplSDL3_InitForSDLRenderer", "ret": "bool", "signature": "(SDL_Window*,SDL_Renderer*)", @@ -1037,7 +1037,7 @@ "cimguiname": "ImGui_ImplSDL3_InitForVulkan", "defaults": {}, "funcname": "ImGui_ImplSDL3_InitForVulkan", - "location": "imgui_impl_sdl3:33", + "location": "imgui_impl_sdl3:34", "ov_cimguiname": "ImGui_ImplSDL3_InitForVulkan", "ret": "bool", "signature": "(SDL_Window*)", @@ -1053,7 +1053,7 @@ "cimguiname": "ImGui_ImplSDL3_NewFrame", "defaults": {}, "funcname": "ImGui_ImplSDL3_NewFrame", - "location": "imgui_impl_sdl3:39", + "location": "imgui_impl_sdl3:40", "ov_cimguiname": "ImGui_ImplSDL3_NewFrame", "ret": "void", "signature": "()", @@ -1074,7 +1074,7 @@ "cimguiname": "ImGui_ImplSDL3_ProcessEvent", "defaults": {}, "funcname": "ImGui_ImplSDL3_ProcessEvent", - "location": "imgui_impl_sdl3:40", + "location": "imgui_impl_sdl3:41", "ov_cimguiname": "ImGui_ImplSDL3_ProcessEvent", "ret": "bool", "signature": "(const SDL_Event*)", @@ -1098,15 +1098,15 @@ "type": "int" } ], - "argsoriginal": "(ImGui_ImplSDL3_GamepadMode mode,SDL_Gamepad** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)", + "argsoriginal": "(ImGui_ImplSDL3_GamepadMode mode,SDL_Gamepad** manual_gamepads_array=nullptr,int manual_gamepads_count=-1)", "call_args": "(mode,manual_gamepads_array,manual_gamepads_count)", "cimguiname": "ImGui_ImplSDL3_SetGamepadMode", "defaults": { - "manual_gamepads_array": "NULL", + "manual_gamepads_array": "nullptr", "manual_gamepads_count": "-1" }, "funcname": "ImGui_ImplSDL3_SetGamepadMode", - "location": "imgui_impl_sdl3:45", + "location": "imgui_impl_sdl3:46", "ov_cimguiname": "ImGui_ImplSDL3_SetGamepadMode", "ret": "void", "signature": "(ImGui_ImplSDL3_GamepadMode,SDL_Gamepad**,int)", @@ -1122,7 +1122,7 @@ "cimguiname": "ImGui_ImplSDL3_Shutdown", "defaults": {}, "funcname": "ImGui_ImplSDL3_Shutdown", - "location": "imgui_impl_sdl3:38", + "location": "imgui_impl_sdl3:39", "ov_cimguiname": "ImGui_ImplSDL3_Shutdown", "ret": "void", "signature": "()", diff --git a/generator/output/impl_definitions.lua b/generator/output/impl_definitions.lua index d3692bf..974c3ea 100644 --- a/generator/output/impl_definitions.lua +++ b/generator/output/impl_definitions.lua @@ -362,7 +362,7 @@ defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" -defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:36" +defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:38" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["signature"] = "()" @@ -377,7 +377,7 @@ defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" -defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:34" +defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:36" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["signature"] = "()" @@ -392,7 +392,7 @@ defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:37" +defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:39" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["signature"] = "()" @@ -407,7 +407,7 @@ defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" -defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:35" +defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:37" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["signature"] = "()" @@ -422,7 +422,7 @@ defs["ImGui_ImplOpenGL2_Init"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Init"][1]["funcname"] = "ImGui_ImplOpenGL2_Init" -defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:28" +defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:30" defs["ImGui_ImplOpenGL2_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_Init"][1]["signature"] = "()" @@ -437,7 +437,7 @@ defs["ImGui_ImplOpenGL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL2_NewFrame" -defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:30" +defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:32" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_NewFrame"][1]["signature"] = "()" @@ -455,7 +455,7 @@ defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL2_RenderDrawData" -defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:31" +defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:33" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -470,7 +470,7 @@ defs["ImGui_ImplOpenGL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL2_Shutdown" -defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:29" +defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:31" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_Shutdown"][1]["signature"] = "()" @@ -763,11 +763,11 @@ defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2]["type"] = "struct _SDL_Game defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3] = {} defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["name"] = "manual_gamepads_count" defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["type"] = "int" -defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsoriginal"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsoriginal"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=nullptr,int manual_gamepads_count=-1)" defs["ImGui_ImplSDL2_SetGamepadMode"][1]["call_args"] = "(mode,manual_gamepads_array,manual_gamepads_count)" defs["ImGui_ImplSDL2_SetGamepadMode"][1]["cimguiname"] = "ImGui_ImplSDL2_SetGamepadMode" defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"] = {} -defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_array"] = "NULL" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_array"] = "nullptr" defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_count"] = "-1" defs["ImGui_ImplSDL2_SetGamepadMode"][1]["funcname"] = "ImGui_ImplSDL2_SetGamepadMode" defs["ImGui_ImplSDL2_SetGamepadMode"][1]["location"] = "imgui_impl_sdl2:44" @@ -803,7 +803,7 @@ defs["ImGui_ImplSDL3_InitForD3D"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL3_InitForD3D"][1]["cimguiname"] = "ImGui_ImplSDL3_InitForD3D" defs["ImGui_ImplSDL3_InitForD3D"][1]["defaults"] = {} defs["ImGui_ImplSDL3_InitForD3D"][1]["funcname"] = "ImGui_ImplSDL3_InitForD3D" -defs["ImGui_ImplSDL3_InitForD3D"][1]["location"] = "imgui_impl_sdl3:34" +defs["ImGui_ImplSDL3_InitForD3D"][1]["location"] = "imgui_impl_sdl3:35" defs["ImGui_ImplSDL3_InitForD3D"][1]["ov_cimguiname"] = "ImGui_ImplSDL3_InitForD3D" defs["ImGui_ImplSDL3_InitForD3D"][1]["ret"] = "bool" defs["ImGui_ImplSDL3_InitForD3D"][1]["signature"] = "(SDL_Window*)" @@ -821,7 +821,7 @@ defs["ImGui_ImplSDL3_InitForMetal"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL3_InitForMetal"][1]["cimguiname"] = "ImGui_ImplSDL3_InitForMetal" defs["ImGui_ImplSDL3_InitForMetal"][1]["defaults"] = {} defs["ImGui_ImplSDL3_InitForMetal"][1]["funcname"] = "ImGui_ImplSDL3_InitForMetal" -defs["ImGui_ImplSDL3_InitForMetal"][1]["location"] = "imgui_impl_sdl3:35" +defs["ImGui_ImplSDL3_InitForMetal"][1]["location"] = "imgui_impl_sdl3:36" defs["ImGui_ImplSDL3_InitForMetal"][1]["ov_cimguiname"] = "ImGui_ImplSDL3_InitForMetal" defs["ImGui_ImplSDL3_InitForMetal"][1]["ret"] = "bool" defs["ImGui_ImplSDL3_InitForMetal"][1]["signature"] = "(SDL_Window*)" @@ -842,7 +842,7 @@ defs["ImGui_ImplSDL3_InitForOpenGL"][1]["call_args"] = "(window,sdl_gl_context)" defs["ImGui_ImplSDL3_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplSDL3_InitForOpenGL" defs["ImGui_ImplSDL3_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplSDL3_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL3_InitForOpenGL" -defs["ImGui_ImplSDL3_InitForOpenGL"][1]["location"] = "imgui_impl_sdl3:32" +defs["ImGui_ImplSDL3_InitForOpenGL"][1]["location"] = "imgui_impl_sdl3:33" defs["ImGui_ImplSDL3_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL3_InitForOpenGL" defs["ImGui_ImplSDL3_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplSDL3_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)" @@ -860,7 +860,7 @@ defs["ImGui_ImplSDL3_InitForOther"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL3_InitForOther"][1]["cimguiname"] = "ImGui_ImplSDL3_InitForOther" defs["ImGui_ImplSDL3_InitForOther"][1]["defaults"] = {} defs["ImGui_ImplSDL3_InitForOther"][1]["funcname"] = "ImGui_ImplSDL3_InitForOther" -defs["ImGui_ImplSDL3_InitForOther"][1]["location"] = "imgui_impl_sdl3:37" +defs["ImGui_ImplSDL3_InitForOther"][1]["location"] = "imgui_impl_sdl3:38" defs["ImGui_ImplSDL3_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplSDL3_InitForOther" defs["ImGui_ImplSDL3_InitForOther"][1]["ret"] = "bool" defs["ImGui_ImplSDL3_InitForOther"][1]["signature"] = "(SDL_Window*)" @@ -881,7 +881,7 @@ defs["ImGui_ImplSDL3_InitForSDLRenderer"][1]["call_args"] = "(window,renderer)" defs["ImGui_ImplSDL3_InitForSDLRenderer"][1]["cimguiname"] = "ImGui_ImplSDL3_InitForSDLRenderer" defs["ImGui_ImplSDL3_InitForSDLRenderer"][1]["defaults"] = {} defs["ImGui_ImplSDL3_InitForSDLRenderer"][1]["funcname"] = "ImGui_ImplSDL3_InitForSDLRenderer" -defs["ImGui_ImplSDL3_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl3:36" +defs["ImGui_ImplSDL3_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl3:37" defs["ImGui_ImplSDL3_InitForSDLRenderer"][1]["ov_cimguiname"] = "ImGui_ImplSDL3_InitForSDLRenderer" defs["ImGui_ImplSDL3_InitForSDLRenderer"][1]["ret"] = "bool" defs["ImGui_ImplSDL3_InitForSDLRenderer"][1]["signature"] = "(SDL_Window*,SDL_Renderer*)" @@ -899,7 +899,7 @@ defs["ImGui_ImplSDL3_InitForVulkan"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL3_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL3_InitForVulkan" defs["ImGui_ImplSDL3_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplSDL3_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL3_InitForVulkan" -defs["ImGui_ImplSDL3_InitForVulkan"][1]["location"] = "imgui_impl_sdl3:33" +defs["ImGui_ImplSDL3_InitForVulkan"][1]["location"] = "imgui_impl_sdl3:34" defs["ImGui_ImplSDL3_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL3_InitForVulkan" defs["ImGui_ImplSDL3_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplSDL3_InitForVulkan"][1]["signature"] = "(SDL_Window*)" @@ -914,7 +914,7 @@ defs["ImGui_ImplSDL3_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplSDL3_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL3_NewFrame" defs["ImGui_ImplSDL3_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplSDL3_NewFrame"][1]["funcname"] = "ImGui_ImplSDL3_NewFrame" -defs["ImGui_ImplSDL3_NewFrame"][1]["location"] = "imgui_impl_sdl3:39" +defs["ImGui_ImplSDL3_NewFrame"][1]["location"] = "imgui_impl_sdl3:40" defs["ImGui_ImplSDL3_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL3_NewFrame" defs["ImGui_ImplSDL3_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplSDL3_NewFrame"][1]["signature"] = "()" @@ -932,7 +932,7 @@ defs["ImGui_ImplSDL3_ProcessEvent"][1]["call_args"] = "(event)" defs["ImGui_ImplSDL3_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL3_ProcessEvent" defs["ImGui_ImplSDL3_ProcessEvent"][1]["defaults"] = {} defs["ImGui_ImplSDL3_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL3_ProcessEvent" -defs["ImGui_ImplSDL3_ProcessEvent"][1]["location"] = "imgui_impl_sdl3:40" +defs["ImGui_ImplSDL3_ProcessEvent"][1]["location"] = "imgui_impl_sdl3:41" defs["ImGui_ImplSDL3_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL3_ProcessEvent" defs["ImGui_ImplSDL3_ProcessEvent"][1]["ret"] = "bool" defs["ImGui_ImplSDL3_ProcessEvent"][1]["signature"] = "(const SDL_Event*)" @@ -951,14 +951,14 @@ defs["ImGui_ImplSDL3_SetGamepadMode"][1]["argsT"][2]["type"] = "SDL_Gamepad**" defs["ImGui_ImplSDL3_SetGamepadMode"][1]["argsT"][3] = {} defs["ImGui_ImplSDL3_SetGamepadMode"][1]["argsT"][3]["name"] = "manual_gamepads_count" defs["ImGui_ImplSDL3_SetGamepadMode"][1]["argsT"][3]["type"] = "int" -defs["ImGui_ImplSDL3_SetGamepadMode"][1]["argsoriginal"] = "(ImGui_ImplSDL3_GamepadMode mode,SDL_Gamepad** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)" +defs["ImGui_ImplSDL3_SetGamepadMode"][1]["argsoriginal"] = "(ImGui_ImplSDL3_GamepadMode mode,SDL_Gamepad** manual_gamepads_array=nullptr,int manual_gamepads_count=-1)" defs["ImGui_ImplSDL3_SetGamepadMode"][1]["call_args"] = "(mode,manual_gamepads_array,manual_gamepads_count)" defs["ImGui_ImplSDL3_SetGamepadMode"][1]["cimguiname"] = "ImGui_ImplSDL3_SetGamepadMode" defs["ImGui_ImplSDL3_SetGamepadMode"][1]["defaults"] = {} -defs["ImGui_ImplSDL3_SetGamepadMode"][1]["defaults"]["manual_gamepads_array"] = "NULL" +defs["ImGui_ImplSDL3_SetGamepadMode"][1]["defaults"]["manual_gamepads_array"] = "nullptr" defs["ImGui_ImplSDL3_SetGamepadMode"][1]["defaults"]["manual_gamepads_count"] = "-1" defs["ImGui_ImplSDL3_SetGamepadMode"][1]["funcname"] = "ImGui_ImplSDL3_SetGamepadMode" -defs["ImGui_ImplSDL3_SetGamepadMode"][1]["location"] = "imgui_impl_sdl3:45" +defs["ImGui_ImplSDL3_SetGamepadMode"][1]["location"] = "imgui_impl_sdl3:46" defs["ImGui_ImplSDL3_SetGamepadMode"][1]["ov_cimguiname"] = "ImGui_ImplSDL3_SetGamepadMode" defs["ImGui_ImplSDL3_SetGamepadMode"][1]["ret"] = "void" defs["ImGui_ImplSDL3_SetGamepadMode"][1]["signature"] = "(ImGui_ImplSDL3_GamepadMode,SDL_Gamepad**,int)" @@ -973,7 +973,7 @@ defs["ImGui_ImplSDL3_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplSDL3_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL3_Shutdown" defs["ImGui_ImplSDL3_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplSDL3_Shutdown"][1]["funcname"] = "ImGui_ImplSDL3_Shutdown" -defs["ImGui_ImplSDL3_Shutdown"][1]["location"] = "imgui_impl_sdl3:38" +defs["ImGui_ImplSDL3_Shutdown"][1]["location"] = "imgui_impl_sdl3:39" defs["ImGui_ImplSDL3_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL3_Shutdown" defs["ImGui_ImplSDL3_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplSDL3_Shutdown"][1]["signature"] = "()" diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index d2a5952..f73af07 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -1099,23 +1099,28 @@ }, { "calc_value": 256, - "name": "ImGuiDebugLogFlags_EventInputRouting", + "name": "ImGuiDebugLogFlags_EventFont", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiDebugLogFlags_EventDocking", + "name": "ImGuiDebugLogFlags_EventInputRouting", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiDebugLogFlags_EventViewport", + "name": "ImGuiDebugLogFlags_EventDocking", "value": "1 << 10" }, { - "calc_value": 2047, + "calc_value": 2048, + "name": "ImGuiDebugLogFlags_EventViewport", + "value": "1 << 11" + }, + { + "calc_value": 4095, "name": "ImGuiDebugLogFlags_EventMask_", - "value": "ImGuiDebugLogFlags_EventError | ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" + "value": "ImGuiDebugLogFlags_EventError | ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventFont | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" }, { "calc_value": 1048576, @@ -1805,33 +1810,38 @@ }, { "calc_value": 131072, - "name": "ImGuiInputTextFlags_CallbackCompletion", + "name": "ImGuiInputTextFlags_ElideLeft", "value": "1 << 17" }, { "calc_value": 262144, - "name": "ImGuiInputTextFlags_CallbackHistory", + "name": "ImGuiInputTextFlags_CallbackCompletion", "value": "1 << 18" }, { "calc_value": 524288, - "name": "ImGuiInputTextFlags_CallbackAlways", + "name": "ImGuiInputTextFlags_CallbackHistory", "value": "1 << 19" }, { "calc_value": 1048576, - "name": "ImGuiInputTextFlags_CallbackCharFilter", + "name": "ImGuiInputTextFlags_CallbackAlways", "value": "1 << 20" }, { "calc_value": 2097152, - "name": "ImGuiInputTextFlags_CallbackResize", + "name": "ImGuiInputTextFlags_CallbackCharFilter", "value": "1 << 21" }, { "calc_value": 4194304, - "name": "ImGuiInputTextFlags_CallbackEdit", + "name": "ImGuiInputTextFlags_CallbackResize", "value": "1 << 22" + }, + { + "calc_value": 8388608, + "name": "ImGuiInputTextFlags_CallbackEdit", + "value": "1 << 23" } ], "ImGuiItemFlagsPrivate_": [ @@ -4718,191 +4728,191 @@ "ImGuiSortDirection": "ImU8" }, "locations": { - "ImBitVector": "imgui_internal:599", - "ImColor": "imgui:2741", - "ImDrawChannel": "imgui:2981", - "ImDrawCmd": "imgui:2938", - "ImDrawCmdHeader": "imgui:2973", - "ImDrawData": "imgui:3197", - "ImDrawDataBuilder": "imgui_internal:788", - "ImDrawFlags_": "imgui:3007", - "ImDrawList": "imgui:3045", - "ImDrawListFlags_": "imgui:3027", - "ImDrawListSharedData": "imgui_internal:764", - "ImDrawListSplitter": "imgui:2990", - "ImDrawVert": "imgui:2958", - "ImFont": "imgui:3421", - "ImFontAtlas": "imgui:3317", - "ImFontAtlasCustomRect": "imgui:3278", - "ImFontAtlasFlags_": "imgui:3292", - "ImFontBuilderIO": "imgui_internal:3528", - "ImFontConfig": "imgui:3221", - "ImFontGlyph": "imgui:3251", - "ImFontGlyphRangesBuilder": "imgui:3263", - "ImGuiActivateFlags_": "imgui_internal:1536", - "ImGuiAxis": "imgui_internal:1014", - "ImGuiBackendFlags_": "imgui:1594", - "ImGuiBoxSelectState": "imgui_internal:1725", - "ImGuiButtonFlagsPrivate_": "imgui_internal:904", - "ImGuiButtonFlags_": "imgui:1720", - "ImGuiChildFlags_": "imgui:1113", - "ImGuiCol_": "imgui:1604", - "ImGuiColorEditFlags_": "imgui:1731", - "ImGuiColorMod": "imgui_internal:1028", - "ImGuiComboFlagsPrivate_": "imgui_internal:929", - "ImGuiComboFlags_": "imgui:1256", - "ImGuiComboPreviewData": "imgui_internal:1045", - "ImGuiCond_": "imgui:1832", - "ImGuiConfigFlags_": "imgui:1574", - "ImGuiContext": "imgui_internal:2023", - "ImGuiContextHook": "imgui_internal:2008", - "ImGuiContextHookType": "imgui_internal:2006", - "ImGuiDataTypeInfo": "imgui_internal:814", - "ImGuiDataTypePrivate_": "imgui_internal:823", - "ImGuiDataTypeStorage": "imgui_internal:808", - "ImGuiDataType_": "imgui:1383", - "ImGuiDataVarInfo": "imgui_internal:800", - "ImGuiDebugAllocEntry": "imgui_internal:1943", - "ImGuiDebugAllocInfo": "imgui_internal:1950", - "ImGuiDebugLogFlags_": "imgui_internal:1922", - "ImGuiDir": "imgui:1400", - "ImGuiDragDropFlags_": "imgui:1355", - "ImGuiErrorRecoveryState": "imgui_internal:1270", - "ImGuiFocusRequestFlags_": "imgui_internal:974", - "ImGuiFocusScopeData": "imgui_internal:1622", - "ImGuiFocusedFlags_": "imgui:1303", + "ImBitVector": "imgui_internal:603", + "ImColor": "imgui:2747", + "ImDrawChannel": "imgui:2987", + "ImDrawCmd": "imgui:2944", + "ImDrawCmdHeader": "imgui:2979", + "ImDrawData": "imgui:3204", + "ImDrawDataBuilder": "imgui_internal:792", + "ImDrawFlags_": "imgui:3013", + "ImDrawList": "imgui:3051", + "ImDrawListFlags_": "imgui:3033", + "ImDrawListSharedData": "imgui_internal:770", + "ImDrawListSplitter": "imgui:2996", + "ImDrawVert": "imgui:2964", + "ImFont": "imgui:3430", + "ImFontAtlas": "imgui:3326", + "ImFontAtlasCustomRect": "imgui:3285", + "ImFontAtlasFlags_": "imgui:3301", + "ImFontBuilderIO": "imgui_internal:3535", + "ImFontConfig": "imgui:3228", + "ImFontGlyph": "imgui:3258", + "ImFontGlyphRangesBuilder": "imgui:3270", + "ImGuiActivateFlags_": "imgui_internal:1540", + "ImGuiAxis": "imgui_internal:1018", + "ImGuiBackendFlags_": "imgui:1598", + "ImGuiBoxSelectState": "imgui_internal:1729", + "ImGuiButtonFlagsPrivate_": "imgui_internal:908", + "ImGuiButtonFlags_": "imgui:1724", + "ImGuiChildFlags_": "imgui:1114", + "ImGuiCol_": "imgui:1608", + "ImGuiColorEditFlags_": "imgui:1735", + "ImGuiColorMod": "imgui_internal:1032", + "ImGuiComboFlagsPrivate_": "imgui_internal:933", + "ImGuiComboFlags_": "imgui:1260", + "ImGuiComboPreviewData": "imgui_internal:1049", + "ImGuiCond_": "imgui:1836", + "ImGuiConfigFlags_": "imgui:1578", + "ImGuiContext": "imgui_internal:2029", + "ImGuiContextHook": "imgui_internal:2014", + "ImGuiContextHookType": "imgui_internal:2012", + "ImGuiDataTypeInfo": "imgui_internal:818", + "ImGuiDataTypePrivate_": "imgui_internal:827", + "ImGuiDataTypeStorage": "imgui_internal:812", + "ImGuiDataType_": "imgui:1387", + "ImGuiDataVarInfo": "imgui_internal:804", + "ImGuiDebugAllocEntry": "imgui_internal:1949", + "ImGuiDebugAllocInfo": "imgui_internal:1956", + "ImGuiDebugLogFlags_": "imgui_internal:1927", + "ImGuiDir": "imgui:1404", + "ImGuiDragDropFlags_": "imgui:1359", + "ImGuiErrorRecoveryState": "imgui_internal:1274", + "ImGuiFocusRequestFlags_": "imgui_internal:978", + "ImGuiFocusScopeData": "imgui_internal:1626", + "ImGuiFocusedFlags_": "imgui:1307", "ImGuiFreeTypeBuilderFlags": "imgui_freetype:26", - "ImGuiGroupData": "imgui_internal:1058", - "ImGuiHoveredFlagsPrivate_": "imgui_internal:887", - "ImGuiHoveredFlags_": "imgui:1317", - "ImGuiIDStackTool": "imgui_internal:1989", - "ImGuiIO": "imgui:2204", - "ImGuiInputEvent": "imgui_internal:1397", - "ImGuiInputEventAppFocused": "imgui_internal:1395", - "ImGuiInputEventKey": "imgui_internal:1393", - "ImGuiInputEventMouseButton": "imgui_internal:1392", - "ImGuiInputEventMousePos": "imgui_internal:1390", - "ImGuiInputEventMouseWheel": "imgui_internal:1391", - "ImGuiInputEventText": "imgui_internal:1394", - "ImGuiInputEventType": "imgui_internal:1367", - "ImGuiInputFlagsPrivate_": "imgui_internal:1463", - "ImGuiInputFlags_": "imgui:1551", - "ImGuiInputSource": "imgui_internal:1379", - "ImGuiInputTextCallbackData": "imgui:2442", - "ImGuiInputTextDeactivatedState": "imgui_internal:1094", - "ImGuiInputTextFlagsPrivate_": "imgui_internal:895", - "ImGuiInputTextFlags_": "imgui:1147", - "ImGuiInputTextState": "imgui_internal:1116", - "ImGuiItemFlagsPrivate_": "imgui_internal:837", - "ImGuiItemFlags_": "imgui:1134", - "ImGuiItemStatusFlags_": "imgui_internal:861", - "ImGuiKey": "imgui:1424", - "ImGuiKeyData": "imgui:2196", - "ImGuiKeyOwnerData": "imgui_internal:1450", - "ImGuiKeyRoutingData": "imgui_internal:1424", - "ImGuiKeyRoutingTable": "imgui_internal:1438", - "ImGuiLastItemData": "imgui_internal:1242", - "ImGuiLayoutType_": "imgui_internal:995", - "ImGuiListClipper": "imgui:2649", - "ImGuiListClipperData": "imgui_internal:1520", - "ImGuiListClipperRange": "imgui_internal:1507", - "ImGuiLocEntry": "imgui_internal:1896", - "ImGuiLocKey": "imgui_internal:1881", - "ImGuiLogFlags_": "imgui_internal:1002", - "ImGuiMenuColumns": "imgui_internal:1076", - "ImGuiMetricsConfig": "imgui_internal:1960", - "ImGuiMouseButton_": "imgui:1792", - "ImGuiMouseCursor_": "imgui:1802", - "ImGuiMouseSource": "imgui:1821", - "ImGuiMultiSelectFlags_": "imgui:2799", - "ImGuiMultiSelectIO": "imgui:2826", - "ImGuiMultiSelectState": "imgui_internal:1782", - "ImGuiMultiSelectTempData": "imgui_internal:1757", - "ImGuiNavItemData": "imgui_internal:1605", - "ImGuiNavLayer": "imgui_internal:1597", - "ImGuiNavMoveFlags_": "imgui_internal:1575", - "ImGuiNavRenderCursorFlags_": "imgui_internal:1561", - "ImGuiNextItemData": "imgui_internal:1222", - "ImGuiNextItemDataFlags_": "imgui_internal:1212", - "ImGuiNextWindowData": "imgui_internal:1188", - "ImGuiNextWindowDataFlags_": "imgui_internal:1172", - "ImGuiOldColumnData": "imgui_internal:1690", - "ImGuiOldColumnFlags_": "imgui_internal:1670", - "ImGuiOldColumns": "imgui_internal:1700", - "ImGuiOnceUponAFrame": "imgui:2520", - "ImGuiPayload": "imgui:2485", - "ImGuiPlatformIO": "imgui:3519", - "ImGuiPlatformImeData": "imgui:3557", - "ImGuiPlotType": "imgui_internal:1021", - "ImGuiPopupData": "imgui_internal:1324", - "ImGuiPopupFlags_": "imgui:1221", - "ImGuiPopupPositionPolicy": "imgui_internal:1316", - "ImGuiPtrOrIndex": "imgui_internal:1303", - "ImGuiScrollFlags_": "imgui_internal:1547", - "ImGuiSelectableFlagsPrivate_": "imgui_internal:942", - "ImGuiSelectableFlags_": "imgui:1239", - "ImGuiSelectionBasicStorage": "imgui:2872", - "ImGuiSelectionExternalStorage": "imgui:2895", - "ImGuiSelectionRequest": "imgui:2846", - "ImGuiSelectionRequestType": "imgui:2838", - "ImGuiSeparatorFlags_": "imgui_internal:963", - "ImGuiSettingsHandler": "imgui_internal:1861", - "ImGuiShrinkWidthItem": "imgui_internal:1296", - "ImGuiSizeCallbackData": "imgui:2476", - "ImGuiSliderFlagsPrivate_": "imgui_internal:935", - "ImGuiSliderFlags_": "imgui:1777", - "ImGuiSortDirection": "imgui:1411", - "ImGuiStackLevelInfo": "imgui_internal:1977", - "ImGuiStorage": "imgui:2592", - "ImGuiStoragePair": "imgui:2575", - "ImGuiStyle": "imgui:2119", - "ImGuiStyleMod": "imgui_internal:1035", - "ImGuiStyleVar_": "imgui:1680", - "ImGuiTabBar": "imgui_internal:2609", - "ImGuiTabBarFlagsPrivate_": "imgui_internal:2574", - "ImGuiTabBarFlags_": "imgui:1271", - "ImGuiTabItem": "imgui_internal:2590", - "ImGuiTabItemFlagsPrivate_": "imgui_internal:2582", - "ImGuiTabItemFlags_": "imgui:1288", - "ImGuiTable": "imgui_internal:2756", - "ImGuiTableBgTarget_": "imgui:1973", - "ImGuiTableCellData": "imgui_internal:2724", - "ImGuiTableColumn": "imgui_internal:2664", - "ImGuiTableColumnFlags_": "imgui:1920", - "ImGuiTableColumnSettings": "imgui_internal:2903", - "ImGuiTableColumnSortSpecs": "imgui:1995", - "ImGuiTableFlags_": "imgui:1867", - "ImGuiTableHeaderData": "imgui_internal:2733", - "ImGuiTableInstanceData": "imgui_internal:2743", - "ImGuiTableRowFlags_": "imgui:1958", - "ImGuiTableSettings": "imgui_internal:2927", - "ImGuiTableSortSpecs": "imgui:1985", - "ImGuiTableTempData": "imgui_internal:2880", - "ImGuiTextBuffer": "imgui:2555", - "ImGuiTextFilter": "imgui:2528", - "ImGuiTextFlags_": "imgui_internal:981", - "ImGuiTextIndex": "imgui_internal:719", - "ImGuiTextRange": "imgui:2538", - "ImGuiTooltipFlags_": "imgui_internal:987", - "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:956", - "ImGuiTreeNodeFlags_": "imgui:1186", - "ImGuiTreeNodeStackData": "imgui_internal:1261", - "ImGuiTypingSelectFlags_": "imgui_internal:1633", - "ImGuiTypingSelectRequest": "imgui_internal:1641", - "ImGuiTypingSelectState": "imgui_internal:1652", - "ImGuiViewport": "imgui:3494", - "ImGuiViewportFlags_": "imgui:3479", - "ImGuiViewportP": "imgui_internal:1810", - "ImGuiWindow": "imgui_internal:2445", - "ImGuiWindowFlags_": "imgui:1064", - "ImGuiWindowRefreshFlags_": "imgui_internal:1163", - "ImGuiWindowSettings": "imgui_internal:1847", - "ImGuiWindowStackData": "imgui_internal:1288", - "ImGuiWindowTempData": "imgui_internal:2395", - "ImRect": "imgui_internal:521", - "ImVec1": "imgui_internal:503", + "ImGuiGroupData": "imgui_internal:1062", + "ImGuiHoveredFlagsPrivate_": "imgui_internal:891", + "ImGuiHoveredFlags_": "imgui:1321", + "ImGuiIDStackTool": "imgui_internal:1995", + "ImGuiIO": "imgui:2208", + "ImGuiInputEvent": "imgui_internal:1401", + "ImGuiInputEventAppFocused": "imgui_internal:1399", + "ImGuiInputEventKey": "imgui_internal:1397", + "ImGuiInputEventMouseButton": "imgui_internal:1396", + "ImGuiInputEventMousePos": "imgui_internal:1394", + "ImGuiInputEventMouseWheel": "imgui_internal:1395", + "ImGuiInputEventText": "imgui_internal:1398", + "ImGuiInputEventType": "imgui_internal:1371", + "ImGuiInputFlagsPrivate_": "imgui_internal:1467", + "ImGuiInputFlags_": "imgui:1555", + "ImGuiInputSource": "imgui_internal:1383", + "ImGuiInputTextCallbackData": "imgui:2447", + "ImGuiInputTextDeactivatedState": "imgui_internal:1098", + "ImGuiInputTextFlagsPrivate_": "imgui_internal:899", + "ImGuiInputTextFlags_": "imgui:1148", + "ImGuiInputTextState": "imgui_internal:1120", + "ImGuiItemFlagsPrivate_": "imgui_internal:841", + "ImGuiItemFlags_": "imgui:1135", + "ImGuiItemStatusFlags_": "imgui_internal:865", + "ImGuiKey": "imgui:1428", + "ImGuiKeyData": "imgui:2200", + "ImGuiKeyOwnerData": "imgui_internal:1454", + "ImGuiKeyRoutingData": "imgui_internal:1428", + "ImGuiKeyRoutingTable": "imgui_internal:1442", + "ImGuiLastItemData": "imgui_internal:1246", + "ImGuiLayoutType_": "imgui_internal:999", + "ImGuiListClipper": "imgui:2654", + "ImGuiListClipperData": "imgui_internal:1524", + "ImGuiListClipperRange": "imgui_internal:1511", + "ImGuiLocEntry": "imgui_internal:1900", + "ImGuiLocKey": "imgui_internal:1885", + "ImGuiLogFlags_": "imgui_internal:1006", + "ImGuiMenuColumns": "imgui_internal:1080", + "ImGuiMetricsConfig": "imgui_internal:1966", + "ImGuiMouseButton_": "imgui:1796", + "ImGuiMouseCursor_": "imgui:1806", + "ImGuiMouseSource": "imgui:1825", + "ImGuiMultiSelectFlags_": "imgui:2805", + "ImGuiMultiSelectIO": "imgui:2832", + "ImGuiMultiSelectState": "imgui_internal:1786", + "ImGuiMultiSelectTempData": "imgui_internal:1761", + "ImGuiNavItemData": "imgui_internal:1609", + "ImGuiNavLayer": "imgui_internal:1601", + "ImGuiNavMoveFlags_": "imgui_internal:1579", + "ImGuiNavRenderCursorFlags_": "imgui_internal:1565", + "ImGuiNextItemData": "imgui_internal:1226", + "ImGuiNextItemDataFlags_": "imgui_internal:1216", + "ImGuiNextWindowData": "imgui_internal:1192", + "ImGuiNextWindowDataFlags_": "imgui_internal:1176", + "ImGuiOldColumnData": "imgui_internal:1694", + "ImGuiOldColumnFlags_": "imgui_internal:1674", + "ImGuiOldColumns": "imgui_internal:1704", + "ImGuiOnceUponAFrame": "imgui:2525", + "ImGuiPayload": "imgui:2490", + "ImGuiPlatformIO": "imgui:3529", + "ImGuiPlatformImeData": "imgui:3567", + "ImGuiPlotType": "imgui_internal:1025", + "ImGuiPopupData": "imgui_internal:1328", + "ImGuiPopupFlags_": "imgui:1225", + "ImGuiPopupPositionPolicy": "imgui_internal:1320", + "ImGuiPtrOrIndex": "imgui_internal:1307", + "ImGuiScrollFlags_": "imgui_internal:1551", + "ImGuiSelectableFlagsPrivate_": "imgui_internal:946", + "ImGuiSelectableFlags_": "imgui:1243", + "ImGuiSelectionBasicStorage": "imgui:2878", + "ImGuiSelectionExternalStorage": "imgui:2901", + "ImGuiSelectionRequest": "imgui:2852", + "ImGuiSelectionRequestType": "imgui:2844", + "ImGuiSeparatorFlags_": "imgui_internal:967", + "ImGuiSettingsHandler": "imgui_internal:1865", + "ImGuiShrinkWidthItem": "imgui_internal:1300", + "ImGuiSizeCallbackData": "imgui:2481", + "ImGuiSliderFlagsPrivate_": "imgui_internal:939", + "ImGuiSliderFlags_": "imgui:1781", + "ImGuiSortDirection": "imgui:1415", + "ImGuiStackLevelInfo": "imgui_internal:1983", + "ImGuiStorage": "imgui:2597", + "ImGuiStoragePair": "imgui:2580", + "ImGuiStyle": "imgui:2123", + "ImGuiStyleMod": "imgui_internal:1039", + "ImGuiStyleVar_": "imgui:1684", + "ImGuiTabBar": "imgui_internal:2615", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:2580", + "ImGuiTabBarFlags_": "imgui:1275", + "ImGuiTabItem": "imgui_internal:2596", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:2588", + "ImGuiTabItemFlags_": "imgui:1292", + "ImGuiTable": "imgui_internal:2762", + "ImGuiTableBgTarget_": "imgui:1977", + "ImGuiTableCellData": "imgui_internal:2730", + "ImGuiTableColumn": "imgui_internal:2670", + "ImGuiTableColumnFlags_": "imgui:1924", + "ImGuiTableColumnSettings": "imgui_internal:2909", + "ImGuiTableColumnSortSpecs": "imgui:1999", + "ImGuiTableFlags_": "imgui:1871", + "ImGuiTableHeaderData": "imgui_internal:2739", + "ImGuiTableInstanceData": "imgui_internal:2749", + "ImGuiTableRowFlags_": "imgui:1962", + "ImGuiTableSettings": "imgui_internal:2933", + "ImGuiTableSortSpecs": "imgui:1989", + "ImGuiTableTempData": "imgui_internal:2886", + "ImGuiTextBuffer": "imgui:2560", + "ImGuiTextFilter": "imgui:2533", + "ImGuiTextFlags_": "imgui_internal:985", + "ImGuiTextIndex": "imgui_internal:723", + "ImGuiTextRange": "imgui:2543", + "ImGuiTooltipFlags_": "imgui_internal:991", + "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:960", + "ImGuiTreeNodeFlags_": "imgui:1190", + "ImGuiTreeNodeStackData": "imgui_internal:1265", + "ImGuiTypingSelectFlags_": "imgui_internal:1637", + "ImGuiTypingSelectRequest": "imgui_internal:1645", + "ImGuiTypingSelectState": "imgui_internal:1656", + "ImGuiViewport": "imgui:3504", + "ImGuiViewportFlags_": "imgui:3489", + "ImGuiViewportP": "imgui_internal:1814", + "ImGuiWindow": "imgui_internal:2451", + "ImGuiWindowFlags_": "imgui:1065", + "ImGuiWindowRefreshFlags_": "imgui_internal:1167", + "ImGuiWindowSettings": "imgui_internal:1851", + "ImGuiWindowStackData": "imgui_internal:1292", + "ImGuiWindowTempData": "imgui_internal:2401", + "ImRect": "imgui_internal:525", + "ImVec1": "imgui_internal:507", "ImVec2": "imgui:291", - "ImVec2ih": "imgui_internal:511", + "ImVec2ih": "imgui_internal:515", "ImVec4": "imgui:304" }, "structs": { @@ -5113,6 +5123,10 @@ "name": "TexUvWhitePixel", "type": "ImVec2" }, + { + "name": "TexUvLines", + "type": "const ImVec4*" + }, { "name": "Font", "type": "ImFont*" @@ -5159,10 +5173,6 @@ "name": "CircleSegmentCounts[64]", "size": 64, "type": "ImU8" - }, - { - "name": "TexUvLines", - "type": "const ImVec4*" } ], "ImDrawListSplitter": [ @@ -5235,16 +5245,16 @@ "type": "short" }, { - "name": "FallbackChar", - "type": "ImWchar" + "name": "EllipsisCharCount", + "type": "short" }, { "name": "EllipsisChar", "type": "ImWchar" }, { - "name": "EllipsisCharCount", - "type": "short" + "name": "FallbackChar", + "type": "ImWchar" }, { "name": "EllipsisWidth", @@ -5375,14 +5385,6 @@ } ], "ImFontAtlasCustomRect": [ - { - "name": "Width", - "type": "unsigned short" - }, - { - "name": "Height", - "type": "unsigned short" - }, { "name": "X", "type": "unsigned short" @@ -5391,6 +5393,14 @@ "name": "Y", "type": "unsigned short" }, + { + "name": "Width", + "type": "unsigned short" + }, + { + "name": "Height", + "type": "unsigned short" + }, { "bitfield": "31", "name": "GlyphID", diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index aa24d32..e4f2d9e 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -869,28 +869,32 @@ defs["enums"]["ImGuiDebugLogFlags_"][9]["name"] = "ImGuiDebugLogFlags_EventIO" defs["enums"]["ImGuiDebugLogFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiDebugLogFlags_"][10] = {} defs["enums"]["ImGuiDebugLogFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiDebugLogFlags_"][10]["name"] = "ImGuiDebugLogFlags_EventInputRouting" +defs["enums"]["ImGuiDebugLogFlags_"][10]["name"] = "ImGuiDebugLogFlags_EventFont" defs["enums"]["ImGuiDebugLogFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiDebugLogFlags_"][11] = {} defs["enums"]["ImGuiDebugLogFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiDebugLogFlags_"][11]["name"] = "ImGuiDebugLogFlags_EventDocking" +defs["enums"]["ImGuiDebugLogFlags_"][11]["name"] = "ImGuiDebugLogFlags_EventInputRouting" defs["enums"]["ImGuiDebugLogFlags_"][11]["value"] = "1 << 9" defs["enums"]["ImGuiDebugLogFlags_"][12] = {} defs["enums"]["ImGuiDebugLogFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiDebugLogFlags_"][12]["name"] = "ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][12]["name"] = "ImGuiDebugLogFlags_EventDocking" defs["enums"]["ImGuiDebugLogFlags_"][12]["value"] = "1 << 10" defs["enums"]["ImGuiDebugLogFlags_"][13] = {} -defs["enums"]["ImGuiDebugLogFlags_"][13]["calc_value"] = 2047 -defs["enums"]["ImGuiDebugLogFlags_"][13]["name"] = "ImGuiDebugLogFlags_EventMask_" -defs["enums"]["ImGuiDebugLogFlags_"][13]["value"] = "ImGuiDebugLogFlags_EventError | ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][13]["calc_value"] = 2048 +defs["enums"]["ImGuiDebugLogFlags_"][13]["name"] = "ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][13]["value"] = "1 << 11" defs["enums"]["ImGuiDebugLogFlags_"][14] = {} -defs["enums"]["ImGuiDebugLogFlags_"][14]["calc_value"] = 1048576 -defs["enums"]["ImGuiDebugLogFlags_"][14]["name"] = "ImGuiDebugLogFlags_OutputToTTY" -defs["enums"]["ImGuiDebugLogFlags_"][14]["value"] = "1 << 20" +defs["enums"]["ImGuiDebugLogFlags_"][14]["calc_value"] = 4095 +defs["enums"]["ImGuiDebugLogFlags_"][14]["name"] = "ImGuiDebugLogFlags_EventMask_" +defs["enums"]["ImGuiDebugLogFlags_"][14]["value"] = "ImGuiDebugLogFlags_EventError | ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventFont | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" defs["enums"]["ImGuiDebugLogFlags_"][15] = {} -defs["enums"]["ImGuiDebugLogFlags_"][15]["calc_value"] = 2097152 -defs["enums"]["ImGuiDebugLogFlags_"][15]["name"] = "ImGuiDebugLogFlags_OutputToTestEngine" -defs["enums"]["ImGuiDebugLogFlags_"][15]["value"] = "1 << 21" +defs["enums"]["ImGuiDebugLogFlags_"][15]["calc_value"] = 1048576 +defs["enums"]["ImGuiDebugLogFlags_"][15]["name"] = "ImGuiDebugLogFlags_OutputToTTY" +defs["enums"]["ImGuiDebugLogFlags_"][15]["value"] = "1 << 20" +defs["enums"]["ImGuiDebugLogFlags_"][16] = {} +defs["enums"]["ImGuiDebugLogFlags_"][16]["calc_value"] = 2097152 +defs["enums"]["ImGuiDebugLogFlags_"][16]["name"] = "ImGuiDebugLogFlags_OutputToTestEngine" +defs["enums"]["ImGuiDebugLogFlags_"][16]["value"] = "1 << 21" defs["enums"]["ImGuiDir"] = {} defs["enums"]["ImGuiDir"][1] = {} defs["enums"]["ImGuiDir"][1]["calc_value"] = -1 @@ -1426,28 +1430,32 @@ defs["enums"]["ImGuiInputTextFlags_"][18]["name"] = "ImGuiInputTextFlags_NoUndoR defs["enums"]["ImGuiInputTextFlags_"][18]["value"] = "1 << 16" defs["enums"]["ImGuiInputTextFlags_"][19] = {} defs["enums"]["ImGuiInputTextFlags_"][19]["calc_value"] = 131072 -defs["enums"]["ImGuiInputTextFlags_"][19]["name"] = "ImGuiInputTextFlags_CallbackCompletion" +defs["enums"]["ImGuiInputTextFlags_"][19]["name"] = "ImGuiInputTextFlags_ElideLeft" defs["enums"]["ImGuiInputTextFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiInputTextFlags_"][20] = {} defs["enums"]["ImGuiInputTextFlags_"][20]["calc_value"] = 262144 -defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackHistory" +defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackCompletion" defs["enums"]["ImGuiInputTextFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiInputTextFlags_"][21] = {} defs["enums"]["ImGuiInputTextFlags_"][21]["calc_value"] = 524288 -defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackAlways" +defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackHistory" defs["enums"]["ImGuiInputTextFlags_"][21]["value"] = "1 << 19" defs["enums"]["ImGuiInputTextFlags_"][22] = {} defs["enums"]["ImGuiInputTextFlags_"][22]["calc_value"] = 1048576 -defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_CallbackCharFilter" +defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_CallbackAlways" defs["enums"]["ImGuiInputTextFlags_"][22]["value"] = "1 << 20" defs["enums"]["ImGuiInputTextFlags_"][23] = {} defs["enums"]["ImGuiInputTextFlags_"][23]["calc_value"] = 2097152 -defs["enums"]["ImGuiInputTextFlags_"][23]["name"] = "ImGuiInputTextFlags_CallbackResize" +defs["enums"]["ImGuiInputTextFlags_"][23]["name"] = "ImGuiInputTextFlags_CallbackCharFilter" defs["enums"]["ImGuiInputTextFlags_"][23]["value"] = "1 << 21" defs["enums"]["ImGuiInputTextFlags_"][24] = {} defs["enums"]["ImGuiInputTextFlags_"][24]["calc_value"] = 4194304 -defs["enums"]["ImGuiInputTextFlags_"][24]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][24]["name"] = "ImGuiInputTextFlags_CallbackResize" defs["enums"]["ImGuiInputTextFlags_"][24]["value"] = "1 << 22" +defs["enums"]["ImGuiInputTextFlags_"][25] = {} +defs["enums"]["ImGuiInputTextFlags_"][25]["calc_value"] = 8388608 +defs["enums"]["ImGuiInputTextFlags_"][25]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][25]["value"] = "1 << 23" defs["enums"]["ImGuiItemFlagsPrivate_"] = {} defs["enums"]["ImGuiItemFlagsPrivate_"][1] = {} defs["enums"]["ImGuiItemFlagsPrivate_"][1]["calc_value"] = 1024 @@ -3728,191 +3736,191 @@ defs["enumtypes"]["ImGuiLocKey"] = "int" defs["enumtypes"]["ImGuiMouseSource"] = "int" defs["enumtypes"]["ImGuiSortDirection"] = "ImU8" defs["locations"] = {} -defs["locations"]["ImBitVector"] = "imgui_internal:599" -defs["locations"]["ImColor"] = "imgui:2741" -defs["locations"]["ImDrawChannel"] = "imgui:2981" -defs["locations"]["ImDrawCmd"] = "imgui:2938" -defs["locations"]["ImDrawCmdHeader"] = "imgui:2973" -defs["locations"]["ImDrawData"] = "imgui:3197" -defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:788" -defs["locations"]["ImDrawFlags_"] = "imgui:3007" -defs["locations"]["ImDrawList"] = "imgui:3045" -defs["locations"]["ImDrawListFlags_"] = "imgui:3027" -defs["locations"]["ImDrawListSharedData"] = "imgui_internal:764" -defs["locations"]["ImDrawListSplitter"] = "imgui:2990" -defs["locations"]["ImDrawVert"] = "imgui:2958" -defs["locations"]["ImFont"] = "imgui:3421" -defs["locations"]["ImFontAtlas"] = "imgui:3317" -defs["locations"]["ImFontAtlasCustomRect"] = "imgui:3278" -defs["locations"]["ImFontAtlasFlags_"] = "imgui:3292" -defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3528" -defs["locations"]["ImFontConfig"] = "imgui:3221" -defs["locations"]["ImFontGlyph"] = "imgui:3251" -defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3263" -defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1536" -defs["locations"]["ImGuiAxis"] = "imgui_internal:1014" -defs["locations"]["ImGuiBackendFlags_"] = "imgui:1594" -defs["locations"]["ImGuiBoxSelectState"] = "imgui_internal:1725" -defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:904" -defs["locations"]["ImGuiButtonFlags_"] = "imgui:1720" -defs["locations"]["ImGuiChildFlags_"] = "imgui:1113" -defs["locations"]["ImGuiCol_"] = "imgui:1604" -defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1731" -defs["locations"]["ImGuiColorMod"] = "imgui_internal:1028" -defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:929" -defs["locations"]["ImGuiComboFlags_"] = "imgui:1256" -defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1045" -defs["locations"]["ImGuiCond_"] = "imgui:1832" -defs["locations"]["ImGuiConfigFlags_"] = "imgui:1574" -defs["locations"]["ImGuiContext"] = "imgui_internal:2023" -defs["locations"]["ImGuiContextHook"] = "imgui_internal:2008" -defs["locations"]["ImGuiContextHookType"] = "imgui_internal:2006" -defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:814" -defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:823" -defs["locations"]["ImGuiDataTypeStorage"] = "imgui_internal:808" -defs["locations"]["ImGuiDataType_"] = "imgui:1383" -defs["locations"]["ImGuiDataVarInfo"] = "imgui_internal:800" -defs["locations"]["ImGuiDebugAllocEntry"] = "imgui_internal:1943" -defs["locations"]["ImGuiDebugAllocInfo"] = "imgui_internal:1950" -defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:1922" -defs["locations"]["ImGuiDir"] = "imgui:1400" -defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1355" -defs["locations"]["ImGuiErrorRecoveryState"] = "imgui_internal:1270" -defs["locations"]["ImGuiFocusRequestFlags_"] = "imgui_internal:974" -defs["locations"]["ImGuiFocusScopeData"] = "imgui_internal:1622" -defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1303" +defs["locations"]["ImBitVector"] = "imgui_internal:603" +defs["locations"]["ImColor"] = "imgui:2747" +defs["locations"]["ImDrawChannel"] = "imgui:2987" +defs["locations"]["ImDrawCmd"] = "imgui:2944" +defs["locations"]["ImDrawCmdHeader"] = "imgui:2979" +defs["locations"]["ImDrawData"] = "imgui:3204" +defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:792" +defs["locations"]["ImDrawFlags_"] = "imgui:3013" +defs["locations"]["ImDrawList"] = "imgui:3051" +defs["locations"]["ImDrawListFlags_"] = "imgui:3033" +defs["locations"]["ImDrawListSharedData"] = "imgui_internal:770" +defs["locations"]["ImDrawListSplitter"] = "imgui:2996" +defs["locations"]["ImDrawVert"] = "imgui:2964" +defs["locations"]["ImFont"] = "imgui:3430" +defs["locations"]["ImFontAtlas"] = "imgui:3326" +defs["locations"]["ImFontAtlasCustomRect"] = "imgui:3285" +defs["locations"]["ImFontAtlasFlags_"] = "imgui:3301" +defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3535" +defs["locations"]["ImFontConfig"] = "imgui:3228" +defs["locations"]["ImFontGlyph"] = "imgui:3258" +defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3270" +defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1540" +defs["locations"]["ImGuiAxis"] = "imgui_internal:1018" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1598" +defs["locations"]["ImGuiBoxSelectState"] = "imgui_internal:1729" +defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:908" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1724" +defs["locations"]["ImGuiChildFlags_"] = "imgui:1114" +defs["locations"]["ImGuiCol_"] = "imgui:1608" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1735" +defs["locations"]["ImGuiColorMod"] = "imgui_internal:1032" +defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:933" +defs["locations"]["ImGuiComboFlags_"] = "imgui:1260" +defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1049" +defs["locations"]["ImGuiCond_"] = "imgui:1836" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1578" +defs["locations"]["ImGuiContext"] = "imgui_internal:2029" +defs["locations"]["ImGuiContextHook"] = "imgui_internal:2014" +defs["locations"]["ImGuiContextHookType"] = "imgui_internal:2012" +defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:818" +defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:827" +defs["locations"]["ImGuiDataTypeStorage"] = "imgui_internal:812" +defs["locations"]["ImGuiDataType_"] = "imgui:1387" +defs["locations"]["ImGuiDataVarInfo"] = "imgui_internal:804" +defs["locations"]["ImGuiDebugAllocEntry"] = "imgui_internal:1949" +defs["locations"]["ImGuiDebugAllocInfo"] = "imgui_internal:1956" +defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:1927" +defs["locations"]["ImGuiDir"] = "imgui:1404" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1359" +defs["locations"]["ImGuiErrorRecoveryState"] = "imgui_internal:1274" +defs["locations"]["ImGuiFocusRequestFlags_"] = "imgui_internal:978" +defs["locations"]["ImGuiFocusScopeData"] = "imgui_internal:1626" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1307" defs["locations"]["ImGuiFreeTypeBuilderFlags"] = "imgui_freetype:26" -defs["locations"]["ImGuiGroupData"] = "imgui_internal:1058" -defs["locations"]["ImGuiHoveredFlagsPrivate_"] = "imgui_internal:887" -defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1317" -defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:1989" -defs["locations"]["ImGuiIO"] = "imgui:2204" -defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1397" -defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1395" -defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1393" -defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1392" -defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1390" -defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1391" -defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1394" -defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1367" -defs["locations"]["ImGuiInputFlagsPrivate_"] = "imgui_internal:1463" -defs["locations"]["ImGuiInputFlags_"] = "imgui:1551" -defs["locations"]["ImGuiInputSource"] = "imgui_internal:1379" -defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2442" -defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1094" -defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:895" -defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1147" -defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1116" -defs["locations"]["ImGuiItemFlagsPrivate_"] = "imgui_internal:837" -defs["locations"]["ImGuiItemFlags_"] = "imgui:1134" -defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:861" -defs["locations"]["ImGuiKey"] = "imgui:1424" -defs["locations"]["ImGuiKeyData"] = "imgui:2196" -defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1450" -defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1424" -defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1438" -defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1242" -defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:995" -defs["locations"]["ImGuiListClipper"] = "imgui:2649" -defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1520" -defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1507" -defs["locations"]["ImGuiLocEntry"] = "imgui_internal:1896" -defs["locations"]["ImGuiLocKey"] = "imgui_internal:1881" -defs["locations"]["ImGuiLogFlags_"] = "imgui_internal:1002" -defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1076" -defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:1960" -defs["locations"]["ImGuiMouseButton_"] = "imgui:1792" -defs["locations"]["ImGuiMouseCursor_"] = "imgui:1802" -defs["locations"]["ImGuiMouseSource"] = "imgui:1821" -defs["locations"]["ImGuiMultiSelectFlags_"] = "imgui:2799" -defs["locations"]["ImGuiMultiSelectIO"] = "imgui:2826" -defs["locations"]["ImGuiMultiSelectState"] = "imgui_internal:1782" -defs["locations"]["ImGuiMultiSelectTempData"] = "imgui_internal:1757" -defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1605" -defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1597" -defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1575" -defs["locations"]["ImGuiNavRenderCursorFlags_"] = "imgui_internal:1561" -defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1222" -defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1212" -defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1188" -defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1172" -defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1690" -defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1670" -defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1700" -defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2520" -defs["locations"]["ImGuiPayload"] = "imgui:2485" -defs["locations"]["ImGuiPlatformIO"] = "imgui:3519" -defs["locations"]["ImGuiPlatformImeData"] = "imgui:3557" -defs["locations"]["ImGuiPlotType"] = "imgui_internal:1021" -defs["locations"]["ImGuiPopupData"] = "imgui_internal:1324" -defs["locations"]["ImGuiPopupFlags_"] = "imgui:1221" -defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:1316" -defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1303" -defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1547" -defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:942" -defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1239" -defs["locations"]["ImGuiSelectionBasicStorage"] = "imgui:2872" -defs["locations"]["ImGuiSelectionExternalStorage"] = "imgui:2895" -defs["locations"]["ImGuiSelectionRequest"] = "imgui:2846" -defs["locations"]["ImGuiSelectionRequestType"] = "imgui:2838" -defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:963" -defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1861" -defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1296" -defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2476" -defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:935" -defs["locations"]["ImGuiSliderFlags_"] = "imgui:1777" -defs["locations"]["ImGuiSortDirection"] = "imgui:1411" -defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:1977" -defs["locations"]["ImGuiStorage"] = "imgui:2592" -defs["locations"]["ImGuiStoragePair"] = "imgui:2575" -defs["locations"]["ImGuiStyle"] = "imgui:2119" -defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1035" -defs["locations"]["ImGuiStyleVar_"] = "imgui:1680" -defs["locations"]["ImGuiTabBar"] = "imgui_internal:2609" -defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2574" -defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1271" -defs["locations"]["ImGuiTabItem"] = "imgui_internal:2590" -defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2582" -defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1288" -defs["locations"]["ImGuiTable"] = "imgui_internal:2756" -defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1973" -defs["locations"]["ImGuiTableCellData"] = "imgui_internal:2724" -defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2664" -defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1920" -defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:2903" -defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:1995" -defs["locations"]["ImGuiTableFlags_"] = "imgui:1867" -defs["locations"]["ImGuiTableHeaderData"] = "imgui_internal:2733" -defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:2743" -defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1958" -defs["locations"]["ImGuiTableSettings"] = "imgui_internal:2927" -defs["locations"]["ImGuiTableSortSpecs"] = "imgui:1985" -defs["locations"]["ImGuiTableTempData"] = "imgui_internal:2880" -defs["locations"]["ImGuiTextBuffer"] = "imgui:2555" -defs["locations"]["ImGuiTextFilter"] = "imgui:2528" -defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:981" -defs["locations"]["ImGuiTextIndex"] = "imgui_internal:719" -defs["locations"]["ImGuiTextRange"] = "imgui:2538" -defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:987" -defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:956" -defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1186" -defs["locations"]["ImGuiTreeNodeStackData"] = "imgui_internal:1261" -defs["locations"]["ImGuiTypingSelectFlags_"] = "imgui_internal:1633" -defs["locations"]["ImGuiTypingSelectRequest"] = "imgui_internal:1641" -defs["locations"]["ImGuiTypingSelectState"] = "imgui_internal:1652" -defs["locations"]["ImGuiViewport"] = "imgui:3494" -defs["locations"]["ImGuiViewportFlags_"] = "imgui:3479" -defs["locations"]["ImGuiViewportP"] = "imgui_internal:1810" -defs["locations"]["ImGuiWindow"] = "imgui_internal:2445" -defs["locations"]["ImGuiWindowFlags_"] = "imgui:1064" -defs["locations"]["ImGuiWindowRefreshFlags_"] = "imgui_internal:1163" -defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1847" -defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1288" -defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2395" -defs["locations"]["ImRect"] = "imgui_internal:521" -defs["locations"]["ImVec1"] = "imgui_internal:503" +defs["locations"]["ImGuiGroupData"] = "imgui_internal:1062" +defs["locations"]["ImGuiHoveredFlagsPrivate_"] = "imgui_internal:891" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1321" +defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:1995" +defs["locations"]["ImGuiIO"] = "imgui:2208" +defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1401" +defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1399" +defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1397" +defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1396" +defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1394" +defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1395" +defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1398" +defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1371" +defs["locations"]["ImGuiInputFlagsPrivate_"] = "imgui_internal:1467" +defs["locations"]["ImGuiInputFlags_"] = "imgui:1555" +defs["locations"]["ImGuiInputSource"] = "imgui_internal:1383" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2447" +defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1098" +defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:899" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1148" +defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1120" +defs["locations"]["ImGuiItemFlagsPrivate_"] = "imgui_internal:841" +defs["locations"]["ImGuiItemFlags_"] = "imgui:1135" +defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:865" +defs["locations"]["ImGuiKey"] = "imgui:1428" +defs["locations"]["ImGuiKeyData"] = "imgui:2200" +defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1454" +defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1428" +defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1442" +defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1246" +defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:999" +defs["locations"]["ImGuiListClipper"] = "imgui:2654" +defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1524" +defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1511" +defs["locations"]["ImGuiLocEntry"] = "imgui_internal:1900" +defs["locations"]["ImGuiLocKey"] = "imgui_internal:1885" +defs["locations"]["ImGuiLogFlags_"] = "imgui_internal:1006" +defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1080" +defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:1966" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1796" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1806" +defs["locations"]["ImGuiMouseSource"] = "imgui:1825" +defs["locations"]["ImGuiMultiSelectFlags_"] = "imgui:2805" +defs["locations"]["ImGuiMultiSelectIO"] = "imgui:2832" +defs["locations"]["ImGuiMultiSelectState"] = "imgui_internal:1786" +defs["locations"]["ImGuiMultiSelectTempData"] = "imgui_internal:1761" +defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1609" +defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1601" +defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1579" +defs["locations"]["ImGuiNavRenderCursorFlags_"] = "imgui_internal:1565" +defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1226" +defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1216" +defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1192" +defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1176" +defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1694" +defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1674" +defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1704" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2525" +defs["locations"]["ImGuiPayload"] = "imgui:2490" +defs["locations"]["ImGuiPlatformIO"] = "imgui:3529" +defs["locations"]["ImGuiPlatformImeData"] = "imgui:3567" +defs["locations"]["ImGuiPlotType"] = "imgui_internal:1025" +defs["locations"]["ImGuiPopupData"] = "imgui_internal:1328" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:1225" +defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:1320" +defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1307" +defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1551" +defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:946" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1243" +defs["locations"]["ImGuiSelectionBasicStorage"] = "imgui:2878" +defs["locations"]["ImGuiSelectionExternalStorage"] = "imgui:2901" +defs["locations"]["ImGuiSelectionRequest"] = "imgui:2852" +defs["locations"]["ImGuiSelectionRequestType"] = "imgui:2844" +defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:967" +defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1865" +defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1300" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2481" +defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:939" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1781" +defs["locations"]["ImGuiSortDirection"] = "imgui:1415" +defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:1983" +defs["locations"]["ImGuiStorage"] = "imgui:2597" +defs["locations"]["ImGuiStoragePair"] = "imgui:2580" +defs["locations"]["ImGuiStyle"] = "imgui:2123" +defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1039" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1684" +defs["locations"]["ImGuiTabBar"] = "imgui_internal:2615" +defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2580" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1275" +defs["locations"]["ImGuiTabItem"] = "imgui_internal:2596" +defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2588" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1292" +defs["locations"]["ImGuiTable"] = "imgui_internal:2762" +defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1977" +defs["locations"]["ImGuiTableCellData"] = "imgui_internal:2730" +defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2670" +defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1924" +defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:2909" +defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:1999" +defs["locations"]["ImGuiTableFlags_"] = "imgui:1871" +defs["locations"]["ImGuiTableHeaderData"] = "imgui_internal:2739" +defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:2749" +defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1962" +defs["locations"]["ImGuiTableSettings"] = "imgui_internal:2933" +defs["locations"]["ImGuiTableSortSpecs"] = "imgui:1989" +defs["locations"]["ImGuiTableTempData"] = "imgui_internal:2886" +defs["locations"]["ImGuiTextBuffer"] = "imgui:2560" +defs["locations"]["ImGuiTextFilter"] = "imgui:2533" +defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:985" +defs["locations"]["ImGuiTextIndex"] = "imgui_internal:723" +defs["locations"]["ImGuiTextRange"] = "imgui:2543" +defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:991" +defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:960" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1190" +defs["locations"]["ImGuiTreeNodeStackData"] = "imgui_internal:1265" +defs["locations"]["ImGuiTypingSelectFlags_"] = "imgui_internal:1637" +defs["locations"]["ImGuiTypingSelectRequest"] = "imgui_internal:1645" +defs["locations"]["ImGuiTypingSelectState"] = "imgui_internal:1656" +defs["locations"]["ImGuiViewport"] = "imgui:3504" +defs["locations"]["ImGuiViewportFlags_"] = "imgui:3489" +defs["locations"]["ImGuiViewportP"] = "imgui_internal:1814" +defs["locations"]["ImGuiWindow"] = "imgui_internal:2451" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:1065" +defs["locations"]["ImGuiWindowRefreshFlags_"] = "imgui_internal:1167" +defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1851" +defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1292" +defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2401" +defs["locations"]["ImRect"] = "imgui_internal:525" +defs["locations"]["ImVec1"] = "imgui_internal:507" defs["locations"]["ImVec2"] = "imgui:291" -defs["locations"]["ImVec2ih"] = "imgui_internal:511" +defs["locations"]["ImVec2ih"] = "imgui_internal:515" defs["locations"]["ImVec4"] = "imgui:304" defs["structs"] = {} defs["structs"]["ImBitVector"] = {} @@ -4071,44 +4079,44 @@ defs["structs"]["ImDrawListSharedData"][1] = {} defs["structs"]["ImDrawListSharedData"][1]["name"] = "TexUvWhitePixel" defs["structs"]["ImDrawListSharedData"][1]["type"] = "ImVec2" defs["structs"]["ImDrawListSharedData"][2] = {} -defs["structs"]["ImDrawListSharedData"][2]["name"] = "Font" -defs["structs"]["ImDrawListSharedData"][2]["type"] = "ImFont*" +defs["structs"]["ImDrawListSharedData"][2]["name"] = "TexUvLines" +defs["structs"]["ImDrawListSharedData"][2]["type"] = "const ImVec4*" defs["structs"]["ImDrawListSharedData"][3] = {} -defs["structs"]["ImDrawListSharedData"][3]["name"] = "FontSize" -defs["structs"]["ImDrawListSharedData"][3]["type"] = "float" +defs["structs"]["ImDrawListSharedData"][3]["name"] = "Font" +defs["structs"]["ImDrawListSharedData"][3]["type"] = "ImFont*" defs["structs"]["ImDrawListSharedData"][4] = {} -defs["structs"]["ImDrawListSharedData"][4]["name"] = "FontScale" +defs["structs"]["ImDrawListSharedData"][4]["name"] = "FontSize" defs["structs"]["ImDrawListSharedData"][4]["type"] = "float" defs["structs"]["ImDrawListSharedData"][5] = {} -defs["structs"]["ImDrawListSharedData"][5]["name"] = "CurveTessellationTol" +defs["structs"]["ImDrawListSharedData"][5]["name"] = "FontScale" defs["structs"]["ImDrawListSharedData"][5]["type"] = "float" defs["structs"]["ImDrawListSharedData"][6] = {} -defs["structs"]["ImDrawListSharedData"][6]["name"] = "CircleSegmentMaxError" +defs["structs"]["ImDrawListSharedData"][6]["name"] = "CurveTessellationTol" defs["structs"]["ImDrawListSharedData"][6]["type"] = "float" defs["structs"]["ImDrawListSharedData"][7] = {} -defs["structs"]["ImDrawListSharedData"][7]["name"] = "ClipRectFullscreen" -defs["structs"]["ImDrawListSharedData"][7]["type"] = "ImVec4" +defs["structs"]["ImDrawListSharedData"][7]["name"] = "CircleSegmentMaxError" +defs["structs"]["ImDrawListSharedData"][7]["type"] = "float" defs["structs"]["ImDrawListSharedData"][8] = {} -defs["structs"]["ImDrawListSharedData"][8]["name"] = "InitialFlags" -defs["structs"]["ImDrawListSharedData"][8]["type"] = "ImDrawListFlags" +defs["structs"]["ImDrawListSharedData"][8]["name"] = "ClipRectFullscreen" +defs["structs"]["ImDrawListSharedData"][8]["type"] = "ImVec4" defs["structs"]["ImDrawListSharedData"][9] = {} -defs["structs"]["ImDrawListSharedData"][9]["name"] = "TempBuffer" -defs["structs"]["ImDrawListSharedData"][9]["template_type"] = "ImVec2" -defs["structs"]["ImDrawListSharedData"][9]["type"] = "ImVector_ImVec2" +defs["structs"]["ImDrawListSharedData"][9]["name"] = "InitialFlags" +defs["structs"]["ImDrawListSharedData"][9]["type"] = "ImDrawListFlags" defs["structs"]["ImDrawListSharedData"][10] = {} -defs["structs"]["ImDrawListSharedData"][10]["name"] = "ArcFastVtx[48]" -defs["structs"]["ImDrawListSharedData"][10]["size"] = 48 -defs["structs"]["ImDrawListSharedData"][10]["type"] = "ImVec2" +defs["structs"]["ImDrawListSharedData"][10]["name"] = "TempBuffer" +defs["structs"]["ImDrawListSharedData"][10]["template_type"] = "ImVec2" +defs["structs"]["ImDrawListSharedData"][10]["type"] = "ImVector_ImVec2" defs["structs"]["ImDrawListSharedData"][11] = {} -defs["structs"]["ImDrawListSharedData"][11]["name"] = "ArcFastRadiusCutoff" -defs["structs"]["ImDrawListSharedData"][11]["type"] = "float" +defs["structs"]["ImDrawListSharedData"][11]["name"] = "ArcFastVtx[48]" +defs["structs"]["ImDrawListSharedData"][11]["size"] = 48 +defs["structs"]["ImDrawListSharedData"][11]["type"] = "ImVec2" defs["structs"]["ImDrawListSharedData"][12] = {} -defs["structs"]["ImDrawListSharedData"][12]["name"] = "CircleSegmentCounts[64]" -defs["structs"]["ImDrawListSharedData"][12]["size"] = 64 -defs["structs"]["ImDrawListSharedData"][12]["type"] = "ImU8" +defs["structs"]["ImDrawListSharedData"][12]["name"] = "ArcFastRadiusCutoff" +defs["structs"]["ImDrawListSharedData"][12]["type"] = "float" defs["structs"]["ImDrawListSharedData"][13] = {} -defs["structs"]["ImDrawListSharedData"][13]["name"] = "TexUvLines" -defs["structs"]["ImDrawListSharedData"][13]["type"] = "const ImVec4*" +defs["structs"]["ImDrawListSharedData"][13]["name"] = "CircleSegmentCounts[64]" +defs["structs"]["ImDrawListSharedData"][13]["size"] = 64 +defs["structs"]["ImDrawListSharedData"][13]["type"] = "ImU8" defs["structs"]["ImDrawListSplitter"] = {} defs["structs"]["ImDrawListSplitter"][1] = {} defs["structs"]["ImDrawListSplitter"][1]["name"] = "_Current" @@ -4162,14 +4170,14 @@ defs["structs"]["ImFont"][9] = {} defs["structs"]["ImFont"][9]["name"] = "ConfigDataCount" defs["structs"]["ImFont"][9]["type"] = "short" defs["structs"]["ImFont"][10] = {} -defs["structs"]["ImFont"][10]["name"] = "FallbackChar" -defs["structs"]["ImFont"][10]["type"] = "ImWchar" +defs["structs"]["ImFont"][10]["name"] = "EllipsisCharCount" +defs["structs"]["ImFont"][10]["type"] = "short" defs["structs"]["ImFont"][11] = {} defs["structs"]["ImFont"][11]["name"] = "EllipsisChar" defs["structs"]["ImFont"][11]["type"] = "ImWchar" defs["structs"]["ImFont"][12] = {} -defs["structs"]["ImFont"][12]["name"] = "EllipsisCharCount" -defs["structs"]["ImFont"][12]["type"] = "short" +defs["structs"]["ImFont"][12]["name"] = "FallbackChar" +defs["structs"]["ImFont"][12]["type"] = "ImWchar" defs["structs"]["ImFont"][13] = {} defs["structs"]["ImFont"][13]["name"] = "EllipsisWidth" defs["structs"]["ImFont"][13]["type"] = "float" @@ -4268,16 +4276,16 @@ defs["structs"]["ImFontAtlas"][22]["name"] = "PackIdLines" defs["structs"]["ImFontAtlas"][22]["type"] = "int" defs["structs"]["ImFontAtlasCustomRect"] = {} defs["structs"]["ImFontAtlasCustomRect"][1] = {} -defs["structs"]["ImFontAtlasCustomRect"][1]["name"] = "Width" +defs["structs"]["ImFontAtlasCustomRect"][1]["name"] = "X" defs["structs"]["ImFontAtlasCustomRect"][1]["type"] = "unsigned short" defs["structs"]["ImFontAtlasCustomRect"][2] = {} -defs["structs"]["ImFontAtlasCustomRect"][2]["name"] = "Height" +defs["structs"]["ImFontAtlasCustomRect"][2]["name"] = "Y" defs["structs"]["ImFontAtlasCustomRect"][2]["type"] = "unsigned short" defs["structs"]["ImFontAtlasCustomRect"][3] = {} -defs["structs"]["ImFontAtlasCustomRect"][3]["name"] = "X" +defs["structs"]["ImFontAtlasCustomRect"][3]["name"] = "Width" defs["structs"]["ImFontAtlasCustomRect"][3]["type"] = "unsigned short" defs["structs"]["ImFontAtlasCustomRect"][4] = {} -defs["structs"]["ImFontAtlasCustomRect"][4]["name"] = "Y" +defs["structs"]["ImFontAtlasCustomRect"][4]["name"] = "Height" defs["structs"]["ImFontAtlasCustomRect"][4]["type"] = "unsigned short" defs["structs"]["ImFontAtlasCustomRect"][5] = {} defs["structs"]["ImFontAtlasCustomRect"][5]["bitfield"] = "31" diff --git a/imgui b/imgui index f401021..993fa34 160000 --- a/imgui +++ b/imgui @@ -1 +1 @@ -Subproject commit f401021d5a5d56fe2304056c391e78f81c8d4b8f +Subproject commit 993fa347495860ed44b83574254ef2a317d0c14f