diff --git a/generator/generator.lua b/generator/generator.lua index f1fa4f8..0eaccdb 100644 --- a/generator/generator.lua +++ b/generator/generator.lua @@ -450,11 +450,11 @@ local function json_prepare(defs) end ---[[ local json = require"json" -save_data("./output/definitions.json",json.encode(json_prepare(parser1.defsT))) +save_data("./output/definitions.json",json.encode(json_prepare(parser1.defsT),{dict_on_empty={defaults=true}})) save_data("./output/structs_and_enums.json",json.encode(structs_and_enums_table)) save_data("./output/typedefs_dict.json",json.encode(parser1.typedefs_dict)) if parser2 then - save_data("./output/impl_definitions.json",json.encode(json_prepare(parser2.defsT))) + save_data("./output/impl_definitions.json",json.encode(json_prepare(parser2.defsT),{dict_on_empty={defaults=true}})) end --]] -------------------copy C files to repo root diff --git a/generator/json.lua b/generator/json.lua index 0549a8e..de2a7ed 100644 --- a/generator/json.lua +++ b/generator/json.lua @@ -21,7 +21,10 @@ -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -- SOFTWARE. -- - +--changes--------------------------------------------------------------------- +--prettify: adding carriage return, indentation, dictionaries sorted by key +--dict_on_empty: table to json.encode to make empty table a dictionary instead of array +------------------------------------------------------------------------------ local json = { _version = "0.1.1" } ------------------------------------------------------------------------------- @@ -30,6 +33,7 @@ local json = { _version = "0.1.1" } local TAB = " " local rep = string.rep local encode +local dict_on_empty = {} local escape_char_map = { [ "\\" ] = "\\\\", @@ -90,7 +94,6 @@ local function encode_table(val, stack,level,isvalue) return rep(isvalue and "" or TAB,level).."[" .. inner .. "]" else - ---[[ local ordered_keys = {} for k,v in pairs(val) do table.insert(ordered_keys,k) @@ -99,12 +102,15 @@ local function encode_table(val, stack,level,isvalue) -- Treat as an object for _,k in ipairs(ordered_keys) do local v = val[k] - --]] - --for k, v in pairs(val) do + if type(k) ~= "string" then error("invalid table: mixed or invalid key types") end - table.insert(res, encode(k, stack,level+1) .. ": " .. encode(v, stack,level+1,true)) + if type(v) == "table" and next(v) == nil and dict_on_empty[k] then + table.insert(res, encode(k, stack,level+1) .. ": {}") + else + table.insert(res, encode(k, stack,level+1) .. ": " .. encode(v, stack,level+1,true)) + end end stack[val] = nil local inner = table.concat(res, ",\n") @@ -147,7 +153,8 @@ encode = function(val, stack,level,isvalue) end -function json.encode(val) +function json.encode(val,opts) + dict_on_empty = opts and opts.dict_on_empty or {} return ( encode(val) ) end @@ -412,5 +419,4 @@ function json.decode(str) return res end - return json \ No newline at end of file diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 89ad598..8841213 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -11,7 +11,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImBitVector_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui_internal:472", "ov_cimguiname": "ImBitVector_Clear", @@ -36,7 +36,7 @@ "argsoriginal": "(int n)", "call_args": "(n)", "cimguiname": "ImBitVector_ClearBit", - "defaults": [], + "defaults": {}, "funcname": "ClearBit", "location": "imgui_internal:475", "ov_cimguiname": "ImBitVector_ClearBit", @@ -61,7 +61,7 @@ "argsoriginal": "(int sz)", "call_args": "(sz)", "cimguiname": "ImBitVector_Create", - "defaults": [], + "defaults": {}, "funcname": "Create", "location": "imgui_internal:471", "ov_cimguiname": "ImBitVector_Create", @@ -86,7 +86,7 @@ "argsoriginal": "(int n)", "call_args": "(n)", "cimguiname": "ImBitVector_SetBit", - "defaults": [], + "defaults": {}, "funcname": "SetBit", "location": "imgui_internal:474", "ov_cimguiname": "ImBitVector_SetBit", @@ -111,7 +111,7 @@ "argsoriginal": "(int n)", "call_args": "(n)", "cimguiname": "ImBitVector_TestBit", - "defaults": [], + "defaults": {}, "funcname": "TestBit", "location": "imgui_internal:473", "ov_cimguiname": "ImBitVector_TestBit", @@ -136,7 +136,7 @@ "argsoriginal": "(size_t sz)", "call_args": "(sz)", "cimguiname": "ImChunkStream_alloc_chunk", - "defaults": [], + "defaults": {}, "funcname": "alloc_chunk", "location": "imgui_internal:517", "ov_cimguiname": "ImChunkStream_alloc_chunk", @@ -158,7 +158,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImChunkStream_begin", - "defaults": [], + "defaults": {}, "funcname": "begin", "location": "imgui_internal:518", "ov_cimguiname": "ImChunkStream_begin", @@ -184,7 +184,7 @@ "argsoriginal": "(const T* p)", "call_args": "(p)", "cimguiname": "ImChunkStream_chunk_size", - "defaults": [], + "defaults": {}, "funcname": "chunk_size", "location": "imgui_internal:520", "ov_cimguiname": "ImChunkStream_chunk_size", @@ -206,7 +206,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImChunkStream_clear", - "defaults": [], + "defaults": {}, "funcname": "clear", "location": "imgui_internal:514", "ov_cimguiname": "ImChunkStream_clear", @@ -228,7 +228,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImChunkStream_empty", - "defaults": [], + "defaults": {}, "funcname": "empty", "location": "imgui_internal:515", "ov_cimguiname": "ImChunkStream_empty", @@ -250,7 +250,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImChunkStream_end", - "defaults": [], + "defaults": {}, "funcname": "end", "location": "imgui_internal:521", "ov_cimguiname": "ImChunkStream_end", @@ -276,7 +276,7 @@ "argsoriginal": "(T* p)", "call_args": "(p)", "cimguiname": "ImChunkStream_next_chunk", - "defaults": [], + "defaults": {}, "funcname": "next_chunk", "location": "imgui_internal:519", "ov_cimguiname": "ImChunkStream_next_chunk", @@ -302,7 +302,7 @@ "argsoriginal": "(const T* p)", "call_args": "(p)", "cimguiname": "ImChunkStream_offset_from_ptr", - "defaults": [], + "defaults": {}, "funcname": "offset_from_ptr", "location": "imgui_internal:522", "ov_cimguiname": "ImChunkStream_offset_from_ptr", @@ -328,7 +328,7 @@ "argsoriginal": "(int off)", "call_args": "(off)", "cimguiname": "ImChunkStream_ptr_from_offset", - "defaults": [], + "defaults": {}, "funcname": "ptr_from_offset", "location": "imgui_internal:523", "ov_cimguiname": "ImChunkStream_ptr_from_offset", @@ -350,7 +350,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImChunkStream_size", - "defaults": [], + "defaults": {}, "funcname": "size", "location": "imgui_internal:516", "ov_cimguiname": "ImChunkStream_size", @@ -409,7 +409,7 @@ "call_args": "()", "cimguiname": "ImColor_ImColor", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImColor", "location": "imgui:1931", "ov_cimguiname": "ImColor_ImColorNil", @@ -461,7 +461,7 @@ "call_args": "(rgba)", "cimguiname": "ImColor_ImColor", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImColor", "location": "imgui:1933", "ov_cimguiname": "ImColor_ImColorU32", @@ -513,7 +513,7 @@ "call_args": "(col)", "cimguiname": "ImColor_ImColor", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImColor", "location": "imgui:1935", "ov_cimguiname": "ImColor_ImColorVec4", @@ -571,7 +571,7 @@ ], "call_args": "(self)", "cimguiname": "ImColor_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImColor_destroy", "ret": "void", @@ -587,7 +587,7 @@ "call_args": "()", "cimguiname": "ImDrawCmd_ImDrawCmd", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImDrawCmd", "location": "imgui:1986", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", @@ -606,7 +606,7 @@ ], "call_args": "(self)", "cimguiname": "ImDrawCmd_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImDrawCmd_destroy", "ret": "void", @@ -626,7 +626,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawDataBuilder_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui_internal:565", "ov_cimguiname": "ImDrawDataBuilder_Clear", @@ -647,7 +647,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawDataBuilder_ClearFreeMemory", - "defaults": [], + "defaults": {}, "funcname": "ClearFreeMemory", "location": "imgui_internal:566", "ov_cimguiname": "ImDrawDataBuilder_ClearFreeMemory", @@ -668,7 +668,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", - "defaults": [], + "defaults": {}, "funcname": "FlattenIntoSingleLayer", "location": "imgui_internal:567", "ov_cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", @@ -689,7 +689,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawData_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui:2197", "ov_cimguiname": "ImDrawData_Clear", @@ -710,7 +710,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawData_DeIndexAllBuffers", - "defaults": [], + "defaults": {}, "funcname": "DeIndexAllBuffers", "location": "imgui:2198", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", @@ -727,7 +727,7 @@ "call_args": "()", "cimguiname": "ImDrawData_ImDrawData", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImDrawData", "location": "imgui:2195", "ov_cimguiname": "ImDrawData_ImDrawData", @@ -751,7 +751,7 @@ "argsoriginal": "(const ImVec2& fb_scale)", "call_args": "(fb_scale)", "cimguiname": "ImDrawData_ScaleClipRects", - "defaults": [], + "defaults": {}, "funcname": "ScaleClipRects", "location": "imgui:2199", "ov_cimguiname": "ImDrawData_ScaleClipRects", @@ -771,7 +771,7 @@ ], "call_args": "(self)", "cimguiname": "ImDrawData_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "location": "imgui:2196", "ov_cimguiname": "ImDrawData_destroy", @@ -789,7 +789,7 @@ "call_args": "()", "cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImDrawListSharedData", "location": "imgui_internal:557", "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", @@ -813,7 +813,7 @@ "argsoriginal": "(float max_error)", "call_args": "(max_error)", "cimguiname": "ImDrawListSharedData_SetCircleSegmentMaxError", - "defaults": [], + "defaults": {}, "funcname": "SetCircleSegmentMaxError", "location": "imgui_internal:558", "ov_cimguiname": "ImDrawListSharedData_SetCircleSegmentMaxError", @@ -833,7 +833,7 @@ ], "call_args": "(self)", "cimguiname": "ImDrawListSharedData_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImDrawListSharedData_destroy", "ret": "void", @@ -853,7 +853,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawListSplitter_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui:2029", "ov_cimguiname": "ImDrawListSplitter_Clear", @@ -874,7 +874,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawListSplitter_ClearFreeMemory", - "defaults": [], + "defaults": {}, "funcname": "ClearFreeMemory", "location": "imgui:2030", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", @@ -891,7 +891,7 @@ "call_args": "()", "cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImDrawListSplitter", "location": "imgui:2027", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", @@ -915,7 +915,7 @@ "argsoriginal": "(ImDrawList* draw_list)", "call_args": "(draw_list)", "cimguiname": "ImDrawListSplitter_Merge", - "defaults": [], + "defaults": {}, "funcname": "Merge", "location": "imgui:2032", "ov_cimguiname": "ImDrawListSplitter_Merge", @@ -944,7 +944,7 @@ "argsoriginal": "(ImDrawList* draw_list,int channel_idx)", "call_args": "(draw_list,channel_idx)", "cimguiname": "ImDrawListSplitter_SetCurrentChannel", - "defaults": [], + "defaults": {}, "funcname": "SetCurrentChannel", "location": "imgui:2033", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", @@ -973,7 +973,7 @@ "argsoriginal": "(ImDrawList* draw_list,int count)", "call_args": "(draw_list,count)", "cimguiname": "ImDrawListSplitter_Split", - "defaults": [], + "defaults": {}, "funcname": "Split", "location": "imgui:2031", "ov_cimguiname": "ImDrawListSplitter_Split", @@ -993,7 +993,7 @@ ], "call_args": "(self)", "cimguiname": "ImDrawListSplitter_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "location": "imgui:2028", "ov_cimguiname": "ImDrawListSplitter_destroy", @@ -1074,7 +1074,7 @@ "argsoriginal": "(ImDrawCallback callback,void* callback_data)", "call_args": "(callback,callback_data)", "cimguiname": "ImDrawList_AddCallback", - "defaults": [], + "defaults": {}, "funcname": "AddCallback", "location": "imgui:2145", "ov_cimguiname": "ImDrawList_AddCallback", @@ -1190,7 +1190,7 @@ "argsoriginal": "(const ImVec2* points,int num_points,ImU32 col)", "call_args": "(points,num_points,col)", "cimguiname": "ImDrawList_AddConvexPolyFilled", - "defaults": [], + "defaults": {}, "funcname": "AddConvexPolyFilled", "location": "imgui:2122", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", @@ -1211,7 +1211,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_AddDrawCmd", - "defaults": [], + "defaults": {}, "funcname": "AddDrawCmd", "location": "imgui:2146", "ov_cimguiname": "ImDrawList_AddDrawCmd", @@ -1501,7 +1501,7 @@ "argsoriginal": "(const ImVec2& center,float radius,ImU32 col,int num_segments)", "call_args": "(center,radius,col,num_segments)", "cimguiname": "ImDrawList_AddNgonFilled", - "defaults": [], + "defaults": {}, "funcname": "AddNgonFilled", "location": "imgui:2118", "ov_cimguiname": "ImDrawList_AddNgonFilled", @@ -1542,7 +1542,7 @@ "argsoriginal": "(const ImVec2* points,int num_points,ImU32 col,bool closed,float thickness)", "call_args": "(points,num_points,col,closed,thickness)", "cimguiname": "ImDrawList_AddPolyline", - "defaults": [], + "defaults": {}, "funcname": "AddPolyline", "location": "imgui:2121", "ov_cimguiname": "ImDrawList_AddPolyline", @@ -1630,7 +1630,7 @@ "argsoriginal": "(const ImVec2& p1,const ImVec2& p2,const ImVec2& p3,const ImVec2& p4,ImU32 col)", "call_args": "(p1,p2,p3,p4,col)", "cimguiname": "ImDrawList_AddQuadFilled", - "defaults": [], + "defaults": {}, "funcname": "AddQuadFilled", "location": "imgui:2112", "ov_cimguiname": "ImDrawList_AddQuadFilled", @@ -1768,7 +1768,7 @@ "argsoriginal": "(const ImVec2& p_min,const ImVec2& p_max,ImU32 col_upr_left,ImU32 col_upr_right,ImU32 col_bot_right,ImU32 col_bot_left)", "call_args": "(p_min,p_max,col_upr_left,col_upr_right,col_bot_right,col_bot_left)", "cimguiname": "ImDrawList_AddRectFilledMultiColor", - "defaults": [], + "defaults": {}, "funcname": "AddRectFilledMultiColor", "location": "imgui:2110", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", @@ -1942,7 +1942,7 @@ "argsoriginal": "(const ImVec2& p1,const ImVec2& p2,const ImVec2& p3,ImU32 col)", "call_args": "(p1,p2,p3,col)", "cimguiname": "ImDrawList_AddTriangleFilled", - "defaults": [], + "defaults": {}, "funcname": "AddTriangleFilled", "location": "imgui:2114", "ov_cimguiname": "ImDrawList_AddTriangleFilled", @@ -1963,7 +1963,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_ChannelsMerge", - "defaults": [], + "defaults": {}, "funcname": "ChannelsMerge", "location": "imgui:2156", "ov_cimguiname": "ImDrawList_ChannelsMerge", @@ -1988,7 +1988,7 @@ "argsoriginal": "(int n)", "call_args": "(n)", "cimguiname": "ImDrawList_ChannelsSetCurrent", - "defaults": [], + "defaults": {}, "funcname": "ChannelsSetCurrent", "location": "imgui:2157", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", @@ -2013,7 +2013,7 @@ "argsoriginal": "(int count)", "call_args": "(count)", "cimguiname": "ImDrawList_ChannelsSplit", - "defaults": [], + "defaults": {}, "funcname": "ChannelsSplit", "location": "imgui:2155", "ov_cimguiname": "ImDrawList_ChannelsSplit", @@ -2034,7 +2034,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_CloneOutput", - "defaults": [], + "defaults": {}, "funcname": "CloneOutput", "location": "imgui:2147", "ov_cimguiname": "ImDrawList_CloneOutput", @@ -2059,7 +2059,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMax", - "defaults": [], + "defaults": {}, "funcname": "GetClipRectMax", "location": "imgui:2099", "nonUDT": 1, @@ -2085,7 +2085,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_GetClipRectMin", - "defaults": [], + "defaults": {}, "funcname": "GetClipRectMin", "location": "imgui:2098", "nonUDT": 1, @@ -2108,7 +2108,7 @@ "call_args": "(shared_data)", "cimguiname": "ImDrawList_ImDrawList", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImDrawList", "location": "imgui:2090", "ov_cimguiname": "ImDrawList_ImDrawList", @@ -2187,7 +2187,7 @@ "argsoriginal": "(const ImVec2& center,float radius,int a_min_of_12,int a_max_of_12)", "call_args": "(center,radius,a_min_of_12,a_max_of_12)", "cimguiname": "ImDrawList_PathArcToFast", - "defaults": [], + "defaults": {}, "funcname": "PathArcToFast", "location": "imgui:2140", "ov_cimguiname": "ImDrawList_PathArcToFast", @@ -2247,7 +2247,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PathClear", - "defaults": [], + "defaults": {}, "funcname": "PathClear", "location": "imgui:2134", "ov_cimguiname": "ImDrawList_PathClear", @@ -2272,7 +2272,7 @@ "argsoriginal": "(ImU32 col)", "call_args": "(col)", "cimguiname": "ImDrawList_PathFillConvex", - "defaults": [], + "defaults": {}, "funcname": "PathFillConvex", "location": "imgui:2137", "ov_cimguiname": "ImDrawList_PathFillConvex", @@ -2297,7 +2297,7 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "ImDrawList_PathLineTo", - "defaults": [], + "defaults": {}, "funcname": "PathLineTo", "location": "imgui:2135", "ov_cimguiname": "ImDrawList_PathLineTo", @@ -2322,7 +2322,7 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "ImDrawList_PathLineToMergeDuplicate", - "defaults": [], + "defaults": {}, "funcname": "PathLineToMergeDuplicate", "location": "imgui:2136", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", @@ -2418,7 +2418,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PopClipRect", - "defaults": [], + "defaults": {}, "funcname": "PopClipRect", "location": "imgui:2095", "ov_cimguiname": "ImDrawList_PopClipRect", @@ -2439,7 +2439,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PopTextureID", - "defaults": [], + "defaults": {}, "funcname": "PopTextureID", "location": "imgui:2097", "ov_cimguiname": "ImDrawList_PopTextureID", @@ -2496,7 +2496,7 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& d,const ImVec2& uv_a,const ImVec2& uv_b,const ImVec2& uv_c,const ImVec2& uv_d,ImU32 col)", "call_args": "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,col)", "cimguiname": "ImDrawList_PrimQuadUV", - "defaults": [], + "defaults": {}, "funcname": "PrimQuadUV", "location": "imgui:2166", "ov_cimguiname": "ImDrawList_PrimQuadUV", @@ -2529,7 +2529,7 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,ImU32 col)", "call_args": "(a,b,col)", "cimguiname": "ImDrawList_PrimRect", - "defaults": [], + "defaults": {}, "funcname": "PrimRect", "location": "imgui:2164", "ov_cimguiname": "ImDrawList_PrimRect", @@ -2570,7 +2570,7 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& uv_a,const ImVec2& uv_b,ImU32 col)", "call_args": "(a,b,uv_a,uv_b,col)", "cimguiname": "ImDrawList_PrimRectUV", - "defaults": [], + "defaults": {}, "funcname": "PrimRectUV", "location": "imgui:2165", "ov_cimguiname": "ImDrawList_PrimRectUV", @@ -2599,7 +2599,7 @@ "argsoriginal": "(int idx_count,int vtx_count)", "call_args": "(idx_count,vtx_count)", "cimguiname": "ImDrawList_PrimReserve", - "defaults": [], + "defaults": {}, "funcname": "PrimReserve", "location": "imgui:2162", "ov_cimguiname": "ImDrawList_PrimReserve", @@ -2628,7 +2628,7 @@ "argsoriginal": "(int idx_count,int vtx_count)", "call_args": "(idx_count,vtx_count)", "cimguiname": "ImDrawList_PrimUnreserve", - "defaults": [], + "defaults": {}, "funcname": "PrimUnreserve", "location": "imgui:2163", "ov_cimguiname": "ImDrawList_PrimUnreserve", @@ -2661,7 +2661,7 @@ "argsoriginal": "(const ImVec2& pos,const ImVec2& uv,ImU32 col)", "call_args": "(pos,uv,col)", "cimguiname": "ImDrawList_PrimVtx", - "defaults": [], + "defaults": {}, "funcname": "PrimVtx", "location": "imgui:2169", "ov_cimguiname": "ImDrawList_PrimVtx", @@ -2686,7 +2686,7 @@ "argsoriginal": "(ImDrawIdx idx)", "call_args": "(idx)", "cimguiname": "ImDrawList_PrimWriteIdx", - "defaults": [], + "defaults": {}, "funcname": "PrimWriteIdx", "location": "imgui:2168", "ov_cimguiname": "ImDrawList_PrimWriteIdx", @@ -2719,7 +2719,7 @@ "argsoriginal": "(const ImVec2& pos,const ImVec2& uv,ImU32 col)", "call_args": "(pos,uv,col)", "cimguiname": "ImDrawList_PrimWriteVtx", - "defaults": [], + "defaults": {}, "funcname": "PrimWriteVtx", "location": "imgui:2167", "ov_cimguiname": "ImDrawList_PrimWriteVtx", @@ -2775,7 +2775,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList_PushClipRectFullScreen", - "defaults": [], + "defaults": {}, "funcname": "PushClipRectFullScreen", "location": "imgui:2094", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", @@ -2800,7 +2800,7 @@ "argsoriginal": "(ImTextureID texture_id)", "call_args": "(texture_id)", "cimguiname": "ImDrawList_PushTextureID", - "defaults": [], + "defaults": {}, "funcname": "PushTextureID", "location": "imgui:2096", "ov_cimguiname": "ImDrawList_PushTextureID", @@ -2821,7 +2821,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__ClearFreeMemory", - "defaults": [], + "defaults": {}, "funcname": "_ClearFreeMemory", "location": "imgui:2173", "ov_cimguiname": "ImDrawList__ClearFreeMemory", @@ -2842,7 +2842,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__OnChangedClipRect", - "defaults": [], + "defaults": {}, "funcname": "_OnChangedClipRect", "location": "imgui:2175", "ov_cimguiname": "ImDrawList__OnChangedClipRect", @@ -2863,7 +2863,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__OnChangedTextureID", - "defaults": [], + "defaults": {}, "funcname": "_OnChangedTextureID", "location": "imgui:2176", "ov_cimguiname": "ImDrawList__OnChangedTextureID", @@ -2884,7 +2884,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__OnChangedVtxOffset", - "defaults": [], + "defaults": {}, "funcname": "_OnChangedVtxOffset", "location": "imgui:2177", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", @@ -2905,7 +2905,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__PopUnusedDrawCmd", - "defaults": [], + "defaults": {}, "funcname": "_PopUnusedDrawCmd", "location": "imgui:2174", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", @@ -2926,7 +2926,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImDrawList__ResetForNewFrame", - "defaults": [], + "defaults": {}, "funcname": "_ResetForNewFrame", "location": "imgui:2172", "ov_cimguiname": "ImDrawList__ResetForNewFrame", @@ -2946,7 +2946,7 @@ ], "call_args": "(self)", "cimguiname": "ImDrawList_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "location": "imgui:2092", "ov_cimguiname": "ImDrawList_destroy", @@ -2964,7 +2964,7 @@ "call_args": "()", "cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlasCustomRect", "location": "imgui:2269", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", @@ -2984,7 +2984,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlasCustomRect_IsPacked", - "defaults": [], + "defaults": {}, "funcname": "IsPacked", "location": "imgui:2270", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", @@ -3004,7 +3004,7 @@ ], "call_args": "(self)", "cimguiname": "ImFontAtlasCustomRect_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImFontAtlasCustomRect_destroy", "ret": "void", @@ -3079,7 +3079,7 @@ "argsoriginal": "(int width,int height)", "call_args": "(width,height)", "cimguiname": "ImFontAtlas_AddCustomRectRegular", - "defaults": [], + "defaults": {}, "funcname": "AddCustomRectRegular", "location": "imgui:2351", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", @@ -3104,7 +3104,7 @@ "argsoriginal": "(const ImFontConfig* font_cfg)", "call_args": "(font_cfg)", "cimguiname": "ImFontAtlas_AddFont", - "defaults": [], + "defaults": {}, "funcname": "AddFont", "location": "imgui:2303", "ov_cimguiname": "ImFontAtlas_AddFont", @@ -3320,7 +3320,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_Build", - "defaults": [], + "defaults": {}, "funcname": "Build", "location": "imgui:2319", "ov_cimguiname": "ImFontAtlas_Build", @@ -3353,7 +3353,7 @@ "argsoriginal": "(const ImFontAtlasCustomRect* rect,ImVec2* out_uv_min,ImVec2* out_uv_max)", "call_args": "(rect,out_uv_min,out_uv_max)", "cimguiname": "ImFontAtlas_CalcCustomRectUV", - "defaults": [], + "defaults": {}, "funcname": "CalcCustomRectUV", "location": "imgui:2356", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", @@ -3374,7 +3374,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui:2312", "ov_cimguiname": "ImFontAtlas_Clear", @@ -3395,7 +3395,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearFonts", - "defaults": [], + "defaults": {}, "funcname": "ClearFonts", "location": "imgui:2311", "ov_cimguiname": "ImFontAtlas_ClearFonts", @@ -3416,7 +3416,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearInputData", - "defaults": [], + "defaults": {}, "funcname": "ClearInputData", "location": "imgui:2309", "ov_cimguiname": "ImFontAtlas_ClearInputData", @@ -3437,7 +3437,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_ClearTexData", - "defaults": [], + "defaults": {}, "funcname": "ClearTexData", "location": "imgui:2310", "ov_cimguiname": "ImFontAtlas_ClearTexData", @@ -3462,7 +3462,7 @@ "argsoriginal": "(int index)", "call_args": "(index)", "cimguiname": "ImFontAtlas_GetCustomRectByIndex", - "defaults": [], + "defaults": {}, "funcname": "GetCustomRectByIndex", "location": "imgui:2353", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", @@ -3483,7 +3483,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesChineseFull", "location": "imgui:2335", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", @@ -3504,7 +3504,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", "location": "imgui:2336", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", @@ -3525,7 +3525,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesCyrillic", "location": "imgui:2337", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", @@ -3546,7 +3546,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesDefault", "location": "imgui:2332", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", @@ -3567,7 +3567,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesJapanese", "location": "imgui:2334", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", @@ -3588,7 +3588,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesKorean", "location": "imgui:2333", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", @@ -3609,7 +3609,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesThai", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesThai", "location": "imgui:2338", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", @@ -3630,7 +3630,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", - "defaults": [], + "defaults": {}, "funcname": "GetGlyphRangesVietnamese", "location": "imgui:2339", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", @@ -3671,7 +3671,7 @@ "argsoriginal": "(ImGuiMouseCursor cursor,ImVec2* out_offset,ImVec2* out_size,ImVec2 out_uv_border[2],ImVec2 out_uv_fill[2])", "call_args": "(cursor,out_offset,out_size,out_uv_border,out_uv_fill)", "cimguiname": "ImFontAtlas_GetMouseCursorTexData", - "defaults": [], + "defaults": {}, "funcname": "GetMouseCursorTexData", "location": "imgui:2357", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", @@ -3766,7 +3766,7 @@ "call_args": "()", "cimguiname": "ImFontAtlas_ImFontAtlas", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlas", "location": "imgui:2301", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", @@ -3786,7 +3786,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontAtlas_IsBuilt", - "defaults": [], + "defaults": {}, "funcname": "IsBuilt", "location": "imgui:2322", "ov_cimguiname": "ImFontAtlas_IsBuilt", @@ -3811,7 +3811,7 @@ "argsoriginal": "(ImTextureID id)", "call_args": "(id)", "cimguiname": "ImFontAtlas_SetTexID", - "defaults": [], + "defaults": {}, "funcname": "SetTexID", "location": "imgui:2323", "ov_cimguiname": "ImFontAtlas_SetTexID", @@ -3831,7 +3831,7 @@ ], "call_args": "(self)", "cimguiname": "ImFontAtlas_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "location": "imgui:2302", "ov_cimguiname": "ImFontAtlas_destroy", @@ -3849,7 +3849,7 @@ "call_args": "()", "cimguiname": "ImFontConfig_ImFontConfig", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImFontConfig", "location": "imgui:2230", "ov_cimguiname": "ImFontConfig_ImFontConfig", @@ -3868,7 +3868,7 @@ ], "call_args": "(self)", "cimguiname": "ImFontConfig_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImFontConfig_destroy", "ret": "void", @@ -3892,7 +3892,7 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFontGlyphRangesBuilder_AddChar", - "defaults": [], + "defaults": {}, "funcname": "AddChar", "location": "imgui:2254", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", @@ -3917,7 +3917,7 @@ "argsoriginal": "(const ImWchar* ranges)", "call_args": "(ranges)", "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", - "defaults": [], + "defaults": {}, "funcname": "AddRanges", "location": "imgui:2256", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", @@ -3973,7 +3973,7 @@ "argsoriginal": "(ImVector* out_ranges)", "call_args": "(out_ranges)", "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", - "defaults": [], + "defaults": {}, "funcname": "BuildRanges", "location": "imgui:2257", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", @@ -3994,7 +3994,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFontGlyphRangesBuilder_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui:2251", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", @@ -4019,7 +4019,7 @@ "argsoriginal": "(size_t n)", "call_args": "(n)", "cimguiname": "ImFontGlyphRangesBuilder_GetBit", - "defaults": [], + "defaults": {}, "funcname": "GetBit", "location": "imgui:2252", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", @@ -4036,7 +4036,7 @@ "call_args": "()", "cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", "location": "imgui:2250", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", @@ -4060,7 +4060,7 @@ "argsoriginal": "(size_t n)", "call_args": "(n)", "cimguiname": "ImFontGlyphRangesBuilder_SetBit", - "defaults": [], + "defaults": {}, "funcname": "SetBit", "location": "imgui:2253", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", @@ -4080,7 +4080,7 @@ ], "call_args": "(self)", "cimguiname": "ImFontGlyphRangesBuilder_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImFontGlyphRangesBuilder_destroy", "ret": "void", @@ -4144,7 +4144,7 @@ "argsoriginal": "(ImFontConfig* src_cfg,ImWchar c,float x0,float y0,float x1,float y1,float u0,float v0,float u1,float v1,float advance_x)", "call_args": "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,advance_x)", "cimguiname": "ImFont_AddGlyph", - "defaults": [], + "defaults": {}, "funcname": "AddGlyph", "location": "imgui:2439", "ov_cimguiname": "ImFont_AddGlyph", @@ -4200,7 +4200,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_BuildLookupTable", - "defaults": [], + "defaults": {}, "funcname": "BuildLookupTable", "location": "imgui:2436", "ov_cimguiname": "ImFont_BuildLookupTable", @@ -4290,7 +4290,7 @@ "argsoriginal": "(float scale,const char* text,const char* text_end,float wrap_width)", "call_args": "(scale,text,text_end,wrap_width)", "cimguiname": "ImFont_CalcWordWrapPositionA", - "defaults": [], + "defaults": {}, "funcname": "CalcWordWrapPositionA", "location": "imgui:2431", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", @@ -4311,7 +4311,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_ClearOutputData", - "defaults": [], + "defaults": {}, "funcname": "ClearOutputData", "location": "imgui:2437", "ov_cimguiname": "ImFont_ClearOutputData", @@ -4336,7 +4336,7 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_FindGlyph", - "defaults": [], + "defaults": {}, "funcname": "FindGlyph", "location": "imgui:2422", "ov_cimguiname": "ImFont_FindGlyph", @@ -4361,7 +4361,7 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_FindGlyphNoFallback", - "defaults": [], + "defaults": {}, "funcname": "FindGlyphNoFallback", "location": "imgui:2423", "ov_cimguiname": "ImFont_FindGlyphNoFallback", @@ -4386,7 +4386,7 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_GetCharAdvance", - "defaults": [], + "defaults": {}, "funcname": "GetCharAdvance", "location": "imgui:2424", "ov_cimguiname": "ImFont_GetCharAdvance", @@ -4407,7 +4407,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_GetDebugName", - "defaults": [], + "defaults": {}, "funcname": "GetDebugName", "location": "imgui:2426", "ov_cimguiname": "ImFont_GetDebugName", @@ -4432,7 +4432,7 @@ "argsoriginal": "(int new_size)", "call_args": "(new_size)", "cimguiname": "ImFont_GrowIndex", - "defaults": [], + "defaults": {}, "funcname": "GrowIndex", "location": "imgui:2438", "ov_cimguiname": "ImFont_GrowIndex", @@ -4449,7 +4449,7 @@ "call_args": "()", "cimguiname": "ImFont_ImFont", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImFont", "location": "imgui:2420", "ov_cimguiname": "ImFont_ImFont", @@ -4477,7 +4477,7 @@ "argsoriginal": "(unsigned int c_begin,unsigned int c_last)", "call_args": "(c_begin,c_last)", "cimguiname": "ImFont_IsGlyphRangeUnused", - "defaults": [], + "defaults": {}, "funcname": "IsGlyphRangeUnused", "location": "imgui:2443", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", @@ -4498,7 +4498,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImFont_IsLoaded", - "defaults": [], + "defaults": {}, "funcname": "IsLoaded", "location": "imgui:2425", "ov_cimguiname": "ImFont_IsLoaded", @@ -4539,7 +4539,7 @@ "argsoriginal": "(ImDrawList* draw_list,float size,ImVec2 pos,ImU32 col,ImWchar c)", "call_args": "(draw_list,size,pos,col,c)", "cimguiname": "ImFont_RenderChar", - "defaults": [], + "defaults": {}, "funcname": "RenderChar", "location": "imgui:2432", "ov_cimguiname": "ImFont_RenderChar", @@ -4624,7 +4624,7 @@ "argsoriginal": "(ImWchar c)", "call_args": "(c)", "cimguiname": "ImFont_SetFallbackChar", - "defaults": [], + "defaults": {}, "funcname": "SetFallbackChar", "location": "imgui:2442", "ov_cimguiname": "ImFont_SetFallbackChar", @@ -4653,7 +4653,7 @@ "argsoriginal": "(ImWchar c,bool visible)", "call_args": "(c,visible)", "cimguiname": "ImFont_SetGlyphVisible", - "defaults": [], + "defaults": {}, "funcname": "SetGlyphVisible", "location": "imgui:2441", "ov_cimguiname": "ImFont_SetGlyphVisible", @@ -4673,7 +4673,7 @@ ], "call_args": "(self)", "cimguiname": "ImFont_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "location": "imgui:2421", "ov_cimguiname": "ImFont_destroy", @@ -4691,7 +4691,7 @@ "call_args": "()", "cimguiname": "ImGuiColumnData_ImGuiColumnData", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiColumnData", "location": "imgui_internal:1000", "ov_cimguiname": "ImGuiColumnData_ImGuiColumnData", @@ -4710,7 +4710,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiColumnData_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiColumnData_destroy", "ret": "void", @@ -4730,7 +4730,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiColumns_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui_internal:1022", "ov_cimguiname": "ImGuiColumns_Clear", @@ -4747,7 +4747,7 @@ "call_args": "()", "cimguiname": "ImGuiColumns_ImGuiColumns", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiColumns", "location": "imgui_internal:1021", "ov_cimguiname": "ImGuiColumns_ImGuiColumns", @@ -4766,7 +4766,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiColumns_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiColumns_destroy", "ret": "void", @@ -4787,7 +4787,7 @@ "call_args": "(shared_font_atlas)", "cimguiname": "ImGuiContext_ImGuiContext", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiContext", "location": "imgui_internal:1323", "ov_cimguiname": "ImGuiContext_ImGuiContext", @@ -4806,7 +4806,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiContext_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiContext_destroy", "ret": "void", @@ -4830,7 +4830,7 @@ "argsoriginal": "(unsigned int c)", "call_args": "(c)", "cimguiname": "ImGuiIO_AddInputCharacter", - "defaults": [], + "defaults": {}, "funcname": "AddInputCharacter", "location": "imgui:1576", "ov_cimguiname": "ImGuiIO_AddInputCharacter", @@ -4855,7 +4855,7 @@ "argsoriginal": "(ImWchar16 c)", "call_args": "(c)", "cimguiname": "ImGuiIO_AddInputCharacterUTF16", - "defaults": [], + "defaults": {}, "funcname": "AddInputCharacterUTF16", "location": "imgui:1577", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", @@ -4880,7 +4880,7 @@ "argsoriginal": "(const char* str)", "call_args": "(str)", "cimguiname": "ImGuiIO_AddInputCharactersUTF8", - "defaults": [], + "defaults": {}, "funcname": "AddInputCharactersUTF8", "location": "imgui:1578", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", @@ -4901,7 +4901,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiIO_ClearInputCharacters", - "defaults": [], + "defaults": {}, "funcname": "ClearInputCharacters", "location": "imgui:1579", "ov_cimguiname": "ImGuiIO_ClearInputCharacters", @@ -4918,7 +4918,7 @@ "call_args": "()", "cimguiname": "ImGuiIO_ImGuiIO", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiIO", "location": "imgui:1627", "ov_cimguiname": "ImGuiIO_ImGuiIO", @@ -4937,7 +4937,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiIO_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiIO_destroy", "ret": "void", @@ -4965,7 +4965,7 @@ "argsoriginal": "(int pos,int bytes_count)", "call_args": "(pos,bytes_count)", "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", - "defaults": [], + "defaults": {}, "funcname": "DeleteChars", "location": "imgui:1664", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", @@ -4986,7 +4986,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextCallbackData_HasSelection", - "defaults": [], + "defaults": {}, "funcname": "HasSelection", "location": "imgui:1666", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", @@ -5003,7 +5003,7 @@ "call_args": "()", "cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiInputTextCallbackData", "location": "imgui:1663", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", @@ -5057,7 +5057,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiInputTextCallbackData_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiInputTextCallbackData_destroy", "ret": "void", @@ -5077,7 +5077,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextState_ClearFreeMemory", - "defaults": [], + "defaults": {}, "funcname": "ClearFreeMemory", "location": "imgui_internal:867", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", @@ -5098,7 +5098,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextState_ClearSelection", - "defaults": [], + "defaults": {}, "funcname": "ClearSelection", "location": "imgui_internal:876", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", @@ -5119,7 +5119,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextState_ClearText", - "defaults": [], + "defaults": {}, "funcname": "ClearText", "location": "imgui_internal:866", "ov_cimguiname": "ImGuiInputTextState_ClearText", @@ -5140,7 +5140,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextState_CursorAnimReset", - "defaults": [], + "defaults": {}, "funcname": "CursorAnimReset", "location": "imgui_internal:873", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", @@ -5161,7 +5161,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextState_CursorClamp", - "defaults": [], + "defaults": {}, "funcname": "CursorClamp", "location": "imgui_internal:874", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", @@ -5182,7 +5182,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextState_GetRedoAvailCount", - "defaults": [], + "defaults": {}, "funcname": "GetRedoAvailCount", "location": "imgui_internal:869", "ov_cimguiname": "ImGuiInputTextState_GetRedoAvailCount", @@ -5203,7 +5203,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", - "defaults": [], + "defaults": {}, "funcname": "GetUndoAvailCount", "location": "imgui_internal:868", "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", @@ -5224,7 +5224,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextState_HasSelection", - "defaults": [], + "defaults": {}, "funcname": "HasSelection", "location": "imgui_internal:875", "ov_cimguiname": "ImGuiInputTextState_HasSelection", @@ -5241,7 +5241,7 @@ "call_args": "()", "cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiInputTextState", "location": "imgui_internal:865", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", @@ -5265,7 +5265,7 @@ "argsoriginal": "(int key)", "call_args": "(key)", "cimguiname": "ImGuiInputTextState_OnKeyPressed", - "defaults": [], + "defaults": {}, "funcname": "OnKeyPressed", "location": "imgui_internal:870", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", @@ -5286,7 +5286,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiInputTextState_SelectAll", - "defaults": [], + "defaults": {}, "funcname": "SelectAll", "location": "imgui_internal:877", "ov_cimguiname": "ImGuiInputTextState_SelectAll", @@ -5306,7 +5306,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiInputTextState_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiInputTextState_destroy", "ret": "void", @@ -5326,7 +5326,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiLastItemDataBackup_Backup", - "defaults": [], + "defaults": {}, "funcname": "Backup", "location": "imgui_internal:1680", "ov_cimguiname": "ImGuiLastItemDataBackup_Backup", @@ -5343,7 +5343,7 @@ "call_args": "()", "cimguiname": "ImGuiLastItemDataBackup_ImGuiLastItemDataBackup", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiLastItemDataBackup", "location": "imgui_internal:1679", "ov_cimguiname": "ImGuiLastItemDataBackup_ImGuiLastItemDataBackup", @@ -5363,7 +5363,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiLastItemDataBackup_Restore", - "defaults": [], + "defaults": {}, "funcname": "Restore", "location": "imgui_internal:1681", "ov_cimguiname": "ImGuiLastItemDataBackup_Restore", @@ -5383,7 +5383,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiLastItemDataBackup_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiLastItemDataBackup_destroy", "ret": "void", @@ -5434,7 +5434,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiListClipper_End", - "defaults": [], + "defaults": {}, "funcname": "End", "location": "imgui:1901", "ov_cimguiname": "ImGuiListClipper_End", @@ -5483,7 +5483,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiListClipper_Step", - "defaults": [], + "defaults": {}, "funcname": "Step", "location": "imgui:1899", "ov_cimguiname": "ImGuiListClipper_Step", @@ -5503,7 +5503,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiListClipper_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "location": "imgui:1897", "ov_cimguiname": "ImGuiListClipper_destroy", @@ -5529,7 +5529,7 @@ "argsoriginal": "(float avail_w)", "call_args": "(avail_w)", "cimguiname": "ImGuiMenuColumns_CalcExtraSpace", - "defaults": [], + "defaults": {}, "funcname": "CalcExtraSpace", "location": "imgui_internal:842", "ov_cimguiname": "ImGuiMenuColumns_CalcExtraSpace", @@ -5562,7 +5562,7 @@ "argsoriginal": "(float w0,float w1,float w2)", "call_args": "(w0,w1,w2)", "cimguiname": "ImGuiMenuColumns_DeclColumns", - "defaults": [], + "defaults": {}, "funcname": "DeclColumns", "location": "imgui_internal:841", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", @@ -5579,7 +5579,7 @@ "call_args": "()", "cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiMenuColumns", "location": "imgui_internal:839", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", @@ -5611,7 +5611,7 @@ "argsoriginal": "(int count,float spacing,bool clear)", "call_args": "(count,spacing,clear)", "cimguiname": "ImGuiMenuColumns_Update", - "defaults": [], + "defaults": {}, "funcname": "Update", "location": "imgui_internal:840", "ov_cimguiname": "ImGuiMenuColumns_Update", @@ -5631,7 +5631,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiMenuColumns_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiMenuColumns_destroy", "ret": "void", @@ -5651,7 +5651,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiNavMoveResult_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui_internal:905", "ov_cimguiname": "ImGuiNavMoveResult_Clear", @@ -5668,7 +5668,7 @@ "call_args": "()", "cimguiname": "ImGuiNavMoveResult_ImGuiNavMoveResult", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiNavMoveResult", "location": "imgui_internal:904", "ov_cimguiname": "ImGuiNavMoveResult_ImGuiNavMoveResult", @@ -5687,7 +5687,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiNavMoveResult_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiNavMoveResult_destroy", "ret": "void", @@ -5707,7 +5707,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiNextItemData_ClearFlags", - "defaults": [], + "defaults": {}, "funcname": "ClearFlags", "location": "imgui_internal:960", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", @@ -5724,7 +5724,7 @@ "call_args": "()", "cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiNextItemData", "location": "imgui_internal:959", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", @@ -5743,7 +5743,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiNextItemData_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiNextItemData_destroy", "ret": "void", @@ -5763,7 +5763,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiNextWindowData_ClearFlags", - "defaults": [], + "defaults": {}, "funcname": "ClearFlags", "location": "imgui_internal:941", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", @@ -5780,7 +5780,7 @@ "call_args": "()", "cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiNextWindowData", "location": "imgui_internal:940", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", @@ -5799,7 +5799,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiNextWindowData_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiNextWindowData_destroy", "ret": "void", @@ -5815,7 +5815,7 @@ "call_args": "()", "cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiOnceUponAFrame", "location": "imgui:1767", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", @@ -5834,7 +5834,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiOnceUponAFrame_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiOnceUponAFrame_destroy", "ret": "void", @@ -5854,7 +5854,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui:1695", "ov_cimguiname": "ImGuiPayload_Clear", @@ -5871,7 +5871,7 @@ "call_args": "()", "cimguiname": "ImGuiPayload_ImGuiPayload", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiPayload", "location": "imgui:1694", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", @@ -5895,7 +5895,7 @@ "argsoriginal": "(const char* type)", "call_args": "(type)", "cimguiname": "ImGuiPayload_IsDataType", - "defaults": [], + "defaults": {}, "funcname": "IsDataType", "location": "imgui:1696", "ov_cimguiname": "ImGuiPayload_IsDataType", @@ -5916,7 +5916,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_IsDelivery", - "defaults": [], + "defaults": {}, "funcname": "IsDelivery", "location": "imgui:1698", "ov_cimguiname": "ImGuiPayload_IsDelivery", @@ -5937,7 +5937,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiPayload_IsPreview", - "defaults": [], + "defaults": {}, "funcname": "IsPreview", "location": "imgui:1697", "ov_cimguiname": "ImGuiPayload_IsPreview", @@ -5957,7 +5957,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiPayload_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiPayload_destroy", "ret": "void", @@ -5973,7 +5973,7 @@ "call_args": "()", "cimguiname": "ImGuiPopupData_ImGuiPopupData", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiPopupData", "location": "imgui_internal:891", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", @@ -5992,7 +5992,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiPopupData_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiPopupData_destroy", "ret": "void", @@ -6013,7 +6013,7 @@ "call_args": "(ptr)", "cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiPtrOrIndex", "location": "imgui_internal:974", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndexPtr", @@ -6032,7 +6032,7 @@ "call_args": "(index)", "cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiPtrOrIndex", "location": "imgui_internal:975", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndexInt", @@ -6051,7 +6051,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiPtrOrIndex_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiPtrOrIndex_destroy", "ret": "void", @@ -6067,7 +6067,7 @@ "call_args": "()", "cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiSettingsHandler", "location": "imgui_internal:1093", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", @@ -6086,7 +6086,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiSettingsHandler_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiSettingsHandler_destroy", "ret": "void", @@ -6111,7 +6111,7 @@ "call_args": "(_key,_val_i)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiStoragePair", "location": "imgui:1834", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairInt", @@ -6134,7 +6134,7 @@ "call_args": "(_key,_val_f)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiStoragePair", "location": "imgui:1835", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairFloat", @@ -6157,7 +6157,7 @@ "call_args": "(_key,_val_p)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiStoragePair", "location": "imgui:1836", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairPtr", @@ -6176,7 +6176,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiStoragePair_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiStoragePair_destroy", "ret": "void", @@ -6196,7 +6196,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiStorage_BuildSortByKey", - "defaults": [], + "defaults": {}, "funcname": "BuildSortByKey", "location": "imgui:1867", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", @@ -6217,7 +6217,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiStorage_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui:1844", "ov_cimguiname": "ImGuiStorage_Clear", @@ -6428,7 +6428,7 @@ "argsoriginal": "(ImGuiID key)", "call_args": "(key)", "cimguiname": "ImGuiStorage_GetVoidPtr", - "defaults": [], + "defaults": {}, "funcname": "GetVoidPtr", "location": "imgui:1851", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", @@ -6484,7 +6484,7 @@ "argsoriginal": "(int val)", "call_args": "(val)", "cimguiname": "ImGuiStorage_SetAllInt", - "defaults": [], + "defaults": {}, "funcname": "SetAllInt", "location": "imgui:1864", "ov_cimguiname": "ImGuiStorage_SetAllInt", @@ -6513,7 +6513,7 @@ "argsoriginal": "(ImGuiID key,bool val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetBool", - "defaults": [], + "defaults": {}, "funcname": "SetBool", "location": "imgui:1848", "ov_cimguiname": "ImGuiStorage_SetBool", @@ -6542,7 +6542,7 @@ "argsoriginal": "(ImGuiID key,float val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetFloat", - "defaults": [], + "defaults": {}, "funcname": "SetFloat", "location": "imgui:1850", "ov_cimguiname": "ImGuiStorage_SetFloat", @@ -6571,7 +6571,7 @@ "argsoriginal": "(ImGuiID key,int val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetInt", - "defaults": [], + "defaults": {}, "funcname": "SetInt", "location": "imgui:1846", "ov_cimguiname": "ImGuiStorage_SetInt", @@ -6600,7 +6600,7 @@ "argsoriginal": "(ImGuiID key,void* val)", "call_args": "(key,val)", "cimguiname": "ImGuiStorage_SetVoidPtr", - "defaults": [], + "defaults": {}, "funcname": "SetVoidPtr", "location": "imgui:1852", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", @@ -6626,7 +6626,7 @@ "call_args": "(idx,v)", "cimguiname": "ImGuiStyleMod_ImGuiStyleMod", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiStyleMod", "location": "imgui_internal:813", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModInt", @@ -6649,7 +6649,7 @@ "call_args": "(idx,v)", "cimguiname": "ImGuiStyleMod_ImGuiStyleMod", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiStyleMod", "location": "imgui_internal:814", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModFloat", @@ -6672,7 +6672,7 @@ "call_args": "(idx,v)", "cimguiname": "ImGuiStyleMod_ImGuiStyleMod", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiStyleMod", "location": "imgui_internal:815", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModVec2", @@ -6691,7 +6691,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiStyleMod_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiStyleMod_destroy", "ret": "void", @@ -6707,7 +6707,7 @@ "call_args": "()", "cimguiname": "ImGuiStyle_ImGuiStyle", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiStyle", "location": "imgui:1483", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", @@ -6731,7 +6731,7 @@ "argsoriginal": "(float scale_factor)", "call_args": "(scale_factor)", "cimguiname": "ImGuiStyle_ScaleAllSizes", - "defaults": [], + "defaults": {}, "funcname": "ScaleAllSizes", "location": "imgui:1484", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", @@ -6751,7 +6751,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiStyle_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiStyle_destroy", "ret": "void", @@ -6775,7 +6775,7 @@ "argsoriginal": "(const ImGuiTabItem* tab)", "call_args": "(tab)", "cimguiname": "ImGuiTabBar_GetTabName", - "defaults": [], + "defaults": {}, "funcname": "GetTabName", "location": "imgui_internal:1748", "ov_cimguiname": "ImGuiTabBar_GetTabName", @@ -6800,7 +6800,7 @@ "argsoriginal": "(const ImGuiTabItem* tab)", "call_args": "(tab)", "cimguiname": "ImGuiTabBar_GetTabOrder", - "defaults": [], + "defaults": {}, "funcname": "GetTabOrder", "location": "imgui_internal:1747", "ov_cimguiname": "ImGuiTabBar_GetTabOrder", @@ -6817,7 +6817,7 @@ "call_args": "()", "cimguiname": "ImGuiTabBar_ImGuiTabBar", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiTabBar", "location": "imgui_internal:1746", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", @@ -6836,7 +6836,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiTabBar_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiTabBar_destroy", "ret": "void", @@ -6852,7 +6852,7 @@ "call_args": "()", "cimguiname": "ImGuiTabItem_ImGuiTabItem", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiTabItem", "location": "imgui_internal:1715", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", @@ -6871,7 +6871,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiTabItem_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiTabItem_destroy", "ret": "void", @@ -6887,7 +6887,7 @@ "call_args": "()", "cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiTextBuffer", "location": "imgui:1805", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", @@ -6946,7 +6946,7 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "ImGuiTextBuffer_appendf", - "defaults": [], + "defaults": {}, "funcname": "appendf", "isvararg": "...)", "location": "imgui:1815", @@ -6977,7 +6977,7 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "ImGuiTextBuffer_appendfv", - "defaults": [], + "defaults": {}, "funcname": "appendfv", "location": "imgui:1816", "ov_cimguiname": "ImGuiTextBuffer_appendfv", @@ -6998,7 +6998,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_begin", - "defaults": [], + "defaults": {}, "funcname": "begin", "location": "imgui:1807", "ov_cimguiname": "ImGuiTextBuffer_begin", @@ -7019,7 +7019,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_c_str", - "defaults": [], + "defaults": {}, "funcname": "c_str", "location": "imgui:1813", "ov_cimguiname": "ImGuiTextBuffer_c_str", @@ -7040,7 +7040,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_clear", - "defaults": [], + "defaults": {}, "funcname": "clear", "location": "imgui:1811", "ov_cimguiname": "ImGuiTextBuffer_clear", @@ -7060,7 +7060,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiTextBuffer_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiTextBuffer_destroy", "ret": "void", @@ -7080,7 +7080,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_empty", - "defaults": [], + "defaults": {}, "funcname": "empty", "location": "imgui:1810", "ov_cimguiname": "ImGuiTextBuffer_empty", @@ -7101,7 +7101,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_end", - "defaults": [], + "defaults": {}, "funcname": "end", "location": "imgui:1808", "ov_cimguiname": "ImGuiTextBuffer_end", @@ -7126,7 +7126,7 @@ "argsoriginal": "(int capacity)", "call_args": "(capacity)", "cimguiname": "ImGuiTextBuffer_reserve", - "defaults": [], + "defaults": {}, "funcname": "reserve", "location": "imgui:1812", "ov_cimguiname": "ImGuiTextBuffer_reserve", @@ -7147,7 +7147,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextBuffer_size", - "defaults": [], + "defaults": {}, "funcname": "size", "location": "imgui:1809", "ov_cimguiname": "ImGuiTextBuffer_size", @@ -7168,7 +7168,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_Build", - "defaults": [], + "defaults": {}, "funcname": "Build", "location": "imgui:1778", "ov_cimguiname": "ImGuiTextFilter_Build", @@ -7189,7 +7189,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui:1779", "ov_cimguiname": "ImGuiTextFilter_Clear", @@ -7265,7 +7265,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextFilter_IsActive", - "defaults": [], + "defaults": {}, "funcname": "IsActive", "location": "imgui:1780", "ov_cimguiname": "ImGuiTextFilter_IsActive", @@ -7316,7 +7316,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiTextFilter_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiTextFilter_destroy", "ret": "void", @@ -7332,7 +7332,7 @@ "call_args": "()", "cimguiname": "ImGuiTextRange_ImGuiTextRange", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiTextRange", "location": "imgui:1788", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRangeNil", @@ -7355,7 +7355,7 @@ "call_args": "(_b,_e)", "cimguiname": "ImGuiTextRange_ImGuiTextRange", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiTextRange", "location": "imgui:1789", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRangeStr", @@ -7374,7 +7374,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiTextRange_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiTextRange_destroy", "ret": "void", @@ -7394,7 +7394,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiTextRange_empty", - "defaults": [], + "defaults": {}, "funcname": "empty", "location": "imgui:1790", "ov_cimguiname": "ImGuiTextRange_empty", @@ -7423,7 +7423,7 @@ "argsoriginal": "(char separator,ImVector* out)", "call_args": "(separator,out)", "cimguiname": "ImGuiTextRange_split", - "defaults": [], + "defaults": {}, "funcname": "split", "location": "imgui:1791", "ov_cimguiname": "ImGuiTextRange_split", @@ -7444,7 +7444,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiWindowSettings_GetName", - "defaults": [], + "defaults": {}, "funcname": "GetName", "location": "imgui_internal:1078", "ov_cimguiname": "ImGuiWindowSettings_GetName", @@ -7461,7 +7461,7 @@ "call_args": "()", "cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiWindowSettings", "location": "imgui_internal:1077", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", @@ -7480,7 +7480,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiWindowSettings_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiWindowSettings_destroy", "ret": "void", @@ -7496,7 +7496,7 @@ "call_args": "()", "cimguiname": "ImGuiWindowTempData_ImGuiWindowTempData", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiWindowTempData", "location": "imgui_internal:1526", "ov_cimguiname": "ImGuiWindowTempData_ImGuiWindowTempData", @@ -7515,7 +7515,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiWindowTempData_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImGuiWindowTempData_destroy", "ret": "void", @@ -7535,7 +7535,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiWindow_CalcFontSize", - "defaults": [], + "defaults": {}, "funcname": "CalcFontSize", "location": "imgui_internal:1664", "ov_cimguiname": "ImGuiWindow_CalcFontSize", @@ -7589,7 +7589,7 @@ "argsoriginal": "(const void* ptr)", "call_args": "(ptr)", "cimguiname": "ImGuiWindow_GetID", - "defaults": [], + "defaults": {}, "funcname": "GetID", "location": "imgui_internal:1655", "ov_cimguiname": "ImGuiWindow_GetIDPtr", @@ -7612,7 +7612,7 @@ "argsoriginal": "(int n)", "call_args": "(n)", "cimguiname": "ImGuiWindow_GetID", - "defaults": [], + "defaults": {}, "funcname": "GetID", "location": "imgui_internal:1656", "ov_cimguiname": "ImGuiWindow_GetIDInt", @@ -7637,7 +7637,7 @@ "argsoriginal": "(const ImRect& r_abs)", "call_args": "(r_abs)", "cimguiname": "ImGuiWindow_GetIDFromRectangle", - "defaults": [], + "defaults": {}, "funcname": "GetIDFromRectangle", "location": "imgui_internal:1660", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", @@ -7691,7 +7691,7 @@ "argsoriginal": "(const void* ptr)", "call_args": "(ptr)", "cimguiname": "ImGuiWindow_GetIDNoKeepAlive", - "defaults": [], + "defaults": {}, "funcname": "GetIDNoKeepAlive", "location": "imgui_internal:1658", "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAlivePtr", @@ -7714,7 +7714,7 @@ "argsoriginal": "(int n)", "call_args": "(n)", "cimguiname": "ImGuiWindow_GetIDNoKeepAlive", - "defaults": [], + "defaults": {}, "funcname": "GetIDNoKeepAlive", "location": "imgui_internal:1659", "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAliveInt", @@ -7740,7 +7740,7 @@ "call_args": "(context,name)", "cimguiname": "ImGuiWindow_ImGuiWindow", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImGuiWindow", "location": "imgui_internal:1650", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", @@ -7760,7 +7760,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiWindow_MenuBarHeight", - "defaults": [], + "defaults": {}, "funcname": "MenuBarHeight", "location": "imgui_internal:1667", "ov_cimguiname": "ImGuiWindow_MenuBarHeight", @@ -7785,7 +7785,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiWindow_MenuBarRect", - "defaults": [], + "defaults": {}, "funcname": "MenuBarRect", "location": "imgui_internal:1668", "nonUDT": 1, @@ -7811,7 +7811,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiWindow_Rect", - "defaults": [], + "defaults": {}, "funcname": "Rect", "location": "imgui_internal:1663", "nonUDT": 1, @@ -7833,7 +7833,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiWindow_TitleBarHeight", - "defaults": [], + "defaults": {}, "funcname": "TitleBarHeight", "location": "imgui_internal:1665", "ov_cimguiname": "ImGuiWindow_TitleBarHeight", @@ -7858,7 +7858,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGuiWindow_TitleBarRect", - "defaults": [], + "defaults": {}, "funcname": "TitleBarRect", "location": "imgui_internal:1666", "nonUDT": 1, @@ -7879,7 +7879,7 @@ ], "call_args": "(self)", "cimguiname": "ImGuiWindow_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "location": "imgui_internal:1652", "ov_cimguiname": "ImGuiWindow_destroy", @@ -7901,7 +7901,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImPool_Add", - "defaults": [], + "defaults": {}, "funcname": "Add", "location": "imgui_internal:497", "ov_cimguiname": "ImPool_Add", @@ -7923,7 +7923,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImPool_Clear", - "defaults": [], + "defaults": {}, "funcname": "Clear", "location": "imgui_internal:496", "ov_cimguiname": "ImPool_Clear", @@ -7949,7 +7949,7 @@ "argsoriginal": "(const T* p)", "call_args": "(p)", "cimguiname": "ImPool_Contains", - "defaults": [], + "defaults": {}, "funcname": "Contains", "location": "imgui_internal:495", "ov_cimguiname": "ImPool_Contains", @@ -7975,7 +7975,7 @@ "argsoriginal": "(ImPoolIdx n)", "call_args": "(n)", "cimguiname": "ImPool_GetByIndex", - "defaults": [], + "defaults": {}, "funcname": "GetByIndex", "location": "imgui_internal:492", "ov_cimguiname": "ImPool_GetByIndex", @@ -8001,7 +8001,7 @@ "argsoriginal": "(ImGuiID key)", "call_args": "(key)", "cimguiname": "ImPool_GetByKey", - "defaults": [], + "defaults": {}, "funcname": "GetByKey", "location": "imgui_internal:491", "ov_cimguiname": "ImPool_GetByKey", @@ -8027,7 +8027,7 @@ "argsoriginal": "(const T* p)", "call_args": "(p)", "cimguiname": "ImPool_GetIndex", - "defaults": [], + "defaults": {}, "funcname": "GetIndex", "location": "imgui_internal:493", "ov_cimguiname": "ImPool_GetIndex", @@ -8053,7 +8053,7 @@ "argsoriginal": "(ImGuiID key)", "call_args": "(key)", "cimguiname": "ImPool_GetOrAddByKey", - "defaults": [], + "defaults": {}, "funcname": "GetOrAddByKey", "location": "imgui_internal:494", "ov_cimguiname": "ImPool_GetOrAddByKey", @@ -8075,7 +8075,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImPool_GetSize", - "defaults": [], + "defaults": {}, "funcname": "GetSize", "location": "imgui_internal:501", "ov_cimguiname": "ImPool_GetSize", @@ -8093,7 +8093,7 @@ "call_args": "()", "cimguiname": "ImPool_ImPool", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImPool", "location": "imgui_internal:489", "ov_cimguiname": "ImPool_ImPool", @@ -8122,7 +8122,7 @@ "argsoriginal": "(ImGuiID key,const T* p)", "call_args": "(key,p)", "cimguiname": "ImPool_Remove", - "defaults": [], + "defaults": {}, "funcname": "Remove", "location": "imgui_internal:498", "ov_cimguiname": "ImPool_RemoveTPtr", @@ -8150,7 +8150,7 @@ "argsoriginal": "(ImGuiID key,ImPoolIdx idx)", "call_args": "(key,idx)", "cimguiname": "ImPool_Remove", - "defaults": [], + "defaults": {}, "funcname": "Remove", "location": "imgui_internal:499", "ov_cimguiname": "ImPool_RemovePoolIdx", @@ -8176,7 +8176,7 @@ "argsoriginal": "(int capacity)", "call_args": "(capacity)", "cimguiname": "ImPool_Reserve", - "defaults": [], + "defaults": {}, "funcname": "Reserve", "location": "imgui_internal:500", "ov_cimguiname": "ImPool_Reserve", @@ -8197,7 +8197,7 @@ ], "call_args": "(self)", "cimguiname": "ImPool_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "location": "imgui_internal:490", "ov_cimguiname": "ImPool_destroy", @@ -8224,7 +8224,7 @@ "argsoriginal": "(const ImVec2& p)", "call_args": "(p)", "cimguiname": "ImRect_Add", - "defaults": [], + "defaults": {}, "funcname": "Add", "location": "imgui_internal:436", "ov_cimguiname": "ImRect_AddVec2", @@ -8247,7 +8247,7 @@ "argsoriginal": "(const ImRect& r)", "call_args": "(r)", "cimguiname": "ImRect_Add", - "defaults": [], + "defaults": {}, "funcname": "Add", "location": "imgui_internal:437", "ov_cimguiname": "ImRect_AddRect", @@ -8272,7 +8272,7 @@ "argsoriginal": "(const ImRect& r)", "call_args": "(r)", "cimguiname": "ImRect_ClipWith", - "defaults": [], + "defaults": {}, "funcname": "ClipWith", "location": "imgui_internal:443", "ov_cimguiname": "ImRect_ClipWith", @@ -8297,7 +8297,7 @@ "argsoriginal": "(const ImRect& r)", "call_args": "(r)", "cimguiname": "ImRect_ClipWithFull", - "defaults": [], + "defaults": {}, "funcname": "ClipWithFull", "location": "imgui_internal:444", "ov_cimguiname": "ImRect_ClipWithFull", @@ -8322,7 +8322,7 @@ "argsoriginal": "(const ImVec2& p)", "call_args": "(p)", "cimguiname": "ImRect_Contains", - "defaults": [], + "defaults": {}, "funcname": "Contains", "location": "imgui_internal:433", "ov_cimguiname": "ImRect_ContainsVec2", @@ -8345,7 +8345,7 @@ "argsoriginal": "(const ImRect& r)", "call_args": "(r)", "cimguiname": "ImRect_Contains", - "defaults": [], + "defaults": {}, "funcname": "Contains", "location": "imgui_internal:434", "ov_cimguiname": "ImRect_ContainsRect", @@ -8370,7 +8370,7 @@ "argsoriginal": "(const float amount)", "call_args": "(amount)", "cimguiname": "ImRect_Expand", - "defaults": [], + "defaults": {}, "funcname": "Expand", "location": "imgui_internal:438", "ov_cimguiname": "ImRect_ExpandFloat", @@ -8393,7 +8393,7 @@ "argsoriginal": "(const ImVec2& amount)", "call_args": "(amount)", "cimguiname": "ImRect_Expand", - "defaults": [], + "defaults": {}, "funcname": "Expand", "location": "imgui_internal:439", "ov_cimguiname": "ImRect_ExpandVec2", @@ -8414,7 +8414,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImRect_Floor", - "defaults": [], + "defaults": {}, "funcname": "Floor", "location": "imgui_internal:445", "ov_cimguiname": "ImRect_Floor", @@ -8439,7 +8439,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImRect_GetBL", - "defaults": [], + "defaults": {}, "funcname": "GetBL", "location": "imgui_internal:431", "nonUDT": 1, @@ -8465,7 +8465,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImRect_GetBR", - "defaults": [], + "defaults": {}, "funcname": "GetBR", "location": "imgui_internal:432", "nonUDT": 1, @@ -8491,7 +8491,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImRect_GetCenter", - "defaults": [], + "defaults": {}, "funcname": "GetCenter", "location": "imgui_internal:425", "nonUDT": 1, @@ -8513,7 +8513,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImRect_GetHeight", - "defaults": [], + "defaults": {}, "funcname": "GetHeight", "location": "imgui_internal:428", "ov_cimguiname": "ImRect_GetHeight", @@ -8538,7 +8538,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImRect_GetSize", - "defaults": [], + "defaults": {}, "funcname": "GetSize", "location": "imgui_internal:426", "nonUDT": 1, @@ -8564,7 +8564,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImRect_GetTL", - "defaults": [], + "defaults": {}, "funcname": "GetTL", "location": "imgui_internal:429", "nonUDT": 1, @@ -8590,7 +8590,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImRect_GetTR", - "defaults": [], + "defaults": {}, "funcname": "GetTR", "location": "imgui_internal:430", "nonUDT": 1, @@ -8612,7 +8612,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImRect_GetWidth", - "defaults": [], + "defaults": {}, "funcname": "GetWidth", "location": "imgui_internal:427", "ov_cimguiname": "ImRect_GetWidth", @@ -8629,7 +8629,7 @@ "call_args": "()", "cimguiname": "ImRect_ImRect", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImRect", "location": "imgui_internal:420", "ov_cimguiname": "ImRect_ImRectNil", @@ -8652,7 +8652,7 @@ "call_args": "(min,max)", "cimguiname": "ImRect_ImRect", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImRect", "location": "imgui_internal:421", "ov_cimguiname": "ImRect_ImRectVec2", @@ -8671,7 +8671,7 @@ "call_args": "(v)", "cimguiname": "ImRect_ImRect", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImRect", "location": "imgui_internal:422", "ov_cimguiname": "ImRect_ImRectVec4", @@ -8702,7 +8702,7 @@ "call_args": "(x1,y1,x2,y2)", "cimguiname": "ImRect_ImRect", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImRect", "location": "imgui_internal:423", "ov_cimguiname": "ImRect_ImRectFloat", @@ -8722,7 +8722,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImRect_IsInverted", - "defaults": [], + "defaults": {}, "funcname": "IsInverted", "location": "imgui_internal:446", "ov_cimguiname": "ImRect_IsInverted", @@ -8747,7 +8747,7 @@ "argsoriginal": "(const ImRect& r)", "call_args": "(r)", "cimguiname": "ImRect_Overlaps", - "defaults": [], + "defaults": {}, "funcname": "Overlaps", "location": "imgui_internal:435", "ov_cimguiname": "ImRect_Overlaps", @@ -8772,7 +8772,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImRect_ToVec4", - "defaults": [], + "defaults": {}, "funcname": "ToVec4", "location": "imgui_internal:447", "nonUDT": 1, @@ -8798,7 +8798,7 @@ "argsoriginal": "(const ImVec2& d)", "call_args": "(d)", "cimguiname": "ImRect_Translate", - "defaults": [], + "defaults": {}, "funcname": "Translate", "location": "imgui_internal:440", "ov_cimguiname": "ImRect_Translate", @@ -8823,7 +8823,7 @@ "argsoriginal": "(float dx)", "call_args": "(dx)", "cimguiname": "ImRect_TranslateX", - "defaults": [], + "defaults": {}, "funcname": "TranslateX", "location": "imgui_internal:441", "ov_cimguiname": "ImRect_TranslateX", @@ -8848,7 +8848,7 @@ "argsoriginal": "(float dy)", "call_args": "(dy)", "cimguiname": "ImRect_TranslateY", - "defaults": [], + "defaults": {}, "funcname": "TranslateY", "location": "imgui_internal:442", "ov_cimguiname": "ImRect_TranslateY", @@ -8868,7 +8868,7 @@ ], "call_args": "(self)", "cimguiname": "ImRect_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImRect_destroy", "ret": "void", @@ -8884,7 +8884,7 @@ "call_args": "()", "cimguiname": "ImVec1_ImVec1", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec1", "location": "imgui_internal:400", "ov_cimguiname": "ImVec1_ImVec1Nil", @@ -8903,7 +8903,7 @@ "call_args": "(_x)", "cimguiname": "ImVec1_ImVec1", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec1", "location": "imgui_internal:401", "ov_cimguiname": "ImVec1_ImVec1Float", @@ -8922,7 +8922,7 @@ ], "call_args": "(self)", "cimguiname": "ImVec1_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImVec1_destroy", "ret": "void", @@ -8938,7 +8938,7 @@ "call_args": "()", "cimguiname": "ImVec2_ImVec2", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec2", "location": "imgui:214", "ov_cimguiname": "ImVec2_ImVec2Nil", @@ -8961,7 +8961,7 @@ "call_args": "(_x,_y)", "cimguiname": "ImVec2_ImVec2", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec2", "location": "imgui:215", "ov_cimguiname": "ImVec2_ImVec2Float", @@ -8980,7 +8980,7 @@ ], "call_args": "(self)", "cimguiname": "ImVec2_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImVec2_destroy", "ret": "void", @@ -8996,7 +8996,7 @@ "call_args": "()", "cimguiname": "ImVec2ih_ImVec2ih", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec2ih", "location": "imgui_internal:408", "ov_cimguiname": "ImVec2ih_ImVec2ihNil", @@ -9019,7 +9019,7 @@ "call_args": "(_x,_y)", "cimguiname": "ImVec2ih_ImVec2ih", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec2ih", "location": "imgui_internal:409", "ov_cimguiname": "ImVec2ih_ImVec2ihshort", @@ -9038,7 +9038,7 @@ "call_args": "(rhs)", "cimguiname": "ImVec2ih_ImVec2ih", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec2ih", "location": "imgui_internal:410", "ov_cimguiname": "ImVec2ih_ImVec2ihVec2", @@ -9057,7 +9057,7 @@ ], "call_args": "(self)", "cimguiname": "ImVec2ih_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImVec2ih_destroy", "ret": "void", @@ -9073,7 +9073,7 @@ "call_args": "()", "cimguiname": "ImVec4_ImVec4", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec4", "location": "imgui:227", "ov_cimguiname": "ImVec4_ImVec4Nil", @@ -9104,7 +9104,7 @@ "call_args": "(_x,_y,_z,_w)", "cimguiname": "ImVec4_ImVec4", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVec4", "location": "imgui:228", "ov_cimguiname": "ImVec4_ImVec4Float", @@ -9123,7 +9123,7 @@ ], "call_args": "(self)", "cimguiname": "ImVec4_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "ov_cimguiname": "ImVec4_destroy", "ret": "void", @@ -9139,7 +9139,7 @@ "call_args": "()", "cimguiname": "ImVector_ImVector", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVector", "location": "imgui:1389", "ov_cimguiname": "ImVector_ImVectorNil", @@ -9159,7 +9159,7 @@ "call_args": "(src)", "cimguiname": "ImVector_ImVector", "constructor": true, - "defaults": [], + "defaults": {}, "funcname": "ImVector", "location": "imgui:1390", "ov_cimguiname": "ImVector_ImVectorVector", @@ -9184,7 +9184,7 @@ "argsoriginal": "(int sz)", "call_args": "(sz)", "cimguiname": "ImVector__grow_capacity", - "defaults": [], + "defaults": {}, "funcname": "_grow_capacity", "location": "imgui:1412", "ov_cimguiname": "ImVector__grow_capacity", @@ -9206,7 +9206,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_back", - "defaults": [], + "defaults": {}, "funcname": "back", "location": "imgui:1408", "ov_cimguiname": "ImVector_backNil", @@ -9227,7 +9227,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_back", - "defaults": [], + "defaults": {}, "funcname": "back", "location": "imgui:1409", "ov_cimguiname": "ImVector_back_const", @@ -9250,7 +9250,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_begin", - "defaults": [], + "defaults": {}, "funcname": "begin", "location": "imgui:1402", "ov_cimguiname": "ImVector_beginNil", @@ -9270,7 +9270,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_begin", - "defaults": [], + "defaults": {}, "funcname": "begin", "location": "imgui:1403", "ov_cimguiname": "ImVector_begin_const", @@ -9292,7 +9292,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_capacity", - "defaults": [], + "defaults": {}, "funcname": "capacity", "location": "imgui:1397", "ov_cimguiname": "ImVector_capacity", @@ -9314,7 +9314,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_clear", - "defaults": [], + "defaults": {}, "funcname": "clear", "location": "imgui:1401", "ov_cimguiname": "ImVector_clear", @@ -9340,7 +9340,7 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_contains", - "defaults": [], + "defaults": {}, "funcname": "contains", "location": "imgui:1426", "ov_cimguiname": "ImVector_contains", @@ -9361,7 +9361,7 @@ ], "call_args": "(self)", "cimguiname": "ImVector_destroy", - "defaults": [], + "defaults": {}, "destructor": true, "location": "imgui:1392", "ov_cimguiname": "ImVector_destroy", @@ -9384,7 +9384,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_empty", - "defaults": [], + "defaults": {}, "funcname": "empty", "location": "imgui:1394", "ov_cimguiname": "ImVector_empty", @@ -9406,7 +9406,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_end", - "defaults": [], + "defaults": {}, "funcname": "end", "location": "imgui:1404", "ov_cimguiname": "ImVector_endNil", @@ -9426,7 +9426,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_end", - "defaults": [], + "defaults": {}, "funcname": "end", "location": "imgui:1405", "ov_cimguiname": "ImVector_end_const", @@ -9452,7 +9452,7 @@ "argsoriginal": "(const T* it)", "call_args": "(it)", "cimguiname": "ImVector_erase", - "defaults": [], + "defaults": {}, "funcname": "erase", "location": "imgui:1422", "ov_cimguiname": "ImVector_eraseNil", @@ -9480,7 +9480,7 @@ "argsoriginal": "(const T* it,const T* it_last)", "call_args": "(it,it_last)", "cimguiname": "ImVector_erase", - "defaults": [], + "defaults": {}, "funcname": "erase", "location": "imgui:1423", "ov_cimguiname": "ImVector_eraseTPtr", @@ -9506,7 +9506,7 @@ "argsoriginal": "(const T* it)", "call_args": "(it)", "cimguiname": "ImVector_erase_unsorted", - "defaults": [], + "defaults": {}, "funcname": "erase_unsorted", "location": "imgui:1424", "ov_cimguiname": "ImVector_erase_unsorted", @@ -9532,7 +9532,7 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_find", - "defaults": [], + "defaults": {}, "funcname": "find", "location": "imgui:1427", "ov_cimguiname": "ImVector_findNil", @@ -9556,7 +9556,7 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_find", - "defaults": [], + "defaults": {}, "funcname": "find", "location": "imgui:1428", "ov_cimguiname": "ImVector_find_const", @@ -9582,7 +9582,7 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_find_erase", - "defaults": [], + "defaults": {}, "funcname": "find_erase", "location": "imgui:1429", "ov_cimguiname": "ImVector_find_erase", @@ -9608,7 +9608,7 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_find_erase_unsorted", - "defaults": [], + "defaults": {}, "funcname": "find_erase_unsorted", "location": "imgui:1430", "ov_cimguiname": "ImVector_find_erase_unsorted", @@ -9630,7 +9630,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_front", - "defaults": [], + "defaults": {}, "funcname": "front", "location": "imgui:1406", "ov_cimguiname": "ImVector_frontNil", @@ -9651,7 +9651,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_front", - "defaults": [], + "defaults": {}, "funcname": "front", "location": "imgui:1407", "ov_cimguiname": "ImVector_front_const", @@ -9678,7 +9678,7 @@ "argsoriginal": "(const T* it)", "call_args": "(it)", "cimguiname": "ImVector_index_from_ptr", - "defaults": [], + "defaults": {}, "funcname": "index_from_ptr", "location": "imgui:1431", "ov_cimguiname": "ImVector_index_from_ptr", @@ -9708,7 +9708,7 @@ "argsoriginal": "(const T* it,const T& v)", "call_args": "(it,v)", "cimguiname": "ImVector_insert", - "defaults": [], + "defaults": {}, "funcname": "insert", "location": "imgui:1425", "ov_cimguiname": "ImVector_insert", @@ -9730,7 +9730,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_pop_back", - "defaults": [], + "defaults": {}, "funcname": "pop_back", "location": "imgui:1420", "ov_cimguiname": "ImVector_pop_back", @@ -9756,7 +9756,7 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_push_back", - "defaults": [], + "defaults": {}, "funcname": "push_back", "location": "imgui:1419", "ov_cimguiname": "ImVector_push_back", @@ -9782,7 +9782,7 @@ "argsoriginal": "(const T& v)", "call_args": "(v)", "cimguiname": "ImVector_push_front", - "defaults": [], + "defaults": {}, "funcname": "push_front", "location": "imgui:1421", "ov_cimguiname": "ImVector_push_front", @@ -9808,7 +9808,7 @@ "argsoriginal": "(int new_capacity)", "call_args": "(new_capacity)", "cimguiname": "ImVector_reserve", - "defaults": [], + "defaults": {}, "funcname": "reserve", "location": "imgui:1416", "ov_cimguiname": "ImVector_reserve", @@ -9834,7 +9834,7 @@ "argsoriginal": "(int new_size)", "call_args": "(new_size)", "cimguiname": "ImVector_resize", - "defaults": [], + "defaults": {}, "funcname": "resize", "location": "imgui:1413", "ov_cimguiname": "ImVector_resizeNil", @@ -9862,7 +9862,7 @@ "argsoriginal": "(int new_size,const T& v)", "call_args": "(new_size,v)", "cimguiname": "ImVector_resize", - "defaults": [], + "defaults": {}, "funcname": "resize", "location": "imgui:1414", "ov_cimguiname": "ImVector_resizeT", @@ -9888,7 +9888,7 @@ "argsoriginal": "(int new_size)", "call_args": "(new_size)", "cimguiname": "ImVector_shrink", - "defaults": [], + "defaults": {}, "funcname": "shrink", "location": "imgui:1415", "ov_cimguiname": "ImVector_shrink", @@ -9910,7 +9910,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_size", - "defaults": [], + "defaults": {}, "funcname": "size", "location": "imgui:1395", "ov_cimguiname": "ImVector_size", @@ -9932,7 +9932,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImVector_size_in_bytes", - "defaults": [], + "defaults": {}, "funcname": "size_in_bytes", "location": "imgui:1396", "ov_cimguiname": "ImVector_size_in_bytes", @@ -9959,7 +9959,7 @@ "argsoriginal": "(ImVector& rhs)", "call_args": "(*rhs)", "cimguiname": "ImVector_swap", - "defaults": [], + "defaults": {}, "funcname": "swap", "location": "imgui:1410", "ov_cimguiname": "ImVector_swap", @@ -10009,7 +10009,7 @@ "argsoriginal": "(ImGuiID id)", "call_args": "(id)", "cimguiname": "igActivateItem", - "defaults": [], + "defaults": {}, "funcname": "ActivateItem", "location": "imgui_internal:1885", "namespace": "ImGui", @@ -10026,7 +10026,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igAlignTextToFramePadding", - "defaults": [], + "defaults": {}, "funcname": "AlignTextToFramePadding", "location": "imgui:400", "namespace": "ImGui", @@ -10052,7 +10052,7 @@ "argsoriginal": "(const char* str_id,ImGuiDir dir)", "call_args": "(str_id,dir)", "cimguiname": "igArrowButton", - "defaults": [], + "defaults": {}, "funcname": "ArrowButton", "location": "imgui:443", "namespace": "ImGui", @@ -10233,7 +10233,7 @@ "argsoriginal": "(const char* name,ImGuiID id,const ImVec2& size_arg,bool border,ImGuiWindowFlags flags)", "call_args": "(name,id,size_arg,border,flags)", "cimguiname": "igBeginChildEx", - "defaults": [], + "defaults": {}, "funcname": "BeginChildEx", "location": "imgui_internal:1865", "namespace": "ImGui", @@ -10370,7 +10370,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginDragDropTarget", - "defaults": [], + "defaults": {}, "funcname": "BeginDragDropTarget", "location": "imgui:675", "namespace": "ImGui", @@ -10396,7 +10396,7 @@ "argsoriginal": "(const ImRect& bb,ImGuiID id)", "call_args": "(bb,id)", "cimguiname": "igBeginDragDropTargetCustom", - "defaults": [], + "defaults": {}, "funcname": "BeginDragDropTargetCustom", "location": "imgui_internal:1908", "namespace": "ImGui", @@ -10413,7 +10413,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginGroup", - "defaults": [], + "defaults": {}, "funcname": "BeginGroup", "location": "imgui:389", "namespace": "ImGui", @@ -10430,7 +10430,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginMainMenuBar", - "defaults": [], + "defaults": {}, "funcname": "BeginMainMenuBar", "location": "imgui:588", "namespace": "ImGui", @@ -10475,7 +10475,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginMenuBar", - "defaults": [], + "defaults": {}, "funcname": "BeginMenuBar", "location": "imgui:586", "namespace": "ImGui", @@ -10616,7 +10616,7 @@ "argsoriginal": "(ImGuiID id,ImGuiWindowFlags extra_flags)", "call_args": "(id,extra_flags)", "cimguiname": "igBeginPopupEx", - "defaults": [], + "defaults": {}, "funcname": "BeginPopupEx", "location": "imgui_internal:1870", "namespace": "ImGui", @@ -10707,7 +10707,7 @@ "argsoriginal": "(ImGuiTabBar* tab_bar,const ImRect& bb,ImGuiTabBarFlags flags)", "call_args": "(tab_bar,bb,flags)", "cimguiname": "igBeginTabBarEx", - "defaults": [], + "defaults": {}, "funcname": "BeginTabBarEx", "location": "imgui_internal:1925", "namespace": "ImGui", @@ -10757,7 +10757,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBeginTooltip", - "defaults": [], + "defaults": {}, "funcname": "BeginTooltip", "location": "imgui:597", "namespace": "ImGui", @@ -10783,7 +10783,7 @@ "argsoriginal": "(ImGuiWindowFlags extra_flags,ImGuiTooltipFlags tooltip_flags)", "call_args": "(extra_flags,tooltip_flags)", "cimguiname": "igBeginTooltipEx", - "defaults": [], + "defaults": {}, "funcname": "BeginTooltipEx", "location": "imgui_internal:1871", "namespace": "ImGui", @@ -10805,7 +10805,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igBringWindowToDisplayBack", - "defaults": [], + "defaults": {}, "funcname": "BringWindowToDisplayBack", "location": "imgui_internal:1794", "namespace": "ImGui", @@ -10827,7 +10827,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igBringWindowToDisplayFront", - "defaults": [], + "defaults": {}, "funcname": "BringWindowToDisplayFront", "location": "imgui_internal:1793", "namespace": "ImGui", @@ -10849,7 +10849,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igBringWindowToFocusFront", - "defaults": [], + "defaults": {}, "funcname": "BringWindowToFocusFront", "location": "imgui_internal:1792", "namespace": "ImGui", @@ -10866,7 +10866,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igBullet", - "defaults": [], + "defaults": {}, "funcname": "Bullet", "location": "imgui:451", "namespace": "ImGui", @@ -10892,7 +10892,7 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igBulletText", - "defaults": [], + "defaults": {}, "funcname": "BulletText", "isvararg": "...)", "location": "imgui:434", @@ -10919,7 +10919,7 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igBulletTextV", - "defaults": [], + "defaults": {}, "funcname": "BulletTextV", "location": "imgui:435", "namespace": "ImGui", @@ -11054,7 +11054,7 @@ "argsoriginal": "(ImVec2 size,float default_w,float default_h)", "call_args": "(size,default_w,default_h)", "cimguiname": "igCalcItemSize", - "defaults": [], + "defaults": {}, "funcname": "CalcItemSize", "location": "imgui_internal:1851", "namespace": "ImGui", @@ -11072,7 +11072,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igCalcItemWidth", - "defaults": [], + "defaults": {}, "funcname": "CalcItemWidth", "location": "imgui:367", "namespace": "ImGui", @@ -11106,7 +11106,7 @@ "argsoriginal": "(int items_count,float items_height,int* out_items_display_start,int* out_items_display_end)", "call_args": "(items_count,items_height,out_items_display_start,out_items_display_end)", "cimguiname": "igCalcListClipping", - "defaults": [], + "defaults": {}, "funcname": "CalcListClipping", "location": "imgui:721", "namespace": "ImGui", @@ -11183,7 +11183,7 @@ "argsoriginal": "(float t0,float t1,float repeat_delay,float repeat_rate)", "call_args": "(t0,t1,repeat_delay,repeat_rate)", "cimguiname": "igCalcTypematicRepeatAmount", - "defaults": [], + "defaults": {}, "funcname": "CalcTypematicRepeatAmount", "location": "imgui_internal:1884", "namespace": "ImGui", @@ -11209,7 +11209,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igCalcWindowExpectedSize", - "defaults": [], + "defaults": {}, "funcname": "CalcWindowExpectedSize", "location": "imgui_internal:1780", "namespace": "ImGui", @@ -11236,7 +11236,7 @@ "argsoriginal": "(const ImVec2& pos,float wrap_pos_x)", "call_args": "(pos,wrap_pos_x)", "cimguiname": "igCalcWrapWidthForPos", - "defaults": [], + "defaults": {}, "funcname": "CalcWrapWidthForPos", "location": "imgui_internal:1852", "namespace": "ImGui", @@ -11310,7 +11310,7 @@ "argsoriginal": "(const char* label,bool* v)", "call_args": "(label,v)", "cimguiname": "igCheckbox", - "defaults": [], + "defaults": {}, "funcname": "Checkbox", "location": "imgui:446", "namespace": "ImGui", @@ -11340,7 +11340,7 @@ "argsoriginal": "(const char* label,unsigned int* flags,unsigned int flags_value)", "call_args": "(label,flags,flags_value)", "cimguiname": "igCheckboxFlags", - "defaults": [], + "defaults": {}, "funcname": "CheckboxFlags", "location": "imgui:447", "namespace": "ImGui", @@ -11357,7 +11357,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igClearActiveID", - "defaults": [], + "defaults": {}, "funcname": "ClearActiveID", "location": "imgui_internal:1835", "namespace": "ImGui", @@ -11374,7 +11374,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igClearDragDrop", - "defaults": [], + "defaults": {}, "funcname": "ClearDragDrop", "location": "imgui_internal:1909", "namespace": "ImGui", @@ -11391,7 +11391,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igClearIniSettings", - "defaults": [], + "defaults": {}, "funcname": "ClearIniSettings", "location": "imgui_internal:1814", "namespace": "ImGui", @@ -11417,7 +11417,7 @@ "argsoriginal": "(ImGuiID id,const ImVec2& pos)", "call_args": "(id,pos)", "cimguiname": "igCloseButton", - "defaults": [], + "defaults": {}, "funcname": "CloseButton", "location": "imgui_internal:1968", "namespace": "ImGui", @@ -11434,7 +11434,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igCloseCurrentPopup", - "defaults": [], + "defaults": {}, "funcname": "CloseCurrentPopup", "location": "imgui:624", "namespace": "ImGui", @@ -11460,7 +11460,7 @@ "argsoriginal": "(int remaining,bool restore_focus_to_window_under_popup)", "call_args": "(remaining,restore_focus_to_window_under_popup)", "cimguiname": "igClosePopupToLevel", - "defaults": [], + "defaults": {}, "funcname": "ClosePopupToLevel", "location": "imgui_internal:1867", "namespace": "ImGui", @@ -11486,7 +11486,7 @@ "argsoriginal": "(ImGuiWindow* ref_window,bool restore_focus_to_window_under_popup)", "call_args": "(ref_window,restore_focus_to_window_under_popup)", "cimguiname": "igClosePopupsOverWindow", - "defaults": [], + "defaults": {}, "funcname": "ClosePopupsOverWindow", "location": "imgui_internal:1868", "namespace": "ImGui", @@ -11512,7 +11512,7 @@ "argsoriginal": "(ImGuiID id,const ImVec2& pos)", "call_args": "(id,pos)", "cimguiname": "igCollapseButton", - "defaults": [], + "defaults": {}, "funcname": "CollapseButton", "location": "imgui_internal:1969", "namespace": "ImGui", @@ -11629,7 +11629,7 @@ "argsoriginal": "(const ImVec4& in)", "call_args": "(in)", "cimguiname": "igColorConvertFloat4ToU32", - "defaults": [], + "defaults": {}, "funcname": "ColorConvertFloat4ToU32", "location": "imgui:730", "namespace": "ImGui", @@ -11674,7 +11674,7 @@ "argsoriginal": "(float h,float s,float v,float& out_r,float& out_g,float& out_b)", "call_args": "(h,s,v,*out_r,*out_g,*out_b)", "cimguiname": "igColorConvertHSVtoRGB", - "defaults": [], + "defaults": {}, "funcname": "ColorConvertHSVtoRGB", "location": "imgui:732", "namespace": "ImGui", @@ -11719,7 +11719,7 @@ "argsoriginal": "(float r,float g,float b,float& out_h,float& out_s,float& out_v)", "call_args": "(r,g,b,*out_h,*out_s,*out_v)", "cimguiname": "igColorConvertRGBtoHSV", - "defaults": [], + "defaults": {}, "funcname": "ColorConvertRGBtoHSV", "location": "imgui:731", "namespace": "ImGui", @@ -11745,7 +11745,7 @@ "argsoriginal": "(ImU32 in)", "call_args": "(in)", "cimguiname": "igColorConvertU32ToFloat4", - "defaults": [], + "defaults": {}, "funcname": "ColorConvertU32ToFloat4", "location": "imgui:729", "namespace": "ImGui", @@ -11836,7 +11836,7 @@ "argsoriginal": "(const float* col,ImGuiColorEditFlags flags)", "call_args": "(col,flags)", "cimguiname": "igColorEditOptionsPopup", - "defaults": [], + "defaults": {}, "funcname": "ColorEditOptionsPopup", "location": "imgui_internal:2013", "namespace": "ImGui", @@ -11931,7 +11931,7 @@ "argsoriginal": "(const float* ref_col,ImGuiColorEditFlags flags)", "call_args": "(ref_col,flags)", "cimguiname": "igColorPickerOptionsPopup", - "defaults": [], + "defaults": {}, "funcname": "ColorPickerOptionsPopup", "location": "imgui_internal:2014", "namespace": "ImGui", @@ -11961,7 +11961,7 @@ "argsoriginal": "(const char* text,const float* col,ImGuiColorEditFlags flags)", "call_args": "(text,col,flags)", "cimguiname": "igColorTooltip", - "defaults": [], + "defaults": {}, "funcname": "ColorTooltip", "location": "imgui_internal:2012", "namespace": "ImGui", @@ -12159,7 +12159,7 @@ "argsoriginal": "(const char* name)", "call_args": "(name)", "cimguiname": "igCreateNewWindowSettings", - "defaults": [], + "defaults": {}, "funcname": "CreateNewWindowSettings", "location": "imgui_internal:1815", "namespace": "ImGui", @@ -12197,7 +12197,7 @@ "argsoriginal": "(ImGuiDataType data_type,int op,void* output,void* arg_1,const void* arg_2)", "call_args": "(data_type,op,output,arg_1,arg_2)", "cimguiname": "igDataTypeApplyOp", - "defaults": [], + "defaults": {}, "funcname": "DataTypeApplyOp", "location": "imgui_internal:2000", "namespace": "ImGui", @@ -12235,7 +12235,7 @@ "argsoriginal": "(const char* buf,const char* initial_value_buf,ImGuiDataType data_type,void* p_data,const char* format)", "call_args": "(buf,initial_value_buf,data_type,p_data,format)", "cimguiname": "igDataTypeApplyOpFromText", - "defaults": [], + "defaults": {}, "funcname": "DataTypeApplyOpFromText", "location": "imgui_internal:2001", "namespace": "ImGui", @@ -12269,7 +12269,7 @@ "argsoriginal": "(ImGuiDataType data_type,void* p_data,const void* p_min,const void* p_max)", "call_args": "(data_type,p_data,p_min,p_max)", "cimguiname": "igDataTypeClamp", - "defaults": [], + "defaults": {}, "funcname": "DataTypeClamp", "location": "imgui_internal:2002", "namespace": "ImGui", @@ -12307,7 +12307,7 @@ "argsoriginal": "(char* buf,int buf_size,ImGuiDataType data_type,const void* p_data,const char* format)", "call_args": "(buf,buf_size,data_type,p_data,format)", "cimguiname": "igDataTypeFormatString", - "defaults": [], + "defaults": {}, "funcname": "DataTypeFormatString", "location": "imgui_internal:1999", "namespace": "ImGui", @@ -12329,7 +12329,7 @@ "argsoriginal": "(ImGuiDataType data_type)", "call_args": "(data_type)", "cimguiname": "igDataTypeGetInfo", - "defaults": [], + "defaults": {}, "funcname": "DataTypeGetInfo", "location": "imgui_internal:1998", "namespace": "ImGui", @@ -12375,7 +12375,7 @@ "argsoriginal": "(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx)", "call_args": "(version_str,sz_io,sz_style,sz_vec2,sz_vec4,sz_drawvert,sz_drawidx)", "cimguiname": "igDebugCheckVersionAndDataLayout", - "defaults": [], + "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", "location": "imgui:778", "namespace": "ImGui", @@ -12416,7 +12416,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igDebugStartItemPicker", - "defaults": [], + "defaults": {}, "funcname": "DebugStartItemPicker", "location": "imgui_internal:2029", "namespace": "ImGui", @@ -12490,7 +12490,7 @@ "argsoriginal": "(ImGuiID id,ImGuiDataType data_type,void* p_v,float v_speed,const void* p_min,const void* p_max,const char* format,ImGuiSliderFlags flags)", "call_args": "(id,data_type,p_v,v_speed,p_min,p_max,format,flags)", "cimguiname": "igDragBehavior", - "defaults": [], + "defaults": {}, "funcname": "DragBehavior", "location": "imgui_internal:1981", "namespace": "ImGui", @@ -13164,7 +13164,7 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igDummy", - "defaults": [], + "defaults": {}, "funcname": "Dummy", "location": "imgui:386", "namespace": "ImGui", @@ -13181,7 +13181,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEnd", - "defaults": [], + "defaults": {}, "funcname": "End", "location": "imgui:285", "namespace": "ImGui", @@ -13198,7 +13198,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndChild", - "defaults": [], + "defaults": {}, "funcname": "EndChild", "location": "imgui:294", "namespace": "ImGui", @@ -13215,7 +13215,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndChildFrame", - "defaults": [], + "defaults": {}, "funcname": "EndChildFrame", "location": "imgui:723", "namespace": "ImGui", @@ -13232,7 +13232,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndColumns", - "defaults": [], + "defaults": {}, "funcname": "EndColumns", "location": "imgui_internal:1915", "namespace": "ImGui", @@ -13249,7 +13249,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndCombo", - "defaults": [], + "defaults": {}, "funcname": "EndCombo", "location": "imgui:457", "namespace": "ImGui", @@ -13266,7 +13266,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndDragDropSource", - "defaults": [], + "defaults": {}, "funcname": "EndDragDropSource", "location": "imgui:674", "namespace": "ImGui", @@ -13283,7 +13283,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndDragDropTarget", - "defaults": [], + "defaults": {}, "funcname": "EndDragDropTarget", "location": "imgui:677", "namespace": "ImGui", @@ -13300,7 +13300,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndFrame", - "defaults": [], + "defaults": {}, "funcname": "EndFrame", "location": "imgui:253", "namespace": "ImGui", @@ -13317,7 +13317,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndGroup", - "defaults": [], + "defaults": {}, "funcname": "EndGroup", "location": "imgui:390", "namespace": "ImGui", @@ -13334,7 +13334,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMainMenuBar", - "defaults": [], + "defaults": {}, "funcname": "EndMainMenuBar", "location": "imgui:589", "namespace": "ImGui", @@ -13351,7 +13351,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMenu", - "defaults": [], + "defaults": {}, "funcname": "EndMenu", "location": "imgui:591", "namespace": "ImGui", @@ -13368,7 +13368,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndMenuBar", - "defaults": [], + "defaults": {}, "funcname": "EndMenuBar", "location": "imgui:587", "namespace": "ImGui", @@ -13385,7 +13385,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndPopup", - "defaults": [], + "defaults": {}, "funcname": "EndPopup", "location": "imgui:615", "namespace": "ImGui", @@ -13402,7 +13402,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTabBar", - "defaults": [], + "defaults": {}, "funcname": "EndTabBar", "location": "imgui:655", "namespace": "ImGui", @@ -13419,7 +13419,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTabItem", - "defaults": [], + "defaults": {}, "funcname": "EndTabItem", "location": "imgui:657", "namespace": "ImGui", @@ -13436,7 +13436,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igEndTooltip", - "defaults": [], + "defaults": {}, "funcname": "EndTooltip", "location": "imgui:598", "namespace": "ImGui", @@ -13462,7 +13462,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igFindBestWindowPosForPopup", - "defaults": [], + "defaults": {}, "funcname": "FindBestWindowPosForPopup", "location": "imgui_internal:1873", "namespace": "ImGui", @@ -13538,7 +13538,7 @@ "argsoriginal": "(ImGuiWindow* window,ImGuiID id)", "call_args": "(window,id)", "cimguiname": "igFindOrCreateColumns", - "defaults": [], + "defaults": {}, "funcname": "FindOrCreateColumns", "location": "imgui_internal:1920", "namespace": "ImGui", @@ -13560,7 +13560,7 @@ "argsoriginal": "(const char* name)", "call_args": "(name)", "cimguiname": "igFindOrCreateWindowSettings", - "defaults": [], + "defaults": {}, "funcname": "FindOrCreateWindowSettings", "location": "imgui_internal:1817", "namespace": "ImGui", @@ -13610,7 +13610,7 @@ "argsoriginal": "(const char* type_name)", "call_args": "(type_name)", "cimguiname": "igFindSettingsHandler", - "defaults": [], + "defaults": {}, "funcname": "FindSettingsHandler", "location": "imgui_internal:1818", "namespace": "ImGui", @@ -13632,7 +13632,7 @@ "argsoriginal": "(ImGuiID id)", "call_args": "(id)", "cimguiname": "igFindWindowByID", - "defaults": [], + "defaults": {}, "funcname": "FindWindowByID", "location": "imgui_internal:1777", "namespace": "ImGui", @@ -13654,7 +13654,7 @@ "argsoriginal": "(const char* name)", "call_args": "(name)", "cimguiname": "igFindWindowByName", - "defaults": [], + "defaults": {}, "funcname": "FindWindowByName", "location": "imgui_internal:1778", "namespace": "ImGui", @@ -13676,7 +13676,7 @@ "argsoriginal": "(ImGuiID id)", "call_args": "(id)", "cimguiname": "igFindWindowSettings", - "defaults": [], + "defaults": {}, "funcname": "FindWindowSettings", "location": "imgui_internal:1816", "namespace": "ImGui", @@ -13702,7 +13702,7 @@ "argsoriginal": "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window)", "call_args": "(under_this_window,ignore_window)", "cimguiname": "igFocusTopMostWindowUnderOne", - "defaults": [], + "defaults": {}, "funcname": "FocusTopMostWindowUnderOne", "location": "imgui_internal:1791", "namespace": "ImGui", @@ -13724,7 +13724,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igFocusWindow", - "defaults": [], + "defaults": {}, "funcname": "FocusWindow", "location": "imgui_internal:1790", "namespace": "ImGui", @@ -13750,7 +13750,7 @@ "argsoriginal": "(ImGuiWindow* window,ImGuiID id)", "call_args": "(window,id)", "cimguiname": "igFocusableItemRegister", - "defaults": [], + "defaults": {}, "funcname": "FocusableItemRegister", "location": "imgui_internal:1849", "namespace": "ImGui", @@ -13772,7 +13772,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igFocusableItemUnregister", - "defaults": [], + "defaults": {}, "funcname": "FocusableItemUnregister", "location": "imgui_internal:1850", "namespace": "ImGui", @@ -13794,7 +13794,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igGcAwakeTransientWindowBuffers", - "defaults": [], + "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", "location": "imgui_internal:2025", "namespace": "ImGui", @@ -13816,7 +13816,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igGcCompactTransientWindowBuffers", - "defaults": [], + "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", "location": "imgui_internal:2024", "namespace": "ImGui", @@ -13833,7 +13833,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetActiveID", - "defaults": [], + "defaults": {}, "funcname": "GetActiveID", "location": "imgui_internal:1831", "namespace": "ImGui", @@ -13850,7 +13850,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetBackgroundDrawList", - "defaults": [], + "defaults": {}, "funcname": "GetBackgroundDrawList", "location": "imgui:715", "namespace": "ImGui", @@ -13867,7 +13867,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetClipboardText", - "defaults": [], + "defaults": {}, "funcname": "GetClipboardText", "location": "imgui:766", "namespace": "ImGui", @@ -13915,7 +13915,7 @@ "argsoriginal": "(const ImVec4& col)", "call_args": "(col)", "cimguiname": "igGetColorU32", - "defaults": [], + "defaults": {}, "funcname": "GetColorU32", "location": "imgui:360", "namespace": "ImGui", @@ -13935,7 +13935,7 @@ "argsoriginal": "(ImU32 col)", "call_args": "(col)", "cimguiname": "igGetColorU32", - "defaults": [], + "defaults": {}, "funcname": "GetColorU32", "location": "imgui:361", "namespace": "ImGui", @@ -13952,7 +13952,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetColumnIndex", - "defaults": [], + "defaults": {}, "funcname": "GetColumnIndex", "location": "imgui:646", "namespace": "ImGui", @@ -13978,7 +13978,7 @@ "argsoriginal": "(const ImGuiColumns* columns,float offset)", "call_args": "(columns,offset)", "cimguiname": "igGetColumnNormFromOffset", - "defaults": [], + "defaults": {}, "funcname": "GetColumnNormFromOffset", "location": "imgui_internal:1922", "namespace": "ImGui", @@ -14028,7 +14028,7 @@ "argsoriginal": "(const ImGuiColumns* columns,float offset_norm)", "call_args": "(columns,offset_norm)", "cimguiname": "igGetColumnOffsetFromNorm", - "defaults": [], + "defaults": {}, "funcname": "GetColumnOffsetFromNorm", "location": "imgui_internal:1921", "namespace": "ImGui", @@ -14069,7 +14069,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetColumnsCount", - "defaults": [], + "defaults": {}, "funcname": "GetColumnsCount", "location": "imgui:651", "namespace": "ImGui", @@ -14095,7 +14095,7 @@ "argsoriginal": "(const char* str_id,int count)", "call_args": "(str_id,count)", "cimguiname": "igGetColumnsID", - "defaults": [], + "defaults": {}, "funcname": "GetColumnsID", "location": "imgui_internal:1919", "namespace": "ImGui", @@ -14117,7 +14117,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionAvail", - "defaults": [], + "defaults": {}, "funcname": "GetContentRegionAvail", "location": "imgui:329", "namespace": "ImGui", @@ -14140,7 +14140,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionMax", - "defaults": [], + "defaults": {}, "funcname": "GetContentRegionMax", "location": "imgui:328", "namespace": "ImGui", @@ -14163,7 +14163,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetContentRegionMaxAbs", - "defaults": [], + "defaults": {}, "funcname": "GetContentRegionMaxAbs", "location": "imgui_internal:1857", "namespace": "ImGui", @@ -14181,7 +14181,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCurrentContext", - "defaults": [], + "defaults": {}, "funcname": "GetCurrentContext", "location": "imgui:246", "namespace": "ImGui", @@ -14198,7 +14198,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCurrentWindow", - "defaults": [], + "defaults": {}, "funcname": "GetCurrentWindow", "location": "imgui_internal:1776", "namespace": "ImGui", @@ -14215,7 +14215,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCurrentWindowRead", - "defaults": [], + "defaults": {}, "funcname": "GetCurrentWindowRead", "location": "imgui_internal:1775", "namespace": "ImGui", @@ -14237,7 +14237,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPos", - "defaults": [], + "defaults": {}, "funcname": "GetCursorPos", "location": "imgui:391", "namespace": "ImGui", @@ -14255,7 +14255,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPosX", - "defaults": [], + "defaults": {}, "funcname": "GetCursorPosX", "location": "imgui:392", "namespace": "ImGui", @@ -14272,7 +14272,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorPosY", - "defaults": [], + "defaults": {}, "funcname": "GetCursorPosY", "location": "imgui:393", "namespace": "ImGui", @@ -14294,7 +14294,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorScreenPos", - "defaults": [], + "defaults": {}, "funcname": "GetCursorScreenPos", "location": "imgui:398", "namespace": "ImGui", @@ -14317,7 +14317,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetCursorStartPos", - "defaults": [], + "defaults": {}, "funcname": "GetCursorStartPos", "location": "imgui:397", "namespace": "ImGui", @@ -14335,7 +14335,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDefaultFont", - "defaults": [], + "defaults": {}, "funcname": "GetDefaultFont", "location": "imgui_internal:1798", "namespace": "ImGui", @@ -14352,7 +14352,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDragDropPayload", - "defaults": [], + "defaults": {}, "funcname": "GetDragDropPayload", "location": "imgui:678", "namespace": "ImGui", @@ -14369,7 +14369,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDrawData", - "defaults": [], + "defaults": {}, "funcname": "GetDrawData", "location": "imgui:255", "namespace": "ImGui", @@ -14386,7 +14386,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetDrawListSharedData", - "defaults": [], + "defaults": {}, "funcname": "GetDrawListSharedData", "location": "imgui:717", "namespace": "ImGui", @@ -14403,7 +14403,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFocusID", - "defaults": [], + "defaults": {}, "funcname": "GetFocusID", "location": "imgui_internal:1832", "namespace": "ImGui", @@ -14420,7 +14420,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFocusScopeID", - "defaults": [], + "defaults": {}, "funcname": "GetFocusScopeID", "location": "imgui_internal:1894", "namespace": "ImGui", @@ -14437,7 +14437,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFont", - "defaults": [], + "defaults": {}, "funcname": "GetFont", "location": "imgui:356", "namespace": "ImGui", @@ -14454,7 +14454,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontSize", - "defaults": [], + "defaults": {}, "funcname": "GetFontSize", "location": "imgui:357", "namespace": "ImGui", @@ -14476,7 +14476,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFontTexUvWhitePixel", - "defaults": [], + "defaults": {}, "funcname": "GetFontTexUvWhitePixel", "location": "imgui:358", "namespace": "ImGui", @@ -14494,7 +14494,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetForegroundDrawList", - "defaults": [], + "defaults": {}, "funcname": "GetForegroundDrawList", "location": "imgui:716", "namespace": "ImGui", @@ -14514,7 +14514,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igGetForegroundDrawList", - "defaults": [], + "defaults": {}, "funcname": "GetForegroundDrawList", "location": "imgui_internal:1799", "namespace": "ImGui", @@ -14531,7 +14531,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameCount", - "defaults": [], + "defaults": {}, "funcname": "GetFrameCount", "location": "imgui:714", "namespace": "ImGui", @@ -14548,7 +14548,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameHeight", - "defaults": [], + "defaults": {}, "funcname": "GetFrameHeight", "location": "imgui:403", "namespace": "ImGui", @@ -14565,7 +14565,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetFrameHeightWithSpacing", - "defaults": [], + "defaults": {}, "funcname": "GetFrameHeightWithSpacing", "location": "imgui:404", "namespace": "ImGui", @@ -14582,7 +14582,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetHoveredID", - "defaults": [], + "defaults": {}, "funcname": "GetHoveredID", "location": "imgui_internal:1836", "namespace": "ImGui", @@ -14604,7 +14604,7 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igGetID", - "defaults": [], + "defaults": {}, "funcname": "GetID", "location": "imgui:418", "namespace": "ImGui", @@ -14628,7 +14628,7 @@ "argsoriginal": "(const char* str_id_begin,const char* str_id_end)", "call_args": "(str_id_begin,str_id_end)", "cimguiname": "igGetID", - "defaults": [], + "defaults": {}, "funcname": "GetID", "location": "imgui:419", "namespace": "ImGui", @@ -14648,7 +14648,7 @@ "argsoriginal": "(const void* ptr_id)", "call_args": "(ptr_id)", "cimguiname": "igGetID", - "defaults": [], + "defaults": {}, "funcname": "GetID", "location": "imgui:420", "namespace": "ImGui", @@ -14665,7 +14665,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetIO", - "defaults": [], + "defaults": {}, "funcname": "GetIO", "location": "imgui:250", "namespace": "ImGui", @@ -14688,7 +14688,7 @@ "argsoriginal": "(ImGuiID id)", "call_args": "(id)", "cimguiname": "igGetInputTextState", - "defaults": [], + "defaults": {}, "funcname": "GetInputTextState", "location": "imgui_internal:2009", "namespace": "ImGui", @@ -14705,7 +14705,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemID", - "defaults": [], + "defaults": {}, "funcname": "GetItemID", "location": "imgui_internal:1829", "namespace": "ImGui", @@ -14727,7 +14727,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMax", - "defaults": [], + "defaults": {}, "funcname": "GetItemRectMax", "location": "imgui:706", "namespace": "ImGui", @@ -14750,7 +14750,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectMin", - "defaults": [], + "defaults": {}, "funcname": "GetItemRectMin", "location": "imgui:705", "namespace": "ImGui", @@ -14773,7 +14773,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemRectSize", - "defaults": [], + "defaults": {}, "funcname": "GetItemRectSize", "location": "imgui:707", "namespace": "ImGui", @@ -14791,7 +14791,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetItemStatusFlags", - "defaults": [], + "defaults": {}, "funcname": "GetItemStatusFlags", "location": "imgui_internal:1830", "namespace": "ImGui", @@ -14813,7 +14813,7 @@ "argsoriginal": "(ImGuiKey imgui_key)", "call_args": "(imgui_key)", "cimguiname": "igGetKeyIndex", - "defaults": [], + "defaults": {}, "funcname": "GetKeyIndex", "location": "imgui:737", "namespace": "ImGui", @@ -14843,7 +14843,7 @@ "argsoriginal": "(int key_index,float repeat_delay,float rate)", "call_args": "(key_index,repeat_delay,rate)", "cimguiname": "igGetKeyPressedAmount", - "defaults": [], + "defaults": {}, "funcname": "GetKeyPressedAmount", "location": "imgui:741", "namespace": "ImGui", @@ -14860,7 +14860,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMergedKeyModFlags", - "defaults": [], + "defaults": {}, "funcname": "GetMergedKeyModFlags", "location": "imgui_internal:1905", "namespace": "ImGui", @@ -14877,7 +14877,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMouseCursor", - "defaults": [], + "defaults": {}, "funcname": "GetMouseCursor", "location": "imgui:760", "namespace": "ImGui", @@ -14933,7 +14933,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePos", - "defaults": [], + "defaults": {}, "funcname": "GetMousePos", "location": "imgui:755", "namespace": "ImGui", @@ -14956,7 +14956,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetMousePosOnOpeningCurrentPopup", - "defaults": [], + "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", "location": "imgui:756", "namespace": "ImGui", @@ -14983,7 +14983,7 @@ "argsoriginal": "(ImGuiNavInput n,ImGuiInputReadMode mode)", "call_args": "(n,mode)", "cimguiname": "igGetNavInputAmount", - "defaults": [], + "defaults": {}, "funcname": "GetNavInputAmount", "location": "imgui_internal:1882", "namespace": "ImGui", @@ -15042,7 +15042,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollMaxX", - "defaults": [], + "defaults": {}, "funcname": "GetScrollMaxX", "location": "imgui:337", "namespace": "ImGui", @@ -15059,7 +15059,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollMaxY", - "defaults": [], + "defaults": {}, "funcname": "GetScrollMaxY", "location": "imgui:338", "namespace": "ImGui", @@ -15076,7 +15076,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollX", - "defaults": [], + "defaults": {}, "funcname": "GetScrollX", "location": "imgui:335", "namespace": "ImGui", @@ -15093,7 +15093,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetScrollY", - "defaults": [], + "defaults": {}, "funcname": "GetScrollY", "location": "imgui:336", "namespace": "ImGui", @@ -15110,7 +15110,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetStateStorage", - "defaults": [], + "defaults": {}, "funcname": "GetStateStorage", "location": "imgui:720", "namespace": "ImGui", @@ -15127,7 +15127,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetStyle", - "defaults": [], + "defaults": {}, "funcname": "GetStyle", "location": "imgui:251", "namespace": "ImGui", @@ -15150,7 +15150,7 @@ "argsoriginal": "(ImGuiCol idx)", "call_args": "(idx)", "cimguiname": "igGetStyleColorName", - "defaults": [], + "defaults": {}, "funcname": "GetStyleColorName", "location": "imgui:718", "namespace": "ImGui", @@ -15172,7 +15172,7 @@ "argsoriginal": "(ImGuiCol idx)", "call_args": "(idx)", "cimguiname": "igGetStyleColorVec4", - "defaults": [], + "defaults": {}, "funcname": "GetStyleColorVec4", "location": "imgui:355", "namespace": "ImGui", @@ -15190,7 +15190,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTextLineHeight", - "defaults": [], + "defaults": {}, "funcname": "GetTextLineHeight", "location": "imgui:401", "namespace": "ImGui", @@ -15207,7 +15207,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTextLineHeightWithSpacing", - "defaults": [], + "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", "location": "imgui:402", "namespace": "ImGui", @@ -15224,7 +15224,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTime", - "defaults": [], + "defaults": {}, "funcname": "GetTime", "location": "imgui:713", "namespace": "ImGui", @@ -15241,7 +15241,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTopMostPopupModal", - "defaults": [], + "defaults": {}, "funcname": "GetTopMostPopupModal", "location": "imgui_internal:1872", "namespace": "ImGui", @@ -15258,7 +15258,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetTreeNodeToLabelSpacing", - "defaults": [], + "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", "location": "imgui:550", "namespace": "ImGui", @@ -15275,7 +15275,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetVersion", - "defaults": [], + "defaults": {}, "funcname": "GetVersion", "location": "imgui:265", "namespace": "ImGui", @@ -15301,7 +15301,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igGetWindowAllowedExtentRect", - "defaults": [], + "defaults": {}, "funcname": "GetWindowAllowedExtentRect", "location": "imgui_internal:1783", "namespace": "ImGui", @@ -15324,7 +15324,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMax", - "defaults": [], + "defaults": {}, "funcname": "GetWindowContentRegionMax", "location": "imgui:331", "namespace": "ImGui", @@ -15347,7 +15347,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionMin", - "defaults": [], + "defaults": {}, "funcname": "GetWindowContentRegionMin", "location": "imgui:330", "namespace": "ImGui", @@ -15365,7 +15365,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowContentRegionWidth", - "defaults": [], + "defaults": {}, "funcname": "GetWindowContentRegionWidth", "location": "imgui:332", "namespace": "ImGui", @@ -15382,7 +15382,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowDrawList", - "defaults": [], + "defaults": {}, "funcname": "GetWindowDrawList", "location": "imgui:302", "namespace": "ImGui", @@ -15399,7 +15399,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowHeight", - "defaults": [], + "defaults": {}, "funcname": "GetWindowHeight", "location": "imgui:306", "namespace": "ImGui", @@ -15421,7 +15421,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowPos", - "defaults": [], + "defaults": {}, "funcname": "GetWindowPos", "location": "imgui:303", "namespace": "ImGui", @@ -15448,7 +15448,7 @@ "argsoriginal": "(ImGuiWindow* window,int n)", "call_args": "(window,n)", "cimguiname": "igGetWindowResizeID", - "defaults": [], + "defaults": {}, "funcname": "GetWindowResizeID", "location": "imgui_internal:1976", "namespace": "ImGui", @@ -15474,7 +15474,7 @@ "argsoriginal": "(ImGuiWindow* window,ImGuiAxis axis)", "call_args": "(window,axis)", "cimguiname": "igGetWindowScrollbarID", - "defaults": [], + "defaults": {}, "funcname": "GetWindowScrollbarID", "location": "imgui_internal:1975", "namespace": "ImGui", @@ -15504,7 +15504,7 @@ "argsoriginal": "(ImGuiWindow* window,ImGuiAxis axis)", "call_args": "(window,axis)", "cimguiname": "igGetWindowScrollbarRect", - "defaults": [], + "defaults": {}, "funcname": "GetWindowScrollbarRect", "location": "imgui_internal:1974", "namespace": "ImGui", @@ -15527,7 +15527,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowSize", - "defaults": [], + "defaults": {}, "funcname": "GetWindowSize", "location": "imgui:304", "namespace": "ImGui", @@ -15545,7 +15545,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igGetWindowWidth", - "defaults": [], + "defaults": {}, "funcname": "GetWindowWidth", "location": "imgui:305", "namespace": "ImGui", @@ -15567,7 +15567,7 @@ "argsoriginal": "(float x)", "call_args": "(x)", "cimguiname": "igImAbs", - "defaults": [], + "defaults": {}, "funcname": "ImAbs", "location": "imgui_internal:351", "ov_cimguiname": "igImAbsFloat", @@ -15586,7 +15586,7 @@ "argsoriginal": "(double x)", "call_args": "(x)", "cimguiname": "igImAbs", - "defaults": [], + "defaults": {}, "funcname": "ImAbs", "location": "imgui_internal:352", "ov_cimguiname": "igImAbsdouble", @@ -15611,7 +15611,7 @@ "argsoriginal": "(ImU32 col_a,ImU32 col_b)", "call_args": "(col_a,col_b)", "cimguiname": "igImAlphaBlendColors", - "defaults": [], + "defaults": {}, "funcname": "ImAlphaBlendColors", "location": "imgui_internal:255", "ov_cimguiname": "igImAlphaBlendColors", @@ -15652,7 +15652,7 @@ "argsoriginal": "(const ImVec2& p1,const ImVec2& p2,const ImVec2& p3,const ImVec2& p4,float t)", "call_args": "(p1,p2,p3,p4,t)", "cimguiname": "igImBezierCalc", - "defaults": [], + "defaults": {}, "funcname": "ImBezierCalc", "location": "imgui_internal:385", "nonUDT": 1, @@ -15698,7 +15698,7 @@ "argsoriginal": "(const ImVec2& p1,const ImVec2& p2,const ImVec2& p3,const ImVec2& p4,const ImVec2& p,int num_segments)", "call_args": "(p1,p2,p3,p4,p,num_segments)", "cimguiname": "igImBezierClosestPoint", - "defaults": [], + "defaults": {}, "funcname": "ImBezierClosestPoint", "location": "imgui_internal:386", "nonUDT": 1, @@ -15744,7 +15744,7 @@ "argsoriginal": "(const ImVec2& p1,const ImVec2& p2,const ImVec2& p3,const ImVec2& p4,const ImVec2& p,float tess_tol)", "call_args": "(p1,p2,p3,p4,p,tess_tol)", "cimguiname": "igImBezierClosestPointCasteljau", - "defaults": [], + "defaults": {}, "funcname": "ImBezierClosestPointCasteljau", "location": "imgui_internal:387", "nonUDT": 1, @@ -15770,7 +15770,7 @@ "argsoriginal": "(ImU32* arr,int n)", "call_args": "(arr,n)", "cimguiname": "igImBitArrayClearBit", - "defaults": [], + "defaults": {}, "funcname": "ImBitArrayClearBit", "location": "imgui_internal:452", "ov_cimguiname": "igImBitArrayClearBit", @@ -15795,7 +15795,7 @@ "argsoriginal": "(ImU32* arr,int n)", "call_args": "(arr,n)", "cimguiname": "igImBitArraySetBit", - "defaults": [], + "defaults": {}, "funcname": "ImBitArraySetBit", "location": "imgui_internal:453", "ov_cimguiname": "igImBitArraySetBit", @@ -15824,7 +15824,7 @@ "argsoriginal": "(ImU32* arr,int n,int n2)", "call_args": "(arr,n,n2)", "cimguiname": "igImBitArraySetBitRange", - "defaults": [], + "defaults": {}, "funcname": "ImBitArraySetBitRange", "location": "imgui_internal:454", "ov_cimguiname": "igImBitArraySetBitRange", @@ -15849,7 +15849,7 @@ "argsoriginal": "(const ImU32* arr,int n)", "call_args": "(arr,n)", "cimguiname": "igImBitArrayTestBit", - "defaults": [], + "defaults": {}, "funcname": "ImBitArrayTestBit", "location": "imgui_internal:451", "ov_cimguiname": "igImBitArrayTestBit", @@ -15870,7 +15870,7 @@ "argsoriginal": "(char c)", "call_args": "(c)", "cimguiname": "igImCharIsBlankA", - "defaults": [], + "defaults": {}, "funcname": "ImCharIsBlankA", "location": "imgui_internal:280", "ov_cimguiname": "igImCharIsBlankA", @@ -15891,7 +15891,7 @@ "argsoriginal": "(unsigned int c)", "call_args": "(c)", "cimguiname": "igImCharIsBlankW", - "defaults": [], + "defaults": {}, "funcname": "ImCharIsBlankW", "location": "imgui_internal:281", "ov_cimguiname": "igImCharIsBlankW", @@ -15924,7 +15924,7 @@ "argsoriginal": "(const ImVec2& v,const ImVec2& mn,ImVec2 mx)", "call_args": "(v,mn,mx)", "cimguiname": "igImClamp", - "defaults": [], + "defaults": {}, "funcname": "ImClamp", "location": "imgui_internal:368", "nonUDT": 1, @@ -15950,7 +15950,7 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b)", "call_args": "(a,b)", "cimguiname": "igImDot", - "defaults": [], + "defaults": {}, "funcname": "ImDot", "location": "imgui_internal:379", "ov_cimguiname": "igImDot", @@ -15971,7 +15971,7 @@ "argsoriginal": "(ImFileHandle file)", "call_args": "(file)", "cimguiname": "igImFileClose", - "defaults": [], + "defaults": {}, "funcname": "ImFileClose", "location": "imgui_internal:325", "ov_cimguiname": "igImFileClose", @@ -15992,7 +15992,7 @@ "argsoriginal": "(ImFileHandle file)", "call_args": "(file)", "cimguiname": "igImFileGetSize", - "defaults": [], + "defaults": {}, "funcname": "ImFileGetSize", "location": "imgui_internal:326", "ov_cimguiname": "igImFileGetSize", @@ -16053,7 +16053,7 @@ "argsoriginal": "(const char* filename,const char* mode)", "call_args": "(filename,mode)", "cimguiname": "igImFileOpen", - "defaults": [], + "defaults": {}, "funcname": "ImFileOpen", "location": "imgui_internal:324", "ov_cimguiname": "igImFileOpen", @@ -16086,7 +16086,7 @@ "argsoriginal": "(void* data,ImU64 size,ImU64 count,ImFileHandle file)", "call_args": "(data,size,count,file)", "cimguiname": "igImFileRead", - "defaults": [], + "defaults": {}, "funcname": "ImFileRead", "location": "imgui_internal:327", "ov_cimguiname": "igImFileRead", @@ -16119,7 +16119,7 @@ "argsoriginal": "(const void* data,ImU64 size,ImU64 count,ImFileHandle file)", "call_args": "(data,size,count,file)", "cimguiname": "igImFileWrite", - "defaults": [], + "defaults": {}, "funcname": "ImFileWrite", "location": "imgui_internal:328", "ov_cimguiname": "igImFileWrite", @@ -16140,7 +16140,7 @@ "argsoriginal": "(float f)", "call_args": "(f)", "cimguiname": "igImFloor", - "defaults": [], + "defaults": {}, "funcname": "ImFloor", "location": "imgui_internal:376", "ov_cimguiname": "igImFloorFloat", @@ -16163,7 +16163,7 @@ "argsoriginal": "(const ImVec2& v)", "call_args": "(v)", "cimguiname": "igImFloor", - "defaults": [], + "defaults": {}, "funcname": "ImFloor", "location": "imgui_internal:377", "nonUDT": 1, @@ -16185,7 +16185,7 @@ "argsoriginal": "(ImFontAtlas* atlas)", "call_args": "(atlas)", "cimguiname": "igImFontAtlasBuildFinish", - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlasBuildFinish", "location": "imgui_internal:2038", "ov_cimguiname": "igImFontAtlasBuildFinish", @@ -16206,7 +16206,7 @@ "argsoriginal": "(ImFontAtlas* atlas)", "call_args": "(atlas)", "cimguiname": "igImFontAtlasBuildInit", - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlasBuildInit", "location": "imgui_internal:2035", "ov_cimguiname": "igImFontAtlasBuildInit", @@ -16231,7 +16231,7 @@ "argsoriginal": "(unsigned char out_table[256],float in_multiply_factor)", "call_args": "(out_table,in_multiply_factor)", "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", "location": "imgui_internal:2040", "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", @@ -16276,7 +16276,7 @@ "argsoriginal": "(const unsigned char table[256],unsigned char* pixels,int x,int y,int w,int h,int stride)", "call_args": "(table,pixels,x,y,w,h,stride)", "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", "location": "imgui_internal:2041", "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", @@ -16301,7 +16301,7 @@ "argsoriginal": "(ImFontAtlas* atlas,void* stbrp_context_opaque)", "call_args": "(atlas,stbrp_context_opaque)", "cimguiname": "igImFontAtlasBuildPackCustomRects", - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlasBuildPackCustomRects", "location": "imgui_internal:2037", "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", @@ -16350,7 +16350,7 @@ "argsoriginal": "(ImFontAtlas* atlas,int atlas_x,int atlas_y,int w,int h,const char* in_str,char in_marker_char,unsigned char in_marker_pixel_value)", "call_args": "(atlas,atlas_x,atlas_y,w,h,in_str,in_marker_char,in_marker_pixel_value)", "cimguiname": "igImFontAtlasBuildRender1bppRectFromString", - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlasBuildRender1bppRectFromString", "location": "imgui_internal:2039", "ov_cimguiname": "igImFontAtlasBuildRender1bppRectFromString", @@ -16387,7 +16387,7 @@ "argsoriginal": "(ImFontAtlas* atlas,ImFont* font,ImFontConfig* font_config,float ascent,float descent)", "call_args": "(atlas,font,font_config,ascent,descent)", "cimguiname": "igImFontAtlasBuildSetupFont", - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlasBuildSetupFont", "location": "imgui_internal:2036", "ov_cimguiname": "igImFontAtlasBuildSetupFont", @@ -16408,7 +16408,7 @@ "argsoriginal": "(ImFontAtlas* atlas)", "call_args": "(atlas)", "cimguiname": "igImFontAtlasBuildWithStbTruetype", - "defaults": [], + "defaults": {}, "funcname": "ImFontAtlasBuildWithStbTruetype", "location": "imgui_internal:2034", "ov_cimguiname": "igImFontAtlasBuildWithStbTruetype", @@ -16441,7 +16441,7 @@ "argsoriginal": "(char* buf,size_t buf_size,const char* fmt,...)", "call_args": "(buf,buf_size,fmt,...)", "cimguiname": "igImFormatString", - "defaults": [], + "defaults": {}, "funcname": "ImFormatString", "isvararg": "...)", "location": "imgui_internal:274", @@ -16475,7 +16475,7 @@ "argsoriginal": "(char* buf,size_t buf_size,const char* fmt,va_list args)", "call_args": "(buf,buf_size,fmt,args)", "cimguiname": "igImFormatStringV", - "defaults": [], + "defaults": {}, "funcname": "ImFormatStringV", "location": "imgui_internal:275", "ov_cimguiname": "igImFormatStringV", @@ -16500,7 +16500,7 @@ "argsoriginal": "(float dx,float dy)", "call_args": "(dx,dy)", "cimguiname": "igImGetDirQuadrantFromDelta", - "defaults": [], + "defaults": {}, "funcname": "ImGetDirQuadrantFromDelta", "location": "imgui_internal:393", "ov_cimguiname": "igImGetDirQuadrantFromDelta", @@ -16588,7 +16588,7 @@ "argsoriginal": "(const ImVec2& lhs,float fail_value)", "call_args": "(lhs,fail_value)", "cimguiname": "igImInvLength", - "defaults": [], + "defaults": {}, "funcname": "ImInvLength", "location": "imgui_internal:375", "ov_cimguiname": "igImInvLength", @@ -16609,7 +16609,7 @@ "argsoriginal": "(int v)", "call_args": "(v)", "cimguiname": "igImIsPowerOfTwo", - "defaults": [], + "defaults": {}, "funcname": "ImIsPowerOfTwo", "location": "imgui_internal:258", "ov_cimguiname": "igImIsPowerOfTwo", @@ -16630,7 +16630,7 @@ "argsoriginal": "(const ImVec2& lhs)", "call_args": "(lhs)", "cimguiname": "igImLengthSqr", - "defaults": [], + "defaults": {}, "funcname": "ImLengthSqr", "location": "imgui_internal:373", "ov_cimguiname": "igImLengthSqrVec2", @@ -16649,7 +16649,7 @@ "argsoriginal": "(const ImVec4& lhs)", "call_args": "(lhs)", "cimguiname": "igImLengthSqr", - "defaults": [], + "defaults": {}, "funcname": "ImLengthSqr", "location": "imgui_internal:374", "ov_cimguiname": "igImLengthSqrVec4", @@ -16682,7 +16682,7 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,float t)", "call_args": "(a,b,t)", "cimguiname": "igImLerp", - "defaults": [], + "defaults": {}, "funcname": "ImLerp", "location": "imgui_internal:369", "nonUDT": 1, @@ -16714,7 +16714,7 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& t)", "call_args": "(a,b,t)", "cimguiname": "igImLerp", - "defaults": [], + "defaults": {}, "funcname": "ImLerp", "location": "imgui_internal:370", "nonUDT": 1, @@ -16746,7 +16746,7 @@ "argsoriginal": "(const ImVec4& a,const ImVec4& b,float t)", "call_args": "(a,b,t)", "cimguiname": "igImLerp", - "defaults": [], + "defaults": {}, "funcname": "ImLerp", "location": "imgui_internal:371", "nonUDT": 1, @@ -16780,7 +16780,7 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& p)", "call_args": "(a,b,p)", "cimguiname": "igImLineClosestPoint", - "defaults": [], + "defaults": {}, "funcname": "ImLineClosestPoint", "location": "imgui_internal:388", "nonUDT": 1, @@ -16810,7 +16810,7 @@ "argsoriginal": "(float current,float target,float speed)", "call_args": "(current,target,speed)", "cimguiname": "igImLinearSweep", - "defaults": [], + "defaults": {}, "funcname": "ImLinearSweep", "location": "imgui_internal:381", "ov_cimguiname": "igImLinearSweep", @@ -16831,7 +16831,7 @@ "argsoriginal": "(float x)", "call_args": "(x)", "cimguiname": "igImLog", - "defaults": [], + "defaults": {}, "funcname": "ImLog", "location": "imgui_internal:349", "ov_cimguiname": "igImLogFloat", @@ -16850,7 +16850,7 @@ "argsoriginal": "(double x)", "call_args": "(x)", "cimguiname": "igImLog", - "defaults": [], + "defaults": {}, "funcname": "ImLog", "location": "imgui_internal:350", "ov_cimguiname": "igImLogdouble", @@ -16879,7 +16879,7 @@ "argsoriginal": "(const ImVec2& lhs,const ImVec2& rhs)", "call_args": "(lhs,rhs)", "cimguiname": "igImMax", - "defaults": [], + "defaults": {}, "funcname": "ImMax", "location": "imgui_internal:367", "nonUDT": 1, @@ -16909,7 +16909,7 @@ "argsoriginal": "(const ImVec2& lhs,const ImVec2& rhs)", "call_args": "(lhs,rhs)", "cimguiname": "igImMin", - "defaults": [], + "defaults": {}, "funcname": "ImMin", "location": "imgui_internal:366", "nonUDT": 1, @@ -16935,7 +16935,7 @@ "argsoriginal": "(int a,int b)", "call_args": "(a,b)", "cimguiname": "igImModPositive", - "defaults": [], + "defaults": {}, "funcname": "ImModPositive", "location": "imgui_internal:378", "ov_cimguiname": "igImModPositive", @@ -16964,7 +16964,7 @@ "argsoriginal": "(const ImVec2& lhs,const ImVec2& rhs)", "call_args": "(lhs,rhs)", "cimguiname": "igImMul", - "defaults": [], + "defaults": {}, "funcname": "ImMul", "location": "imgui_internal:382", "nonUDT": 1, @@ -16986,7 +16986,7 @@ "argsoriginal": "(const char* format)", "call_args": "(format)", "cimguiname": "igImParseFormatFindEnd", - "defaults": [], + "defaults": {}, "funcname": "ImParseFormatFindEnd", "location": "imgui_internal:277", "ov_cimguiname": "igImParseFormatFindEnd", @@ -17007,7 +17007,7 @@ "argsoriginal": "(const char* format)", "call_args": "(format)", "cimguiname": "igImParseFormatFindStart", - "defaults": [], + "defaults": {}, "funcname": "ImParseFormatFindStart", "location": "imgui_internal:276", "ov_cimguiname": "igImParseFormatFindStart", @@ -17032,7 +17032,7 @@ "argsoriginal": "(const char* format,int default_value)", "call_args": "(format,default_value)", "cimguiname": "igImParseFormatPrecision", - "defaults": [], + "defaults": {}, "funcname": "ImParseFormatPrecision", "location": "imgui_internal:279", "ov_cimguiname": "igImParseFormatPrecision", @@ -17061,7 +17061,7 @@ "argsoriginal": "(const char* format,char* buf,size_t buf_size)", "call_args": "(format,buf,buf_size)", "cimguiname": "igImParseFormatTrimDecorations", - "defaults": [], + "defaults": {}, "funcname": "ImParseFormatTrimDecorations", "location": "imgui_internal:278", "ov_cimguiname": "igImParseFormatTrimDecorations", @@ -17086,7 +17086,7 @@ "argsoriginal": "(float x,float y)", "call_args": "(x,y)", "cimguiname": "igImPow", - "defaults": [], + "defaults": {}, "funcname": "ImPow", "location": "imgui_internal:347", "ov_cimguiname": "igImPowFloat", @@ -17109,7 +17109,7 @@ "argsoriginal": "(double x,double y)", "call_args": "(x,y)", "cimguiname": "igImPow", - "defaults": [], + "defaults": {}, "funcname": "ImPow", "location": "imgui_internal:348", "ov_cimguiname": "igImPowdouble", @@ -17142,7 +17142,7 @@ "argsoriginal": "(const ImVec2& v,float cos_a,float sin_a)", "call_args": "(v,cos_a,sin_a)", "cimguiname": "igImRotate", - "defaults": [], + "defaults": {}, "funcname": "ImRotate", "location": "imgui_internal:380", "nonUDT": 1, @@ -17164,7 +17164,7 @@ "argsoriginal": "(float f)", "call_args": "(f)", "cimguiname": "igImSaturate", - "defaults": [], + "defaults": {}, "funcname": "ImSaturate", "location": "imgui_internal:372", "ov_cimguiname": "igImSaturate", @@ -17185,7 +17185,7 @@ "argsoriginal": "(float x)", "call_args": "(x)", "cimguiname": "igImSign", - "defaults": [], + "defaults": {}, "funcname": "ImSign", "location": "imgui_internal:353", "ov_cimguiname": "igImSignFloat", @@ -17204,7 +17204,7 @@ "argsoriginal": "(double x)", "call_args": "(x)", "cimguiname": "igImSign", - "defaults": [], + "defaults": {}, "funcname": "ImSign", "location": "imgui_internal:354", "ov_cimguiname": "igImSigndouble", @@ -17225,7 +17225,7 @@ "argsoriginal": "(const char* str)", "call_args": "(str)", "cimguiname": "igImStrSkipBlank", - "defaults": [], + "defaults": {}, "funcname": "ImStrSkipBlank", "location": "imgui_internal:273", "ov_cimguiname": "igImStrSkipBlank", @@ -17246,7 +17246,7 @@ "argsoriginal": "(char* str)", "call_args": "(str)", "cimguiname": "igImStrTrimBlanks", - "defaults": [], + "defaults": {}, "funcname": "ImStrTrimBlanks", "location": "imgui_internal:272", "ov_cimguiname": "igImStrTrimBlanks", @@ -17271,7 +17271,7 @@ "argsoriginal": "(const ImWchar* buf_mid_line,const ImWchar* buf_begin)", "call_args": "(buf_mid_line,buf_begin)", "cimguiname": "igImStrbolW", - "defaults": [], + "defaults": {}, "funcname": "ImStrbolW", "location": "imgui_internal:270", "ov_cimguiname": "igImStrbolW", @@ -17300,7 +17300,7 @@ "argsoriginal": "(const char* str_begin,const char* str_end,char c)", "call_args": "(str_begin,str_end,c)", "cimguiname": "igImStrchrRange", - "defaults": [], + "defaults": {}, "funcname": "ImStrchrRange", "location": "imgui_internal:267", "ov_cimguiname": "igImStrchrRange", @@ -17321,7 +17321,7 @@ "argsoriginal": "(const char* str)", "call_args": "(str)", "cimguiname": "igImStrdup", - "defaults": [], + "defaults": {}, "funcname": "ImStrdup", "location": "imgui_internal:265", "ov_cimguiname": "igImStrdup", @@ -17350,7 +17350,7 @@ "argsoriginal": "(char* dst,size_t* p_dst_size,const char* str)", "call_args": "(dst,p_dst_size,str)", "cimguiname": "igImStrdupcpy", - "defaults": [], + "defaults": {}, "funcname": "ImStrdupcpy", "location": "imgui_internal:266", "ov_cimguiname": "igImStrdupcpy", @@ -17375,7 +17375,7 @@ "argsoriginal": "(const char* str,const char* str_end)", "call_args": "(str,str_end)", "cimguiname": "igImStreolRange", - "defaults": [], + "defaults": {}, "funcname": "ImStreolRange", "location": "imgui_internal:269", "ov_cimguiname": "igImStreolRange", @@ -17400,7 +17400,7 @@ "argsoriginal": "(const char* str1,const char* str2)", "call_args": "(str1,str2)", "cimguiname": "igImStricmp", - "defaults": [], + "defaults": {}, "funcname": "ImStricmp", "location": "imgui_internal:262", "ov_cimguiname": "igImStricmp", @@ -17433,7 +17433,7 @@ "argsoriginal": "(const char* haystack,const char* haystack_end,const char* needle,const char* needle_end)", "call_args": "(haystack,haystack_end,needle,needle_end)", "cimguiname": "igImStristr", - "defaults": [], + "defaults": {}, "funcname": "ImStristr", "location": "imgui_internal:271", "ov_cimguiname": "igImStristr", @@ -17454,7 +17454,7 @@ "argsoriginal": "(const ImWchar* str)", "call_args": "(str)", "cimguiname": "igImStrlenW", - "defaults": [], + "defaults": {}, "funcname": "ImStrlenW", "location": "imgui_internal:268", "ov_cimguiname": "igImStrlenW", @@ -17483,7 +17483,7 @@ "argsoriginal": "(char* dst,const char* src,size_t count)", "call_args": "(dst,src,count)", "cimguiname": "igImStrncpy", - "defaults": [], + "defaults": {}, "funcname": "ImStrncpy", "location": "imgui_internal:264", "ov_cimguiname": "igImStrncpy", @@ -17512,7 +17512,7 @@ "argsoriginal": "(const char* str1,const char* str2,size_t count)", "call_args": "(str1,str2,count)", "cimguiname": "igImStrnicmp", - "defaults": [], + "defaults": {}, "funcname": "ImStrnicmp", "location": "imgui_internal:263", "ov_cimguiname": "igImStrnicmp", @@ -17541,7 +17541,7 @@ "argsoriginal": "(unsigned int* out_char,const char* in_text,const char* in_text_end)", "call_args": "(out_char,in_text,in_text_end)", "cimguiname": "igImTextCharFromUtf8", - "defaults": [], + "defaults": {}, "funcname": "ImTextCharFromUtf8", "location": "imgui_internal:285", "ov_cimguiname": "igImTextCharFromUtf8", @@ -17566,7 +17566,7 @@ "argsoriginal": "(const char* in_text,const char* in_text_end)", "call_args": "(in_text,in_text_end)", "cimguiname": "igImTextCountCharsFromUtf8", - "defaults": [], + "defaults": {}, "funcname": "ImTextCountCharsFromUtf8", "location": "imgui_internal:287", "ov_cimguiname": "igImTextCountCharsFromUtf8", @@ -17591,7 +17591,7 @@ "argsoriginal": "(const char* in_text,const char* in_text_end)", "call_args": "(in_text,in_text_end)", "cimguiname": "igImTextCountUtf8BytesFromChar", - "defaults": [], + "defaults": {}, "funcname": "ImTextCountUtf8BytesFromChar", "location": "imgui_internal:288", "ov_cimguiname": "igImTextCountUtf8BytesFromChar", @@ -17616,7 +17616,7 @@ "argsoriginal": "(const ImWchar* in_text,const ImWchar* in_text_end)", "call_args": "(in_text,in_text_end)", "cimguiname": "igImTextCountUtf8BytesFromStr", - "defaults": [], + "defaults": {}, "funcname": "ImTextCountUtf8BytesFromStr", "location": "imgui_internal:289", "ov_cimguiname": "igImTextCountUtf8BytesFromStr", @@ -17688,7 +17688,7 @@ "argsoriginal": "(char* buf,int buf_size,const ImWchar* in_text,const ImWchar* in_text_end)", "call_args": "(buf,buf_size,in_text,in_text_end)", "cimguiname": "igImTextStrToUtf8", - "defaults": [], + "defaults": {}, "funcname": "ImTextStrToUtf8", "location": "imgui_internal:284", "ov_cimguiname": "igImTextStrToUtf8", @@ -17717,7 +17717,7 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c)", "call_args": "(a,b,c)", "cimguiname": "igImTriangleArea", - "defaults": [], + "defaults": {}, "funcname": "ImTriangleArea", "location": "imgui_internal:392", "ov_cimguiname": "igImTriangleArea", @@ -17765,7 +17765,7 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& p,float& out_u,float& out_v,float& out_w)", "call_args": "(a,b,c,p,*out_u,*out_v,*out_w)", "cimguiname": "igImTriangleBarycentricCoords", - "defaults": [], + "defaults": {}, "funcname": "ImTriangleBarycentricCoords", "location": "imgui_internal:391", "ov_cimguiname": "igImTriangleBarycentricCoords", @@ -17802,7 +17802,7 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& p)", "call_args": "(a,b,c,p)", "cimguiname": "igImTriangleClosestPoint", - "defaults": [], + "defaults": {}, "funcname": "ImTriangleClosestPoint", "location": "imgui_internal:390", "nonUDT": 1, @@ -17836,7 +17836,7 @@ "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c,const ImVec2& p)", "call_args": "(a,b,c,p)", "cimguiname": "igImTriangleContainsPoint", - "defaults": [], + "defaults": {}, "funcname": "ImTriangleContainsPoint", "location": "imgui_internal:389", "ov_cimguiname": "igImTriangleContainsPoint", @@ -17857,7 +17857,7 @@ "argsoriginal": "(int v)", "call_args": "(v)", "cimguiname": "igImUpperPowerOfTwo", - "defaults": [], + "defaults": {}, "funcname": "ImUpperPowerOfTwo", "location": "imgui_internal:259", "ov_cimguiname": "igImUpperPowerOfTwo", @@ -18005,7 +18005,7 @@ "argsoriginal": "(ImGuiID id,ImTextureID texture_id,const ImVec2& size,const ImVec2& uv0,const ImVec2& uv1,const ImVec2& padding,const ImVec4& bg_col,const ImVec4& tint_col)", "call_args": "(id,texture_id,size,uv0,uv1,padding,bg_col,tint_col)", "cimguiname": "igImageButtonEx", - "defaults": [], + "defaults": {}, "funcname": "ImageButtonEx", "location": "imgui_internal:1973", "namespace": "ImGui", @@ -18051,7 +18051,7 @@ "argsoriginal": "(ImGuiContext* context)", "call_args": "(context)", "cimguiname": "igInitialize", - "defaults": [], + "defaults": {}, "funcname": "Initialize", "location": "imgui_internal:1802", "namespace": "ImGui", @@ -18754,7 +18754,7 @@ "argsoriginal": "(ImGuiKey key)", "call_args": "(key)", "cimguiname": "igIsActiveIdUsingKey", - "defaults": [], + "defaults": {}, "funcname": "IsActiveIdUsingKey", "location": "imgui_internal:1900", "namespace": "ImGui", @@ -18776,7 +18776,7 @@ "argsoriginal": "(ImGuiDir dir)", "call_args": "(dir)", "cimguiname": "igIsActiveIdUsingNavDir", - "defaults": [], + "defaults": {}, "funcname": "IsActiveIdUsingNavDir", "location": "imgui_internal:1898", "namespace": "ImGui", @@ -18798,7 +18798,7 @@ "argsoriginal": "(ImGuiNavInput input)", "call_args": "(input)", "cimguiname": "igIsActiveIdUsingNavInput", - "defaults": [], + "defaults": {}, "funcname": "IsActiveIdUsingNavInput", "location": "imgui_internal:1899", "namespace": "ImGui", @@ -18815,7 +18815,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemActive", - "defaults": [], + "defaults": {}, "funcname": "IsAnyItemActive", "location": "imgui:703", "namespace": "ImGui", @@ -18832,7 +18832,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemFocused", - "defaults": [], + "defaults": {}, "funcname": "IsAnyItemFocused", "location": "imgui:704", "namespace": "ImGui", @@ -18849,7 +18849,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyItemHovered", - "defaults": [], + "defaults": {}, "funcname": "IsAnyItemHovered", "location": "imgui:702", "namespace": "ImGui", @@ -18866,7 +18866,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsAnyMouseDown", - "defaults": [], + "defaults": {}, "funcname": "IsAnyMouseDown", "location": "imgui:754", "namespace": "ImGui", @@ -18896,7 +18896,7 @@ "argsoriginal": "(const ImRect& bb,ImGuiID id,bool clip_even_when_logged)", "call_args": "(bb,id,clip_even_when_logged)", "cimguiname": "igIsClippedEx", - "defaults": [], + "defaults": {}, "funcname": "IsClippedEx", "location": "imgui_internal:1847", "namespace": "ImGui", @@ -18913,7 +18913,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsDragDropPayloadBeingAccepted", - "defaults": [], + "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", "location": "imgui_internal:1910", "namespace": "ImGui", @@ -18930,7 +18930,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemActivated", - "defaults": [], + "defaults": {}, "funcname": "IsItemActivated", "location": "imgui:698", "namespace": "ImGui", @@ -18947,7 +18947,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemActive", - "defaults": [], + "defaults": {}, "funcname": "IsItemActive", "location": "imgui:693", "namespace": "ImGui", @@ -18988,7 +18988,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemDeactivated", - "defaults": [], + "defaults": {}, "funcname": "IsItemDeactivated", "location": "imgui:699", "namespace": "ImGui", @@ -19005,7 +19005,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemDeactivatedAfterEdit", - "defaults": [], + "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", "location": "imgui:700", "namespace": "ImGui", @@ -19022,7 +19022,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemEdited", - "defaults": [], + "defaults": {}, "funcname": "IsItemEdited", "location": "imgui:697", "namespace": "ImGui", @@ -19039,7 +19039,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemFocused", - "defaults": [], + "defaults": {}, "funcname": "IsItemFocused", "location": "imgui:694", "namespace": "ImGui", @@ -19080,7 +19080,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemToggledOpen", - "defaults": [], + "defaults": {}, "funcname": "IsItemToggledOpen", "location": "imgui:701", "namespace": "ImGui", @@ -19097,7 +19097,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemToggledSelection", - "defaults": [], + "defaults": {}, "funcname": "IsItemToggledSelection", "location": "imgui_internal:1856", "namespace": "ImGui", @@ -19114,7 +19114,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsItemVisible", - "defaults": [], + "defaults": {}, "funcname": "IsItemVisible", "location": "imgui:696", "namespace": "ImGui", @@ -19136,7 +19136,7 @@ "argsoriginal": "(int user_key_index)", "call_args": "(user_key_index)", "cimguiname": "igIsKeyDown", - "defaults": [], + "defaults": {}, "funcname": "IsKeyDown", "location": "imgui:738", "namespace": "ImGui", @@ -19214,7 +19214,7 @@ "argsoriginal": "(int user_key_index)", "call_args": "(user_key_index)", "cimguiname": "igIsKeyReleased", - "defaults": [], + "defaults": {}, "funcname": "IsKeyReleased", "location": "imgui:740", "namespace": "ImGui", @@ -19264,7 +19264,7 @@ "argsoriginal": "(ImGuiMouseButton button)", "call_args": "(button)", "cimguiname": "igIsMouseDoubleClicked", - "defaults": [], + "defaults": {}, "funcname": "IsMouseDoubleClicked", "location": "imgui:751", "namespace": "ImGui", @@ -19286,7 +19286,7 @@ "argsoriginal": "(ImGuiMouseButton button)", "call_args": "(button)", "cimguiname": "igIsMouseDown", - "defaults": [], + "defaults": {}, "funcname": "IsMouseDown", "location": "imgui:748", "namespace": "ImGui", @@ -19420,7 +19420,7 @@ "argsoriginal": "(ImGuiMouseButton button)", "call_args": "(button)", "cimguiname": "igIsMouseReleased", - "defaults": [], + "defaults": {}, "funcname": "IsMouseReleased", "location": "imgui:750", "namespace": "ImGui", @@ -19442,7 +19442,7 @@ "argsoriginal": "(ImGuiNavInput n)", "call_args": "(n)", "cimguiname": "igIsNavInputDown", - "defaults": [], + "defaults": {}, "funcname": "IsNavInputDown", "location": "imgui_internal:1903", "namespace": "ImGui", @@ -19468,7 +19468,7 @@ "argsoriginal": "(ImGuiNavInput n,ImGuiInputReadMode rm)", "call_args": "(n,rm)", "cimguiname": "igIsNavInputTest", - "defaults": [], + "defaults": {}, "funcname": "IsNavInputTest", "location": "imgui_internal:1904", "namespace": "ImGui", @@ -19520,7 +19520,7 @@ "argsoriginal": "(ImGuiID id,ImGuiPopupFlags popup_flags)", "call_args": "(id,popup_flags)", "cimguiname": "igIsPopupOpen", - "defaults": [], + "defaults": {}, "funcname": "IsPopupOpen", "location": "imgui_internal:1869", "namespace": "ImGui", @@ -19542,7 +19542,7 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igIsRectVisible", - "defaults": [], + "defaults": {}, "funcname": "IsRectVisible", "location": "imgui:711", "namespace": "ImGui", @@ -19566,7 +19566,7 @@ "argsoriginal": "(const ImVec2& rect_min,const ImVec2& rect_max)", "call_args": "(rect_min,rect_max)", "cimguiname": "igIsRectVisible", - "defaults": [], + "defaults": {}, "funcname": "IsRectVisible", "location": "imgui:712", "namespace": "ImGui", @@ -19583,7 +19583,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsWindowAppearing", - "defaults": [], + "defaults": {}, "funcname": "IsWindowAppearing", "location": "imgui:298", "namespace": "ImGui", @@ -19609,7 +19609,7 @@ "argsoriginal": "(ImGuiWindow* window,ImGuiWindow* potential_parent)", "call_args": "(window,potential_parent)", "cimguiname": "igIsWindowChildOf", - "defaults": [], + "defaults": {}, "funcname": "IsWindowChildOf", "location": "imgui_internal:1781", "namespace": "ImGui", @@ -19626,7 +19626,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igIsWindowCollapsed", - "defaults": [], + "defaults": {}, "funcname": "IsWindowCollapsed", "location": "imgui:299", "namespace": "ImGui", @@ -19696,7 +19696,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igIsWindowNavFocusable", - "defaults": [], + "defaults": {}, "funcname": "IsWindowNavFocusable", "location": "imgui_internal:1782", "namespace": "ImGui", @@ -19754,7 +19754,7 @@ "argsoriginal": "(const ImRect& bb,ImGuiID id)", "call_args": "(bb,id)", "cimguiname": "igItemHoverable", - "defaults": [], + "defaults": {}, "funcname": "ItemHoverable", "location": "imgui_internal:1846", "namespace": "ImGui", @@ -19830,7 +19830,7 @@ "argsoriginal": "(ImGuiID id)", "call_args": "(id)", "cimguiname": "igKeepAliveID", - "defaults": [], + "defaults": {}, "funcname": "KeepAliveID", "location": "imgui_internal:1838", "namespace": "ImGui", @@ -19860,7 +19860,7 @@ "argsoriginal": "(const char* label,const char* fmt,...)", "call_args": "(label,fmt,...)", "cimguiname": "igLabelText", - "defaults": [], + "defaults": {}, "funcname": "LabelText", "isvararg": "...)", "location": "imgui:432", @@ -19891,7 +19891,7 @@ "argsoriginal": "(const char* label,const char* fmt,va_list args)", "call_args": "(label,fmt,args)", "cimguiname": "igLabelTextV", - "defaults": [], + "defaults": {}, "funcname": "LabelTextV", "location": "imgui:433", "namespace": "ImGui", @@ -19992,7 +19992,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igListBoxFooter", - "defaults": [], + "defaults": {}, "funcname": "ListBoxFooter", "location": "imgui:567", "namespace": "ImGui", @@ -20072,7 +20072,7 @@ "argsoriginal": "(const char* ini_filename)", "call_args": "(ini_filename)", "cimguiname": "igLoadIniSettingsFromDisk", - "defaults": [], + "defaults": {}, "funcname": "LoadIniSettingsFromDisk", "location": "imgui:772", "namespace": "ImGui", @@ -20126,7 +20126,7 @@ "argsoriginal": "(ImGuiLogType type,int auto_open_depth)", "call_args": "(type,auto_open_depth)", "cimguiname": "igLogBegin", - "defaults": [], + "defaults": {}, "funcname": "LogBegin", "location": "imgui_internal:1861", "namespace": "ImGui", @@ -20143,7 +20143,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igLogButtons", - "defaults": [], + "defaults": {}, "funcname": "LogButtons", "location": "imgui:666", "namespace": "ImGui", @@ -20160,7 +20160,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igLogFinish", - "defaults": [], + "defaults": {}, "funcname": "LogFinish", "location": "imgui:665", "namespace": "ImGui", @@ -20218,7 +20218,7 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igLogText", - "defaults": [], + "defaults": {}, "funcname": "LogText", "isvararg": "...)", "location": "imgui:667", @@ -20338,7 +20338,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igMarkIniSettingsDirty", - "defaults": [], + "defaults": {}, "funcname": "MarkIniSettingsDirty", "location": "imgui_internal:1812", "namespace": "ImGui", @@ -20358,7 +20358,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igMarkIniSettingsDirty", - "defaults": [], + "defaults": {}, "funcname": "MarkIniSettingsDirty", "location": "imgui_internal:1813", "namespace": "ImGui", @@ -20380,7 +20380,7 @@ "argsoriginal": "(ImGuiID id)", "call_args": "(id)", "cimguiname": "igMarkItemEdited", - "defaults": [], + "defaults": {}, "funcname": "MarkItemEdited", "location": "imgui_internal:1839", "namespace": "ImGui", @@ -20402,7 +20402,7 @@ "argsoriginal": "(size_t size)", "call_args": "(size)", "cimguiname": "igMemAlloc", - "defaults": [], + "defaults": {}, "funcname": "MemAlloc", "location": "imgui:784", "namespace": "ImGui", @@ -20424,7 +20424,7 @@ "argsoriginal": "(void* ptr)", "call_args": "(ptr)", "cimguiname": "igMemFree", - "defaults": [], + "defaults": {}, "funcname": "MemFree", "location": "imgui:785", "namespace": "ImGui", @@ -20522,7 +20522,7 @@ "argsoriginal": "(ImGuiWindow* window,bool force_reinit)", "call_args": "(window,force_reinit)", "cimguiname": "igNavInitWindow", - "defaults": [], + "defaults": {}, "funcname": "NavInitWindow", "location": "imgui_internal:1877", "namespace": "ImGui", @@ -20539,7 +20539,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNavMoveRequestButNoResultYet", - "defaults": [], + "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", "location": "imgui_internal:1878", "namespace": "ImGui", @@ -20556,7 +20556,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNavMoveRequestCancel", - "defaults": [], + "defaults": {}, "funcname": "NavMoveRequestCancel", "location": "imgui_internal:1879", "namespace": "ImGui", @@ -20590,7 +20590,7 @@ "argsoriginal": "(ImGuiDir move_dir,ImGuiDir clip_dir,const ImRect& bb_rel,ImGuiNavMoveFlags move_flags)", "call_args": "(move_dir,clip_dir,bb_rel,move_flags)", "cimguiname": "igNavMoveRequestForward", - "defaults": [], + "defaults": {}, "funcname": "NavMoveRequestForward", "location": "imgui_internal:1880", "namespace": "ImGui", @@ -20616,7 +20616,7 @@ "argsoriginal": "(ImGuiWindow* window,ImGuiNavMoveFlags move_flags)", "call_args": "(window,move_flags)", "cimguiname": "igNavMoveRequestTryWrapping", - "defaults": [], + "defaults": {}, "funcname": "NavMoveRequestTryWrapping", "location": "imgui_internal:1881", "namespace": "ImGui", @@ -20633,7 +20633,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNewFrame", - "defaults": [], + "defaults": {}, "funcname": "NewFrame", "location": "imgui:252", "namespace": "ImGui", @@ -20650,7 +20650,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNewLine", - "defaults": [], + "defaults": {}, "funcname": "NewLine", "location": "imgui:384", "namespace": "ImGui", @@ -20667,7 +20667,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igNextColumn", - "defaults": [], + "defaults": {}, "funcname": "NextColumn", "location": "imgui:645", "namespace": "ImGui", @@ -20812,7 +20812,7 @@ "argsoriginal": "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size)", "call_args": "(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,frame_size)", "cimguiname": "igPlotEx", - "defaults": [], + "defaults": {}, "funcname": "PlotEx", "location": "imgui_internal:2017", "namespace": "ImGui", @@ -21071,7 +21071,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopAllowKeyboardFocus", - "defaults": [], + "defaults": {}, "funcname": "PopAllowKeyboardFocus", "location": "imgui:371", "namespace": "ImGui", @@ -21088,7 +21088,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopButtonRepeat", - "defaults": [], + "defaults": {}, "funcname": "PopButtonRepeat", "location": "imgui:373", "namespace": "ImGui", @@ -21105,7 +21105,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopClipRect", - "defaults": [], + "defaults": {}, "funcname": "PopClipRect", "location": "imgui:682", "namespace": "ImGui", @@ -21122,7 +21122,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopColumnsBackground", - "defaults": [], + "defaults": {}, "funcname": "PopColumnsBackground", "location": "imgui_internal:1918", "namespace": "ImGui", @@ -21139,7 +21139,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopFocusScope", - "defaults": [], + "defaults": {}, "funcname": "PopFocusScope", "location": "imgui_internal:1893", "namespace": "ImGui", @@ -21156,7 +21156,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopFont", - "defaults": [], + "defaults": {}, "funcname": "PopFont", "location": "imgui:348", "namespace": "ImGui", @@ -21173,7 +21173,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopID", - "defaults": [], + "defaults": {}, "funcname": "PopID", "location": "imgui:417", "namespace": "ImGui", @@ -21190,7 +21190,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopItemFlag", - "defaults": [], + "defaults": {}, "funcname": "PopItemFlag", "location": "imgui_internal:1855", "namespace": "ImGui", @@ -21207,7 +21207,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopItemWidth", - "defaults": [], + "defaults": {}, "funcname": "PopItemWidth", "location": "imgui:365", "namespace": "ImGui", @@ -21272,7 +21272,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPopTextWrapPos", - "defaults": [], + "defaults": {}, "funcname": "PopTextWrapPos", "location": "imgui:369", "namespace": "ImGui", @@ -21327,7 +21327,7 @@ "argsoriginal": "(bool allow_keyboard_focus)", "call_args": "(allow_keyboard_focus)", "cimguiname": "igPushAllowKeyboardFocus", - "defaults": [], + "defaults": {}, "funcname": "PushAllowKeyboardFocus", "location": "imgui:370", "namespace": "ImGui", @@ -21349,7 +21349,7 @@ "argsoriginal": "(bool repeat)", "call_args": "(repeat)", "cimguiname": "igPushButtonRepeat", - "defaults": [], + "defaults": {}, "funcname": "PushButtonRepeat", "location": "imgui:372", "namespace": "ImGui", @@ -21379,7 +21379,7 @@ "argsoriginal": "(const ImVec2& clip_rect_min,const ImVec2& clip_rect_max,bool intersect_with_current_clip_rect)", "call_args": "(clip_rect_min,clip_rect_max,intersect_with_current_clip_rect)", "cimguiname": "igPushClipRect", - "defaults": [], + "defaults": {}, "funcname": "PushClipRect", "location": "imgui:681", "namespace": "ImGui", @@ -21401,7 +21401,7 @@ "argsoriginal": "(int column_index)", "call_args": "(column_index)", "cimguiname": "igPushColumnClipRect", - "defaults": [], + "defaults": {}, "funcname": "PushColumnClipRect", "location": "imgui_internal:1916", "namespace": "ImGui", @@ -21418,7 +21418,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igPushColumnsBackground", - "defaults": [], + "defaults": {}, "funcname": "PushColumnsBackground", "location": "imgui_internal:1917", "namespace": "ImGui", @@ -21440,7 +21440,7 @@ "argsoriginal": "(ImGuiID id)", "call_args": "(id)", "cimguiname": "igPushFocusScope", - "defaults": [], + "defaults": {}, "funcname": "PushFocusScope", "location": "imgui_internal:1892", "namespace": "ImGui", @@ -21462,7 +21462,7 @@ "argsoriginal": "(ImFont* font)", "call_args": "(font)", "cimguiname": "igPushFont", - "defaults": [], + "defaults": {}, "funcname": "PushFont", "location": "imgui:347", "namespace": "ImGui", @@ -21484,7 +21484,7 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igPushID", - "defaults": [], + "defaults": {}, "funcname": "PushID", "location": "imgui:413", "namespace": "ImGui", @@ -21508,7 +21508,7 @@ "argsoriginal": "(const char* str_id_begin,const char* str_id_end)", "call_args": "(str_id_begin,str_id_end)", "cimguiname": "igPushID", - "defaults": [], + "defaults": {}, "funcname": "PushID", "location": "imgui:414", "namespace": "ImGui", @@ -21528,7 +21528,7 @@ "argsoriginal": "(const void* ptr_id)", "call_args": "(ptr_id)", "cimguiname": "igPushID", - "defaults": [], + "defaults": {}, "funcname": "PushID", "location": "imgui:415", "namespace": "ImGui", @@ -21548,7 +21548,7 @@ "argsoriginal": "(int int_id)", "call_args": "(int_id)", "cimguiname": "igPushID", - "defaults": [], + "defaults": {}, "funcname": "PushID", "location": "imgui:416", "namespace": "ImGui", @@ -21574,7 +21574,7 @@ "argsoriginal": "(ImGuiItemFlags option,bool enabled)", "call_args": "(option,enabled)", "cimguiname": "igPushItemFlag", - "defaults": [], + "defaults": {}, "funcname": "PushItemFlag", "location": "imgui_internal:1854", "namespace": "ImGui", @@ -21596,7 +21596,7 @@ "argsoriginal": "(float item_width)", "call_args": "(item_width)", "cimguiname": "igPushItemWidth", - "defaults": [], + "defaults": {}, "funcname": "PushItemWidth", "location": "imgui:364", "namespace": "ImGui", @@ -21622,7 +21622,7 @@ "argsoriginal": "(int components,float width_full)", "call_args": "(components,width_full)", "cimguiname": "igPushMultiItemsWidths", - "defaults": [], + "defaults": {}, "funcname": "PushMultiItemsWidths", "location": "imgui_internal:1853", "namespace": "ImGui", @@ -21644,7 +21644,7 @@ "argsoriginal": "(ImGuiID id)", "call_args": "(id)", "cimguiname": "igPushOverrideID", - "defaults": [], + "defaults": {}, "funcname": "PushOverrideID", "location": "imgui_internal:1840", "namespace": "ImGui", @@ -21670,7 +21670,7 @@ "argsoriginal": "(ImGuiCol idx,ImU32 col)", "call_args": "(idx,col)", "cimguiname": "igPushStyleColor", - "defaults": [], + "defaults": {}, "funcname": "PushStyleColor", "location": "imgui:349", "namespace": "ImGui", @@ -21694,7 +21694,7 @@ "argsoriginal": "(ImGuiCol idx,const ImVec4& col)", "call_args": "(idx,col)", "cimguiname": "igPushStyleColor", - "defaults": [], + "defaults": {}, "funcname": "PushStyleColor", "location": "imgui:350", "namespace": "ImGui", @@ -21720,7 +21720,7 @@ "argsoriginal": "(ImGuiStyleVar idx,float val)", "call_args": "(idx,val)", "cimguiname": "igPushStyleVar", - "defaults": [], + "defaults": {}, "funcname": "PushStyleVar", "location": "imgui:352", "namespace": "ImGui", @@ -21744,7 +21744,7 @@ "argsoriginal": "(ImGuiStyleVar idx,const ImVec2& val)", "call_args": "(idx,val)", "cimguiname": "igPushStyleVar", - "defaults": [], + "defaults": {}, "funcname": "PushStyleVar", "location": "imgui:353", "namespace": "ImGui", @@ -21794,7 +21794,7 @@ "argsoriginal": "(const char* label,bool active)", "call_args": "(label,active)", "cimguiname": "igRadioButton", - "defaults": [], + "defaults": {}, "funcname": "RadioButton", "location": "imgui:448", "namespace": "ImGui", @@ -21822,7 +21822,7 @@ "argsoriginal": "(const char* label,int* v,int v_button)", "call_args": "(label,v,v_button)", "cimguiname": "igRadioButton", - "defaults": [], + "defaults": {}, "funcname": "RadioButton", "location": "imgui:449", "namespace": "ImGui", @@ -21839,7 +21839,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igRender", - "defaults": [], + "defaults": {}, "funcname": "Render", "location": "imgui:254", "namespace": "ImGui", @@ -21917,7 +21917,7 @@ "argsoriginal": "(ImDrawList* draw_list,ImVec2 pos,ImVec2 half_sz,ImGuiDir direction,ImU32 col)", "call_args": "(draw_list,pos,half_sz,direction,col)", "cimguiname": "igRenderArrowPointingAt", - "defaults": [], + "defaults": {}, "funcname": "RenderArrowPointingAt", "location": "imgui_internal:1955", "namespace": "ImGui", @@ -21947,7 +21947,7 @@ "argsoriginal": "(ImDrawList* draw_list,ImVec2 pos,ImU32 col)", "call_args": "(draw_list,pos,col)", "cimguiname": "igRenderBullet", - "defaults": [], + "defaults": {}, "funcname": "RenderBullet", "location": "imgui_internal:1952", "namespace": "ImGui", @@ -21981,7 +21981,7 @@ "argsoriginal": "(ImDrawList* draw_list,ImVec2 pos,ImU32 col,float sz)", "call_args": "(draw_list,pos,col,sz)", "cimguiname": "igRenderCheckMark", - "defaults": [], + "defaults": {}, "funcname": "RenderCheckMark", "location": "imgui_internal:1953", "namespace": "ImGui", @@ -22153,7 +22153,7 @@ "argsoriginal": "(ImDrawList* draw_list,ImVec2 pos,float scale,ImGuiMouseCursor mouse_cursor,ImU32 col_fill,ImU32 col_border,ImU32 col_shadow)", "call_args": "(draw_list,pos,scale,mouse_cursor,col_fill,col_border,col_shadow)", "cimguiname": "igRenderMouseCursor", - "defaults": [], + "defaults": {}, "funcname": "RenderMouseCursor", "location": "imgui_internal:1954", "namespace": "ImGui", @@ -22227,7 +22227,7 @@ "argsoriginal": "(ImDrawList* draw_list,const ImRect& rect,ImU32 col,float x_start_norm,float x_end_norm,float rounding)", "call_args": "(draw_list,rect,col,x_start_norm,x_end_norm,rounding)", "cimguiname": "igRenderRectFilledRangeH", - "defaults": [], + "defaults": {}, "funcname": "RenderRectFilledRangeH", "location": "imgui_internal:1956", "namespace": "ImGui", @@ -22265,7 +22265,7 @@ "argsoriginal": "(ImDrawList* draw_list,ImRect outer,ImRect inner,ImU32 col,float rounding)", "call_args": "(draw_list,outer,inner,col,rounding)", "cimguiname": "igRenderRectFilledWithHole", - "defaults": [], + "defaults": {}, "funcname": "RenderRectFilledWithHole", "location": "imgui_internal:1957", "namespace": "ImGui", @@ -22454,7 +22454,7 @@ "argsoriginal": "(ImDrawList* draw_list,const ImVec2& pos_min,const ImVec2& pos_max,float clip_max_x,float ellipsis_max_x,const char* text,const char* text_end,const ImVec2* text_size_if_known)", "call_args": "(draw_list,pos_min,pos_max,clip_max_x,ellipsis_max_x,text,text_end,text_size_if_known)", "cimguiname": "igRenderTextEllipsis", - "defaults": [], + "defaults": {}, "funcname": "RenderTextEllipsis", "location": "imgui_internal:1942", "namespace": "ImGui", @@ -22488,7 +22488,7 @@ "argsoriginal": "(ImVec2 pos,const char* text,const char* text_end,float wrap_width)", "call_args": "(pos,text,text_end,wrap_width)", "cimguiname": "igRenderTextWrapped", - "defaults": [], + "defaults": {}, "funcname": "RenderTextWrapped", "location": "imgui_internal:1939", "namespace": "ImGui", @@ -22563,7 +22563,7 @@ "argsoriginal": "(const char* ini_filename)", "call_args": "(ini_filename)", "cimguiname": "igSaveIniSettingsToDisk", - "defaults": [], + "defaults": {}, "funcname": "SaveIniSettingsToDisk", "location": "imgui:774", "namespace": "ImGui", @@ -22617,7 +22617,7 @@ "argsoriginal": "(ImGuiWindow* window,const ImRect& item_rect)", "call_args": "(window,item_rect)", "cimguiname": "igScrollToBringRectIntoView", - "defaults": [], + "defaults": {}, "funcname": "ScrollToBringRectIntoView", "location": "imgui_internal:1826", "namespace": "ImGui", @@ -22640,7 +22640,7 @@ "argsoriginal": "(ImGuiAxis axis)", "call_args": "(axis)", "cimguiname": "igScrollbar", - "defaults": [], + "defaults": {}, "funcname": "Scrollbar", "location": "imgui_internal:1971", "namespace": "ImGui", @@ -22686,7 +22686,7 @@ "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiAxis axis,float* p_scroll_v,float avail_v,float contents_v,ImDrawCornerFlags rounding_corners)", "call_args": "(bb,id,axis,p_scroll_v,avail_v,contents_v,rounding_corners)", "cimguiname": "igScrollbarEx", - "defaults": [], + "defaults": {}, "funcname": "ScrollbarEx", "location": "imgui_internal:1972", "namespace": "ImGui", @@ -22776,7 +22776,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSeparator", - "defaults": [], + "defaults": {}, "funcname": "Separator", "location": "imgui:382", "namespace": "ImGui", @@ -22798,7 +22798,7 @@ "argsoriginal": "(ImGuiSeparatorFlags flags)", "call_args": "(flags)", "cimguiname": "igSeparatorEx", - "defaults": [], + "defaults": {}, "funcname": "SeparatorEx", "location": "imgui_internal:1977", "namespace": "ImGui", @@ -22824,7 +22824,7 @@ "argsoriginal": "(ImGuiID id,ImGuiWindow* window)", "call_args": "(id,window)", "cimguiname": "igSetActiveID", - "defaults": [], + "defaults": {}, "funcname": "SetActiveID", "location": "imgui_internal:1833", "namespace": "ImGui", @@ -22882,7 +22882,7 @@ "argsoriginal": "(const char* text)", "call_args": "(text)", "cimguiname": "igSetClipboardText", - "defaults": [], + "defaults": {}, "funcname": "SetClipboardText", "location": "imgui:767", "namespace": "ImGui", @@ -22904,7 +22904,7 @@ "argsoriginal": "(ImGuiColorEditFlags flags)", "call_args": "(flags)", "cimguiname": "igSetColorEditOptions", - "defaults": [], + "defaults": {}, "funcname": "SetColorEditOptions", "location": "imgui:533", "namespace": "ImGui", @@ -22930,7 +22930,7 @@ "argsoriginal": "(int column_index,float offset_x)", "call_args": "(column_index,offset_x)", "cimguiname": "igSetColumnOffset", - "defaults": [], + "defaults": {}, "funcname": "SetColumnOffset", "location": "imgui:650", "namespace": "ImGui", @@ -22956,7 +22956,7 @@ "argsoriginal": "(int column_index,float width)", "call_args": "(column_index,width)", "cimguiname": "igSetColumnWidth", - "defaults": [], + "defaults": {}, "funcname": "SetColumnWidth", "location": "imgui:648", "namespace": "ImGui", @@ -22978,7 +22978,7 @@ "argsoriginal": "(ImGuiContext* ctx)", "call_args": "(ctx)", "cimguiname": "igSetCurrentContext", - "defaults": [], + "defaults": {}, "funcname": "SetCurrentContext", "location": "imgui:247", "namespace": "ImGui", @@ -23000,7 +23000,7 @@ "argsoriginal": "(ImFont* font)", "call_args": "(font)", "cimguiname": "igSetCurrentFont", - "defaults": [], + "defaults": {}, "funcname": "SetCurrentFont", "location": "imgui_internal:1797", "namespace": "ImGui", @@ -23022,7 +23022,7 @@ "argsoriginal": "(const ImVec2& local_pos)", "call_args": "(local_pos)", "cimguiname": "igSetCursorPos", - "defaults": [], + "defaults": {}, "funcname": "SetCursorPos", "location": "imgui:394", "namespace": "ImGui", @@ -23044,7 +23044,7 @@ "argsoriginal": "(float local_x)", "call_args": "(local_x)", "cimguiname": "igSetCursorPosX", - "defaults": [], + "defaults": {}, "funcname": "SetCursorPosX", "location": "imgui:395", "namespace": "ImGui", @@ -23066,7 +23066,7 @@ "argsoriginal": "(float local_y)", "call_args": "(local_y)", "cimguiname": "igSetCursorPosY", - "defaults": [], + "defaults": {}, "funcname": "SetCursorPosY", "location": "imgui:396", "namespace": "ImGui", @@ -23088,7 +23088,7 @@ "argsoriginal": "(const ImVec2& pos)", "call_args": "(pos)", "cimguiname": "igSetCursorScreenPos", - "defaults": [], + "defaults": {}, "funcname": "SetCursorScreenPos", "location": "imgui:399", "namespace": "ImGui", @@ -23150,7 +23150,7 @@ "argsoriginal": "(ImGuiID id,ImGuiWindow* window)", "call_args": "(id,window)", "cimguiname": "igSetFocusID", - "defaults": [], + "defaults": {}, "funcname": "SetFocusID", "location": "imgui_internal:1834", "namespace": "ImGui", @@ -23172,7 +23172,7 @@ "argsoriginal": "(ImGuiID id)", "call_args": "(id)", "cimguiname": "igSetHoveredID", - "defaults": [], + "defaults": {}, "funcname": "SetHoveredID", "location": "imgui_internal:1837", "namespace": "ImGui", @@ -23189,7 +23189,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetItemAllowOverlap", - "defaults": [], + "defaults": {}, "funcname": "SetItemAllowOverlap", "location": "imgui:708", "namespace": "ImGui", @@ -23206,7 +23206,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetItemDefaultFocus", - "defaults": [], + "defaults": {}, "funcname": "SetItemDefaultFocus", "location": "imgui:686", "namespace": "ImGui", @@ -23264,7 +23264,7 @@ "argsoriginal": "(ImGuiWindow* window,ImGuiID item_id,ImGuiItemStatusFlags status_flags,const ImRect& item_rect)", "call_args": "(window,item_id,status_flags,item_rect)", "cimguiname": "igSetLastItemData", - "defaults": [], + "defaults": {}, "funcname": "SetLastItemData", "location": "imgui_internal:1848", "namespace": "ImGui", @@ -23286,7 +23286,7 @@ "argsoriginal": "(ImGuiMouseCursor cursor_type)", "call_args": "(cursor_type)", "cimguiname": "igSetMouseCursor", - "defaults": [], + "defaults": {}, "funcname": "SetMouseCursor", "location": "imgui:761", "namespace": "ImGui", @@ -23316,7 +23316,7 @@ "argsoriginal": "(ImGuiID id,int nav_layer,ImGuiID focus_scope_id)", "call_args": "(id,nav_layer,focus_scope_id)", "cimguiname": "igSetNavID", - "defaults": [], + "defaults": {}, "funcname": "SetNavID", "location": "imgui_internal:1886", "namespace": "ImGui", @@ -23350,7 +23350,7 @@ "argsoriginal": "(ImGuiID id,int nav_layer,ImGuiID focus_scope_id,const ImRect& rect_rel)", "call_args": "(id,nav_layer,focus_scope_id,rect_rel)", "cimguiname": "igSetNavIDWithRectRel", - "defaults": [], + "defaults": {}, "funcname": "SetNavIDWithRectRel", "location": "imgui_internal:1887", "namespace": "ImGui", @@ -23400,7 +23400,7 @@ "argsoriginal": "(float item_width)", "call_args": "(item_width)", "cimguiname": "igSetNextItemWidth", - "defaults": [], + "defaults": {}, "funcname": "SetNextItemWidth", "location": "imgui:366", "namespace": "ImGui", @@ -23422,7 +23422,7 @@ "argsoriginal": "(float alpha)", "call_args": "(alpha)", "cimguiname": "igSetNextWindowBgAlpha", - "defaults": [], + "defaults": {}, "funcname": "SetNextWindowBgAlpha", "location": "imgui:315", "namespace": "ImGui", @@ -23472,7 +23472,7 @@ "argsoriginal": "(const ImVec2& size)", "call_args": "(size)", "cimguiname": "igSetNextWindowContentSize", - "defaults": [], + "defaults": {}, "funcname": "SetNextWindowContentSize", "location": "imgui:312", "namespace": "ImGui", @@ -23489,7 +23489,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetNextWindowFocus", - "defaults": [], + "defaults": {}, "funcname": "SetNextWindowFocus", "location": "imgui:314", "namespace": "ImGui", @@ -23544,7 +23544,7 @@ "argsoriginal": "(const ImVec2& scroll)", "call_args": "(scroll)", "cimguiname": "igSetNextWindowScroll", - "defaults": [], + "defaults": {}, "funcname": "SetNextWindowScroll", "location": "imgui_internal:1821", "namespace": "ImGui", @@ -23795,7 +23795,7 @@ "argsoriginal": "(float scroll_x)", "call_args": "(scroll_x)", "cimguiname": "igSetScrollX", - "defaults": [], + "defaults": {}, "funcname": "SetScrollX", "location": "imgui:339", "namespace": "ImGui", @@ -23819,7 +23819,7 @@ "argsoriginal": "(ImGuiWindow* window,float new_scroll_x)", "call_args": "(window,new_scroll_x)", "cimguiname": "igSetScrollX", - "defaults": [], + "defaults": {}, "funcname": "SetScrollX", "location": "imgui_internal:1822", "namespace": "ImGui", @@ -23841,7 +23841,7 @@ "argsoriginal": "(float scroll_y)", "call_args": "(scroll_y)", "cimguiname": "igSetScrollY", - "defaults": [], + "defaults": {}, "funcname": "SetScrollY", "location": "imgui:340", "namespace": "ImGui", @@ -23865,7 +23865,7 @@ "argsoriginal": "(ImGuiWindow* window,float new_scroll_y)", "call_args": "(window,new_scroll_y)", "cimguiname": "igSetScrollY", - "defaults": [], + "defaults": {}, "funcname": "SetScrollY", "location": "imgui_internal:1823", "namespace": "ImGui", @@ -23887,7 +23887,7 @@ "argsoriginal": "(ImGuiStorage* storage)", "call_args": "(storage)", "cimguiname": "igSetStateStorage", - "defaults": [], + "defaults": {}, "funcname": "SetStateStorage", "location": "imgui:719", "namespace": "ImGui", @@ -23909,7 +23909,7 @@ "argsoriginal": "(const char* tab_or_docked_window_label)", "call_args": "(tab_or_docked_window_label)", "cimguiname": "igSetTabItemClosed", - "defaults": [], + "defaults": {}, "funcname": "SetTabItemClosed", "location": "imgui:658", "namespace": "ImGui", @@ -23935,7 +23935,7 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igSetTooltip", - "defaults": [], + "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", "location": "imgui:599", @@ -23962,7 +23962,7 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igSetTooltipV", - "defaults": [], + "defaults": {}, "funcname": "SetTooltipV", "location": "imgui:600", "namespace": "ImGui", @@ -23988,7 +23988,7 @@ "argsoriginal": "(ImGuiWindow* window,const ImRect& clip_rect)", "call_args": "(window,clip_rect)", "cimguiname": "igSetWindowClipRectBeforeSetChannel", - "defaults": [], + "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", "location": "imgui_internal:1913", "namespace": "ImGui", @@ -24093,7 +24093,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSetWindowFocus", - "defaults": [], + "defaults": {}, "funcname": "SetWindowFocus", "location": "imgui:319", "namespace": "ImGui", @@ -24113,7 +24113,7 @@ "argsoriginal": "(const char* name)", "call_args": "(name)", "cimguiname": "igSetWindowFocus", - "defaults": [], + "defaults": {}, "funcname": "SetWindowFocus", "location": "imgui:324", "namespace": "ImGui", @@ -24135,7 +24135,7 @@ "argsoriginal": "(float scale)", "call_args": "(scale)", "cimguiname": "igSetWindowFontScale", - "defaults": [], + "defaults": {}, "funcname": "SetWindowFontScale", "location": "imgui:320", "namespace": "ImGui", @@ -24165,7 +24165,7 @@ "argsoriginal": "(ImGuiWindow* window,const ImVec2& pos,const ImVec2& size)", "call_args": "(window,pos,size)", "cimguiname": "igSetWindowHitTestHole", - "defaults": [], + "defaults": {}, "funcname": "SetWindowHitTestHole", "location": "imgui_internal:1787", "namespace": "ImGui", @@ -24387,7 +24387,7 @@ "argsoriginal": "(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,ImVec2 gradient_p0,ImVec2 gradient_p1,ImU32 col0,ImU32 col1)", "call_args": "(draw_list,vert_start_idx,vert_end_idx,gradient_p0,gradient_p1,col0,col1)", "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", - "defaults": [], + "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", "location": "imgui_internal:2020", "namespace": "ImGui", @@ -24437,7 +24437,7 @@ "argsoriginal": "(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2& a,const ImVec2& b,const ImVec2& uv_a,const ImVec2& uv_b,bool clamp)", "call_args": "(draw_list,vert_start_idx,vert_end_idx,a,b,uv_a,uv_b,clamp)", "cimguiname": "igShadeVertsLinearUV", - "defaults": [], + "defaults": {}, "funcname": "ShadeVertsLinearUV", "location": "imgui_internal:2021", "namespace": "ImGui", @@ -24507,7 +24507,7 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igShowFontSelector", - "defaults": [], + "defaults": {}, "funcname": "ShowFontSelector", "location": "imgui:263", "namespace": "ImGui", @@ -24577,7 +24577,7 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igShowStyleSelector", - "defaults": [], + "defaults": {}, "funcname": "ShowStyleSelector", "location": "imgui:262", "namespace": "ImGui", @@ -24594,7 +24594,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igShowUserGuide", - "defaults": [], + "defaults": {}, "funcname": "ShowUserGuide", "location": "imgui:264", "namespace": "ImGui", @@ -24624,7 +24624,7 @@ "argsoriginal": "(ImGuiShrinkWidthItem* items,int count,float width_excess)", "call_args": "(items,count,width_excess)", "cimguiname": "igShrinkWidths", - "defaults": [], + "defaults": {}, "funcname": "ShrinkWidths", "location": "imgui_internal:1858", "namespace": "ImGui", @@ -24646,7 +24646,7 @@ "argsoriginal": "(ImGuiContext* context)", "call_args": "(context)", "cimguiname": "igShutdown", - "defaults": [], + "defaults": {}, "funcname": "Shutdown", "location": "imgui_internal:1803", "namespace": "ImGui", @@ -24747,7 +24747,7 @@ "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiDataType data_type,void* p_v,const void* p_min,const void* p_max,const char* format,ImGuiSliderFlags flags,ImRect* out_grab_bb)", "call_args": "(bb,id,data_type,p_v,p_min,p_max,format,flags,out_grab_bb)", "cimguiname": "igSliderBehavior", - "defaults": [], + "defaults": {}, "funcname": "SliderBehavior", "location": "imgui_internal:1982", "namespace": "ImGui", @@ -25231,7 +25231,7 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igSmallButton", - "defaults": [], + "defaults": {}, "funcname": "SmallButton", "location": "imgui:441", "namespace": "ImGui", @@ -25248,7 +25248,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igSpacing", - "defaults": [], + "defaults": {}, "funcname": "Spacing", "location": "imgui:385", "namespace": "ImGui", @@ -25327,7 +25327,7 @@ "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igStartMouseMovingWindow", - "defaults": [], + "defaults": {}, "funcname": "StartMouseMovingWindow", "location": "imgui_internal:1807", "namespace": "ImGui", @@ -25425,7 +25425,7 @@ "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", "call_args": "(tab_bar,tab)", "cimguiname": "igTabBarCloseTab", - "defaults": [], + "defaults": {}, "funcname": "TabBarCloseTab", "location": "imgui_internal:1928", "namespace": "ImGui", @@ -25451,7 +25451,7 @@ "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiID tab_id)", "call_args": "(tab_bar,tab_id)", "cimguiname": "igTabBarFindTabByID", - "defaults": [], + "defaults": {}, "funcname": "TabBarFindTabByID", "location": "imgui_internal:1926", "namespace": "ImGui", @@ -25481,7 +25481,7 @@ "argsoriginal": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir)", "call_args": "(tab_bar,tab,dir)", "cimguiname": "igTabBarQueueChangeTabOrder", - "defaults": [], + "defaults": {}, "funcname": "TabBarQueueChangeTabOrder", "location": "imgui_internal:1929", "namespace": "ImGui", @@ -25507,7 +25507,7 @@ "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiID tab_id)", "call_args": "(tab_bar,tab_id)", "cimguiname": "igTabBarRemoveTab", - "defaults": [], + "defaults": {}, "funcname": "TabBarRemoveTab", "location": "imgui_internal:1927", "namespace": "ImGui", @@ -25541,7 +25541,7 @@ "argsoriginal": "(ImDrawList* draw_list,const ImRect& bb,ImGuiTabItemFlags flags,ImU32 col)", "call_args": "(draw_list,bb,flags,col)", "cimguiname": "igTabItemBackground", - "defaults": [], + "defaults": {}, "funcname": "TabItemBackground", "location": "imgui_internal:1932", "namespace": "ImGui", @@ -25571,7 +25571,7 @@ "argsoriginal": "(const char* label,bool has_close_button)", "call_args": "(label,has_close_button)", "cimguiname": "igTabItemCalcSize", - "defaults": [], + "defaults": {}, "funcname": "TabItemCalcSize", "location": "imgui_internal:1931", "namespace": "ImGui", @@ -25606,7 +25606,7 @@ "argsoriginal": "(ImGuiTabBar* tab_bar,const char* label,bool* p_open,ImGuiTabItemFlags flags)", "call_args": "(tab_bar,label,p_open,flags)", "cimguiname": "igTabItemEx", - "defaults": [], + "defaults": {}, "funcname": "TabItemEx", "location": "imgui_internal:1930", "namespace": "ImGui", @@ -25656,7 +25656,7 @@ "argsoriginal": "(ImDrawList* draw_list,const ImRect& bb,ImGuiTabItemFlags flags,ImVec2 frame_padding,const char* label,ImGuiID tab_id,ImGuiID close_button_id,bool is_contents_visible)", "call_args": "(draw_list,bb,flags,frame_padding,label,tab_id,close_button_id,is_contents_visible)", "cimguiname": "igTabItemLabelAndCloseButton", - "defaults": [], + "defaults": {}, "funcname": "TabItemLabelAndCloseButton", "location": "imgui_internal:1933", "namespace": "ImGui", @@ -25678,7 +25678,7 @@ "argsoriginal": "(ImGuiID id)", "call_args": "(id)", "cimguiname": "igTempInputIsActive", - "defaults": [], + "defaults": {}, "funcname": "TempInputIsActive", "location": "imgui_internal:2008", "namespace": "ImGui", @@ -25773,7 +25773,7 @@ "argsoriginal": "(const ImRect& bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags)", "call_args": "(bb,id,label,buf,buf_size,flags)", "cimguiname": "igTempInputText", - "defaults": [], + "defaults": {}, "funcname": "TempInputText", "location": "imgui_internal:2006", "namespace": "ImGui", @@ -25799,7 +25799,7 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igText", - "defaults": [], + "defaults": {}, "funcname": "Text", "isvararg": "...)", "location": "imgui:424", @@ -25830,7 +25830,7 @@ "argsoriginal": "(const ImVec4& col,const char* fmt,...)", "call_args": "(col,fmt,...)", "cimguiname": "igTextColored", - "defaults": [], + "defaults": {}, "funcname": "TextColored", "isvararg": "...)", "location": "imgui:426", @@ -25861,7 +25861,7 @@ "argsoriginal": "(const ImVec4& col,const char* fmt,va_list args)", "call_args": "(col,fmt,args)", "cimguiname": "igTextColoredV", - "defaults": [], + "defaults": {}, "funcname": "TextColoredV", "location": "imgui:427", "namespace": "ImGui", @@ -25887,7 +25887,7 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igTextDisabled", - "defaults": [], + "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", "location": "imgui:428", @@ -25914,7 +25914,7 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextDisabledV", - "defaults": [], + "defaults": {}, "funcname": "TextDisabledV", "location": "imgui:429", "namespace": "ImGui", @@ -26001,7 +26001,7 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextV", - "defaults": [], + "defaults": {}, "funcname": "TextV", "location": "imgui:425", "namespace": "ImGui", @@ -26027,7 +26027,7 @@ "argsoriginal": "(const char* fmt,...)", "call_args": "(fmt,...)", "cimguiname": "igTextWrapped", - "defaults": [], + "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", "location": "imgui:430", @@ -26054,7 +26054,7 @@ "argsoriginal": "(const char* fmt,va_list args)", "call_args": "(fmt,args)", "cimguiname": "igTextWrappedV", - "defaults": [], + "defaults": {}, "funcname": "TextWrappedV", "location": "imgui:431", "namespace": "ImGui", @@ -26076,7 +26076,7 @@ "argsoriginal": "(const char* label)", "call_args": "(label)", "cimguiname": "igTreeNode", - "defaults": [], + "defaults": {}, "funcname": "TreeNode", "location": "imgui:537", "namespace": "ImGui", @@ -26104,7 +26104,7 @@ "argsoriginal": "(const char* str_id,const char* fmt,...)", "call_args": "(str_id,fmt,...)", "cimguiname": "igTreeNode", - "defaults": [], + "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", "location": "imgui:538", @@ -26133,7 +26133,7 @@ "argsoriginal": "(const void* ptr_id,const char* fmt,...)", "call_args": "(ptr_id,fmt,...)", "cimguiname": "igTreeNode", - "defaults": [], + "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", "location": "imgui:539", @@ -26258,7 +26258,7 @@ "argsoriginal": "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", "call_args": "(str_id,flags,fmt,...)", "cimguiname": "igTreeNodeEx", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", "location": "imgui:543", @@ -26291,7 +26291,7 @@ "argsoriginal": "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,...)", "call_args": "(ptr_id,flags,fmt,...)", "cimguiname": "igTreeNodeEx", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", "location": "imgui:544", @@ -26326,7 +26326,7 @@ "argsoriginal": "(const char* str_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)", "call_args": "(str_id,flags,fmt,args)", "cimguiname": "igTreeNodeExV", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeExV", "location": "imgui:545", "namespace": "ImGui", @@ -26358,7 +26358,7 @@ "argsoriginal": "(const void* ptr_id,ImGuiTreeNodeFlags flags,const char* fmt,va_list args)", "call_args": "(ptr_id,flags,fmt,args)", "cimguiname": "igTreeNodeExV", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeExV", "location": "imgui:546", "namespace": "ImGui", @@ -26388,7 +26388,7 @@ "argsoriginal": "(const char* str_id,const char* fmt,va_list args)", "call_args": "(str_id,fmt,args)", "cimguiname": "igTreeNodeV", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeV", "location": "imgui:540", "namespace": "ImGui", @@ -26416,7 +26416,7 @@ "argsoriginal": "(const void* ptr_id,const char* fmt,va_list args)", "call_args": "(ptr_id,fmt,args)", "cimguiname": "igTreeNodeV", - "defaults": [], + "defaults": {}, "funcname": "TreeNodeV", "location": "imgui:541", "namespace": "ImGui", @@ -26433,7 +26433,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igTreePop", - "defaults": [], + "defaults": {}, "funcname": "TreePop", "location": "imgui:549", "namespace": "ImGui", @@ -26455,7 +26455,7 @@ "argsoriginal": "(const char* str_id)", "call_args": "(str_id)", "cimguiname": "igTreePush", - "defaults": [], + "defaults": {}, "funcname": "TreePush", "location": "imgui:547", "namespace": "ImGui", @@ -26499,7 +26499,7 @@ "argsoriginal": "(ImGuiID id)", "call_args": "(id)", "cimguiname": "igTreePushOverrideID", - "defaults": [], + "defaults": {}, "funcname": "TreePushOverrideID", "location": "imgui_internal:1986", "namespace": "ImGui", @@ -26540,7 +26540,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", - "defaults": [], + "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", "location": "imgui_internal:1806", "namespace": "ImGui", @@ -26557,7 +26557,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igUpdateMouseMovingWindowEndFrame", - "defaults": [], + "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", "location": "imgui_internal:1809", "namespace": "ImGui", @@ -26574,7 +26574,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "igUpdateMouseMovingWindowNewFrame", - "defaults": [], + "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", "location": "imgui_internal:1808", "namespace": "ImGui", @@ -26604,7 +26604,7 @@ "argsoriginal": "(ImGuiWindow* window,ImGuiWindowFlags flags,ImGuiWindow* parent_window)", "call_args": "(window,flags,parent_window)", "cimguiname": "igUpdateWindowParentAndRootLinks", - "defaults": [], + "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", "location": "imgui_internal:1779", "namespace": "ImGui", @@ -26781,7 +26781,7 @@ "argsoriginal": "(const char* prefix,bool b)", "call_args": "(prefix,b)", "cimguiname": "igValue", - "defaults": [], + "defaults": {}, "funcname": "Value", "location": "imgui:577", "namespace": "ImGui", @@ -26805,7 +26805,7 @@ "argsoriginal": "(const char* prefix,int v)", "call_args": "(prefix,v)", "cimguiname": "igValue", - "defaults": [], + "defaults": {}, "funcname": "Value", "location": "imgui:578", "namespace": "ImGui", @@ -26829,7 +26829,7 @@ "argsoriginal": "(const char* prefix,unsigned int v)", "call_args": "(prefix,v)", "cimguiname": "igValue", - "defaults": [], + "defaults": {}, "funcname": "Value", "location": "imgui:579", "namespace": "ImGui", diff --git a/generator/output/impl_definitions.json b/generator/output/impl_definitions.json index 91f0e42..86b7879 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -15,7 +15,7 @@ "argsoriginal": "(GLFWwindow* window,unsigned int c)", "call_args": "(window,c)", "cimguiname": "ImGui_ImplGlfw_CharCallback", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_CharCallback", "location": "imgui_impl_glfw:35", "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", @@ -40,7 +40,7 @@ "argsoriginal": "(GLFWwindow* window,bool install_callbacks)", "call_args": "(window,install_callbacks)", "cimguiname": "ImGui_ImplGlfw_InitForOpenGL", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOpenGL", "location": "imgui_impl_glfw:24", "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", @@ -65,7 +65,7 @@ "argsoriginal": "(GLFWwindow* window,bool install_callbacks)", "call_args": "(window,install_callbacks)", "cimguiname": "ImGui_ImplGlfw_InitForVulkan", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForVulkan", "location": "imgui_impl_glfw:25", "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", @@ -102,7 +102,7 @@ "argsoriginal": "(GLFWwindow* window,int key,int scancode,int action,int mods)", "call_args": "(window,key,scancode,action,mods)", "cimguiname": "ImGui_ImplGlfw_KeyCallback", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_KeyCallback", "location": "imgui_impl_glfw:34", "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", @@ -135,7 +135,7 @@ "argsoriginal": "(GLFWwindow* window,int button,int action,int mods)", "call_args": "(window,button,action,mods)", "cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_MouseButtonCallback", "location": "imgui_impl_glfw:32", "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", @@ -151,7 +151,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplGlfw_NewFrame", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_NewFrame", "location": "imgui_impl_glfw:27", "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", @@ -180,7 +180,7 @@ "argsoriginal": "(GLFWwindow* window,double xoffset,double yoffset)", "call_args": "(window,xoffset,yoffset)", "cimguiname": "ImGui_ImplGlfw_ScrollCallback", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_ScrollCallback", "location": "imgui_impl_glfw:33", "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", @@ -196,7 +196,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplGlfw_Shutdown", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplGlfw_Shutdown", "location": "imgui_impl_glfw:26", "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", @@ -212,7 +212,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "location": "imgui_impl_opengl2:30", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", @@ -228,7 +228,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", "location": "imgui_impl_opengl2:28", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", @@ -244,7 +244,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "location": "imgui_impl_opengl2:31", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", @@ -260,7 +260,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "location": "imgui_impl_opengl2:29", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", @@ -276,7 +276,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_Init", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Init", "location": "imgui_impl_opengl2:22", "ov_cimguiname": "ImGui_ImplOpenGL2_Init", @@ -292,7 +292,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_NewFrame", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_NewFrame", "location": "imgui_impl_opengl2:24", "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", @@ -313,7 +313,7 @@ "argsoriginal": "(ImDrawData* draw_data)", "call_args": "(draw_data)", "cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_RenderDrawData", "location": "imgui_impl_opengl2:25", "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", @@ -329,7 +329,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL2_Shutdown", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Shutdown", "location": "imgui_impl_opengl2:23", "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", @@ -345,7 +345,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "location": "imgui_impl_opengl3:36", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", @@ -361,7 +361,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateFontsTexture", "location": "imgui_impl_opengl3:34", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", @@ -377,7 +377,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "location": "imgui_impl_opengl3:37", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", @@ -393,7 +393,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "location": "imgui_impl_opengl3:35", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", @@ -432,7 +432,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_NewFrame", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_NewFrame", "location": "imgui_impl_opengl3:30", "ov_cimguiname": "ImGui_ImplOpenGL3_NewFrame", @@ -453,7 +453,7 @@ "argsoriginal": "(ImDrawData* draw_data)", "call_args": "(draw_data)", "cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_RenderDrawData", "location": "imgui_impl_opengl3:31", "ov_cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", @@ -469,7 +469,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplOpenGL3_Shutdown", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplOpenGL3_Shutdown", "location": "imgui_impl_opengl3:29", "ov_cimguiname": "ImGui_ImplOpenGL3_Shutdown", @@ -490,7 +490,7 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_InitForD3D", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForD3D", "location": "imgui_impl_sdl:25", "ov_cimguiname": "ImGui_ImplSDL2_InitForD3D", @@ -511,7 +511,7 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_InitForMetal", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForMetal", "location": "imgui_impl_sdl:26", "ov_cimguiname": "ImGui_ImplSDL2_InitForMetal", @@ -536,7 +536,7 @@ "argsoriginal": "(SDL_Window* window,void* sdl_gl_context)", "call_args": "(window,sdl_gl_context)", "cimguiname": "ImGui_ImplSDL2_InitForOpenGL", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForOpenGL", "location": "imgui_impl_sdl:23", "ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL", @@ -557,7 +557,7 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_InitForVulkan", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForVulkan", "location": "imgui_impl_sdl:24", "ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan", @@ -578,7 +578,7 @@ "argsoriginal": "(SDL_Window* window)", "call_args": "(window)", "cimguiname": "ImGui_ImplSDL2_NewFrame", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_NewFrame", "location": "imgui_impl_sdl:28", "ov_cimguiname": "ImGui_ImplSDL2_NewFrame", @@ -599,7 +599,7 @@ "argsoriginal": "(const SDL_Event* event)", "call_args": "(event)", "cimguiname": "ImGui_ImplSDL2_ProcessEvent", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_ProcessEvent", "location": "imgui_impl_sdl:29", "ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent", @@ -615,7 +615,7 @@ "argsoriginal": "()", "call_args": "()", "cimguiname": "ImGui_ImplSDL2_Shutdown", - "defaults": [], + "defaults": {}, "funcname": "ImGui_ImplSDL2_Shutdown", "location": "imgui_impl_sdl:27", "ov_cimguiname": "ImGui_ImplSDL2_Shutdown",