From fab34e3855025815877f5e84412c88ae2400000b Mon Sep 17 00:00:00 2001 From: sonoro1234 Date: Wed, 15 Apr 2026 19:36:15 +0200 Subject: [PATCH] cpp2ffi: class work 2 --- generator/cpp2ffi.lua | 240 +++++++++-- generator/output/definitions.json | 511 ++++++++++++++++++++++++ generator/output/definitions.lua | 511 ++++++++++++++++++++++++ generator/output/impl_definitions.json | 1 + generator/output/impl_definitions.lua | 1 + generator/output/structs_and_enums.json | 1 + generator/output/structs_and_enums.lua | 1 + 7 files changed, 1227 insertions(+), 39 deletions(-) diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index 51570e9..f4c8cc3 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -826,7 +826,14 @@ local function parseFunction(self,stname,itt,namespace,locat) else reftoptr = nil if ar:match("&") then - if ar:match("const") then + ar1,defa = ar:match"([^=]+)=([^=]+)" + ar1 = ar1 or ar + local typ11,name11 = ar1:match("(.+)%s([^%s]+)") + typ11 = typ11:gsub("const ","") + typ11 = typ11:gsub("&","") + if ar:match("const") and not self.opaque_structs[typ11] then + --if ar:match"Palette" then print("--w---w--w",ar,typ11,name11) end + --print("--w---w--w",ar,cname) ar = ar:gsub("&","") else ar = ar:gsub("&","*") @@ -1339,12 +1346,10 @@ local function ADDnonUDT(FP) local nonPOD = get_nonPOD(FP) get_nonPODused(FP) for k,defs in pairs(FP.defsT) do - for i, def in ipairs(defs) do + for i, def in ipairs(defs) do + local skip = nil --ret local rets = (def.ret or ""):gsub("const ","") - -- if rets:match"string" then - -- M.prtable(def) - -- end rets = rets:gsub("*","") if FP.nP_ret[def.ret] then def.conv = (def.ret):gsub("const ","") @@ -1356,6 +1361,11 @@ local function ADDnonUDT(FP) elseif def.ret=="string" then def.ret = "const char*" def.nonUDT = "string" + elseif FP.opaque_structs[rets] then + assert(def.ret:match"%*","opaque struct without pointer") + def.ret = def.ret:gsub(rets.."%s*%*",rets.."_opq") + elseif def.stdret then -- not std::string + skip = true end --args local caar,asp @@ -1378,9 +1388,24 @@ local function ADDnonUDT(FP) local typ3 = v.type:gsub(typ2,typ2.."_c") caar = caar .. "reinterpret_cast<"..v.type..">("..name..")," asp = asp .. typ3 .." "..v.name.."," + elseif v.type:match("std::string_view") then + caar = caar ..name.."," + asp = asp .. "const char* "..v.name.."," elseif v.type:match("std::string") then caar = caar .. "std::string("..name..")," asp = asp .. "const char* "..v.name.."," + elseif v.type:match("std::") then + skip = true + elseif FP.opaque_structs[typ2] then + --assert(v.type:match"%*","opaque struct arg without pointer") + if not v.type:match"%*" then + M.prtable(def) + error"opaque struct arg without pointer" + end + local newt = v.type:gsub(typ2.."%s*%*",typ2.."_opq") + local callname = v.reftoptr and "*"..name or name + caar = caar .. callname .. "," + asp = asp .. newt.." "..name .. "," else local siz = v.type:match("(%[%d*%])") or "" local typ = v.type:gsub("(%[%d*%])","") @@ -1396,9 +1421,14 @@ local function ADDnonUDT(FP) caar = "()" asp = "()" end - def.call_args_old = def.call_args - def.call_args = caar - def.args = asp + if skip then + def.skipped = skip + FP.skipped[def.ov_cimguiname] = true + else + def.call_args_old = def.call_args + def.call_args = caar + def.args = asp + end end end end @@ -1620,6 +1650,7 @@ function M.Parser() par.manuals = {} par.skipped = {} par.UDTs = {} + par.opaque_structs = {} par.save_output = save_output par.genConversors = genConversions @@ -1728,6 +1759,29 @@ function M.Parser() end end end + local function derived_check(it) + --print("checks",it.name) + --expects struct or class + assert(it.re_name=="struct_re" or it.re_name=="class_re",it.re_name) + local inistruct = clean_spaces(it.item:match("(.-)%b{}")) + --clean final: + inistruct = inistruct:gsub("%s*final%s*:",":") + local stname, derived + if inistruct:match":" then + stname,derived = inistruct:match"struct%s*([^%s:]+):(.+)" + if not stname then stname,derived = inistruct:match"class%s*([^%s:]+):(.+)" end + if derived then + derived = derived:match"(%S+)$" + else assert(inistruct:match"private" or inistruct:match"protected",inistruct) end + else + if it.re_name == "struct_re" then + stname = inistruct:match"struct%s(%S+)" + elseif it.re_name == "class_re" then + stname = inistruct:match"class%s(%S+)" + end + end + return stname, derived + end --recursive item parsing function par:parseItemsR2(txt, itparent) local itsarr,its = parseItems(txt,self.linenumdict,itparent) @@ -1779,11 +1833,29 @@ function M.Parser() end if first_private then for j=first_private,#it.childs do + --print("private discards",it.childs[j].re_name,it.childs[j].name) it.childs[j] = nil end end end + --create opaque_struct + if it.re_name == "struct_re" or it.re_name == "class_re" then + local stname,derived = derived_check(it) + if derived and derived:match"std::" then + print("--make opaque std::derived",it.name,derived) + it.opaque_struct = (itparent and itparent.name .."::" or "")..it.name + end + for j,child in ipairs(it.childs) do + if child.re_name == "vardef_re" and child.item:match"std::" then + print("--make opaque",it.name,child.item) + it.opaque_struct = (itparent and itparent.name .."::" or "")..it.name + --cant do that as function is recursive + --self.opaque_structs[it.name] = (itparent and itparent.name .."::" or "")..it.name + break + end + end + end end end return itsarr @@ -1865,8 +1937,17 @@ function M.Parser() --save_data("./preparse"..tostring(self):gsub("table: ","")..".c",txt) --]] self.itemsarr = par:parseItemsR2(txt) - save_data("./itemsarr.lua",ToStr(self.itemsarr)) + --save_data("./itemsarr.lua",ToStr(self.itemsarr)) itemsarr = self.itemsarr + ---find opaque_structs + self:Listing(itemsarr,function(it) + if it.re_name == "struct_re" or it.re_name == "class_re" then + if it.opaque_struct then + self.opaque_structs[it.name] = it.opaque_struct + end + end + end) + if next(self.opaque_structs) then M.prtable("opaque_structs:",self.opaque_structs) end end function par:printItems() @@ -1905,6 +1986,7 @@ function M.Parser() end) return table.concat(ttd,"") end + function par:clean_structR1(itst,doheader) local stru = itst.item local outtab = {} @@ -1920,7 +2002,7 @@ function M.Parser() if inistruct:match":" then stname,derived = inistruct:match"struct%s*([^%s:]+):(.+)" if not stname then stname,derived = inistruct:match"class%s*([^%s:]+):(.+)" end - print("derived------",inistruct,stname,derived) + print("derived------",inistruct,stname,derived, derived:match"(%S+)$") derived = derived:match"(%S+)$" else if itst.re_name == "struct_re" then @@ -1965,8 +2047,11 @@ function M.Parser() print("clean_struct with empty struc",stname); -- M.prtable(itst) -- if stname=="StbUndoRecord" then error"dddd" end - return "" + return "" end --here we avoid empty structs + if itst.opaque_struct then + return "", stname,nil,nil,"" + end for j,it in ipairs(itlist) do if (it.re_name == "vardef_re" or it.re_name == "functype_re") then -- or it.re_name == "union_re") then if not (it.re_name == "vardef_re" and it.item:match"static") then --skip static variables @@ -1990,14 +2075,17 @@ function M.Parser() end --clean mutable it2 = it2:gsub("mutable","") - --clean namespaces - it2 = it2:gsub("%w+::","") + --clean namespaces but not std:: + --if not it2:match"std::" then + it2 = it2:gsub("%w+::","") + --end --clean initializations if it.re_name == "vardef_re" then it2 = it2:gsub("%s*=.+;",";") it2 = it2:gsub("%b{}","") end table.insert(outtab,it2) + --print("cleanstruct",it2) table.insert(commtab,{above=it.prevcomments,sameline=it.comments})--it.comments or "") end elseif it.re_name == "union_re" then @@ -2015,20 +2103,6 @@ function M.Parser() --local decl = it.item:match"%b{}%s*([^%s}{]+)%s*;" local decl = it.item:match"^[^{}]+%b{}%s*([^%s}{]+)%s*;" --local decl1,decl2,decl3 = it.item:match"^([^{}]+%b{})(%s*[^%s}{]+%s*;)(.*)$" - --if it.name=="CodePoint" then - --print(it.name,string.format("%q",it.item), decl) - --print(it.name, decl) - --print(string.format("decl1 is %q \ndecl2 is %q \ndecl3 is %q",decl1,decl2,decl3)) - --print(decl,#decl,string.byte(decl)) - --print(it.item:find(string.char(39)),#it.item) - -- local first,endd = it.item:find(string.char(39)) - -- while first do - -- print(first) - -- print(string.format("%q",it.item:sub(first))) - -- first,endd = it.item:find(string.char(39),endd+1) - -- end - --print(string.format("%q",it.item:sub(first))) - --end local cleanst,structname,strtab,comstab,predec = self:clean_structR1(it,doheader) if not structname then --unamed nested struct --print("----generate unamed nested struct----",it.name) @@ -2043,7 +2117,7 @@ function M.Parser() table.insert(commtab,{above=it.prevcomments,sameline=it.comments})--it.comments or "") end - if doheader then + if doheader and not it.opaque_struct then local tst = "\ntypedef struct "..structname.." "..structname..";\n" if check_unique_typedefs(tst,uniques) then --table.insert(outtab,tst) @@ -2054,7 +2128,11 @@ function M.Parser() predeclare = predeclare .. predec .. cleanst end elseif it.re_name == "enum_re" then - --nop + if doheader then + local outtab1 = {} + self:enum_for_header( it, outtab1) + predeclare = predeclare .. table.concat(outtab1) + end elseif it.re_name ~= "functionD_re" and it.re_name ~= "function_re" and it.re_name ~= "operator_re" then print(it.re_name,"not processed clean_struct in",stname,it.item:sub(1,24)) --M.prtable(it) @@ -2085,6 +2163,7 @@ function M.Parser() return parnam end function par:header_text_insert(tab,txt,it) + --print("--header_text_insert",txt)--:sub(1,40)) table.insert(tab, txt) end local function function_parse(self,it) @@ -2093,6 +2172,7 @@ function M.Parser() if it.parent then if it.parent.re_name == "struct_re" or it.parent.re_name == "typedef_st_re" or it.parent.re_name == "class_re" then stname = it.parent.name + namespace = get_parents_nameC(it) elseif it.parent.re_name == "namespace_re" then namespace = get_parents_nameC(it) --it.parent.name end @@ -2111,6 +2191,48 @@ function M.Parser() self:parseFunction(stname,it,namespace,it.locat) end end + function par:enum_for_header( it,outtab) + --local enumname, enumbody = it.item:match"^%s*enum%s+([^%s;{}]+)[%s\n\r]*(%b{})" + local enumname = it.item:match"^%s*enum%s+([^%s;{}]+)" + if enumname then + --if it's an enum with int type changed + if self.structs_and_enums_table.enumtypes[enumname] then + local enumtype = self.structs_and_enums_table.enumtypes[enumname] + local enumbody = "" + local extraenums = "" + for i,v in ipairs(self.structs_and_enums_table.enums[enumname]) do + if type(v.calc_value)=="string" then + extraenums = extraenums .."\nstatic const "..enumtype.." "..v.name.." = "..v.calc_value..";" + else + enumbody = enumbody .. "\n" ..v.name .."="..v.value.."," + end + end + enumbody = "{"..enumbody.."\n}" + --table.insert(outtab,"\ntypedef enum ".. enumbody..enumname..";"..extraenums) + local it2 = "\ntypedef enum ".. enumbody..enumname..";"..extraenums + self:header_text_insert(outtab, it2, it) + else + local enumbody = it.item:match"(%b{})" + enumbody = clean_comments(enumbody) + --table.insert(outtab,"\ntypedef enum ".. enumbody..enumname..";") + local it2 = "\ntypedef enum ".. enumbody..enumname..";" + self:header_text_insert(outtab, it2, it) + end + if it.parent then + if it.parent.re_name == "namespace_re" then + local namespace = it.parent.item:match("namespace%s+(%S+)") + self.embeded_enums[enumname] = namespace.."::"..enumname + else + self.embeded_enums[enumname] = it.parent.name.."::"..enumname + end + end + else --unamed enum just repeat declaration + local cl_item = clean_comments(it.item) + --table.insert(outtab,cl_item) + self:header_text_insert(outtab, cl_item, it) + print("unnamed enum",cl_item) + end + end function par:gen_structs_and_enums() print"--------------gen_structs_and_enums" --M.prtable(self.typenames) @@ -2118,10 +2240,13 @@ function M.Parser() local outtabpre = {} local typedefs_table = {} self.embeded_enums = {} - --local uniques = {} + --local uniques = {} local processer = function(it) - --print("gen_structs_and_enums",it.re_name, it.name) + -- if it.re_name == "enum_re" then + -- it.name = it.item:match"^%s*enum%s+([^%s;{}]+)" + -- end + -- print("gen_structs_and_enums",it.re_name, it.name) --table.insert(outtab,it.re_name.." "..(it.name or "unkn ")) if it.re_name == "typedef_re" or it.re_name == "functypedef_re" or it.re_name == "vardef_re" then if not it.parent or it.parent.re_name=="namespace_re" then @@ -2187,6 +2312,12 @@ function M.Parser() end end elseif it.re_name == "enum_re" then + --dont insert child enums as they are inserted before parent struct + if not (it.parent and (it.parent.re_name == "struct_re" or it.parent.re_name == "class_re")) then + --self:header_text_insert(outtab, predec .. cleanst, it) + self:enum_for_header(it,outtab) + end + --[[ --local enumname, enumbody = it.item:match"^%s*enum%s+([^%s;{}]+)[%s\n\r]*(%b{})" local enumname = it.item:match"^%s*enum%s+([^%s;{}]+)" if enumname then @@ -2227,8 +2358,14 @@ function M.Parser() self:header_text_insert(outtab, cl_item, it) print("unnamed enum",cl_item) end + --]] elseif it.re_name == "struct_re" or it.re_name == "typedef_st_re" or it.re_name == "class_re" then + if it.opaque_struct then + self:header_text_insert(outtab, "\ntypedef struct "..it.name.."* "..it.name.."_opq;\n",it) + else + --self:header_text_insert(outtab,"\n///inittt "..it.name.."\n", it) local cleanst,structname,strtab,comstab,predec = self:clean_structR1(it,true) + --self:header_text_insert(outtab,"\n///endttt "..it.name.."\n", it) if not structname then print("NO NAME",cleanst,it.item) end --if not void stname or templated if structname and not self.typenames[structname] then @@ -2265,6 +2402,7 @@ function M.Parser() end end end + end --opaque_struct elseif it.re_name == "namespace_re" or it.re_name == "union_re" or it.re_name == "functype_re" then --nop elseif it.re_name == "functionD_re" or it.re_name == "function_re" then @@ -2287,6 +2425,10 @@ function M.Parser() -- end --check arg detection failure if no name in function declaration check_arg_detection(self.defsT,self.typedefs_dict) + --table.insert(outtabpre,1,"\n/////outtabpre start\n") + --table.insert(outtabpre,"\n/////outtabpre end\n") + --table.insert(outtab,1,"\n/////outtab start\n") + --table.insert(outtab,"\n/////outtab end\n") local outtabprest, outtabst = table.concat(outtabpre,""),table.concat(outtab,"") outtabprest = M.header_subs_nonPOD(self,outtabprest) outtabst = M.header_subs_nonPOD(self,outtabst) @@ -2309,6 +2451,7 @@ function M.Parser() table.insert(outtab,{type=t1..t2,name=name,comment=comment}) else --split type name1,name2; in several lines + --print(line) local typen,rest = line:match("%s*([^,]+)%s(%S+[,;])") --print(typen,"rest:",rest) if not typen then -- Lets try Type*name @@ -2406,7 +2549,7 @@ function M.Parser() par.enums_for_table = enums_for_table function par:gen_structs_and_enums_table() print"--------------gen_structs_and_enums_table" - local outtab = {enums={},structs={},locations={},enumtypes={},struct_comments={},enum_comments={}} + local outtab = {enums={},structs={},locations={},enumtypes={},struct_comments={},enum_comments={},opaque_structs={}} --self.typedefs_table = {} local enumsordered = {} unnamed_enum_counter = 0 @@ -2469,6 +2612,7 @@ function M.Parser() enums_for_table(it, outtab, enumsordered) elseif it.re_name == "struct_re" or it.re_name == "typedef_st_re" or it.re_name == "class_re" then local cleanst,structname,strtab,comstab = self:clean_structR1(it) + if it.name then outtab.opaque_structs[it.name] = it.opaque_struct end --if not void stname or templated if not structname then print("NO NAME",cleanst,it.item) end if structname and not self.typenames[structname] then @@ -2476,17 +2620,25 @@ function M.Parser() outtab.struct_comments[structname] = {sameline=it.comments,above=it.prevcomments} outtab.struct_comments[structname] = next(outtab.struct_comments[structname]) and outtab.struct_comments[structname] or nil outtab.locations[structname] = it.locat + if strtab then for j=3,#strtab-1 do self:parse_struct_line(strtab[j],outtab.structs[structname],comstab[j]) end + end + -- if structname == "Change" then + -- print(it.item) + -- M.prtable(outtab.structs[structname]) + -- end else --templated struct if structname then print("saving templated struct",structname) self.templated_structs[structname] = {} + if strtab then for j=3,#strtab-1 do self:parse_struct_line(strtab[j],self.templated_structs[structname],comstab[j]) end + end --M.prtable(self.templated_structs[structname]) else print("skipped unnamed struct",structname) @@ -3074,7 +3226,7 @@ local function ImGui_f_implementation(def) table.insert(outtab,"CIMGUI_API".." "..def.ret.." "..def.ov_cimguiname..def.args.."\n") table.insert(outtab,"{\n") local namespace = def.namespace and def.namespace.."::" or "" - namespace = def.is_static_function and namespace..def.stname.."::" or namespace + --namespace = def.is_static_function and namespace..def.stname.."::" or namespace if def.isvararg then local call_args = def.call_args:gsub("%.%.%.","args") table.insert(outtab," va_list args;\n") @@ -3167,7 +3319,9 @@ local function func_implementation(FP) custom = FP.custom_implementation(outtab, def, FP) end local manual = FP.get_manuals(def) - if not custom and not manual and not def.templated and not FP.get_skipped(def) then + if not custom and not manual and not def.templated and not FP.get_skipped(def) + and not (FP.opaque_structs[def.stname] and not def.is_static_function) + then if def.constructor then local tab = {} assert(def.stname ~= "","constructor without struct") @@ -3232,10 +3386,17 @@ local function func_header_generate_structs(FP) table_do_sorted(FP.embeded_enums,function(k,v) table.insert(outtab,"typedef "..v.." "..k..";\n") end) --table.insert(outtab, "\n//////////templates\n") table_do_sorted(FP.templates,function(ttype,v) - table_do_sorted(v,function(ttypein,te) - local ttype2 = ttype:gsub("::","_") --std::string - table.insert(outtab,"typedef "..ttype.."<"..ttypein.."> "..ttype2.."_"..te..";\n") - end) + --print("func_header_generate_structs",ttype) + if not (ttype == "std::function") then + table_do_sorted(v,function(ttypein,te) + local ttype2 = ttype:gsub("::","_") --std::string + table.insert(outtab,"typedef "..ttype.."<"..ttypein.."> "..ttype2.."_"..te..";\n") + end) + end + end) + + table_do_sorted(FP.opaque_structs,function(k,v) + table.insert(outtab,"typedef const "..v.."* "..k.."_opq;\n") end) --table.insert(outtab, "\n//////////end func header\n") return outtab @@ -3258,7 +3419,8 @@ local function func_header_generate_funcs(FP) custom = FP.custom_header(outtab, def) end local manual = FP.get_manuals(def) - if not custom and not manual and not def.templated and not FP.get_skipped(def) then + if not custom and not manual and not def.templated and not FP.get_skipped(def) and + not (FP.opaque_structs[def.stname] and not def.is_static_function) then local addcoment = "" --def.comment or "" local empty = def.args:match("^%(%)") --no args diff --git a/generator/output/definitions.json b/generator/output/definitions.json index 37a0b8b..dcf57b7 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -15,6 +15,7 @@ "defaults": {}, "funcname": "ClearAllBits", "location": "imgui_internal:659", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_ClearAllBits", "ret": "void", "signature": "()", @@ -42,6 +43,7 @@ "defaults": {}, "funcname": "ClearBit", "location": "imgui_internal:663", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_ClearBit", "ret": "void", "signature": "(int)", @@ -61,6 +63,7 @@ "defaults": {}, "funcname": "ImBitArray", "location": "imgui_internal:658", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_ImBitArray", "signature": "()", "stname": "ImBitArray", @@ -83,6 +86,7 @@ "defaults": {}, "funcname": "SetAllBits", "location": "imgui_internal:660", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_SetAllBits", "ret": "void", "signature": "()", @@ -110,6 +114,7 @@ "defaults": {}, "funcname": "SetBit", "location": "imgui_internal:662", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_SetBit", "ret": "void", "signature": "(int)", @@ -141,6 +146,7 @@ "defaults": {}, "funcname": "SetBitRange", "location": "imgui_internal:664", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_SetBitRange", "ret": "void", "signature": "(int,int)", @@ -168,6 +174,7 @@ "defaults": {}, "funcname": "TestBit", "location": "imgui_internal:661", + "namespace": "ImBitArray", "ov_cimguiname": "ImBitArray_TestBit", "ret": "bool", "signature": "(int)const", @@ -212,6 +219,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui_internal:674", + "namespace": "ImBitVector", "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -238,6 +246,7 @@ "defaults": {}, "funcname": "ClearBit", "location": "imgui_internal:677", + "namespace": "ImBitVector", "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -264,6 +273,7 @@ "defaults": {}, "funcname": "Create", "location": "imgui_internal:673", + "namespace": "ImBitVector", "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -290,6 +300,7 @@ "defaults": {}, "funcname": "SetBit", "location": "imgui_internal:676", + "namespace": "ImBitVector", "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -316,6 +327,7 @@ "defaults": {}, "funcname": "TestBit", "location": "imgui_internal:675", + "namespace": "ImBitVector", "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -342,6 +354,7 @@ "defaults": {}, "funcname": "alloc_chunk", "location": "imgui_internal:811", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_alloc_chunk", "ret": "T*", "signature": "(size_t)", @@ -365,6 +378,7 @@ "defaults": {}, "funcname": "begin", "location": "imgui_internal:812", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_begin", "ret": "T*", "signature": "()", @@ -392,6 +406,7 @@ "defaults": {}, "funcname": "chunk_size", "location": "imgui_internal:814", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_chunk_size", "ret": "int", "signature": "(const T*)", @@ -415,6 +430,7 @@ "defaults": {}, "funcname": "clear", "location": "imgui_internal:808", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_clear", "ret": "void", "signature": "()", @@ -438,6 +454,7 @@ "defaults": {}, "funcname": "empty", "location": "imgui_internal:809", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_empty", "ret": "bool", "signature": "()const", @@ -461,6 +478,7 @@ "defaults": {}, "funcname": "end", "location": "imgui_internal:815", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_end", "ret": "T*", "signature": "()", @@ -488,6 +506,7 @@ "defaults": {}, "funcname": "next_chunk", "location": "imgui_internal:813", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_next_chunk", "ret": "T*", "signature": "(T*)", @@ -515,6 +534,7 @@ "defaults": {}, "funcname": "offset_from_ptr", "location": "imgui_internal:816", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_offset_from_ptr", "ret": "int", "signature": "(const T*)", @@ -542,6 +562,7 @@ "defaults": {}, "funcname": "ptr_from_offset", "location": "imgui_internal:817", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_ptr_from_offset", "ret": "T*", "signature": "(int)", @@ -565,6 +586,7 @@ "defaults": {}, "funcname": "size", "location": "imgui_internal:810", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_size", "ret": "int", "signature": "()const", @@ -593,6 +615,7 @@ "defaults": {}, "funcname": "swap", "location": "imgui_internal:818", + "namespace": "ImChunkStream", "ov_cimguiname": "ImChunkStream_swap", "ret": "void", "signature": "(ImChunkStream_T *)", @@ -632,6 +655,7 @@ "funcname": "HSV", "is_static_function": true, "location": "imgui:3114", + "namespace": "ImColor", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "ImColor_c", @@ -651,6 +675,7 @@ "defaults": {}, "funcname": "ImColor", "location": "imgui:3104", + "namespace": "ImColor", "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -685,6 +710,7 @@ }, "funcname": "ImColor", "location": "imgui:3105", + "namespace": "ImColor", "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -705,6 +731,7 @@ "defaults": {}, "funcname": "ImColor", "location": "imgui:3106", + "namespace": "ImColor", "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -739,6 +766,7 @@ }, "funcname": "ImColor", "location": "imgui:3107", + "namespace": "ImColor", "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -759,6 +787,7 @@ "defaults": {}, "funcname": "ImColor", "location": "imgui:3108", + "namespace": "ImColor", "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -798,6 +827,7 @@ }, "funcname": "SetHSV", "location": "imgui:3113", + "namespace": "ImColor", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -840,6 +870,7 @@ "defaults": {}, "funcname": "GetTexID", "location": "imgui:3328", + "namespace": "ImDrawCmd", "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -858,6 +889,7 @@ "defaults": {}, "funcname": "ImDrawCmd", "location": "imgui:3324", + "namespace": "ImDrawCmd", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -895,6 +927,7 @@ "defaults": {}, "funcname": "ImDrawDataBuilder", "location": "imgui_internal:903", + "namespace": "ImDrawDataBuilder", "ov_cimguiname": "ImDrawDataBuilder_ImDrawDataBuilder", "signature": "()", "stname": "ImDrawDataBuilder" @@ -940,6 +973,7 @@ "defaults": {}, "funcname": "AddDrawList", "location": "imgui:3593", + "namespace": "ImDrawData", "ov_cimguiname": "ImDrawData_AddDrawList", "ret": "void", "signature": "(ImDrawList*)", @@ -962,6 +996,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui:3592", + "namespace": "ImDrawData", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -984,6 +1019,7 @@ "defaults": {}, "funcname": "DeIndexAllBuffers", "location": "imgui:3594", + "namespace": "ImDrawData", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -1002,6 +1038,7 @@ "defaults": {}, "funcname": "ImDrawData", "location": "imgui:3591", + "namespace": "ImDrawData", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -1027,6 +1064,7 @@ "defaults": {}, "funcname": "ScaleClipRects", "location": "imgui:3595", + "namespace": "ImDrawData", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -1065,6 +1103,7 @@ "defaults": {}, "funcname": "ImDrawListSharedData", "location": "imgui_internal:893", + "namespace": "ImDrawListSharedData", "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "signature": "()", "stname": "ImDrawListSharedData" @@ -1090,6 +1129,7 @@ "defaults": {}, "funcname": "SetCircleTessellationMaxError", "location": "imgui_internal:895", + "namespace": "ImDrawListSharedData", "ov_cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "ret": "void", "signature": "(float)", @@ -1133,6 +1173,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui:3372", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -1155,6 +1196,7 @@ "defaults": {}, "funcname": "ClearFreeMemory", "location": "imgui:3373", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -1173,6 +1215,7 @@ "defaults": {}, "funcname": "ImDrawListSplitter", "location": "imgui:3370", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -1198,6 +1241,7 @@ "defaults": {}, "funcname": "Merge", "location": "imgui:3375", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -1228,6 +1272,7 @@ "defaults": {}, "funcname": "SetCurrentChannel", "location": "imgui:3376", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1258,6 +1303,7 @@ "defaults": {}, "funcname": "Split", "location": "imgui:3374", + "namespace": "ImDrawListSplitter", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1331,6 +1377,7 @@ }, "funcname": "AddBezierCubic", "location": "imgui:3477", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1379,6 +1426,7 @@ }, "funcname": "AddBezierQuadratic", "location": "imgui:3478", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1415,6 +1463,7 @@ }, "funcname": "AddCallback", "location": "imgui:3520", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*,size_t)", @@ -1460,6 +1509,7 @@ }, "funcname": "AddCircle", "location": "imgui:3469", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1500,6 +1550,7 @@ }, "funcname": "AddCircleFilled", "location": "imgui:3470", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1534,6 +1585,7 @@ "defaults": {}, "funcname": "AddConcavePolyFilled", "location": "imgui:3485", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddConcavePolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1568,6 +1620,7 @@ "defaults": {}, "funcname": "AddConvexPolyFilled", "location": "imgui:3484", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1590,6 +1643,7 @@ "defaults": {}, "funcname": "AddDrawCmd", "location": "imgui:3523", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -1640,6 +1694,7 @@ }, "funcname": "AddEllipse", "location": "imgui:3473", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddEllipse", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", @@ -1685,6 +1740,7 @@ }, "funcname": "AddEllipseFilled", "location": "imgui:3474", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddEllipseFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", @@ -1735,6 +1791,7 @@ }, "funcname": "AddImage", "location": "imgui:3491", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1803,6 +1860,7 @@ }, "funcname": "AddImageQuad", "location": "imgui:3492", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1859,6 +1917,7 @@ }, "funcname": "AddImageRounded", "location": "imgui:3493", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1899,6 +1958,7 @@ }, "funcname": "AddLine", "location": "imgui:3461", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1943,6 +2003,7 @@ }, "funcname": "AddNgon", "location": "imgui:3471", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1981,6 +2042,7 @@ "defaults": {}, "funcname": "AddNgonFilled", "location": "imgui:3472", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -2023,6 +2085,7 @@ "defaults": {}, "funcname": "AddPolyline", "location": "imgui:3483", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -2071,6 +2134,7 @@ }, "funcname": "AddQuad", "location": "imgui:3465", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2113,6 +2177,7 @@ "defaults": {}, "funcname": "AddQuadFilled", "location": "imgui:3466", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2163,6 +2228,7 @@ }, "funcname": "AddRect", "location": "imgui:3462", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -2208,6 +2274,7 @@ }, "funcname": "AddRectFilled", "location": "imgui:3463", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -2254,6 +2321,7 @@ "defaults": {}, "funcname": "AddRectFilledMultiColor", "location": "imgui:3464", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -2294,6 +2362,7 @@ }, "funcname": "AddText", "location": "imgui:3475", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -2350,6 +2419,7 @@ }, "funcname": "AddText", "location": "imgui:3476", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -2394,6 +2464,7 @@ }, "funcname": "AddTriangle", "location": "imgui:3467", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2432,6 +2503,7 @@ "defaults": {}, "funcname": "AddTriangleFilled", "location": "imgui:3468", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2454,6 +2526,7 @@ "defaults": {}, "funcname": "ChannelsMerge", "location": "imgui:3533", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -2480,6 +2553,7 @@ "defaults": {}, "funcname": "ChannelsSetCurrent", "location": "imgui:3534", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2506,6 +2580,7 @@ "defaults": {}, "funcname": "ChannelsSplit", "location": "imgui:3532", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2528,6 +2603,7 @@ "defaults": {}, "funcname": "CloneOutput", "location": "imgui:3524", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2551,6 +2627,7 @@ "defaults": {}, "funcname": "GetClipRectMax", "location": "imgui:3452", + "namespace": "ImDrawList", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "ImVec2_c", @@ -2575,6 +2652,7 @@ "defaults": {}, "funcname": "GetClipRectMin", "location": "imgui:3451", + "namespace": "ImDrawList", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "ImVec2_c", @@ -2599,6 +2677,7 @@ "defaults": {}, "funcname": "ImDrawList", "location": "imgui:3443", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2642,6 +2721,7 @@ }, "funcname": "PathArcTo", "location": "imgui:3504", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2680,6 +2760,7 @@ "defaults": {}, "funcname": "PathArcToFast", "location": "imgui:3505", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2720,6 +2801,7 @@ }, "funcname": "PathBezierCubicCurveTo", "location": "imgui:3507", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2756,6 +2838,7 @@ }, "funcname": "PathBezierQuadraticCurveTo", "location": "imgui:3508", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -2778,6 +2861,7 @@ "defaults": {}, "funcname": "PathClear", "location": "imgui:3498", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -2826,6 +2910,7 @@ }, "funcname": "PathEllipticalArcTo", "location": "imgui:3506", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathEllipticalArcTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,float,float,int)", @@ -2852,6 +2937,7 @@ "defaults": {}, "funcname": "PathFillConcave", "location": "imgui:3502", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathFillConcave", "ret": "void", "signature": "(ImU32)", @@ -2878,6 +2964,7 @@ "defaults": {}, "funcname": "PathFillConvex", "location": "imgui:3501", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2904,6 +2991,7 @@ "defaults": {}, "funcname": "PathLineTo", "location": "imgui:3499", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2930,6 +3018,7 @@ "defaults": {}, "funcname": "PathLineToMergeDuplicate", "location": "imgui:3500", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2971,6 +3060,7 @@ }, "funcname": "PathRect", "location": "imgui:3509", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -3008,6 +3098,7 @@ }, "funcname": "PathStroke", "location": "imgui:3503", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -3030,6 +3121,7 @@ "defaults": {}, "funcname": "PopClipRect", "location": "imgui:3448", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -3052,6 +3144,7 @@ "defaults": {}, "funcname": "PopTexture", "location": "imgui:3450", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PopTexture", "ret": "void", "signature": "()", @@ -3110,6 +3203,7 @@ "defaults": {}, "funcname": "PrimQuadUV", "location": "imgui:3543", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3144,6 +3238,7 @@ "defaults": {}, "funcname": "PrimRect", "location": "imgui:3541", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3186,6 +3281,7 @@ "defaults": {}, "funcname": "PrimRectUV", "location": "imgui:3542", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -3216,6 +3312,7 @@ "defaults": {}, "funcname": "PrimReserve", "location": "imgui:3539", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -3246,6 +3343,7 @@ "defaults": {}, "funcname": "PrimUnreserve", "location": "imgui:3540", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -3280,6 +3378,7 @@ "defaults": {}, "funcname": "PrimVtx", "location": "imgui:3546", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3306,6 +3405,7 @@ "defaults": {}, "funcname": "PrimWriteIdx", "location": "imgui:3545", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -3340,6 +3440,7 @@ "defaults": {}, "funcname": "PrimWriteVtx", "location": "imgui:3544", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3376,6 +3477,7 @@ }, "funcname": "PushClipRect", "location": "imgui:3446", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", @@ -3398,6 +3500,7 @@ "defaults": {}, "funcname": "PushClipRectFullScreen", "location": "imgui:3447", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -3424,6 +3527,7 @@ "defaults": {}, "funcname": "PushTexture", "location": "imgui:3449", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList_PushTexture", "ret": "void", "signature": "(ImTextureRef)", @@ -3450,6 +3554,7 @@ "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", "location": "imgui:3569", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -3472,6 +3577,7 @@ "defaults": {}, "funcname": "_ClearFreeMemory", "location": "imgui:3562", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -3494,6 +3600,7 @@ "defaults": {}, "funcname": "_OnChangedClipRect", "location": "imgui:3565", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -3516,6 +3623,7 @@ "defaults": {}, "funcname": "_OnChangedTexture", "location": "imgui:3566", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__OnChangedTexture", "ret": "void", "signature": "()", @@ -3538,6 +3646,7 @@ "defaults": {}, "funcname": "_OnChangedVtxOffset", "location": "imgui:3567", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -3580,6 +3689,7 @@ "defaults": {}, "funcname": "_PathArcToFastEx", "location": "imgui:3570", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -3622,6 +3732,7 @@ "defaults": {}, "funcname": "_PathArcToN", "location": "imgui:3571", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -3644,6 +3755,7 @@ "defaults": {}, "funcname": "_PopUnusedDrawCmd", "location": "imgui:3563", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -3666,6 +3778,7 @@ "defaults": {}, "funcname": "_ResetForNewFrame", "location": "imgui:3561", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", @@ -3692,6 +3805,7 @@ "defaults": {}, "funcname": "_SetDrawListSharedData", "location": "imgui:3560", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__SetDrawListSharedData", "ret": "void", "signature": "(ImDrawListSharedData*)", @@ -3718,6 +3832,7 @@ "defaults": {}, "funcname": "_SetTexture", "location": "imgui:3568", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__SetTexture", "ret": "void", "signature": "(ImTextureRef)", @@ -3740,6 +3855,7 @@ "defaults": {}, "funcname": "_TryMergeDrawCmds", "location": "imgui:3564", + "namespace": "ImDrawList", "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -3779,6 +3895,7 @@ "defaults": {}, "funcname": "ImFontAtlasBuilder", "location": "imgui_internal:4203", + "namespace": "ImFontAtlasBuilder", "ov_cimguiname": "ImFontAtlasBuilder_ImFontAtlasBuilder", "signature": "()", "stname": "ImFontAtlasBuilder" @@ -3816,6 +3933,7 @@ "defaults": {}, "funcname": "ImFontAtlasRect", "location": "imgui:3773", + "namespace": "ImFontAtlasRect", "ov_cimguiname": "ImFontAtlasRect_ImFontAtlasRect", "signature": "()", "stname": "ImFontAtlasRect" @@ -3871,6 +3989,7 @@ }, "funcname": "AddCustomRect", "location": "imgui:3886", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddCustomRect", "ret": "ImFontAtlasRectId", "signature": "(int,int,ImFontAtlasRect*)", @@ -3897,6 +4016,7 @@ "defaults": {}, "funcname": "AddFont", "location": "imgui:3808", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3925,6 +4045,7 @@ }, "funcname": "AddFontDefault", "location": "imgui:3809", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3953,6 +4074,7 @@ }, "funcname": "AddFontDefaultBitmap", "location": "imgui:3811", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontDefaultBitmap", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3981,6 +4103,7 @@ }, "funcname": "AddFontDefaultVector", "location": "imgui:3810", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontDefaultVector", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -4023,6 +4146,7 @@ }, "funcname": "AddFontFromFileTTF", "location": "imgui:3812", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -4065,6 +4189,7 @@ }, "funcname": "AddFontFromMemoryCompressedBase85TTF", "location": "imgui:3815", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -4111,6 +4236,7 @@ }, "funcname": "AddFontFromMemoryCompressedTTF", "location": "imgui:3814", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -4157,6 +4283,7 @@ }, "funcname": "AddFontFromMemoryTTF", "location": "imgui:3813", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -4179,6 +4306,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui:3818", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -4201,6 +4329,7 @@ "defaults": {}, "funcname": "ClearFonts", "location": "imgui:3824", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -4223,6 +4352,7 @@ "defaults": {}, "funcname": "ClearInputData", "location": "imgui:3823", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -4245,6 +4375,7 @@ "defaults": {}, "funcname": "ClearTexData", "location": "imgui:3825", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -4267,6 +4398,7 @@ "defaults": {}, "funcname": "CompactCache", "location": "imgui:3819", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_CompactCache", "ret": "void", "signature": "()", @@ -4297,6 +4429,7 @@ "defaults": {}, "funcname": "GetCustomRect", "location": "imgui:3888", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_GetCustomRect", "ret": "bool", "signature": "(ImFontAtlasRectId,ImFontAtlasRect*)const", @@ -4319,6 +4452,7 @@ "defaults": {}, "funcname": "GetGlyphRangesDefault", "location": "imgui:3849", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -4337,6 +4471,7 @@ "defaults": {}, "funcname": "ImFontAtlas", "location": "imgui:3806", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -4362,6 +4497,7 @@ "defaults": {}, "funcname": "RemoveCustomRect", "location": "imgui:3887", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_RemoveCustomRect", "ret": "void", "signature": "(ImFontAtlasRectId)", @@ -4388,6 +4524,7 @@ "defaults": {}, "funcname": "RemoveFont", "location": "imgui:3816", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_RemoveFont", "ret": "void", "signature": "(ImFont*)", @@ -4414,6 +4551,7 @@ "defaults": {}, "funcname": "SetFontLoader", "location": "imgui:3820", + "namespace": "ImFontAtlas", "ov_cimguiname": "ImFontAtlas_SetFontLoader", "ret": "void", "signature": "(const ImFontLoader*)", @@ -4457,6 +4595,7 @@ "defaults": {}, "funcname": "ClearOutputData", "location": "imgui:3981", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_ClearOutputData", "ret": "void", "signature": "()", @@ -4483,6 +4622,7 @@ "defaults": {}, "funcname": "FindGlyph", "location": "imgui:3982", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_FindGlyph", "ret": "ImFontGlyph*", "signature": "(ImWchar)", @@ -4509,6 +4649,7 @@ "defaults": {}, "funcname": "FindGlyphNoFallback", "location": "imgui:3983", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_FindGlyphNoFallback", "ret": "ImFontGlyph*", "signature": "(ImWchar)", @@ -4535,6 +4676,7 @@ "defaults": {}, "funcname": "GetCharAdvance", "location": "imgui:3984", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_GetCharAdvance", "ret": "float", "signature": "(ImWchar)", @@ -4553,6 +4695,7 @@ "defaults": {}, "funcname": "ImFontBaked", "location": "imgui:3980", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_ImFontBaked", "signature": "()", "stname": "ImFontBaked" @@ -4578,6 +4721,7 @@ "defaults": {}, "funcname": "IsGlyphLoaded", "location": "imgui:3985", + "namespace": "ImFontBaked", "ov_cimguiname": "ImFontBaked_IsGlyphLoaded", "ret": "bool", "signature": "(ImWchar)", @@ -4616,6 +4760,7 @@ "defaults": {}, "funcname": "ImFontConfig", "location": "imgui:3724", + "namespace": "ImFontConfig", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -4661,6 +4806,7 @@ "defaults": {}, "funcname": "AddChar", "location": "imgui:3753", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -4687,6 +4833,7 @@ "defaults": {}, "funcname": "AddRanges", "location": "imgui:3755", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -4719,6 +4866,7 @@ }, "funcname": "AddText", "location": "imgui:3754", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -4745,6 +4893,7 @@ "defaults": {}, "funcname": "BuildRanges", "location": "imgui:3756", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -4767,6 +4916,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui:3750", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4793,6 +4943,7 @@ "defaults": {}, "funcname": "GetBit", "location": "imgui:3751", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4811,6 +4962,7 @@ "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", "location": "imgui:3749", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4836,6 +4988,7 @@ "defaults": {}, "funcname": "SetBit", "location": "imgui:3752", + "namespace": "ImFontGlyphRangesBuilder", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4874,6 +5027,7 @@ "defaults": {}, "funcname": "ImFontGlyph", "location": "imgui:3740", + "namespace": "ImFontGlyph", "ov_cimguiname": "ImFontGlyph_ImFontGlyph", "signature": "()", "stname": "ImFontGlyph" @@ -4911,6 +5065,7 @@ "defaults": {}, "funcname": "ImFontLoader", "location": "imgui_internal:4106", + "namespace": "ImFontLoader", "ov_cimguiname": "ImFontLoader_ImFontLoader", "signature": "()", "stname": "ImFontLoader" @@ -4960,6 +5115,7 @@ "defaults": {}, "funcname": "AddRemapChar", "location": "imgui:4046", + "namespace": "ImFont", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar)", @@ -5010,6 +5166,7 @@ }, "funcname": "CalcTextSizeA", "location": "imgui:4036", + "namespace": "ImFont", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "ImVec2_c", @@ -5049,6 +5206,7 @@ "defaults": {}, "funcname": "CalcWordWrapPosition", "location": "imgui:4037", + "namespace": "ImFont", "ov_cimguiname": "ImFont_CalcWordWrapPosition", "ret": "const char*", "signature": "(float,const char*,const char*,float)", @@ -5071,6 +5229,7 @@ "defaults": {}, "funcname": "ClearOutputData", "location": "imgui:4045", + "namespace": "ImFont", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -5093,6 +5252,7 @@ "defaults": {}, "funcname": "GetDebugName", "location": "imgui:4030", + "namespace": "ImFont", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -5125,6 +5285,7 @@ }, "funcname": "GetFontBaked", "location": "imgui:4035", + "namespace": "ImFont", "ov_cimguiname": "ImFont_GetFontBaked", "ret": "ImFontBaked*", "signature": "(float,float)", @@ -5143,6 +5304,7 @@ "defaults": {}, "funcname": "ImFont", "location": "imgui:4026", + "namespace": "ImFont", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -5168,6 +5330,7 @@ "defaults": {}, "funcname": "IsGlyphInFont", "location": "imgui:4028", + "namespace": "ImFont", "ov_cimguiname": "ImFont_IsGlyphInFont", "ret": "bool", "signature": "(ImWchar)", @@ -5198,6 +5361,7 @@ "defaults": {}, "funcname": "IsGlyphRangeUnused", "location": "imgui:4047", + "namespace": "ImFont", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -5220,6 +5384,7 @@ "defaults": {}, "funcname": "IsLoaded", "location": "imgui:4029", + "namespace": "ImFont", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -5268,6 +5433,7 @@ }, "funcname": "RenderChar", "location": "imgui:4038", + "namespace": "ImFont", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,ImWchar,const ImVec4*)", @@ -5329,6 +5495,7 @@ }, "funcname": "RenderText", "location": "imgui:4039", + "namespace": "ImFont", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,ImDrawTextFlags)", @@ -5368,6 +5535,7 @@ "defaults": {}, "funcname": "ImGuiBoxSelectState", "location": "imgui_internal:1918", + "namespace": "ImGuiBoxSelectState", "ov_cimguiname": "ImGuiBoxSelectState_ImGuiBoxSelectState", "signature": "()", "stname": "ImGuiBoxSelectState" @@ -5405,6 +5573,7 @@ "defaults": {}, "funcname": "ImGuiComboPreviewData", "location": "imgui_internal:1177", + "namespace": "ImGuiComboPreviewData", "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", "signature": "()", "stname": "ImGuiComboPreviewData" @@ -5442,6 +5611,7 @@ "defaults": {}, "funcname": "ImGuiContextHook", "location": "imgui_internal:2377", + "namespace": "ImGuiContextHook", "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5484,6 +5654,7 @@ "defaults": {}, "funcname": "ImGuiContext", "location": "imgui_internal:2793", + "namespace": "ImGuiContext", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5522,6 +5693,7 @@ "defaults": {}, "funcname": "ImGuiDebugAllocInfo", "location": "imgui_internal:2305", + "namespace": "ImGuiDebugAllocInfo", "ov_cimguiname": "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", "signature": "()", "stname": "ImGuiDebugAllocInfo" @@ -5559,6 +5731,7 @@ "defaults": {}, "funcname": "ImGuiDebugItemPathQuery", "location": "imgui_internal:2348", + "namespace": "ImGuiDebugItemPathQuery", "ov_cimguiname": "ImGuiDebugItemPathQuery_ImGuiDebugItemPathQuery", "signature": "()", "stname": "ImGuiDebugItemPathQuery" @@ -5596,6 +5769,7 @@ "defaults": {}, "funcname": "ImGuiDockContext", "location": "imgui_internal:2119", + "namespace": "ImGuiDockContext", "ov_cimguiname": "ImGuiDockContext_ImGuiDockContext", "signature": "()", "stname": "ImGuiDockContext" @@ -5638,6 +5812,7 @@ "defaults": {}, "funcname": "ImGuiDockNode", "location": "imgui_internal:2072", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_ImGuiDockNode", "signature": "(ImGuiID)", "stname": "ImGuiDockNode" @@ -5659,6 +5834,7 @@ "defaults": {}, "funcname": "IsCentralNode", "location": "imgui_internal:2077", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_IsCentralNode", "ret": "bool", "signature": "()const", @@ -5681,6 +5857,7 @@ "defaults": {}, "funcname": "IsDockSpace", "location": "imgui_internal:2075", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_IsDockSpace", "ret": "bool", "signature": "()const", @@ -5703,6 +5880,7 @@ "defaults": {}, "funcname": "IsEmpty", "location": "imgui_internal:2082", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_IsEmpty", "ret": "bool", "signature": "()const", @@ -5725,6 +5903,7 @@ "defaults": {}, "funcname": "IsFloatingNode", "location": "imgui_internal:2076", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_IsFloatingNode", "ret": "bool", "signature": "()const", @@ -5747,6 +5926,7 @@ "defaults": {}, "funcname": "IsHiddenTabBar", "location": "imgui_internal:2078", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_IsHiddenTabBar", "ret": "bool", "signature": "()const", @@ -5769,6 +5949,7 @@ "defaults": {}, "funcname": "IsLeafNode", "location": "imgui_internal:2081", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_IsLeafNode", "ret": "bool", "signature": "()const", @@ -5791,6 +5972,7 @@ "defaults": {}, "funcname": "IsNoTabBar", "location": "imgui_internal:2079", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_IsNoTabBar", "ret": "bool", "signature": "()const", @@ -5813,6 +5995,7 @@ "defaults": {}, "funcname": "IsRootNode", "location": "imgui_internal:2074", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_IsRootNode", "ret": "bool", "signature": "()const", @@ -5835,6 +6018,7 @@ "defaults": {}, "funcname": "IsSplitNode", "location": "imgui_internal:2080", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_IsSplitNode", "ret": "bool", "signature": "()const", @@ -5858,6 +6042,7 @@ "defaults": {}, "funcname": "Rect", "location": "imgui_internal:2083", + "namespace": "ImGuiDockNode", "nonUDT": 1, "ov_cimguiname": "ImGuiDockNode_Rect", "ret": "ImRect_c", @@ -5885,6 +6070,7 @@ "defaults": {}, "funcname": "SetLocalFlags", "location": "imgui_internal:2085", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_SetLocalFlags", "ret": "void", "signature": "(ImGuiDockNodeFlags)", @@ -5907,6 +6093,7 @@ "defaults": {}, "funcname": "UpdateMergedFlags", "location": "imgui_internal:2086", + "namespace": "ImGuiDockNode", "ov_cimguiname": "ImGuiDockNode_UpdateMergedFlags", "ret": "void", "signature": "()", @@ -5946,6 +6133,7 @@ "defaults": {}, "funcname": "ImGuiErrorRecoveryState", "location": "imgui_internal:1441", + "namespace": "ImGuiErrorRecoveryState", "ov_cimguiname": "ImGuiErrorRecoveryState_ImGuiErrorRecoveryState", "signature": "()", "stname": "ImGuiErrorRecoveryState" @@ -6061,6 +6249,7 @@ "defaults": {}, "funcname": "ImGuiIDStackTool", "location": "imgui_internal:2359", + "namespace": "ImGuiIDStackTool", "ov_cimguiname": "ImGuiIDStackTool_ImGuiIDStackTool", "signature": "()", "stname": "ImGuiIDStackTool" @@ -6106,6 +6295,7 @@ "defaults": {}, "funcname": "AddFocusEvent", "location": "imgui:2633", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -6132,6 +6322,7 @@ "defaults": {}, "funcname": "AddInputCharacter", "location": "imgui:2634", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -6158,6 +6349,7 @@ "defaults": {}, "funcname": "AddInputCharacterUTF16", "location": "imgui:2635", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -6184,6 +6376,7 @@ "defaults": {}, "funcname": "AddInputCharactersUTF8", "location": "imgui:2636", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -6218,6 +6411,7 @@ "defaults": {}, "funcname": "AddKeyAnalogEvent", "location": "imgui:2627", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -6248,6 +6442,7 @@ "defaults": {}, "funcname": "AddKeyEvent", "location": "imgui:2626", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -6278,6 +6473,7 @@ "defaults": {}, "funcname": "AddMouseButtonEvent", "location": "imgui:2629", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -6308,6 +6504,7 @@ "defaults": {}, "funcname": "AddMousePosEvent", "location": "imgui:2628", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", @@ -6334,6 +6531,7 @@ "defaults": {}, "funcname": "AddMouseSourceEvent", "location": "imgui:2631", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddMouseSourceEvent", "ret": "void", "signature": "(ImGuiMouseSource)", @@ -6360,6 +6558,7 @@ "defaults": {}, "funcname": "AddMouseViewportEvent", "location": "imgui:2632", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddMouseViewportEvent", "ret": "void", "signature": "(ImGuiID)", @@ -6390,6 +6589,7 @@ "defaults": {}, "funcname": "AddMouseWheelEvent", "location": "imgui:2630", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", @@ -6412,6 +6612,7 @@ "defaults": {}, "funcname": "ClearEventsQueue", "location": "imgui:2640", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_ClearEventsQueue", "ret": "void", "signature": "()", @@ -6434,6 +6635,7 @@ "defaults": {}, "funcname": "ClearInputKeys", "location": "imgui:2641", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", @@ -6456,6 +6658,7 @@ "defaults": {}, "funcname": "ClearInputMouse", "location": "imgui:2642", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_ClearInputMouse", "ret": "void", "signature": "()", @@ -6474,6 +6677,7 @@ "defaults": {}, "funcname": "ImGuiIO", "location": "imgui:2733", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -6499,6 +6703,7 @@ "defaults": {}, "funcname": "SetAppAcceptingEvents", "location": "imgui:2639", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -6539,6 +6744,7 @@ }, "funcname": "SetKeyEventNativeData", "location": "imgui:2638", + "namespace": "ImGuiIO", "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -6577,6 +6783,7 @@ "defaults": {}, "funcname": "ImGuiInputEvent", "location": "imgui_internal:1583", + "namespace": "ImGuiInputEvent", "ov_cimguiname": "ImGuiInputEvent_ImGuiInputEvent", "signature": "()", "stname": "ImGuiInputEvent" @@ -6618,6 +6825,7 @@ "defaults": {}, "funcname": "ClearSelection", "location": "imgui:2780", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -6648,6 +6856,7 @@ "defaults": {}, "funcname": "DeleteChars", "location": "imgui:2776", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -6670,6 +6879,7 @@ "defaults": {}, "funcname": "HasSelection", "location": "imgui:2781", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -6688,6 +6898,7 @@ "defaults": {}, "funcname": "ImGuiInputTextCallbackData", "location": "imgui:2775", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -6723,6 +6934,7 @@ }, "funcname": "InsertChars", "location": "imgui:2777", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -6745,6 +6957,7 @@ "defaults": {}, "funcname": "SelectAll", "location": "imgui:2778", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -6775,6 +6988,7 @@ "defaults": {}, "funcname": "SetSelection", "location": "imgui:2779", + "namespace": "ImGuiInputTextCallbackData", "ov_cimguiname": "ImGuiInputTextCallbackData_SetSelection", "ret": "void", "signature": "(int,int)", @@ -6817,6 +7031,7 @@ "defaults": {}, "funcname": "ClearFreeMemory", "location": "imgui_internal:1224", + "namespace": "ImGuiInputTextDeactivatedState", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6835,6 +7050,7 @@ "defaults": {}, "funcname": "ImGuiInputTextDeactivatedState", "location": "imgui_internal:1223", + "namespace": "ImGuiInputTextDeactivatedState", "ov_cimguiname": "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", "signature": "()", "stname": "ImGuiInputTextDeactivatedState" @@ -6876,6 +7092,7 @@ "defaults": {}, "funcname": "ClearFreeMemory", "location": "imgui_internal:1269", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6898,6 +7115,7 @@ "defaults": {}, "funcname": "ClearSelection", "location": "imgui_internal:1279", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -6920,6 +7138,7 @@ "defaults": {}, "funcname": "ClearText", "location": "imgui_internal:1268", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -6942,6 +7161,7 @@ "defaults": {}, "funcname": "CursorAnimReset", "location": "imgui_internal:1276", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -6964,6 +7184,7 @@ "defaults": {}, "funcname": "CursorClamp", "location": "imgui_internal:1277", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -6986,6 +7207,7 @@ "defaults": {}, "funcname": "GetCursorPos", "location": "imgui_internal:1280", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", "ret": "int", "signature": "()const", @@ -7008,6 +7230,7 @@ "defaults": {}, "funcname": "GetPreferredOffsetX", "location": "imgui_internal:1272", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_GetPreferredOffsetX", "ret": "float", "signature": "()const", @@ -7030,6 +7253,7 @@ "defaults": {}, "funcname": "GetSelectionEnd", "location": "imgui_internal:1282", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", @@ -7052,6 +7276,7 @@ "defaults": {}, "funcname": "GetSelectionStart", "location": "imgui_internal:1281", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", "ret": "int", "signature": "()const", @@ -7074,6 +7299,7 @@ "defaults": {}, "funcname": "GetText", "location": "imgui_internal:1273", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_GetText", "ret": "const char*", "signature": "()", @@ -7096,6 +7322,7 @@ "defaults": {}, "funcname": "HasSelection", "location": "imgui_internal:1278", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -7114,6 +7341,7 @@ "defaults": {}, "funcname": "ImGuiInputTextState", "location": "imgui_internal:1266", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "signature": "()", "stname": "ImGuiInputTextState" @@ -7139,6 +7367,7 @@ "defaults": {}, "funcname": "OnCharPressed", "location": "imgui_internal:1271", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_OnCharPressed", "ret": "void", "signature": "(unsigned int)", @@ -7165,6 +7394,7 @@ "defaults": {}, "funcname": "OnKeyPressed", "location": "imgui_internal:1270", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", @@ -7187,6 +7417,7 @@ "defaults": {}, "funcname": "ReloadUserBufAndKeepSelection", "location": "imgui_internal:1292", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", "ret": "void", "signature": "()", @@ -7209,6 +7440,7 @@ "defaults": {}, "funcname": "ReloadUserBufAndMoveToEnd", "location": "imgui_internal:1293", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", "ret": "void", "signature": "()", @@ -7231,6 +7463,7 @@ "defaults": {}, "funcname": "ReloadUserBufAndSelectAll", "location": "imgui_internal:1291", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", "ret": "void", "signature": "()", @@ -7253,6 +7486,7 @@ "defaults": {}, "funcname": "SelectAll", "location": "imgui_internal:1284", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -7283,6 +7517,7 @@ "defaults": {}, "funcname": "SetSelection", "location": "imgui_internal:1283", + "namespace": "ImGuiInputTextState", "ov_cimguiname": "ImGuiInputTextState_SetSelection", "ret": "void", "signature": "(int,int)", @@ -7322,6 +7557,7 @@ "defaults": {}, "funcname": "ImGuiKeyOwnerData", "location": "imgui_internal:1627", + "namespace": "ImGuiKeyOwnerData", "ov_cimguiname": "ImGuiKeyOwnerData_ImGuiKeyOwnerData", "signature": "()", "stname": "ImGuiKeyOwnerData" @@ -7359,6 +7595,7 @@ "defaults": {}, "funcname": "ImGuiKeyRoutingData", "location": "imgui_internal:1603", + "namespace": "ImGuiKeyRoutingData", "ov_cimguiname": "ImGuiKeyRoutingData_ImGuiKeyRoutingData", "signature": "()", "stname": "ImGuiKeyRoutingData" @@ -7400,6 +7637,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui_internal:1615", + "namespace": "ImGuiKeyRoutingTable", "ov_cimguiname": "ImGuiKeyRoutingTable_Clear", "ret": "void", "signature": "()", @@ -7418,6 +7656,7 @@ "defaults": {}, "funcname": "ImGuiKeyRoutingTable", "location": "imgui_internal:1614", + "namespace": "ImGuiKeyRoutingTable", "ov_cimguiname": "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", "signature": "()", "stname": "ImGuiKeyRoutingTable" @@ -7455,6 +7694,7 @@ "defaults": {}, "funcname": "ImGuiLastItemData", "location": "imgui_internal:1408", + "namespace": "ImGuiLastItemData", "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", "stname": "ImGuiLastItemData" @@ -7492,6 +7732,7 @@ "defaults": {}, "funcname": "ImGuiListClipperData", "location": "imgui_internal:1698", + "namespace": "ImGuiListClipperData", "ov_cimguiname": "ImGuiListClipperData_ImGuiListClipperData", "signature": "()", "stname": "ImGuiListClipperData" @@ -7517,6 +7758,7 @@ "defaults": {}, "funcname": "Reset", "location": "imgui_internal:1699", + "namespace": "ImGuiListClipperData", "ov_cimguiname": "ImGuiListClipperData_Reset", "ret": "void", "signature": "(ImGuiListClipper*)", @@ -7564,6 +7806,7 @@ "funcname": "FromIndices", "is_static_function": true, "location": "imgui_internal:1685", + "namespace": "ImGuiListClipperRange", "ov_cimguiname": "ImGuiListClipperRange_FromIndices", "ret": "ImGuiListClipperRange", "signature": "(int,int)", @@ -7599,6 +7842,7 @@ "funcname": "FromPositions", "is_static_function": true, "location": "imgui_internal:1686", + "namespace": "ImGuiListClipperRange", "ov_cimguiname": "ImGuiListClipperRange_FromPositions", "ret": "ImGuiListClipperRange", "signature": "(float,float,int,int)", @@ -7631,6 +7875,7 @@ }, "funcname": "Begin", "location": "imgui:3006", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -7653,6 +7898,7 @@ "defaults": {}, "funcname": "End", "location": "imgui:3007", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", @@ -7671,6 +7917,7 @@ "defaults": {}, "funcname": "ImGuiListClipper", "location": "imgui:3004", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" @@ -7696,6 +7943,7 @@ "defaults": {}, "funcname": "IncludeItemByIndex", "location": "imgui:3012", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_IncludeItemByIndex", "ret": "void", "signature": "(int)", @@ -7726,6 +7974,7 @@ "defaults": {}, "funcname": "IncludeItemsByIndex", "location": "imgui:3013", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_IncludeItemsByIndex", "ret": "void", "signature": "(int,int)", @@ -7752,6 +8001,7 @@ "defaults": {}, "funcname": "SeekCursorForItem", "location": "imgui:3018", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_SeekCursorForItem", "ret": "void", "signature": "(int)", @@ -7774,6 +8024,7 @@ "defaults": {}, "funcname": "Step", "location": "imgui:3008", + "namespace": "ImGuiListClipper", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -7821,6 +8072,7 @@ "defaults": {}, "funcname": "CalcNextTotalWidth", "location": "imgui_internal:1214", + "namespace": "ImGuiMenuColumns", "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "ret": "void", "signature": "(bool)", @@ -7859,6 +8111,7 @@ "defaults": {}, "funcname": "DeclColumns", "location": "imgui_internal:1213", + "namespace": "ImGuiMenuColumns", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float,float)", @@ -7877,6 +8130,7 @@ "defaults": {}, "funcname": "ImGuiMenuColumns", "location": "imgui_internal:1211", + "namespace": "ImGuiMenuColumns", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -7906,6 +8160,7 @@ "defaults": {}, "funcname": "Update", "location": "imgui_internal:1212", + "namespace": "ImGuiMenuColumns", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(float,bool)", @@ -7944,6 +8199,7 @@ "defaults": {}, "funcname": "ImGuiMultiSelectState", "location": "imgui_internal:1965", + "namespace": "ImGuiMultiSelectState", "ov_cimguiname": "ImGuiMultiSelectState_ImGuiMultiSelectState", "signature": "()", "stname": "ImGuiMultiSelectState" @@ -7985,6 +8241,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui_internal:1949", + "namespace": "ImGuiMultiSelectTempData", "ov_cimguiname": "ImGuiMultiSelectTempData_Clear", "ret": "void", "signature": "()", @@ -8007,6 +8264,7 @@ "defaults": {}, "funcname": "ClearIO", "location": "imgui_internal:1950", + "namespace": "ImGuiMultiSelectTempData", "ov_cimguiname": "ImGuiMultiSelectTempData_ClearIO", "ret": "void", "signature": "()", @@ -8025,6 +8283,7 @@ "defaults": {}, "funcname": "ImGuiMultiSelectTempData", "location": "imgui_internal:1948", + "namespace": "ImGuiMultiSelectTempData", "ov_cimguiname": "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", "signature": "()", "stname": "ImGuiMultiSelectTempData" @@ -8066,6 +8325,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui_internal:1790", + "namespace": "ImGuiNavItemData", "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", @@ -8084,6 +8344,7 @@ "defaults": {}, "funcname": "ImGuiNavItemData", "location": "imgui_internal:1789", + "namespace": "ImGuiNavItemData", "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", "stname": "ImGuiNavItemData" @@ -8125,6 +8386,7 @@ "defaults": {}, "funcname": "ClearFlags", "location": "imgui_internal:1392", + "namespace": "ImGuiNextItemData", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -8143,6 +8405,7 @@ "defaults": {}, "funcname": "ImGuiNextItemData", "location": "imgui_internal:1391", + "namespace": "ImGuiNextItemData", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -8184,6 +8447,7 @@ "defaults": {}, "funcname": "ClearFlags", "location": "imgui_internal:1360", + "namespace": "ImGuiNextWindowData", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -8202,6 +8466,7 @@ "defaults": {}, "funcname": "ImGuiNextWindowData", "location": "imgui_internal:1359", + "namespace": "ImGuiNextWindowData", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -8239,6 +8504,7 @@ "defaults": {}, "funcname": "ImGuiOldColumnData", "location": "imgui_internal:1869", + "namespace": "ImGuiOldColumnData", "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -8276,6 +8542,7 @@ "defaults": {}, "funcname": "ImGuiOldColumns", "location": "imgui_internal:1890", + "namespace": "ImGuiOldColumns", "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -8313,6 +8580,7 @@ "defaults": {}, "funcname": "ImGuiOnceUponAFrame", "location": "imgui:2854", + "namespace": "ImGuiOnceUponAFrame", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -8354,6 +8622,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui:2832", + "namespace": "ImGuiPayload", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -8372,6 +8641,7 @@ "defaults": {}, "funcname": "ImGuiPayload", "location": "imgui:2831", + "namespace": "ImGuiPayload", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -8397,6 +8667,7 @@ "defaults": {}, "funcname": "IsDataType", "location": "imgui:2833", + "namespace": "ImGuiPayload", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -8419,6 +8690,7 @@ "defaults": {}, "funcname": "IsDelivery", "location": "imgui:2835", + "namespace": "ImGuiPayload", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -8441,6 +8713,7 @@ "defaults": {}, "funcname": "IsPreview", "location": "imgui:2834", + "namespace": "ImGuiPayload", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -8483,6 +8756,7 @@ "defaults": {}, "funcname": "ClearPlatformHandlers", "location": "imgui:4297", + "namespace": "ImGuiPlatformIO", "ov_cimguiname": "ImGuiPlatformIO_ClearPlatformHandlers", "ret": "void", "signature": "()", @@ -8505,6 +8779,7 @@ "defaults": {}, "funcname": "ClearRendererHandlers", "location": "imgui:4298", + "namespace": "ImGuiPlatformIO", "ov_cimguiname": "ImGuiPlatformIO_ClearRendererHandlers", "ret": "void", "signature": "()", @@ -8523,6 +8798,7 @@ "defaults": {}, "funcname": "ImGuiPlatformIO", "location": "imgui:4193", + "namespace": "ImGuiPlatformIO", "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", "signature": "()", "stname": "ImGuiPlatformIO" @@ -8560,6 +8836,7 @@ "defaults": {}, "funcname": "ImGuiPlatformImeData", "location": "imgui:4321", + "namespace": "ImGuiPlatformImeData", "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -8597,6 +8874,7 @@ "defaults": {}, "funcname": "ImGuiPlatformMonitor", "location": "imgui:4309", + "namespace": "ImGuiPlatformMonitor", "ov_cimguiname": "ImGuiPlatformMonitor_ImGuiPlatformMonitor", "signature": "()", "stname": "ImGuiPlatformMonitor" @@ -8634,6 +8912,7 @@ "defaults": {}, "funcname": "ImGuiPopupData", "location": "imgui_internal:1502", + "namespace": "ImGuiPopupData", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -8676,6 +8955,7 @@ "defaults": {}, "funcname": "ImGuiPtrOrIndex", "location": "imgui_internal:1466", + "namespace": "ImGuiPtrOrIndex", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -8696,6 +8976,7 @@ "defaults": {}, "funcname": "ImGuiPtrOrIndex", "location": "imgui_internal:1467", + "namespace": "ImGuiPtrOrIndex", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -8741,6 +9022,7 @@ "defaults": {}, "funcname": "ApplyRequests", "location": "imgui:3251", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", "ret": "void", "signature": "(ImGuiMultiSelectIO*)", @@ -8763,6 +9045,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui:3253", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_Clear", "ret": "void", "signature": "()", @@ -8789,6 +9072,7 @@ "defaults": {}, "funcname": "Contains", "location": "imgui:3252", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_Contains", "ret": "bool", "signature": "(ImGuiID)const", @@ -8819,6 +9103,7 @@ "defaults": {}, "funcname": "GetNextSelectedItem", "location": "imgui:3256", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", "ret": "bool", "signature": "(void**,ImGuiID*)", @@ -8845,6 +9130,7 @@ "defaults": {}, "funcname": "GetStorageIdFromIndex", "location": "imgui:3257", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", "ret": "ImGuiID", "signature": "(int)", @@ -8863,6 +9149,7 @@ "defaults": {}, "funcname": "ImGuiSelectionBasicStorage", "location": "imgui:3250", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", "signature": "()", "stname": "ImGuiSelectionBasicStorage" @@ -8892,6 +9179,7 @@ "defaults": {}, "funcname": "SetItemSelected", "location": "imgui:3255", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", "ret": "void", "signature": "(ImGuiID,bool)", @@ -8919,6 +9207,7 @@ "defaults": {}, "funcname": "Swap", "location": "imgui:3254", + "namespace": "ImGuiSelectionBasicStorage", "ov_cimguiname": "ImGuiSelectionBasicStorage_Swap", "ret": "void", "signature": "(ImGuiSelectionBasicStorage*)", @@ -8965,6 +9254,7 @@ "defaults": {}, "funcname": "ApplyRequests", "location": "imgui:3270", + "namespace": "ImGuiSelectionExternalStorage", "ov_cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", "ret": "void", "signature": "(ImGuiMultiSelectIO*)", @@ -8983,6 +9273,7 @@ "defaults": {}, "funcname": "ImGuiSelectionExternalStorage", "location": "imgui:3269", + "namespace": "ImGuiSelectionExternalStorage", "ov_cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", "signature": "()", "stname": "ImGuiSelectionExternalStorage" @@ -9020,6 +9311,7 @@ "defaults": {}, "funcname": "ImGuiSettingsHandler", "location": "imgui_internal:2213", + "namespace": "ImGuiSettingsHandler", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -9057,6 +9349,7 @@ "defaults": {}, "funcname": "ImGuiStackLevelInfo", "location": "imgui_internal:2335", + "namespace": "ImGuiStackLevelInfo", "ov_cimguiname": "ImGuiStackLevelInfo_ImGuiStackLevelInfo", "signature": "()", "stname": "ImGuiStackLevelInfo" @@ -9103,6 +9396,7 @@ "defaults": {}, "funcname": "ImGuiStoragePair", "location": "imgui:2912", + "namespace": "ImGuiStoragePair", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" @@ -9127,6 +9421,7 @@ "defaults": {}, "funcname": "ImGuiStoragePair", "location": "imgui:2913", + "namespace": "ImGuiStoragePair", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" @@ -9151,6 +9446,7 @@ "defaults": {}, "funcname": "ImGuiStoragePair", "location": "imgui:2914", + "namespace": "ImGuiStoragePair", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -9192,6 +9488,7 @@ "defaults": {}, "funcname": "BuildSortByKey", "location": "imgui:2953", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -9214,6 +9511,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui:2933", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -9246,6 +9544,7 @@ }, "funcname": "GetBool", "location": "imgui:2936", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -9278,6 +9577,7 @@ }, "funcname": "GetBoolRef", "location": "imgui:2948", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -9310,6 +9610,7 @@ }, "funcname": "GetFloat", "location": "imgui:2938", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -9342,6 +9643,7 @@ }, "funcname": "GetFloatRef", "location": "imgui:2949", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -9374,6 +9676,7 @@ }, "funcname": "GetInt", "location": "imgui:2934", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -9406,6 +9709,7 @@ }, "funcname": "GetIntRef", "location": "imgui:2947", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -9432,6 +9736,7 @@ "defaults": {}, "funcname": "GetVoidPtr", "location": "imgui:2940", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -9464,6 +9769,7 @@ }, "funcname": "GetVoidPtrRef", "location": "imgui:2950", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -9490,6 +9796,7 @@ "defaults": {}, "funcname": "SetAllInt", "location": "imgui:2955", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -9520,6 +9827,7 @@ "defaults": {}, "funcname": "SetBool", "location": "imgui:2937", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -9550,6 +9858,7 @@ "defaults": {}, "funcname": "SetFloat", "location": "imgui:2939", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -9580,6 +9889,7 @@ "defaults": {}, "funcname": "SetInt", "location": "imgui:2935", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -9610,6 +9920,7 @@ "defaults": {}, "funcname": "SetVoidPtr", "location": "imgui:2941", + "namespace": "ImGuiStorage", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -9637,6 +9948,7 @@ "defaults": {}, "funcname": "ImGuiStyleMod", "location": "imgui_internal:937", + "namespace": "ImGuiStyleMod", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Int", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -9661,6 +9973,7 @@ "defaults": {}, "funcname": "ImGuiStyleMod", "location": "imgui_internal:938", + "namespace": "ImGuiStyleMod", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Float", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -9685,6 +9998,7 @@ "defaults": {}, "funcname": "ImGuiStyleMod", "location": "imgui_internal:939", + "namespace": "ImGuiStyleMod", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Vec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -9730,6 +10044,7 @@ "defaults": {}, "funcname": "GetVarPtr", "location": "imgui_internal:922", + "namespace": "ImGuiStyleVarInfo", "ov_cimguiname": "ImGuiStyleVarInfo_GetVarPtr", "ret": "void*", "signature": "(void*)const", @@ -9748,6 +10063,7 @@ "defaults": {}, "funcname": "ImGuiStyle", "location": "imgui:2455", + "namespace": "ImGuiStyle", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -9773,6 +10089,7 @@ "defaults": {}, "funcname": "ScaleAllSizes", "location": "imgui:2456", + "namespace": "ImGuiStyle", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -9811,6 +10128,7 @@ "defaults": {}, "funcname": "ImGuiTabBar", "location": "imgui_internal:3097", + "namespace": "ImGuiTabBar", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -9848,6 +10166,7 @@ "defaults": {}, "funcname": "ImGuiTabItem", "location": "imgui_internal:3053", + "namespace": "ImGuiTabItem", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -9885,6 +10204,7 @@ "defaults": {}, "funcname": "ImGuiTableColumnSettings", "location": "imgui_internal:3364", + "namespace": "ImGuiTableColumnSettings", "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -9922,6 +10242,7 @@ "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", "location": "imgui:2249", + "namespace": "ImGuiTableColumnSortSpecs", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -9959,6 +10280,7 @@ "defaults": {}, "funcname": "ImGuiTableColumn", "location": "imgui_internal:3156", + "namespace": "ImGuiTableColumn", "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -9996,6 +10318,7 @@ "defaults": {}, "funcname": "ImGuiTableInstanceData", "location": "imgui_internal:3199", + "namespace": "ImGuiTableInstanceData", "ov_cimguiname": "ImGuiTableInstanceData_ImGuiTableInstanceData", "signature": "()", "stname": "ImGuiTableInstanceData" @@ -10037,6 +10360,7 @@ "defaults": {}, "funcname": "GetColumnSettings", "location": "imgui_internal:3387", + "namespace": "ImGuiTableSettings", "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -10055,6 +10379,7 @@ "defaults": {}, "funcname": "ImGuiTableSettings", "location": "imgui_internal:3386", + "namespace": "ImGuiTableSettings", "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -10092,6 +10417,7 @@ "defaults": {}, "funcname": "ImGuiTableSortSpecs", "location": "imgui:2238", + "namespace": "ImGuiTableSortSpecs", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -10129,6 +10455,7 @@ "defaults": {}, "funcname": "ImGuiTableTempData", "location": "imgui_internal:3349", + "namespace": "ImGuiTableTempData", "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", "signature": "()", "stname": "ImGuiTableTempData" @@ -10166,6 +10493,7 @@ "defaults": {}, "funcname": "ImGuiTable", "location": "imgui_internal:3320", + "namespace": "ImGuiTable", "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -10204,6 +10532,7 @@ "defaults": {}, "funcname": "ImGuiTextBuffer", "location": "imgui:2892", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -10235,6 +10564,7 @@ }, "funcname": "append", "location": "imgui:2902", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -10267,6 +10597,7 @@ "isvararg": "...)", "location": "imgui:2903", "manual": true, + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", "signature": "(ImGuiTextBuffer*, const char*,...)", @@ -10297,6 +10628,7 @@ "defaults": {}, "funcname": "appendfv", "location": "imgui:2904", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -10319,6 +10651,7 @@ "defaults": {}, "funcname": "begin", "location": "imgui:2894", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -10341,6 +10674,7 @@ "defaults": {}, "funcname": "c_str", "location": "imgui:2901", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -10363,6 +10697,7 @@ "defaults": {}, "funcname": "clear", "location": "imgui:2898", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -10405,6 +10740,7 @@ "defaults": {}, "funcname": "empty", "location": "imgui:2897", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -10427,6 +10763,7 @@ "defaults": {}, "funcname": "end", "location": "imgui:2895", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -10453,6 +10790,7 @@ "defaults": {}, "funcname": "reserve", "location": "imgui:2900", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -10479,6 +10817,7 @@ "defaults": {}, "funcname": "resize", "location": "imgui:2899", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_resize", "ret": "void", "signature": "(int)", @@ -10501,6 +10840,7 @@ "defaults": {}, "funcname": "size", "location": "imgui:2896", + "namespace": "ImGuiTextBuffer", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -10523,6 +10863,7 @@ "defaults": {}, "funcname": "Build", "location": "imgui:2865", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -10545,6 +10886,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui:2866", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -10578,6 +10920,7 @@ }, "funcname": "Draw", "location": "imgui:2863", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -10603,6 +10946,7 @@ }, "funcname": "ImGuiTextFilter", "location": "imgui:2862", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -10624,6 +10968,7 @@ "defaults": {}, "funcname": "IsActive", "location": "imgui:2867", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -10656,6 +11001,7 @@ }, "funcname": "PassFilter", "location": "imgui:2864", + "namespace": "ImGuiTextFilter", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -10710,6 +11056,7 @@ "defaults": {}, "funcname": "append", "location": "imgui_internal:832", + "namespace": "ImGuiTextIndex", "ov_cimguiname": "ImGuiTextIndex_append", "ret": "void", "signature": "(const char*,int,int)", @@ -10732,6 +11079,7 @@ "defaults": {}, "funcname": "clear", "location": "imgui_internal:828", + "namespace": "ImGuiTextIndex", "ov_cimguiname": "ImGuiTextIndex_clear", "ret": "void", "signature": "()", @@ -10762,6 +11110,7 @@ "defaults": {}, "funcname": "get_line_begin", "location": "imgui_internal:830", + "namespace": "ImGuiTextIndex", "ov_cimguiname": "ImGuiTextIndex_get_line_begin", "ret": "const char*", "signature": "(const char*,int)", @@ -10792,6 +11141,7 @@ "defaults": {}, "funcname": "get_line_end", "location": "imgui_internal:831", + "namespace": "ImGuiTextIndex", "ov_cimguiname": "ImGuiTextIndex_get_line_end", "ret": "const char*", "signature": "(const char*,int)", @@ -10814,6 +11164,7 @@ "defaults": {}, "funcname": "size", "location": "imgui_internal:829", + "namespace": "ImGuiTextIndex", "ov_cimguiname": "ImGuiTextIndex_size", "ret": "int", "signature": "()", @@ -10832,6 +11183,7 @@ "defaults": {}, "funcname": "ImGuiTextRange", "location": "imgui:2875", + "namespace": "ImGuiTextFilter::ImGuiTextRange", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -10856,6 +11208,7 @@ "defaults": {}, "funcname": "ImGuiTextRange", "location": "imgui:2876", + "namespace": "ImGuiTextFilter::ImGuiTextRange", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -10897,6 +11250,7 @@ "defaults": {}, "funcname": "empty", "location": "imgui:2877", + "namespace": "ImGuiTextFilter::ImGuiTextRange", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -10927,6 +11281,7 @@ "defaults": {}, "funcname": "split", "location": "imgui:2878", + "namespace": "ImGuiTextFilter::ImGuiTextRange", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -10949,6 +11304,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui_internal:1834", + "namespace": "ImGuiTypingSelectState", "ov_cimguiname": "ImGuiTypingSelectState_Clear", "ret": "void", "signature": "()", @@ -10967,6 +11323,7 @@ "defaults": {}, "funcname": "ImGuiTypingSelectState", "location": "imgui_internal:1833", + "namespace": "ImGuiTypingSelectState", "ov_cimguiname": "ImGuiTypingSelectState_ImGuiTypingSelectState", "signature": "()", "stname": "ImGuiTypingSelectState" @@ -11013,6 +11370,7 @@ "defaults": {}, "funcname": "CalcWorkRectPos", "location": "imgui_internal:2165", + "namespace": "ImGuiViewportP", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", "ret": "ImVec2_c", @@ -11045,6 +11403,7 @@ "defaults": {}, "funcname": "CalcWorkRectSize", "location": "imgui_internal:2166", + "namespace": "ImGuiViewportP", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", "ret": "ImVec2_c", @@ -11068,6 +11427,7 @@ "defaults": {}, "funcname": "ClearRequestFlags", "location": "imgui_internal:2162", + "namespace": "ImGuiViewportP", "ov_cimguiname": "ImGuiViewportP_ClearRequestFlags", "ret": "void", "signature": "()", @@ -11091,6 +11451,7 @@ "defaults": {}, "funcname": "GetBuildWorkRect", "location": "imgui_internal:2172", + "namespace": "ImGuiViewportP", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", "ret": "ImRect_c", @@ -11115,6 +11476,7 @@ "defaults": {}, "funcname": "GetMainRect", "location": "imgui_internal:2170", + "namespace": "ImGuiViewportP", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "ImRect_c", @@ -11139,6 +11501,7 @@ "defaults": {}, "funcname": "GetWorkRect", "location": "imgui_internal:2171", + "namespace": "ImGuiViewportP", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "ImRect_c", @@ -11158,6 +11521,7 @@ "defaults": {}, "funcname": "ImGuiViewportP", "location": "imgui_internal:2160", + "namespace": "ImGuiViewportP", "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -11179,6 +11543,7 @@ "defaults": {}, "funcname": "UpdateWorkRect", "location": "imgui_internal:2167", + "namespace": "ImGuiViewportP", "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -11223,6 +11588,7 @@ "defaults": {}, "funcname": "GetCenter", "location": "imgui:4135", + "namespace": "ImGuiViewport", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "ImVec2_c", @@ -11246,6 +11612,7 @@ "defaults": {}, "funcname": "GetDebugName", "location": "imgui:4137", + "namespace": "ImGuiViewport", "ov_cimguiname": "ImGuiViewport_GetDebugName", "ret": "const char*", "signature": "()const", @@ -11269,6 +11636,7 @@ "defaults": {}, "funcname": "GetWorkCenter", "location": "imgui:4136", + "namespace": "ImGuiViewport", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "ImVec2_c", @@ -11288,6 +11656,7 @@ "defaults": {}, "funcname": "ImGuiViewport", "location": "imgui:4131", + "namespace": "ImGuiViewport", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -11326,6 +11695,7 @@ "defaults": {}, "funcname": "ImGuiWindowClass", "location": "imgui:2813", + "namespace": "ImGuiWindowClass", "ov_cimguiname": "ImGuiWindowClass_ImGuiWindowClass", "signature": "()", "stname": "ImGuiWindowClass" @@ -11367,6 +11737,7 @@ "defaults": {}, "funcname": "GetName", "location": "imgui_internal:2198", + "namespace": "ImGuiWindowSettings", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -11385,6 +11756,7 @@ "defaults": {}, "funcname": "ImGuiWindowSettings", "location": "imgui_internal:2197", + "namespace": "ImGuiWindowSettings", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -11436,6 +11808,7 @@ }, "funcname": "GetID", "location": "imgui_internal:2999", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -11460,6 +11833,7 @@ "defaults": {}, "funcname": "GetID", "location": "imgui_internal:3000", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -11484,6 +11858,7 @@ "defaults": {}, "funcname": "GetID", "location": "imgui_internal:3001", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", @@ -11510,6 +11885,7 @@ "defaults": {}, "funcname": "GetIDFromPos", "location": "imgui_internal:3002", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_GetIDFromPos", "ret": "ImGuiID", "signature": "(const ImVec2)", @@ -11536,6 +11912,7 @@ "defaults": {}, "funcname": "GetIDFromRectangle", "location": "imgui_internal:3003", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -11563,6 +11940,7 @@ "defaults": {}, "funcname": "ImGuiWindow", "location": "imgui_internal:2995", + "namespace": "ImGuiWindow", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -11585,6 +11963,7 @@ "defaults": {}, "funcname": "MenuBarRect", "location": "imgui_internal:3008", + "namespace": "ImGuiWindow", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "ImRect_c", @@ -11609,6 +11988,7 @@ "defaults": {}, "funcname": "Rect", "location": "imgui_internal:3006", + "namespace": "ImGuiWindow", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "ImRect_c", @@ -11633,6 +12013,7 @@ "defaults": {}, "funcname": "TitleBarRect", "location": "imgui_internal:3007", + "namespace": "ImGuiWindow", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "ImRect_c", @@ -11677,6 +12058,7 @@ "defaults": {}, "funcname": "Add", "location": "imgui_internal:785", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -11700,6 +12082,7 @@ "defaults": {}, "funcname": "Clear", "location": "imgui_internal:784", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -11727,6 +12110,7 @@ "defaults": {}, "funcname": "Contains", "location": "imgui_internal:783", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -11750,6 +12134,7 @@ "defaults": {}, "funcname": "GetAliveCount", "location": "imgui_internal:792", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetAliveCount", "ret": "int", "signature": "()const", @@ -11773,6 +12158,7 @@ "defaults": {}, "funcname": "GetBufSize", "location": "imgui_internal:793", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetBufSize", "ret": "int", "signature": "()const", @@ -11800,6 +12186,7 @@ "defaults": {}, "funcname": "GetByIndex", "location": "imgui_internal:780", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -11827,6 +12214,7 @@ "defaults": {}, "funcname": "GetByKey", "location": "imgui_internal:779", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -11854,6 +12242,7 @@ "defaults": {}, "funcname": "GetIndex", "location": "imgui_internal:781", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -11877,6 +12266,7 @@ "defaults": {}, "funcname": "GetMapSize", "location": "imgui_internal:794", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetMapSize", "ret": "int", "signature": "()const", @@ -11904,6 +12294,7 @@ "defaults": {}, "funcname": "GetOrAddByKey", "location": "imgui_internal:782", + "namespace": "ImPool", "ov_cimguiname": "ImPool_GetOrAddByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -11923,6 +12314,7 @@ "defaults": {}, "funcname": "ImPool", "location": "imgui_internal:777", + "namespace": "ImPool", "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -11953,6 +12345,7 @@ "defaults": {}, "funcname": "Remove", "location": "imgui_internal:786", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Remove_TPtr", "ret": "void", "signature": "(ImGuiID,const T*)", @@ -11982,6 +12375,7 @@ "defaults": {}, "funcname": "Remove", "location": "imgui_internal:787", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Remove_PoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", @@ -12009,6 +12403,7 @@ "defaults": {}, "funcname": "Reserve", "location": "imgui_internal:788", + "namespace": "ImPool", "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -12036,6 +12431,7 @@ "defaults": {}, "funcname": "TryGetMapData", "location": "imgui_internal:795", + "namespace": "ImPool", "ov_cimguiname": "ImPool_TryGetMapData", "ret": "T*", "signature": "(ImPoolIdx)", @@ -12085,6 +12481,7 @@ "defaults": {}, "funcname": "Add", "location": "imgui_internal:615", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Add_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -12109,6 +12506,7 @@ "defaults": {}, "funcname": "Add", "location": "imgui_internal:616", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Add_Rect", "ret": "void", "signature": "(const ImRect)", @@ -12131,6 +12529,7 @@ "defaults": {}, "funcname": "AsVec4", "location": "imgui_internal:626", + "namespace": "ImRect", "nonUDT": 2, "ov_cimguiname": "ImRect_AsVec4", "ret": "const ImVec4_c*", @@ -12159,6 +12558,7 @@ "defaults": {}, "funcname": "ClipWith", "location": "imgui_internal:622", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -12185,6 +12585,7 @@ "defaults": {}, "funcname": "ClipWithFull", "location": "imgui_internal:623", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -12211,6 +12612,7 @@ "defaults": {}, "funcname": "Contains", "location": "imgui_internal:611", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Contains_Vec2", "ret": "bool", "signature": "(const ImVec2)const", @@ -12235,6 +12637,7 @@ "defaults": {}, "funcname": "Contains", "location": "imgui_internal:612", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Contains_Rect", "ret": "bool", "signature": "(const ImRect)const", @@ -12265,6 +12668,7 @@ "defaults": {}, "funcname": "ContainsWithPad", "location": "imgui_internal:613", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ContainsWithPad", "ret": "bool", "signature": "(const ImVec2,const ImVec2)const", @@ -12291,6 +12695,7 @@ "defaults": {}, "funcname": "Expand", "location": "imgui_internal:617", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Expand_Float", "ret": "void", "signature": "(const float)", @@ -12315,6 +12720,7 @@ "defaults": {}, "funcname": "Expand", "location": "imgui_internal:618", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Expand_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -12337,6 +12743,7 @@ "defaults": {}, "funcname": "GetArea", "location": "imgui_internal:606", + "namespace": "ImRect", "ov_cimguiname": "ImRect_GetArea", "ret": "float", "signature": "()const", @@ -12360,6 +12767,7 @@ "defaults": {}, "funcname": "GetBL", "location": "imgui_internal:609", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "ImVec2_c", @@ -12384,6 +12792,7 @@ "defaults": {}, "funcname": "GetBR", "location": "imgui_internal:610", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "ImVec2_c", @@ -12408,6 +12817,7 @@ "defaults": {}, "funcname": "GetCenter", "location": "imgui_internal:602", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "ImVec2_c", @@ -12431,6 +12841,7 @@ "defaults": {}, "funcname": "GetHeight", "location": "imgui_internal:605", + "namespace": "ImRect", "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -12454,6 +12865,7 @@ "defaults": {}, "funcname": "GetSize", "location": "imgui_internal:603", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "ImVec2_c", @@ -12478,6 +12890,7 @@ "defaults": {}, "funcname": "GetTL", "location": "imgui_internal:607", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "ImVec2_c", @@ -12502,6 +12915,7 @@ "defaults": {}, "funcname": "GetTR", "location": "imgui_internal:608", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "ImVec2_c", @@ -12525,6 +12939,7 @@ "defaults": {}, "funcname": "GetWidth", "location": "imgui_internal:604", + "namespace": "ImRect", "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -12543,6 +12958,7 @@ "defaults": {}, "funcname": "ImRect", "location": "imgui_internal:597", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ImRect_Nil", "signature": "()", "stname": "ImRect" @@ -12567,6 +12983,7 @@ "defaults": {}, "funcname": "ImRect", "location": "imgui_internal:598", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ImRect_Vec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" @@ -12587,6 +13004,7 @@ "defaults": {}, "funcname": "ImRect", "location": "imgui_internal:599", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ImRect_Vec4", "signature": "(const ImVec4)", "stname": "ImRect" @@ -12619,6 +13037,7 @@ "defaults": {}, "funcname": "ImRect", "location": "imgui_internal:600", + "namespace": "ImRect", "ov_cimguiname": "ImRect_ImRect_Float", "signature": "(float,float,float,float)", "stname": "ImRect" @@ -12640,6 +13059,7 @@ "defaults": {}, "funcname": "IsInverted", "location": "imgui_internal:624", + "namespace": "ImRect", "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -12666,6 +13086,7 @@ "defaults": {}, "funcname": "Overlaps", "location": "imgui_internal:614", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -12689,6 +13110,7 @@ "defaults": {}, "funcname": "ToVec4", "location": "imgui_internal:625", + "namespace": "ImRect", "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "ImVec4_c", @@ -12716,6 +13138,7 @@ "defaults": {}, "funcname": "Translate", "location": "imgui_internal:619", + "namespace": "ImRect", "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -12742,6 +13165,7 @@ "defaults": {}, "funcname": "TranslateX", "location": "imgui_internal:620", + "namespace": "ImRect", "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -12768,6 +13192,7 @@ "defaults": {}, "funcname": "TranslateY", "location": "imgui_internal:621", + "namespace": "ImRect", "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -12810,6 +13235,7 @@ "defaults": {}, "funcname": "GetArenaSizeInBytes", "location": "imgui_internal:724", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "ret": "int", "signature": "()", @@ -12837,6 +13263,7 @@ "defaults": {}, "funcname": "GetSpanPtrBegin", "location": "imgui_internal:726", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "ret": "void*", "signature": "(int)", @@ -12864,6 +13291,7 @@ "defaults": {}, "funcname": "GetSpanPtrEnd", "location": "imgui_internal:727", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "ret": "void*", "signature": "(int)", @@ -12883,6 +13311,7 @@ "defaults": {}, "funcname": "ImSpanAllocator", "location": "imgui_internal:722", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_ImSpanAllocator", "signature": "()", "stname": "ImSpanAllocator", @@ -12919,6 +13348,7 @@ }, "funcname": "Reserve", "location": "imgui_internal:723", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_Reserve", "ret": "void", "signature": "(int,size_t,int)", @@ -12946,6 +13376,7 @@ "defaults": {}, "funcname": "SetArenaBasePtr", "location": "imgui_internal:725", + "namespace": "ImSpanAllocator", "ov_cimguiname": "ImSpanAllocator_SetArenaBasePtr", "ret": "void", "signature": "(void*)", @@ -12986,6 +13417,7 @@ "defaults": {}, "funcname": "ImSpan", "location": "imgui_internal:690", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_ImSpan_Nil", "signature": "()", "stname": "ImSpan", @@ -13011,6 +13443,7 @@ "defaults": {}, "funcname": "ImSpan", "location": "imgui_internal:691", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_ImSpan_TPtrInt", "signature": "(T*,int)", "stname": "ImSpan", @@ -13036,6 +13469,7 @@ "defaults": {}, "funcname": "ImSpan", "location": "imgui_internal:692", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_ImSpan_TPtrTPtr", "signature": "(T*,T*)", "stname": "ImSpan", @@ -13058,6 +13492,7 @@ "defaults": {}, "funcname": "begin", "location": "imgui_internal:701", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_begin_Nil", "ret": "T*", "signature": "()", @@ -13079,6 +13514,7 @@ "defaults": {}, "funcname": "begin", "location": "imgui_internal:702", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_begin__const", "ret": "const T*", "signature": "()const", @@ -13123,6 +13559,7 @@ "defaults": {}, "funcname": "end", "location": "imgui_internal:703", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_end_Nil", "ret": "T*", "signature": "()", @@ -13144,6 +13581,7 @@ "defaults": {}, "funcname": "end", "location": "imgui_internal:704", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_end__const", "ret": "const T*", "signature": "()const", @@ -13171,6 +13609,7 @@ "defaults": {}, "funcname": "index_from_ptr", "location": "imgui_internal:707", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -13202,6 +13641,7 @@ "defaults": {}, "funcname": "set", "location": "imgui_internal:694", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_set_Int", "ret": "void", "signature": "(T*,int)", @@ -13231,6 +13671,7 @@ "defaults": {}, "funcname": "set", "location": "imgui_internal:695", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_set_TPtr", "ret": "void", "signature": "(T*,T*)", @@ -13254,6 +13695,7 @@ "defaults": {}, "funcname": "size", "location": "imgui_internal:696", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_size", "ret": "int", "signature": "()const", @@ -13277,6 +13719,7 @@ "defaults": {}, "funcname": "size_in_bytes", "location": "imgui_internal:697", + "namespace": "ImSpan", "ov_cimguiname": "ImSpan_size_in_bytes", "ret": "int", "signature": "()const", @@ -13300,6 +13743,7 @@ "defaults": {}, "funcname": "clear", "location": "imgui_internal:746", + "namespace": "ImStableVector", "ov_cimguiname": "ImStableVector_clear", "ret": "void", "signature": "()", @@ -13327,6 +13771,7 @@ "defaults": {}, "funcname": "push_back", "location": "imgui_internal:762", + "namespace": "ImStableVector", "ov_cimguiname": "ImStableVector_push_back", "ret": "T*", "signature": "(const T)", @@ -13354,6 +13799,7 @@ "defaults": {}, "funcname": "reserve", "location": "imgui_internal:748", + "namespace": "ImStableVector", "ov_cimguiname": "ImStableVector_reserve", "ret": "void", "signature": "(int)", @@ -13381,6 +13827,7 @@ "defaults": {}, "funcname": "resize", "location": "imgui_internal:747", + "namespace": "ImStableVector", "ov_cimguiname": "ImStableVector_resize", "ret": "void", "signature": "(int)", @@ -13416,6 +13863,7 @@ "defaults": {}, "funcname": "Create", "location": "imgui:3665", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_Create", "ret": "void", "signature": "(ImTextureFormat,int,int)", @@ -13438,6 +13886,7 @@ "defaults": {}, "funcname": "DestroyPixels", "location": "imgui:3666", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_DestroyPixels", "ret": "void", "signature": "()", @@ -13460,6 +13909,7 @@ "defaults": {}, "funcname": "GetPitch", "location": "imgui:3670", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_GetPitch", "ret": "int", "signature": "()const", @@ -13482,6 +13932,7 @@ "defaults": {}, "funcname": "GetPixels", "location": "imgui:3667", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_GetPixels", "ret": "void*", "signature": "()", @@ -13512,6 +13963,7 @@ "defaults": {}, "funcname": "GetPixelsAt", "location": "imgui:3668", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_GetPixelsAt", "ret": "void*", "signature": "(int,int)", @@ -13534,6 +13986,7 @@ "defaults": {}, "funcname": "GetSizeInBytes", "location": "imgui:3669", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_GetSizeInBytes", "ret": "int", "signature": "()const", @@ -13556,6 +14009,7 @@ "defaults": {}, "funcname": "GetTexID", "location": "imgui:3672", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -13579,6 +14033,7 @@ "defaults": {}, "funcname": "GetTexRef", "location": "imgui:3671", + "namespace": "ImTextureData", "nonUDT": 1, "ov_cimguiname": "ImTextureData_GetTexRef", "ret": "ImTextureRef_c", @@ -13598,6 +14053,7 @@ "defaults": {}, "funcname": "ImTextureData", "location": "imgui:3663", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_ImTextureData", "signature": "()", "stname": "ImTextureData" @@ -13623,6 +14079,7 @@ "defaults": {}, "funcname": "SetStatus", "location": "imgui:3678", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_SetStatus", "ret": "void", "signature": "(ImTextureStatus)", @@ -13649,6 +14106,7 @@ "defaults": {}, "funcname": "SetTexID", "location": "imgui:3677", + "namespace": "ImTextureData", "ov_cimguiname": "ImTextureData_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -13692,6 +14150,7 @@ "defaults": {}, "funcname": "GetTexID", "location": "imgui:380", + "namespace": "ImTextureRef", "ov_cimguiname": "ImTextureRef_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -13710,6 +14169,7 @@ "defaults": {}, "funcname": "ImTextureRef", "location": "imgui:374", + "namespace": "ImTextureRef", "ov_cimguiname": "ImTextureRef_ImTextureRef_Nil", "signature": "()", "stname": "ImTextureRef" @@ -13730,6 +14190,7 @@ "defaults": {}, "funcname": "ImTextureRef", "location": "imgui:375", + "namespace": "ImTextureRef", "ov_cimguiname": "ImTextureRef_ImTextureRef_TextureID", "signature": "(ImTextureID)", "stname": "ImTextureRef" @@ -13767,6 +14228,7 @@ "defaults": {}, "funcname": "ImVec1", "location": "imgui_internal:569", + "namespace": "ImVec1", "ov_cimguiname": "ImVec1_ImVec1_Nil", "signature": "()", "stname": "ImVec1" @@ -13787,6 +14249,7 @@ "defaults": {}, "funcname": "ImVec1", "location": "imgui_internal:570", + "namespace": "ImVec1", "ov_cimguiname": "ImVec1_ImVec1_Float", "signature": "(float)", "stname": "ImVec1" @@ -13824,6 +14287,7 @@ "defaults": {}, "funcname": "ImVec2", "location": "imgui:303", + "namespace": "ImVec2", "ov_cimguiname": "ImVec2_ImVec2_Nil", "signature": "()", "stname": "ImVec2" @@ -13848,6 +14312,7 @@ "defaults": {}, "funcname": "ImVec2", "location": "imgui:304", + "namespace": "ImVec2", "ov_cimguiname": "ImVec2_ImVec2_Float", "signature": "(float,float)", "stname": "ImVec2" @@ -13885,6 +14350,7 @@ "defaults": {}, "funcname": "ImVec2i", "location": "imgui_internal:577", + "namespace": "ImVec2i", "ov_cimguiname": "ImVec2i_ImVec2i_Nil", "signature": "()", "stname": "ImVec2i" @@ -13909,6 +14375,7 @@ "defaults": {}, "funcname": "ImVec2i", "location": "imgui_internal:578", + "namespace": "ImVec2i", "ov_cimguiname": "ImVec2i_ImVec2i_Int", "signature": "(int,int)", "stname": "ImVec2i" @@ -13946,6 +14413,7 @@ "defaults": {}, "funcname": "ImVec2ih", "location": "imgui_internal:585", + "namespace": "ImVec2ih", "ov_cimguiname": "ImVec2ih_ImVec2ih_Nil", "signature": "()", "stname": "ImVec2ih" @@ -13970,6 +14438,7 @@ "defaults": {}, "funcname": "ImVec2ih", "location": "imgui_internal:586", + "namespace": "ImVec2ih", "ov_cimguiname": "ImVec2ih_ImVec2ih_short", "signature": "(short,short)", "stname": "ImVec2ih" @@ -13990,6 +14459,7 @@ "defaults": {}, "funcname": "ImVec2ih", "location": "imgui_internal:587", + "namespace": "ImVec2ih", "ov_cimguiname": "ImVec2ih_ImVec2ih_Vec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" @@ -14027,6 +14497,7 @@ "defaults": {}, "funcname": "ImVec4", "location": "imgui:316", + "namespace": "ImVec4", "ov_cimguiname": "ImVec4_ImVec4_Nil", "signature": "()", "stname": "ImVec4" @@ -14059,6 +14530,7 @@ "defaults": {}, "funcname": "ImVec4", "location": "imgui:317", + "namespace": "ImVec4", "ov_cimguiname": "ImVec4_ImVec4_Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -14096,6 +14568,7 @@ "defaults": {}, "funcname": "ImVector", "location": "imgui:2306", + "namespace": "ImVector", "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -14117,6 +14590,7 @@ "defaults": {}, "funcname": "ImVector", "location": "imgui:2307", + "namespace": "ImVector", "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -14143,6 +14617,7 @@ "defaults": {}, "funcname": "_grow_capacity", "location": "imgui:2333", + "namespace": "ImVector", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -14166,6 +14641,7 @@ "defaults": {}, "funcname": "back", "location": "imgui:2329", + "namespace": "ImVector", "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -14188,6 +14664,7 @@ "defaults": {}, "funcname": "back", "location": "imgui:2330", + "namespace": "ImVector", "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -14212,6 +14689,7 @@ "defaults": {}, "funcname": "begin", "location": "imgui:2323", + "namespace": "ImVector", "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -14233,6 +14711,7 @@ "defaults": {}, "funcname": "begin", "location": "imgui:2324", + "namespace": "ImVector", "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -14256,6 +14735,7 @@ "defaults": {}, "funcname": "capacity", "location": "imgui:2319", + "namespace": "ImVector", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -14279,6 +14759,7 @@ "defaults": {}, "funcname": "clear", "location": "imgui:2311", + "namespace": "ImVector", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -14302,6 +14783,7 @@ "defaults": {}, "funcname": "clear_delete", "location": "imgui:2312", + "namespace": "ImVector", "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -14325,6 +14807,7 @@ "defaults": {}, "funcname": "clear_destruct", "location": "imgui:2313", + "namespace": "ImVector", "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -14352,6 +14835,7 @@ "defaults": {}, "funcname": "contains", "location": "imgui:2348", + "namespace": "ImVector", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -14397,6 +14881,7 @@ "defaults": {}, "funcname": "empty", "location": "imgui:2315", + "namespace": "ImVector", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -14420,6 +14905,7 @@ "defaults": {}, "funcname": "end", "location": "imgui:2325", + "namespace": "ImVector", "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -14441,6 +14927,7 @@ "defaults": {}, "funcname": "end", "location": "imgui:2326", + "namespace": "ImVector", "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -14468,6 +14955,7 @@ "defaults": {}, "funcname": "erase", "location": "imgui:2344", + "namespace": "ImVector", "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -14497,6 +14985,7 @@ "defaults": {}, "funcname": "erase", "location": "imgui:2345", + "namespace": "ImVector", "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -14524,6 +15013,7 @@ "defaults": {}, "funcname": "erase_unsorted", "location": "imgui:2346", + "namespace": "ImVector", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -14551,6 +15041,7 @@ "defaults": {}, "funcname": "find", "location": "imgui:2349", + "namespace": "ImVector", "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -14576,6 +15067,7 @@ "defaults": {}, "funcname": "find", "location": "imgui:2350", + "namespace": "ImVector", "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -14603,6 +15095,7 @@ "defaults": {}, "funcname": "find_erase", "location": "imgui:2352", + "namespace": "ImVector", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -14630,6 +15123,7 @@ "defaults": {}, "funcname": "find_erase_unsorted", "location": "imgui:2353", + "namespace": "ImVector", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -14657,6 +15151,7 @@ "defaults": {}, "funcname": "find_index", "location": "imgui:2351", + "namespace": "ImVector", "ov_cimguiname": "ImVector_find_index", "ret": "int", "signature": "(const T)const", @@ -14680,6 +15175,7 @@ "defaults": {}, "funcname": "front", "location": "imgui:2327", + "namespace": "ImVector", "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -14702,6 +15198,7 @@ "defaults": {}, "funcname": "front", "location": "imgui:2328", + "namespace": "ImVector", "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -14730,6 +15227,7 @@ "defaults": {}, "funcname": "index_from_ptr", "location": "imgui:2354", + "namespace": "ImVector", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -14761,6 +15259,7 @@ "defaults": {}, "funcname": "insert", "location": "imgui:2347", + "namespace": "ImVector", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -14784,6 +15283,7 @@ "defaults": {}, "funcname": "max_size", "location": "imgui:2318", + "namespace": "ImVector", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -14807,6 +15307,7 @@ "defaults": {}, "funcname": "pop_back", "location": "imgui:2342", + "namespace": "ImVector", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -14834,6 +15335,7 @@ "defaults": {}, "funcname": "push_back", "location": "imgui:2341", + "namespace": "ImVector", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -14861,6 +15363,7 @@ "defaults": {}, "funcname": "push_front", "location": "imgui:2343", + "namespace": "ImVector", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -14888,6 +15391,7 @@ "defaults": {}, "funcname": "reserve", "location": "imgui:2337", + "namespace": "ImVector", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -14915,6 +15419,7 @@ "defaults": {}, "funcname": "reserve_discard", "location": "imgui:2338", + "namespace": "ImVector", "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -14942,6 +15447,7 @@ "defaults": {}, "funcname": "resize", "location": "imgui:2334", + "namespace": "ImVector", "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -14971,6 +15477,7 @@ "defaults": {}, "funcname": "resize", "location": "imgui:2335", + "namespace": "ImVector", "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -14998,6 +15505,7 @@ "defaults": {}, "funcname": "shrink", "location": "imgui:2336", + "namespace": "ImVector", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -15021,6 +15529,7 @@ "defaults": {}, "funcname": "size", "location": "imgui:2316", + "namespace": "ImVector", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -15044,6 +15553,7 @@ "defaults": {}, "funcname": "size_in_bytes", "location": "imgui:2317", + "namespace": "ImVector", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -15072,6 +15582,7 @@ "defaults": {}, "funcname": "swap", "location": "imgui:2331", + "namespace": "ImVector", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index b3c44ba..04f2293 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -13,6 +13,7 @@ local t={ defaults={}, funcname="ClearAllBits", location="imgui_internal:659", + namespace="ImBitArray", ov_cimguiname="ImBitArray_ClearAllBits", ret="void", signature="()", @@ -36,6 +37,7 @@ local t={ defaults={}, funcname="ClearBit", location="imgui_internal:663", + namespace="ImBitArray", ov_cimguiname="ImBitArray_ClearBit", ret="void", signature="(int)", @@ -54,6 +56,7 @@ local t={ defaults={}, funcname="ImBitArray", location="imgui_internal:658", + namespace="ImBitArray", ov_cimguiname="ImBitArray_ImBitArray", signature="()", stname="ImBitArray", @@ -73,6 +76,7 @@ local t={ defaults={}, funcname="SetAllBits", location="imgui_internal:660", + namespace="ImBitArray", ov_cimguiname="ImBitArray_SetAllBits", ret="void", signature="()", @@ -96,6 +100,7 @@ local t={ defaults={}, funcname="SetBit", location="imgui_internal:662", + namespace="ImBitArray", ov_cimguiname="ImBitArray_SetBit", ret="void", signature="(int)", @@ -122,6 +127,7 @@ local t={ defaults={}, funcname="SetBitRange", location="imgui_internal:664", + namespace="ImBitArray", ov_cimguiname="ImBitArray_SetBitRange", ret="void", signature="(int,int)", @@ -145,6 +151,7 @@ local t={ defaults={}, funcname="TestBit", location="imgui_internal:661", + namespace="ImBitArray", ov_cimguiname="ImBitArray_TestBit", ret="bool", signature="(int)const", @@ -183,6 +190,7 @@ local t={ defaults={}, funcname="Clear", location="imgui_internal:674", + namespace="ImBitVector", ov_cimguiname="ImBitVector_Clear", ret="void", signature="()", @@ -205,6 +213,7 @@ local t={ defaults={}, funcname="ClearBit", location="imgui_internal:677", + namespace="ImBitVector", ov_cimguiname="ImBitVector_ClearBit", ret="void", signature="(int)", @@ -227,6 +236,7 @@ local t={ defaults={}, funcname="Create", location="imgui_internal:673", + namespace="ImBitVector", ov_cimguiname="ImBitVector_Create", ret="void", signature="(int)", @@ -249,6 +259,7 @@ local t={ defaults={}, funcname="SetBit", location="imgui_internal:676", + namespace="ImBitVector", ov_cimguiname="ImBitVector_SetBit", ret="void", signature="(int)", @@ -271,6 +282,7 @@ local t={ defaults={}, funcname="TestBit", location="imgui_internal:675", + namespace="ImBitVector", ov_cimguiname="ImBitVector_TestBit", ret="bool", signature="(int)const", @@ -293,6 +305,7 @@ local t={ defaults={}, funcname="alloc_chunk", location="imgui_internal:811", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_alloc_chunk", ret="T*", signature="(size_t)", @@ -313,6 +326,7 @@ local t={ defaults={}, funcname="begin", location="imgui_internal:812", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_begin", ret="T*", signature="()", @@ -336,6 +350,7 @@ local t={ defaults={}, funcname="chunk_size", location="imgui_internal:814", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_chunk_size", ret="int", signature="(const T*)", @@ -356,6 +371,7 @@ local t={ defaults={}, funcname="clear", location="imgui_internal:808", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_clear", ret="void", signature="()", @@ -376,6 +392,7 @@ local t={ defaults={}, funcname="empty", location="imgui_internal:809", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_empty", ret="bool", signature="()const", @@ -396,6 +413,7 @@ local t={ defaults={}, funcname="end", location="imgui_internal:815", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_end", ret="T*", signature="()", @@ -419,6 +437,7 @@ local t={ defaults={}, funcname="next_chunk", location="imgui_internal:813", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_next_chunk", ret="T*", signature="(T*)", @@ -442,6 +461,7 @@ local t={ defaults={}, funcname="offset_from_ptr", location="imgui_internal:816", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_offset_from_ptr", ret="int", signature="(const T*)", @@ -465,6 +485,7 @@ local t={ defaults={}, funcname="ptr_from_offset", location="imgui_internal:817", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_ptr_from_offset", ret="T*", signature="(int)", @@ -485,6 +506,7 @@ local t={ defaults={}, funcname="size", location="imgui_internal:810", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_size", ret="int", signature="()const", @@ -509,6 +531,7 @@ local t={ defaults={}, funcname="swap", location="imgui_internal:818", + namespace="ImChunkStream", ov_cimguiname="ImChunkStream_swap", ret="void", signature="(ImChunkStream_T *)", @@ -541,6 +564,7 @@ local t={ funcname="HSV", is_static_function=true, location="imgui:3114", + namespace="ImColor", nonUDT=1, ov_cimguiname="ImColor_HSV", ret="ImColor_c", @@ -559,6 +583,7 @@ local t={ defaults={}, funcname="ImColor", location="imgui:3104", + namespace="ImColor", ov_cimguiname="ImColor_ImColor_Nil", signature="()", stname="ImColor"}, @@ -586,6 +611,7 @@ local t={ a="1.0f"}, funcname="ImColor", location="imgui:3105", + namespace="ImColor", ov_cimguiname="ImColor_ImColor_Float", signature="(float,float,float,float)", stname="ImColor"}, @@ -603,6 +629,7 @@ local t={ defaults={}, funcname="ImColor", location="imgui:3106", + namespace="ImColor", ov_cimguiname="ImColor_ImColor_Vec4", signature="(const ImVec4)", stname="ImColor"}, @@ -630,6 +657,7 @@ local t={ a="255"}, funcname="ImColor", location="imgui:3107", + namespace="ImColor", ov_cimguiname="ImColor_ImColor_Int", signature="(int,int,int,int)", stname="ImColor"}, @@ -647,6 +675,7 @@ local t={ defaults={}, funcname="ImColor", location="imgui:3108", + namespace="ImColor", ov_cimguiname="ImColor_ImColor_U32", signature="(ImU32)", stname="ImColor"}, @@ -682,6 +711,7 @@ local t={ a="1.0f"}, funcname="SetHSV", location="imgui:3113", + namespace="ImColor", ov_cimguiname="ImColor_SetHSV", ret="void", signature="(float,float,float,float)", @@ -718,6 +748,7 @@ local t={ defaults={}, funcname="GetTexID", location="imgui:3328", + namespace="ImDrawCmd", ov_cimguiname="ImDrawCmd_GetTexID", ret="ImTextureID", signature="()const", @@ -735,6 +766,7 @@ local t={ defaults={}, funcname="ImDrawCmd", location="imgui:3324", + namespace="ImDrawCmd", ov_cimguiname="ImDrawCmd_ImDrawCmd", signature="()", stname="ImDrawCmd"}, @@ -768,6 +800,7 @@ local t={ defaults={}, funcname="ImDrawDataBuilder", location="imgui_internal:903", + namespace="ImDrawDataBuilder", ov_cimguiname="ImDrawDataBuilder_ImDrawDataBuilder", signature="()", stname="ImDrawDataBuilder"}, @@ -806,6 +839,7 @@ local t={ defaults={}, funcname="AddDrawList", location="imgui:3593", + namespace="ImDrawData", ov_cimguiname="ImDrawData_AddDrawList", ret="void", signature="(ImDrawList*)", @@ -825,6 +859,7 @@ local t={ defaults={}, funcname="Clear", location="imgui:3592", + namespace="ImDrawData", ov_cimguiname="ImDrawData_Clear", ret="void", signature="()", @@ -844,6 +879,7 @@ local t={ defaults={}, funcname="DeIndexAllBuffers", location="imgui:3594", + namespace="ImDrawData", ov_cimguiname="ImDrawData_DeIndexAllBuffers", ret="void", signature="()", @@ -861,6 +897,7 @@ local t={ defaults={}, funcname="ImDrawData", location="imgui:3591", + namespace="ImDrawData", ov_cimguiname="ImDrawData_ImDrawData", signature="()", stname="ImDrawData"}, @@ -882,6 +919,7 @@ local t={ defaults={}, funcname="ScaleClipRects", location="imgui:3595", + namespace="ImDrawData", ov_cimguiname="ImDrawData_ScaleClipRects", ret="void", signature="(const ImVec2)", @@ -916,6 +954,7 @@ local t={ defaults={}, funcname="ImDrawListSharedData", location="imgui_internal:893", + namespace="ImDrawListSharedData", ov_cimguiname="ImDrawListSharedData_ImDrawListSharedData", signature="()", stname="ImDrawListSharedData"}, @@ -937,6 +976,7 @@ local t={ defaults={}, funcname="SetCircleTessellationMaxError", location="imgui_internal:895", + namespace="ImDrawListSharedData", ov_cimguiname="ImDrawListSharedData_SetCircleTessellationMaxError", ret="void", signature="(float)", @@ -974,6 +1014,7 @@ local t={ defaults={}, funcname="Clear", location="imgui:3372", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_Clear", ret="void", signature="()", @@ -993,6 +1034,7 @@ local t={ defaults={}, funcname="ClearFreeMemory", location="imgui:3373", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_ClearFreeMemory", ret="void", signature="()", @@ -1010,6 +1052,7 @@ local t={ defaults={}, funcname="ImDrawListSplitter", location="imgui:3370", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_ImDrawListSplitter", signature="()", stname="ImDrawListSplitter"}, @@ -1031,6 +1074,7 @@ local t={ defaults={}, funcname="Merge", location="imgui:3375", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_Merge", ret="void", signature="(ImDrawList*)", @@ -1056,6 +1100,7 @@ local t={ defaults={}, funcname="SetCurrentChannel", location="imgui:3376", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_SetCurrentChannel", ret="void", signature="(ImDrawList*,int)", @@ -1081,6 +1126,7 @@ local t={ defaults={}, funcname="Split", location="imgui:3374", + namespace="ImDrawListSplitter", ov_cimguiname="ImDrawListSplitter_Split", ret="void", signature="(ImDrawList*,int)", @@ -1140,6 +1186,7 @@ local t={ num_segments="0"}, funcname="AddBezierCubic", location="imgui:3477", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddBezierCubic", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1178,6 +1225,7 @@ local t={ num_segments="0"}, funcname="AddBezierQuadratic", location="imgui:3478", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddBezierQuadratic", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1207,6 +1255,7 @@ local t={ userdata_size="0"}, funcname="AddCallback", location="imgui:3520", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddCallback", ret="void", signature="(ImDrawCallback,void*,size_t)", @@ -1243,6 +1292,7 @@ local t={ thickness="1.0f"}, funcname="AddCircle", location="imgui:3469", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddCircle", ret="void", signature="(const ImVec2,float,ImU32,int,float)", @@ -1275,6 +1325,7 @@ local t={ num_segments="0"}, funcname="AddCircleFilled", location="imgui:3470", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddCircleFilled", ret="void", signature="(const ImVec2,float,ImU32,int)", @@ -1303,6 +1354,7 @@ local t={ defaults={}, funcname="AddConcavePolyFilled", location="imgui:3485", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddConcavePolyFilled", ret="void", signature="(const ImVec2*,int,ImU32)", @@ -1331,6 +1383,7 @@ local t={ defaults={}, funcname="AddConvexPolyFilled", location="imgui:3484", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddConvexPolyFilled", ret="void", signature="(const ImVec2*,int,ImU32)", @@ -1350,6 +1403,7 @@ local t={ defaults={}, funcname="AddDrawCmd", location="imgui:3523", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddDrawCmd", ret="void", signature="()", @@ -1390,6 +1444,7 @@ local t={ thickness="1.0f"}, funcname="AddEllipse", location="imgui:3473", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddEllipse", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float,int,float)", @@ -1426,6 +1481,7 @@ local t={ rot="0.0f"}, funcname="AddEllipseFilled", location="imgui:3474", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddEllipseFilled", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float,int)", @@ -1466,6 +1522,7 @@ local t={ uv_min="ImVec2(0,0)"}, funcname="AddImage", location="imgui:3491", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddImage", ret="void", signature="(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1520,6 +1577,7 @@ local t={ uv4="ImVec2(0,1)"}, funcname="AddImageQuad", location="imgui:3492", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddImageQuad", ret="void", signature="(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1564,6 +1622,7 @@ local t={ flags="0"}, funcname="AddImageRounded", location="imgui:3493", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddImageRounded", ret="void", signature="(ImTextureRef,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1596,6 +1655,7 @@ local t={ thickness="1.0f"}, funcname="AddLine", location="imgui:3461", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddLine", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float)", @@ -1631,6 +1691,7 @@ local t={ thickness="1.0f"}, funcname="AddNgon", location="imgui:3471", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddNgon", ret="void", signature="(const ImVec2,float,ImU32,int,float)", @@ -1662,6 +1723,7 @@ local t={ defaults={}, funcname="AddNgonFilled", location="imgui:3472", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddNgonFilled", ret="void", signature="(const ImVec2,float,ImU32,int)", @@ -1696,6 +1758,7 @@ local t={ defaults={}, funcname="AddPolyline", location="imgui:3483", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddPolyline", ret="void", signature="(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -1734,6 +1797,7 @@ local t={ thickness="1.0f"}, funcname="AddQuad", location="imgui:3465", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddQuad", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1768,6 +1832,7 @@ local t={ defaults={}, funcname="AddQuadFilled", location="imgui:3466", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddQuadFilled", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1808,6 +1873,7 @@ local t={ thickness="1.0f"}, funcname="AddRect", location="imgui:3462", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddRect", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -1844,6 +1910,7 @@ local t={ rounding="0.0f"}, funcname="AddRectFilled", location="imgui:3463", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddRectFilled", ret="void", signature="(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1881,6 +1948,7 @@ local t={ defaults={}, funcname="AddRectFilledMultiColor", location="imgui:3464", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddRectFilledMultiColor", ret="void", signature="(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -1913,6 +1981,7 @@ local t={ text_end="NULL"}, funcname="AddText", location="imgui:3475", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddText_Vec2", ret="void", signature="(const ImVec2,ImU32,const char*,const char*)", @@ -1957,6 +2026,7 @@ local t={ wrap_width="0.0f"}, funcname="AddText", location="imgui:3476", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddText_FontPtr", ret="void", signature="(ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -1993,6 +2063,7 @@ local t={ thickness="1.0f"}, funcname="AddTriangle", location="imgui:3467", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddTriangle", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2024,6 +2095,7 @@ local t={ defaults={}, funcname="AddTriangleFilled", location="imgui:3468", + namespace="ImDrawList", ov_cimguiname="ImDrawList_AddTriangleFilled", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2043,6 +2115,7 @@ local t={ defaults={}, funcname="ChannelsMerge", location="imgui:3533", + namespace="ImDrawList", ov_cimguiname="ImDrawList_ChannelsMerge", ret="void", signature="()", @@ -2065,6 +2138,7 @@ local t={ defaults={}, funcname="ChannelsSetCurrent", location="imgui:3534", + namespace="ImDrawList", ov_cimguiname="ImDrawList_ChannelsSetCurrent", ret="void", signature="(int)", @@ -2087,6 +2161,7 @@ local t={ defaults={}, funcname="ChannelsSplit", location="imgui:3532", + namespace="ImDrawList", ov_cimguiname="ImDrawList_ChannelsSplit", ret="void", signature="(int)", @@ -2106,6 +2181,7 @@ local t={ defaults={}, funcname="CloneOutput", location="imgui:3524", + namespace="ImDrawList", ov_cimguiname="ImDrawList_CloneOutput", ret="ImDrawList*", signature="()const", @@ -2126,6 +2202,7 @@ local t={ defaults={}, funcname="GetClipRectMax", location="imgui:3452", + namespace="ImDrawList", nonUDT=1, ov_cimguiname="ImDrawList_GetClipRectMax", ret="ImVec2_c", @@ -2147,6 +2224,7 @@ local t={ defaults={}, funcname="GetClipRectMin", location="imgui:3451", + namespace="ImDrawList", nonUDT=1, ov_cimguiname="ImDrawList_GetClipRectMin", ret="ImVec2_c", @@ -2168,6 +2246,7 @@ local t={ defaults={}, funcname="ImDrawList", location="imgui:3443", + namespace="ImDrawList", ov_cimguiname="ImDrawList_ImDrawList", signature="(ImDrawListSharedData*)", stname="ImDrawList"}, @@ -2202,6 +2281,7 @@ local t={ num_segments="0"}, funcname="PathArcTo", location="imgui:3504", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathArcTo", ret="void", signature="(const ImVec2,float,float,float,int)", @@ -2233,6 +2313,7 @@ local t={ defaults={}, funcname="PathArcToFast", location="imgui:3505", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathArcToFast", ret="void", signature="(const ImVec2,float,int,int)", @@ -2265,6 +2346,7 @@ local t={ num_segments="0"}, funcname="PathBezierCubicCurveTo", location="imgui:3507", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathBezierCubicCurveTo", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2294,6 +2376,7 @@ local t={ num_segments="0"}, funcname="PathBezierQuadraticCurveTo", location="imgui:3508", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathBezierQuadraticCurveTo", ret="void", signature="(const ImVec2,const ImVec2,int)", @@ -2313,6 +2396,7 @@ local t={ defaults={}, funcname="PathClear", location="imgui:3498", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathClear", ret="void", signature="()", @@ -2351,6 +2435,7 @@ local t={ num_segments="0"}, funcname="PathEllipticalArcTo", location="imgui:3506", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathEllipticalArcTo", ret="void", signature="(const ImVec2,const ImVec2,float,float,float,int)", @@ -2373,6 +2458,7 @@ local t={ defaults={}, funcname="PathFillConcave", location="imgui:3502", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathFillConcave", ret="void", signature="(ImU32)", @@ -2395,6 +2481,7 @@ local t={ defaults={}, funcname="PathFillConvex", location="imgui:3501", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathFillConvex", ret="void", signature="(ImU32)", @@ -2417,6 +2504,7 @@ local t={ defaults={}, funcname="PathLineTo", location="imgui:3499", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathLineTo", ret="void", signature="(const ImVec2)", @@ -2439,6 +2527,7 @@ local t={ defaults={}, funcname="PathLineToMergeDuplicate", location="imgui:3500", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathLineToMergeDuplicate", ret="void", signature="(const ImVec2)", @@ -2472,6 +2561,7 @@ local t={ rounding="0.0f"}, funcname="PathRect", location="imgui:3509", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathRect", ret="void", signature="(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2502,6 +2592,7 @@ local t={ thickness="1.0f"}, funcname="PathStroke", location="imgui:3503", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PathStroke", ret="void", signature="(ImU32,ImDrawFlags,float)", @@ -2521,6 +2612,7 @@ local t={ defaults={}, funcname="PopClipRect", location="imgui:3448", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PopClipRect", ret="void", signature="()", @@ -2540,6 +2632,7 @@ local t={ defaults={}, funcname="PopTexture", location="imgui:3450", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PopTexture", ret="void", signature="()", @@ -2586,6 +2679,7 @@ local t={ defaults={}, funcname="PrimQuadUV", location="imgui:3543", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimQuadUV", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2614,6 +2708,7 @@ local t={ defaults={}, funcname="PrimRect", location="imgui:3541", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimRect", ret="void", signature="(const ImVec2,const ImVec2,ImU32)", @@ -2648,6 +2743,7 @@ local t={ defaults={}, funcname="PrimRectUV", location="imgui:3542", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimRectUV", ret="void", signature="(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2673,6 +2769,7 @@ local t={ defaults={}, funcname="PrimReserve", location="imgui:3539", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimReserve", ret="void", signature="(int,int)", @@ -2698,6 +2795,7 @@ local t={ defaults={}, funcname="PrimUnreserve", location="imgui:3540", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimUnreserve", ret="void", signature="(int,int)", @@ -2726,6 +2824,7 @@ local t={ defaults={}, funcname="PrimVtx", location="imgui:3546", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimVtx", ret="void", signature="(const ImVec2,const ImVec2,ImU32)", @@ -2748,6 +2847,7 @@ local t={ defaults={}, funcname="PrimWriteIdx", location="imgui:3545", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimWriteIdx", ret="void", signature="(ImDrawIdx)", @@ -2776,6 +2876,7 @@ local t={ defaults={}, funcname="PrimWriteVtx", location="imgui:3544", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PrimWriteVtx", ret="void", signature="(const ImVec2,const ImVec2,ImU32)", @@ -2805,6 +2906,7 @@ local t={ intersect_with_current_clip_rect="false"}, funcname="PushClipRect", location="imgui:3446", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PushClipRect", ret="void", signature="(const ImVec2,const ImVec2,bool)", @@ -2824,6 +2926,7 @@ local t={ defaults={}, funcname="PushClipRectFullScreen", location="imgui:3447", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PushClipRectFullScreen", ret="void", signature="()", @@ -2846,6 +2949,7 @@ local t={ defaults={}, funcname="PushTexture", location="imgui:3449", + namespace="ImDrawList", ov_cimguiname="ImDrawList_PushTexture", ret="void", signature="(ImTextureRef)", @@ -2868,6 +2972,7 @@ local t={ defaults={}, funcname="_CalcCircleAutoSegmentCount", location="imgui:3569", + namespace="ImDrawList", ov_cimguiname="ImDrawList__CalcCircleAutoSegmentCount", ret="int", signature="(float)const", @@ -2887,6 +2992,7 @@ local t={ defaults={}, funcname="_ClearFreeMemory", location="imgui:3562", + namespace="ImDrawList", ov_cimguiname="ImDrawList__ClearFreeMemory", ret="void", signature="()", @@ -2906,6 +3012,7 @@ local t={ defaults={}, funcname="_OnChangedClipRect", location="imgui:3565", + namespace="ImDrawList", ov_cimguiname="ImDrawList__OnChangedClipRect", ret="void", signature="()", @@ -2925,6 +3032,7 @@ local t={ defaults={}, funcname="_OnChangedTexture", location="imgui:3566", + namespace="ImDrawList", ov_cimguiname="ImDrawList__OnChangedTexture", ret="void", signature="()", @@ -2944,6 +3052,7 @@ local t={ defaults={}, funcname="_OnChangedVtxOffset", location="imgui:3567", + namespace="ImDrawList", ov_cimguiname="ImDrawList__OnChangedVtxOffset", ret="void", signature="()", @@ -2978,6 +3087,7 @@ local t={ defaults={}, funcname="_PathArcToFastEx", location="imgui:3570", + namespace="ImDrawList", ov_cimguiname="ImDrawList__PathArcToFastEx", ret="void", signature="(const ImVec2,float,int,int,int)", @@ -3012,6 +3122,7 @@ local t={ defaults={}, funcname="_PathArcToN", location="imgui:3571", + namespace="ImDrawList", ov_cimguiname="ImDrawList__PathArcToN", ret="void", signature="(const ImVec2,float,float,float,int)", @@ -3031,6 +3142,7 @@ local t={ defaults={}, funcname="_PopUnusedDrawCmd", location="imgui:3563", + namespace="ImDrawList", ov_cimguiname="ImDrawList__PopUnusedDrawCmd", ret="void", signature="()", @@ -3050,6 +3162,7 @@ local t={ defaults={}, funcname="_ResetForNewFrame", location="imgui:3561", + namespace="ImDrawList", ov_cimguiname="ImDrawList__ResetForNewFrame", ret="void", signature="()", @@ -3072,6 +3185,7 @@ local t={ defaults={}, funcname="_SetDrawListSharedData", location="imgui:3560", + namespace="ImDrawList", ov_cimguiname="ImDrawList__SetDrawListSharedData", ret="void", signature="(ImDrawListSharedData*)", @@ -3094,6 +3208,7 @@ local t={ defaults={}, funcname="_SetTexture", location="imgui:3568", + namespace="ImDrawList", ov_cimguiname="ImDrawList__SetTexture", ret="void", signature="(ImTextureRef)", @@ -3113,6 +3228,7 @@ local t={ defaults={}, funcname="_TryMergeDrawCmds", location="imgui:3564", + namespace="ImDrawList", ov_cimguiname="ImDrawList__TryMergeDrawCmds", ret="void", signature="()", @@ -3148,6 +3264,7 @@ local t={ defaults={}, funcname="ImFontAtlasBuilder", location="imgui_internal:4203", + namespace="ImFontAtlasBuilder", ov_cimguiname="ImFontAtlasBuilder_ImFontAtlasBuilder", signature="()", stname="ImFontAtlasBuilder"}, @@ -3181,6 +3298,7 @@ local t={ defaults={}, funcname="ImFontAtlasRect", location="imgui:3773", + namespace="ImFontAtlasRect", ov_cimguiname="ImFontAtlasRect_ImFontAtlasRect", signature="()", stname="ImFontAtlasRect"}, @@ -3226,6 +3344,7 @@ local t={ out_r="NULL"}, funcname="AddCustomRect", location="imgui:3886", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddCustomRect", ret="ImFontAtlasRectId", signature="(int,int,ImFontAtlasRect*)", @@ -3248,6 +3367,7 @@ local t={ defaults={}, funcname="AddFont", location="imgui:3808", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFont", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3271,6 +3391,7 @@ local t={ font_cfg="NULL"}, funcname="AddFontDefault", location="imgui:3809", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontDefault", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3294,6 +3415,7 @@ local t={ font_cfg="NULL"}, funcname="AddFontDefaultBitmap", location="imgui:3811", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontDefaultBitmap", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3317,6 +3439,7 @@ local t={ font_cfg="NULL"}, funcname="AddFontDefaultVector", location="imgui:3810", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontDefaultVector", ret="ImFont*", signature="(const ImFontConfig*)", @@ -3351,6 +3474,7 @@ local t={ size_pixels="0.0f"}, funcname="AddFontFromFileTTF", location="imgui:3812", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontFromFileTTF", ret="ImFont*", signature="(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3385,6 +3509,7 @@ local t={ size_pixels="0.0f"}, funcname="AddFontFromMemoryCompressedBase85TTF", location="imgui:3815", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", ret="ImFont*", signature="(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3422,6 +3547,7 @@ local t={ size_pixels="0.0f"}, funcname="AddFontFromMemoryCompressedTTF", location="imgui:3814", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontFromMemoryCompressedTTF", ret="ImFont*", signature="(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3459,6 +3585,7 @@ local t={ size_pixels="0.0f"}, funcname="AddFontFromMemoryTTF", location="imgui:3813", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_AddFontFromMemoryTTF", ret="ImFont*", signature="(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3478,6 +3605,7 @@ local t={ defaults={}, funcname="Clear", location="imgui:3818", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_Clear", ret="void", signature="()", @@ -3497,6 +3625,7 @@ local t={ defaults={}, funcname="ClearFonts", location="imgui:3824", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_ClearFonts", ret="void", signature="()", @@ -3516,6 +3645,7 @@ local t={ defaults={}, funcname="ClearInputData", location="imgui:3823", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_ClearInputData", ret="void", signature="()", @@ -3535,6 +3665,7 @@ local t={ defaults={}, funcname="ClearTexData", location="imgui:3825", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_ClearTexData", ret="void", signature="()", @@ -3554,6 +3685,7 @@ local t={ defaults={}, funcname="CompactCache", location="imgui:3819", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_CompactCache", ret="void", signature="()", @@ -3579,6 +3711,7 @@ local t={ defaults={}, funcname="GetCustomRect", location="imgui:3888", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_GetCustomRect", ret="bool", signature="(ImFontAtlasRectId,ImFontAtlasRect*)const", @@ -3598,6 +3731,7 @@ local t={ defaults={}, funcname="GetGlyphRangesDefault", location="imgui:3849", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_GetGlyphRangesDefault", ret="const ImWchar*", signature="()", @@ -3615,6 +3749,7 @@ local t={ defaults={}, funcname="ImFontAtlas", location="imgui:3806", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_ImFontAtlas", signature="()", stname="ImFontAtlas"}, @@ -3636,6 +3771,7 @@ local t={ defaults={}, funcname="RemoveCustomRect", location="imgui:3887", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_RemoveCustomRect", ret="void", signature="(ImFontAtlasRectId)", @@ -3658,6 +3794,7 @@ local t={ defaults={}, funcname="RemoveFont", location="imgui:3816", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_RemoveFont", ret="void", signature="(ImFont*)", @@ -3680,6 +3817,7 @@ local t={ defaults={}, funcname="SetFontLoader", location="imgui:3820", + namespace="ImFontAtlas", ov_cimguiname="ImFontAtlas_SetFontLoader", ret="void", signature="(const ImFontLoader*)", @@ -3717,6 +3855,7 @@ local t={ defaults={}, funcname="ClearOutputData", location="imgui:3981", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_ClearOutputData", ret="void", signature="()", @@ -3739,6 +3878,7 @@ local t={ defaults={}, funcname="FindGlyph", location="imgui:3982", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_FindGlyph", ret="ImFontGlyph*", signature="(ImWchar)", @@ -3761,6 +3901,7 @@ local t={ defaults={}, funcname="FindGlyphNoFallback", location="imgui:3983", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_FindGlyphNoFallback", ret="ImFontGlyph*", signature="(ImWchar)", @@ -3783,6 +3924,7 @@ local t={ defaults={}, funcname="GetCharAdvance", location="imgui:3984", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_GetCharAdvance", ret="float", signature="(ImWchar)", @@ -3800,6 +3942,7 @@ local t={ defaults={}, funcname="ImFontBaked", location="imgui:3980", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_ImFontBaked", signature="()", stname="ImFontBaked"}, @@ -3821,6 +3964,7 @@ local t={ defaults={}, funcname="IsGlyphLoaded", location="imgui:3985", + namespace="ImFontBaked", ov_cimguiname="ImFontBaked_IsGlyphLoaded", ret="bool", signature="(ImWchar)", @@ -3855,6 +3999,7 @@ local t={ defaults={}, funcname="ImFontConfig", location="imgui:3724", + namespace="ImFontConfig", ov_cimguiname="ImFontConfig_ImFontConfig", signature="()", stname="ImFontConfig"}, @@ -3893,6 +4038,7 @@ local t={ defaults={}, funcname="AddChar", location="imgui:3753", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_AddChar", ret="void", signature="(ImWchar)", @@ -3915,6 +4061,7 @@ local t={ defaults={}, funcname="AddRanges", location="imgui:3755", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_AddRanges", ret="void", signature="(const ImWchar*)", @@ -3941,6 +4088,7 @@ local t={ text_end="NULL"}, funcname="AddText", location="imgui:3754", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_AddText", ret="void", signature="(const char*,const char*)", @@ -3963,6 +4111,7 @@ local t={ defaults={}, funcname="BuildRanges", location="imgui:3756", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_BuildRanges", ret="void", signature="(ImVector_ImWchar*)", @@ -3982,6 +4131,7 @@ local t={ defaults={}, funcname="Clear", location="imgui:3750", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_Clear", ret="void", signature="()", @@ -4004,6 +4154,7 @@ local t={ defaults={}, funcname="GetBit", location="imgui:3751", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_GetBit", ret="bool", signature="(size_t)const", @@ -4021,6 +4172,7 @@ local t={ defaults={}, funcname="ImFontGlyphRangesBuilder", location="imgui:3749", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", signature="()", stname="ImFontGlyphRangesBuilder"}, @@ -4042,6 +4194,7 @@ local t={ defaults={}, funcname="SetBit", location="imgui:3752", + namespace="ImFontGlyphRangesBuilder", ov_cimguiname="ImFontGlyphRangesBuilder_SetBit", ret="void", signature="(size_t)", @@ -4076,6 +4229,7 @@ local t={ defaults={}, funcname="ImFontGlyph", location="imgui:3740", + namespace="ImFontGlyph", ov_cimguiname="ImFontGlyph_ImFontGlyph", signature="()", stname="ImFontGlyph"}, @@ -4109,6 +4263,7 @@ local t={ defaults={}, funcname="ImFontLoader", location="imgui_internal:4106", + namespace="ImFontLoader", ov_cimguiname="ImFontLoader_ImFontLoader", signature="()", stname="ImFontLoader"}, @@ -4150,6 +4305,7 @@ local t={ defaults={}, funcname="AddRemapChar", location="imgui:4046", + namespace="ImFont", ov_cimguiname="ImFont_AddRemapChar", ret="void", signature="(ImWchar,ImWchar)", @@ -4190,6 +4346,7 @@ local t={ text_end="NULL"}, funcname="CalcTextSizeA", location="imgui:4036", + namespace="ImFont", nonUDT=1, ov_cimguiname="ImFont_CalcTextSizeA", ret="ImVec2_c", @@ -4222,6 +4379,7 @@ local t={ defaults={}, funcname="CalcWordWrapPosition", location="imgui:4037", + namespace="ImFont", ov_cimguiname="ImFont_CalcWordWrapPosition", ret="const char*", signature="(float,const char*,const char*,float)", @@ -4241,6 +4399,7 @@ local t={ defaults={}, funcname="ClearOutputData", location="imgui:4045", + namespace="ImFont", ov_cimguiname="ImFont_ClearOutputData", ret="void", signature="()", @@ -4260,6 +4419,7 @@ local t={ defaults={}, funcname="GetDebugName", location="imgui:4030", + namespace="ImFont", ov_cimguiname="ImFont_GetDebugName", ret="const char*", signature="()const", @@ -4286,6 +4446,7 @@ local t={ density="-1.0f"}, funcname="GetFontBaked", location="imgui:4035", + namespace="ImFont", ov_cimguiname="ImFont_GetFontBaked", ret="ImFontBaked*", signature="(float,float)", @@ -4303,6 +4464,7 @@ local t={ defaults={}, funcname="ImFont", location="imgui:4026", + namespace="ImFont", ov_cimguiname="ImFont_ImFont", signature="()", stname="ImFont"}, @@ -4324,6 +4486,7 @@ local t={ defaults={}, funcname="IsGlyphInFont", location="imgui:4028", + namespace="ImFont", ov_cimguiname="ImFont_IsGlyphInFont", ret="bool", signature="(ImWchar)", @@ -4349,6 +4512,7 @@ local t={ defaults={}, funcname="IsGlyphRangeUnused", location="imgui:4047", + namespace="ImFont", ov_cimguiname="ImFont_IsGlyphRangeUnused", ret="bool", signature="(unsigned int,unsigned int)", @@ -4368,6 +4532,7 @@ local t={ defaults={}, funcname="IsLoaded", location="imgui:4029", + namespace="ImFont", ov_cimguiname="ImFont_IsLoaded", ret="bool", signature="()const", @@ -4406,6 +4571,7 @@ local t={ cpu_fine_clip="NULL"}, funcname="RenderChar", location="imgui:4038", + namespace="ImFont", ov_cimguiname="ImFont_RenderChar", ret="void", signature="(ImDrawList*,float,const ImVec2,ImU32,ImWchar,const ImVec4*)", @@ -4454,6 +4620,7 @@ local t={ wrap_width="0.0f"}, funcname="RenderText", location="imgui:4039", + namespace="ImFont", ov_cimguiname="ImFont_RenderText", ret="void", signature="(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,ImDrawTextFlags)", @@ -4489,6 +4656,7 @@ local t={ defaults={}, funcname="ImGuiBoxSelectState", location="imgui_internal:1918", + namespace="ImGuiBoxSelectState", ov_cimguiname="ImGuiBoxSelectState_ImGuiBoxSelectState", signature="()", stname="ImGuiBoxSelectState"}, @@ -4522,6 +4690,7 @@ local t={ defaults={}, funcname="ImGuiComboPreviewData", location="imgui_internal:1177", + namespace="ImGuiComboPreviewData", ov_cimguiname="ImGuiComboPreviewData_ImGuiComboPreviewData", signature="()", stname="ImGuiComboPreviewData"}, @@ -4555,6 +4724,7 @@ local t={ defaults={}, funcname="ImGuiContextHook", location="imgui_internal:2377", + namespace="ImGuiContextHook", ov_cimguiname="ImGuiContextHook_ImGuiContextHook", signature="()", stname="ImGuiContextHook"}, @@ -4591,6 +4761,7 @@ local t={ defaults={}, funcname="ImGuiContext", location="imgui_internal:2793", + namespace="ImGuiContext", ov_cimguiname="ImGuiContext_ImGuiContext", signature="(ImFontAtlas*)", stname="ImGuiContext"}, @@ -4625,6 +4796,7 @@ local t={ defaults={}, funcname="ImGuiDebugAllocInfo", location="imgui_internal:2305", + namespace="ImGuiDebugAllocInfo", ov_cimguiname="ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", signature="()", stname="ImGuiDebugAllocInfo"}, @@ -4658,6 +4830,7 @@ local t={ defaults={}, funcname="ImGuiDebugItemPathQuery", location="imgui_internal:2348", + namespace="ImGuiDebugItemPathQuery", ov_cimguiname="ImGuiDebugItemPathQuery_ImGuiDebugItemPathQuery", signature="()", stname="ImGuiDebugItemPathQuery"}, @@ -4691,6 +4864,7 @@ local t={ defaults={}, funcname="ImGuiDockContext", location="imgui_internal:2119", + namespace="ImGuiDockContext", ov_cimguiname="ImGuiDockContext_ImGuiDockContext", signature="()", stname="ImGuiDockContext"}, @@ -4727,6 +4901,7 @@ local t={ defaults={}, funcname="ImGuiDockNode", location="imgui_internal:2072", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_ImGuiDockNode", signature="(ImGuiID)", stname="ImGuiDockNode"}, @@ -4745,6 +4920,7 @@ local t={ defaults={}, funcname="IsCentralNode", location="imgui_internal:2077", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_IsCentralNode", ret="bool", signature="()const", @@ -4764,6 +4940,7 @@ local t={ defaults={}, funcname="IsDockSpace", location="imgui_internal:2075", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_IsDockSpace", ret="bool", signature="()const", @@ -4783,6 +4960,7 @@ local t={ defaults={}, funcname="IsEmpty", location="imgui_internal:2082", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_IsEmpty", ret="bool", signature="()const", @@ -4802,6 +4980,7 @@ local t={ defaults={}, funcname="IsFloatingNode", location="imgui_internal:2076", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_IsFloatingNode", ret="bool", signature="()const", @@ -4821,6 +5000,7 @@ local t={ defaults={}, funcname="IsHiddenTabBar", location="imgui_internal:2078", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_IsHiddenTabBar", ret="bool", signature="()const", @@ -4840,6 +5020,7 @@ local t={ defaults={}, funcname="IsLeafNode", location="imgui_internal:2081", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_IsLeafNode", ret="bool", signature="()const", @@ -4859,6 +5040,7 @@ local t={ defaults={}, funcname="IsNoTabBar", location="imgui_internal:2079", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_IsNoTabBar", ret="bool", signature="()const", @@ -4878,6 +5060,7 @@ local t={ defaults={}, funcname="IsRootNode", location="imgui_internal:2074", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_IsRootNode", ret="bool", signature="()const", @@ -4897,6 +5080,7 @@ local t={ defaults={}, funcname="IsSplitNode", location="imgui_internal:2080", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_IsSplitNode", ret="bool", signature="()const", @@ -4917,6 +5101,7 @@ local t={ defaults={}, funcname="Rect", location="imgui_internal:2083", + namespace="ImGuiDockNode", nonUDT=1, ov_cimguiname="ImGuiDockNode_Rect", ret="ImRect_c", @@ -4940,6 +5125,7 @@ local t={ defaults={}, funcname="SetLocalFlags", location="imgui_internal:2085", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_SetLocalFlags", ret="void", signature="(ImGuiDockNodeFlags)", @@ -4959,6 +5145,7 @@ local t={ defaults={}, funcname="UpdateMergedFlags", location="imgui_internal:2086", + namespace="ImGuiDockNode", ov_cimguiname="ImGuiDockNode_UpdateMergedFlags", ret="void", signature="()", @@ -4994,6 +5181,7 @@ local t={ defaults={}, funcname="ImGuiErrorRecoveryState", location="imgui_internal:1441", + namespace="ImGuiErrorRecoveryState", ov_cimguiname="ImGuiErrorRecoveryState_ImGuiErrorRecoveryState", signature="()", stname="ImGuiErrorRecoveryState"}, @@ -5095,6 +5283,7 @@ local t={ defaults={}, funcname="ImGuiIDStackTool", location="imgui_internal:2359", + namespace="ImGuiIDStackTool", ov_cimguiname="ImGuiIDStackTool_ImGuiIDStackTool", signature="()", stname="ImGuiIDStackTool"}, @@ -5133,6 +5322,7 @@ local t={ defaults={}, funcname="AddFocusEvent", location="imgui:2633", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddFocusEvent", ret="void", signature="(bool)", @@ -5155,6 +5345,7 @@ local t={ defaults={}, funcname="AddInputCharacter", location="imgui:2634", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddInputCharacter", ret="void", signature="(unsigned int)", @@ -5177,6 +5368,7 @@ local t={ defaults={}, funcname="AddInputCharacterUTF16", location="imgui:2635", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddInputCharacterUTF16", ret="void", signature="(ImWchar16)", @@ -5199,6 +5391,7 @@ local t={ defaults={}, funcname="AddInputCharactersUTF8", location="imgui:2636", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddInputCharactersUTF8", ret="void", signature="(const char*)", @@ -5227,6 +5420,7 @@ local t={ defaults={}, funcname="AddKeyAnalogEvent", location="imgui:2627", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddKeyAnalogEvent", ret="void", signature="(ImGuiKey,bool,float)", @@ -5252,6 +5446,7 @@ local t={ defaults={}, funcname="AddKeyEvent", location="imgui:2626", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddKeyEvent", ret="void", signature="(ImGuiKey,bool)", @@ -5277,6 +5472,7 @@ local t={ defaults={}, funcname="AddMouseButtonEvent", location="imgui:2629", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddMouseButtonEvent", ret="void", signature="(int,bool)", @@ -5302,6 +5498,7 @@ local t={ defaults={}, funcname="AddMousePosEvent", location="imgui:2628", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddMousePosEvent", ret="void", signature="(float,float)", @@ -5324,6 +5521,7 @@ local t={ defaults={}, funcname="AddMouseSourceEvent", location="imgui:2631", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddMouseSourceEvent", ret="void", signature="(ImGuiMouseSource)", @@ -5346,6 +5544,7 @@ local t={ defaults={}, funcname="AddMouseViewportEvent", location="imgui:2632", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddMouseViewportEvent", ret="void", signature="(ImGuiID)", @@ -5371,6 +5570,7 @@ local t={ defaults={}, funcname="AddMouseWheelEvent", location="imgui:2630", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_AddMouseWheelEvent", ret="void", signature="(float,float)", @@ -5390,6 +5590,7 @@ local t={ defaults={}, funcname="ClearEventsQueue", location="imgui:2640", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_ClearEventsQueue", ret="void", signature="()", @@ -5409,6 +5610,7 @@ local t={ defaults={}, funcname="ClearInputKeys", location="imgui:2641", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_ClearInputKeys", ret="void", signature="()", @@ -5428,6 +5630,7 @@ local t={ defaults={}, funcname="ClearInputMouse", location="imgui:2642", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_ClearInputMouse", ret="void", signature="()", @@ -5445,6 +5648,7 @@ local t={ defaults={}, funcname="ImGuiIO", location="imgui:2733", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_ImGuiIO", signature="()", stname="ImGuiIO"}, @@ -5466,6 +5670,7 @@ local t={ defaults={}, funcname="SetAppAcceptingEvents", location="imgui:2639", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_SetAppAcceptingEvents", ret="void", signature="(bool)", @@ -5498,6 +5703,7 @@ local t={ native_legacy_index="-1"}, funcname="SetKeyEventNativeData", location="imgui:2638", + namespace="ImGuiIO", ov_cimguiname="ImGuiIO_SetKeyEventNativeData", ret="void", signature="(ImGuiKey,int,int,int)", @@ -5532,6 +5738,7 @@ local t={ defaults={}, funcname="ImGuiInputEvent", location="imgui_internal:1583", + namespace="ImGuiInputEvent", ov_cimguiname="ImGuiInputEvent_ImGuiInputEvent", signature="()", stname="ImGuiInputEvent"}, @@ -5567,6 +5774,7 @@ local t={ defaults={}, funcname="ClearSelection", location="imgui:2780", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_ClearSelection", ret="void", signature="()", @@ -5592,6 +5800,7 @@ local t={ defaults={}, funcname="DeleteChars", location="imgui:2776", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_DeleteChars", ret="void", signature="(int,int)", @@ -5611,6 +5820,7 @@ local t={ defaults={}, funcname="HasSelection", location="imgui:2781", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_HasSelection", ret="bool", signature="()const", @@ -5628,6 +5838,7 @@ local t={ defaults={}, funcname="ImGuiInputTextCallbackData", location="imgui:2775", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", signature="()", stname="ImGuiInputTextCallbackData"}, @@ -5656,6 +5867,7 @@ local t={ text_end="NULL"}, funcname="InsertChars", location="imgui:2777", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_InsertChars", ret="void", signature="(int,const char*,const char*)", @@ -5675,6 +5887,7 @@ local t={ defaults={}, funcname="SelectAll", location="imgui:2778", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_SelectAll", ret="void", signature="()", @@ -5700,6 +5913,7 @@ local t={ defaults={}, funcname="SetSelection", location="imgui:2779", + namespace="ImGuiInputTextCallbackData", ov_cimguiname="ImGuiInputTextCallbackData_SetSelection", ret="void", signature="(int,int)", @@ -5736,6 +5950,7 @@ local t={ defaults={}, funcname="ClearFreeMemory", location="imgui_internal:1224", + namespace="ImGuiInputTextDeactivatedState", ov_cimguiname="ImGuiInputTextDeactivatedState_ClearFreeMemory", ret="void", signature="()", @@ -5753,6 +5968,7 @@ local t={ defaults={}, funcname="ImGuiInputTextDeactivatedState", location="imgui_internal:1223", + namespace="ImGuiInputTextDeactivatedState", ov_cimguiname="ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", signature="()", stname="ImGuiInputTextDeactivatedState"}, @@ -5788,6 +6004,7 @@ local t={ defaults={}, funcname="ClearFreeMemory", location="imgui_internal:1269", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ClearFreeMemory", ret="void", signature="()", @@ -5807,6 +6024,7 @@ local t={ defaults={}, funcname="ClearSelection", location="imgui_internal:1279", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ClearSelection", ret="void", signature="()", @@ -5826,6 +6044,7 @@ local t={ defaults={}, funcname="ClearText", location="imgui_internal:1268", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ClearText", ret="void", signature="()", @@ -5845,6 +6064,7 @@ local t={ defaults={}, funcname="CursorAnimReset", location="imgui_internal:1276", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_CursorAnimReset", ret="void", signature="()", @@ -5864,6 +6084,7 @@ local t={ defaults={}, funcname="CursorClamp", location="imgui_internal:1277", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_CursorClamp", ret="void", signature="()", @@ -5883,6 +6104,7 @@ local t={ defaults={}, funcname="GetCursorPos", location="imgui_internal:1280", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_GetCursorPos", ret="int", signature="()const", @@ -5902,6 +6124,7 @@ local t={ defaults={}, funcname="GetPreferredOffsetX", location="imgui_internal:1272", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_GetPreferredOffsetX", ret="float", signature="()const", @@ -5921,6 +6144,7 @@ local t={ defaults={}, funcname="GetSelectionEnd", location="imgui_internal:1282", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_GetSelectionEnd", ret="int", signature="()const", @@ -5940,6 +6164,7 @@ local t={ defaults={}, funcname="GetSelectionStart", location="imgui_internal:1281", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_GetSelectionStart", ret="int", signature="()const", @@ -5959,6 +6184,7 @@ local t={ defaults={}, funcname="GetText", location="imgui_internal:1273", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_GetText", ret="const char*", signature="()", @@ -5978,6 +6204,7 @@ local t={ defaults={}, funcname="HasSelection", location="imgui_internal:1278", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_HasSelection", ret="bool", signature="()const", @@ -5995,6 +6222,7 @@ local t={ defaults={}, funcname="ImGuiInputTextState", location="imgui_internal:1266", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ImGuiInputTextState", signature="()", stname="ImGuiInputTextState"}, @@ -6016,6 +6244,7 @@ local t={ defaults={}, funcname="OnCharPressed", location="imgui_internal:1271", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_OnCharPressed", ret="void", signature="(unsigned int)", @@ -6038,6 +6267,7 @@ local t={ defaults={}, funcname="OnKeyPressed", location="imgui_internal:1270", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_OnKeyPressed", ret="void", signature="(int)", @@ -6057,6 +6287,7 @@ local t={ defaults={}, funcname="ReloadUserBufAndKeepSelection", location="imgui_internal:1292", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ReloadUserBufAndKeepSelection", ret="void", signature="()", @@ -6076,6 +6307,7 @@ local t={ defaults={}, funcname="ReloadUserBufAndMoveToEnd", location="imgui_internal:1293", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ReloadUserBufAndMoveToEnd", ret="void", signature="()", @@ -6095,6 +6327,7 @@ local t={ defaults={}, funcname="ReloadUserBufAndSelectAll", location="imgui_internal:1291", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_ReloadUserBufAndSelectAll", ret="void", signature="()", @@ -6114,6 +6347,7 @@ local t={ defaults={}, funcname="SelectAll", location="imgui_internal:1284", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_SelectAll", ret="void", signature="()", @@ -6139,6 +6373,7 @@ local t={ defaults={}, funcname="SetSelection", location="imgui_internal:1283", + namespace="ImGuiInputTextState", ov_cimguiname="ImGuiInputTextState_SetSelection", ret="void", signature="(int,int)", @@ -6174,6 +6409,7 @@ local t={ defaults={}, funcname="ImGuiKeyOwnerData", location="imgui_internal:1627", + namespace="ImGuiKeyOwnerData", ov_cimguiname="ImGuiKeyOwnerData_ImGuiKeyOwnerData", signature="()", stname="ImGuiKeyOwnerData"}, @@ -6207,6 +6443,7 @@ local t={ defaults={}, funcname="ImGuiKeyRoutingData", location="imgui_internal:1603", + namespace="ImGuiKeyRoutingData", ov_cimguiname="ImGuiKeyRoutingData_ImGuiKeyRoutingData", signature="()", stname="ImGuiKeyRoutingData"}, @@ -6242,6 +6479,7 @@ local t={ defaults={}, funcname="Clear", location="imgui_internal:1615", + namespace="ImGuiKeyRoutingTable", ov_cimguiname="ImGuiKeyRoutingTable_Clear", ret="void", signature="()", @@ -6259,6 +6497,7 @@ local t={ defaults={}, funcname="ImGuiKeyRoutingTable", location="imgui_internal:1614", + namespace="ImGuiKeyRoutingTable", ov_cimguiname="ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", signature="()", stname="ImGuiKeyRoutingTable"}, @@ -6292,6 +6531,7 @@ local t={ defaults={}, funcname="ImGuiLastItemData", location="imgui_internal:1408", + namespace="ImGuiLastItemData", ov_cimguiname="ImGuiLastItemData_ImGuiLastItemData", signature="()", stname="ImGuiLastItemData"}, @@ -6325,6 +6565,7 @@ local t={ defaults={}, funcname="ImGuiListClipperData", location="imgui_internal:1698", + namespace="ImGuiListClipperData", ov_cimguiname="ImGuiListClipperData_ImGuiListClipperData", signature="()", stname="ImGuiListClipperData"}, @@ -6346,6 +6587,7 @@ local t={ defaults={}, funcname="Reset", location="imgui_internal:1699", + namespace="ImGuiListClipperData", ov_cimguiname="ImGuiListClipperData_Reset", ret="void", signature="(ImGuiListClipper*)", @@ -6386,6 +6628,7 @@ local t={ funcname="FromIndices", is_static_function=true, location="imgui_internal:1685", + namespace="ImGuiListClipperRange", ov_cimguiname="ImGuiListClipperRange_FromIndices", ret="ImGuiListClipperRange", signature="(int,int)", @@ -6415,6 +6658,7 @@ local t={ funcname="FromPositions", is_static_function=true, location="imgui_internal:1686", + namespace="ImGuiListClipperRange", ov_cimguiname="ImGuiListClipperRange_FromPositions", ret="ImGuiListClipperRange", signature="(float,float,int,int)", @@ -6441,6 +6685,7 @@ local t={ items_height="-1.0f"}, funcname="Begin", location="imgui:3006", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_Begin", ret="void", signature="(int,float)", @@ -6460,6 +6705,7 @@ local t={ defaults={}, funcname="End", location="imgui:3007", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_End", ret="void", signature="()", @@ -6477,6 +6723,7 @@ local t={ defaults={}, funcname="ImGuiListClipper", location="imgui:3004", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_ImGuiListClipper", signature="()", stname="ImGuiListClipper"}, @@ -6498,6 +6745,7 @@ local t={ defaults={}, funcname="IncludeItemByIndex", location="imgui:3012", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_IncludeItemByIndex", ret="void", signature="(int)", @@ -6523,6 +6771,7 @@ local t={ defaults={}, funcname="IncludeItemsByIndex", location="imgui:3013", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_IncludeItemsByIndex", ret="void", signature="(int,int)", @@ -6545,6 +6794,7 @@ local t={ defaults={}, funcname="SeekCursorForItem", location="imgui:3018", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_SeekCursorForItem", ret="void", signature="(int)", @@ -6564,6 +6814,7 @@ local t={ defaults={}, funcname="Step", location="imgui:3008", + namespace="ImGuiListClipper", ov_cimguiname="ImGuiListClipper_Step", ret="bool", signature="()", @@ -6604,6 +6855,7 @@ local t={ defaults={}, funcname="CalcNextTotalWidth", location="imgui_internal:1214", + namespace="ImGuiMenuColumns", ov_cimguiname="ImGuiMenuColumns_CalcNextTotalWidth", ret="void", signature="(bool)", @@ -6635,6 +6887,7 @@ local t={ defaults={}, funcname="DeclColumns", location="imgui_internal:1213", + namespace="ImGuiMenuColumns", ov_cimguiname="ImGuiMenuColumns_DeclColumns", ret="float", signature="(float,float,float,float)", @@ -6652,6 +6905,7 @@ local t={ defaults={}, funcname="ImGuiMenuColumns", location="imgui_internal:1211", + namespace="ImGuiMenuColumns", ov_cimguiname="ImGuiMenuColumns_ImGuiMenuColumns", signature="()", stname="ImGuiMenuColumns"}, @@ -6676,6 +6930,7 @@ local t={ defaults={}, funcname="Update", location="imgui_internal:1212", + namespace="ImGuiMenuColumns", ov_cimguiname="ImGuiMenuColumns_Update", ret="void", signature="(float,bool)", @@ -6710,6 +6965,7 @@ local t={ defaults={}, funcname="ImGuiMultiSelectState", location="imgui_internal:1965", + namespace="ImGuiMultiSelectState", ov_cimguiname="ImGuiMultiSelectState_ImGuiMultiSelectState", signature="()", stname="ImGuiMultiSelectState"}, @@ -6745,6 +7001,7 @@ local t={ defaults={}, funcname="Clear", location="imgui_internal:1949", + namespace="ImGuiMultiSelectTempData", ov_cimguiname="ImGuiMultiSelectTempData_Clear", ret="void", signature="()", @@ -6764,6 +7021,7 @@ local t={ defaults={}, funcname="ClearIO", location="imgui_internal:1950", + namespace="ImGuiMultiSelectTempData", ov_cimguiname="ImGuiMultiSelectTempData_ClearIO", ret="void", signature="()", @@ -6781,6 +7039,7 @@ local t={ defaults={}, funcname="ImGuiMultiSelectTempData", location="imgui_internal:1948", + namespace="ImGuiMultiSelectTempData", ov_cimguiname="ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", signature="()", stname="ImGuiMultiSelectTempData"}, @@ -6816,6 +7075,7 @@ local t={ defaults={}, funcname="Clear", location="imgui_internal:1790", + namespace="ImGuiNavItemData", ov_cimguiname="ImGuiNavItemData_Clear", ret="void", signature="()", @@ -6833,6 +7093,7 @@ local t={ defaults={}, funcname="ImGuiNavItemData", location="imgui_internal:1789", + namespace="ImGuiNavItemData", ov_cimguiname="ImGuiNavItemData_ImGuiNavItemData", signature="()", stname="ImGuiNavItemData"}, @@ -6868,6 +7129,7 @@ local t={ defaults={}, funcname="ClearFlags", location="imgui_internal:1392", + namespace="ImGuiNextItemData", ov_cimguiname="ImGuiNextItemData_ClearFlags", ret="void", signature="()", @@ -6885,6 +7147,7 @@ local t={ defaults={}, funcname="ImGuiNextItemData", location="imgui_internal:1391", + namespace="ImGuiNextItemData", ov_cimguiname="ImGuiNextItemData_ImGuiNextItemData", signature="()", stname="ImGuiNextItemData"}, @@ -6920,6 +7183,7 @@ local t={ defaults={}, funcname="ClearFlags", location="imgui_internal:1360", + namespace="ImGuiNextWindowData", ov_cimguiname="ImGuiNextWindowData_ClearFlags", ret="void", signature="()", @@ -6937,6 +7201,7 @@ local t={ defaults={}, funcname="ImGuiNextWindowData", location="imgui_internal:1359", + namespace="ImGuiNextWindowData", ov_cimguiname="ImGuiNextWindowData_ImGuiNextWindowData", signature="()", stname="ImGuiNextWindowData"}, @@ -6970,6 +7235,7 @@ local t={ defaults={}, funcname="ImGuiOldColumnData", location="imgui_internal:1869", + namespace="ImGuiOldColumnData", ov_cimguiname="ImGuiOldColumnData_ImGuiOldColumnData", signature="()", stname="ImGuiOldColumnData"}, @@ -7003,6 +7269,7 @@ local t={ defaults={}, funcname="ImGuiOldColumns", location="imgui_internal:1890", + namespace="ImGuiOldColumns", ov_cimguiname="ImGuiOldColumns_ImGuiOldColumns", signature="()", stname="ImGuiOldColumns"}, @@ -7036,6 +7303,7 @@ local t={ defaults={}, funcname="ImGuiOnceUponAFrame", location="imgui:2854", + namespace="ImGuiOnceUponAFrame", ov_cimguiname="ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", signature="()", stname="ImGuiOnceUponAFrame"}, @@ -7071,6 +7339,7 @@ local t={ defaults={}, funcname="Clear", location="imgui:2832", + namespace="ImGuiPayload", ov_cimguiname="ImGuiPayload_Clear", ret="void", signature="()", @@ -7088,6 +7357,7 @@ local t={ defaults={}, funcname="ImGuiPayload", location="imgui:2831", + namespace="ImGuiPayload", ov_cimguiname="ImGuiPayload_ImGuiPayload", signature="()", stname="ImGuiPayload"}, @@ -7109,6 +7379,7 @@ local t={ defaults={}, funcname="IsDataType", location="imgui:2833", + namespace="ImGuiPayload", ov_cimguiname="ImGuiPayload_IsDataType", ret="bool", signature="(const char*)const", @@ -7128,6 +7399,7 @@ local t={ defaults={}, funcname="IsDelivery", location="imgui:2835", + namespace="ImGuiPayload", ov_cimguiname="ImGuiPayload_IsDelivery", ret="bool", signature="()const", @@ -7147,6 +7419,7 @@ local t={ defaults={}, funcname="IsPreview", location="imgui:2834", + namespace="ImGuiPayload", ov_cimguiname="ImGuiPayload_IsPreview", ret="bool", signature="()const", @@ -7183,6 +7456,7 @@ local t={ defaults={}, funcname="ClearPlatformHandlers", location="imgui:4297", + namespace="ImGuiPlatformIO", ov_cimguiname="ImGuiPlatformIO_ClearPlatformHandlers", ret="void", signature="()", @@ -7202,6 +7476,7 @@ local t={ defaults={}, funcname="ClearRendererHandlers", location="imgui:4298", + namespace="ImGuiPlatformIO", ov_cimguiname="ImGuiPlatformIO_ClearRendererHandlers", ret="void", signature="()", @@ -7219,6 +7494,7 @@ local t={ defaults={}, funcname="ImGuiPlatformIO", location="imgui:4193", + namespace="ImGuiPlatformIO", ov_cimguiname="ImGuiPlatformIO_ImGuiPlatformIO", signature="()", stname="ImGuiPlatformIO"}, @@ -7252,6 +7528,7 @@ local t={ defaults={}, funcname="ImGuiPlatformImeData", location="imgui:4321", + namespace="ImGuiPlatformImeData", ov_cimguiname="ImGuiPlatformImeData_ImGuiPlatformImeData", signature="()", stname="ImGuiPlatformImeData"}, @@ -7285,6 +7562,7 @@ local t={ defaults={}, funcname="ImGuiPlatformMonitor", location="imgui:4309", + namespace="ImGuiPlatformMonitor", ov_cimguiname="ImGuiPlatformMonitor_ImGuiPlatformMonitor", signature="()", stname="ImGuiPlatformMonitor"}, @@ -7318,6 +7596,7 @@ local t={ defaults={}, funcname="ImGuiPopupData", location="imgui_internal:1502", + namespace="ImGuiPopupData", ov_cimguiname="ImGuiPopupData_ImGuiPopupData", signature="()", stname="ImGuiPopupData"}, @@ -7354,6 +7633,7 @@ local t={ defaults={}, funcname="ImGuiPtrOrIndex", location="imgui_internal:1466", + namespace="ImGuiPtrOrIndex", ov_cimguiname="ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", signature="(void*)", stname="ImGuiPtrOrIndex"}, @@ -7371,6 +7651,7 @@ local t={ defaults={}, funcname="ImGuiPtrOrIndex", location="imgui_internal:1467", + namespace="ImGuiPtrOrIndex", ov_cimguiname="ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", signature="(int)", stname="ImGuiPtrOrIndex"}, @@ -7410,6 +7691,7 @@ local t={ defaults={}, funcname="ApplyRequests", location="imgui:3251", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_ApplyRequests", ret="void", signature="(ImGuiMultiSelectIO*)", @@ -7429,6 +7711,7 @@ local t={ defaults={}, funcname="Clear", location="imgui:3253", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_Clear", ret="void", signature="()", @@ -7451,6 +7734,7 @@ local t={ defaults={}, funcname="Contains", location="imgui:3252", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_Contains", ret="bool", signature="(ImGuiID)const", @@ -7476,6 +7760,7 @@ local t={ defaults={}, funcname="GetNextSelectedItem", location="imgui:3256", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_GetNextSelectedItem", ret="bool", signature="(void**,ImGuiID*)", @@ -7498,6 +7783,7 @@ local t={ defaults={}, funcname="GetStorageIdFromIndex", location="imgui:3257", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_GetStorageIdFromIndex", ret="ImGuiID", signature="(int)", @@ -7515,6 +7801,7 @@ local t={ defaults={}, funcname="ImGuiSelectionBasicStorage", location="imgui:3250", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", signature="()", stname="ImGuiSelectionBasicStorage"}, @@ -7539,6 +7826,7 @@ local t={ defaults={}, funcname="SetItemSelected", location="imgui:3255", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_SetItemSelected", ret="void", signature="(ImGuiID,bool)", @@ -7562,6 +7850,7 @@ local t={ defaults={}, funcname="Swap", location="imgui:3254", + namespace="ImGuiSelectionBasicStorage", ov_cimguiname="ImGuiSelectionBasicStorage_Swap", ret="void", signature="(ImGuiSelectionBasicStorage*)", @@ -7601,6 +7890,7 @@ local t={ defaults={}, funcname="ApplyRequests", location="imgui:3270", + namespace="ImGuiSelectionExternalStorage", ov_cimguiname="ImGuiSelectionExternalStorage_ApplyRequests", ret="void", signature="(ImGuiMultiSelectIO*)", @@ -7618,6 +7908,7 @@ local t={ defaults={}, funcname="ImGuiSelectionExternalStorage", location="imgui:3269", + namespace="ImGuiSelectionExternalStorage", ov_cimguiname="ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", signature="()", stname="ImGuiSelectionExternalStorage"}, @@ -7651,6 +7942,7 @@ local t={ defaults={}, funcname="ImGuiSettingsHandler", location="imgui_internal:2213", + namespace="ImGuiSettingsHandler", ov_cimguiname="ImGuiSettingsHandler_ImGuiSettingsHandler", signature="()", stname="ImGuiSettingsHandler"}, @@ -7684,6 +7976,7 @@ local t={ defaults={}, funcname="ImGuiStackLevelInfo", location="imgui_internal:2335", + namespace="ImGuiStackLevelInfo", ov_cimguiname="ImGuiStackLevelInfo_ImGuiStackLevelInfo", signature="()", stname="ImGuiStackLevelInfo"}, @@ -7723,6 +8016,7 @@ local t={ defaults={}, funcname="ImGuiStoragePair", location="imgui:2912", + namespace="ImGuiStoragePair", ov_cimguiname="ImGuiStoragePair_ImGuiStoragePair_Int", signature="(ImGuiID,int)", stname="ImGuiStoragePair"}, @@ -7743,6 +8037,7 @@ local t={ defaults={}, funcname="ImGuiStoragePair", location="imgui:2913", + namespace="ImGuiStoragePair", ov_cimguiname="ImGuiStoragePair_ImGuiStoragePair_Float", signature="(ImGuiID,float)", stname="ImGuiStoragePair"}, @@ -7763,6 +8058,7 @@ local t={ defaults={}, funcname="ImGuiStoragePair", location="imgui:2914", + namespace="ImGuiStoragePair", ov_cimguiname="ImGuiStoragePair_ImGuiStoragePair_Ptr", signature="(ImGuiID,void*)", stname="ImGuiStoragePair"}, @@ -7800,6 +8096,7 @@ local t={ defaults={}, funcname="BuildSortByKey", location="imgui:2953", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_BuildSortByKey", ret="void", signature="()", @@ -7819,6 +8116,7 @@ local t={ defaults={}, funcname="Clear", location="imgui:2933", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_Clear", ret="void", signature="()", @@ -7845,6 +8143,7 @@ local t={ default_val="false"}, funcname="GetBool", location="imgui:2936", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetBool", ret="bool", signature="(ImGuiID,bool)const", @@ -7871,6 +8170,7 @@ local t={ default_val="false"}, funcname="GetBoolRef", location="imgui:2948", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetBoolRef", ret="bool*", signature="(ImGuiID,bool)", @@ -7897,6 +8197,7 @@ local t={ default_val="0.0f"}, funcname="GetFloat", location="imgui:2938", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetFloat", ret="float", signature="(ImGuiID,float)const", @@ -7923,6 +8224,7 @@ local t={ default_val="0.0f"}, funcname="GetFloatRef", location="imgui:2949", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetFloatRef", ret="float*", signature="(ImGuiID,float)", @@ -7949,6 +8251,7 @@ local t={ default_val="0"}, funcname="GetInt", location="imgui:2934", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetInt", ret="int", signature="(ImGuiID,int)const", @@ -7975,6 +8278,7 @@ local t={ default_val="0"}, funcname="GetIntRef", location="imgui:2947", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetIntRef", ret="int*", signature="(ImGuiID,int)", @@ -7997,6 +8301,7 @@ local t={ defaults={}, funcname="GetVoidPtr", location="imgui:2940", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetVoidPtr", ret="void*", signature="(ImGuiID)const", @@ -8023,6 +8328,7 @@ local t={ default_val="NULL"}, funcname="GetVoidPtrRef", location="imgui:2950", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_GetVoidPtrRef", ret="void**", signature="(ImGuiID,void*)", @@ -8045,6 +8351,7 @@ local t={ defaults={}, funcname="SetAllInt", location="imgui:2955", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_SetAllInt", ret="void", signature="(int)", @@ -8070,6 +8377,7 @@ local t={ defaults={}, funcname="SetBool", location="imgui:2937", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_SetBool", ret="void", signature="(ImGuiID,bool)", @@ -8095,6 +8403,7 @@ local t={ defaults={}, funcname="SetFloat", location="imgui:2939", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_SetFloat", ret="void", signature="(ImGuiID,float)", @@ -8120,6 +8429,7 @@ local t={ defaults={}, funcname="SetInt", location="imgui:2935", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_SetInt", ret="void", signature="(ImGuiID,int)", @@ -8145,6 +8455,7 @@ local t={ defaults={}, funcname="SetVoidPtr", location="imgui:2941", + namespace="ImGuiStorage", ov_cimguiname="ImGuiStorage_SetVoidPtr", ret="void", signature="(ImGuiID,void*)", @@ -8168,6 +8479,7 @@ local t={ defaults={}, funcname="ImGuiStyleMod", location="imgui_internal:937", + namespace="ImGuiStyleMod", ov_cimguiname="ImGuiStyleMod_ImGuiStyleMod_Int", signature="(ImGuiStyleVar,int)", stname="ImGuiStyleMod"}, @@ -8188,6 +8500,7 @@ local t={ defaults={}, funcname="ImGuiStyleMod", location="imgui_internal:938", + namespace="ImGuiStyleMod", ov_cimguiname="ImGuiStyleMod_ImGuiStyleMod_Float", signature="(ImGuiStyleVar,float)", stname="ImGuiStyleMod"}, @@ -8208,6 +8521,7 @@ local t={ defaults={}, funcname="ImGuiStyleMod", location="imgui_internal:939", + namespace="ImGuiStyleMod", ov_cimguiname="ImGuiStyleMod_ImGuiStyleMod_Vec2", signature="(ImGuiStyleVar,ImVec2)", stname="ImGuiStyleMod"}, @@ -8248,6 +8562,7 @@ local t={ defaults={}, funcname="GetVarPtr", location="imgui_internal:922", + namespace="ImGuiStyleVarInfo", ov_cimguiname="ImGuiStyleVarInfo_GetVarPtr", ret="void*", signature="(void*)const", @@ -8265,6 +8580,7 @@ local t={ defaults={}, funcname="ImGuiStyle", location="imgui:2455", + namespace="ImGuiStyle", ov_cimguiname="ImGuiStyle_ImGuiStyle", signature="()", stname="ImGuiStyle"}, @@ -8286,6 +8602,7 @@ local t={ defaults={}, funcname="ScaleAllSizes", location="imgui:2456", + namespace="ImGuiStyle", ov_cimguiname="ImGuiStyle_ScaleAllSizes", ret="void", signature="(float)", @@ -8320,6 +8637,7 @@ local t={ defaults={}, funcname="ImGuiTabBar", location="imgui_internal:3097", + namespace="ImGuiTabBar", ov_cimguiname="ImGuiTabBar_ImGuiTabBar", signature="()", stname="ImGuiTabBar"}, @@ -8353,6 +8671,7 @@ local t={ defaults={}, funcname="ImGuiTabItem", location="imgui_internal:3053", + namespace="ImGuiTabItem", ov_cimguiname="ImGuiTabItem_ImGuiTabItem", signature="()", stname="ImGuiTabItem"}, @@ -8386,6 +8705,7 @@ local t={ defaults={}, funcname="ImGuiTableColumnSettings", location="imgui_internal:3364", + namespace="ImGuiTableColumnSettings", ov_cimguiname="ImGuiTableColumnSettings_ImGuiTableColumnSettings", signature="()", stname="ImGuiTableColumnSettings"}, @@ -8419,6 +8739,7 @@ local t={ defaults={}, funcname="ImGuiTableColumnSortSpecs", location="imgui:2249", + namespace="ImGuiTableColumnSortSpecs", ov_cimguiname="ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", signature="()", stname="ImGuiTableColumnSortSpecs"}, @@ -8452,6 +8773,7 @@ local t={ defaults={}, funcname="ImGuiTableColumn", location="imgui_internal:3156", + namespace="ImGuiTableColumn", ov_cimguiname="ImGuiTableColumn_ImGuiTableColumn", signature="()", stname="ImGuiTableColumn"}, @@ -8485,6 +8807,7 @@ local t={ defaults={}, funcname="ImGuiTableInstanceData", location="imgui_internal:3199", + namespace="ImGuiTableInstanceData", ov_cimguiname="ImGuiTableInstanceData_ImGuiTableInstanceData", signature="()", stname="ImGuiTableInstanceData"}, @@ -8520,6 +8843,7 @@ local t={ defaults={}, funcname="GetColumnSettings", location="imgui_internal:3387", + namespace="ImGuiTableSettings", ov_cimguiname="ImGuiTableSettings_GetColumnSettings", ret="ImGuiTableColumnSettings*", signature="()", @@ -8537,6 +8861,7 @@ local t={ defaults={}, funcname="ImGuiTableSettings", location="imgui_internal:3386", + namespace="ImGuiTableSettings", ov_cimguiname="ImGuiTableSettings_ImGuiTableSettings", signature="()", stname="ImGuiTableSettings"}, @@ -8570,6 +8895,7 @@ local t={ defaults={}, funcname="ImGuiTableSortSpecs", location="imgui:2238", + namespace="ImGuiTableSortSpecs", ov_cimguiname="ImGuiTableSortSpecs_ImGuiTableSortSpecs", signature="()", stname="ImGuiTableSortSpecs"}, @@ -8603,6 +8929,7 @@ local t={ defaults={}, funcname="ImGuiTableTempData", location="imgui_internal:3349", + namespace="ImGuiTableTempData", ov_cimguiname="ImGuiTableTempData_ImGuiTableTempData", signature="()", stname="ImGuiTableTempData"}, @@ -8636,6 +8963,7 @@ local t={ defaults={}, funcname="ImGuiTable", location="imgui_internal:3320", + namespace="ImGuiTable", ov_cimguiname="ImGuiTable_ImGuiTable", signature="()", stname="ImGuiTable"}, @@ -8670,6 +8998,7 @@ local t={ defaults={}, funcname="ImGuiTextBuffer", location="imgui:2892", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_ImGuiTextBuffer", signature="()", stname="ImGuiTextBuffer"}, @@ -8695,6 +9024,7 @@ local t={ str_end="NULL"}, funcname="append", location="imgui:2902", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_append", ret="void", signature="(const char*,const char*)", @@ -8722,6 +9052,7 @@ local t={ isvararg="...)", location="imgui:2903", manual=true, + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_appendf", ret="void", signature="(ImGuiTextBuffer*, const char*,...)", @@ -8747,6 +9078,7 @@ local t={ defaults={}, funcname="appendfv", location="imgui:2904", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_appendfv", ret="void", signature="(const char*,va_list)", @@ -8766,6 +9098,7 @@ local t={ defaults={}, funcname="begin", location="imgui:2894", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_begin", ret="const char*", signature="()const", @@ -8785,6 +9118,7 @@ local t={ defaults={}, funcname="c_str", location="imgui:2901", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_c_str", ret="const char*", signature="()const", @@ -8804,6 +9138,7 @@ local t={ defaults={}, funcname="clear", location="imgui:2898", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_clear", ret="void", signature="()", @@ -8840,6 +9175,7 @@ local t={ defaults={}, funcname="empty", location="imgui:2897", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_empty", ret="bool", signature="()const", @@ -8859,6 +9195,7 @@ local t={ defaults={}, funcname="end", location="imgui:2895", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_end", ret="const char*", signature="()const", @@ -8881,6 +9218,7 @@ local t={ defaults={}, funcname="reserve", location="imgui:2900", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_reserve", ret="void", signature="(int)", @@ -8903,6 +9241,7 @@ local t={ defaults={}, funcname="resize", location="imgui:2899", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_resize", ret="void", signature="(int)", @@ -8922,6 +9261,7 @@ local t={ defaults={}, funcname="size", location="imgui:2896", + namespace="ImGuiTextBuffer", ov_cimguiname="ImGuiTextBuffer_size", ret="int", signature="()const", @@ -8941,6 +9281,7 @@ local t={ defaults={}, funcname="Build", location="imgui:2865", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_Build", ret="void", signature="()", @@ -8960,6 +9301,7 @@ local t={ defaults={}, funcname="Clear", location="imgui:2866", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_Clear", ret="void", signature="()", @@ -8987,6 +9329,7 @@ local t={ width="0.0f"}, funcname="Draw", location="imgui:2863", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_Draw", ret="bool", signature="(const char*,float)", @@ -9008,6 +9351,7 @@ local t={ default_filter="\"\""}, funcname="ImGuiTextFilter", location="imgui:2862", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_ImGuiTextFilter", signature="(const char*)", stname="ImGuiTextFilter"}, @@ -9026,6 +9370,7 @@ local t={ defaults={}, funcname="IsActive", location="imgui:2867", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_IsActive", ret="bool", signature="()const", @@ -9052,6 +9397,7 @@ local t={ text_end="NULL"}, funcname="PassFilter", location="imgui:2864", + namespace="ImGuiTextFilter", ov_cimguiname="ImGuiTextFilter_PassFilter", ret="bool", signature="(const char*,const char*)const", @@ -9097,6 +9443,7 @@ local t={ defaults={}, funcname="append", location="imgui_internal:832", + namespace="ImGuiTextIndex", ov_cimguiname="ImGuiTextIndex_append", ret="void", signature="(const char*,int,int)", @@ -9116,6 +9463,7 @@ local t={ defaults={}, funcname="clear", location="imgui_internal:828", + namespace="ImGuiTextIndex", ov_cimguiname="ImGuiTextIndex_clear", ret="void", signature="()", @@ -9141,6 +9489,7 @@ local t={ defaults={}, funcname="get_line_begin", location="imgui_internal:830", + namespace="ImGuiTextIndex", ov_cimguiname="ImGuiTextIndex_get_line_begin", ret="const char*", signature="(const char*,int)", @@ -9166,6 +9515,7 @@ local t={ defaults={}, funcname="get_line_end", location="imgui_internal:831", + namespace="ImGuiTextIndex", ov_cimguiname="ImGuiTextIndex_get_line_end", ret="const char*", signature="(const char*,int)", @@ -9185,6 +9535,7 @@ local t={ defaults={}, funcname="size", location="imgui_internal:829", + namespace="ImGuiTextIndex", ov_cimguiname="ImGuiTextIndex_size", ret="int", signature="()", @@ -9202,6 +9553,7 @@ local t={ defaults={}, funcname="ImGuiTextRange", location="imgui:2875", + namespace="ImGuiTextFilter::ImGuiTextRange", ov_cimguiname="ImGuiTextRange_ImGuiTextRange_Nil", signature="()", stname="ImGuiTextRange"}, @@ -9222,6 +9574,7 @@ local t={ defaults={}, funcname="ImGuiTextRange", location="imgui:2876", + namespace="ImGuiTextFilter::ImGuiTextRange", ov_cimguiname="ImGuiTextRange_ImGuiTextRange_Str", signature="(const char*,const char*)", stname="ImGuiTextRange"}, @@ -9258,6 +9611,7 @@ local t={ defaults={}, funcname="empty", location="imgui:2877", + namespace="ImGuiTextFilter::ImGuiTextRange", ov_cimguiname="ImGuiTextRange_empty", ret="bool", signature="()const", @@ -9283,6 +9637,7 @@ local t={ defaults={}, funcname="split", location="imgui:2878", + namespace="ImGuiTextFilter::ImGuiTextRange", ov_cimguiname="ImGuiTextRange_split", ret="void", signature="(char,ImVector_ImGuiTextRange*)const", @@ -9302,6 +9657,7 @@ local t={ defaults={}, funcname="Clear", location="imgui_internal:1834", + namespace="ImGuiTypingSelectState", ov_cimguiname="ImGuiTypingSelectState_Clear", ret="void", signature="()", @@ -9319,6 +9675,7 @@ local t={ defaults={}, funcname="ImGuiTypingSelectState", location="imgui_internal:1833", + namespace="ImGuiTypingSelectState", ov_cimguiname="ImGuiTypingSelectState_ImGuiTypingSelectState", signature="()", stname="ImGuiTypingSelectState"}, @@ -9358,6 +9715,7 @@ local t={ defaults={}, funcname="CalcWorkRectPos", location="imgui_internal:2165", + namespace="ImGuiViewportP", nonUDT=1, ov_cimguiname="ImGuiViewportP_CalcWorkRectPos", ret="ImVec2_c", @@ -9385,6 +9743,7 @@ local t={ defaults={}, funcname="CalcWorkRectSize", location="imgui_internal:2166", + namespace="ImGuiViewportP", nonUDT=1, ov_cimguiname="ImGuiViewportP_CalcWorkRectSize", ret="ImVec2_c", @@ -9405,6 +9764,7 @@ local t={ defaults={}, funcname="ClearRequestFlags", location="imgui_internal:2162", + namespace="ImGuiViewportP", ov_cimguiname="ImGuiViewportP_ClearRequestFlags", ret="void", signature="()", @@ -9425,6 +9785,7 @@ local t={ defaults={}, funcname="GetBuildWorkRect", location="imgui_internal:2172", + namespace="ImGuiViewportP", nonUDT=1, ov_cimguiname="ImGuiViewportP_GetBuildWorkRect", ret="ImRect_c", @@ -9446,6 +9807,7 @@ local t={ defaults={}, funcname="GetMainRect", location="imgui_internal:2170", + namespace="ImGuiViewportP", nonUDT=1, ov_cimguiname="ImGuiViewportP_GetMainRect", ret="ImRect_c", @@ -9467,6 +9829,7 @@ local t={ defaults={}, funcname="GetWorkRect", location="imgui_internal:2171", + namespace="ImGuiViewportP", nonUDT=1, ov_cimguiname="ImGuiViewportP_GetWorkRect", ret="ImRect_c", @@ -9485,6 +9848,7 @@ local t={ defaults={}, funcname="ImGuiViewportP", location="imgui_internal:2160", + namespace="ImGuiViewportP", ov_cimguiname="ImGuiViewportP_ImGuiViewportP", signature="()", stname="ImGuiViewportP"}, @@ -9503,6 +9867,7 @@ local t={ defaults={}, funcname="UpdateWorkRect", location="imgui_internal:2167", + namespace="ImGuiViewportP", ov_cimguiname="ImGuiViewportP_UpdateWorkRect", ret="void", signature="()", @@ -9541,6 +9906,7 @@ local t={ defaults={}, funcname="GetCenter", location="imgui:4135", + namespace="ImGuiViewport", nonUDT=1, ov_cimguiname="ImGuiViewport_GetCenter", ret="ImVec2_c", @@ -9561,6 +9927,7 @@ local t={ defaults={}, funcname="GetDebugName", location="imgui:4137", + namespace="ImGuiViewport", ov_cimguiname="ImGuiViewport_GetDebugName", ret="const char*", signature="()const", @@ -9581,6 +9948,7 @@ local t={ defaults={}, funcname="GetWorkCenter", location="imgui:4136", + namespace="ImGuiViewport", nonUDT=1, ov_cimguiname="ImGuiViewport_GetWorkCenter", ret="ImVec2_c", @@ -9599,6 +9967,7 @@ local t={ defaults={}, funcname="ImGuiViewport", location="imgui:4131", + namespace="ImGuiViewport", ov_cimguiname="ImGuiViewport_ImGuiViewport", signature="()", stname="ImGuiViewport"}, @@ -9633,6 +10002,7 @@ local t={ defaults={}, funcname="ImGuiWindowClass", location="imgui:2813", + namespace="ImGuiWindowClass", ov_cimguiname="ImGuiWindowClass_ImGuiWindowClass", signature="()", stname="ImGuiWindowClass"}, @@ -9668,6 +10038,7 @@ local t={ defaults={}, funcname="GetName", location="imgui_internal:2198", + namespace="ImGuiWindowSettings", ov_cimguiname="ImGuiWindowSettings_GetName", ret="char*", signature="()", @@ -9685,6 +10056,7 @@ local t={ defaults={}, funcname="ImGuiWindowSettings", location="imgui_internal:2197", + namespace="ImGuiWindowSettings", ov_cimguiname="ImGuiWindowSettings_ImGuiWindowSettings", signature="()", stname="ImGuiWindowSettings"}, @@ -9727,6 +10099,7 @@ local t={ str_end="NULL"}, funcname="GetID", location="imgui_internal:2999", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_GetID_Str", ret="ImGuiID", signature="(const char*,const char*)", @@ -9747,6 +10120,7 @@ local t={ defaults={}, funcname="GetID", location="imgui_internal:3000", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_GetID_Ptr", ret="ImGuiID", signature="(const void*)", @@ -9767,6 +10141,7 @@ local t={ defaults={}, funcname="GetID", location="imgui_internal:3001", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_GetID_Int", ret="ImGuiID", signature="(int)", @@ -9791,6 +10166,7 @@ local t={ defaults={}, funcname="GetIDFromPos", location="imgui_internal:3002", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_GetIDFromPos", ret="ImGuiID", signature="(const ImVec2)", @@ -9813,6 +10189,7 @@ local t={ defaults={}, funcname="GetIDFromRectangle", location="imgui_internal:3003", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_GetIDFromRectangle", ret="ImGuiID", signature="(const ImRect)", @@ -9836,6 +10213,7 @@ local t={ defaults={}, funcname="ImGuiWindow", location="imgui_internal:2995", + namespace="ImGuiWindow", ov_cimguiname="ImGuiWindow_ImGuiWindow", signature="(ImGuiContext*,const char*)", stname="ImGuiWindow"}, @@ -9855,6 +10233,7 @@ local t={ defaults={}, funcname="MenuBarRect", location="imgui_internal:3008", + namespace="ImGuiWindow", nonUDT=1, ov_cimguiname="ImGuiWindow_MenuBarRect", ret="ImRect_c", @@ -9876,6 +10255,7 @@ local t={ defaults={}, funcname="Rect", location="imgui_internal:3006", + namespace="ImGuiWindow", nonUDT=1, ov_cimguiname="ImGuiWindow_Rect", ret="ImRect_c", @@ -9897,6 +10277,7 @@ local t={ defaults={}, funcname="TitleBarRect", location="imgui_internal:3007", + namespace="ImGuiWindow", nonUDT=1, ov_cimguiname="ImGuiWindow_TitleBarRect", ret="ImRect_c", @@ -9935,6 +10316,7 @@ local t={ defaults={}, funcname="Add", location="imgui_internal:785", + namespace="ImPool", ov_cimguiname="ImPool_Add", ret="T*", signature="()", @@ -9955,6 +10337,7 @@ local t={ defaults={}, funcname="Clear", location="imgui_internal:784", + namespace="ImPool", ov_cimguiname="ImPool_Clear", ret="void", signature="()", @@ -9978,6 +10361,7 @@ local t={ defaults={}, funcname="Contains", location="imgui_internal:783", + namespace="ImPool", ov_cimguiname="ImPool_Contains", ret="bool", signature="(const T*)const", @@ -9998,6 +10382,7 @@ local t={ defaults={}, funcname="GetAliveCount", location="imgui_internal:792", + namespace="ImPool", ov_cimguiname="ImPool_GetAliveCount", ret="int", signature="()const", @@ -10018,6 +10403,7 @@ local t={ defaults={}, funcname="GetBufSize", location="imgui_internal:793", + namespace="ImPool", ov_cimguiname="ImPool_GetBufSize", ret="int", signature="()const", @@ -10041,6 +10427,7 @@ local t={ defaults={}, funcname="GetByIndex", location="imgui_internal:780", + namespace="ImPool", ov_cimguiname="ImPool_GetByIndex", ret="T*", signature="(ImPoolIdx)", @@ -10064,6 +10451,7 @@ local t={ defaults={}, funcname="GetByKey", location="imgui_internal:779", + namespace="ImPool", ov_cimguiname="ImPool_GetByKey", ret="T*", signature="(ImGuiID)", @@ -10087,6 +10475,7 @@ local t={ defaults={}, funcname="GetIndex", location="imgui_internal:781", + namespace="ImPool", ov_cimguiname="ImPool_GetIndex", ret="ImPoolIdx", signature="(const T*)const", @@ -10107,6 +10496,7 @@ local t={ defaults={}, funcname="GetMapSize", location="imgui_internal:794", + namespace="ImPool", ov_cimguiname="ImPool_GetMapSize", ret="int", signature="()const", @@ -10130,6 +10520,7 @@ local t={ defaults={}, funcname="GetOrAddByKey", location="imgui_internal:782", + namespace="ImPool", ov_cimguiname="ImPool_GetOrAddByKey", ret="T*", signature="(ImGuiID)", @@ -10148,6 +10539,7 @@ local t={ defaults={}, funcname="ImPool", location="imgui_internal:777", + namespace="ImPool", ov_cimguiname="ImPool_ImPool", signature="()", stname="ImPool", @@ -10173,6 +10565,7 @@ local t={ defaults={}, funcname="Remove", location="imgui_internal:786", + namespace="ImPool", ov_cimguiname="ImPool_Remove_TPtr", ret="void", signature="(ImGuiID,const T*)", @@ -10197,6 +10590,7 @@ local t={ defaults={}, funcname="Remove", location="imgui_internal:787", + namespace="ImPool", ov_cimguiname="ImPool_Remove_PoolIdx", ret="void", signature="(ImGuiID,ImPoolIdx)", @@ -10221,6 +10615,7 @@ local t={ defaults={}, funcname="Reserve", location="imgui_internal:788", + namespace="ImPool", ov_cimguiname="ImPool_Reserve", ret="void", signature="(int)", @@ -10244,6 +10639,7 @@ local t={ defaults={}, funcname="TryGetMapData", location="imgui_internal:795", + namespace="ImPool", ov_cimguiname="ImPool_TryGetMapData", ret="T*", signature="(ImPoolIdx)", @@ -10286,6 +10682,7 @@ local t={ defaults={}, funcname="Add", location="imgui_internal:615", + namespace="ImRect", ov_cimguiname="ImRect_Add_Vec2", ret="void", signature="(const ImVec2)", @@ -10306,6 +10703,7 @@ local t={ defaults={}, funcname="Add", location="imgui_internal:616", + namespace="ImRect", ov_cimguiname="ImRect_Add_Rect", ret="void", signature="(const ImRect)", @@ -10326,6 +10724,7 @@ local t={ defaults={}, funcname="AsVec4", location="imgui_internal:626", + namespace="ImRect", nonUDT=2, ov_cimguiname="ImRect_AsVec4", ret="const ImVec4_c*", @@ -10350,6 +10749,7 @@ local t={ defaults={}, funcname="ClipWith", location="imgui_internal:622", + namespace="ImRect", ov_cimguiname="ImRect_ClipWith", ret="void", signature="(const ImRect)", @@ -10372,6 +10772,7 @@ local t={ defaults={}, funcname="ClipWithFull", location="imgui_internal:623", + namespace="ImRect", ov_cimguiname="ImRect_ClipWithFull", ret="void", signature="(const ImRect)", @@ -10394,6 +10795,7 @@ local t={ defaults={}, funcname="Contains", location="imgui_internal:611", + namespace="ImRect", ov_cimguiname="ImRect_Contains_Vec2", ret="bool", signature="(const ImVec2)const", @@ -10414,6 +10816,7 @@ local t={ defaults={}, funcname="Contains", location="imgui_internal:612", + namespace="ImRect", ov_cimguiname="ImRect_Contains_Rect", ret="bool", signature="(const ImRect)const", @@ -10440,6 +10843,7 @@ local t={ defaults={}, funcname="ContainsWithPad", location="imgui_internal:613", + namespace="ImRect", ov_cimguiname="ImRect_ContainsWithPad", ret="bool", signature="(const ImVec2,const ImVec2)const", @@ -10462,6 +10866,7 @@ local t={ defaults={}, funcname="Expand", location="imgui_internal:617", + namespace="ImRect", ov_cimguiname="ImRect_Expand_Float", ret="void", signature="(const float)", @@ -10482,6 +10887,7 @@ local t={ defaults={}, funcname="Expand", location="imgui_internal:618", + namespace="ImRect", ov_cimguiname="ImRect_Expand_Vec2", ret="void", signature="(const ImVec2)", @@ -10502,6 +10908,7 @@ local t={ defaults={}, funcname="GetArea", location="imgui_internal:606", + namespace="ImRect", ov_cimguiname="ImRect_GetArea", ret="float", signature="()const", @@ -10522,6 +10929,7 @@ local t={ defaults={}, funcname="GetBL", location="imgui_internal:609", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetBL", ret="ImVec2_c", @@ -10543,6 +10951,7 @@ local t={ defaults={}, funcname="GetBR", location="imgui_internal:610", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetBR", ret="ImVec2_c", @@ -10564,6 +10973,7 @@ local t={ defaults={}, funcname="GetCenter", location="imgui_internal:602", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetCenter", ret="ImVec2_c", @@ -10584,6 +10994,7 @@ local t={ defaults={}, funcname="GetHeight", location="imgui_internal:605", + namespace="ImRect", ov_cimguiname="ImRect_GetHeight", ret="float", signature="()const", @@ -10604,6 +11015,7 @@ local t={ defaults={}, funcname="GetSize", location="imgui_internal:603", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetSize", ret="ImVec2_c", @@ -10625,6 +11037,7 @@ local t={ defaults={}, funcname="GetTL", location="imgui_internal:607", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetTL", ret="ImVec2_c", @@ -10646,6 +11059,7 @@ local t={ defaults={}, funcname="GetTR", location="imgui_internal:608", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_GetTR", ret="ImVec2_c", @@ -10666,6 +11080,7 @@ local t={ defaults={}, funcname="GetWidth", location="imgui_internal:604", + namespace="ImRect", ov_cimguiname="ImRect_GetWidth", ret="float", signature="()const", @@ -10683,6 +11098,7 @@ local t={ defaults={}, funcname="ImRect", location="imgui_internal:597", + namespace="ImRect", ov_cimguiname="ImRect_ImRect_Nil", signature="()", stname="ImRect"}, @@ -10703,6 +11119,7 @@ local t={ defaults={}, funcname="ImRect", location="imgui_internal:598", + namespace="ImRect", ov_cimguiname="ImRect_ImRect_Vec2", signature="(const ImVec2,const ImVec2)", stname="ImRect"}, @@ -10720,6 +11137,7 @@ local t={ defaults={}, funcname="ImRect", location="imgui_internal:599", + namespace="ImRect", ov_cimguiname="ImRect_ImRect_Vec4", signature="(const ImVec4)", stname="ImRect"}, @@ -10746,6 +11164,7 @@ local t={ defaults={}, funcname="ImRect", location="imgui_internal:600", + namespace="ImRect", ov_cimguiname="ImRect_ImRect_Float", signature="(float,float,float,float)", stname="ImRect"}, @@ -10767,6 +11186,7 @@ local t={ defaults={}, funcname="IsInverted", location="imgui_internal:624", + namespace="ImRect", ov_cimguiname="ImRect_IsInverted", ret="bool", signature="()const", @@ -10789,6 +11209,7 @@ local t={ defaults={}, funcname="Overlaps", location="imgui_internal:614", + namespace="ImRect", ov_cimguiname="ImRect_Overlaps", ret="bool", signature="(const ImRect)const", @@ -10809,6 +11230,7 @@ local t={ defaults={}, funcname="ToVec4", location="imgui_internal:625", + namespace="ImRect", nonUDT=1, ov_cimguiname="ImRect_ToVec4", ret="ImVec4_c", @@ -10832,6 +11254,7 @@ local t={ defaults={}, funcname="Translate", location="imgui_internal:619", + namespace="ImRect", ov_cimguiname="ImRect_Translate", ret="void", signature="(const ImVec2)", @@ -10854,6 +11277,7 @@ local t={ defaults={}, funcname="TranslateX", location="imgui_internal:620", + namespace="ImRect", ov_cimguiname="ImRect_TranslateX", ret="void", signature="(float)", @@ -10876,6 +11300,7 @@ local t={ defaults={}, funcname="TranslateY", location="imgui_internal:621", + namespace="ImRect", ov_cimguiname="ImRect_TranslateY", ret="void", signature="(float)", @@ -10912,6 +11337,7 @@ local t={ defaults={}, funcname="GetArenaSizeInBytes", location="imgui_internal:724", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_GetArenaSizeInBytes", ret="int", signature="()", @@ -10935,6 +11361,7 @@ local t={ defaults={}, funcname="GetSpanPtrBegin", location="imgui_internal:726", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_GetSpanPtrBegin", ret="void*", signature="(int)", @@ -10958,6 +11385,7 @@ local t={ defaults={}, funcname="GetSpanPtrEnd", location="imgui_internal:727", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_GetSpanPtrEnd", ret="void*", signature="(int)", @@ -10976,6 +11404,7 @@ local t={ defaults={}, funcname="ImSpanAllocator", location="imgui_internal:722", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_ImSpanAllocator", signature="()", stname="ImSpanAllocator", @@ -11005,6 +11434,7 @@ local t={ a="4"}, funcname="Reserve", location="imgui_internal:723", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_Reserve", ret="void", signature="(int,size_t,int)", @@ -11028,6 +11458,7 @@ local t={ defaults={}, funcname="SetArenaBasePtr", location="imgui_internal:725", + namespace="ImSpanAllocator", ov_cimguiname="ImSpanAllocator_SetArenaBasePtr", ret="void", signature="(void*)", @@ -11064,6 +11495,7 @@ local t={ defaults={}, funcname="ImSpan", location="imgui_internal:690", + namespace="ImSpan", ov_cimguiname="ImSpan_ImSpan_Nil", signature="()", stname="ImSpan", @@ -11085,6 +11517,7 @@ local t={ defaults={}, funcname="ImSpan", location="imgui_internal:691", + namespace="ImSpan", ov_cimguiname="ImSpan_ImSpan_TPtrInt", signature="(T*,int)", stname="ImSpan", @@ -11106,6 +11539,7 @@ local t={ defaults={}, funcname="ImSpan", location="imgui_internal:692", + namespace="ImSpan", ov_cimguiname="ImSpan_ImSpan_TPtrTPtr", signature="(T*,T*)", stname="ImSpan", @@ -11127,6 +11561,7 @@ local t={ defaults={}, funcname="begin", location="imgui_internal:701", + namespace="ImSpan", ov_cimguiname="ImSpan_begin_Nil", ret="T*", signature="()", @@ -11145,6 +11580,7 @@ local t={ defaults={}, funcname="begin", location="imgui_internal:702", + namespace="ImSpan", ov_cimguiname="ImSpan_begin__const", ret="const T*", signature="()const", @@ -11184,6 +11620,7 @@ local t={ defaults={}, funcname="end", location="imgui_internal:703", + namespace="ImSpan", ov_cimguiname="ImSpan_end_Nil", ret="T*", signature="()", @@ -11202,6 +11639,7 @@ local t={ defaults={}, funcname="end", location="imgui_internal:704", + namespace="ImSpan", ov_cimguiname="ImSpan_end__const", ret="const T*", signature="()const", @@ -11226,6 +11664,7 @@ local t={ defaults={}, funcname="index_from_ptr", location="imgui_internal:707", + namespace="ImSpan", ov_cimguiname="ImSpan_index_from_ptr", ret="int", signature="(const T*)const", @@ -11252,6 +11691,7 @@ local t={ defaults={}, funcname="set", location="imgui_internal:694", + namespace="ImSpan", ov_cimguiname="ImSpan_set_Int", ret="void", signature="(T*,int)", @@ -11276,6 +11716,7 @@ local t={ defaults={}, funcname="set", location="imgui_internal:695", + namespace="ImSpan", ov_cimguiname="ImSpan_set_TPtr", ret="void", signature="(T*,T*)", @@ -11297,6 +11738,7 @@ local t={ defaults={}, funcname="size", location="imgui_internal:696", + namespace="ImSpan", ov_cimguiname="ImSpan_size", ret="int", signature="()const", @@ -11317,6 +11759,7 @@ local t={ defaults={}, funcname="size_in_bytes", location="imgui_internal:697", + namespace="ImSpan", ov_cimguiname="ImSpan_size_in_bytes", ret="int", signature="()const", @@ -11337,6 +11780,7 @@ local t={ defaults={}, funcname="clear", location="imgui_internal:746", + namespace="ImStableVector", ov_cimguiname="ImStableVector_clear", ret="void", signature="()", @@ -11360,6 +11804,7 @@ local t={ defaults={}, funcname="push_back", location="imgui_internal:762", + namespace="ImStableVector", ov_cimguiname="ImStableVector_push_back", ret="T*", signature="(const T)", @@ -11383,6 +11828,7 @@ local t={ defaults={}, funcname="reserve", location="imgui_internal:748", + namespace="ImStableVector", ov_cimguiname="ImStableVector_reserve", ret="void", signature="(int)", @@ -11406,6 +11852,7 @@ local t={ defaults={}, funcname="resize", location="imgui_internal:747", + namespace="ImStableVector", ov_cimguiname="ImStableVector_resize", ret="void", signature="(int)", @@ -11435,6 +11882,7 @@ local t={ defaults={}, funcname="Create", location="imgui:3665", + namespace="ImTextureData", ov_cimguiname="ImTextureData_Create", ret="void", signature="(ImTextureFormat,int,int)", @@ -11454,6 +11902,7 @@ local t={ defaults={}, funcname="DestroyPixels", location="imgui:3666", + namespace="ImTextureData", ov_cimguiname="ImTextureData_DestroyPixels", ret="void", signature="()", @@ -11473,6 +11922,7 @@ local t={ defaults={}, funcname="GetPitch", location="imgui:3670", + namespace="ImTextureData", ov_cimguiname="ImTextureData_GetPitch", ret="int", signature="()const", @@ -11492,6 +11942,7 @@ local t={ defaults={}, funcname="GetPixels", location="imgui:3667", + namespace="ImTextureData", ov_cimguiname="ImTextureData_GetPixels", ret="void*", signature="()", @@ -11517,6 +11968,7 @@ local t={ defaults={}, funcname="GetPixelsAt", location="imgui:3668", + namespace="ImTextureData", ov_cimguiname="ImTextureData_GetPixelsAt", ret="void*", signature="(int,int)", @@ -11536,6 +11988,7 @@ local t={ defaults={}, funcname="GetSizeInBytes", location="imgui:3669", + namespace="ImTextureData", ov_cimguiname="ImTextureData_GetSizeInBytes", ret="int", signature="()const", @@ -11555,6 +12008,7 @@ local t={ defaults={}, funcname="GetTexID", location="imgui:3672", + namespace="ImTextureData", ov_cimguiname="ImTextureData_GetTexID", ret="ImTextureID", signature="()const", @@ -11575,6 +12029,7 @@ local t={ defaults={}, funcname="GetTexRef", location="imgui:3671", + namespace="ImTextureData", nonUDT=1, ov_cimguiname="ImTextureData_GetTexRef", ret="ImTextureRef_c", @@ -11593,6 +12048,7 @@ local t={ defaults={}, funcname="ImTextureData", location="imgui:3663", + namespace="ImTextureData", ov_cimguiname="ImTextureData_ImTextureData", signature="()", stname="ImTextureData"}, @@ -11614,6 +12070,7 @@ local t={ defaults={}, funcname="SetStatus", location="imgui:3678", + namespace="ImTextureData", ov_cimguiname="ImTextureData_SetStatus", ret="void", signature="(ImTextureStatus)", @@ -11636,6 +12093,7 @@ local t={ defaults={}, funcname="SetTexID", location="imgui:3677", + namespace="ImTextureData", ov_cimguiname="ImTextureData_SetTexID", ret="void", signature="(ImTextureID)", @@ -11673,6 +12131,7 @@ local t={ defaults={}, funcname="GetTexID", location="imgui:380", + namespace="ImTextureRef", ov_cimguiname="ImTextureRef_GetTexID", ret="ImTextureID", signature="()const", @@ -11690,6 +12149,7 @@ local t={ defaults={}, funcname="ImTextureRef", location="imgui:374", + namespace="ImTextureRef", ov_cimguiname="ImTextureRef_ImTextureRef_Nil", signature="()", stname="ImTextureRef"}, @@ -11707,6 +12167,7 @@ local t={ defaults={}, funcname="ImTextureRef", location="imgui:375", + namespace="ImTextureRef", ov_cimguiname="ImTextureRef_ImTextureRef_TextureID", signature="(ImTextureID)", stname="ImTextureRef"}, @@ -11741,6 +12202,7 @@ local t={ defaults={}, funcname="ImVec1", location="imgui_internal:569", + namespace="ImVec1", ov_cimguiname="ImVec1_ImVec1_Nil", signature="()", stname="ImVec1"}, @@ -11758,6 +12220,7 @@ local t={ defaults={}, funcname="ImVec1", location="imgui_internal:570", + namespace="ImVec1", ov_cimguiname="ImVec1_ImVec1_Float", signature="(float)", stname="ImVec1"}, @@ -11792,6 +12255,7 @@ local t={ defaults={}, funcname="ImVec2", location="imgui:303", + namespace="ImVec2", ov_cimguiname="ImVec2_ImVec2_Nil", signature="()", stname="ImVec2"}, @@ -11812,6 +12276,7 @@ local t={ defaults={}, funcname="ImVec2", location="imgui:304", + namespace="ImVec2", ov_cimguiname="ImVec2_ImVec2_Float", signature="(float,float)", stname="ImVec2"}, @@ -11846,6 +12311,7 @@ local t={ defaults={}, funcname="ImVec2i", location="imgui_internal:577", + namespace="ImVec2i", ov_cimguiname="ImVec2i_ImVec2i_Nil", signature="()", stname="ImVec2i"}, @@ -11866,6 +12332,7 @@ local t={ defaults={}, funcname="ImVec2i", location="imgui_internal:578", + namespace="ImVec2i", ov_cimguiname="ImVec2i_ImVec2i_Int", signature="(int,int)", stname="ImVec2i"}, @@ -11900,6 +12367,7 @@ local t={ defaults={}, funcname="ImVec2ih", location="imgui_internal:585", + namespace="ImVec2ih", ov_cimguiname="ImVec2ih_ImVec2ih_Nil", signature="()", stname="ImVec2ih"}, @@ -11920,6 +12388,7 @@ local t={ defaults={}, funcname="ImVec2ih", location="imgui_internal:586", + namespace="ImVec2ih", ov_cimguiname="ImVec2ih_ImVec2ih_short", signature="(short,short)", stname="ImVec2ih"}, @@ -11937,6 +12406,7 @@ local t={ defaults={}, funcname="ImVec2ih", location="imgui_internal:587", + namespace="ImVec2ih", ov_cimguiname="ImVec2ih_ImVec2ih_Vec2", signature="(const ImVec2)", stname="ImVec2ih"}, @@ -11972,6 +12442,7 @@ local t={ defaults={}, funcname="ImVec4", location="imgui:316", + namespace="ImVec4", ov_cimguiname="ImVec4_ImVec4_Nil", signature="()", stname="ImVec4"}, @@ -11998,6 +12469,7 @@ local t={ defaults={}, funcname="ImVec4", location="imgui:317", + namespace="ImVec4", ov_cimguiname="ImVec4_ImVec4_Float", signature="(float,float,float,float)", stname="ImVec4"}, @@ -12032,6 +12504,7 @@ local t={ defaults={}, funcname="ImVector", location="imgui:2306", + namespace="ImVector", ov_cimguiname="ImVector_ImVector_Nil", signature="()", stname="ImVector", @@ -12050,6 +12523,7 @@ local t={ defaults={}, funcname="ImVector", location="imgui:2307", + namespace="ImVector", ov_cimguiname="ImVector_ImVector_Vector_T_", signature="(const ImVector_T )", stname="ImVector", @@ -12073,6 +12547,7 @@ local t={ defaults={}, funcname="_grow_capacity", location="imgui:2333", + namespace="ImVector", ov_cimguiname="ImVector__grow_capacity", ret="int", signature="(int)const", @@ -12093,6 +12568,7 @@ local t={ defaults={}, funcname="back", location="imgui:2329", + namespace="ImVector", ov_cimguiname="ImVector_back_Nil", ret="T*", retref="&", @@ -12112,6 +12588,7 @@ local t={ defaults={}, funcname="back", location="imgui:2330", + namespace="ImVector", ov_cimguiname="ImVector_back__const", ret="const T*", retref="&", @@ -12134,6 +12611,7 @@ local t={ defaults={}, funcname="begin", location="imgui:2323", + namespace="ImVector", ov_cimguiname="ImVector_begin_Nil", ret="T*", signature="()", @@ -12152,6 +12630,7 @@ local t={ defaults={}, funcname="begin", location="imgui:2324", + namespace="ImVector", ov_cimguiname="ImVector_begin__const", ret="const T*", signature="()const", @@ -12173,6 +12652,7 @@ local t={ defaults={}, funcname="capacity", location="imgui:2319", + namespace="ImVector", ov_cimguiname="ImVector_capacity", ret="int", signature="()const", @@ -12193,6 +12673,7 @@ local t={ defaults={}, funcname="clear", location="imgui:2311", + namespace="ImVector", ov_cimguiname="ImVector_clear", ret="void", signature="()", @@ -12213,6 +12694,7 @@ local t={ defaults={}, funcname="clear_delete", location="imgui:2312", + namespace="ImVector", ov_cimguiname="ImVector_clear_delete", ret="void", signature="()", @@ -12233,6 +12715,7 @@ local t={ defaults={}, funcname="clear_destruct", location="imgui:2313", + namespace="ImVector", ov_cimguiname="ImVector_clear_destruct", ret="void", signature="()", @@ -12256,6 +12739,7 @@ local t={ defaults={}, funcname="contains", location="imgui:2348", + namespace="ImVector", ov_cimguiname="ImVector_contains", ret="bool", signature="(const T)const", @@ -12295,6 +12779,7 @@ local t={ defaults={}, funcname="empty", location="imgui:2315", + namespace="ImVector", ov_cimguiname="ImVector_empty", ret="bool", signature="()const", @@ -12315,6 +12800,7 @@ local t={ defaults={}, funcname="end", location="imgui:2325", + namespace="ImVector", ov_cimguiname="ImVector_end_Nil", ret="T*", signature="()", @@ -12333,6 +12819,7 @@ local t={ defaults={}, funcname="end", location="imgui:2326", + namespace="ImVector", ov_cimguiname="ImVector_end__const", ret="const T*", signature="()const", @@ -12357,6 +12844,7 @@ local t={ defaults={}, funcname="erase", location="imgui:2344", + namespace="ImVector", ov_cimguiname="ImVector_erase_Nil", ret="T*", signature="(const T*)", @@ -12381,6 +12869,7 @@ local t={ defaults={}, funcname="erase", location="imgui:2345", + namespace="ImVector", ov_cimguiname="ImVector_erase_TPtr", ret="T*", signature="(const T*,const T*)", @@ -12405,6 +12894,7 @@ local t={ defaults={}, funcname="erase_unsorted", location="imgui:2346", + namespace="ImVector", ov_cimguiname="ImVector_erase_unsorted", ret="T*", signature="(const T*)", @@ -12428,6 +12918,7 @@ local t={ defaults={}, funcname="find", location="imgui:2349", + namespace="ImVector", ov_cimguiname="ImVector_find_Nil", ret="T*", signature="(const T)", @@ -12449,6 +12940,7 @@ local t={ defaults={}, funcname="find", location="imgui:2350", + namespace="ImVector", ov_cimguiname="ImVector_find__const", ret="const T*", signature="(const T)const", @@ -12473,6 +12965,7 @@ local t={ defaults={}, funcname="find_erase", location="imgui:2352", + namespace="ImVector", ov_cimguiname="ImVector_find_erase", ret="bool", signature="(const T)", @@ -12496,6 +12989,7 @@ local t={ defaults={}, funcname="find_erase_unsorted", location="imgui:2353", + namespace="ImVector", ov_cimguiname="ImVector_find_erase_unsorted", ret="bool", signature="(const T)", @@ -12519,6 +13013,7 @@ local t={ defaults={}, funcname="find_index", location="imgui:2351", + namespace="ImVector", ov_cimguiname="ImVector_find_index", ret="int", signature="(const T)const", @@ -12539,6 +13034,7 @@ local t={ defaults={}, funcname="front", location="imgui:2327", + namespace="ImVector", ov_cimguiname="ImVector_front_Nil", ret="T*", retref="&", @@ -12558,6 +13054,7 @@ local t={ defaults={}, funcname="front", location="imgui:2328", + namespace="ImVector", ov_cimguiname="ImVector_front__const", ret="const T*", retref="&", @@ -12583,6 +13080,7 @@ local t={ defaults={}, funcname="index_from_ptr", location="imgui:2354", + namespace="ImVector", ov_cimguiname="ImVector_index_from_ptr", ret="int", signature="(const T*)const", @@ -12609,6 +13107,7 @@ local t={ defaults={}, funcname="insert", location="imgui:2347", + namespace="ImVector", ov_cimguiname="ImVector_insert", ret="T*", signature="(const T*,const T)", @@ -12629,6 +13128,7 @@ local t={ defaults={}, funcname="max_size", location="imgui:2318", + namespace="ImVector", ov_cimguiname="ImVector_max_size", ret="int", signature="()const", @@ -12649,6 +13149,7 @@ local t={ defaults={}, funcname="pop_back", location="imgui:2342", + namespace="ImVector", ov_cimguiname="ImVector_pop_back", ret="void", signature="()", @@ -12672,6 +13173,7 @@ local t={ defaults={}, funcname="push_back", location="imgui:2341", + namespace="ImVector", ov_cimguiname="ImVector_push_back", ret="void", signature="(const T)", @@ -12695,6 +13197,7 @@ local t={ defaults={}, funcname="push_front", location="imgui:2343", + namespace="ImVector", ov_cimguiname="ImVector_push_front", ret="void", signature="(const T)", @@ -12718,6 +13221,7 @@ local t={ defaults={}, funcname="reserve", location="imgui:2337", + namespace="ImVector", ov_cimguiname="ImVector_reserve", ret="void", signature="(int)", @@ -12741,6 +13245,7 @@ local t={ defaults={}, funcname="reserve_discard", location="imgui:2338", + namespace="ImVector", ov_cimguiname="ImVector_reserve_discard", ret="void", signature="(int)", @@ -12764,6 +13269,7 @@ local t={ defaults={}, funcname="resize", location="imgui:2334", + namespace="ImVector", ov_cimguiname="ImVector_resize_Nil", ret="void", signature="(int)", @@ -12788,6 +13294,7 @@ local t={ defaults={}, funcname="resize", location="imgui:2335", + namespace="ImVector", ov_cimguiname="ImVector_resize_T", ret="void", signature="(int,const T)", @@ -12812,6 +13319,7 @@ local t={ defaults={}, funcname="shrink", location="imgui:2336", + namespace="ImVector", ov_cimguiname="ImVector_shrink", ret="void", signature="(int)", @@ -12832,6 +13340,7 @@ local t={ defaults={}, funcname="size", location="imgui:2316", + namespace="ImVector", ov_cimguiname="ImVector_size", ret="int", signature="()const", @@ -12852,6 +13361,7 @@ local t={ defaults={}, funcname="size_in_bytes", location="imgui:2317", + namespace="ImVector", ov_cimguiname="ImVector_size_in_bytes", ret="int", signature="()const", @@ -12876,6 +13386,7 @@ local t={ defaults={}, funcname="swap", location="imgui:2331", + namespace="ImVector", ov_cimguiname="ImVector_swap", ret="void", signature="(ImVector_T *)", diff --git a/generator/output/impl_definitions.json b/generator/output/impl_definitions.json index 2dc0933..00b9e14 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -1576,6 +1576,7 @@ "defaults": {}, "funcname": "ImGui_ImplVulkanH_Window", "location": "imgui_impl_vulkan:260", + "namespace": "ImGui_ImplVulkanH_Window", "ov_cimguiname": "ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window", "signature": "()", "stname": "ImGui_ImplVulkanH_Window" diff --git a/generator/output/impl_definitions.lua b/generator/output/impl_definitions.lua index 56776f2..fd4280f 100644 --- a/generator/output/impl_definitions.lua +++ b/generator/output/impl_definitions.lua @@ -1360,6 +1360,7 @@ local t={ defaults={}, funcname="ImGui_ImplVulkanH_Window", location="imgui_impl_vulkan:260", + namespace="ImGui_ImplVulkanH_Window", ov_cimguiname="ImGui_ImplVulkanH_Window_ImGui_ImplVulkanH_Window", signature="()", stname="ImGui_ImplVulkanH_Window"}, diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index 5e0b2c8..bbc49ef 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -5762,6 +5762,7 @@ "ImVec2i": true, "ImVec4": true }, + "opaque_structs": [], "structs": { "ImBitVector": [ { diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index bd4d461..4221752 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -4617,6 +4617,7 @@ local t={ ImVec2=true, ImVec2i=true, ImVec4=true}, + opaque_structs={}, structs={ ImBitVector={ [1]={