From c23f8219a901f0b38f034a84f948dc1a94b734de Mon Sep 17 00:00:00 2001 From: Julian Vallee Date: Sat, 18 Sep 2021 12:32:59 +0200 Subject: [PATCH 1/4] Add experimental support for ImGui internals and update to 1.85 WIP --- generate-all.bat | 7 + src/CodeGenerator/ImguiDefinitions.cs | 50 +- src/CodeGenerator/PostFixes.cs | 161 + src/CodeGenerator/Program.cs | 83 +- src/CodeGenerator/TypeInfo.cs | 13 +- .../definitions/cimgui/definitions.json | 4398 ++++++++++------- .../definitions/cimgui/structs_and_enums.json | 1018 ++-- .../definitions/cimguizmo/definitions.json | 4 +- .../definitions/cimnodes/definitions.json | 4 +- .../definitions/cimplot/definitions.json | 719 +-- src/ImGui.NET/ImDrawList.Manual.cs | 4 +- src/ImGui.NET/ImGui.NET.csproj | 2 +- src/ImGui.NET/ImPool.cs | 82 + src/ImGui.NET/ImSpan.cs | 83 + src/ImGui.NET/Pair.cs | 4 +- src/ImGui.NET/StyleMod.cs | 37 + 16 files changed, 4190 insertions(+), 2479 deletions(-) create mode 100644 generate-all.bat create mode 100644 src/CodeGenerator/PostFixes.cs create mode 100644 src/ImGui.NET/ImPool.cs create mode 100644 src/ImGui.NET/ImSpan.cs create mode 100644 src/ImGui.NET/StyleMod.cs diff --git a/generate-all.bat b/generate-all.bat new file mode 100644 index 00000000..a81cc5d1 --- /dev/null +++ b/generate-all.bat @@ -0,0 +1,7 @@ +@setlocal +@echo off + +dotnet run -p src\CodeGenerator\CodeGenerator.csproj src\ImGui.NET\Generated cimgui true +dotnet run -p src\CodeGenerator\CodeGenerator.csproj src\ImPlot.NET\Generated cimplot false +dotnet run -p src\CodeGenerator\CodeGenerator.csproj src\ImNodes.NET\Generated cimnodes true +dotnet run -p src\CodeGenerator\CodeGenerator.csproj src\ImGuizmo.NET\Generated cimguizmo true diff --git a/src/CodeGenerator/ImguiDefinitions.cs b/src/CodeGenerator/ImguiDefinitions.cs index 92e7d741..106c19a3 100644 --- a/src/CodeGenerator/ImguiDefinitions.cs +++ b/src/CodeGenerator/ImguiDefinitions.cs @@ -15,12 +15,20 @@ class ImguiDefinitions public FunctionDefinition[] Functions; public Dictionary Variants; + private bool _enableInternals; + + public ImguiDefinitions(bool enableInternals = false) + { + _enableInternals = enableInternals; + } + static int GetInt(JToken token, string key) { var v = token[key]; if (v == null) return 0; return v.ToObject(); } + public void LoadFrom(string directory) { @@ -65,10 +73,12 @@ public void LoadFrom(string directory) { JProperty jp = (JProperty)jt; string name = jp.Name; - if (typeLocations?[jp.Name]?.Value().Contains("internal") ?? false) { - return null; - } - EnumMember[] elements = jp.Values().Select(v => + if (!_enableInternals && (typeLocations?[jp.Name]?.Value().Contains("internal") ?? false)) + { + return null; + } + + EnumMember[] elements = jp.Values().Select(v => { return new EnumMember(v["name"].ToString(), v["calc_value"].ToString()); }).ToArray(); @@ -79,7 +89,8 @@ public void LoadFrom(string directory) { JProperty jp = (JProperty)jt; string name = jp.Name; - if (typeLocations?[jp.Name]?.Value().Contains("internal") ?? false) { + if (!_enableInternals && (typeLocations?[jp.Name]?.Value().Contains("internal") ?? false)) + { return null; } TypeReference[] fields = jp.Values().Select(v => @@ -120,7 +131,10 @@ public void LoadFrom(string directory) } } if (friendlyName == null) { return null; } - if (val["location"]?.ToString().Contains("internal") ?? false) return null; + if (!_enableInternals && (val["location"]?.ToString().Contains("internal") ?? false)) + { + return null; + } string exportedName = ov_cimguiname; if (exportedName == null) @@ -161,6 +175,7 @@ public void LoadFrom(string directory) Dictionary defaultValues = new Dictionary(); foreach (JToken dv in val["defaults"]) { + JProperty dvProp = (JProperty)dv; defaultValues.Add(dvProp.Name, dvProp.Value.ToString()); } @@ -359,6 +374,29 @@ public TypeReference(string name, string type, int asize, string templateType, E } } + if (Type.StartsWith("ImSpan_")) + { + if (Type.EndsWith("*")) + { + Type = "ImSpan*"; + } + else + { + Type = "ImSpan"; + } + } + + if (Type.StartsWith("ImPool_")) + { + if (Type.EndsWith("*")) + { + Type = "ImPool*"; + } + else + { + Type = "ImPool"; + } + } TemplateType = templateType; ArraySize = asize; int startBracket = name.IndexOf('['); diff --git a/src/CodeGenerator/PostFixes.cs b/src/CodeGenerator/PostFixes.cs new file mode 100644 index 00000000..3a06529c --- /dev/null +++ b/src/CodeGenerator/PostFixes.cs @@ -0,0 +1,161 @@ +using System; +using System.IO; +using System.Text; + +namespace CodeGenerator +{ + public class PostFix + { + /// + /// The path of the file that the PostFix targets. + /// + private string _filePath; + + /// + /// The content of the file that the PostFix targets. + /// + private string _fileContent; + + /// + /// Replaces or removes specific strings of the generated code. + /// + /// The folder of the file that the PostFix targets. + /// The name of the file that the PostFix targets. + public PostFix(string outputPath, string fileName) + { + if (string.IsNullOrEmpty(outputPath)) + { + throw new InvalidOperationException("The static string `Postfix.OutputPath` must be set before creating a postfix."); + } + + if (string.IsNullOrEmpty(fileName)) + { + throw new ArgumentException("String must have non-zero length.", nameof(fileName)); + } + + _filePath = Path.Combine(outputPath, fileName); + _fileContent = File.ReadAllText(_filePath); + + } + + /// + /// Remove lines that include a specified string. + /// + /// The string to search in the source string. + /// The number of lines to skip. Default: 1 + /// The string with all lines removed. + public PostFix Remove(string searchTerm, int skipLines = 1) + { + string line; + int skipLinesRemaining = 0; + + StringReader sr = new StringReader(_fileContent); + StringBuilder sb = new StringBuilder(); + + while ((line = sr.ReadLine()) != null) + { + // Set number of lines to skip (if any) + if (line.Contains(searchTerm)) + { + skipLinesRemaining = skipLines; + } + + // Continue to reading the next line + if (skipLinesRemaining > 0) + { + skipLinesRemaining--; + continue; + } + + // No longer skipping, adding all remaining lines + sb.AppendLine(line); + + } + + // Update content + _fileContent = sb.ToString(); + + return this; + + } + + /// + /// Replace a specified string with another specified string. + /// + /// The string to be replaced. + /// The string to replace all occurrences of oldValue. + /// The PostFix instance. + public PostFix Replace(string oldValue, string newValue) + { + _fileContent = _fileContent.Replace(oldValue, newValue); + return this; + + } + + /// + /// Write the changes back to the source file. + /// + /// The PostFix instance. + public PostFix Apply() + { + File.WriteAllText(_filePath, _fileContent); + return this; + + } + + } + + /// + /// A PostFix replaces or removes specific strings of the generated code. + /// + /// They can be used to work around small or difficult to fix issues that + /// would otherwise prevent huge upgrades, like exposing the internal parts + /// of a library. + /// + /// Before adding a new PostFix you should try to find another solution, as + /// they are basically hackish monkey patches that can easily get out of hand. + /// + /// + public class PostFixes + { + /// + /// Define your PostFix instances in this function. + /// Automatically invoked after all code has been generated. + /// + /// The folder of the file that the PostFix targets. + /// The library name that is being generated. + public static void Apply(string outputPath, string libraryName) + { + if(libraryName == "cimgui") + { + // Invalid default value for local variables, method + // `CodeGenerator.Program.CorrectDefaultValue` seems + // like a good place to fix this eventually? + new PostFix(outputPath, "ImGui.gen.cs") + .Replace("IntPtr callback = null", "IntPtr callback = IntPtr.Zero") // In InputTextEx() + .Replace("IntPtr custom_callback = null", "IntPtr custom_callback = IntPtr.Zero") // In SetNextWindowSizeConstraints() + .Apply(); + + new PostFix(outputPath, "ImGuiContext.gen.cs") + .Remove("ImChunkStream") // Error CS0208 + .Remove("ImGuiItemFlagsPtr") // Struct is not being generated at all + .Remove("NativePtr->Tables") // Error CS1503 Can not convert from ImPool to ImSpan + .Remove("NativePtr->TabBars") // Error CS1503 Can not convert from ImPool to ImSpan + .Apply(); + + new PostFix(outputPath, "ImGuiInputTextState.gen.cs") + .Remove("ImGuiInputTextCallback UserCallback") // Different errors. The ImGuiInputTextCallback seems to be handcoded + .Apply(); + + new PostFix(outputPath, "ImGuiDockNode.gen.cs") + .Replace("RangeAccessor", "RangeAccessor") // Error CS0306 Pointer can't be used as generic argument? + .Apply(); + + new PostFix(outputPath, "ImGuiViewportP.gen.cs") + .Replace("RangeAccessor", "RangeAccessor") // Error CS0306 Pointer can't be used as generic argument? + .Apply(); + + } + } + } +} \ No newline at end of file diff --git a/src/CodeGenerator/Program.cs b/src/CodeGenerator/Program.cs index aca9c05c..a1c5bfa2 100644 --- a/src/CodeGenerator/Program.cs +++ b/src/CodeGenerator/Program.cs @@ -35,6 +35,16 @@ static void Main(string[] args) libraryName = "cimgui"; } + bool enableInternals; + if (args.Length > 2) + { + enableInternals = args[2].ToLower() == "true" ? true : false; + } + else + { + enableInternals = false; + } + string projectNamespace = libraryName switch { "cimgui" => "ImGuiNET", @@ -72,10 +82,14 @@ static void Main(string[] args) }; string definitionsPath = Path.Combine(AppContext.BaseDirectory, "definitions", libraryName); - var defs = new ImguiDefinitions(); + var defs = new ImguiDefinitions(enableInternals); defs.LoadFrom(definitionsPath); + Console.OutputEncoding = Encoding.UTF8; Console.WriteLine($"Outputting generated code files to {outputPath}."); + Console.WriteLine("Generate internal API: {0}", enableInternals ? "\u2713" : "\u2717"); + + DeleteFilesInDirectory(outputPath); foreach (EnumDefinition ed in defs.Enums) { @@ -187,6 +201,50 @@ static void Main(string[] args) writer.WriteLine($"public ImVector<{vectorElementType}> {field.Name} => new ImVector<{vectorElementType}>(NativePtr->{field.Name});"); } } + else if (typeStr.Contains("ImSpan")) + { + string spanElementType = GetTypeString(field.TemplateType, false); + + if (TypeInfo.WellKnownTypes.TryGetValue(spanElementType, out string wellKnown)) + { + spanElementType = wellKnown; + } + + if (GetWrappedType(spanElementType + "*", out string wrappedElementType)) + { + writer.WriteLine($"public ImPtrSpan<{wrappedElementType}> {field.Name} => new ImPtrSpan<{wrappedElementType}>(NativePtr->{field.Name}, Unsafe.SizeOf<{spanElementType}>());"); + } + else + { + if (GetWrappedType(spanElementType, out wrappedElementType)) + { + spanElementType = wrappedElementType; + } + writer.WriteLine($"public ImSpan<{spanElementType}> {field.Name} => new ImSpan<{spanElementType}>(NativePtr->{field.Name});"); + } + } + else if (typeStr.Contains("ImPool")) + { + string spanElementType = GetTypeString(field.TemplateType, false); + + if (TypeInfo.WellKnownTypes.TryGetValue(spanElementType, out string wellKnown)) + { + spanElementType = wellKnown; + } + + if (GetWrappedType(spanElementType + "*", out string wrappedElementType)) + { + writer.WriteLine($"public ImPtrSpan<{wrappedElementType}> {field.Name} => new ImPtrSpan<{wrappedElementType}>(NativePtr->{field.Name}, Unsafe.SizeOf<{spanElementType}>());"); + } + else + { + if (GetWrappedType(spanElementType, out wrappedElementType)) + { + spanElementType = wrappedElementType; + } + writer.WriteLine($"public ImPool<{spanElementType}> {field.Name} => new ImPool<{spanElementType}>(NativePtr->{field.Name});"); + } + } else { if (typeStr.Contains("*") && !typeStr.Contains("ImVector")) @@ -410,6 +468,26 @@ static void Main(string[] args) if (!variant.Used) Console.WriteLine($"Error: Variants targetting parameter {variant.Name} with type {variant.OriginalType} could not be applied to method {method.Key}."); } } + + // Deal with troublesome lines in the generated code + PostFixes.Apply(outputPath, libraryName); + + } + + private static void DeleteFilesInDirectory(string outputPath) + { + DirectoryInfo outputDirectory = new DirectoryInfo(outputPath); + + foreach (FileInfo file in outputDirectory.GetFiles()) + { + file.Delete(); + } + + foreach (DirectoryInfo dir in outputDirectory.GetDirectories()) + { + dir.Delete(true); + } + } private static bool IsStringFieldName(string name) @@ -547,6 +625,7 @@ private static void EmitOverload( { correctedDefault = defaultVal; } + marshalledParameters[i] = new MarshalledParameter(nativeTypeName, false, correctedIdentifier, true); preCallLines.Add($"{nativeTypeName} {correctedIdentifier} = {correctedDefault};"); } @@ -617,7 +696,7 @@ private static void EmitOverload( marshalledParameters[i] = new MarshalledParameter(wrappedParamType, false, nativeArgName, false); preCallLines.Add($"{tr.Type} {nativeArgName} = {correctedIdentifier}.NativePtr;"); } - else if ((tr.Type.EndsWith("*") || tr.Type.Contains("[") || tr.Type.EndsWith("&")) && tr.Type != "void*" && tr.Type != "ImGuiContext*" && tr.Type != "ImPlotContext*"&& tr.Type != "EditorContext*") + else if ((tr.Type.EndsWith("*") || tr.Type.Contains("[") || tr.Type.EndsWith("&")) && tr.Type != "void*" && tr.Type != "ImGuiContext*" && tr.Type != "ImPlotContext*" && tr.Type != "EditorContext*" && tr.Type != "ImGuiDir*") { string nonPtrType; if (tr.Type.Contains("[")) diff --git a/src/CodeGenerator/TypeInfo.cs b/src/CodeGenerator/TypeInfo.cs index de90495b..060fabb1 100644 --- a/src/CodeGenerator/TypeInfo.cs +++ b/src/CodeGenerator/TypeInfo.cs @@ -52,6 +52,16 @@ public class TypeInfo { "ImVec2[2]", "Vector2*" }, { "char* []", "byte**" }, { "unsigned char[256]", "byte*"}, + { "char[5]", "byte*"}, + { "ImGuiDir*", "IntPtr" }, + { "ImGuiStoragePair", "IntPtr" }, + { "ImGuiDockRequest", "IntPtr" }, + { "ImGuiDockNodeSettings", "IntPtr" }, + { "ImGuiTableColumnIdx", "sbyte" }, + { "ImGuiTableDrawChannelIdx", "byte"}, + { "ImGuiContextHookCallback", "IntPtr" }, + { "ImGuiErrorLogCallback", "IntPtr" }, + { "ImGuiSizeCallback", "IntPtr"} }; public static readonly List WellKnownEnums = new List() @@ -70,6 +80,7 @@ public class TypeInfo "ImVec2", "ImVec4", "ImGuiStoragePair", + "ImGuiStyleMod", }; public static readonly Dictionary WellKnownDefaultValues = new Dictionary() @@ -96,7 +107,7 @@ public class TypeInfo { "ImPlotAxisFlags_NoGridLines", "ImPlotAxisFlags.NoGridLines"}, { "ImGuiCond_Once", "ImGuiCond.Once"}, { "ImPlotOrientation_Vertical", "ImPlotOrientation.Vertical"}, - { "PinShape_CircleFilled", "PinShape._CircleFilled"}, + { "PinShape_CircleFilled", "PinShape.CircleFilled"}, { "ImGuiPopupFlags_None", "ImGuiPopupFlags.None"}, { "ImGuiNavHighlightFlags_TypeDefault", "ImGuiNavHighlightFlags.TypeDefault"}, { "ImGuiKeyModFlags_Ctrl", "ImGuiKeyModFlags.Ctrl"}, diff --git a/src/CodeGenerator/definitions/cimgui/definitions.json b/src/CodeGenerator/definitions/cimgui/definitions.json index 81053926..cc134aa6 100644 --- a/src/CodeGenerator/definitions/cimgui/definitions.json +++ b/src/CodeGenerator/definitions/cimgui/definitions.json @@ -13,7 +13,7 @@ "cimguiname": "ImBitArray_ClearAllBits", "defaults": {}, "funcname": "ClearAllBits", - "location": "imgui_internal:510", + "location": "imgui_internal:548", "ov_cimguiname": "ImBitArray_ClearAllBits", "ret": "void", "signature": "()", @@ -39,7 +39,7 @@ "cimguiname": "ImBitArray_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:514", + "location": "imgui_internal:552", "ov_cimguiname": "ImBitArray_ClearBit", "ret": "void", "signature": "(int)", @@ -57,7 +57,7 @@ "constructor": true, "defaults": {}, "funcname": "ImBitArray", - "location": "imgui_internal:509", + "location": "imgui_internal:547", "ov_cimguiname": "ImBitArray_ImBitArray", "signature": "()", "stname": "ImBitArray", @@ -78,7 +78,7 @@ "cimguiname": "ImBitArray_SetAllBits", "defaults": {}, "funcname": "SetAllBits", - "location": "imgui_internal:511", + "location": "imgui_internal:549", "ov_cimguiname": "ImBitArray_SetAllBits", "ret": "void", "signature": "()", @@ -104,7 +104,7 @@ "cimguiname": "ImBitArray_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:513", + "location": "imgui_internal:551", "ov_cimguiname": "ImBitArray_SetBit", "ret": "void", "signature": "(int)", @@ -134,7 +134,7 @@ "cimguiname": "ImBitArray_SetBitRange", "defaults": {}, "funcname": "SetBitRange", - "location": "imgui_internal:515", + "location": "imgui_internal:553", "ov_cimguiname": "ImBitArray_SetBitRange", "ret": "void", "signature": "(int,int)", @@ -160,7 +160,7 @@ "cimguiname": "ImBitArray_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:512", + "location": "imgui_internal:550", "ov_cimguiname": "ImBitArray_TestBit", "ret": "bool", "signature": "(int)const", @@ -202,7 +202,7 @@ "cimguiname": "ImBitVector_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:524", + "location": "imgui_internal:562", "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -227,7 +227,7 @@ "cimguiname": "ImBitVector_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:527", + "location": "imgui_internal:565", "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -252,7 +252,7 @@ "cimguiname": "ImBitVector_Create", "defaults": {}, "funcname": "Create", - "location": "imgui_internal:523", + "location": "imgui_internal:561", "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -277,7 +277,7 @@ "cimguiname": "ImBitVector_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:526", + "location": "imgui_internal:564", "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -302,7 +302,7 @@ "cimguiname": "ImBitVector_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:525", + "location": "imgui_internal:563", "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -327,7 +327,7 @@ "cimguiname": "ImChunkStream_alloc_chunk", "defaults": {}, "funcname": "alloc_chunk", - "location": "imgui_internal:620", + "location": "imgui_internal:668", "ov_cimguiname": "ImChunkStream_alloc_chunk", "ret": "T*", "signature": "(size_t)", @@ -349,7 +349,7 @@ "cimguiname": "ImChunkStream_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:621", + "location": "imgui_internal:669", "ov_cimguiname": "ImChunkStream_begin", "ret": "T*", "signature": "()", @@ -375,7 +375,7 @@ "cimguiname": "ImChunkStream_chunk_size", "defaults": {}, "funcname": "chunk_size", - "location": "imgui_internal:623", + "location": "imgui_internal:671", "ov_cimguiname": "ImChunkStream_chunk_size", "ret": "int", "signature": "(const T*)", @@ -397,7 +397,7 @@ "cimguiname": "ImChunkStream_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:617", + "location": "imgui_internal:665", "ov_cimguiname": "ImChunkStream_clear", "ret": "void", "signature": "()", @@ -419,7 +419,7 @@ "cimguiname": "ImChunkStream_empty", "defaults": {}, "funcname": "empty", - "location": "imgui_internal:618", + "location": "imgui_internal:666", "ov_cimguiname": "ImChunkStream_empty", "ret": "bool", "signature": "()const", @@ -441,7 +441,7 @@ "cimguiname": "ImChunkStream_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:624", + "location": "imgui_internal:672", "ov_cimguiname": "ImChunkStream_end", "ret": "T*", "signature": "()", @@ -467,7 +467,7 @@ "cimguiname": "ImChunkStream_next_chunk", "defaults": {}, "funcname": "next_chunk", - "location": "imgui_internal:622", + "location": "imgui_internal:670", "ov_cimguiname": "ImChunkStream_next_chunk", "ret": "T*", "signature": "(T*)", @@ -493,7 +493,7 @@ "cimguiname": "ImChunkStream_offset_from_ptr", "defaults": {}, "funcname": "offset_from_ptr", - "location": "imgui_internal:625", + "location": "imgui_internal:673", "ov_cimguiname": "ImChunkStream_offset_from_ptr", "ret": "int", "signature": "(const T*)", @@ -519,7 +519,7 @@ "cimguiname": "ImChunkStream_ptr_from_offset", "defaults": {}, "funcname": "ptr_from_offset", - "location": "imgui_internal:626", + "location": "imgui_internal:674", "ov_cimguiname": "ImChunkStream_ptr_from_offset", "ret": "T*", "signature": "(int)", @@ -541,7 +541,7 @@ "cimguiname": "ImChunkStream_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:619", + "location": "imgui_internal:667", "ov_cimguiname": "ImChunkStream_size", "ret": "int", "signature": "()const", @@ -568,7 +568,7 @@ "cimguiname": "ImChunkStream_swap", "defaults": {}, "funcname": "swap", - "location": "imgui_internal:627", + "location": "imgui_internal:675", "ov_cimguiname": "ImChunkStream_swap", "ret": "void", "signature": "(ImChunkStream*)", @@ -609,7 +609,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:2283", + "location": "imgui:2353", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -627,8 +627,8 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2273", - "ov_cimguiname": "ImColor_ImColorNil", + "location": "imgui:2343", + "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" }, @@ -660,8 +660,8 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:2274", - "ov_cimguiname": "ImColor_ImColorInt", + "location": "imgui:2344", + "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" }, @@ -679,8 +679,8 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2275", - "ov_cimguiname": "ImColor_ImColorU32", + "location": "imgui:2345", + "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" }, @@ -712,8 +712,8 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:2276", - "ov_cimguiname": "ImColor_ImColorFloat", + "location": "imgui:2346", + "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" }, @@ -731,8 +731,8 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2277", - "ov_cimguiname": "ImColor_ImColorVec4", + "location": "imgui:2347", + "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" } @@ -769,7 +769,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:2282", + "location": "imgui:2352", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -795,6 +795,27 @@ "stname": "ImColor" } ], + "ImDrawCmd_GetTexID": [ + { + "args": "(ImDrawCmd* self)", + "argsT": [ + { + "name": "self", + "type": "ImDrawCmd*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImDrawCmd_GetTexID", + "defaults": {}, + "funcname": "GetTexID", + "location": "imgui:2401", + "ov_cimguiname": "ImDrawCmd_GetTexID", + "ret": "ImTextureID", + "signature": "()const", + "stname": "ImDrawCmd" + } + ], "ImDrawCmd_ImDrawCmd": [ { "args": "()", @@ -805,7 +826,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:2328", + "location": "imgui:2398", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -844,7 +865,7 @@ "cimguiname": "ImDrawDataBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:687", + "location": "imgui_internal:735", "ov_cimguiname": "ImDrawDataBuilder_Clear", "ret": "void", "signature": "()", @@ -865,7 +886,7 @@ "cimguiname": "ImDrawDataBuilder_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:688", + "location": "imgui_internal:736", "ov_cimguiname": "ImDrawDataBuilder_ClearFreeMemory", "ret": "void", "signature": "()", @@ -886,7 +907,7 @@ "cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", "defaults": {}, "funcname": "FlattenIntoSingleLayer", - "location": "imgui_internal:690", + "location": "imgui_internal:738", "ov_cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", "ret": "void", "signature": "()", @@ -907,7 +928,7 @@ "cimguiname": "ImDrawDataBuilder_GetDrawListCount", "defaults": {}, "funcname": "GetDrawListCount", - "location": "imgui_internal:689", + "location": "imgui_internal:737", "ov_cimguiname": "ImDrawDataBuilder_GetDrawListCount", "ret": "int", "signature": "()const", @@ -928,7 +949,7 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2566", + "location": "imgui:2633", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -949,7 +970,7 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui:2567", + "location": "imgui:2634", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -966,7 +987,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", - "location": "imgui:2565", + "location": "imgui:2632", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -990,7 +1011,7 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui:2568", + "location": "imgui:2635", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -1026,7 +1047,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSharedData", - "location": "imgui_internal:679", + "location": "imgui_internal:727", "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "signature": "()", "stname": "ImDrawListSharedData" @@ -1050,7 +1071,7 @@ "cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "defaults": {}, "funcname": "SetCircleTessellationMaxError", - "location": "imgui_internal:680", + "location": "imgui_internal:728", "ov_cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "ret": "void", "signature": "(float)", @@ -1090,7 +1111,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2380", + "location": "imgui:2446", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -1111,7 +1132,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:2381", + "location": "imgui:2447", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -1128,7 +1149,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:2378", + "location": "imgui:2444", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -1152,7 +1173,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:2383", + "location": "imgui:2449", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -1181,7 +1202,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:2384", + "location": "imgui:2450", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1210,7 +1231,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:2382", + "location": "imgui:2448", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1230,7 +1251,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2379", + "location": "imgui:2445", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -1282,7 +1303,7 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", - "location": "imgui:2482", + "location": "imgui:2548", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1329,7 +1350,7 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", - "location": "imgui:2483", + "location": "imgui:2549", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1358,7 +1379,7 @@ "cimguiname": "ImDrawList_AddCallback", "defaults": {}, "funcname": "AddCallback", - "location": "imgui:2506", + "location": "imgui:2572", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -1402,7 +1423,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:2474", + "location": "imgui:2540", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1441,7 +1462,7 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:2475", + "location": "imgui:2541", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1474,7 +1495,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:2481", + "location": "imgui:2547", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1495,7 +1516,7 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui:2507", + "location": "imgui:2573", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -1544,7 +1565,7 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:2489", + "location": "imgui:2555", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1611,7 +1632,7 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:2490", + "location": "imgui:2556", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1666,7 +1687,7 @@ "flags": "0" }, "funcname": "AddImageRounded", - "location": "imgui:2491", + "location": "imgui:2557", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1705,7 +1726,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:2466", + "location": "imgui:2532", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1748,7 +1769,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:2476", + "location": "imgui:2542", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1785,7 +1806,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:2477", + "location": "imgui:2543", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1826,7 +1847,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", - "location": "imgui:2480", + "location": "imgui:2546", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -1873,7 +1894,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:2470", + "location": "imgui:2536", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1914,7 +1935,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:2471", + "location": "imgui:2537", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1963,7 +1984,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:2467", + "location": "imgui:2533", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -2007,7 +2028,7 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", - "location": "imgui:2468", + "location": "imgui:2534", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -2052,7 +2073,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:2469", + "location": "imgui:2535", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -2091,8 +2112,8 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2478", - "ov_cimguiname": "ImDrawList_AddTextVec2", + "location": "imgui:2544", + "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", "stname": "ImDrawList" @@ -2146,8 +2167,8 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:2479", - "ov_cimguiname": "ImDrawList_AddTextFontPtr", + "location": "imgui:2545", + "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", "stname": "ImDrawList" @@ -2189,7 +2210,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:2472", + "location": "imgui:2538", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2226,7 +2247,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:2473", + "location": "imgui:2539", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2247,7 +2268,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui:2517", + "location": "imgui:2583", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -2272,7 +2293,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui:2518", + "location": "imgui:2584", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2297,7 +2318,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui:2516", + "location": "imgui:2582", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2318,7 +2339,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", - "location": "imgui:2508", + "location": "imgui:2574", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2343,7 +2364,7 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:2458", + "location": "imgui:2524", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -2369,7 +2390,7 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:2457", + "location": "imgui:2523", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -2392,7 +2413,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:2449", + "location": "imgui:2515", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(const ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2434,7 +2455,7 @@ "num_segments": "0" }, "funcname": "PathArcTo", - "location": "imgui:2499", + "location": "imgui:2565", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2471,7 +2492,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:2500", + "location": "imgui:2566", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2510,7 +2531,7 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", - "location": "imgui:2501", + "location": "imgui:2567", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2545,7 +2566,7 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", - "location": "imgui:2502", + "location": "imgui:2568", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -2566,7 +2587,7 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:2494", + "location": "imgui:2560", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -2591,7 +2612,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:2497", + "location": "imgui:2563", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2616,7 +2637,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:2495", + "location": "imgui:2561", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2641,7 +2662,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:2496", + "location": "imgui:2562", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2681,7 +2702,7 @@ "rounding": "0.0f" }, "funcname": "PathRect", - "location": "imgui:2503", + "location": "imgui:2569", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2717,7 +2738,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:2498", + "location": "imgui:2564", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -2738,7 +2759,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:2454", + "location": "imgui:2520", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2759,7 +2780,7 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": {}, "funcname": "PopTextureID", - "location": "imgui:2456", + "location": "imgui:2522", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -2816,7 +2837,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui:2527", + "location": "imgui:2593", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2849,7 +2870,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", - "location": "imgui:2525", + "location": "imgui:2591", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2890,7 +2911,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui:2526", + "location": "imgui:2592", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2919,7 +2940,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", - "location": "imgui:2523", + "location": "imgui:2589", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -2948,7 +2969,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui:2524", + "location": "imgui:2590", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -2981,7 +3002,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", - "location": "imgui:2530", + "location": "imgui:2596", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3006,7 +3027,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui:2529", + "location": "imgui:2595", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -3039,7 +3060,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui:2528", + "location": "imgui:2594", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3074,7 +3095,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:2452", + "location": "imgui:2518", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(ImVec2,ImVec2,bool)", @@ -3095,7 +3116,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:2453", + "location": "imgui:2519", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -3120,7 +3141,7 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": {}, "funcname": "PushTextureID", - "location": "imgui:2455", + "location": "imgui:2521", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -3145,7 +3166,7 @@ "cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", - "location": "imgui:2544", + "location": "imgui:2611", "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -3166,7 +3187,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:2539", + "location": "imgui:2605", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -3187,7 +3208,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:2541", + "location": "imgui:2608", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -3208,7 +3229,7 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": {}, "funcname": "_OnChangedTextureID", - "location": "imgui:2542", + "location": "imgui:2609", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -3229,7 +3250,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:2543", + "location": "imgui:2610", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -3270,7 +3291,7 @@ "cimguiname": "ImDrawList__PathArcToFastEx", "defaults": {}, "funcname": "_PathArcToFastEx", - "location": "imgui:2545", + "location": "imgui:2612", "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -3311,7 +3332,7 @@ "cimguiname": "ImDrawList__PathArcToN", "defaults": {}, "funcname": "_PathArcToN", - "location": "imgui:2546", + "location": "imgui:2613", "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -3332,7 +3353,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:2540", + "location": "imgui:2606", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -3353,13 +3374,34 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:2538", + "location": "imgui:2604", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList__TryMergeDrawCmds": [ + { + "args": "(ImDrawList* self)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImDrawList__TryMergeDrawCmds", + "defaults": {}, + "funcname": "_TryMergeDrawCmds", + "location": "imgui:2607", + "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", + "ret": "void", + "signature": "()", + "stname": "ImDrawList" + } + ], "ImDrawList_destroy": [ { "args": "(ImDrawList* self)", @@ -3373,7 +3415,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2451", + "location": "imgui:2517", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -3391,7 +3433,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasCustomRect", - "location": "imgui:2639", + "location": "imgui:2706", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -3411,7 +3453,7 @@ "cimguiname": "ImFontAtlasCustomRect_IsPacked", "defaults": {}, "funcname": "IsPacked", - "location": "imgui:2640", + "location": "imgui:2707", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -3477,7 +3519,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", - "location": "imgui:2723", + "location": "imgui:2790", "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -3506,7 +3548,7 @@ "cimguiname": "ImFontAtlas_AddCustomRectRegular", "defaults": {}, "funcname": "AddCustomRectRegular", - "location": "imgui:2722", + "location": "imgui:2789", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -3531,7 +3573,7 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", - "location": "imgui:2673", + "location": "imgui:2740", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3558,7 +3600,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui:2674", + "location": "imgui:2741", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3598,7 +3640,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", - "location": "imgui:2675", + "location": "imgui:2742", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3638,7 +3680,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui:2678", + "location": "imgui:2745", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3682,7 +3724,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui:2677", + "location": "imgui:2744", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3726,7 +3768,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui:2676", + "location": "imgui:2743", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3747,7 +3789,7 @@ "cimguiname": "ImFontAtlas_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2689", + "location": "imgui:2756", "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -3780,7 +3822,7 @@ "cimguiname": "ImFontAtlas_CalcCustomRectUV", "defaults": {}, "funcname": "CalcCustomRectUV", - "location": "imgui:2727", + "location": "imgui:2794", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -3801,7 +3843,7 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2682", + "location": "imgui:2749", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -3822,7 +3864,7 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", - "location": "imgui:2681", + "location": "imgui:2748", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -3843,7 +3885,7 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", - "location": "imgui:2679", + "location": "imgui:2746", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -3864,7 +3906,7 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", - "location": "imgui:2680", + "location": "imgui:2747", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -3889,7 +3931,7 @@ "cimguiname": "ImFontAtlas_GetCustomRectByIndex", "defaults": {}, "funcname": "GetCustomRectByIndex", - "location": "imgui:2724", + "location": "imgui:2791", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -3910,7 +3952,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "defaults": {}, "funcname": "GetGlyphRangesChineseFull", - "location": "imgui:2705", + "location": "imgui:2772", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -3931,7 +3973,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", - "location": "imgui:2706", + "location": "imgui:2773", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -3952,7 +3994,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "defaults": {}, "funcname": "GetGlyphRangesCyrillic", - "location": "imgui:2707", + "location": "imgui:2774", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -3973,7 +4015,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui:2702", + "location": "imgui:2769", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -3994,7 +4036,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "defaults": {}, "funcname": "GetGlyphRangesJapanese", - "location": "imgui:2704", + "location": "imgui:2771", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -4015,7 +4057,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "defaults": {}, "funcname": "GetGlyphRangesKorean", - "location": "imgui:2703", + "location": "imgui:2770", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -4036,7 +4078,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesThai", "defaults": {}, "funcname": "GetGlyphRangesThai", - "location": "imgui:2708", + "location": "imgui:2775", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -4057,7 +4099,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "defaults": {}, "funcname": "GetGlyphRangesVietnamese", - "location": "imgui:2709", + "location": "imgui:2776", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -4098,7 +4140,7 @@ "cimguiname": "ImFontAtlas_GetMouseCursorTexData", "defaults": {}, "funcname": "GetMouseCursorTexData", - "location": "imgui:2728", + "location": "imgui:2795", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -4137,7 +4179,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", - "location": "imgui:2690", + "location": "imgui:2757", "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4176,7 +4218,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", - "location": "imgui:2691", + "location": "imgui:2758", "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4193,7 +4235,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui:2671", + "location": "imgui:2738", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -4213,7 +4255,7 @@ "cimguiname": "ImFontAtlas_IsBuilt", "defaults": {}, "funcname": "IsBuilt", - "location": "imgui:2692", + "location": "imgui:2759", "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -4238,7 +4280,7 @@ "cimguiname": "ImFontAtlas_SetTexID", "defaults": {}, "funcname": "SetTexID", - "location": "imgui:2693", + "location": "imgui:2760", "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -4258,7 +4300,7 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2672", + "location": "imgui:2739", "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -4276,7 +4318,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui:2599", + "location": "imgui:2666", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -4319,7 +4361,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", - "location": "imgui:2624", + "location": "imgui:2691", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -4344,7 +4386,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", - "location": "imgui:2626", + "location": "imgui:2693", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -4375,7 +4417,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2625", + "location": "imgui:2692", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -4400,7 +4442,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", - "location": "imgui:2627", + "location": "imgui:2694", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -4421,7 +4463,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2621", + "location": "imgui:2688", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4446,7 +4488,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", - "location": "imgui:2622", + "location": "imgui:2689", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4463,7 +4505,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui:2620", + "location": "imgui:2687", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4487,7 +4529,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui:2623", + "location": "imgui:2690", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4571,7 +4613,7 @@ "cimguiname": "ImFont_AddGlyph", "defaults": {}, "funcname": "AddGlyph", - "location": "imgui:2814", + "location": "imgui:2883", "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", @@ -4606,7 +4648,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", - "location": "imgui:2815", + "location": "imgui:2884", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -4627,7 +4669,7 @@ "cimguiname": "ImFont_BuildLookupTable", "defaults": {}, "funcname": "BuildLookupTable", - "location": "imgui:2811", + "location": "imgui:2880", "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -4679,7 +4721,7 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui:2805", + "location": "imgui:2874", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -4717,7 +4759,7 @@ "cimguiname": "ImFont_CalcWordWrapPositionA", "defaults": {}, "funcname": "CalcWordWrapPositionA", - "location": "imgui:2806", + "location": "imgui:2875", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)const", @@ -4738,7 +4780,7 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:2812", + "location": "imgui:2881", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -4763,7 +4805,7 @@ "cimguiname": "ImFont_FindGlyph", "defaults": {}, "funcname": "FindGlyph", - "location": "imgui:2797", + "location": "imgui:2866", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4788,7 +4830,7 @@ "cimguiname": "ImFont_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui:2798", + "location": "imgui:2867", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4813,7 +4855,7 @@ "cimguiname": "ImFont_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui:2799", + "location": "imgui:2868", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)const", @@ -4834,7 +4876,7 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", - "location": "imgui:2801", + "location": "imgui:2870", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -4859,7 +4901,7 @@ "cimguiname": "ImFont_GrowIndex", "defaults": {}, "funcname": "GrowIndex", - "location": "imgui:2813", + "location": "imgui:2882", "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -4876,7 +4918,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", - "location": "imgui:2795", + "location": "imgui:2864", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -4904,7 +4946,7 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui:2818", + "location": "imgui:2886", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -4925,7 +4967,7 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", - "location": "imgui:2800", + "location": "imgui:2869", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -4966,7 +5008,7 @@ "cimguiname": "ImFont_RenderChar", "defaults": {}, "funcname": "RenderChar", - "location": "imgui:2807", + "location": "imgui:2876", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const", @@ -5026,38 +5068,13 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui:2808", + "location": "imgui:2877", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", "stname": "ImFont" } ], - "ImFont_SetFallbackChar": [ - { - "args": "(ImFont* self,ImWchar c)", - "argsT": [ - { - "name": "self", - "type": "ImFont*" - }, - { - "name": "c", - "type": "ImWchar" - } - ], - "argsoriginal": "(ImWchar c)", - "call_args": "(c)", - "cimguiname": "ImFont_SetFallbackChar", - "defaults": {}, - "funcname": "SetFallbackChar", - "location": "imgui:2817", - "ov_cimguiname": "ImFont_SetFallbackChar", - "ret": "void", - "signature": "(ImWchar)", - "stname": "ImFont" - } - ], "ImFont_SetGlyphVisible": [ { "args": "(ImFont* self,ImWchar c,bool visible)", @@ -5080,7 +5097,7 @@ "cimguiname": "ImFont_SetGlyphVisible", "defaults": {}, "funcname": "SetGlyphVisible", - "location": "imgui:2816", + "location": "imgui:2885", "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -5100,7 +5117,7 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2796", + "location": "imgui:2865", "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -5108,6 +5125,41 @@ "stname": "ImFont" } ], + "ImGuiComboPreviewData_ImGuiComboPreviewData": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiComboPreviewData", + "location": "imgui_internal:980", + "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", + "signature": "()", + "stname": "ImGuiComboPreviewData" + } + ], + "ImGuiComboPreviewData_destroy": [ + { + "args": "(ImGuiComboPreviewData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiComboPreviewData*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiComboPreviewData_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiComboPreviewData_destroy", + "ret": "void", + "signature": "(ImGuiComboPreviewData*)", + "stname": "ImGuiComboPreviewData" + } + ], "ImGuiContextHook_ImGuiContextHook": [ { "args": "()", @@ -5118,7 +5170,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContextHook", - "location": "imgui_internal:1448", + "location": "imgui_internal:1578", "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5158,7 +5210,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", - "location": "imgui_internal:1714", + "location": "imgui_internal:1855", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5193,7 +5245,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockContext", - "location": "imgui_internal:1308", + "location": "imgui_internal:1431", "ov_cimguiname": "ImGuiDockContext_ImGuiDockContext", "signature": "()", "stname": "ImGuiDockContext" @@ -5218,27 +5270,6 @@ "stname": "ImGuiDockContext" } ], - "ImGuiDockNode_GetMergedFlags": [ - { - "args": "(ImGuiDockNode* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiDockNode*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiDockNode_GetMergedFlags", - "defaults": {}, - "funcname": "GetMergedFlags", - "location": "imgui_internal:1278", - "ov_cimguiname": "ImGuiDockNode_GetMergedFlags", - "ret": "ImGuiDockNodeFlags", - "signature": "()const", - "stname": "ImGuiDockNode" - } - ], "ImGuiDockNode_ImGuiDockNode": [ { "args": "(ImGuiID id)", @@ -5254,7 +5285,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockNode", - "location": "imgui_internal:1267", + "location": "imgui_internal:1388", "ov_cimguiname": "ImGuiDockNode_ImGuiDockNode", "signature": "(ImGuiID)", "stname": "ImGuiDockNode" @@ -5274,7 +5305,7 @@ "cimguiname": "ImGuiDockNode_IsCentralNode", "defaults": {}, "funcname": "IsCentralNode", - "location": "imgui_internal:1272", + "location": "imgui_internal:1393", "ov_cimguiname": "ImGuiDockNode_IsCentralNode", "ret": "bool", "signature": "()const", @@ -5295,7 +5326,7 @@ "cimguiname": "ImGuiDockNode_IsDockSpace", "defaults": {}, "funcname": "IsDockSpace", - "location": "imgui_internal:1270", + "location": "imgui_internal:1391", "ov_cimguiname": "ImGuiDockNode_IsDockSpace", "ret": "bool", "signature": "()const", @@ -5316,7 +5347,7 @@ "cimguiname": "ImGuiDockNode_IsEmpty", "defaults": {}, "funcname": "IsEmpty", - "location": "imgui_internal:1277", + "location": "imgui_internal:1398", "ov_cimguiname": "ImGuiDockNode_IsEmpty", "ret": "bool", "signature": "()const", @@ -5337,7 +5368,7 @@ "cimguiname": "ImGuiDockNode_IsFloatingNode", "defaults": {}, "funcname": "IsFloatingNode", - "location": "imgui_internal:1271", + "location": "imgui_internal:1392", "ov_cimguiname": "ImGuiDockNode_IsFloatingNode", "ret": "bool", "signature": "()const", @@ -5358,7 +5389,7 @@ "cimguiname": "ImGuiDockNode_IsHiddenTabBar", "defaults": {}, "funcname": "IsHiddenTabBar", - "location": "imgui_internal:1273", + "location": "imgui_internal:1394", "ov_cimguiname": "ImGuiDockNode_IsHiddenTabBar", "ret": "bool", "signature": "()const", @@ -5379,7 +5410,7 @@ "cimguiname": "ImGuiDockNode_IsLeafNode", "defaults": {}, "funcname": "IsLeafNode", - "location": "imgui_internal:1276", + "location": "imgui_internal:1397", "ov_cimguiname": "ImGuiDockNode_IsLeafNode", "ret": "bool", "signature": "()const", @@ -5400,7 +5431,7 @@ "cimguiname": "ImGuiDockNode_IsNoTabBar", "defaults": {}, "funcname": "IsNoTabBar", - "location": "imgui_internal:1274", + "location": "imgui_internal:1395", "ov_cimguiname": "ImGuiDockNode_IsNoTabBar", "ret": "bool", "signature": "()const", @@ -5421,7 +5452,7 @@ "cimguiname": "ImGuiDockNode_IsRootNode", "defaults": {}, "funcname": "IsRootNode", - "location": "imgui_internal:1269", + "location": "imgui_internal:1390", "ov_cimguiname": "ImGuiDockNode_IsRootNode", "ret": "bool", "signature": "()const", @@ -5442,7 +5473,7 @@ "cimguiname": "ImGuiDockNode_IsSplitNode", "defaults": {}, "funcname": "IsSplitNode", - "location": "imgui_internal:1275", + "location": "imgui_internal:1396", "ov_cimguiname": "ImGuiDockNode_IsSplitNode", "ret": "bool", "signature": "()const", @@ -5467,7 +5498,7 @@ "cimguiname": "ImGuiDockNode_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:1279", + "location": "imgui_internal:1399", "nonUDT": 1, "ov_cimguiname": "ImGuiDockNode_Rect", "ret": "void", @@ -5475,6 +5506,52 @@ "stname": "ImGuiDockNode" } ], + "ImGuiDockNode_SetLocalFlags": [ + { + "args": "(ImGuiDockNode* self,ImGuiDockNodeFlags flags)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + }, + { + "name": "flags", + "type": "ImGuiDockNodeFlags" + } + ], + "argsoriginal": "(ImGuiDockNodeFlags flags)", + "call_args": "(flags)", + "cimguiname": "ImGuiDockNode_SetLocalFlags", + "defaults": {}, + "funcname": "SetLocalFlags", + "location": "imgui_internal:1401", + "ov_cimguiname": "ImGuiDockNode_SetLocalFlags", + "ret": "void", + "signature": "(ImGuiDockNodeFlags)", + "stname": "ImGuiDockNode" + } + ], + "ImGuiDockNode_UpdateMergedFlags": [ + { + "args": "(ImGuiDockNode* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDockNode_UpdateMergedFlags", + "defaults": {}, + "funcname": "UpdateMergedFlags", + "location": "imgui_internal:1402", + "ov_cimguiname": "ImGuiDockNode_UpdateMergedFlags", + "ret": "void", + "signature": "()", + "stname": "ImGuiDockNode" + } + ], "ImGuiDockNode_destroy": [ { "args": "(ImGuiDockNode* self)", @@ -5488,7 +5565,7 @@ "cimguiname": "ImGuiDockNode_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1268", + "location": "imgui_internal:1389", "ov_cimguiname": "ImGuiDockNode_destroy", "realdestructor": true, "ret": "void", @@ -5496,6 +5573,31 @@ "stname": "ImGuiDockNode" } ], + "ImGuiIO_AddFocusEvent": [ + { + "args": "(ImGuiIO* self,bool focused)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + }, + { + "name": "focused", + "type": "bool" + } + ], + "argsoriginal": "(bool focused)", + "call_args": "(focused)", + "cimguiname": "ImGuiIO_AddFocusEvent", + "defaults": {}, + "funcname": "AddFocusEvent", + "location": "imgui:1978", + "ov_cimguiname": "ImGuiIO_AddFocusEvent", + "ret": "void", + "signature": "(bool)", + "stname": "ImGuiIO" + } + ], "ImGuiIO_AddInputCharacter": [ { "args": "(ImGuiIO* self,unsigned int c)", @@ -5514,7 +5616,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:1910", + "location": "imgui:1975", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -5539,7 +5641,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:1911", + "location": "imgui:1976", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -5564,7 +5666,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:1912", + "location": "imgui:1977", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -5585,13 +5687,34 @@ "cimguiname": "ImGuiIO_ClearInputCharacters", "defaults": {}, "funcname": "ClearInputCharacters", - "location": "imgui:1913", + "location": "imgui:1979", "ov_cimguiname": "ImGuiIO_ClearInputCharacters", "ret": "void", "signature": "()", "stname": "ImGuiIO" } ], + "ImGuiIO_ClearInputKeys": [ + { + "args": "(ImGuiIO* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiIO_ClearInputKeys", + "defaults": {}, + "funcname": "ClearInputKeys", + "location": "imgui:1980", + "ov_cimguiname": "ImGuiIO_ClearInputKeys", + "ret": "void", + "signature": "()", + "stname": "ImGuiIO" + } + ], "ImGuiIO_ImGuiIO": [ { "args": "()", @@ -5602,7 +5725,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:1961", + "location": "imgui:2032", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -5641,7 +5764,7 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui:2002", + "location": "imgui:2073", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -5670,7 +5793,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:1999", + "location": "imgui:2070", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -5691,7 +5814,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:2003", + "location": "imgui:2074", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -5708,7 +5831,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:1998", + "location": "imgui:2069", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -5742,7 +5865,7 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:2000", + "location": "imgui:2071", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -5763,7 +5886,7 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui:2001", + "location": "imgui:2072", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -5803,7 +5926,7 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:997", + "location": "imgui_internal:1040", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -5824,7 +5947,7 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui_internal:1006", + "location": "imgui_internal:1049", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -5845,7 +5968,7 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": {}, "funcname": "ClearText", - "location": "imgui_internal:996", + "location": "imgui_internal:1039", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -5866,7 +5989,7 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", - "location": "imgui_internal:1003", + "location": "imgui_internal:1046", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -5887,13 +6010,34 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", - "location": "imgui_internal:1004", + "location": "imgui_internal:1047", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", "stname": "ImGuiInputTextState" } ], + "ImGuiInputTextState_GetCursorPos": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_GetCursorPos", + "defaults": {}, + "funcname": "GetCursorPos", + "location": "imgui_internal:1050", + "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", + "ret": "int", + "signature": "()const", + "stname": "ImGuiInputTextState" + } + ], "ImGuiInputTextState_GetRedoAvailCount": [ { "args": "(ImGuiInputTextState* self)", @@ -5908,14 +6052,14 @@ "cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "defaults": {}, "funcname": "GetRedoAvailCount", - "location": "imgui_internal:999", + "location": "imgui_internal:1042", "ov_cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "ret": "int", "signature": "()const", "stname": "ImGuiInputTextState" } ], - "ImGuiInputTextState_GetUndoAvailCount": [ + "ImGuiInputTextState_GetSelectionEnd": [ { "args": "(ImGuiInputTextState* self)", "argsT": [ @@ -5926,17 +6070,17 @@ ], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", + "cimguiname": "ImGuiInputTextState_GetSelectionEnd", "defaults": {}, - "funcname": "GetUndoAvailCount", - "location": "imgui_internal:998", - "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", + "funcname": "GetSelectionEnd", + "location": "imgui_internal:1052", + "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", "stname": "ImGuiInputTextState" } ], - "ImGuiInputTextState_HasSelection": [ + "ImGuiInputTextState_GetSelectionStart": [ { "args": "(ImGuiInputTextState* self)", "argsT": [ @@ -5947,27 +6091,69 @@ ], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImGuiInputTextState_HasSelection", + "cimguiname": "ImGuiInputTextState_GetSelectionStart", "defaults": {}, - "funcname": "HasSelection", - "location": "imgui_internal:1005", - "ov_cimguiname": "ImGuiInputTextState_HasSelection", - "ret": "bool", + "funcname": "GetSelectionStart", + "location": "imgui_internal:1051", + "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", + "ret": "int", "signature": "()const", "stname": "ImGuiInputTextState" } ], - "ImGuiInputTextState_ImGuiInputTextState": [ + "ImGuiInputTextState_GetUndoAvailCount": [ { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiInputTextState_ImGuiInputTextState", + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", + "defaults": {}, + "funcname": "GetUndoAvailCount", + "location": "imgui_internal:1041", + "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", + "ret": "int", + "signature": "()const", + "stname": "ImGuiInputTextState" + } + ], + "ImGuiInputTextState_HasSelection": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_HasSelection", + "defaults": {}, + "funcname": "HasSelection", + "location": "imgui_internal:1048", + "ov_cimguiname": "ImGuiInputTextState_HasSelection", + "ret": "bool", + "signature": "()const", + "stname": "ImGuiInputTextState" + } + ], + "ImGuiInputTextState_ImGuiInputTextState": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextState", - "location": "imgui_internal:995", + "location": "imgui_internal:1038", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "signature": "()", "stname": "ImGuiInputTextState" @@ -5991,7 +6177,7 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": {}, "funcname": "OnKeyPressed", - "location": "imgui_internal:1000", + "location": "imgui_internal:1043", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", @@ -6012,7 +6198,7 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui_internal:1007", + "location": "imgui_internal:1053", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -6038,81 +6224,39 @@ "stname": "ImGuiInputTextState" } ], - "ImGuiLastItemDataBackup_Backup": [ - { - "args": "(ImGuiLastItemDataBackup* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiLastItemDataBackup*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiLastItemDataBackup_Backup", - "defaults": {}, - "funcname": "Backup", - "location": "imgui_internal:2075", - "ov_cimguiname": "ImGuiLastItemDataBackup_Backup", - "ret": "void", - "signature": "()", - "stname": "ImGuiLastItemDataBackup" - } - ], - "ImGuiLastItemDataBackup_ImGuiLastItemDataBackup": [ + "ImGuiLastItemData_ImGuiLastItemData": [ { "args": "()", "argsT": [], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImGuiLastItemDataBackup_ImGuiLastItemDataBackup", + "cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "constructor": true, "defaults": {}, - "funcname": "ImGuiLastItemDataBackup", - "location": "imgui_internal:2074", - "ov_cimguiname": "ImGuiLastItemDataBackup_ImGuiLastItemDataBackup", + "funcname": "ImGuiLastItemData", + "location": "imgui_internal:1143", + "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", - "stname": "ImGuiLastItemDataBackup" - } - ], - "ImGuiLastItemDataBackup_Restore": [ - { - "args": "(ImGuiLastItemDataBackup* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiLastItemDataBackup*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiLastItemDataBackup_Restore", - "defaults": {}, - "funcname": "Restore", - "location": "imgui_internal:2076", - "ov_cimguiname": "ImGuiLastItemDataBackup_Restore", - "ret": "void", - "signature": "()const", - "stname": "ImGuiLastItemDataBackup" + "stname": "ImGuiLastItemData" } ], - "ImGuiLastItemDataBackup_destroy": [ + "ImGuiLastItemData_destroy": [ { - "args": "(ImGuiLastItemDataBackup* self)", + "args": "(ImGuiLastItemData* self)", "argsT": [ { "name": "self", - "type": "ImGuiLastItemDataBackup*" + "type": "ImGuiLastItemData*" } ], "call_args": "(self)", - "cimguiname": "ImGuiLastItemDataBackup_destroy", + "cimguiname": "ImGuiLastItemData_destroy", "defaults": {}, "destructor": true, - "ov_cimguiname": "ImGuiLastItemDataBackup_destroy", + "ov_cimguiname": "ImGuiLastItemData_destroy", "ret": "void", - "signature": "(ImGuiLastItemDataBackup*)", - "stname": "ImGuiLastItemDataBackup" + "signature": "(ImGuiLastItemData*)", + "stname": "ImGuiLastItemData" } ], "ImGuiListClipper_Begin": [ @@ -6139,7 +6283,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui:2237", + "location": "imgui:2307", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -6160,7 +6304,7 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", - "location": "imgui:2238", + "location": "imgui:2308", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", @@ -6177,7 +6321,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:2232", + "location": "imgui:2302", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" @@ -6197,7 +6341,7 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", - "location": "imgui:2239", + "location": "imgui:2309", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -6217,7 +6361,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2233", + "location": "imgui:2303", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -6225,61 +6369,65 @@ "stname": "ImGuiListClipper" } ], - "ImGuiMenuColumns_CalcExtraSpace": [ + "ImGuiMenuColumns_CalcNextTotalWidth": [ { - "args": "(ImGuiMenuColumns* self,float avail_w)", + "args": "(ImGuiMenuColumns* self,bool update_offsets)", "argsT": [ { "name": "self", "type": "ImGuiMenuColumns*" }, { - "name": "avail_w", - "type": "float" + "name": "update_offsets", + "type": "bool" } ], - "argsoriginal": "(float avail_w)", - "call_args": "(avail_w)", - "cimguiname": "ImGuiMenuColumns_CalcExtraSpace", + "argsoriginal": "(bool update_offsets)", + "call_args": "(update_offsets)", + "cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "defaults": {}, - "funcname": "CalcExtraSpace", - "location": "imgui_internal:971", - "ov_cimguiname": "ImGuiMenuColumns_CalcExtraSpace", - "ret": "float", - "signature": "(float)const", + "funcname": "CalcNextTotalWidth", + "location": "imgui_internal:1014", + "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", + "ret": "void", + "signature": "(bool)", "stname": "ImGuiMenuColumns" } ], "ImGuiMenuColumns_DeclColumns": [ { - "args": "(ImGuiMenuColumns* self,float w0,float w1,float w2)", + "args": "(ImGuiMenuColumns* self,float w_icon,float w_label,float w_shortcut,float w_mark)", "argsT": [ { "name": "self", "type": "ImGuiMenuColumns*" }, { - "name": "w0", + "name": "w_icon", "type": "float" }, { - "name": "w1", + "name": "w_label", "type": "float" }, { - "name": "w2", + "name": "w_shortcut", + "type": "float" + }, + { + "name": "w_mark", "type": "float" } ], - "argsoriginal": "(float w0,float w1,float w2)", - "call_args": "(w0,w1,w2)", + "argsoriginal": "(float w_icon,float w_label,float w_shortcut,float w_mark)", + "call_args": "(w_icon,w_label,w_shortcut,w_mark)", "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", - "location": "imgui_internal:970", + "location": "imgui_internal:1013", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", - "signature": "(float,float,float)", + "signature": "(float,float,float,float)", "stname": "ImGuiMenuColumns" } ], @@ -6293,7 +6441,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", - "location": "imgui_internal:968", + "location": "imgui_internal:1011", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -6301,34 +6449,30 @@ ], "ImGuiMenuColumns_Update": [ { - "args": "(ImGuiMenuColumns* self,int count,float spacing,bool clear)", + "args": "(ImGuiMenuColumns* self,float spacing,bool window_reappearing)", "argsT": [ { "name": "self", "type": "ImGuiMenuColumns*" }, - { - "name": "count", - "type": "int" - }, { "name": "spacing", "type": "float" }, { - "name": "clear", + "name": "window_reappearing", "type": "bool" } ], - "argsoriginal": "(int count,float spacing,bool clear)", - "call_args": "(count,spacing,clear)", + "argsoriginal": "(float spacing,bool window_reappearing)", + "call_args": "(spacing,window_reappearing)", "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", - "location": "imgui_internal:969", + "location": "imgui_internal:1012", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", - "signature": "(int,float,bool)", + "signature": "(float,bool)", "stname": "ImGuiMenuColumns" } ], @@ -6361,7 +6505,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMetricsConfig", - "location": "imgui_internal:1405", + "location": "imgui_internal:1535", "ov_cimguiname": "ImGuiMetricsConfig_ImGuiMetricsConfig", "signature": "()", "stname": "ImGuiMetricsConfig" @@ -6386,60 +6530,60 @@ "stname": "ImGuiMetricsConfig" } ], - "ImGuiNavMoveResult_Clear": [ + "ImGuiNavItemData_Clear": [ { - "args": "(ImGuiNavMoveResult* self)", + "args": "(ImGuiNavItemData* self)", "argsT": [ { "name": "self", - "type": "ImGuiNavMoveResult*" + "type": "ImGuiNavItemData*" } ], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImGuiNavMoveResult_Clear", + "cimguiname": "ImGuiNavItemData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1035", - "ov_cimguiname": "ImGuiNavMoveResult_Clear", + "location": "imgui_internal:1229", + "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", - "stname": "ImGuiNavMoveResult" + "stname": "ImGuiNavItemData" } ], - "ImGuiNavMoveResult_ImGuiNavMoveResult": [ + "ImGuiNavItemData_ImGuiNavItemData": [ { "args": "()", "argsT": [], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImGuiNavMoveResult_ImGuiNavMoveResult", + "cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "constructor": true, "defaults": {}, - "funcname": "ImGuiNavMoveResult", - "location": "imgui_internal:1034", - "ov_cimguiname": "ImGuiNavMoveResult_ImGuiNavMoveResult", + "funcname": "ImGuiNavItemData", + "location": "imgui_internal:1228", + "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", - "stname": "ImGuiNavMoveResult" + "stname": "ImGuiNavItemData" } ], - "ImGuiNavMoveResult_destroy": [ + "ImGuiNavItemData_destroy": [ { - "args": "(ImGuiNavMoveResult* self)", + "args": "(ImGuiNavItemData* self)", "argsT": [ { "name": "self", - "type": "ImGuiNavMoveResult*" + "type": "ImGuiNavItemData*" } ], "call_args": "(self)", - "cimguiname": "ImGuiNavMoveResult_destroy", + "cimguiname": "ImGuiNavItemData_destroy", "defaults": {}, "destructor": true, - "ov_cimguiname": "ImGuiNavMoveResult_destroy", + "ov_cimguiname": "ImGuiNavItemData_destroy", "ret": "void", - "signature": "(ImGuiNavMoveResult*)", - "stname": "ImGuiNavMoveResult" + "signature": "(ImGuiNavItemData*)", + "stname": "ImGuiNavItemData" } ], "ImGuiNextItemData_ClearFlags": [ @@ -6456,7 +6600,7 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1098", + "location": "imgui_internal:1130", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -6473,7 +6617,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", - "location": "imgui_internal:1097", + "location": "imgui_internal:1129", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -6512,7 +6656,7 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1079", + "location": "imgui_internal:1111", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -6529,7 +6673,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", - "location": "imgui_internal:1078", + "location": "imgui_internal:1110", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -6564,7 +6708,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumnData", - "location": "imgui_internal:1148", + "location": "imgui_internal:1264", "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -6599,7 +6743,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumns", - "location": "imgui_internal:1169", + "location": "imgui_internal:1285", "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -6634,7 +6778,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:2100", + "location": "imgui:2170", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -6673,7 +6817,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2054", + "location": "imgui:2124", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -6690,7 +6834,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:2053", + "location": "imgui:2123", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -6714,7 +6858,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:2055", + "location": "imgui:2125", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -6735,7 +6879,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:2057", + "location": "imgui:2127", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -6756,7 +6900,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:2056", + "location": "imgui:2126", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -6792,7 +6936,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformIO", - "location": "imgui:2992", + "location": "imgui:3060", "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", "signature": "()", "stname": "ImGuiPlatformIO" @@ -6827,7 +6971,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformMonitor", - "location": "imgui:3002", + "location": "imgui:3070", "ov_cimguiname": "ImGuiPlatformMonitor_ImGuiPlatformMonitor", "signature": "()", "stname": "ImGuiPlatformMonitor" @@ -6862,7 +7006,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", - "location": "imgui_internal:1021", + "location": "imgui_internal:1067", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -6902,8 +7046,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1112", - "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndexPtr", + "location": "imgui_internal:1164", + "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" }, @@ -6921,8 +7065,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1113", - "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndexInt", + "location": "imgui_internal:1165", + "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" } @@ -6956,7 +7100,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", - "location": "imgui_internal:1387", + "location": "imgui_internal:1517", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -6995,7 +7139,7 @@ "cimguiname": "ImGuiStackSizes_CompareWithCurrentState", "defaults": {}, "funcname": "CompareWithCurrentState", - "location": "imgui_internal:1430", + "location": "imgui_internal:1560", "ov_cimguiname": "ImGuiStackSizes_CompareWithCurrentState", "ret": "void", "signature": "()", @@ -7012,7 +7156,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackSizes", - "location": "imgui_internal:1428", + "location": "imgui_internal:1558", "ov_cimguiname": "ImGuiStackSizes_ImGuiStackSizes", "signature": "()", "stname": "ImGuiStackSizes" @@ -7032,7 +7176,7 @@ "cimguiname": "ImGuiStackSizes_SetToCurrentState", "defaults": {}, "funcname": "SetToCurrentState", - "location": "imgui_internal:1429", + "location": "imgui_internal:1559", "ov_cimguiname": "ImGuiStackSizes_SetToCurrentState", "ret": "void", "signature": "()", @@ -7077,8 +7221,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2167", - "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairInt", + "location": "imgui:2237", + "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" }, @@ -7100,8 +7244,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2168", - "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairFloat", + "location": "imgui:2238", + "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" }, @@ -7123,8 +7267,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2169", - "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairPtr", + "location": "imgui:2239", + "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" } @@ -7162,7 +7306,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:2200", + "location": "imgui:2270", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -7183,7 +7327,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2177", + "location": "imgui:2247", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -7214,7 +7358,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:2180", + "location": "imgui:2250", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -7245,7 +7389,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:2192", + "location": "imgui:2262", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -7276,7 +7420,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:2182", + "location": "imgui:2252", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -7307,7 +7451,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:2193", + "location": "imgui:2263", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -7338,7 +7482,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:2178", + "location": "imgui:2248", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -7369,7 +7513,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:2191", + "location": "imgui:2261", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -7394,7 +7538,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:2184", + "location": "imgui:2254", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -7425,7 +7569,7 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:2194", + "location": "imgui:2264", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -7450,7 +7594,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:2197", + "location": "imgui:2267", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -7479,7 +7623,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:2181", + "location": "imgui:2251", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -7508,7 +7652,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:2183", + "location": "imgui:2253", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -7537,7 +7681,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:2179", + "location": "imgui:2249", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -7566,7 +7710,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:2185", + "location": "imgui:2255", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -7592,8 +7736,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:940", - "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModInt", + "location": "imgui_internal:965", + "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Int", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" }, @@ -7615,8 +7759,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:941", - "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModFloat", + "location": "imgui_internal:966", + "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Float", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" }, @@ -7638,8 +7782,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:942", - "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModVec2", + "location": "imgui_internal:967", + "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Vec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" } @@ -7673,7 +7817,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:1816", + "location": "imgui:1882", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -7697,7 +7841,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:1817", + "location": "imgui:1883", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -7741,7 +7885,7 @@ "cimguiname": "ImGuiTabBar_GetTabName", "defaults": {}, "funcname": "GetTabName", - "location": "imgui_internal:2156", + "location": "imgui_internal:2282", "ov_cimguiname": "ImGuiTabBar_GetTabName", "ret": "const char*", "signature": "(const ImGuiTabItem*)const", @@ -7766,7 +7910,7 @@ "cimguiname": "ImGuiTabBar_GetTabOrder", "defaults": {}, "funcname": "GetTabOrder", - "location": "imgui_internal:2155", + "location": "imgui_internal:2281", "ov_cimguiname": "ImGuiTabBar_GetTabOrder", "ret": "int", "signature": "(const ImGuiTabItem*)const", @@ -7783,7 +7927,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", - "location": "imgui_internal:2154", + "location": "imgui_internal:2280", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -7818,7 +7962,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", - "location": "imgui_internal:2116", + "location": "imgui_internal:2242", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -7853,7 +7997,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSettings", - "location": "imgui_internal:2378", + "location": "imgui_internal:2518", "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -7888,7 +8032,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:2068", + "location": "imgui:2138", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -7923,7 +8067,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumn", - "location": "imgui_internal:2226", + "location": "imgui_internal:2351", "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -7962,7 +8106,7 @@ "cimguiname": "ImGuiTableSettings_GetColumnSettings", "defaults": {}, "funcname": "GetColumnSettings", - "location": "imgui_internal:2401", + "location": "imgui_internal:2541", "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -7979,7 +8123,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSettings", - "location": "imgui_internal:2400", + "location": "imgui_internal:2540", "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -8014,7 +8158,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:2081", + "location": "imgui:2151", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -8039,6 +8183,41 @@ "stname": "ImGuiTableSortSpecs" } ], + "ImGuiTableTempData_ImGuiTableTempData": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiTableTempData_ImGuiTableTempData", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiTableTempData", + "location": "imgui_internal:2503", + "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", + "signature": "()", + "stname": "ImGuiTableTempData" + } + ], + "ImGuiTableTempData_destroy": [ + { + "args": "(ImGuiTableTempData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiTableTempData*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiTableTempData_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiTableTempData_destroy", + "ret": "void", + "signature": "(ImGuiTableTempData*)", + "stname": "ImGuiTableTempData" + } + ], "ImGuiTable_ImGuiTable": [ { "args": "()", @@ -8049,7 +8228,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTable", - "location": "imgui_internal:2362", + "location": "imgui_internal:2479", "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -8068,7 +8247,7 @@ "cimguiname": "ImGuiTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2363", + "location": "imgui_internal:2480", "ov_cimguiname": "ImGuiTable_destroy", "realdestructor": true, "ret": "void", @@ -8086,7 +8265,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:2138", + "location": "imgui:2208", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -8116,7 +8295,7 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:2147", + "location": "imgui:2217", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -8146,7 +8325,7 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:2148", + "location": "imgui:2218", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -8176,7 +8355,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:2149", + "location": "imgui:2219", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -8197,7 +8376,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2140", + "location": "imgui:2210", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -8218,7 +8397,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:2146", + "location": "imgui:2216", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -8239,7 +8418,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2144", + "location": "imgui:2214", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -8279,7 +8458,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2143", + "location": "imgui:2213", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -8300,7 +8479,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:2141", + "location": "imgui:2211", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -8325,7 +8504,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2145", + "location": "imgui:2215", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -8346,7 +8525,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:2142", + "location": "imgui:2212", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -8367,7 +8546,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2111", + "location": "imgui:2181", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -8388,7 +8567,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2112", + "location": "imgui:2182", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -8420,7 +8599,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:2109", + "location": "imgui:2179", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -8444,7 +8623,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:2108", + "location": "imgui:2178", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -8464,7 +8643,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:2113", + "location": "imgui:2183", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -8495,7 +8674,7 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:2110", + "location": "imgui:2180", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -8531,8 +8710,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2121", - "ov_cimguiname": "ImGuiTextRange_ImGuiTextRangeNil", + "location": "imgui:2191", + "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" }, @@ -8554,8 +8733,8 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2122", - "ov_cimguiname": "ImGuiTextRange_ImGuiTextRangeStr", + "location": "imgui:2192", + "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" } @@ -8593,7 +8772,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2123", + "location": "imgui:2193", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -8622,13 +8801,77 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:2124", + "location": "imgui:2194", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", "stname": "ImGuiTextRange" } ], + "ImGuiViewportP_CalcWorkRectPos": [ + { + "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min)", + "argsT": [ + { + "name": "pOut", + "type": "ImVec2*" + }, + { + "name": "self", + "type": "ImGuiViewportP*" + }, + { + "name": "off_min", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& off_min)", + "call_args": "(off_min)", + "cimguiname": "ImGuiViewportP_CalcWorkRectPos", + "defaults": {}, + "funcname": "CalcWorkRectPos", + "location": "imgui_internal:1471", + "nonUDT": 1, + "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", + "ret": "void", + "signature": "(const ImVec2)const", + "stname": "ImGuiViewportP" + } + ], + "ImGuiViewportP_CalcWorkRectSize": [ + { + "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max)", + "argsT": [ + { + "name": "pOut", + "type": "ImVec2*" + }, + { + "name": "self", + "type": "ImGuiViewportP*" + }, + { + "name": "off_min", + "type": "const ImVec2" + }, + { + "name": "off_max", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& off_min,const ImVec2& off_max)", + "call_args": "(off_min,off_max)", + "cimguiname": "ImGuiViewportP_CalcWorkRectSize", + "defaults": {}, + "funcname": "CalcWorkRectSize", + "location": "imgui_internal:1472", + "nonUDT": 1, + "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", + "ret": "void", + "signature": "(const ImVec2,const ImVec2)const", + "stname": "ImGuiViewportP" + } + ], "ImGuiViewportP_ClearRequestFlags": [ { "args": "(ImGuiViewportP* self)", @@ -8643,13 +8886,39 @@ "cimguiname": "ImGuiViewportP_ClearRequestFlags", "defaults": {}, "funcname": "ClearRequestFlags", - "location": "imgui_internal:1348", + "location": "imgui_internal:1468", "ov_cimguiname": "ImGuiViewportP_ClearRequestFlags", "ret": "void", "signature": "()", "stname": "ImGuiViewportP" } ], + "ImGuiViewportP_GetBuildWorkRect": [ + { + "args": "(ImRect *pOut,ImGuiViewportP* self)", + "argsT": [ + { + "name": "pOut", + "type": "ImRect*" + }, + { + "name": "self", + "type": "ImGuiViewportP*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiViewportP_GetBuildWorkRect", + "defaults": {}, + "funcname": "GetBuildWorkRect", + "location": "imgui_internal:1478", + "nonUDT": 1, + "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", + "ret": "void", + "signature": "()const", + "stname": "ImGuiViewportP" + } + ], "ImGuiViewportP_GetMainRect": [ { "args": "(ImRect *pOut,ImGuiViewportP* self)", @@ -8668,7 +8937,7 @@ "cimguiname": "ImGuiViewportP_GetMainRect", "defaults": {}, "funcname": "GetMainRect", - "location": "imgui_internal:1345", + "location": "imgui_internal:1476", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "void", @@ -8694,7 +8963,7 @@ "cimguiname": "ImGuiViewportP_GetWorkRect", "defaults": {}, "funcname": "GetWorkRect", - "location": "imgui_internal:1346", + "location": "imgui_internal:1477", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "void", @@ -8712,7 +8981,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewportP", - "location": "imgui_internal:1343", + "location": "imgui_internal:1466", "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -8732,7 +9001,7 @@ "cimguiname": "ImGuiViewportP_UpdateWorkRect", "defaults": {}, "funcname": "UpdateWorkRect", - "location": "imgui_internal:1347", + "location": "imgui_internal:1473", "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -8752,7 +9021,7 @@ "cimguiname": "ImGuiViewportP_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1344", + "location": "imgui_internal:1467", "ov_cimguiname": "ImGuiViewportP_destroy", "realdestructor": true, "ret": "void", @@ -8778,7 +9047,7 @@ "cimguiname": "ImGuiViewport_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui:2879", + "location": "imgui:2947", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "void", @@ -8804,7 +9073,7 @@ "cimguiname": "ImGuiViewport_GetWorkCenter", "defaults": {}, "funcname": "GetWorkCenter", - "location": "imgui:2880", + "location": "imgui:2948", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "void", @@ -8822,7 +9091,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", - "location": "imgui:2875", + "location": "imgui:2943", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -8841,7 +9110,7 @@ "cimguiname": "ImGuiViewport_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2876", + "location": "imgui:2944", "ov_cimguiname": "ImGuiViewport_destroy", "realdestructor": true, "ret": "void", @@ -8859,7 +9128,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowClass", - "location": "imgui:2035", + "location": "imgui:2105", "ov_cimguiname": "ImGuiWindowClass_ImGuiWindowClass", "signature": "()", "stname": "ImGuiWindowClass" @@ -8898,7 +9167,7 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", - "location": "imgui_internal:1372", + "location": "imgui_internal:1502", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -8915,7 +9184,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", - "location": "imgui_internal:1371", + "location": "imgui_internal:1501", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -8954,7 +9223,7 @@ "cimguiname": "ImGuiWindow_CalcFontSize", "defaults": {}, "funcname": "CalcFontSize", - "location": "imgui_internal:2059", + "location": "imgui_internal:2197", "ov_cimguiname": "ImGuiWindow_CalcFontSize", "ret": "float", "signature": "()const", @@ -8985,8 +9254,8 @@ "str_end": "NULL" }, "funcname": "GetID", - "location": "imgui_internal:2049", - "ov_cimguiname": "ImGuiWindow_GetIDStr", + "location": "imgui_internal:2187", + "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", "stname": "ImGuiWindow" @@ -9008,8 +9277,8 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2050", - "ov_cimguiname": "ImGuiWindow_GetIDPtr", + "location": "imgui_internal:2188", + "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", "stname": "ImGuiWindow" @@ -9031,8 +9300,8 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2051", - "ov_cimguiname": "ImGuiWindow_GetIDInt", + "location": "imgui_internal:2189", + "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", "stname": "ImGuiWindow" @@ -9056,7 +9325,7 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", - "location": "imgui_internal:2055", + "location": "imgui_internal:2193", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -9087,8 +9356,8 @@ "str_end": "NULL" }, "funcname": "GetIDNoKeepAlive", - "location": "imgui_internal:2052", - "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAliveStr", + "location": "imgui_internal:2190", + "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAlive_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", "stname": "ImGuiWindow" @@ -9110,8 +9379,8 @@ "cimguiname": "ImGuiWindow_GetIDNoKeepAlive", "defaults": {}, "funcname": "GetIDNoKeepAlive", - "location": "imgui_internal:2053", - "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAlivePtr", + "location": "imgui_internal:2191", + "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAlive_Ptr", "ret": "ImGuiID", "signature": "(const void*)", "stname": "ImGuiWindow" @@ -9133,8 +9402,8 @@ "cimguiname": "ImGuiWindow_GetIDNoKeepAlive", "defaults": {}, "funcname": "GetIDNoKeepAlive", - "location": "imgui_internal:2054", - "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAliveInt", + "location": "imgui_internal:2192", + "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAlive_Int", "ret": "ImGuiID", "signature": "(int)", "stname": "ImGuiWindow" @@ -9159,7 +9428,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", - "location": "imgui_internal:2045", + "location": "imgui_internal:2183", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -9179,7 +9448,7 @@ "cimguiname": "ImGuiWindow_MenuBarHeight", "defaults": {}, "funcname": "MenuBarHeight", - "location": "imgui_internal:2062", + "location": "imgui_internal:2200", "ov_cimguiname": "ImGuiWindow_MenuBarHeight", "ret": "float", "signature": "()const", @@ -9204,7 +9473,7 @@ "cimguiname": "ImGuiWindow_MenuBarRect", "defaults": {}, "funcname": "MenuBarRect", - "location": "imgui_internal:2063", + "location": "imgui_internal:2201", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "void", @@ -9230,7 +9499,7 @@ "cimguiname": "ImGuiWindow_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:2058", + "location": "imgui_internal:2196", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "void", @@ -9252,7 +9521,7 @@ "cimguiname": "ImGuiWindow_TitleBarHeight", "defaults": {}, "funcname": "TitleBarHeight", - "location": "imgui_internal:2060", + "location": "imgui_internal:2198", "ov_cimguiname": "ImGuiWindow_TitleBarHeight", "ret": "float", "signature": "()const", @@ -9277,7 +9546,7 @@ "cimguiname": "ImGuiWindow_TitleBarRect", "defaults": {}, "funcname": "TitleBarRect", - "location": "imgui_internal:2061", + "location": "imgui_internal:2199", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "void", @@ -9298,7 +9567,7 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2047", + "location": "imgui_internal:2185", "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -9320,7 +9589,7 @@ "cimguiname": "ImPool_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:600", + "location": "imgui_internal:639", "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -9342,7 +9611,7 @@ "cimguiname": "ImPool_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:599", + "location": "imgui_internal:638", "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -9368,7 +9637,7 @@ "cimguiname": "ImPool_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:598", + "location": "imgui_internal:637", "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -9376,6 +9645,50 @@ "templated": true } ], + "ImPool_GetAliveCount": [ + { + "args": "(ImPool* self)", + "argsT": [ + { + "name": "self", + "type": "ImPool*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImPool_GetAliveCount", + "defaults": {}, + "funcname": "GetAliveCount", + "location": "imgui_internal:646", + "ov_cimguiname": "ImPool_GetAliveCount", + "ret": "int", + "signature": "()const", + "stname": "ImPool", + "templated": true + } + ], + "ImPool_GetBufSize": [ + { + "args": "(ImPool* self)", + "argsT": [ + { + "name": "self", + "type": "ImPool*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImPool_GetBufSize", + "defaults": {}, + "funcname": "GetBufSize", + "location": "imgui_internal:647", + "ov_cimguiname": "ImPool_GetBufSize", + "ret": "int", + "signature": "()const", + "stname": "ImPool", + "templated": true + } + ], "ImPool_GetByIndex": [ { "args": "(ImPool* self,ImPoolIdx n)", @@ -9394,7 +9707,7 @@ "cimguiname": "ImPool_GetByIndex", "defaults": {}, "funcname": "GetByIndex", - "location": "imgui_internal:595", + "location": "imgui_internal:634", "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -9420,7 +9733,7 @@ "cimguiname": "ImPool_GetByKey", "defaults": {}, "funcname": "GetByKey", - "location": "imgui_internal:594", + "location": "imgui_internal:633", "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -9446,7 +9759,7 @@ "cimguiname": "ImPool_GetIndex", "defaults": {}, "funcname": "GetIndex", - "location": "imgui_internal:596", + "location": "imgui_internal:635", "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -9454,50 +9767,50 @@ "templated": true } ], - "ImPool_GetOrAddByKey": [ + "ImPool_GetMapSize": [ { - "args": "(ImPool* self,ImGuiID key)", + "args": "(ImPool* self)", "argsT": [ { "name": "self", "type": "ImPool*" - }, - { - "name": "key", - "type": "ImGuiID" } ], - "argsoriginal": "(ImGuiID key)", - "call_args": "(key)", - "cimguiname": "ImPool_GetOrAddByKey", + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImPool_GetMapSize", "defaults": {}, - "funcname": "GetOrAddByKey", - "location": "imgui_internal:597", - "ov_cimguiname": "ImPool_GetOrAddByKey", - "ret": "T*", - "signature": "(ImGuiID)", + "funcname": "GetMapSize", + "location": "imgui_internal:648", + "ov_cimguiname": "ImPool_GetMapSize", + "ret": "int", + "signature": "()const", "stname": "ImPool", "templated": true } ], - "ImPool_GetSize": [ + "ImPool_GetOrAddByKey": [ { - "args": "(ImPool* self)", + "args": "(ImPool* self,ImGuiID key)", "argsT": [ { "name": "self", "type": "ImPool*" + }, + { + "name": "key", + "type": "ImGuiID" } ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImPool_GetSize", + "argsoriginal": "(ImGuiID key)", + "call_args": "(key)", + "cimguiname": "ImPool_GetOrAddByKey", "defaults": {}, - "funcname": "GetSize", - "location": "imgui_internal:604", - "ov_cimguiname": "ImPool_GetSize", - "ret": "int", - "signature": "()const", + "funcname": "GetOrAddByKey", + "location": "imgui_internal:636", + "ov_cimguiname": "ImPool_GetOrAddByKey", + "ret": "T*", + "signature": "(ImGuiID)", "stname": "ImPool", "templated": true } @@ -9512,7 +9825,7 @@ "constructor": true, "defaults": {}, "funcname": "ImPool", - "location": "imgui_internal:592", + "location": "imgui_internal:631", "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -9541,8 +9854,8 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:601", - "ov_cimguiname": "ImPool_RemoveTPtr", + "location": "imgui_internal:640", + "ov_cimguiname": "ImPool_Remove_TPtr", "ret": "void", "signature": "(ImGuiID,const T*)", "stname": "ImPool", @@ -9569,8 +9882,8 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:602", - "ov_cimguiname": "ImPool_RemovePoolIdx", + "location": "imgui_internal:641", + "ov_cimguiname": "ImPool_Remove_PoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", "stname": "ImPool", @@ -9595,7 +9908,7 @@ "cimguiname": "ImPool_Reserve", "defaults": {}, "funcname": "Reserve", - "location": "imgui_internal:603", + "location": "imgui_internal:642", "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -9603,6 +9916,32 @@ "templated": true } ], + "ImPool_TryGetMapData": [ + { + "args": "(ImPool* self,ImPoolIdx n)", + "argsT": [ + { + "name": "self", + "type": "ImPool*" + }, + { + "name": "n", + "type": "ImPoolIdx" + } + ], + "argsoriginal": "(ImPoolIdx n)", + "call_args": "(n)", + "cimguiname": "ImPool_TryGetMapData", + "defaults": {}, + "funcname": "TryGetMapData", + "location": "imgui_internal:649", + "ov_cimguiname": "ImPool_TryGetMapData", + "ret": "T*", + "signature": "(ImPoolIdx)", + "stname": "ImPool", + "templated": true + } + ], "ImPool_destroy": [ { "args": "(ImPool* self)", @@ -9616,7 +9955,7 @@ "cimguiname": "ImPool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:593", + "location": "imgui_internal:632", "ov_cimguiname": "ImPool_destroy", "realdestructor": true, "ret": "void", @@ -9643,8 +9982,8 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:472", - "ov_cimguiname": "ImRect_AddVec2", + "location": "imgui_internal:509", + "ov_cimguiname": "ImRect_Add_Vec2", "ret": "void", "signature": "(const ImVec2)", "stname": "ImRect" @@ -9666,8 +10005,8 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:473", - "ov_cimguiname": "ImRect_AddRect", + "location": "imgui_internal:510", + "ov_cimguiname": "ImRect_Add_Rect", "ret": "void", "signature": "(const ImRect)", "stname": "ImRect" @@ -9691,7 +10030,7 @@ "cimguiname": "ImRect_ClipWith", "defaults": {}, "funcname": "ClipWith", - "location": "imgui_internal:479", + "location": "imgui_internal:516", "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -9716,7 +10055,7 @@ "cimguiname": "ImRect_ClipWithFull", "defaults": {}, "funcname": "ClipWithFull", - "location": "imgui_internal:480", + "location": "imgui_internal:517", "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -9741,8 +10080,8 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:469", - "ov_cimguiname": "ImRect_ContainsVec2", + "location": "imgui_internal:506", + "ov_cimguiname": "ImRect_Contains_Vec2", "ret": "bool", "signature": "(const ImVec2)const", "stname": "ImRect" @@ -9764,8 +10103,8 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:470", - "ov_cimguiname": "ImRect_ContainsRect", + "location": "imgui_internal:507", + "ov_cimguiname": "ImRect_Contains_Rect", "ret": "bool", "signature": "(const ImRect)const", "stname": "ImRect" @@ -9789,8 +10128,8 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:474", - "ov_cimguiname": "ImRect_ExpandFloat", + "location": "imgui_internal:511", + "ov_cimguiname": "ImRect_Expand_Float", "ret": "void", "signature": "(const float)", "stname": "ImRect" @@ -9812,8 +10151,8 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:475", - "ov_cimguiname": "ImRect_ExpandVec2", + "location": "imgui_internal:512", + "ov_cimguiname": "ImRect_Expand_Vec2", "ret": "void", "signature": "(const ImVec2)", "stname": "ImRect" @@ -9833,7 +10172,7 @@ "cimguiname": "ImRect_Floor", "defaults": {}, "funcname": "Floor", - "location": "imgui_internal:481", + "location": "imgui_internal:518", "ov_cimguiname": "ImRect_Floor", "ret": "void", "signature": "()", @@ -9854,7 +10193,7 @@ "cimguiname": "ImRect_GetArea", "defaults": {}, "funcname": "GetArea", - "location": "imgui_internal:464", + "location": "imgui_internal:501", "ov_cimguiname": "ImRect_GetArea", "ret": "float", "signature": "()const", @@ -9879,7 +10218,7 @@ "cimguiname": "ImRect_GetBL", "defaults": {}, "funcname": "GetBL", - "location": "imgui_internal:467", + "location": "imgui_internal:504", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "void", @@ -9905,7 +10244,7 @@ "cimguiname": "ImRect_GetBR", "defaults": {}, "funcname": "GetBR", - "location": "imgui_internal:468", + "location": "imgui_internal:505", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "void", @@ -9931,7 +10270,7 @@ "cimguiname": "ImRect_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui_internal:460", + "location": "imgui_internal:497", "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "void", @@ -9953,7 +10292,7 @@ "cimguiname": "ImRect_GetHeight", "defaults": {}, "funcname": "GetHeight", - "location": "imgui_internal:463", + "location": "imgui_internal:500", "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -9978,7 +10317,7 @@ "cimguiname": "ImRect_GetSize", "defaults": {}, "funcname": "GetSize", - "location": "imgui_internal:461", + "location": "imgui_internal:498", "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "void", @@ -10004,7 +10343,7 @@ "cimguiname": "ImRect_GetTL", "defaults": {}, "funcname": "GetTL", - "location": "imgui_internal:465", + "location": "imgui_internal:502", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "void", @@ -10030,7 +10369,7 @@ "cimguiname": "ImRect_GetTR", "defaults": {}, "funcname": "GetTR", - "location": "imgui_internal:466", + "location": "imgui_internal:503", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "void", @@ -10052,7 +10391,7 @@ "cimguiname": "ImRect_GetWidth", "defaults": {}, "funcname": "GetWidth", - "location": "imgui_internal:462", + "location": "imgui_internal:499", "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -10069,8 +10408,8 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:455", - "ov_cimguiname": "ImRect_ImRectNil", + "location": "imgui_internal:492", + "ov_cimguiname": "ImRect_ImRect_Nil", "signature": "()", "stname": "ImRect" }, @@ -10092,8 +10431,8 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:456", - "ov_cimguiname": "ImRect_ImRectVec2", + "location": "imgui_internal:493", + "ov_cimguiname": "ImRect_ImRect_Vec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" }, @@ -10111,8 +10450,8 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:457", - "ov_cimguiname": "ImRect_ImRectVec4", + "location": "imgui_internal:494", + "ov_cimguiname": "ImRect_ImRect_Vec4", "signature": "(const ImVec4)", "stname": "ImRect" }, @@ -10142,8 +10481,8 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:458", - "ov_cimguiname": "ImRect_ImRectFloat", + "location": "imgui_internal:495", + "ov_cimguiname": "ImRect_ImRect_Float", "signature": "(float,float,float,float)", "stname": "ImRect" } @@ -10162,7 +10501,7 @@ "cimguiname": "ImRect_IsInverted", "defaults": {}, "funcname": "IsInverted", - "location": "imgui_internal:482", + "location": "imgui_internal:519", "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -10187,7 +10526,7 @@ "cimguiname": "ImRect_Overlaps", "defaults": {}, "funcname": "Overlaps", - "location": "imgui_internal:471", + "location": "imgui_internal:508", "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -10212,7 +10551,7 @@ "cimguiname": "ImRect_ToVec4", "defaults": {}, "funcname": "ToVec4", - "location": "imgui_internal:483", + "location": "imgui_internal:520", "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "void", @@ -10238,7 +10577,7 @@ "cimguiname": "ImRect_Translate", "defaults": {}, "funcname": "Translate", - "location": "imgui_internal:476", + "location": "imgui_internal:513", "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -10263,7 +10602,7 @@ "cimguiname": "ImRect_TranslateX", "defaults": {}, "funcname": "TranslateX", - "location": "imgui_internal:477", + "location": "imgui_internal:514", "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -10288,7 +10627,7 @@ "cimguiname": "ImRect_TranslateY", "defaults": {}, "funcname": "TranslateY", - "location": "imgui_internal:478", + "location": "imgui_internal:515", "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -10328,7 +10667,7 @@ "cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "defaults": {}, "funcname": "GetArenaSizeInBytes", - "location": "imgui_internal:573", + "location": "imgui_internal:611", "ov_cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "ret": "int", "signature": "()", @@ -10354,7 +10693,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "defaults": {}, "funcname": "GetSpanPtrBegin", - "location": "imgui_internal:575", + "location": "imgui_internal:613", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "ret": "void*", "signature": "(int)", @@ -10380,7 +10719,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "defaults": {}, "funcname": "GetSpanPtrEnd", - "location": "imgui_internal:576", + "location": "imgui_internal:614", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "ret": "void*", "signature": "(int)", @@ -10398,7 +10737,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpanAllocator", - "location": "imgui_internal:571", + "location": "imgui_internal:609", "ov_cimguiname": "ImSpanAllocator_ImSpanAllocator", "signature": "()", "stname": "ImSpanAllocator", @@ -10433,7 +10772,7 @@ "a": "4" }, "funcname": "Reserve", - "location": "imgui_internal:572", + "location": "imgui_internal:610", "ov_cimguiname": "ImSpanAllocator_Reserve", "ret": "void", "signature": "(int,size_t,int)", @@ -10459,7 +10798,7 @@ "cimguiname": "ImSpanAllocator_SetArenaBasePtr", "defaults": {}, "funcname": "SetArenaBasePtr", - "location": "imgui_internal:574", + "location": "imgui_internal:612", "ov_cimguiname": "ImSpanAllocator_SetArenaBasePtr", "ret": "void", "signature": "(void*)", @@ -10497,8 +10836,8 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:539", - "ov_cimguiname": "ImSpan_ImSpanNil", + "location": "imgui_internal:577", + "ov_cimguiname": "ImSpan_ImSpan_Nil", "signature": "()", "stname": "ImSpan", "templated": true @@ -10521,8 +10860,8 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:540", - "ov_cimguiname": "ImSpan_ImSpanTPtrInt", + "location": "imgui_internal:578", + "ov_cimguiname": "ImSpan_ImSpan_TPtrInt", "signature": "(T*,int)", "stname": "ImSpan", "templated": true @@ -10545,8 +10884,8 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:541", - "ov_cimguiname": "ImSpan_ImSpanTPtrTPtr", + "location": "imgui_internal:579", + "ov_cimguiname": "ImSpan_ImSpan_TPtrTPtr", "signature": "(T*,T*)", "stname": "ImSpan", "templated": true @@ -10566,8 +10905,8 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:550", - "ov_cimguiname": "ImSpan_beginNil", + "location": "imgui_internal:588", + "ov_cimguiname": "ImSpan_begin_Nil", "ret": "T*", "signature": "()", "stname": "ImSpan", @@ -10586,8 +10925,8 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:551", - "ov_cimguiname": "ImSpan_begin_const", + "location": "imgui_internal:589", + "ov_cimguiname": "ImSpan_begin__const", "ret": "const T*", "signature": "()const", "stname": "ImSpan", @@ -10628,8 +10967,8 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:552", - "ov_cimguiname": "ImSpan_endNil", + "location": "imgui_internal:590", + "ov_cimguiname": "ImSpan_end_Nil", "ret": "T*", "signature": "()", "stname": "ImSpan", @@ -10648,8 +10987,8 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:553", - "ov_cimguiname": "ImSpan_end_const", + "location": "imgui_internal:591", + "ov_cimguiname": "ImSpan_end__const", "ret": "const T*", "signature": "()const", "stname": "ImSpan", @@ -10674,7 +11013,7 @@ "cimguiname": "ImSpan_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui_internal:556", + "location": "imgui_internal:594", "ov_cimguiname": "ImSpan_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -10704,8 +11043,8 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:543", - "ov_cimguiname": "ImSpan_setInt", + "location": "imgui_internal:581", + "ov_cimguiname": "ImSpan_set_Int", "ret": "void", "signature": "(T*,int)", "stname": "ImSpan", @@ -10732,8 +11071,8 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:544", - "ov_cimguiname": "ImSpan_setTPtr", + "location": "imgui_internal:582", + "ov_cimguiname": "ImSpan_set_TPtr", "ret": "void", "signature": "(T*,T*)", "stname": "ImSpan", @@ -10754,7 +11093,7 @@ "cimguiname": "ImSpan_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:545", + "location": "imgui_internal:583", "ov_cimguiname": "ImSpan_size", "ret": "int", "signature": "()const", @@ -10776,7 +11115,7 @@ "cimguiname": "ImSpan_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui_internal:546", + "location": "imgui_internal:584", "ov_cimguiname": "ImSpan_size_in_bytes", "ret": "int", "signature": "()const", @@ -10794,8 +11133,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:435", - "ov_cimguiname": "ImVec1_ImVec1Nil", + "location": "imgui_internal:472", + "ov_cimguiname": "ImVec1_ImVec1_Nil", "signature": "()", "stname": "ImVec1" }, @@ -10813,8 +11152,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:436", - "ov_cimguiname": "ImVec1_ImVec1Float", + "location": "imgui_internal:473", + "ov_cimguiname": "ImVec1_ImVec1_Float", "signature": "(float)", "stname": "ImVec1" } @@ -10848,8 +11187,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:240", - "ov_cimguiname": "ImVec2_ImVec2Nil", + "location": "imgui:269", + "ov_cimguiname": "ImVec2_ImVec2_Nil", "signature": "()", "stname": "ImVec2" }, @@ -10871,8 +11210,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:241", - "ov_cimguiname": "ImVec2_ImVec2Float", + "location": "imgui:270", + "ov_cimguiname": "ImVec2_ImVec2_Float", "signature": "(float,float)", "stname": "ImVec2" } @@ -10906,8 +11245,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:443", - "ov_cimguiname": "ImVec2ih_ImVec2ihNil", + "location": "imgui_internal:480", + "ov_cimguiname": "ImVec2ih_ImVec2ih_Nil", "signature": "()", "stname": "ImVec2ih" }, @@ -10929,8 +11268,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:444", - "ov_cimguiname": "ImVec2ih_ImVec2ihshort", + "location": "imgui_internal:481", + "ov_cimguiname": "ImVec2ih_ImVec2ih_short", "signature": "(short,short)", "stname": "ImVec2ih" }, @@ -10948,8 +11287,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:445", - "ov_cimguiname": "ImVec2ih_ImVec2ihVec2", + "location": "imgui_internal:482", + "ov_cimguiname": "ImVec2ih_ImVec2ih_Vec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" } @@ -10983,8 +11322,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:253", - "ov_cimguiname": "ImVec4_ImVec4Nil", + "location": "imgui:282", + "ov_cimguiname": "ImVec4_ImVec4_Nil", "signature": "()", "stname": "ImVec4" }, @@ -11014,8 +11353,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:254", - "ov_cimguiname": "ImVec4_ImVec4Float", + "location": "imgui:283", + "ov_cimguiname": "ImVec4_ImVec4_Float", "signature": "(float,float,float,float)", "stname": "ImVec4" } @@ -11049,8 +11388,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1719", - "ov_cimguiname": "ImVector_ImVectorNil", + "location": "imgui:1780", + "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", "templated": true @@ -11069,8 +11408,8 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1720", - "ov_cimguiname": "ImVector_ImVectorVector", + "location": "imgui:1781", + "ov_cimguiname": "ImVector_ImVector_Vector", "signature": "(const ImVector)", "stname": "ImVector", "templated": true @@ -11094,7 +11433,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:1743", + "location": "imgui:1807", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -11116,8 +11455,8 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1739", - "ov_cimguiname": "ImVector_backNil", + "location": "imgui:1803", + "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", "signature": "()", @@ -11137,8 +11476,8 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1740", - "ov_cimguiname": "ImVector_back_const", + "location": "imgui:1804", + "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", "signature": "()const", @@ -11160,8 +11499,8 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1733", - "ov_cimguiname": "ImVector_beginNil", + "location": "imgui:1797", + "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", "stname": "ImVector", @@ -11180,8 +11519,8 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1734", - "ov_cimguiname": "ImVector_begin_const", + "location": "imgui:1798", + "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", "stname": "ImVector", @@ -11202,7 +11541,7 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:1728", + "location": "imgui:1793", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -11224,7 +11563,7 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:1732", + "location": "imgui:1785", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -11232,6 +11571,50 @@ "templated": true } ], + "ImVector_clear_delete": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_clear_delete", + "defaults": {}, + "funcname": "clear_delete", + "location": "imgui:1786", + "ov_cimguiname": "ImVector_clear_delete", + "ret": "void", + "signature": "()", + "stname": "ImVector", + "templated": true + } + ], + "ImVector_clear_destruct": [ + { + "args": "(ImVector* self)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImVector_clear_destruct", + "defaults": {}, + "funcname": "clear_destruct", + "location": "imgui:1787", + "ov_cimguiname": "ImVector_clear_destruct", + "ret": "void", + "signature": "()", + "stname": "ImVector", + "templated": true + } + ], "ImVector_contains": [ { "args": "(ImVector* self,const T v)", @@ -11250,7 +11633,7 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:1757", + "location": "imgui:1821", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -11271,7 +11654,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:1722", + "location": "imgui:1783", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -11294,7 +11677,7 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:1724", + "location": "imgui:1789", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -11316,8 +11699,8 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1735", - "ov_cimguiname": "ImVector_endNil", + "location": "imgui:1799", + "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", "stname": "ImVector", @@ -11336,8 +11719,8 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1736", - "ov_cimguiname": "ImVector_end_const", + "location": "imgui:1800", + "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", "stname": "ImVector", @@ -11362,8 +11745,8 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1753", - "ov_cimguiname": "ImVector_eraseNil", + "location": "imgui:1817", + "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", "stname": "ImVector", @@ -11390,8 +11773,8 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1754", - "ov_cimguiname": "ImVector_eraseTPtr", + "location": "imgui:1818", + "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", "stname": "ImVector", @@ -11416,7 +11799,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:1755", + "location": "imgui:1819", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -11442,8 +11825,8 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1758", - "ov_cimguiname": "ImVector_findNil", + "location": "imgui:1822", + "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", "stname": "ImVector", @@ -11466,8 +11849,8 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1759", - "ov_cimguiname": "ImVector_find_const", + "location": "imgui:1823", + "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", "stname": "ImVector", @@ -11492,7 +11875,7 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:1760", + "location": "imgui:1824", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -11518,7 +11901,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:1761", + "location": "imgui:1825", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -11540,8 +11923,8 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1737", - "ov_cimguiname": "ImVector_frontNil", + "location": "imgui:1801", + "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", "signature": "()", @@ -11561,8 +11944,8 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1738", - "ov_cimguiname": "ImVector_front_const", + "location": "imgui:1802", + "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", "signature": "()const", @@ -11588,7 +11971,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:1762", + "location": "imgui:1826", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -11618,7 +12001,7 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:1756", + "location": "imgui:1820", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -11640,7 +12023,7 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", - "location": "imgui:1727", + "location": "imgui:1792", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -11662,7 +12045,7 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:1751", + "location": "imgui:1815", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -11688,7 +12071,7 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:1750", + "location": "imgui:1814", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -11714,7 +12097,7 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:1752", + "location": "imgui:1816", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -11740,7 +12123,7 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:1747", + "location": "imgui:1811", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -11766,8 +12149,8 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1744", - "ov_cimguiname": "ImVector_resizeNil", + "location": "imgui:1808", + "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", "stname": "ImVector", @@ -11794,8 +12177,8 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1745", - "ov_cimguiname": "ImVector_resizeT", + "location": "imgui:1809", + "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", "stname": "ImVector", @@ -11820,7 +12203,7 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:1746", + "location": "imgui:1810", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -11842,7 +12225,7 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:1725", + "location": "imgui:1790", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -11864,7 +12247,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:1726", + "location": "imgui:1791", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -11891,7 +12274,7 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:1741", + "location": "imgui:1805", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector*)", @@ -11919,7 +12302,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui:792", + "location": "imgui:842", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -11941,7 +12324,7 @@ "cimguiname": "igActivateItem", "defaults": {}, "funcname": "ActivateItem", - "location": "imgui_internal:2545", + "location": "imgui_internal:2709", "namespace": "ImGui", "ov_cimguiname": "igActivateItem", "ret": "void", @@ -11967,7 +12350,7 @@ "cimguiname": "igAddContextHook", "defaults": {}, "funcname": "AddContextHook", - "location": "imgui_internal:2457", + "location": "imgui_internal:2594", "namespace": "ImGui", "ov_cimguiname": "igAddContextHook", "ret": "ImGuiID", @@ -11984,7 +12367,7 @@ "cimguiname": "igAlignTextToFramePadding", "defaults": {}, "funcname": "AlignTextToFramePadding", - "location": "imgui:436", + "location": "imgui:467", "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -12010,7 +12393,7 @@ "cimguiname": "igArrowButton", "defaults": {}, "funcname": "ArrowButton", - "location": "imgui:479", + "location": "imgui:514", "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -12046,7 +12429,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "imgui_internal:2733", + "location": "imgui_internal:2900", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -12079,7 +12462,7 @@ "p_open": "NULL" }, "funcname": "Begin", - "location": "imgui:311", + "location": "imgui:341", "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -12117,9 +12500,9 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", - "location": "imgui:322", + "location": "imgui:352", "namespace": "ImGui", - "ov_cimguiname": "igBeginChildStr", + "ov_cimguiname": "igBeginChild_Str", "ret": "bool", "signature": "(const char*,const ImVec2,bool,ImGuiWindowFlags)", "stname": "" @@ -12153,9 +12536,9 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", - "location": "imgui:323", + "location": "imgui:353", "namespace": "ImGui", - "ov_cimguiname": "igBeginChildID", + "ov_cimguiname": "igBeginChild_ID", "ret": "bool", "signature": "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)", "stname": "" @@ -12191,7 +12574,7 @@ "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", - "location": "imgui_internal:2525", + "location": "imgui_internal:2675", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", @@ -12223,7 +12606,7 @@ "flags": "0" }, "funcname": "BeginChildFrame", - "location": "imgui:847", + "location": "imgui:904", "namespace": "ImGui", "ov_cimguiname": "igBeginChildFrame", "ret": "bool", @@ -12255,7 +12638,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "imgui_internal:2623", + "location": "imgui_internal:2789", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -12287,7 +12670,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui:493", + "location": "imgui:528", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -12295,6 +12678,77 @@ "stname": "" } ], + "igBeginComboPopup": [ + { + "args": "(ImGuiID popup_id,const ImRect bb,ImGuiComboFlags flags)", + "argsT": [ + { + "name": "popup_id", + "type": "ImGuiID" + }, + { + "name": "bb", + "type": "const ImRect" + }, + { + "name": "flags", + "type": "ImGuiComboFlags" + } + ], + "argsoriginal": "(ImGuiID popup_id,const ImRect& bb,ImGuiComboFlags flags)", + "call_args": "(popup_id,bb,flags)", + "cimguiname": "igBeginComboPopup", + "defaults": {}, + "funcname": "BeginComboPopup", + "location": "imgui_internal:2693", + "namespace": "ImGui", + "ov_cimguiname": "igBeginComboPopup", + "ret": "bool", + "signature": "(ImGuiID,const ImRect,ImGuiComboFlags)", + "stname": "" + } + ], + "igBeginComboPreview": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igBeginComboPreview", + "defaults": {}, + "funcname": "BeginComboPreview", + "location": "imgui_internal:2694", + "namespace": "ImGui", + "ov_cimguiname": "igBeginComboPreview", + "ret": "bool", + "signature": "()", + "stname": "" + } + ], + "igBeginDisabled": [ + { + "args": "(bool disabled)", + "argsT": [ + { + "name": "disabled", + "type": "bool" + } + ], + "argsoriginal": "(bool disabled=true)", + "call_args": "(disabled)", + "cimguiname": "igBeginDisabled", + "defaults": { + "disabled": "true" + }, + "funcname": "BeginDisabled", + "location": "imgui:850", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDisabled", + "ret": "void", + "signature": "(bool)", + "stname": "" + } + ], "igBeginDockableDragDropSource": [ { "args": "(ImGuiWindow* window)", @@ -12309,7 +12763,7 @@ "cimguiname": "igBeginDockableDragDropSource", "defaults": {}, "funcname": "BeginDockableDragDropSource", - "location": "imgui_internal:2588", + "location": "imgui_internal:2754", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropSource", "ret": "void", @@ -12331,7 +12785,7 @@ "cimguiname": "igBeginDockableDragDropTarget", "defaults": {}, "funcname": "BeginDockableDragDropTarget", - "location": "imgui_internal:2589", + "location": "imgui_internal:2755", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropTarget", "ret": "void", @@ -12357,7 +12811,7 @@ "cimguiname": "igBeginDocked", "defaults": {}, "funcname": "BeginDocked", - "location": "imgui_internal:2587", + "location": "imgui_internal:2753", "namespace": "ImGui", "ov_cimguiname": "igBeginDocked", "ret": "void", @@ -12381,7 +12835,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui:788", + "location": "imgui:838", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -12398,7 +12852,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui:791", + "location": "imgui:841", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -12424,7 +12878,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", - "location": "imgui_internal:2617", + "location": "imgui_internal:2783", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -12441,7 +12895,7 @@ "cimguiname": "igBeginGroup", "defaults": {}, "funcname": "BeginGroup", - "location": "imgui:425", + "location": "imgui:456", "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -12469,7 +12923,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginListBox", - "location": "imgui:604", + "location": "imgui:639", "namespace": "ImGui", "ov_cimguiname": "igBeginListBox", "ret": "bool", @@ -12486,7 +12940,7 @@ "cimguiname": "igBeginMainMenuBar", "defaults": {}, "funcname": "BeginMainMenuBar", - "location": "imgui:629", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -12514,7 +12968,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui:631", + "location": "imgui:667", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -12531,7 +12985,7 @@ "cimguiname": "igBeginMenuBar", "defaults": {}, "funcname": "BeginMenuBar", - "location": "imgui:627", + "location": "imgui:663", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -12539,6 +12993,38 @@ "stname": "" } ], + "igBeginMenuEx": [ + { + "args": "(const char* label,const char* icon,bool enabled)", + "argsT": [ + { + "name": "label", + "type": "const char*" + }, + { + "name": "icon", + "type": "const char*" + }, + { + "name": "enabled", + "type": "bool" + } + ], + "argsoriginal": "(const char* label,const char* icon,bool enabled=true)", + "call_args": "(label,icon,enabled)", + "cimguiname": "igBeginMenuEx", + "defaults": { + "enabled": "true" + }, + "funcname": "BeginMenuEx", + "location": "imgui_internal:2689", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMenuEx", + "ret": "bool", + "signature": "(const char*,const char*,bool)", + "stname": "" + } + ], "igBeginPopup": [ { "args": "(const char* str_id,ImGuiWindowFlags flags)", @@ -12559,7 +13045,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui:654", + "location": "imgui:691", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -12588,7 +13074,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui:671", + "location": "imgui:712", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -12617,7 +13103,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui:673", + "location": "imgui:714", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -12646,7 +13132,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui:672", + "location": "imgui:713", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -12672,7 +13158,7 @@ "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", - "location": "imgui_internal:2530", + "location": "imgui_internal:2680", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -12705,7 +13191,7 @@ "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui:655", + "location": "imgui:692", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -12733,7 +13219,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui:751", + "location": "imgui:797", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -12767,7 +13253,7 @@ "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", - "location": "imgui_internal:2685", + "location": "imgui_internal:2851", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", @@ -12800,7 +13286,7 @@ "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui:753", + "location": "imgui:799", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -12842,7 +13328,7 @@ "outer_size": "ImVec2(0.0f,0.0f)" }, "funcname": "BeginTable", - "location": "imgui:705", + "location": "imgui:747", "namespace": "ImGui", "ov_cimguiname": "igBeginTable", "ret": "bool", @@ -12888,7 +13374,7 @@ "outer_size": "ImVec2(0,0)" }, "funcname": "BeginTableEx", - "location": "imgui_internal:2646", + "location": "imgui_internal:2811", "namespace": "ImGui", "ov_cimguiname": "igBeginTableEx", "ret": "bool", @@ -12905,7 +13391,7 @@ "cimguiname": "igBeginTooltip", "defaults": {}, "funcname": "BeginTooltip", - "location": "imgui:638", + "location": "imgui:674", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", "ret": "void", @@ -12931,7 +13417,7 @@ "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", - "location": "imgui_internal:2531", + "location": "imgui_internal:2681", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", "ret": "void", @@ -12939,21 +13425,59 @@ "stname": "" } ], - "igBringWindowToDisplayBack": [ + "igBeginViewportSideBar": [ { - "args": "(ImGuiWindow* window)", + "args": "(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags)", "argsT": [ { - "name": "window", - "type": "ImGuiWindow*" + "name": "name", + "type": "const char*" + }, + { + "name": "viewport", + "type": "ImGuiViewport*" + }, + { + "name": "dir", + "type": "ImGuiDir" + }, + { + "name": "size", + "type": "float" + }, + { + "name": "window_flags", + "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(ImGuiWindow* window)", + "argsoriginal": "(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags)", + "call_args": "(name,viewport,dir,size,window_flags)", + "cimguiname": "igBeginViewportSideBar", + "defaults": {}, + "funcname": "BeginViewportSideBar", + "location": "imgui_internal:2686", + "namespace": "ImGui", + "ov_cimguiname": "igBeginViewportSideBar", + "ret": "bool", + "signature": "(const char*,ImGuiViewport*,ImGuiDir,float,ImGuiWindowFlags)", + "stname": "" + } + ], + "igBringWindowToDisplayBack": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", - "location": "imgui_internal:2438", + "location": "imgui_internal:2575", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -12975,7 +13499,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", - "location": "imgui_internal:2437", + "location": "imgui_internal:2574", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -12997,7 +13521,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", - "location": "imgui_internal:2436", + "location": "imgui_internal:2573", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -13014,7 +13538,7 @@ "cimguiname": "igBullet", "defaults": {}, "funcname": "Bullet", - "location": "imgui:488", + "location": "imgui:523", "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -13041,7 +13565,7 @@ "defaults": {}, "funcname": "BulletText", "isvararg": "...)", - "location": "imgui:470", + "location": "imgui:505", "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -13067,7 +13591,7 @@ "cimguiname": "igBulletTextV", "defaults": {}, "funcname": "BulletTextV", - "location": "imgui:471", + "location": "imgui:506", "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -13095,7 +13619,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", - "location": "imgui:476", + "location": "imgui:511", "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -13135,7 +13659,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "imgui_internal:2745", + "location": "imgui_internal:2913", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -13168,7 +13692,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "imgui_internal:2730", + "location": "imgui_internal:2897", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -13202,7 +13726,7 @@ "cimguiname": "igCalcItemSize", "defaults": {}, "funcname": "CalcItemSize", - "location": "imgui_internal:2509", + "location": "imgui_internal:2646", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -13220,7 +13744,7 @@ "cimguiname": "igCalcItemWidth", "defaults": {}, "funcname": "CalcItemWidth", - "location": "imgui:398", + "location": "imgui:428", "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -13254,7 +13778,7 @@ "cimguiname": "igCalcListClipping", "defaults": {}, "funcname": "CalcListClipping", - "location": "imgui:846", + "location": "imgui:903", "namespace": "ImGui", "ov_cimguiname": "igCalcListClipping", "ret": "void", @@ -13296,7 +13820,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:851", + "location": "imgui:908", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -13331,7 +13855,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", - "location": "imgui_internal:2544", + "location": "imgui_internal:2708", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -13357,7 +13881,7 @@ "cimguiname": "igCalcWindowNextAutoFitSize", "defaults": {}, "funcname": "CalcWindowNextAutoFitSize", - "location": "imgui_internal:2423", + "location": "imgui_internal:2561", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowNextAutoFitSize", @@ -13384,7 +13908,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", - "location": "imgui_internal:2510", + "location": "imgui_internal:2647", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -13410,7 +13934,7 @@ "cimguiname": "igCallContextHooks", "defaults": {}, "funcname": "CallContextHooks", - "location": "imgui_internal:2459", + "location": "imgui_internal:2596", "namespace": "ImGui", "ov_cimguiname": "igCallContextHooks", "ret": "void", @@ -13434,7 +13958,7 @@ "want_capture_keyboard_value": "true" }, "funcname": "CaptureKeyboardFromApp", - "location": "imgui:867", + "location": "imgui:924", "namespace": "ImGui", "ov_cimguiname": "igCaptureKeyboardFromApp", "ret": "void", @@ -13458,7 +13982,7 @@ "want_capture_mouse_value": "true" }, "funcname": "CaptureMouseFromApp", - "location": "imgui:887", + "location": "imgui:944", "namespace": "ImGui", "ov_cimguiname": "igCaptureMouseFromApp", "ret": "void", @@ -13484,7 +14008,7 @@ "cimguiname": "igCheckbox", "defaults": {}, "funcname": "Checkbox", - "location": "imgui:482", + "location": "imgui:517", "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -13514,9 +14038,9 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:483", + "location": "imgui:518", "namespace": "ImGui", - "ov_cimguiname": "igCheckboxFlagsIntPtr", + "ov_cimguiname": "igCheckboxFlags_IntPtr", "ret": "bool", "signature": "(const char*,int*,int)", "stname": "" @@ -13542,9 +14066,9 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:484", + "location": "imgui:519", "namespace": "ImGui", - "ov_cimguiname": "igCheckboxFlagsUintPtr", + "ov_cimguiname": "igCheckboxFlags_UintPtr", "ret": "bool", "signature": "(const char*,unsigned int*,unsigned int)", "stname": "" @@ -13570,9 +14094,9 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:2741", + "location": "imgui_internal:2909", "namespace": "ImGui", - "ov_cimguiname": "igCheckboxFlagsS64Ptr", + "ov_cimguiname": "igCheckboxFlags_S64Ptr", "ret": "bool", "signature": "(const char*,ImS64*,ImS64)", "stname": "" @@ -13598,9 +14122,9 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:2742", + "location": "imgui_internal:2910", "namespace": "ImGui", - "ov_cimguiname": "igCheckboxFlagsU64Ptr", + "ov_cimguiname": "igCheckboxFlags_U64Ptr", "ret": "bool", "signature": "(const char*,ImU64*,ImU64)", "stname": "" @@ -13615,7 +14139,7 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", - "location": "imgui_internal:2492", + "location": "imgui_internal:2630", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -13632,7 +14156,7 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", - "location": "imgui_internal:2618", + "location": "imgui_internal:2784", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -13649,7 +14173,7 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", - "location": "imgui_internal:2470", + "location": "imgui_internal:2608", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -13675,7 +14199,7 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", - "location": "imgui_internal:2731", + "location": "imgui_internal:2898", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -13692,7 +14216,7 @@ "cimguiname": "igCloseCurrentPopup", "defaults": {}, "funcname": "CloseCurrentPopup", - "location": "imgui:665", + "location": "imgui:705", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -13718,7 +14242,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", - "location": "imgui_internal:2527", + "location": "imgui_internal:2677", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -13744,7 +14268,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", - "location": "imgui_internal:2528", + "location": "imgui_internal:2678", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -13774,7 +14298,7 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", - "location": "imgui_internal:2732", + "location": "imgui_internal:2899", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -13802,9 +14326,9 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:588", + "location": "imgui:623", "namespace": "ImGui", - "ov_cimguiname": "igCollapsingHeaderTreeNodeFlags", + "ov_cimguiname": "igCollapsingHeader_TreeNodeFlags", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags)", "stname": "" @@ -13832,9 +14356,9 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:589", + "location": "imgui:624", "namespace": "ImGui", - "ov_cimguiname": "igCollapsingHeaderBoolPtr", + "ov_cimguiname": "igCollapsingHeader_BoolPtr", "ret": "bool", "signature": "(const char*,bool*,ImGuiTreeNodeFlags)", "stname": "" @@ -13869,7 +14393,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui:569", + "location": "imgui:604", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -13891,7 +14415,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:855", + "location": "imgui:912", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -13936,7 +14460,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:857", + "location": "imgui:914", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -13981,7 +14505,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:856", + "location": "imgui:913", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -14007,7 +14531,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:854", + "location": "imgui:911", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -14040,7 +14564,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui:565", + "location": "imgui:600", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -14072,7 +14596,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui:566", + "location": "imgui:601", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -14098,7 +14622,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", - "location": "imgui_internal:2780", + "location": "imgui_internal:2948", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -14130,7 +14654,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui:567", + "location": "imgui:602", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -14167,7 +14691,7 @@ "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui:568", + "location": "imgui:603", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -14193,7 +14717,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", - "location": "imgui_internal:2781", + "location": "imgui_internal:2949", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -14223,7 +14747,7 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", - "location": "imgui_internal:2779", + "location": "imgui_internal:2947", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -14257,7 +14781,7 @@ "id": "NULL" }, "funcname": "Columns", - "location": "imgui:740", + "location": "imgui:786", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -14297,9 +14821,9 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:495", + "location": "imgui:530", "namespace": "ImGui", - "ov_cimguiname": "igComboStr_arr", + "ov_cimguiname": "igCombo_Str_arr", "ret": "bool", "signature": "(const char*,int*,const char* const[],int,int)", "stname": "" @@ -14331,9 +14855,9 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:496", + "location": "imgui:531", "namespace": "ImGui", - "ov_cimguiname": "igComboStr", + "ov_cimguiname": "igCombo_Str", "ret": "bool", "signature": "(const char*,int*,const char*,int)", "stname": "" @@ -14375,9 +14899,9 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:497", + "location": "imgui:532", "namespace": "ImGui", - "ov_cimguiname": "igComboFnBoolPtr", + "ov_cimguiname": "igCombo_FnBoolPtr", "ret": "bool", "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", "stname": "" @@ -14399,7 +14923,7 @@ "shared_font_atlas": "NULL" }, "funcname": "CreateContext", - "location": "imgui:271", + "location": "imgui:301", "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -14421,7 +14945,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", - "location": "imgui_internal:2471", + "location": "imgui_internal:2609", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -14459,7 +14983,7 @@ "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", - "location": "imgui_internal:2766", + "location": "imgui_internal:2934", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -14497,7 +15021,7 @@ "cimguiname": "igDataTypeApplyOpFromText", "defaults": {}, "funcname": "DataTypeApplyOpFromText", - "location": "imgui_internal:2767", + "location": "imgui_internal:2935", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOpFromText", "ret": "bool", @@ -14531,7 +15055,7 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", - "location": "imgui_internal:2769", + "location": "imgui_internal:2937", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -14561,7 +15085,7 @@ "cimguiname": "igDataTypeCompare", "defaults": {}, "funcname": "DataTypeCompare", - "location": "imgui_internal:2768", + "location": "imgui_internal:2936", "namespace": "ImGui", "ov_cimguiname": "igDataTypeCompare", "ret": "int", @@ -14599,7 +15123,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", - "location": "imgui_internal:2765", + "location": "imgui_internal:2933", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -14621,7 +15145,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", - "location": "imgui_internal:2764", + "location": "imgui_internal:2932", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -14667,7 +15191,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:903", + "location": "imgui:962", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -14691,7 +15215,7 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "imgui_internal:2797", + "location": "imgui_internal:2965", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -14713,7 +15237,7 @@ "cimguiname": "igDebugNodeColumns", "defaults": {}, "funcname": "DebugNodeColumns", - "location": "imgui_internal:2800", + "location": "imgui_internal:2969", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeColumns", "ret": "void", @@ -14739,7 +15263,7 @@ "cimguiname": "igDebugNodeDockNode", "defaults": {}, "funcname": "DebugNodeDockNode", - "location": "imgui_internal:2801", + "location": "imgui_internal:2970", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDockNode", "ret": "void", @@ -14777,7 +15301,7 @@ "cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "defaults": {}, "funcname": "DebugNodeDrawCmdShowMeshAndBoundingBox", - "location": "imgui_internal:2803", + "location": "imgui_internal:2972", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "ret": "void", @@ -14811,7 +15335,7 @@ "cimguiname": "igDebugNodeDrawList", "defaults": {}, "funcname": "DebugNodeDrawList", - "location": "imgui_internal:2802", + "location": "imgui_internal:2971", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawList", "ret": "void", @@ -14819,6 +15343,28 @@ "stname": "" } ], + "igDebugNodeFont": [ + { + "args": "(ImFont* font)", + "argsT": [ + { + "name": "font", + "type": "ImFont*" + } + ], + "argsoriginal": "(ImFont* font)", + "call_args": "(font)", + "cimguiname": "igDebugNodeFont", + "defaults": {}, + "funcname": "DebugNodeFont", + "location": "imgui_internal:2973", + "namespace": "ImGui", + "ov_cimguiname": "igDebugNodeFont", + "ret": "void", + "signature": "(ImFont*)", + "stname": "" + } + ], "igDebugNodeStorage": [ { "args": "(ImGuiStorage* storage,const char* label)", @@ -14837,7 +15383,7 @@ "cimguiname": "igDebugNodeStorage", "defaults": {}, "funcname": "DebugNodeStorage", - "location": "imgui_internal:2804", + "location": "imgui_internal:2974", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeStorage", "ret": "void", @@ -14863,7 +15409,7 @@ "cimguiname": "igDebugNodeTabBar", "defaults": {}, "funcname": "DebugNodeTabBar", - "location": "imgui_internal:2805", + "location": "imgui_internal:2975", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTabBar", "ret": "void", @@ -14885,7 +15431,7 @@ "cimguiname": "igDebugNodeTable", "defaults": {}, "funcname": "DebugNodeTable", - "location": "imgui_internal:2806", + "location": "imgui_internal:2976", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTable", "ret": "void", @@ -14907,7 +15453,7 @@ "cimguiname": "igDebugNodeTableSettings", "defaults": {}, "funcname": "DebugNodeTableSettings", - "location": "imgui_internal:2807", + "location": "imgui_internal:2977", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTableSettings", "ret": "void", @@ -14929,7 +15475,7 @@ "cimguiname": "igDebugNodeViewport", "defaults": {}, "funcname": "DebugNodeViewport", - "location": "imgui_internal:2811", + "location": "imgui_internal:2981", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeViewport", "ret": "void", @@ -14955,7 +15501,7 @@ "cimguiname": "igDebugNodeWindow", "defaults": {}, "funcname": "DebugNodeWindow", - "location": "imgui_internal:2808", + "location": "imgui_internal:2978", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindow", "ret": "void", @@ -14977,7 +15523,7 @@ "cimguiname": "igDebugNodeWindowSettings", "defaults": {}, "funcname": "DebugNodeWindowSettings", - "location": "imgui_internal:2809", + "location": "imgui_internal:2979", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowSettings", "ret": "void", @@ -15003,7 +15549,7 @@ "cimguiname": "igDebugNodeWindowsList", "defaults": {}, "funcname": "DebugNodeWindowsList", - "location": "imgui_internal:2810", + "location": "imgui_internal:2980", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsList", "ret": "void", @@ -15033,7 +15579,7 @@ "cimguiname": "igDebugRenderViewportThumbnail", "defaults": {}, "funcname": "DebugRenderViewportThumbnail", - "location": "imgui_internal:2812", + "location": "imgui_internal:2982", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderViewportThumbnail", "ret": "void", @@ -15050,7 +15596,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", - "location": "imgui_internal:2798", + "location": "imgui_internal:2966", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -15074,7 +15620,7 @@ "ctx": "NULL" }, "funcname": "DestroyContext", - "location": "imgui:272", + "location": "imgui:302", "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -15096,7 +15642,7 @@ "cimguiname": "igDestroyPlatformWindow", "defaults": {}, "funcname": "DestroyPlatformWindow", - "location": "imgui_internal:2464", + "location": "imgui_internal:2601", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindow", "ret": "void", @@ -15113,7 +15659,7 @@ "cimguiname": "igDestroyPlatformWindows", "defaults": {}, "funcname": "DestroyPlatformWindows", - "location": "imgui:920", + "location": "imgui:979", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindows", "ret": "void", @@ -15142,7 +15688,7 @@ "node_id": "0" }, "funcname": "DockBuilderAddNode", - "location": "imgui_internal:2604", + "location": "imgui_internal:2770", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderAddNode", "ret": "ImGuiID", @@ -15172,7 +15718,7 @@ "cimguiname": "igDockBuilderCopyDockSpace", "defaults": {}, "funcname": "DockBuilderCopyDockSpace", - "location": "imgui_internal:2611", + "location": "imgui_internal:2777", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyDockSpace", "ret": "void", @@ -15202,7 +15748,7 @@ "cimguiname": "igDockBuilderCopyNode", "defaults": {}, "funcname": "DockBuilderCopyNode", - "location": "imgui_internal:2612", + "location": "imgui_internal:2778", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyNode", "ret": "void", @@ -15228,7 +15774,7 @@ "cimguiname": "igDockBuilderCopyWindowSettings", "defaults": {}, "funcname": "DockBuilderCopyWindowSettings", - "location": "imgui_internal:2613", + "location": "imgui_internal:2779", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyWindowSettings", "ret": "void", @@ -15254,7 +15800,7 @@ "cimguiname": "igDockBuilderDockWindow", "defaults": {}, "funcname": "DockBuilderDockWindow", - "location": "imgui_internal:2601", + "location": "imgui_internal:2767", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderDockWindow", "ret": "void", @@ -15276,7 +15822,7 @@ "cimguiname": "igDockBuilderFinish", "defaults": {}, "funcname": "DockBuilderFinish", - "location": "imgui_internal:2614", + "location": "imgui_internal:2780", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderFinish", "ret": "void", @@ -15298,7 +15844,7 @@ "cimguiname": "igDockBuilderGetCentralNode", "defaults": {}, "funcname": "DockBuilderGetCentralNode", - "location": "imgui_internal:2603", + "location": "imgui_internal:2769", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetCentralNode", "ret": "ImGuiDockNode*", @@ -15320,7 +15866,7 @@ "cimguiname": "igDockBuilderGetNode", "defaults": {}, "funcname": "DockBuilderGetNode", - "location": "imgui_internal:2602", + "location": "imgui_internal:2768", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetNode", "ret": "ImGuiDockNode*", @@ -15342,7 +15888,7 @@ "cimguiname": "igDockBuilderRemoveNode", "defaults": {}, "funcname": "DockBuilderRemoveNode", - "location": "imgui_internal:2605", + "location": "imgui_internal:2771", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNode", "ret": "void", @@ -15364,7 +15910,7 @@ "cimguiname": "igDockBuilderRemoveNodeChildNodes", "defaults": {}, "funcname": "DockBuilderRemoveNodeChildNodes", - "location": "imgui_internal:2607", + "location": "imgui_internal:2773", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeChildNodes", "ret": "void", @@ -15392,7 +15938,7 @@ "clear_settings_refs": "true" }, "funcname": "DockBuilderRemoveNodeDockedWindows", - "location": "imgui_internal:2606", + "location": "imgui_internal:2772", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeDockedWindows", "ret": "void", @@ -15418,7 +15964,7 @@ "cimguiname": "igDockBuilderSetNodePos", "defaults": {}, "funcname": "DockBuilderSetNodePos", - "location": "imgui_internal:2608", + "location": "imgui_internal:2774", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodePos", "ret": "void", @@ -15444,7 +15990,7 @@ "cimguiname": "igDockBuilderSetNodeSize", "defaults": {}, "funcname": "DockBuilderSetNodeSize", - "location": "imgui_internal:2609", + "location": "imgui_internal:2775", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodeSize", "ret": "void", @@ -15482,7 +16028,7 @@ "cimguiname": "igDockBuilderSplitNode", "defaults": {}, "funcname": "DockBuilderSplitNode", - "location": "imgui_internal:2610", + "location": "imgui_internal:2776", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSplitNode", "ret": "ImGuiID", @@ -15524,7 +16070,7 @@ "cimguiname": "igDockContextCalcDropPosForDocking", "defaults": {}, "funcname": "DockContextCalcDropPosForDocking", - "location": "imgui_internal:2580", + "location": "imgui_internal:2745", "namespace": "ImGui", "ov_cimguiname": "igDockContextCalcDropPosForDocking", "ret": "bool", @@ -15554,7 +16100,7 @@ "cimguiname": "igDockContextClearNodes", "defaults": {}, "funcname": "DockContextClearNodes", - "location": "imgui_internal:2572", + "location": "imgui_internal:2737", "namespace": "ImGui", "ov_cimguiname": "igDockContextClearNodes", "ret": "void", @@ -15576,7 +16122,7 @@ "cimguiname": "igDockContextGenNodeID", "defaults": {}, "funcname": "DockContextGenNodeID", - "location": "imgui_internal:2576", + "location": "imgui_internal:2741", "namespace": "ImGui", "ov_cimguiname": "igDockContextGenNodeID", "ret": "ImGuiID", @@ -15598,7 +16144,7 @@ "cimguiname": "igDockContextInitialize", "defaults": {}, "funcname": "DockContextInitialize", - "location": "imgui_internal:2570", + "location": "imgui_internal:2735", "namespace": "ImGui", "ov_cimguiname": "igDockContextInitialize", "ret": "void", @@ -15620,7 +16166,7 @@ "cimguiname": "igDockContextNewFrameUpdateDocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateDocking", - "location": "imgui_internal:2575", + "location": "imgui_internal:2740", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateDocking", "ret": "void", @@ -15642,7 +16188,7 @@ "cimguiname": "igDockContextNewFrameUpdateUndocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateUndocking", - "location": "imgui_internal:2574", + "location": "imgui_internal:2739", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateUndocking", "ret": "void", @@ -15688,7 +16234,7 @@ "cimguiname": "igDockContextQueueDock", "defaults": {}, "funcname": "DockContextQueueDock", - "location": "imgui_internal:2577", + "location": "imgui_internal:2742", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueDock", "ret": "void", @@ -15714,7 +16260,7 @@ "cimguiname": "igDockContextQueueUndockNode", "defaults": {}, "funcname": "DockContextQueueUndockNode", - "location": "imgui_internal:2579", + "location": "imgui_internal:2744", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockNode", "ret": "void", @@ -15740,7 +16286,7 @@ "cimguiname": "igDockContextQueueUndockWindow", "defaults": {}, "funcname": "DockContextQueueUndockWindow", - "location": "imgui_internal:2578", + "location": "imgui_internal:2743", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockWindow", "ret": "void", @@ -15762,7 +16308,7 @@ "cimguiname": "igDockContextRebuildNodes", "defaults": {}, "funcname": "DockContextRebuildNodes", - "location": "imgui_internal:2573", + "location": "imgui_internal:2738", "namespace": "ImGui", "ov_cimguiname": "igDockContextRebuildNodes", "ret": "void", @@ -15784,7 +16330,7 @@ "cimguiname": "igDockContextShutdown", "defaults": {}, "funcname": "DockContextShutdown", - "location": "imgui_internal:2571", + "location": "imgui_internal:2736", "namespace": "ImGui", "ov_cimguiname": "igDockContextShutdown", "ret": "void", @@ -15806,7 +16352,7 @@ "cimguiname": "igDockNodeBeginAmendTabBar", "defaults": {}, "funcname": "DockNodeBeginAmendTabBar", - "location": "imgui_internal:2581", + "location": "imgui_internal:2746", "namespace": "ImGui", "ov_cimguiname": "igDockNodeBeginAmendTabBar", "ret": "bool", @@ -15823,7 +16369,7 @@ "cimguiname": "igDockNodeEndAmendTabBar", "defaults": {}, "funcname": "DockNodeEndAmendTabBar", - "location": "imgui_internal:2582", + "location": "imgui_internal:2747", "namespace": "ImGui", "ov_cimguiname": "igDockNodeEndAmendTabBar", "ret": "void", @@ -15845,7 +16391,7 @@ "cimguiname": "igDockNodeGetDepth", "defaults": {}, "funcname": "DockNodeGetDepth", - "location": "imgui_internal:2584", + "location": "imgui_internal:2749", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetDepth", "ret": "int", @@ -15867,7 +16413,7 @@ "cimguiname": "igDockNodeGetRootNode", "defaults": {}, "funcname": "DockNodeGetRootNode", - "location": "imgui_internal:2583", + "location": "imgui_internal:2748", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetRootNode", "ret": "ImGuiDockNode*", @@ -15875,6 +16421,28 @@ "stname": "" } ], + "igDockNodeGetWindowMenuButtonId": [ + { + "args": "(const ImGuiDockNode* node)", + "argsT": [ + { + "name": "node", + "type": "const ImGuiDockNode*" + } + ], + "argsoriginal": "(const ImGuiDockNode* node)", + "call_args": "(node)", + "cimguiname": "igDockNodeGetWindowMenuButtonId", + "defaults": {}, + "funcname": "DockNodeGetWindowMenuButtonId", + "location": "imgui_internal:2750", + "namespace": "ImGui", + "ov_cimguiname": "igDockNodeGetWindowMenuButtonId", + "ret": "ImGuiID", + "signature": "(const ImGuiDockNode*)", + "stname": "" + } + ], "igDockSpace": [ { "args": "(ImGuiID id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", @@ -15905,10 +16473,10 @@ "window_class": "NULL" }, "funcname": "DockSpace", - "location": "imgui:766", + "location": "imgui:816", "namespace": "ImGui", "ov_cimguiname": "igDockSpace", - "ret": "void", + "ret": "ImGuiID", "signature": "(ImGuiID,const ImVec2,ImGuiDockNodeFlags,const ImGuiWindowClass*)", "stname": "" } @@ -15939,7 +16507,7 @@ "window_class": "NULL" }, "funcname": "DockSpaceOverViewport", - "location": "imgui:767", + "location": "imgui:817", "namespace": "ImGui", "ov_cimguiname": "igDockSpaceOverViewport", "ret": "ImGuiID", @@ -15989,7 +16557,7 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", - "location": "imgui_internal:2746", + "location": "imgui_internal:2914", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -16041,7 +16609,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui:510", + "location": "imgui:545", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -16093,7 +16661,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui:511", + "location": "imgui:546", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -16145,7 +16713,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui:512", + "location": "imgui:547", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -16197,7 +16765,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui:513", + "location": "imgui:548", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -16258,7 +16826,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui:514", + "location": "imgui:549", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -16310,7 +16878,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui:515", + "location": "imgui:550", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -16362,7 +16930,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui:516", + "location": "imgui:551", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -16414,7 +16982,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui:517", + "location": "imgui:552", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -16466,7 +17034,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui:518", + "location": "imgui:553", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -16527,7 +17095,7 @@ "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui:519", + "location": "imgui:554", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -16572,17 +17140,18 @@ "type": "ImGuiSliderFlags" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* p_data,float v_speed,const void* p_min=((void*)0),const void* p_max=((void*)0),const char* format=((void*)0),ImGuiSliderFlags flags=0)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* p_data,float v_speed=1.0f,const void* p_min=((void*)0),const void* p_max=((void*)0),const char* format=((void*)0),ImGuiSliderFlags flags=0)", "call_args": "(label,data_type,p_data,v_speed,p_min,p_max,format,flags)", "cimguiname": "igDragScalar", "defaults": { "flags": "0", "format": "NULL", "p_max": "NULL", - "p_min": "NULL" + "p_min": "NULL", + "v_speed": "1.0f" }, "funcname": "DragScalar", - "location": "imgui:520", + "location": "imgui:555", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -16631,17 +17200,18 @@ "type": "ImGuiSliderFlags" } ], - "argsoriginal": "(const char* label,ImGuiDataType data_type,void* p_data,int components,float v_speed,const void* p_min=((void*)0),const void* p_max=((void*)0),const char* format=((void*)0),ImGuiSliderFlags flags=0)", + "argsoriginal": "(const char* label,ImGuiDataType data_type,void* p_data,int components,float v_speed=1.0f,const void* p_min=((void*)0),const void* p_max=((void*)0),const char* format=((void*)0),ImGuiSliderFlags flags=0)", "call_args": "(label,data_type,p_data,components,v_speed,p_min,p_max,format,flags)", "cimguiname": "igDragScalarN", "defaults": { "flags": "0", "format": "NULL", "p_max": "NULL", - "p_min": "NULL" + "p_min": "NULL", + "v_speed": "1.0f" }, "funcname": "DragScalarN", - "location": "imgui:521", + "location": "imgui:556", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -16663,7 +17233,7 @@ "cimguiname": "igDummy", "defaults": {}, "funcname": "Dummy", - "location": "imgui:422", + "location": "imgui:453", "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -16680,7 +17250,7 @@ "cimguiname": "igEnd", "defaults": {}, "funcname": "End", - "location": "imgui:312", + "location": "imgui:342", "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -16697,7 +17267,7 @@ "cimguiname": "igEndChild", "defaults": {}, "funcname": "EndChild", - "location": "imgui:324", + "location": "imgui:354", "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -16714,7 +17284,7 @@ "cimguiname": "igEndChildFrame", "defaults": {}, "funcname": "EndChildFrame", - "location": "imgui:848", + "location": "imgui:905", "namespace": "ImGui", "ov_cimguiname": "igEndChildFrame", "ret": "void", @@ -16731,7 +17301,7 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", - "location": "imgui_internal:2624", + "location": "imgui_internal:2790", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -16748,7 +17318,7 @@ "cimguiname": "igEndCombo", "defaults": {}, "funcname": "EndCombo", - "location": "imgui:494", + "location": "imgui:529", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -16756,6 +17326,40 @@ "stname": "" } ], + "igEndComboPreview": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igEndComboPreview", + "defaults": {}, + "funcname": "EndComboPreview", + "location": "imgui_internal:2695", + "namespace": "ImGui", + "ov_cimguiname": "igEndComboPreview", + "ret": "void", + "signature": "()", + "stname": "" + } + ], + "igEndDisabled": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igEndDisabled", + "defaults": {}, + "funcname": "EndDisabled", + "location": "imgui:851", + "namespace": "ImGui", + "ov_cimguiname": "igEndDisabled", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igEndDragDropSource": [ { "args": "()", @@ -16765,7 +17369,7 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui:790", + "location": "imgui:840", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -16782,7 +17386,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui:793", + "location": "imgui:843", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -16799,7 +17403,7 @@ "cimguiname": "igEndFrame", "defaults": {}, "funcname": "EndFrame", - "location": "imgui:280", + "location": "imgui:310", "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -16816,7 +17420,7 @@ "cimguiname": "igEndGroup", "defaults": {}, "funcname": "EndGroup", - "location": "imgui:426", + "location": "imgui:457", "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -16833,7 +17437,7 @@ "cimguiname": "igEndListBox", "defaults": {}, "funcname": "EndListBox", - "location": "imgui:605", + "location": "imgui:640", "namespace": "ImGui", "ov_cimguiname": "igEndListBox", "ret": "void", @@ -16850,7 +17454,7 @@ "cimguiname": "igEndMainMenuBar", "defaults": {}, "funcname": "EndMainMenuBar", - "location": "imgui:630", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -16867,7 +17471,7 @@ "cimguiname": "igEndMenu", "defaults": {}, "funcname": "EndMenu", - "location": "imgui:632", + "location": "imgui:668", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -16884,7 +17488,7 @@ "cimguiname": "igEndMenuBar", "defaults": {}, "funcname": "EndMenuBar", - "location": "imgui:628", + "location": "imgui:664", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -16901,7 +17505,7 @@ "cimguiname": "igEndPopup", "defaults": {}, "funcname": "EndPopup", - "location": "imgui:656", + "location": "imgui:693", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -16918,7 +17522,7 @@ "cimguiname": "igEndTabBar", "defaults": {}, "funcname": "EndTabBar", - "location": "imgui:752", + "location": "imgui:798", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -16935,7 +17539,7 @@ "cimguiname": "igEndTabItem", "defaults": {}, "funcname": "EndTabItem", - "location": "imgui:754", + "location": "imgui:800", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -16952,7 +17556,7 @@ "cimguiname": "igEndTable", "defaults": {}, "funcname": "EndTable", - "location": "imgui:706", + "location": "imgui:748", "namespace": "ImGui", "ov_cimguiname": "igEndTable", "ret": "void", @@ -16969,7 +17573,7 @@ "cimguiname": "igEndTooltip", "defaults": {}, "funcname": "EndTooltip", - "location": "imgui:639", + "location": "imgui:675", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -16997,7 +17601,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndFrameRecover", - "location": "imgui_internal:2796", + "location": "imgui_internal:2964", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndFrameRecover", "ret": "void", @@ -17023,7 +17627,7 @@ "cimguiname": "igFindBestWindowPosForPopup", "defaults": {}, "funcname": "FindBestWindowPosForPopup", - "location": "imgui_internal:2533", + "location": "imgui_internal:2684", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -17070,7 +17674,7 @@ "cimguiname": "igFindBestWindowPosForPopupEx", "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", - "location": "imgui_internal:2534", + "location": "imgui_internal:2685", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -17097,7 +17701,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", - "location": "imgui_internal:2629", + "location": "imgui_internal:2795", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiOldColumns*", @@ -17119,7 +17723,7 @@ "cimguiname": "igFindOrCreateWindowSettings", "defaults": {}, "funcname": "FindOrCreateWindowSettings", - "location": "imgui_internal:2473", + "location": "imgui_internal:2611", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateWindowSettings", "ret": "ImGuiWindowSettings*", @@ -17147,7 +17751,7 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "imgui_internal:2710", + "location": "imgui_internal:2877", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -17169,7 +17773,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", - "location": "imgui_internal:2474", + "location": "imgui_internal:2612", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -17191,7 +17795,7 @@ "cimguiname": "igFindViewportByID", "defaults": {}, "funcname": "FindViewportByID", - "location": "imgui:921", + "location": "imgui:980", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByID", "ret": "ImGuiViewport*", @@ -17213,7 +17817,7 @@ "cimguiname": "igFindViewportByPlatformHandle", "defaults": {}, "funcname": "FindViewportByPlatformHandle", - "location": "imgui:922", + "location": "imgui:981", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByPlatformHandle", "ret": "ImGuiViewport*", @@ -17235,7 +17839,7 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", - "location": "imgui_internal:2420", + "location": "imgui_internal:2558", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -17257,7 +17861,7 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", - "location": "imgui_internal:2421", + "location": "imgui_internal:2559", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -17279,7 +17883,7 @@ "cimguiname": "igFindWindowSettings", "defaults": {}, "funcname": "FindWindowSettings", - "location": "imgui_internal:2472", + "location": "imgui_internal:2610", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettings", "ret": "ImGuiWindowSettings*", @@ -17305,7 +17909,7 @@ "cimguiname": "igFocusTopMostWindowUnderOne", "defaults": {}, "funcname": "FocusTopMostWindowUnderOne", - "location": "imgui_internal:2435", + "location": "imgui_internal:2572", "namespace": "ImGui", "ov_cimguiname": "igFocusTopMostWindowUnderOne", "ret": "void", @@ -17327,7 +17931,7 @@ "cimguiname": "igFocusWindow", "defaults": {}, "funcname": "FocusWindow", - "location": "imgui_internal:2434", + "location": "imgui_internal:2571", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", @@ -17335,57 +17939,9 @@ "stname": "" } ], - "igFocusableItemRegister": [ + "igGcAwakeTransientWindowBuffers": [ { - "args": "(ImGuiWindow* window,ImGuiID id)", - "argsT": [ - { - "name": "window", - "type": "ImGuiWindow*" - }, - { - "name": "id", - "type": "ImGuiID" - } - ], - "argsoriginal": "(ImGuiWindow* window,ImGuiID id)", - "call_args": "(window,id)", - "cimguiname": "igFocusableItemRegister", - "defaults": {}, - "funcname": "FocusableItemRegister", - "location": "imgui_internal:2507", - "namespace": "ImGui", - "ov_cimguiname": "igFocusableItemRegister", - "ret": "bool", - "signature": "(ImGuiWindow*,ImGuiID)", - "stname": "" - } - ], - "igFocusableItemUnregister": [ - { - "args": "(ImGuiWindow* window)", - "argsT": [ - { - "name": "window", - "type": "ImGuiWindow*" - } - ], - "argsoriginal": "(ImGuiWindow* window)", - "call_args": "(window)", - "cimguiname": "igFocusableItemUnregister", - "defaults": {}, - "funcname": "FocusableItemUnregister", - "location": "imgui_internal:2508", - "namespace": "ImGui", - "ov_cimguiname": "igFocusableItemUnregister", - "ret": "void", - "signature": "(ImGuiWindow*)", - "stname": "" - } - ], - "igGcAwakeTransientWindowBuffers": [ - { - "args": "(ImGuiWindow* window)", + "args": "(ImGuiWindow* window)", "argsT": [ { "name": "window", @@ -17397,7 +17953,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", - "location": "imgui_internal:2793", + "location": "imgui_internal:2961", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -17414,7 +17970,7 @@ "cimguiname": "igGcCompactTransientMiscBuffers", "defaults": {}, "funcname": "GcCompactTransientMiscBuffers", - "location": "imgui_internal:2791", + "location": "imgui_internal:2959", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientMiscBuffers", "ret": "void", @@ -17436,7 +17992,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", - "location": "imgui_internal:2792", + "location": "imgui_internal:2960", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -17453,7 +18009,7 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", - "location": "imgui_internal:2487", + "location": "imgui_internal:2626", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -17483,7 +18039,7 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", - "location": "imgui:910", + "location": "imgui:969", "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -17500,9 +18056,9 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui:838", + "location": "imgui:895", "namespace": "ImGui", - "ov_cimguiname": "igGetBackgroundDrawListNil", + "ov_cimguiname": "igGetBackgroundDrawList_Nil", "ret": "ImDrawList*", "signature": "()", "stname": "" @@ -17520,9 +18076,9 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui:840", + "location": "imgui:897", "namespace": "ImGui", - "ov_cimguiname": "igGetBackgroundDrawListViewportPtr", + "ov_cimguiname": "igGetBackgroundDrawList_ViewportPtr", "ret": "ImDrawList*", "signature": "(ImGuiViewport*)", "stname": "" @@ -17537,7 +18093,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:891", + "location": "imgui:948", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -17565,9 +18121,9 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui:406", + "location": "imgui:437", "namespace": "ImGui", - "ov_cimguiname": "igGetColorU32Col", + "ov_cimguiname": "igGetColorU32_Col", "ret": "ImU32", "signature": "(ImGuiCol,float)", "stname": "" @@ -17585,9 +18141,9 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:407", + "location": "imgui:438", "namespace": "ImGui", - "ov_cimguiname": "igGetColorU32Vec4", + "ov_cimguiname": "igGetColorU32_Vec4", "ret": "ImU32", "signature": "(const ImVec4)", "stname": "" @@ -17605,9 +18161,9 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:408", + "location": "imgui:439", "namespace": "ImGui", - "ov_cimguiname": "igGetColorU32U32", + "ov_cimguiname": "igGetColorU32_U32", "ret": "ImU32", "signature": "(ImU32)", "stname": "" @@ -17622,7 +18178,7 @@ "cimguiname": "igGetColumnIndex", "defaults": {}, "funcname": "GetColumnIndex", - "location": "imgui:742", + "location": "imgui:788", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -17648,7 +18204,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", - "location": "imgui_internal:2631", + "location": "imgui_internal:2797", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -17672,7 +18228,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui:745", + "location": "imgui:791", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -17698,7 +18254,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", - "location": "imgui_internal:2630", + "location": "imgui_internal:2796", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -17722,7 +18278,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui:743", + "location": "imgui:789", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -17739,7 +18295,7 @@ "cimguiname": "igGetColumnsCount", "defaults": {}, "funcname": "GetColumnsCount", - "location": "imgui:747", + "location": "imgui:793", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -17765,7 +18321,7 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", - "location": "imgui_internal:2628", + "location": "imgui_internal:2794", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -17787,7 +18343,7 @@ "cimguiname": "igGetContentRegionAvail", "defaults": {}, "funcname": "GetContentRegionAvail", - "location": "imgui:362", + "location": "imgui:393", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -17810,7 +18366,7 @@ "cimguiname": "igGetContentRegionMax", "defaults": {}, "funcname": "GetContentRegionMax", - "location": "imgui:363", + "location": "imgui:394", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMax", @@ -17833,7 +18389,7 @@ "cimguiname": "igGetContentRegionMaxAbs", "defaults": {}, "funcname": "GetContentRegionMaxAbs", - "location": "imgui_internal:2515", + "location": "imgui_internal:2650", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMaxAbs", @@ -17851,7 +18407,7 @@ "cimguiname": "igGetCurrentContext", "defaults": {}, "funcname": "GetCurrentContext", - "location": "imgui:273", + "location": "imgui:303", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -17868,7 +18424,7 @@ "cimguiname": "igGetCurrentTable", "defaults": {}, "funcname": "GetCurrentTable", - "location": "imgui_internal:2644", + "location": "imgui_internal:2809", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTable", "ret": "ImGuiTable*", @@ -17885,7 +18441,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", - "location": "imgui_internal:2419", + "location": "imgui_internal:2557", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -17902,7 +18458,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", - "location": "imgui_internal:2418", + "location": "imgui_internal:2556", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -17924,7 +18480,7 @@ "cimguiname": "igGetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui:427", + "location": "imgui:458", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -17942,7 +18498,7 @@ "cimguiname": "igGetCursorPosX", "defaults": {}, "funcname": "GetCursorPosX", - "location": "imgui:428", + "location": "imgui:459", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -17959,7 +18515,7 @@ "cimguiname": "igGetCursorPosY", "defaults": {}, "funcname": "GetCursorPosY", - "location": "imgui:429", + "location": "imgui:460", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -17981,7 +18537,7 @@ "cimguiname": "igGetCursorScreenPos", "defaults": {}, "funcname": "GetCursorScreenPos", - "location": "imgui:434", + "location": "imgui:465", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -18004,7 +18560,7 @@ "cimguiname": "igGetCursorStartPos", "defaults": {}, "funcname": "GetCursorStartPos", - "location": "imgui:433", + "location": "imgui:464", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -18022,7 +18578,7 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", - "location": "imgui_internal:2442", + "location": "imgui_internal:2579", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -18039,7 +18595,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui:794", + "location": "imgui:844", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -18056,7 +18612,7 @@ "cimguiname": "igGetDrawData", "defaults": {}, "funcname": "GetDrawData", - "location": "imgui:282", + "location": "imgui:312", "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -18073,7 +18629,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui:842", + "location": "imgui:899", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -18090,7 +18646,7 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", - "location": "imgui_internal:2488", + "location": "imgui_internal:2627", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -18107,7 +18663,7 @@ "cimguiname": "igGetFocusScope", "defaults": {}, "funcname": "GetFocusScope", - "location": "imgui_internal:2554", + "location": "imgui_internal:2718", "namespace": "ImGui", "ov_cimguiname": "igGetFocusScope", "ret": "ImGuiID", @@ -18124,7 +18680,7 @@ "cimguiname": "igGetFocusedFocusScope", "defaults": {}, "funcname": "GetFocusedFocusScope", - "location": "imgui_internal:2553", + "location": "imgui_internal:2717", "namespace": "ImGui", "ov_cimguiname": "igGetFocusedFocusScope", "ret": "ImGuiID", @@ -18141,7 +18697,7 @@ "cimguiname": "igGetFont", "defaults": {}, "funcname": "GetFont", - "location": "imgui:403", + "location": "imgui:434", "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -18158,7 +18714,7 @@ "cimguiname": "igGetFontSize", "defaults": {}, "funcname": "GetFontSize", - "location": "imgui:404", + "location": "imgui:435", "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -18180,7 +18736,7 @@ "cimguiname": "igGetFontTexUvWhitePixel", "defaults": {}, "funcname": "GetFontTexUvWhitePixel", - "location": "imgui:405", + "location": "imgui:436", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -18198,9 +18754,9 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui:839", + "location": "imgui:896", "namespace": "ImGui", - "ov_cimguiname": "igGetForegroundDrawListNil", + "ov_cimguiname": "igGetForegroundDrawList_Nil", "ret": "ImDrawList*", "signature": "()", "stname": "" @@ -18218,9 +18774,9 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui:841", + "location": "imgui:898", "namespace": "ImGui", - "ov_cimguiname": "igGetForegroundDrawListViewportPtr", + "ov_cimguiname": "igGetForegroundDrawList_ViewportPtr", "ret": "ImDrawList*", "signature": "(ImGuiViewport*)", "stname": "" @@ -18238,9 +18794,9 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:2443", + "location": "imgui_internal:2580", "namespace": "ImGui", - "ov_cimguiname": "igGetForegroundDrawListWindowPtr", + "ov_cimguiname": "igGetForegroundDrawList_WindowPtr", "ret": "ImDrawList*", "signature": "(ImGuiWindow*)", "stname": "" @@ -18255,7 +18811,7 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui:837", + "location": "imgui:894", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -18272,7 +18828,7 @@ "cimguiname": "igGetFrameHeight", "defaults": {}, "funcname": "GetFrameHeight", - "location": "imgui:439", + "location": "imgui:470", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -18289,7 +18845,7 @@ "cimguiname": "igGetFrameHeightWithSpacing", "defaults": {}, "funcname": "GetFrameHeightWithSpacing", - "location": "imgui:440", + "location": "imgui:471", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -18306,7 +18862,7 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", - "location": "imgui_internal:2493", + "location": "imgui_internal:2631", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -18328,9 +18884,9 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:454", + "location": "imgui:489", "namespace": "ImGui", - "ov_cimguiname": "igGetIDStr", + "ov_cimguiname": "igGetID_Str", "ret": "ImGuiID", "signature": "(const char*)", "stname": "" @@ -18352,9 +18908,9 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:455", + "location": "imgui:490", "namespace": "ImGui", - "ov_cimguiname": "igGetIDStrStr", + "ov_cimguiname": "igGetID_StrStr", "ret": "ImGuiID", "signature": "(const char*,const char*)", "stname": "" @@ -18372,9 +18928,9 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:456", + "location": "imgui:491", "namespace": "ImGui", - "ov_cimguiname": "igGetIDPtr", + "ov_cimguiname": "igGetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", "stname": "" @@ -18402,7 +18958,7 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:2498", + "location": "imgui_internal:2636", "namespace": "ImGui", "ov_cimguiname": "igGetIDWithSeed", "ret": "ImGuiID", @@ -18419,7 +18975,7 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", - "location": "imgui:277", + "location": "imgui:307", "namespace": "ImGui", "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", @@ -18442,7 +18998,7 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", - "location": "imgui_internal:2776", + "location": "imgui_internal:2944", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -18450,6 +19006,23 @@ "stname": "" } ], + "igGetItemFlags": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetItemFlags", + "defaults": {}, + "funcname": "GetItemFlags", + "location": "imgui_internal:2625", + "namespace": "ImGui", + "ov_cimguiname": "igGetItemFlags", + "ret": "ImGuiItemFlags", + "signature": "()", + "stname": "" + } + ], "igGetItemID": [ { "args": "()", @@ -18459,7 +19032,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui_internal:2485", + "location": "imgui_internal:2623", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -18481,7 +19054,7 @@ "cimguiname": "igGetItemRectMax", "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui:823", + "location": "imgui:880", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -18504,7 +19077,7 @@ "cimguiname": "igGetItemRectMin", "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui:822", + "location": "imgui:879", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -18527,7 +19100,7 @@ "cimguiname": "igGetItemRectSize", "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui:824", + "location": "imgui:881", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -18545,7 +19118,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", - "location": "imgui_internal:2486", + "location": "imgui_internal:2624", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -18553,23 +19126,6 @@ "stname": "" } ], - "igGetItemsFlags": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetItemsFlags", - "defaults": {}, - "funcname": "GetItemsFlags", - "location": "imgui_internal:2489", - "namespace": "ImGui", - "ov_cimguiname": "igGetItemsFlags", - "ret": "ImGuiItemFlags", - "signature": "()", - "stname": "" - } - ], "igGetKeyIndex": [ { "args": "(ImGuiKey imgui_key)", @@ -18584,7 +19140,7 @@ "cimguiname": "igGetKeyIndex", "defaults": {}, "funcname": "GetKeyIndex", - "location": "imgui:862", + "location": "imgui:919", "namespace": "ImGui", "ov_cimguiname": "igGetKeyIndex", "ret": "int", @@ -18614,7 +19170,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:866", + "location": "imgui:923", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -18631,7 +19187,7 @@ "cimguiname": "igGetMainViewport", "defaults": {}, "funcname": "GetMainViewport", - "location": "imgui:831", + "location": "imgui:888", "namespace": "ImGui", "ov_cimguiname": "igGetMainViewport", "ret": "ImGuiViewport*", @@ -18648,7 +19204,7 @@ "cimguiname": "igGetMergedKeyModFlags", "defaults": {}, "funcname": "GetMergedKeyModFlags", - "location": "imgui_internal:2566", + "location": "imgui_internal:2731", "namespace": "ImGui", "ov_cimguiname": "igGetMergedKeyModFlags", "ret": "ImGuiKeyModFlags", @@ -18665,7 +19221,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:885", + "location": "imgui:942", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -18698,7 +19254,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:883", + "location": "imgui:940", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -18721,7 +19277,7 @@ "cimguiname": "igGetMousePos", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:880", + "location": "imgui:937", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -18744,7 +19300,7 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:881", + "location": "imgui:938", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -18771,7 +19327,7 @@ "cimguiname": "igGetNavInputAmount", "defaults": {}, "funcname": "GetNavInputAmount", - "location": "imgui_internal:2542", + "location": "imgui_internal:2706", "namespace": "ImGui", "ov_cimguiname": "igGetNavInputAmount", "ret": "float", @@ -18812,7 +19368,7 @@ "slow_factor": "0.0f" }, "funcname": "GetNavInputAmount2d", - "location": "imgui_internal:2543", + "location": "imgui_internal:2707", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetNavInputAmount2d", @@ -18830,7 +19386,7 @@ "cimguiname": "igGetPlatformIO", "defaults": {}, "funcname": "GetPlatformIO", - "location": "imgui:917", + "location": "imgui:976", "namespace": "ImGui", "ov_cimguiname": "igGetPlatformIO", "ret": "ImGuiPlatformIO*", @@ -18839,6 +19395,33 @@ "stname": "" } ], + "igGetPopupAllowedExtentRect": [ + { + "args": "(ImRect *pOut,ImGuiWindow* window)", + "argsT": [ + { + "name": "pOut", + "type": "ImRect*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igGetPopupAllowedExtentRect", + "defaults": {}, + "funcname": "GetPopupAllowedExtentRect", + "location": "imgui_internal:2682", + "namespace": "ImGui", + "nonUDT": 1, + "ov_cimguiname": "igGetPopupAllowedExtentRect", + "ret": "void", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], "igGetScrollMaxX": [ { "args": "()", @@ -18848,7 +19431,7 @@ "cimguiname": "igGetScrollMaxX", "defaults": {}, "funcname": "GetScrollMaxX", - "location": "imgui:373", + "location": "imgui:403", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -18865,7 +19448,7 @@ "cimguiname": "igGetScrollMaxY", "defaults": {}, "funcname": "GetScrollMaxY", - "location": "imgui:374", + "location": "imgui:404", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -18882,7 +19465,7 @@ "cimguiname": "igGetScrollX", "defaults": {}, "funcname": "GetScrollX", - "location": "imgui:369", + "location": "imgui:399", "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -18899,7 +19482,7 @@ "cimguiname": "igGetScrollY", "defaults": {}, "funcname": "GetScrollY", - "location": "imgui:370", + "location": "imgui:400", "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -18916,7 +19499,7 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui:845", + "location": "imgui:902", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -18933,7 +19516,7 @@ "cimguiname": "igGetStyle", "defaults": {}, "funcname": "GetStyle", - "location": "imgui:278", + "location": "imgui:308", "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -18956,7 +19539,7 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui:843", + "location": "imgui:900", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -18978,7 +19561,7 @@ "cimguiname": "igGetStyleColorVec4", "defaults": {}, "funcname": "GetStyleColorVec4", - "location": "imgui:409", + "location": "imgui:440", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", @@ -18996,7 +19579,7 @@ "cimguiname": "igGetTextLineHeight", "defaults": {}, "funcname": "GetTextLineHeight", - "location": "imgui:437", + "location": "imgui:468", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -19013,7 +19596,7 @@ "cimguiname": "igGetTextLineHeightWithSpacing", "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", - "location": "imgui:438", + "location": "imgui:469", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -19030,7 +19613,7 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", - "location": "imgui:836", + "location": "imgui:893", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -19047,7 +19630,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", - "location": "imgui_internal:2532", + "location": "imgui_internal:2683", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -19064,7 +19647,7 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui:587", + "location": "imgui:622", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -19081,7 +19664,7 @@ "cimguiname": "igGetVersion", "defaults": {}, "funcname": "GetVersion", - "location": "imgui:292", + "location": "imgui:322", "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -19103,7 +19686,7 @@ "cimguiname": "igGetViewportPlatformMonitor", "defaults": {}, "funcname": "GetViewportPlatformMonitor", - "location": "imgui_internal:2465", + "location": "imgui_internal:2603", "namespace": "ImGui", "ov_cimguiname": "igGetViewportPlatformMonitor", "ret": "const ImGuiPlatformMonitor*", @@ -19111,33 +19694,6 @@ "stname": "" } ], - "igGetWindowAllowedExtentRect": [ - { - "args": "(ImRect *pOut,ImGuiWindow* window)", - "argsT": [ - { - "name": "pOut", - "type": "ImRect*" - }, - { - "name": "window", - "type": "ImGuiWindow*" - } - ], - "argsoriginal": "(ImGuiWindow* window)", - "call_args": "(window)", - "cimguiname": "igGetWindowAllowedExtentRect", - "defaults": {}, - "funcname": "GetWindowAllowedExtentRect", - "location": "imgui_internal:2427", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetWindowAllowedExtentRect", - "ret": "void", - "signature": "(ImGuiWindow*)", - "stname": "" - } - ], "igGetWindowAlwaysWantOwnTabBar": [ { "args": "(ImGuiWindow* window)", @@ -19152,7 +19708,7 @@ "cimguiname": "igGetWindowAlwaysWantOwnTabBar", "defaults": {}, "funcname": "GetWindowAlwaysWantOwnTabBar", - "location": "imgui_internal:2586", + "location": "imgui_internal:2752", "namespace": "ImGui", "ov_cimguiname": "igGetWindowAlwaysWantOwnTabBar", "ret": "bool", @@ -19174,7 +19730,7 @@ "cimguiname": "igGetWindowContentRegionMax", "defaults": {}, "funcname": "GetWindowContentRegionMax", - "location": "imgui:365", + "location": "imgui:396", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMax", @@ -19197,7 +19753,7 @@ "cimguiname": "igGetWindowContentRegionMin", "defaults": {}, "funcname": "GetWindowContentRegionMin", - "location": "imgui:364", + "location": "imgui:395", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMin", @@ -19206,23 +19762,6 @@ "stname": "" } ], - "igGetWindowContentRegionWidth": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetWindowContentRegionWidth", - "defaults": {}, - "funcname": "GetWindowContentRegionWidth", - "location": "imgui:366", - "namespace": "ImGui", - "ov_cimguiname": "igGetWindowContentRegionWidth", - "ret": "float", - "signature": "()", - "stname": "" - } - ], "igGetWindowDockID": [ { "args": "()", @@ -19232,7 +19771,7 @@ "cimguiname": "igGetWindowDockID", "defaults": {}, "funcname": "GetWindowDockID", - "location": "imgui:770", + "location": "imgui:820", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockID", "ret": "ImGuiID", @@ -19249,7 +19788,7 @@ "cimguiname": "igGetWindowDockNode", "defaults": {}, "funcname": "GetWindowDockNode", - "location": "imgui_internal:2585", + "location": "imgui_internal:2751", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockNode", "ret": "ImGuiDockNode*", @@ -19266,7 +19805,7 @@ "cimguiname": "igGetWindowDpiScale", "defaults": {}, "funcname": "GetWindowDpiScale", - "location": "imgui:333", + "location": "imgui:363", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDpiScale", "ret": "float", @@ -19283,7 +19822,7 @@ "cimguiname": "igGetWindowDrawList", "defaults": {}, "funcname": "GetWindowDrawList", - "location": "imgui:332", + "location": "imgui:362", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -19300,7 +19839,7 @@ "cimguiname": "igGetWindowHeight", "defaults": {}, "funcname": "GetWindowHeight", - "location": "imgui:337", + "location": "imgui:367", "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -19322,7 +19861,7 @@ "cimguiname": "igGetWindowPos", "defaults": {}, "funcname": "GetWindowPos", - "location": "imgui:334", + "location": "imgui:364", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -19331,7 +19870,33 @@ "stname": "" } ], - "igGetWindowResizeID": [ + "igGetWindowResizeBorderID": [ + { + "args": "(ImGuiWindow* window,ImGuiDir dir)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "dir", + "type": "ImGuiDir" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiDir dir)", + "call_args": "(window,dir)", + "cimguiname": "igGetWindowResizeBorderID", + "defaults": {}, + "funcname": "GetWindowResizeBorderID", + "location": "imgui_internal:2907", + "namespace": "ImGui", + "ov_cimguiname": "igGetWindowResizeBorderID", + "ret": "ImGuiID", + "signature": "(ImGuiWindow*,ImGuiDir)", + "stname": "" + } + ], + "igGetWindowResizeCornerID": [ { "args": "(ImGuiWindow* window,int n)", "argsT": [ @@ -19346,12 +19911,12 @@ ], "argsoriginal": "(ImGuiWindow* window,int n)", "call_args": "(window,n)", - "cimguiname": "igGetWindowResizeID", + "cimguiname": "igGetWindowResizeCornerID", "defaults": {}, - "funcname": "GetWindowResizeID", - "location": "imgui_internal:2739", + "funcname": "GetWindowResizeCornerID", + "location": "imgui_internal:2906", "namespace": "ImGui", - "ov_cimguiname": "igGetWindowResizeID", + "ov_cimguiname": "igGetWindowResizeCornerID", "ret": "ImGuiID", "signature": "(ImGuiWindow*,int)", "stname": "" @@ -19375,7 +19940,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", - "location": "imgui_internal:2738", + "location": "imgui_internal:2905", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -19405,7 +19970,7 @@ "cimguiname": "igGetWindowScrollbarRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", - "location": "imgui_internal:2737", + "location": "imgui_internal:2904", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -19428,7 +19993,7 @@ "cimguiname": "igGetWindowSize", "defaults": {}, "funcname": "GetWindowSize", - "location": "imgui:335", + "location": "imgui:365", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -19446,7 +20011,7 @@ "cimguiname": "igGetWindowViewport", "defaults": {}, "funcname": "GetWindowViewport", - "location": "imgui:338", + "location": "imgui:368", "namespace": "ImGui", "ov_cimguiname": "igGetWindowViewport", "ret": "ImGuiViewport*", @@ -19463,15 +20028,34 @@ "cimguiname": "igGetWindowWidth", "defaults": {}, "funcname": "GetWindowWidth", - "location": "imgui:336", + "location": "imgui:366", "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", "signature": "()", "stname": "" - } - ], - "igImAbs": [ + } + ], + "igImAbs": [ + { + "args": "(int x)", + "argsT": [ + { + "name": "x", + "type": "int" + } + ], + "argsoriginal": "(int x)", + "call_args": "(x)", + "cimguiname": "igImAbs", + "defaults": {}, + "funcname": "ImAbs", + "location": "imgui_internal:412", + "ov_cimguiname": "igImAbs_Int", + "ret": "int", + "signature": "(int)", + "stname": "" + }, { "args": "(float x)", "argsT": [ @@ -19485,8 +20069,8 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:385", - "ov_cimguiname": "igImAbsFloat", + "location": "imgui_internal:413", + "ov_cimguiname": "igImAbs_Float", "ret": "float", "signature": "(float)", "stname": "" @@ -19504,8 +20088,8 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:386", - "ov_cimguiname": "igImAbsdouble", + "location": "imgui_internal:414", + "ov_cimguiname": "igImAbs_double", "ret": "double", "signature": "(double)", "stname": "" @@ -19529,7 +20113,7 @@ "cimguiname": "igImAlphaBlendColors", "defaults": {}, "funcname": "ImAlphaBlendColors", - "location": "imgui_internal:288", + "location": "imgui_internal:311", "ov_cimguiname": "igImAlphaBlendColors", "ret": "ImU32", "signature": "(ImU32,ImU32)", @@ -19570,7 +20154,7 @@ "cimguiname": "igImBezierCubicCalc", "defaults": {}, "funcname": "ImBezierCubicCalc", - "location": "imgui_internal:419", + "location": "imgui_internal:455", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicCalc", "ret": "void", @@ -19616,7 +20200,7 @@ "cimguiname": "igImBezierCubicClosestPoint", "defaults": {}, "funcname": "ImBezierCubicClosestPoint", - "location": "imgui_internal:420", + "location": "imgui_internal:456", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPoint", "ret": "void", @@ -19662,7 +20246,7 @@ "cimguiname": "igImBezierCubicClosestPointCasteljau", "defaults": {}, "funcname": "ImBezierCubicClosestPointCasteljau", - "location": "imgui_internal:421", + "location": "imgui_internal:457", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPointCasteljau", "ret": "void", @@ -19700,7 +20284,7 @@ "cimguiname": "igImBezierQuadraticCalc", "defaults": {}, "funcname": "ImBezierQuadraticCalc", - "location": "imgui_internal:422", + "location": "imgui_internal:458", "nonUDT": 1, "ov_cimguiname": "igImBezierQuadraticCalc", "ret": "void", @@ -19726,7 +20310,7 @@ "cimguiname": "igImBitArrayClearBit", "defaults": {}, "funcname": "ImBitArrayClearBit", - "location": "imgui_internal:488", + "location": "imgui_internal:526", "ov_cimguiname": "igImBitArrayClearBit", "ret": "void", "signature": "(ImU32*,int)", @@ -19751,7 +20335,7 @@ "cimguiname": "igImBitArraySetBit", "defaults": {}, "funcname": "ImBitArraySetBit", - "location": "imgui_internal:489", + "location": "imgui_internal:527", "ov_cimguiname": "igImBitArraySetBit", "ret": "void", "signature": "(ImU32*,int)", @@ -19780,7 +20364,7 @@ "cimguiname": "igImBitArraySetBitRange", "defaults": {}, "funcname": "ImBitArraySetBitRange", - "location": "imgui_internal:490", + "location": "imgui_internal:528", "ov_cimguiname": "igImBitArraySetBitRange", "ret": "void", "signature": "(ImU32*,int,int)", @@ -19805,7 +20389,7 @@ "cimguiname": "igImBitArrayTestBit", "defaults": {}, "funcname": "ImBitArrayTestBit", - "location": "imgui_internal:487", + "location": "imgui_internal:525", "ov_cimguiname": "igImBitArrayTestBit", "ret": "bool", "signature": "(const ImU32*,int)", @@ -19826,7 +20410,7 @@ "cimguiname": "igImCharIsBlankA", "defaults": {}, "funcname": "ImCharIsBlankA", - "location": "imgui_internal:314", + "location": "imgui_internal:337", "ov_cimguiname": "igImCharIsBlankA", "ret": "bool", "signature": "(char)", @@ -19847,7 +20431,7 @@ "cimguiname": "igImCharIsBlankW", "defaults": {}, "funcname": "ImCharIsBlankW", - "location": "imgui_internal:315", + "location": "imgui_internal:338", "ov_cimguiname": "igImCharIsBlankW", "ret": "bool", "signature": "(unsigned int)", @@ -19880,7 +20464,7 @@ "cimguiname": "igImClamp", "defaults": {}, "funcname": "ImClamp", - "location": "imgui_internal:402", + "location": "imgui_internal:436", "nonUDT": 1, "ov_cimguiname": "igImClamp", "ret": "void", @@ -19906,7 +20490,7 @@ "cimguiname": "igImDot", "defaults": {}, "funcname": "ImDot", - "location": "imgui_internal:413", + "location": "imgui_internal:448", "ov_cimguiname": "igImDot", "ret": "float", "signature": "(const ImVec2,const ImVec2)", @@ -19927,7 +20511,7 @@ "cimguiname": "igImFileClose", "defaults": {}, "funcname": "ImFileClose", - "location": "imgui_internal:359", + "location": "imgui_internal:385", "ov_cimguiname": "igImFileClose", "ret": "bool", "signature": "(ImFileHandle)", @@ -19948,7 +20532,7 @@ "cimguiname": "igImFileGetSize", "defaults": {}, "funcname": "ImFileGetSize", - "location": "imgui_internal:360", + "location": "imgui_internal:386", "ov_cimguiname": "igImFileGetSize", "ret": "ImU64", "signature": "(ImFileHandle)", @@ -19984,7 +20568,7 @@ "padding_bytes": "0" }, "funcname": "ImFileLoadToMemory", - "location": "imgui_internal:366", + "location": "imgui_internal:392", "ov_cimguiname": "igImFileLoadToMemory", "ret": "void*", "signature": "(const char*,const char*,size_t*,int)", @@ -20009,7 +20593,7 @@ "cimguiname": "igImFileOpen", "defaults": {}, "funcname": "ImFileOpen", - "location": "imgui_internal:358", + "location": "imgui_internal:384", "ov_cimguiname": "igImFileOpen", "ret": "ImFileHandle", "signature": "(const char*,const char*)", @@ -20042,7 +20626,7 @@ "cimguiname": "igImFileRead", "defaults": {}, "funcname": "ImFileRead", - "location": "imgui_internal:361", + "location": "imgui_internal:387", "ov_cimguiname": "igImFileRead", "ret": "ImU64", "signature": "(void*,ImU64,ImU64,ImFileHandle)", @@ -20075,7 +20659,7 @@ "cimguiname": "igImFileWrite", "defaults": {}, "funcname": "ImFileWrite", - "location": "imgui_internal:362", + "location": "imgui_internal:388", "ov_cimguiname": "igImFileWrite", "ret": "ImU64", "signature": "(const void*,ImU64,ImU64,ImFileHandle)", @@ -20096,8 +20680,8 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:410", - "ov_cimguiname": "igImFloorFloat", + "location": "imgui_internal:444", + "ov_cimguiname": "igImFloor_Float", "ret": "float", "signature": "(float)", "stname": "" @@ -20119,14 +20703,35 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:411", + "location": "imgui_internal:446", "nonUDT": 1, - "ov_cimguiname": "igImFloorVec2", + "ov_cimguiname": "igImFloor_Vec2", "ret": "void", "signature": "(const ImVec2)", "stname": "" } ], + "igImFloorSigned": [ + { + "args": "(float f)", + "argsT": [ + { + "name": "f", + "type": "float" + } + ], + "argsoriginal": "(float f)", + "call_args": "(f)", + "cimguiname": "igImFloorSigned", + "defaults": {}, + "funcname": "ImFloorSigned", + "location": "imgui_internal:445", + "ov_cimguiname": "igImFloorSigned", + "ret": "float", + "signature": "(float)", + "stname": "" + } + ], "igImFontAtlasBuildFinish": [ { "args": "(ImFontAtlas* atlas)", @@ -20141,7 +20746,7 @@ "cimguiname": "igImFontAtlasBuildFinish", "defaults": {}, "funcname": "ImFontAtlasBuildFinish", - "location": "imgui_internal:2832", + "location": "imgui_internal:3002", "ov_cimguiname": "igImFontAtlasBuildFinish", "ret": "void", "signature": "(ImFontAtlas*)", @@ -20162,7 +20767,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", - "location": "imgui_internal:2829", + "location": "imgui_internal:2999", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -20187,7 +20792,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", - "location": "imgui_internal:2835", + "location": "imgui_internal:3005", "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "ret": "void", "signature": "(unsigned char[256],float)", @@ -20232,7 +20837,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", - "location": "imgui_internal:2836", + "location": "imgui_internal:3006", "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "ret": "void", "signature": "(const unsigned char[256],unsigned char*,int,int,int,int,int)", @@ -20257,7 +20862,7 @@ "cimguiname": "igImFontAtlasBuildPackCustomRects", "defaults": {}, "funcname": "ImFontAtlasBuildPackCustomRects", - "location": "imgui_internal:2831", + "location": "imgui_internal:3001", "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", "ret": "void", "signature": "(ImFontAtlas*,void*)", @@ -20306,7 +20911,7 @@ "cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender32bppRectFromString", - "location": "imgui_internal:2834", + "location": "imgui_internal:3004", "ov_cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)", @@ -20355,7 +20960,7 @@ "cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender8bppRectFromString", - "location": "imgui_internal:2833", + "location": "imgui_internal:3003", "ov_cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)", @@ -20392,7 +20997,7 @@ "cimguiname": "igImFontAtlasBuildSetupFont", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFont", - "location": "imgui_internal:2830", + "location": "imgui_internal:3000", "ov_cimguiname": "igImFontAtlasBuildSetupFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)", @@ -20408,7 +21013,7 @@ "cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "defaults": {}, "funcname": "ImFontAtlasGetBuilderForStbTruetype", - "location": "imgui_internal:2828", + "location": "imgui_internal:2998", "ov_cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "ret": "const ImFontBuilderIO*", "signature": "()", @@ -20442,7 +21047,7 @@ "defaults": {}, "funcname": "ImFormatString", "isvararg": "...)", - "location": "imgui_internal:308", + "location": "imgui_internal:331", "ov_cimguiname": "igImFormatString", "ret": "int", "signature": "(char*,size_t,const char*,...)", @@ -20475,7 +21080,7 @@ "cimguiname": "igImFormatStringV", "defaults": {}, "funcname": "ImFormatStringV", - "location": "imgui_internal:309", + "location": "imgui_internal:332", "ov_cimguiname": "igImFormatStringV", "ret": "int", "signature": "(char*,size_t,const char*,va_list)", @@ -20500,7 +21105,7 @@ "cimguiname": "igImGetDirQuadrantFromDelta", "defaults": {}, "funcname": "ImGetDirQuadrantFromDelta", - "location": "imgui_internal:428", + "location": "imgui_internal:464", "ov_cimguiname": "igImGetDirQuadrantFromDelta", "ret": "ImGuiDir", "signature": "(float,float)", @@ -20531,7 +21136,7 @@ "seed": "0" }, "funcname": "ImHashData", - "location": "imgui_internal:278", + "location": "imgui_internal:301", "ov_cimguiname": "igImHashData", "ret": "ImGuiID", "signature": "(const void*,size_t,ImU32)", @@ -20563,7 +21168,7 @@ "seed": "0" }, "funcname": "ImHashStr", - "location": "imgui_internal:279", + "location": "imgui_internal:302", "ov_cimguiname": "igImHashStr", "ret": "ImGuiID", "signature": "(const char*,size_t,ImU32)", @@ -20588,7 +21193,7 @@ "cimguiname": "igImInvLength", "defaults": {}, "funcname": "ImInvLength", - "location": "imgui_internal:409", + "location": "imgui_internal:443", "ov_cimguiname": "igImInvLength", "ret": "float", "signature": "(const ImVec2,float)", @@ -20609,8 +21214,8 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:291", - "ov_cimguiname": "igImIsPowerOfTwoInt", + "location": "imgui_internal:314", + "ov_cimguiname": "igImIsPowerOfTwo_Int", "ret": "bool", "signature": "(int)", "stname": "" @@ -20628,8 +21233,8 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:292", - "ov_cimguiname": "igImIsPowerOfTwoU64", + "location": "imgui_internal:315", + "ov_cimguiname": "igImIsPowerOfTwo_U64", "ret": "bool", "signature": "(ImU64)", "stname": "" @@ -20649,8 +21254,8 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:407", - "ov_cimguiname": "igImLengthSqrVec2", + "location": "imgui_internal:441", + "ov_cimguiname": "igImLengthSqr_Vec2", "ret": "float", "signature": "(const ImVec2)", "stname": "" @@ -20668,8 +21273,8 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:408", - "ov_cimguiname": "igImLengthSqrVec4", + "location": "imgui_internal:442", + "ov_cimguiname": "igImLengthSqr_Vec4", "ret": "float", "signature": "(const ImVec4)", "stname": "" @@ -20701,9 +21306,9 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:403", + "location": "imgui_internal:437", "nonUDT": 1, - "ov_cimguiname": "igImLerpVec2Float", + "ov_cimguiname": "igImLerp_Vec2Float", "ret": "void", "signature": "(const ImVec2,const ImVec2,float)", "stname": "" @@ -20733,9 +21338,9 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:404", + "location": "imgui_internal:438", "nonUDT": 1, - "ov_cimguiname": "igImLerpVec2Vec2", + "ov_cimguiname": "igImLerp_Vec2Vec2", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2)", "stname": "" @@ -20765,9 +21370,9 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:405", + "location": "imgui_internal:439", "nonUDT": 1, - "ov_cimguiname": "igImLerpVec4", + "ov_cimguiname": "igImLerp_Vec4", "ret": "void", "signature": "(const ImVec4,const ImVec4,float)", "stname": "" @@ -20799,7 +21404,7 @@ "cimguiname": "igImLineClosestPoint", "defaults": {}, "funcname": "ImLineClosestPoint", - "location": "imgui_internal:423", + "location": "imgui_internal:459", "nonUDT": 1, "ov_cimguiname": "igImLineClosestPoint", "ret": "void", @@ -20829,7 +21434,7 @@ "cimguiname": "igImLinearSweep", "defaults": {}, "funcname": "ImLinearSweep", - "location": "imgui_internal:415", + "location": "imgui_internal:450", "ov_cimguiname": "igImLinearSweep", "ret": "float", "signature": "(float,float,float)", @@ -20850,8 +21455,8 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:383", - "ov_cimguiname": "igImLogFloat", + "location": "imgui_internal:410", + "ov_cimguiname": "igImLog_Float", "ret": "float", "signature": "(float)", "stname": "" @@ -20869,8 +21474,8 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:384", - "ov_cimguiname": "igImLogdouble", + "location": "imgui_internal:411", + "ov_cimguiname": "igImLog_double", "ret": "double", "signature": "(double)", "stname": "" @@ -20898,7 +21503,7 @@ "cimguiname": "igImMax", "defaults": {}, "funcname": "ImMax", - "location": "imgui_internal:401", + "location": "imgui_internal:435", "nonUDT": 1, "ov_cimguiname": "igImMax", "ret": "void", @@ -20928,7 +21533,7 @@ "cimguiname": "igImMin", "defaults": {}, "funcname": "ImMin", - "location": "imgui_internal:400", + "location": "imgui_internal:434", "nonUDT": 1, "ov_cimguiname": "igImMin", "ret": "void", @@ -20954,7 +21559,7 @@ "cimguiname": "igImModPositive", "defaults": {}, "funcname": "ImModPositive", - "location": "imgui_internal:412", + "location": "imgui_internal:447", "ov_cimguiname": "igImModPositive", "ret": "int", "signature": "(int,int)", @@ -20983,7 +21588,7 @@ "cimguiname": "igImMul", "defaults": {}, "funcname": "ImMul", - "location": "imgui_internal:416", + "location": "imgui_internal:451", "nonUDT": 1, "ov_cimguiname": "igImMul", "ret": "void", @@ -21005,7 +21610,7 @@ "cimguiname": "igImParseFormatFindEnd", "defaults": {}, "funcname": "ImParseFormatFindEnd", - "location": "imgui_internal:311", + "location": "imgui_internal:334", "ov_cimguiname": "igImParseFormatFindEnd", "ret": "const char*", "signature": "(const char*)", @@ -21026,7 +21631,7 @@ "cimguiname": "igImParseFormatFindStart", "defaults": {}, "funcname": "ImParseFormatFindStart", - "location": "imgui_internal:310", + "location": "imgui_internal:333", "ov_cimguiname": "igImParseFormatFindStart", "ret": "const char*", "signature": "(const char*)", @@ -21051,7 +21656,7 @@ "cimguiname": "igImParseFormatPrecision", "defaults": {}, "funcname": "ImParseFormatPrecision", - "location": "imgui_internal:313", + "location": "imgui_internal:336", "ov_cimguiname": "igImParseFormatPrecision", "ret": "int", "signature": "(const char*,int)", @@ -21080,7 +21685,7 @@ "cimguiname": "igImParseFormatTrimDecorations", "defaults": {}, "funcname": "ImParseFormatTrimDecorations", - "location": "imgui_internal:312", + "location": "imgui_internal:335", "ov_cimguiname": "igImParseFormatTrimDecorations", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -21105,8 +21710,8 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:381", - "ov_cimguiname": "igImPowFloat", + "location": "imgui_internal:408", + "ov_cimguiname": "igImPow_Float", "ret": "float", "signature": "(float,float)", "stname": "" @@ -21128,8 +21733,8 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:382", - "ov_cimguiname": "igImPowdouble", + "location": "imgui_internal:409", + "ov_cimguiname": "igImPow_double", "ret": "double", "signature": "(double,double)", "stname": "" @@ -21161,7 +21766,7 @@ "cimguiname": "igImRotate", "defaults": {}, "funcname": "ImRotate", - "location": "imgui_internal:414", + "location": "imgui_internal:449", "nonUDT": 1, "ov_cimguiname": "igImRotate", "ret": "void", @@ -21169,6 +21774,46 @@ "stname": "" } ], + "igImRsqrt": [ + { + "args": "(float x)", + "argsT": [ + { + "name": "x", + "type": "float" + } + ], + "argsoriginal": "(float x)", + "call_args": "(x)", + "cimguiname": "igImRsqrt", + "defaults": {}, + "funcname": "ImRsqrt", + "location": "imgui_internal:418", + "ov_cimguiname": "igImRsqrt_Float", + "ret": "float", + "signature": "(float)", + "stname": "" + }, + { + "args": "(double x)", + "argsT": [ + { + "name": "x", + "type": "double" + } + ], + "argsoriginal": "(double x)", + "call_args": "(x)", + "cimguiname": "igImRsqrt", + "defaults": {}, + "funcname": "ImRsqrt", + "location": "imgui_internal:422", + "ov_cimguiname": "igImRsqrt_double", + "ret": "double", + "signature": "(double)", + "stname": "" + } + ], "igImSaturate": [ { "args": "(float f)", @@ -21183,7 +21828,7 @@ "cimguiname": "igImSaturate", "defaults": {}, "funcname": "ImSaturate", - "location": "imgui_internal:406", + "location": "imgui_internal:440", "ov_cimguiname": "igImSaturate", "ret": "float", "signature": "(float)", @@ -21204,8 +21849,8 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:387", - "ov_cimguiname": "igImSignFloat", + "location": "imgui_internal:415", + "ov_cimguiname": "igImSign_Float", "ret": "float", "signature": "(float)", "stname": "" @@ -21223,8 +21868,8 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:388", - "ov_cimguiname": "igImSigndouble", + "location": "imgui_internal:416", + "ov_cimguiname": "igImSign_double", "ret": "double", "signature": "(double)", "stname": "" @@ -21244,7 +21889,7 @@ "cimguiname": "igImStrSkipBlank", "defaults": {}, "funcname": "ImStrSkipBlank", - "location": "imgui_internal:307", + "location": "imgui_internal:330", "ov_cimguiname": "igImStrSkipBlank", "ret": "const char*", "signature": "(const char*)", @@ -21265,7 +21910,7 @@ "cimguiname": "igImStrTrimBlanks", "defaults": {}, "funcname": "ImStrTrimBlanks", - "location": "imgui_internal:306", + "location": "imgui_internal:329", "ov_cimguiname": "igImStrTrimBlanks", "ret": "void", "signature": "(char*)", @@ -21290,7 +21935,7 @@ "cimguiname": "igImStrbolW", "defaults": {}, "funcname": "ImStrbolW", - "location": "imgui_internal:304", + "location": "imgui_internal:327", "ov_cimguiname": "igImStrbolW", "ret": "const ImWchar*", "signature": "(const ImWchar*,const ImWchar*)", @@ -21319,7 +21964,7 @@ "cimguiname": "igImStrchrRange", "defaults": {}, "funcname": "ImStrchrRange", - "location": "imgui_internal:301", + "location": "imgui_internal:324", "ov_cimguiname": "igImStrchrRange", "ret": "const char*", "signature": "(const char*,const char*,char)", @@ -21340,7 +21985,7 @@ "cimguiname": "igImStrdup", "defaults": {}, "funcname": "ImStrdup", - "location": "imgui_internal:299", + "location": "imgui_internal:322", "ov_cimguiname": "igImStrdup", "ret": "char*", "signature": "(const char*)", @@ -21369,7 +22014,7 @@ "cimguiname": "igImStrdupcpy", "defaults": {}, "funcname": "ImStrdupcpy", - "location": "imgui_internal:300", + "location": "imgui_internal:323", "ov_cimguiname": "igImStrdupcpy", "ret": "char*", "signature": "(char*,size_t*,const char*)", @@ -21394,7 +22039,7 @@ "cimguiname": "igImStreolRange", "defaults": {}, "funcname": "ImStreolRange", - "location": "imgui_internal:303", + "location": "imgui_internal:326", "ov_cimguiname": "igImStreolRange", "ret": "const char*", "signature": "(const char*,const char*)", @@ -21419,7 +22064,7 @@ "cimguiname": "igImStricmp", "defaults": {}, "funcname": "ImStricmp", - "location": "imgui_internal:296", + "location": "imgui_internal:319", "ov_cimguiname": "igImStricmp", "ret": "int", "signature": "(const char*,const char*)", @@ -21452,7 +22097,7 @@ "cimguiname": "igImStristr", "defaults": {}, "funcname": "ImStristr", - "location": "imgui_internal:305", + "location": "imgui_internal:328", "ov_cimguiname": "igImStristr", "ret": "const char*", "signature": "(const char*,const char*,const char*,const char*)", @@ -21473,7 +22118,7 @@ "cimguiname": "igImStrlenW", "defaults": {}, "funcname": "ImStrlenW", - "location": "imgui_internal:302", + "location": "imgui_internal:325", "ov_cimguiname": "igImStrlenW", "ret": "int", "signature": "(const ImWchar*)", @@ -21502,7 +22147,7 @@ "cimguiname": "igImStrncpy", "defaults": {}, "funcname": "ImStrncpy", - "location": "imgui_internal:298", + "location": "imgui_internal:321", "ov_cimguiname": "igImStrncpy", "ret": "void", "signature": "(char*,const char*,size_t)", @@ -21531,7 +22176,7 @@ "cimguiname": "igImStrnicmp", "defaults": {}, "funcname": "ImStrnicmp", - "location": "imgui_internal:297", + "location": "imgui_internal:320", "ov_cimguiname": "igImStrnicmp", "ret": "int", "signature": "(const char*,const char*,size_t)", @@ -21560,13 +22205,38 @@ "cimguiname": "igImTextCharFromUtf8", "defaults": {}, "funcname": "ImTextCharFromUtf8", - "location": "imgui_internal:319", + "location": "imgui_internal:343", "ov_cimguiname": "igImTextCharFromUtf8", "ret": "int", "signature": "(unsigned int*,const char*,const char*)", "stname": "" } ], + "igImTextCharToUtf8": [ + { + "args": "(char out_buf[5],unsigned int c)", + "argsT": [ + { + "name": "out_buf", + "type": "char[5]" + }, + { + "name": "c", + "type": "unsigned int" + } + ], + "argsoriginal": "(char out_buf[5],unsigned int c)", + "call_args": "(out_buf,c)", + "cimguiname": "igImTextCharToUtf8", + "defaults": {}, + "funcname": "ImTextCharToUtf8", + "location": "imgui_internal:341", + "ov_cimguiname": "igImTextCharToUtf8", + "ret": "const char*", + "signature": "(char[5],unsigned int)", + "stname": "" + } + ], "igImTextCountCharsFromUtf8": [ { "args": "(const char* in_text,const char* in_text_end)", @@ -21585,7 +22255,7 @@ "cimguiname": "igImTextCountCharsFromUtf8", "defaults": {}, "funcname": "ImTextCountCharsFromUtf8", - "location": "imgui_internal:321", + "location": "imgui_internal:345", "ov_cimguiname": "igImTextCountCharsFromUtf8", "ret": "int", "signature": "(const char*,const char*)", @@ -21610,7 +22280,7 @@ "cimguiname": "igImTextCountUtf8BytesFromChar", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromChar", - "location": "imgui_internal:322", + "location": "imgui_internal:346", "ov_cimguiname": "igImTextCountUtf8BytesFromChar", "ret": "int", "signature": "(const char*,const char*)", @@ -21635,7 +22305,7 @@ "cimguiname": "igImTextCountUtf8BytesFromStr", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromStr", - "location": "imgui_internal:323", + "location": "imgui_internal:347", "ov_cimguiname": "igImTextCountUtf8BytesFromStr", "ret": "int", "signature": "(const ImWchar*,const ImWchar*)", @@ -21644,14 +22314,14 @@ ], "igImTextStrFromUtf8": [ { - "args": "(ImWchar* buf,int buf_size,const char* in_text,const char* in_text_end,const char** in_remaining)", + "args": "(ImWchar* out_buf,int out_buf_size,const char* in_text,const char* in_text_end,const char** in_remaining)", "argsT": [ { - "name": "buf", + "name": "out_buf", "type": "ImWchar*" }, { - "name": "buf_size", + "name": "out_buf_size", "type": "int" }, { @@ -21667,14 +22337,14 @@ "type": "const char**" } ], - "argsoriginal": "(ImWchar* buf,int buf_size,const char* in_text,const char* in_text_end,const char** in_remaining=((void*)0))", - "call_args": "(buf,buf_size,in_text,in_text_end,in_remaining)", + "argsoriginal": "(ImWchar* out_buf,int out_buf_size,const char* in_text,const char* in_text_end,const char** in_remaining=((void*)0))", + "call_args": "(out_buf,out_buf_size,in_text,in_text_end,in_remaining)", "cimguiname": "igImTextStrFromUtf8", "defaults": { "in_remaining": "NULL" }, "funcname": "ImTextStrFromUtf8", - "location": "imgui_internal:320", + "location": "imgui_internal:344", "ov_cimguiname": "igImTextStrFromUtf8", "ret": "int", "signature": "(ImWchar*,int,const char*,const char*,const char**)", @@ -21683,14 +22353,14 @@ ], "igImTextStrToUtf8": [ { - "args": "(char* buf,int buf_size,const ImWchar* in_text,const ImWchar* in_text_end)", + "args": "(char* out_buf,int out_buf_size,const ImWchar* in_text,const ImWchar* in_text_end)", "argsT": [ { - "name": "buf", + "name": "out_buf", "type": "char*" }, { - "name": "buf_size", + "name": "out_buf_size", "type": "int" }, { @@ -21702,12 +22372,12 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(char* buf,int buf_size,const ImWchar* in_text,const ImWchar* in_text_end)", - "call_args": "(buf,buf_size,in_text,in_text_end)", + "argsoriginal": "(char* out_buf,int out_buf_size,const ImWchar* in_text,const ImWchar* in_text_end)", + "call_args": "(out_buf,out_buf_size,in_text,in_text_end)", "cimguiname": "igImTextStrToUtf8", "defaults": {}, "funcname": "ImTextStrToUtf8", - "location": "imgui_internal:318", + "location": "imgui_internal:342", "ov_cimguiname": "igImTextStrToUtf8", "ret": "int", "signature": "(char*,int,const ImWchar*,const ImWchar*)", @@ -21736,7 +22406,7 @@ "cimguiname": "igImTriangleArea", "defaults": {}, "funcname": "ImTriangleArea", - "location": "imgui_internal:427", + "location": "imgui_internal:463", "ov_cimguiname": "igImTriangleArea", "ret": "float", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -21784,7 +22454,7 @@ "cimguiname": "igImTriangleBarycentricCoords", "defaults": {}, "funcname": "ImTriangleBarycentricCoords", - "location": "imgui_internal:426", + "location": "imgui_internal:462", "ov_cimguiname": "igImTriangleBarycentricCoords", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -21821,7 +22491,7 @@ "cimguiname": "igImTriangleClosestPoint", "defaults": {}, "funcname": "ImTriangleClosestPoint", - "location": "imgui_internal:425", + "location": "imgui_internal:461", "nonUDT": 1, "ov_cimguiname": "igImTriangleClosestPoint", "ret": "void", @@ -21855,7 +22525,7 @@ "cimguiname": "igImTriangleContainsPoint", "defaults": {}, "funcname": "ImTriangleContainsPoint", - "location": "imgui_internal:424", + "location": "imgui_internal:460", "ov_cimguiname": "igImTriangleContainsPoint", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", @@ -21876,7 +22546,7 @@ "cimguiname": "igImUpperPowerOfTwo", "defaults": {}, "funcname": "ImUpperPowerOfTwo", - "location": "imgui_internal:293", + "location": "imgui_internal:316", "ov_cimguiname": "igImUpperPowerOfTwo", "ret": "int", "signature": "(int)", @@ -21922,7 +22592,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui:480", + "location": "imgui:515", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -21974,7 +22644,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui:481", + "location": "imgui:516", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -22024,7 +22694,7 @@ "cimguiname": "igImageButtonEx", "defaults": {}, "funcname": "ImageButtonEx", - "location": "imgui_internal:2736", + "location": "imgui_internal:2903", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", @@ -22048,7 +22718,7 @@ "indent_w": "0.0f" }, "funcname": "Indent", - "location": "imgui:423", + "location": "imgui:454", "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -22070,7 +22740,7 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", - "location": "imgui_internal:2446", + "location": "imgui_internal:2583", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -22117,7 +22787,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui:558", + "location": "imgui:593", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -22164,7 +22834,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui:550", + "location": "imgui:585", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -22201,7 +22871,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui:551", + "location": "imgui:586", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -22238,7 +22908,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui:552", + "location": "imgui:587", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -22275,7 +22945,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui:553", + "location": "imgui:588", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -22317,7 +22987,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui:554", + "location": "imgui:589", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -22349,7 +23019,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui:555", + "location": "imgui:590", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -22381,7 +23051,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui:556", + "location": "imgui:591", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -22413,7 +23083,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui:557", + "location": "imgui:592", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -22464,7 +23134,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui:559", + "location": "imgui:594", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -22519,7 +23189,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui:560", + "location": "imgui:595", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -22565,7 +23235,7 @@ "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui:547", + "location": "imgui:582", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -22618,7 +23288,7 @@ "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "imgui_internal:2772", + "location": "imgui_internal:2940", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -22669,7 +23339,7 @@ "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui:548", + "location": "imgui:583", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -22719,7 +23389,7 @@ "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui:549", + "location": "imgui:584", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -22751,7 +23421,7 @@ "flags": "0" }, "funcname": "InvisibleButton", - "location": "imgui:478", + "location": "imgui:513", "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -22773,7 +23443,7 @@ "cimguiname": "igIsActiveIdUsingKey", "defaults": {}, "funcname": "IsActiveIdUsingKey", - "location": "imgui_internal:2561", + "location": "imgui_internal:2726", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingKey", "ret": "bool", @@ -22795,7 +23465,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", - "location": "imgui_internal:2559", + "location": "imgui_internal:2724", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -22817,7 +23487,7 @@ "cimguiname": "igIsActiveIdUsingNavInput", "defaults": {}, "funcname": "IsActiveIdUsingNavInput", - "location": "imgui_internal:2560", + "location": "imgui_internal:2725", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavInput", "ret": "bool", @@ -22834,7 +23504,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui:820", + "location": "imgui:877", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -22851,7 +23521,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui:821", + "location": "imgui:878", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -22868,7 +23538,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui:819", + "location": "imgui:876", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -22885,7 +23555,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:879", + "location": "imgui:936", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -22915,7 +23585,7 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", - "location": "imgui_internal:2505", + "location": "imgui_internal:2644", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -22932,7 +23602,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", - "location": "imgui_internal:2619", + "location": "imgui_internal:2785", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -22949,7 +23619,7 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui:815", + "location": "imgui:872", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -22966,7 +23636,7 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", - "location": "imgui:810", + "location": "imgui:867", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -22990,7 +23660,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui:812", + "location": "imgui:869", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -23007,7 +23677,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui:816", + "location": "imgui:873", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -23024,7 +23694,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui:817", + "location": "imgui:874", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -23041,7 +23711,7 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui:814", + "location": "imgui:871", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -23058,7 +23728,7 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui:811", + "location": "imgui:868", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -23082,7 +23752,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui:809", + "location": "imgui:866", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -23099,7 +23769,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui:818", + "location": "imgui:875", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -23116,7 +23786,7 @@ "cimguiname": "igIsItemToggledSelection", "defaults": {}, "funcname": "IsItemToggledSelection", - "location": "imgui_internal:2514", + "location": "imgui_internal:2649", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -23133,7 +23803,7 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui:813", + "location": "imgui:870", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -23155,7 +23825,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:863", + "location": "imgui:920", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown", "ret": "bool", @@ -23183,7 +23853,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:864", + "location": "imgui:921", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed", "ret": "bool", @@ -23211,7 +23881,7 @@ "repeat": "true" }, "funcname": "IsKeyPressedMap", - "location": "imgui_internal:2563", + "location": "imgui_internal:2728", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressedMap", "ret": "bool", @@ -23233,7 +23903,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:865", + "location": "imgui:922", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased", "ret": "bool", @@ -23261,7 +23931,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:874", + "location": "imgui:931", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked", "ret": "bool", @@ -23283,7 +23953,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:876", + "location": "imgui:933", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked", "ret": "bool", @@ -23305,7 +23975,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:873", + "location": "imgui:930", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown", "ret": "bool", @@ -23333,7 +24003,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "imgui_internal:2562", + "location": "imgui_internal:2727", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -23361,7 +24031,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:882", + "location": "imgui:939", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -23393,7 +24063,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:877", + "location": "imgui:934", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -23417,7 +24087,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:878", + "location": "imgui:935", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -23439,7 +24109,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:875", + "location": "imgui:932", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased", "ret": "bool", @@ -23461,7 +24131,7 @@ "cimguiname": "igIsNavInputDown", "defaults": {}, "funcname": "IsNavInputDown", - "location": "imgui_internal:2564", + "location": "imgui_internal:2729", "namespace": "ImGui", "ov_cimguiname": "igIsNavInputDown", "ret": "bool", @@ -23487,7 +24157,7 @@ "cimguiname": "igIsNavInputTest", "defaults": {}, "funcname": "IsNavInputTest", - "location": "imgui_internal:2565", + "location": "imgui_internal:2730", "namespace": "ImGui", "ov_cimguiname": "igIsNavInputTest", "ret": "bool", @@ -23515,9 +24185,9 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui:678", + "location": "imgui:720", "namespace": "ImGui", - "ov_cimguiname": "igIsPopupOpenStr", + "ov_cimguiname": "igIsPopupOpen_Str", "ret": "bool", "signature": "(const char*,ImGuiPopupFlags)", "stname": "" @@ -23539,9 +24209,9 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", - "location": "imgui_internal:2529", + "location": "imgui_internal:2679", "namespace": "ImGui", - "ov_cimguiname": "igIsPopupOpenID", + "ov_cimguiname": "igIsPopupOpen_ID", "ret": "bool", "signature": "(ImGuiID,ImGuiPopupFlags)", "stname": "" @@ -23561,9 +24231,9 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:834", + "location": "imgui:891", "namespace": "ImGui", - "ov_cimguiname": "igIsRectVisibleNil", + "ov_cimguiname": "igIsRectVisible_Nil", "ret": "bool", "signature": "(const ImVec2)", "stname": "" @@ -23585,9 +24255,9 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:835", + "location": "imgui:892", "namespace": "ImGui", - "ov_cimguiname": "igIsRectVisibleVec2", + "ov_cimguiname": "igIsRectVisible_Vec2", "ret": "bool", "signature": "(const ImVec2,const ImVec2)", "stname": "" @@ -23611,7 +24281,7 @@ "cimguiname": "igIsWindowAbove", "defaults": {}, "funcname": "IsWindowAbove", - "location": "imgui_internal:2425", + "location": "imgui_internal:2563", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAbove", "ret": "bool", @@ -23628,7 +24298,7 @@ "cimguiname": "igIsWindowAppearing", "defaults": {}, "funcname": "IsWindowAppearing", - "location": "imgui:328", + "location": "imgui:358", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -23638,7 +24308,7 @@ ], "igIsWindowChildOf": [ { - "args": "(ImGuiWindow* window,ImGuiWindow* potential_parent)", + "args": "(ImGuiWindow* window,ImGuiWindow* potential_parent,bool dock_hierarchy)", "argsT": [ { "name": "window", @@ -23647,18 +24317,22 @@ { "name": "potential_parent", "type": "ImGuiWindow*" + }, + { + "name": "dock_hierarchy", + "type": "bool" } ], - "argsoriginal": "(ImGuiWindow* window,ImGuiWindow* potential_parent)", - "call_args": "(window,potential_parent)", + "argsoriginal": "(ImGuiWindow* window,ImGuiWindow* potential_parent,bool dock_hierarchy)", + "call_args": "(window,potential_parent,dock_hierarchy)", "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", - "location": "imgui_internal:2424", + "location": "imgui_internal:2562", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", - "signature": "(ImGuiWindow*,ImGuiWindow*)", + "signature": "(ImGuiWindow*,ImGuiWindow*,bool)", "stname": "" } ], @@ -23671,7 +24345,7 @@ "cimguiname": "igIsWindowCollapsed", "defaults": {}, "funcname": "IsWindowCollapsed", - "location": "imgui:329", + "location": "imgui:359", "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -23688,7 +24362,7 @@ "cimguiname": "igIsWindowDocked", "defaults": {}, "funcname": "IsWindowDocked", - "location": "imgui:771", + "location": "imgui:821", "namespace": "ImGui", "ov_cimguiname": "igIsWindowDocked", "ret": "bool", @@ -23712,7 +24386,7 @@ "flags": "0" }, "funcname": "IsWindowFocused", - "location": "imgui:330", + "location": "imgui:360", "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -23736,7 +24410,7 @@ "flags": "0" }, "funcname": "IsWindowHovered", - "location": "imgui:331", + "location": "imgui:361", "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -23758,7 +24432,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", - "location": "imgui_internal:2426", + "location": "imgui_internal:2564", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -23768,7 +24442,7 @@ ], "igItemAdd": [ { - "args": "(const ImRect bb,ImGuiID id,const ImRect* nav_bb)", + "args": "(const ImRect bb,ImGuiID id,const ImRect* nav_bb,ImGuiItemFlags extra_flags)", "argsT": [ { "name": "bb", @@ -23781,20 +24455,25 @@ { "name": "nav_bb", "type": "const ImRect*" + }, + { + "name": "extra_flags", + "type": "ImGuiItemFlags" } ], - "argsoriginal": "(const ImRect& bb,ImGuiID id,const ImRect* nav_bb=((void*)0))", - "call_args": "(bb,id,nav_bb)", + "argsoriginal": "(const ImRect& bb,ImGuiID id,const ImRect* nav_bb=((void*)0),ImGuiItemFlags extra_flags=0)", + "call_args": "(bb,id,nav_bb,extra_flags)", "cimguiname": "igItemAdd", "defaults": { + "extra_flags": "0", "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "imgui_internal:2503", + "location": "imgui_internal:2641", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", - "signature": "(const ImRect,ImGuiID,const ImRect*)", + "signature": "(const ImRect,ImGuiID,const ImRect*,ImGuiItemFlags)", "stname": "" } ], @@ -23816,7 +24495,7 @@ "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", - "location": "imgui_internal:2504", + "location": "imgui_internal:2642", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", @@ -23824,6 +24503,32 @@ "stname": "" } ], + "igItemInputable": [ + { + "args": "(ImGuiWindow* window,ImGuiID id)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiID id)", + "call_args": "(window,id)", + "cimguiname": "igItemInputable", + "defaults": {}, + "funcname": "ItemInputable", + "location": "imgui_internal:2643", + "namespace": "ImGui", + "ov_cimguiname": "igItemInputable", + "ret": "void", + "signature": "(ImGuiWindow*,ImGuiID)", + "stname": "" + } + ], "igItemSize": [ { "args": "(const ImVec2 size,float text_baseline_y)", @@ -23844,9 +24549,9 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:2501", + "location": "imgui_internal:2639", "namespace": "ImGui", - "ov_cimguiname": "igItemSizeVec2", + "ov_cimguiname": "igItemSize_Vec2", "ret": "void", "signature": "(const ImVec2,float)", "stname": "" @@ -23870,9 +24575,9 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:2502", + "location": "imgui_internal:2640", "namespace": "ImGui", - "ov_cimguiname": "igItemSizeRect", + "ov_cimguiname": "igItemSize_Rect", "ret": "void", "signature": "(const ImRect,float)", "stname": "" @@ -23892,7 +24597,7 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", - "location": "imgui_internal:2495", + "location": "imgui_internal:2633", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -23923,7 +24628,7 @@ "defaults": {}, "funcname": "LabelText", "isvararg": "...)", - "location": "imgui:468", + "location": "imgui:503", "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -23953,7 +24658,7 @@ "cimguiname": "igLabelTextV", "defaults": {}, "funcname": "LabelTextV", - "location": "imgui:469", + "location": "imgui:504", "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -23993,9 +24698,9 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:606", + "location": "imgui:641", "namespace": "ImGui", - "ov_cimguiname": "igListBoxStr_arr", + "ov_cimguiname": "igListBox_Str_arr", "ret": "bool", "signature": "(const char*,int*,const char* const[],int,int)", "stname": "" @@ -24037,9 +24742,9 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:607", + "location": "imgui:642", "namespace": "ImGui", - "ov_cimguiname": "igListBoxFnBoolPtr", + "ov_cimguiname": "igListBox_FnBoolPtr", "ret": "bool", "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", "stname": "" @@ -24059,7 +24764,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:897", + "location": "imgui:955", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -24087,7 +24792,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:898", + "location": "imgui:956", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -24113,7 +24818,7 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", - "location": "imgui_internal:2519", + "location": "imgui_internal:2669", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -24130,7 +24835,7 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", - "location": "imgui:779", + "location": "imgui:829", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -24147,7 +24852,7 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", - "location": "imgui:778", + "location": "imgui:828", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -24179,7 +24884,7 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "imgui_internal:2521", + "location": "imgui_internal:2671", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -24205,7 +24910,7 @@ "cimguiname": "igLogSetNextTextDecoration", "defaults": {}, "funcname": "LogSetNextTextDecoration", - "location": "imgui_internal:2522", + "location": "imgui_internal:2672", "namespace": "ImGui", "ov_cimguiname": "igLogSetNextTextDecoration", "ret": "void", @@ -24232,7 +24937,7 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui:780", + "location": "imgui:830", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -24259,7 +24964,7 @@ "cimguiname": "igLogTextV", "defaults": {}, "funcname": "LogTextV", - "location": "imgui:781", + "location": "imgui:831", "namespace": "ImGui", "ov_cimguiname": "igLogTextV", "ret": "void", @@ -24283,7 +24988,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "imgui_internal:2520", + "location": "imgui_internal:2670", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -24307,7 +25012,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui:777", + "location": "imgui:827", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -24336,7 +25041,7 @@ "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui:776", + "location": "imgui:826", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -24360,7 +25065,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui:775", + "location": "imgui:825", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -24377,9 +25082,9 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:2468", + "location": "imgui_internal:2606", "namespace": "ImGui", - "ov_cimguiname": "igMarkIniSettingsDirtyNil", + "ov_cimguiname": "igMarkIniSettingsDirty_Nil", "ret": "void", "signature": "()", "stname": "" @@ -24397,9 +25102,9 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:2469", + "location": "imgui_internal:2607", "namespace": "ImGui", - "ov_cimguiname": "igMarkIniSettingsDirtyWindowPtr", + "ov_cimguiname": "igMarkIniSettingsDirty_WindowPtr", "ret": "void", "signature": "(ImGuiWindow*)", "stname": "" @@ -24419,7 +25124,7 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", - "location": "imgui_internal:2496", + "location": "imgui_internal:2634", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -24441,7 +25146,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:911", + "location": "imgui:970", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -24463,7 +25168,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:912", + "location": "imgui:971", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -24501,9 +25206,9 @@ "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui:633", + "location": "imgui:669", "namespace": "ImGui", - "ov_cimguiname": "igMenuItemBool", + "ov_cimguiname": "igMenuItem_Bool", "ret": "bool", "signature": "(const char*,const char*,bool,bool)", "stname": "" @@ -24535,14 +25240,73 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui:634", + "location": "imgui:670", "namespace": "ImGui", - "ov_cimguiname": "igMenuItemBoolPtr", + "ov_cimguiname": "igMenuItem_BoolPtr", "ret": "bool", "signature": "(const char*,const char*,bool*,bool)", "stname": "" } ], + "igMenuItemEx": [ + { + "args": "(const char* label,const char* icon,const char* shortcut,bool selected,bool enabled)", + "argsT": [ + { + "name": "label", + "type": "const char*" + }, + { + "name": "icon", + "type": "const char*" + }, + { + "name": "shortcut", + "type": "const char*" + }, + { + "name": "selected", + "type": "bool" + }, + { + "name": "enabled", + "type": "bool" + } + ], + "argsoriginal": "(const char* label,const char* icon,const char* shortcut=((void*)0),bool selected=false,bool enabled=true)", + "call_args": "(label,icon,shortcut,selected,enabled)", + "cimguiname": "igMenuItemEx", + "defaults": { + "enabled": "true", + "selected": "false", + "shortcut": "NULL" + }, + "funcname": "MenuItemEx", + "location": "imgui_internal:2690", + "namespace": "ImGui", + "ov_cimguiname": "igMenuItemEx", + "ret": "bool", + "signature": "(const char*,const char*,const char*,bool,bool)", + "stname": "" + } + ], + "igNavInitRequestApplyResult": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igNavInitRequestApplyResult", + "defaults": {}, + "funcname": "NavInitRequestApplyResult", + "location": "imgui_internal:2699", + "namespace": "ImGui", + "ov_cimguiname": "igNavInitRequestApplyResult", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igNavInitWindow": [ { "args": "(ImGuiWindow* window,bool force_reinit)", @@ -24561,7 +25325,7 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", - "location": "imgui_internal:2537", + "location": "imgui_internal:2698", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -24569,6 +25333,23 @@ "stname": "" } ], + "igNavMoveRequestApplyResult": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igNavMoveRequestApplyResult", + "defaults": {}, + "funcname": "NavMoveRequestApplyResult", + "location": "imgui_internal:2704", + "namespace": "ImGui", + "ov_cimguiname": "igNavMoveRequestApplyResult", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igNavMoveRequestButNoResultYet": [ { "args": "()", @@ -24578,7 +25359,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", - "location": "imgui_internal:2538", + "location": "imgui_internal:2700", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -24595,7 +25376,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", - "location": "imgui_internal:2539", + "location": "imgui_internal:2703", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -24605,7 +25386,7 @@ ], "igNavMoveRequestForward": [ { - "args": "(ImGuiDir move_dir,ImGuiDir clip_dir,const ImRect bb_rel,ImGuiNavMoveFlags move_flags)", + "args": "(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags)", "argsT": [ { "name": "move_dir", @@ -24615,25 +25396,51 @@ "name": "clip_dir", "type": "ImGuiDir" }, - { - "name": "bb_rel", - "type": "const ImRect" - }, { "name": "move_flags", "type": "ImGuiNavMoveFlags" } ], - "argsoriginal": "(ImGuiDir move_dir,ImGuiDir clip_dir,const ImRect& bb_rel,ImGuiNavMoveFlags move_flags)", - "call_args": "(move_dir,clip_dir,bb_rel,move_flags)", + "argsoriginal": "(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags)", + "call_args": "(move_dir,clip_dir,move_flags)", "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", - "location": "imgui_internal:2540", + "location": "imgui_internal:2702", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", - "signature": "(ImGuiDir,ImGuiDir,const ImRect,ImGuiNavMoveFlags)", + "signature": "(ImGuiDir,ImGuiDir,ImGuiNavMoveFlags)", + "stname": "" + } + ], + "igNavMoveRequestSubmit": [ + { + "args": "(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags)", + "argsT": [ + { + "name": "move_dir", + "type": "ImGuiDir" + }, + { + "name": "clip_dir", + "type": "ImGuiDir" + }, + { + "name": "move_flags", + "type": "ImGuiNavMoveFlags" + } + ], + "argsoriginal": "(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags)", + "call_args": "(move_dir,clip_dir,move_flags)", + "cimguiname": "igNavMoveRequestSubmit", + "defaults": {}, + "funcname": "NavMoveRequestSubmit", + "location": "imgui_internal:2701", + "namespace": "ImGui", + "ov_cimguiname": "igNavMoveRequestSubmit", + "ret": "void", + "signature": "(ImGuiDir,ImGuiDir,ImGuiNavMoveFlags)", "stname": "" } ], @@ -24655,7 +25462,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", - "location": "imgui_internal:2541", + "location": "imgui_internal:2705", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -24672,7 +25479,7 @@ "cimguiname": "igNewFrame", "defaults": {}, "funcname": "NewFrame", - "location": "imgui:279", + "location": "imgui:309", "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -24689,7 +25496,7 @@ "cimguiname": "igNewLine", "defaults": {}, "funcname": "NewLine", - "location": "imgui:420", + "location": "imgui:451", "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -24706,7 +25513,7 @@ "cimguiname": "igNextColumn", "defaults": {}, "funcname": "NextColumn", - "location": "imgui:741", + "location": "imgui:787", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -24734,12 +25541,38 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:663", + "location": "imgui:702", "namespace": "ImGui", - "ov_cimguiname": "igOpenPopup", + "ov_cimguiname": "igOpenPopup_Str", "ret": "void", "signature": "(const char*,ImGuiPopupFlags)", "stname": "" + }, + { + "args": "(ImGuiID id,ImGuiPopupFlags popup_flags)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "popup_flags", + "type": "ImGuiPopupFlags" + } + ], + "argsoriginal": "(ImGuiID id,ImGuiPopupFlags popup_flags=0)", + "call_args": "(id,popup_flags)", + "cimguiname": "igOpenPopup", + "defaults": { + "popup_flags": "0" + }, + "funcname": "OpenPopup", + "location": "imgui:703", + "namespace": "ImGui", + "ov_cimguiname": "igOpenPopup_ID", + "ret": "void", + "signature": "(ImGuiID,ImGuiPopupFlags)", + "stname": "" } ], "igOpenPopupEx": [ @@ -24762,7 +25595,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "imgui_internal:2526", + "location": "imgui_internal:2676", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -24791,7 +25624,7 @@ "str_id": "NULL" }, "funcname": "OpenPopupOnItemClick", - "location": "imgui:664", + "location": "imgui:704", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "void", @@ -24851,7 +25684,7 @@ "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", - "location": "imgui_internal:2784", + "location": "imgui_internal:2952", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", @@ -24912,9 +25745,9 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:613", + "location": "imgui:648", "namespace": "ImGui", - "ov_cimguiname": "igPlotHistogramFloatPtr", + "ov_cimguiname": "igPlotHistogram_FloatPtr", "ret": "void", "signature": "(const char*,const float*,int,int,const char*,float,float,ImVec2,int)", "stname": "" @@ -24972,9 +25805,9 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:614", + "location": "imgui:649", "namespace": "ImGui", - "ov_cimguiname": "igPlotHistogramFnFloatPtr", + "ov_cimguiname": "igPlotHistogram_FnFloatPtr", "ret": "void", "signature": "(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)", "stname": "" @@ -25033,9 +25866,9 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:611", + "location": "imgui:646", "namespace": "ImGui", - "ov_cimguiname": "igPlotLinesFloatPtr", + "ov_cimguiname": "igPlotLines_FloatPtr", "ret": "void", "signature": "(const char*,const float*,int,int,const char*,float,float,ImVec2,int)", "stname": "" @@ -25093,9 +25926,9 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:612", + "location": "imgui:647", "namespace": "ImGui", - "ov_cimguiname": "igPlotLinesFnFloatPtr", + "ov_cimguiname": "igPlotLines_FnFloatPtr", "ret": "void", "signature": "(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)", "stname": "" @@ -25110,7 +25943,7 @@ "cimguiname": "igPopAllowKeyboardFocus", "defaults": {}, "funcname": "PopAllowKeyboardFocus", - "location": "imgui:390", + "location": "imgui:420", "namespace": "ImGui", "ov_cimguiname": "igPopAllowKeyboardFocus", "ret": "void", @@ -25127,7 +25960,7 @@ "cimguiname": "igPopButtonRepeat", "defaults": {}, "funcname": "PopButtonRepeat", - "location": "imgui:392", + "location": "imgui:422", "namespace": "ImGui", "ov_cimguiname": "igPopButtonRepeat", "ret": "void", @@ -25144,7 +25977,7 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:799", + "location": "imgui:856", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -25161,7 +25994,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", - "location": "imgui_internal:2627", + "location": "imgui_internal:2793", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -25178,7 +26011,7 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", - "location": "imgui_internal:2552", + "location": "imgui_internal:2716", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -25195,7 +26028,7 @@ "cimguiname": "igPopFont", "defaults": {}, "funcname": "PopFont", - "location": "imgui:382", + "location": "imgui:412", "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -25212,7 +26045,7 @@ "cimguiname": "igPopID", "defaults": {}, "funcname": "PopID", - "location": "imgui:453", + "location": "imgui:488", "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -25229,7 +26062,7 @@ "cimguiname": "igPopItemFlag", "defaults": {}, "funcname": "PopItemFlag", - "location": "imgui_internal:2513", + "location": "imgui_internal:2655", "namespace": "ImGui", "ov_cimguiname": "igPopItemFlag", "ret": "void", @@ -25246,7 +26079,7 @@ "cimguiname": "igPopItemWidth", "defaults": {}, "funcname": "PopItemWidth", - "location": "imgui:396", + "location": "imgui:426", "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -25270,7 +26103,7 @@ "count": "1" }, "funcname": "PopStyleColor", - "location": "imgui:385", + "location": "imgui:415", "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -25294,7 +26127,7 @@ "count": "1" }, "funcname": "PopStyleVar", - "location": "imgui:388", + "location": "imgui:418", "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -25311,7 +26144,7 @@ "cimguiname": "igPopTextWrapPos", "defaults": {}, "funcname": "PopTextWrapPos", - "location": "imgui:400", + "location": "imgui:430", "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -25344,7 +26177,7 @@ "size_arg": "ImVec2(-FLT_MIN,0)" }, "funcname": "ProgressBar", - "location": "imgui:487", + "location": "imgui:522", "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -25366,7 +26199,7 @@ "cimguiname": "igPushAllowKeyboardFocus", "defaults": {}, "funcname": "PushAllowKeyboardFocus", - "location": "imgui:389", + "location": "imgui:419", "namespace": "ImGui", "ov_cimguiname": "igPushAllowKeyboardFocus", "ret": "void", @@ -25388,7 +26221,7 @@ "cimguiname": "igPushButtonRepeat", "defaults": {}, "funcname": "PushButtonRepeat", - "location": "imgui:391", + "location": "imgui:421", "namespace": "ImGui", "ov_cimguiname": "igPushButtonRepeat", "ret": "void", @@ -25418,7 +26251,7 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", - "location": "imgui:798", + "location": "imgui:855", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -25440,7 +26273,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", - "location": "imgui_internal:2625", + "location": "imgui_internal:2791", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -25457,7 +26290,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", - "location": "imgui_internal:2626", + "location": "imgui_internal:2792", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -25479,7 +26312,7 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", - "location": "imgui_internal:2551", + "location": "imgui_internal:2715", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -25501,7 +26334,7 @@ "cimguiname": "igPushFont", "defaults": {}, "funcname": "PushFont", - "location": "imgui:381", + "location": "imgui:411", "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -25523,9 +26356,9 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:449", + "location": "imgui:484", "namespace": "ImGui", - "ov_cimguiname": "igPushIDStr", + "ov_cimguiname": "igPushID_Str", "ret": "void", "signature": "(const char*)", "stname": "" @@ -25547,9 +26380,9 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:450", + "location": "imgui:485", "namespace": "ImGui", - "ov_cimguiname": "igPushIDStrStr", + "ov_cimguiname": "igPushID_StrStr", "ret": "void", "signature": "(const char*,const char*)", "stname": "" @@ -25567,9 +26400,9 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:451", + "location": "imgui:486", "namespace": "ImGui", - "ov_cimguiname": "igPushIDPtr", + "ov_cimguiname": "igPushID_Ptr", "ret": "void", "signature": "(const void*)", "stname": "" @@ -25587,9 +26420,9 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:452", + "location": "imgui:487", "namespace": "ImGui", - "ov_cimguiname": "igPushIDInt", + "ov_cimguiname": "igPushID_Int", "ret": "void", "signature": "(int)", "stname": "" @@ -25613,7 +26446,7 @@ "cimguiname": "igPushItemFlag", "defaults": {}, "funcname": "PushItemFlag", - "location": "imgui_internal:2512", + "location": "imgui_internal:2654", "namespace": "ImGui", "ov_cimguiname": "igPushItemFlag", "ret": "void", @@ -25635,7 +26468,7 @@ "cimguiname": "igPushItemWidth", "defaults": {}, "funcname": "PushItemWidth", - "location": "imgui:395", + "location": "imgui:425", "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -25661,7 +26494,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", - "location": "imgui_internal:2511", + "location": "imgui_internal:2648", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -25683,7 +26516,7 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", - "location": "imgui_internal:2497", + "location": "imgui_internal:2635", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -25709,9 +26542,9 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:383", + "location": "imgui:413", "namespace": "ImGui", - "ov_cimguiname": "igPushStyleColorU32", + "ov_cimguiname": "igPushStyleColor_U32", "ret": "void", "signature": "(ImGuiCol,ImU32)", "stname": "" @@ -25733,9 +26566,9 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:384", + "location": "imgui:414", "namespace": "ImGui", - "ov_cimguiname": "igPushStyleColorVec4", + "ov_cimguiname": "igPushStyleColor_Vec4", "ret": "void", "signature": "(ImGuiCol,const ImVec4)", "stname": "" @@ -25759,9 +26592,9 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:386", + "location": "imgui:416", "namespace": "ImGui", - "ov_cimguiname": "igPushStyleVarFloat", + "ov_cimguiname": "igPushStyleVar_Float", "ret": "void", "signature": "(ImGuiStyleVar,float)", "stname": "" @@ -25783,9 +26616,9 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:387", + "location": "imgui:417", "namespace": "ImGui", - "ov_cimguiname": "igPushStyleVarVec2", + "ov_cimguiname": "igPushStyleVar_Vec2", "ret": "void", "signature": "(ImGuiStyleVar,const ImVec2)", "stname": "" @@ -25807,7 +26640,7 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", - "location": "imgui:399", + "location": "imgui:429", "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -25833,9 +26666,9 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:485", + "location": "imgui:520", "namespace": "ImGui", - "ov_cimguiname": "igRadioButtonBool", + "ov_cimguiname": "igRadioButton_Bool", "ret": "bool", "signature": "(const char*,bool)", "stname": "" @@ -25861,9 +26694,9 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:486", + "location": "imgui:521", "namespace": "ImGui", - "ov_cimguiname": "igRadioButtonIntPtr", + "ov_cimguiname": "igRadioButton_IntPtr", "ret": "bool", "signature": "(const char*,int*,int)", "stname": "" @@ -25887,7 +26720,7 @@ "cimguiname": "igRemoveContextHook", "defaults": {}, "funcname": "RemoveContextHook", - "location": "imgui_internal:2458", + "location": "imgui_internal:2595", "namespace": "ImGui", "ov_cimguiname": "igRemoveContextHook", "ret": "void", @@ -25904,7 +26737,7 @@ "cimguiname": "igRender", "defaults": {}, "funcname": "Render", - "location": "imgui:281", + "location": "imgui:311", "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -25944,7 +26777,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "imgui_internal:2713", + "location": "imgui_internal:2880", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -25978,7 +26811,7 @@ "cimguiname": "igRenderArrowDockMenu", "defaults": {}, "funcname": "RenderArrowDockMenu", - "location": "imgui_internal:2718", + "location": "imgui_internal:2885", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowDockMenu", "ret": "void", @@ -26016,7 +26849,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", - "location": "imgui_internal:2717", + "location": "imgui_internal:2884", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -26046,7 +26879,7 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", - "location": "imgui_internal:2714", + "location": "imgui_internal:2881", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -26080,7 +26913,7 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", - "location": "imgui_internal:2715", + "location": "imgui_internal:2882", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -26133,7 +26966,7 @@ "rounding": "0.0f" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "imgui_internal:2708", + "location": "imgui_internal:2875", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -26174,7 +27007,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "imgui_internal:2706", + "location": "imgui_internal:2873", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -26206,7 +27039,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "imgui_internal:2707", + "location": "imgui_internal:2874", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -26252,7 +27085,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", - "location": "imgui_internal:2716", + "location": "imgui_internal:2883", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -26284,7 +27117,7 @@ "flags": "ImGuiNavHighlightFlags_TypeDefault" }, "funcname": "RenderNavHighlight", - "location": "imgui_internal:2709", + "location": "imgui_internal:2876", "namespace": "ImGui", "ov_cimguiname": "igRenderNavHighlight", "ret": "void", @@ -26313,7 +27146,7 @@ "renderer_render_arg": "NULL" }, "funcname": "RenderPlatformWindowsDefault", - "location": "imgui:919", + "location": "imgui:978", "namespace": "ImGui", "ov_cimguiname": "igRenderPlatformWindowsDefault", "ret": "void", @@ -26355,7 +27188,7 @@ "cimguiname": "igRenderRectFilledRangeH", "defaults": {}, "funcname": "RenderRectFilledRangeH", - "location": "imgui_internal:2719", + "location": "imgui_internal:2886", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledRangeH", "ret": "void", @@ -26393,7 +27226,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", - "location": "imgui_internal:2720", + "location": "imgui_internal:2887", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -26430,7 +27263,7 @@ "text_end": "NULL" }, "funcname": "RenderText", - "location": "imgui_internal:2701", + "location": "imgui_internal:2868", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -26479,7 +27312,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "imgui_internal:2703", + "location": "imgui_internal:2870", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -26532,7 +27365,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "imgui_internal:2704", + "location": "imgui_internal:2871", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -26582,7 +27415,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", - "location": "imgui_internal:2705", + "location": "imgui_internal:2872", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -26616,7 +27449,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", - "location": "imgui_internal:2702", + "location": "imgui_internal:2869", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -26640,7 +27473,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:884", + "location": "imgui:941", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -26669,7 +27502,7 @@ "spacing": "-1.0f" }, "funcname": "SameLine", - "location": "imgui:419", + "location": "imgui:450", "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -26691,7 +27524,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:899", + "location": "imgui:957", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -26715,7 +27548,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:900", + "location": "imgui:958", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -26741,7 +27574,7 @@ "cimguiname": "igScaleWindowsInViewport", "defaults": {}, "funcname": "ScaleWindowsInViewport", - "location": "imgui_internal:2463", + "location": "imgui_internal:2600", "namespace": "ImGui", "ov_cimguiname": "igScaleWindowsInViewport", "ret": "void", @@ -26771,7 +27604,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", - "location": "imgui_internal:2482", + "location": "imgui_internal:2620", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToBringRectIntoView", @@ -26794,7 +27627,7 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", - "location": "imgui_internal:2734", + "location": "imgui_internal:2901", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -26840,7 +27673,7 @@ "cimguiname": "igScrollbarEx", "defaults": {}, "funcname": "ScrollbarEx", - "location": "imgui_internal:2735", + "location": "imgui_internal:2902", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -26878,9 +27711,9 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:595", + "location": "imgui:630", "namespace": "ImGui", - "ov_cimguiname": "igSelectableBool", + "ov_cimguiname": "igSelectable_Bool", "ret": "bool", "signature": "(const char*,bool,ImGuiSelectableFlags,const ImVec2)", "stname": "" @@ -26913,9 +27746,9 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:596", + "location": "imgui:631", "namespace": "ImGui", - "ov_cimguiname": "igSelectableBoolPtr", + "ov_cimguiname": "igSelectable_BoolPtr", "ret": "bool", "signature": "(const char*,bool*,ImGuiSelectableFlags,const ImVec2)", "stname": "" @@ -26930,7 +27763,7 @@ "cimguiname": "igSeparator", "defaults": {}, "funcname": "Separator", - "location": "imgui:418", + "location": "imgui:449", "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -26952,7 +27785,7 @@ "cimguiname": "igSeparatorEx", "defaults": {}, "funcname": "SeparatorEx", - "location": "imgui_internal:2740", + "location": "imgui_internal:2908", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", @@ -26978,7 +27811,7 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", - "location": "imgui_internal:2490", + "location": "imgui_internal:2628", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -26986,6 +27819,23 @@ "stname": "" } ], + "igSetActiveIdUsingNavAndKeys": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igSetActiveIdUsingNavAndKeys", + "defaults": {}, + "funcname": "SetActiveIdUsingNavAndKeys", + "location": "imgui_internal:2723", + "namespace": "ImGui", + "ov_cimguiname": "igSetActiveIdUsingNavAndKeys", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igSetAllocatorFunctions": [ { "args": "(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data)", @@ -27010,7 +27860,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:909", + "location": "imgui:968", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -27032,7 +27882,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:892", + "location": "imgui:949", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -27054,7 +27904,7 @@ "cimguiname": "igSetColorEditOptions", "defaults": {}, "funcname": "SetColorEditOptions", - "location": "imgui:570", + "location": "imgui:605", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -27080,7 +27930,7 @@ "cimguiname": "igSetColumnOffset", "defaults": {}, "funcname": "SetColumnOffset", - "location": "imgui:746", + "location": "imgui:792", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -27106,7 +27956,7 @@ "cimguiname": "igSetColumnWidth", "defaults": {}, "funcname": "SetColumnWidth", - "location": "imgui:744", + "location": "imgui:790", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -27128,7 +27978,7 @@ "cimguiname": "igSetCurrentContext", "defaults": {}, "funcname": "SetCurrentContext", - "location": "imgui:274", + "location": "imgui:304", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -27149,12 +27999,38 @@ "call_args": "(font)", "cimguiname": "igSetCurrentFont", "defaults": {}, - "funcname": "SetCurrentFont", - "location": "imgui_internal:2441", + "funcname": "SetCurrentFont", + "location": "imgui_internal:2578", + "namespace": "ImGui", + "ov_cimguiname": "igSetCurrentFont", + "ret": "void", + "signature": "(ImFont*)", + "stname": "" + } + ], + "igSetCurrentViewport": [ + { + "args": "(ImGuiWindow* window,ImGuiViewportP* viewport)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "viewport", + "type": "ImGuiViewportP*" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiViewportP* viewport)", + "call_args": "(window,viewport)", + "cimguiname": "igSetCurrentViewport", + "defaults": {}, + "funcname": "SetCurrentViewport", + "location": "imgui_internal:2602", "namespace": "ImGui", - "ov_cimguiname": "igSetCurrentFont", + "ov_cimguiname": "igSetCurrentViewport", "ret": "void", - "signature": "(ImFont*)", + "signature": "(ImGuiWindow*,ImGuiViewportP*)", "stname": "" } ], @@ -27172,7 +28048,7 @@ "cimguiname": "igSetCursorPos", "defaults": {}, "funcname": "SetCursorPos", - "location": "imgui:430", + "location": "imgui:461", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -27194,7 +28070,7 @@ "cimguiname": "igSetCursorPosX", "defaults": {}, "funcname": "SetCursorPosX", - "location": "imgui:431", + "location": "imgui:462", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -27216,7 +28092,7 @@ "cimguiname": "igSetCursorPosY", "defaults": {}, "funcname": "SetCursorPosY", - "location": "imgui:432", + "location": "imgui:463", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -27238,7 +28114,7 @@ "cimguiname": "igSetCursorScreenPos", "defaults": {}, "funcname": "SetCursorScreenPos", - "location": "imgui:435", + "location": "imgui:466", "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -27274,7 +28150,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui:789", + "location": "imgui:839", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -27300,7 +28176,7 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", - "location": "imgui_internal:2491", + "location": "imgui_internal:2629", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -27322,7 +28198,7 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", - "location": "imgui_internal:2494", + "location": "imgui_internal:2632", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -27339,7 +28215,7 @@ "cimguiname": "igSetItemAllowOverlap", "defaults": {}, "funcname": "SetItemAllowOverlap", - "location": "imgui:825", + "location": "imgui:882", "namespace": "ImGui", "ov_cimguiname": "igSetItemAllowOverlap", "ret": "void", @@ -27356,7 +28232,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui:803", + "location": "imgui:860", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -27373,7 +28249,7 @@ "cimguiname": "igSetItemUsingMouseWheel", "defaults": {}, "funcname": "SetItemUsingMouseWheel", - "location": "imgui_internal:2558", + "location": "imgui_internal:2722", "namespace": "ImGui", "ov_cimguiname": "igSetItemUsingMouseWheel", "ret": "void", @@ -27397,7 +28273,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui:804", + "location": "imgui:861", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -27407,16 +28283,16 @@ ], "igSetLastItemData": [ { - "args": "(ImGuiWindow* window,ImGuiID item_id,ImGuiItemStatusFlags status_flags,const ImRect item_rect)", + "args": "(ImGuiID item_id,ImGuiItemFlags in_flags,ImGuiItemStatusFlags status_flags,const ImRect item_rect)", "argsT": [ - { - "name": "window", - "type": "ImGuiWindow*" - }, { "name": "item_id", "type": "ImGuiID" }, + { + "name": "in_flags", + "type": "ImGuiItemFlags" + }, { "name": "status_flags", "type": "ImGuiItemStatusFlags" @@ -27426,16 +28302,16 @@ "type": "const ImRect" } ], - "argsoriginal": "(ImGuiWindow* window,ImGuiID item_id,ImGuiItemStatusFlags status_flags,const ImRect& item_rect)", - "call_args": "(window,item_id,status_flags,item_rect)", + "argsoriginal": "(ImGuiID item_id,ImGuiItemFlags in_flags,ImGuiItemStatusFlags status_flags,const ImRect& item_rect)", + "call_args": "(item_id,in_flags,status_flags,item_rect)", "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", - "location": "imgui_internal:2506", + "location": "imgui_internal:2645", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", - "signature": "(ImGuiWindow*,ImGuiID,ImGuiItemStatusFlags,const ImRect)", + "signature": "(ImGuiID,ImGuiItemFlags,ImGuiItemStatusFlags,const ImRect)", "stname": "" } ], @@ -27453,7 +28329,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:886", + "location": "imgui:943", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -27463,7 +28339,7 @@ ], "igSetNavID": [ { - "args": "(ImGuiID id,int nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel)", + "args": "(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel)", "argsT": [ { "name": "id", @@ -27471,7 +28347,7 @@ }, { "name": "nav_layer", - "type": "int" + "type": "ImGuiNavLayer" }, { "name": "focus_scope_id", @@ -27482,16 +28358,16 @@ "type": "const ImRect" } ], - "argsoriginal": "(ImGuiID id,int nav_layer,ImGuiID focus_scope_id,const ImRect& rect_rel)", + "argsoriginal": "(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect& rect_rel)", "call_args": "(id,nav_layer,focus_scope_id,rect_rel)", "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", - "location": "imgui_internal:2546", + "location": "imgui_internal:2710", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", - "signature": "(ImGuiID,int,ImGuiID,const ImRect)", + "signature": "(ImGuiID,ImGuiNavLayer,ImGuiID,const ImRect)", "stname": "" } ], @@ -27515,7 +28391,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui:590", + "location": "imgui:625", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -27537,7 +28413,7 @@ "cimguiname": "igSetNextItemWidth", "defaults": {}, "funcname": "SetNextItemWidth", - "location": "imgui:397", + "location": "imgui:427", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -27559,7 +28435,7 @@ "cimguiname": "igSetNextWindowBgAlpha", "defaults": {}, "funcname": "SetNextWindowBgAlpha", - "location": "imgui:347", + "location": "imgui:378", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -27581,7 +28457,7 @@ "cimguiname": "igSetNextWindowClass", "defaults": {}, "funcname": "SetNextWindowClass", - "location": "imgui:769", + "location": "imgui:819", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowClass", "ret": "void", @@ -27609,7 +28485,7 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", - "location": "imgui:345", + "location": "imgui:376", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -27631,7 +28507,7 @@ "cimguiname": "igSetNextWindowContentSize", "defaults": {}, "funcname": "SetNextWindowContentSize", - "location": "imgui:344", + "location": "imgui:375", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -27659,7 +28535,7 @@ "cond": "0" }, "funcname": "SetNextWindowDockID", - "location": "imgui:768", + "location": "imgui:818", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowDockID", "ret": "void", @@ -27676,7 +28552,7 @@ "cimguiname": "igSetNextWindowFocus", "defaults": {}, "funcname": "SetNextWindowFocus", - "location": "imgui:346", + "location": "imgui:377", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -27709,7 +28585,7 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", - "location": "imgui:341", + "location": "imgui:372", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -27731,7 +28607,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", - "location": "imgui_internal:2477", + "location": "imgui_internal:2615", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -27759,7 +28635,7 @@ "cond": "0" }, "funcname": "SetNextWindowSize", - "location": "imgui:342", + "location": "imgui:373", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -27796,7 +28672,7 @@ "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", - "location": "imgui:343", + "location": "imgui:374", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -27818,7 +28694,7 @@ "cimguiname": "igSetNextWindowViewport", "defaults": {}, "funcname": "SetNextWindowViewport", - "location": "imgui:348", + "location": "imgui:379", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowViewport", "ret": "void", @@ -27846,9 +28722,9 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "imgui:377", + "location": "imgui:407", "namespace": "ImGui", - "ov_cimguiname": "igSetScrollFromPosXFloat", + "ov_cimguiname": "igSetScrollFromPosX_Float", "ret": "void", "signature": "(float,float)", "stname": "" @@ -27874,9 +28750,9 @@ "cimguiname": "igSetScrollFromPosX", "defaults": {}, "funcname": "SetScrollFromPosX", - "location": "imgui_internal:2480", + "location": "imgui_internal:2618", "namespace": "ImGui", - "ov_cimguiname": "igSetScrollFromPosXWindowPtr", + "ov_cimguiname": "igSetScrollFromPosX_WindowPtr", "ret": "void", "signature": "(ImGuiWindow*,float,float)", "stname": "" @@ -27902,9 +28778,9 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "imgui:378", + "location": "imgui:408", "namespace": "ImGui", - "ov_cimguiname": "igSetScrollFromPosYFloat", + "ov_cimguiname": "igSetScrollFromPosY_Float", "ret": "void", "signature": "(float,float)", "stname": "" @@ -27930,9 +28806,9 @@ "cimguiname": "igSetScrollFromPosY", "defaults": {}, "funcname": "SetScrollFromPosY", - "location": "imgui_internal:2481", + "location": "imgui_internal:2619", "namespace": "ImGui", - "ov_cimguiname": "igSetScrollFromPosYWindowPtr", + "ov_cimguiname": "igSetScrollFromPosY_WindowPtr", "ret": "void", "signature": "(ImGuiWindow*,float,float)", "stname": "" @@ -27954,7 +28830,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", - "location": "imgui:375", + "location": "imgui:405", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -27978,7 +28854,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", - "location": "imgui:376", + "location": "imgui:406", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -28000,9 +28876,9 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui:371", + "location": "imgui:401", "namespace": "ImGui", - "ov_cimguiname": "igSetScrollXFloat", + "ov_cimguiname": "igSetScrollX_Float", "ret": "void", "signature": "(float)", "stname": "" @@ -28024,9 +28900,9 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui_internal:2478", + "location": "imgui_internal:2616", "namespace": "ImGui", - "ov_cimguiname": "igSetScrollXWindowPtr", + "ov_cimguiname": "igSetScrollX_WindowPtr", "ret": "void", "signature": "(ImGuiWindow*,float)", "stname": "" @@ -28046,9 +28922,9 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui:372", + "location": "imgui:402", "namespace": "ImGui", - "ov_cimguiname": "igSetScrollYFloat", + "ov_cimguiname": "igSetScrollY_Float", "ret": "void", "signature": "(float)", "stname": "" @@ -28070,9 +28946,9 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui_internal:2479", + "location": "imgui_internal:2617", "namespace": "ImGui", - "ov_cimguiname": "igSetScrollYWindowPtr", + "ov_cimguiname": "igSetScrollY_WindowPtr", "ret": "void", "signature": "(ImGuiWindow*,float)", "stname": "" @@ -28092,7 +28968,7 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui:844", + "location": "imgui:901", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -28114,7 +28990,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui:756", + "location": "imgui:802", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -28141,7 +29017,7 @@ "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui:640", + "location": "imgui:676", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -28167,7 +29043,7 @@ "cimguiname": "igSetTooltipV", "defaults": {}, "funcname": "SetTooltipV", - "location": "imgui:641", + "location": "imgui:677", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -28193,7 +29069,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "imgui_internal:2622", + "location": "imgui_internal:2788", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -28221,9 +29097,9 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:351", + "location": "imgui:382", "namespace": "ImGui", - "ov_cimguiname": "igSetWindowCollapsedBool", + "ov_cimguiname": "igSetWindowCollapsed_Bool", "ret": "void", "signature": "(bool,ImGuiCond)", "stname": "" @@ -28251,9 +29127,9 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:356", + "location": "imgui:387", "namespace": "ImGui", - "ov_cimguiname": "igSetWindowCollapsedStr", + "ov_cimguiname": "igSetWindowCollapsed_Str", "ret": "void", "signature": "(const char*,bool,ImGuiCond)", "stname": "" @@ -28281,9 +29157,9 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui_internal:2430", + "location": "imgui_internal:2567", "namespace": "ImGui", - "ov_cimguiname": "igSetWindowCollapsedWindowPtr", + "ov_cimguiname": "igSetWindowCollapsed_WindowPtr", "ret": "void", "signature": "(ImGuiWindow*,bool,ImGuiCond)", "stname": "" @@ -28311,7 +29187,7 @@ "cimguiname": "igSetWindowDock", "defaults": {}, "funcname": "SetWindowDock", - "location": "imgui_internal:2590", + "location": "imgui_internal:2756", "namespace": "ImGui", "ov_cimguiname": "igSetWindowDock", "ret": "void", @@ -28328,9 +29204,9 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:352", + "location": "imgui:383", "namespace": "ImGui", - "ov_cimguiname": "igSetWindowFocusNil", + "ov_cimguiname": "igSetWindowFocus_Nil", "ret": "void", "signature": "()", "stname": "" @@ -28348,9 +29224,9 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:357", + "location": "imgui:388", "namespace": "ImGui", - "ov_cimguiname": "igSetWindowFocusStr", + "ov_cimguiname": "igSetWindowFocus_Str", "ret": "void", "signature": "(const char*)", "stname": "" @@ -28370,7 +29246,7 @@ "cimguiname": "igSetWindowFontScale", "defaults": {}, "funcname": "SetWindowFontScale", - "location": "imgui:353", + "location": "imgui:384", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFontScale", "ret": "void", @@ -28400,7 +29276,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", - "location": "imgui_internal:2431", + "location": "imgui_internal:2568", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -28428,9 +29304,9 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:349", + "location": "imgui:380", "namespace": "ImGui", - "ov_cimguiname": "igSetWindowPosVec2", + "ov_cimguiname": "igSetWindowPos_Vec2", "ret": "void", "signature": "(const ImVec2,ImGuiCond)", "stname": "" @@ -28458,9 +29334,9 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:354", + "location": "imgui:385", "namespace": "ImGui", - "ov_cimguiname": "igSetWindowPosStr", + "ov_cimguiname": "igSetWindowPos_Str", "ret": "void", "signature": "(const char*,const ImVec2,ImGuiCond)", "stname": "" @@ -28488,9 +29364,9 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui_internal:2428", + "location": "imgui_internal:2565", "namespace": "ImGui", - "ov_cimguiname": "igSetWindowPosWindowPtr", + "ov_cimguiname": "igSetWindowPos_WindowPtr", "ret": "void", "signature": "(ImGuiWindow*,const ImVec2,ImGuiCond)", "stname": "" @@ -28516,9 +29392,9 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:350", + "location": "imgui:381", "namespace": "ImGui", - "ov_cimguiname": "igSetWindowSizeVec2", + "ov_cimguiname": "igSetWindowSize_Vec2", "ret": "void", "signature": "(const ImVec2,ImGuiCond)", "stname": "" @@ -28546,9 +29422,9 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:355", + "location": "imgui:386", "namespace": "ImGui", - "ov_cimguiname": "igSetWindowSizeStr", + "ov_cimguiname": "igSetWindowSize_Str", "ret": "void", "signature": "(const char*,const ImVec2,ImGuiCond)", "stname": "" @@ -28576,9 +29452,9 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui_internal:2429", + "location": "imgui_internal:2566", "namespace": "ImGui", - "ov_cimguiname": "igSetWindowSizeWindowPtr", + "ov_cimguiname": "igSetWindowSize_WindowPtr", "ret": "void", "signature": "(ImGuiWindow*,const ImVec2,ImGuiCond)", "stname": "" @@ -28622,7 +29498,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "imgui_internal:2787", + "location": "imgui_internal:2955", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -28672,7 +29548,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", - "location": "imgui_internal:2788", + "location": "imgui_internal:2956", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -28696,7 +29572,7 @@ "p_open": "NULL" }, "funcname": "ShowAboutWindow", - "location": "imgui:287", + "location": "imgui:317", "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -28720,7 +29596,7 @@ "p_open": "NULL" }, "funcname": "ShowDemoWindow", - "location": "imgui:285", + "location": "imgui:315", "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -28728,6 +29604,28 @@ "stname": "" } ], + "igShowFontAtlas": [ + { + "args": "(ImFontAtlas* atlas)", + "argsT": [ + { + "name": "atlas", + "type": "ImFontAtlas*" + } + ], + "argsoriginal": "(ImFontAtlas* atlas)", + "call_args": "(atlas)", + "cimguiname": "igShowFontAtlas", + "defaults": {}, + "funcname": "ShowFontAtlas", + "location": "imgui_internal:2968", + "namespace": "ImGui", + "ov_cimguiname": "igShowFontAtlas", + "ret": "void", + "signature": "(ImFontAtlas*)", + "stname": "" + } + ], "igShowFontSelector": [ { "args": "(const char* label)", @@ -28742,7 +29640,7 @@ "cimguiname": "igShowFontSelector", "defaults": {}, "funcname": "ShowFontSelector", - "location": "imgui:290", + "location": "imgui:320", "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -28766,7 +29664,7 @@ "p_open": "NULL" }, "funcname": "ShowMetricsWindow", - "location": "imgui:286", + "location": "imgui:316", "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -28790,7 +29688,7 @@ "ref": "NULL" }, "funcname": "ShowStyleEditor", - "location": "imgui:288", + "location": "imgui:318", "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -28812,7 +29710,7 @@ "cimguiname": "igShowStyleSelector", "defaults": {}, "funcname": "ShowStyleSelector", - "location": "imgui:289", + "location": "imgui:319", "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -28829,7 +29727,7 @@ "cimguiname": "igShowUserGuide", "defaults": {}, "funcname": "ShowUserGuide", - "location": "imgui:291", + "location": "imgui:321", "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -28859,7 +29757,7 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", - "location": "imgui_internal:2516", + "location": "imgui_internal:2651", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -28881,7 +29779,7 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", - "location": "imgui_internal:2447", + "location": "imgui_internal:2584", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -28928,7 +29826,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui:533", + "location": "imgui:568", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -28982,7 +29880,7 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", - "location": "imgui_internal:2747", + "location": "imgui_internal:2915", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -29027,7 +29925,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui:529", + "location": "imgui:564", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -29072,7 +29970,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui:530", + "location": "imgui:565", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -29117,7 +30015,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui:531", + "location": "imgui:566", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -29162,7 +30060,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui:532", + "location": "imgui:567", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -29207,7 +30105,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui:534", + "location": "imgui:569", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -29252,7 +30150,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui:535", + "location": "imgui:570", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -29297,7 +30195,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui:536", + "location": "imgui:571", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -29342,7 +30240,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui:537", + "location": "imgui:572", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -29391,7 +30289,7 @@ "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui:538", + "location": "imgui:573", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -29444,7 +30342,7 @@ "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui:539", + "location": "imgui:574", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -29466,7 +30364,7 @@ "cimguiname": "igSmallButton", "defaults": {}, "funcname": "SmallButton", - "location": "imgui:477", + "location": "imgui:512", "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -29483,7 +30381,7 @@ "cimguiname": "igSpacing", "defaults": {}, "funcname": "Spacing", - "location": "imgui:421", + "location": "imgui:452", "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -29540,7 +30438,7 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "imgui_internal:2748", + "location": "imgui_internal:2916", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -29562,7 +30460,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", - "location": "imgui_internal:2451", + "location": "imgui_internal:2588", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -29592,7 +30490,7 @@ "cimguiname": "igStartMouseMovingWindowOrNode", "defaults": {}, "funcname": "StartMouseMovingWindowOrNode", - "location": "imgui_internal:2452", + "location": "imgui_internal:2589", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindowOrNode", "ret": "void", @@ -29616,7 +30514,7 @@ "dst": "NULL" }, "funcname": "StyleColorsClassic", - "location": "imgui:297", + "location": "imgui:327", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -29640,7 +30538,7 @@ "dst": "NULL" }, "funcname": "StyleColorsDark", - "location": "imgui:295", + "location": "imgui:325", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -29664,7 +30562,7 @@ "dst": "NULL" }, "funcname": "StyleColorsLight", - "location": "imgui:296", + "location": "imgui:326", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -29694,7 +30592,7 @@ "cimguiname": "igTabBarAddTab", "defaults": {}, "funcname": "TabBarAddTab", - "location": "imgui_internal:2688", + "location": "imgui_internal:2854", "namespace": "ImGui", "ov_cimguiname": "igTabBarAddTab", "ret": "void", @@ -29720,7 +30618,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", - "location": "imgui_internal:2690", + "location": "imgui_internal:2856", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -29742,7 +30640,7 @@ "cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "defaults": {}, "funcname": "TabBarFindMostRecentlySelectedTabForActiveWindow", - "location": "imgui_internal:2687", + "location": "imgui_internal:2853", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "ret": "ImGuiTabItem*", @@ -29768,7 +30666,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", - "location": "imgui_internal:2686", + "location": "imgui_internal:2852", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -29790,7 +30688,7 @@ "cimguiname": "igTabBarProcessReorder", "defaults": {}, "funcname": "TabBarProcessReorder", - "location": "imgui_internal:2692", + "location": "imgui_internal:2859", "namespace": "ImGui", "ov_cimguiname": "igTabBarProcessReorder", "ret": "bool", @@ -29800,7 +30698,7 @@ ], "igTabBarQueueReorder": [ { - "args": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir)", + "args": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset)", "argsT": [ { "name": "tab_bar", @@ -29811,16 +30709,16 @@ "type": "const ImGuiTabItem*" }, { - "name": "dir", + "name": "offset", "type": "int" } ], - "argsoriginal": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int dir)", - "call_args": "(tab_bar,tab,dir)", + "argsoriginal": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset)", + "call_args": "(tab_bar,tab,offset)", "cimguiname": "igTabBarQueueReorder", "defaults": {}, "funcname": "TabBarQueueReorder", - "location": "imgui_internal:2691", + "location": "imgui_internal:2857", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", @@ -29828,6 +30726,36 @@ "stname": "" } ], + "igTabBarQueueReorderFromMousePos": [ + { + "args": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + }, + { + "name": "tab", + "type": "const ImGuiTabItem*" + }, + { + "name": "mouse_pos", + "type": "ImVec2" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos)", + "call_args": "(tab_bar,tab,mouse_pos)", + "cimguiname": "igTabBarQueueReorderFromMousePos", + "defaults": {}, + "funcname": "TabBarQueueReorderFromMousePos", + "location": "imgui_internal:2858", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarQueueReorderFromMousePos", + "ret": "void", + "signature": "(ImGuiTabBar*,const ImGuiTabItem*,ImVec2)", + "stname": "" + } + ], "igTabBarRemoveTab": [ { "args": "(ImGuiTabBar* tab_bar,ImGuiID tab_id)", @@ -29846,7 +30774,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", - "location": "imgui_internal:2689", + "location": "imgui_internal:2855", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -29880,7 +30808,7 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", - "location": "imgui_internal:2695", + "location": "imgui_internal:2862", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -29908,7 +30836,7 @@ "flags": "0" }, "funcname": "TabItemButton", - "location": "imgui:755", + "location": "imgui:801", "namespace": "ImGui", "ov_cimguiname": "igTabItemButton", "ret": "bool", @@ -29938,7 +30866,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:2694", + "location": "imgui_internal:2861", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize", @@ -29977,7 +30905,7 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", - "location": "imgui_internal:2693", + "location": "imgui_internal:2860", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -30035,7 +30963,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", - "location": "imgui_internal:2696", + "location": "imgui_internal:2863", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "void", @@ -30057,7 +30985,7 @@ "cimguiname": "igTableBeginApplyRequests", "defaults": {}, "funcname": "TableBeginApplyRequests", - "location": "imgui_internal:2648", + "location": "imgui_internal:2813", "namespace": "ImGui", "ov_cimguiname": "igTableBeginApplyRequests", "ret": "void", @@ -30083,7 +31011,7 @@ "cimguiname": "igTableBeginCell", "defaults": {}, "funcname": "TableBeginCell", - "location": "imgui_internal:2663", + "location": "imgui_internal:2828", "namespace": "ImGui", "ov_cimguiname": "igTableBeginCell", "ret": "void", @@ -30109,7 +31037,7 @@ "cimguiname": "igTableBeginInitMemory", "defaults": {}, "funcname": "TableBeginInitMemory", - "location": "imgui_internal:2647", + "location": "imgui_internal:2812", "namespace": "ImGui", "ov_cimguiname": "igTableBeginInitMemory", "ret": "void", @@ -30131,7 +31059,7 @@ "cimguiname": "igTableBeginRow", "defaults": {}, "funcname": "TableBeginRow", - "location": "imgui_internal:2661", + "location": "imgui_internal:2826", "namespace": "ImGui", "ov_cimguiname": "igTableBeginRow", "ret": "void", @@ -30153,7 +31081,7 @@ "cimguiname": "igTableDrawBorders", "defaults": {}, "funcname": "TableDrawBorders", - "location": "imgui_internal:2653", + "location": "imgui_internal:2818", "namespace": "ImGui", "ov_cimguiname": "igTableDrawBorders", "ret": "void", @@ -30175,7 +31103,7 @@ "cimguiname": "igTableDrawContextMenu", "defaults": {}, "funcname": "TableDrawContextMenu", - "location": "imgui_internal:2654", + "location": "imgui_internal:2819", "namespace": "ImGui", "ov_cimguiname": "igTableDrawContextMenu", "ret": "void", @@ -30197,7 +31125,7 @@ "cimguiname": "igTableEndCell", "defaults": {}, "funcname": "TableEndCell", - "location": "imgui_internal:2664", + "location": "imgui_internal:2829", "namespace": "ImGui", "ov_cimguiname": "igTableEndCell", "ret": "void", @@ -30219,7 +31147,7 @@ "cimguiname": "igTableEndRow", "defaults": {}, "funcname": "TableEndRow", - "location": "imgui_internal:2662", + "location": "imgui_internal:2827", "namespace": "ImGui", "ov_cimguiname": "igTableEndRow", "ret": "void", @@ -30241,7 +31169,7 @@ "cimguiname": "igTableFindByID", "defaults": {}, "funcname": "TableFindByID", - "location": "imgui_internal:2645", + "location": "imgui_internal:2810", "namespace": "ImGui", "ov_cimguiname": "igTableFindByID", "ret": "ImGuiTable*", @@ -30267,7 +31195,7 @@ "cimguiname": "igTableFixColumnSortDirection", "defaults": {}, "funcname": "TableFixColumnSortDirection", - "location": "imgui_internal:2659", + "location": "imgui_internal:2824", "namespace": "ImGui", "ov_cimguiname": "igTableFixColumnSortDirection", "ret": "void", @@ -30284,7 +31212,7 @@ "cimguiname": "igTableGcCompactSettings", "defaults": {}, "funcname": "TableGcCompactSettings", - "location": "imgui_internal:2673", + "location": "imgui_internal:2839", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactSettings", "ret": "void", @@ -30306,12 +31234,32 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:2672", + "location": "imgui_internal:2837", "namespace": "ImGui", - "ov_cimguiname": "igTableGcCompactTransientBuffers", + "ov_cimguiname": "igTableGcCompactTransientBuffers_TablePtr", "ret": "void", "signature": "(ImGuiTable*)", "stname": "" + }, + { + "args": "(ImGuiTableTempData* table)", + "argsT": [ + { + "name": "table", + "type": "ImGuiTableTempData*" + } + ], + "argsoriginal": "(ImGuiTableTempData* table)", + "call_args": "(table)", + "cimguiname": "igTableGcCompactTransientBuffers", + "defaults": {}, + "funcname": "TableGcCompactTransientBuffers", + "location": "imgui_internal:2838", + "namespace": "ImGui", + "ov_cimguiname": "igTableGcCompactTransientBuffers_TableTempDataPtr", + "ret": "void", + "signature": "(ImGuiTableTempData*)", + "stname": "" } ], "igTableGetBoundSettings": [ @@ -30328,7 +31276,7 @@ "cimguiname": "igTableGetBoundSettings", "defaults": {}, "funcname": "TableGetBoundSettings", - "location": "imgui_internal:2679", + "location": "imgui_internal:2845", "namespace": "ImGui", "ov_cimguiname": "igTableGetBoundSettings", "ret": "ImGuiTableSettings*", @@ -30358,7 +31306,7 @@ "cimguiname": "igTableGetCellBgRect", "defaults": {}, "funcname": "TableGetCellBgRect", - "location": "imgui_internal:2665", + "location": "imgui_internal:2830", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTableGetCellBgRect", @@ -30376,7 +31324,7 @@ "cimguiname": "igTableGetColumnCount", "defaults": {}, "funcname": "TableGetColumnCount", - "location": "imgui:731", + "location": "imgui:776", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnCount", "ret": "int", @@ -30400,7 +31348,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnFlags", - "location": "imgui:735", + "location": "imgui:780", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnFlags", "ret": "ImGuiTableColumnFlags", @@ -30417,7 +31365,7 @@ "cimguiname": "igTableGetColumnIndex", "defaults": {}, "funcname": "TableGetColumnIndex", - "location": "imgui:732", + "location": "imgui:777", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnIndex", "ret": "int", @@ -30441,9 +31389,9 @@ "column_n": "-1" }, "funcname": "TableGetColumnName", - "location": "imgui:734", + "location": "imgui:779", "namespace": "ImGui", - "ov_cimguiname": "igTableGetColumnNameInt", + "ov_cimguiname": "igTableGetColumnName_Int", "ret": "const char*", "signature": "(int)", "stname": "" @@ -30465,9 +31413,9 @@ "cimguiname": "igTableGetColumnName", "defaults": {}, "funcname": "TableGetColumnName", - "location": "imgui_internal:2666", + "location": "imgui_internal:2831", "namespace": "ImGui", - "ov_cimguiname": "igTableGetColumnNameTablePtr", + "ov_cimguiname": "igTableGetColumnName_TablePtr", "ret": "const char*", "signature": "(const ImGuiTable*,int)", "stname": "" @@ -30487,7 +31435,7 @@ "cimguiname": "igTableGetColumnNextSortDirection", "defaults": {}, "funcname": "TableGetColumnNextSortDirection", - "location": "imgui_internal:2658", + "location": "imgui_internal:2823", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnNextSortDirection", "ret": "ImGuiSortDirection", @@ -30519,7 +31467,7 @@ "instance_no": "0" }, "funcname": "TableGetColumnResizeID", - "location": "imgui_internal:2667", + "location": "imgui_internal:2832", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnResizeID", "ret": "ImGuiID", @@ -30545,7 +31493,7 @@ "cimguiname": "igTableGetColumnWidthAuto", "defaults": {}, "funcname": "TableGetColumnWidthAuto", - "location": "imgui_internal:2660", + "location": "imgui_internal:2825", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnWidthAuto", "ret": "float", @@ -30562,7 +31510,7 @@ "cimguiname": "igTableGetHeaderRowHeight", "defaults": {}, "funcname": "TableGetHeaderRowHeight", - "location": "imgui_internal:2639", + "location": "imgui_internal:2804", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderRowHeight", "ret": "float", @@ -30579,7 +31527,7 @@ "cimguiname": "igTableGetHoveredColumn", "defaults": {}, "funcname": "TableGetHoveredColumn", - "location": "imgui_internal:2638", + "location": "imgui_internal:2803", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredColumn", "ret": "int", @@ -30605,7 +31553,7 @@ "cimguiname": "igTableGetMaxColumnWidth", "defaults": {}, "funcname": "TableGetMaxColumnWidth", - "location": "imgui_internal:2668", + "location": "imgui_internal:2833", "namespace": "ImGui", "ov_cimguiname": "igTableGetMaxColumnWidth", "ret": "float", @@ -30622,7 +31570,7 @@ "cimguiname": "igTableGetRowIndex", "defaults": {}, "funcname": "TableGetRowIndex", - "location": "imgui:733", + "location": "imgui:778", "namespace": "ImGui", "ov_cimguiname": "igTableGetRowIndex", "ret": "int", @@ -30639,7 +31587,7 @@ "cimguiname": "igTableGetSortSpecs", "defaults": {}, "funcname": "TableGetSortSpecs", - "location": "imgui:728", + "location": "imgui:772", "namespace": "ImGui", "ov_cimguiname": "igTableGetSortSpecs", "ret": "ImGuiTableSortSpecs*", @@ -30661,7 +31609,7 @@ "cimguiname": "igTableHeader", "defaults": {}, "funcname": "TableHeader", - "location": "imgui:721", + "location": "imgui:764", "namespace": "ImGui", "ov_cimguiname": "igTableHeader", "ret": "void", @@ -30678,7 +31626,7 @@ "cimguiname": "igTableHeadersRow", "defaults": {}, "funcname": "TableHeadersRow", - "location": "imgui:720", + "location": "imgui:763", "namespace": "ImGui", "ov_cimguiname": "igTableHeadersRow", "ret": "void", @@ -30700,7 +31648,7 @@ "cimguiname": "igTableLoadSettings", "defaults": {}, "funcname": "TableLoadSettings", - "location": "imgui_internal:2676", + "location": "imgui_internal:2842", "namespace": "ImGui", "ov_cimguiname": "igTableLoadSettings", "ret": "void", @@ -30722,7 +31670,7 @@ "cimguiname": "igTableMergeDrawChannels", "defaults": {}, "funcname": "TableMergeDrawChannels", - "location": "imgui_internal:2655", + "location": "imgui_internal:2820", "namespace": "ImGui", "ov_cimguiname": "igTableMergeDrawChannels", "ret": "void", @@ -30739,7 +31687,7 @@ "cimguiname": "igTableNextColumn", "defaults": {}, "funcname": "TableNextColumn", - "location": "imgui:708", + "location": "imgui:750", "namespace": "ImGui", "ov_cimguiname": "igTableNextColumn", "ret": "bool", @@ -30768,7 +31716,7 @@ "row_flags": "0" }, "funcname": "TableNextRow", - "location": "imgui:707", + "location": "imgui:749", "namespace": "ImGui", "ov_cimguiname": "igTableNextRow", "ret": "void", @@ -30792,7 +31740,7 @@ "column_n": "-1" }, "funcname": "TableOpenContextMenu", - "location": "imgui_internal:2634", + "location": "imgui_internal:2800", "namespace": "ImGui", "ov_cimguiname": "igTableOpenContextMenu", "ret": "void", @@ -30809,7 +31757,7 @@ "cimguiname": "igTablePopBackgroundChannel", "defaults": {}, "funcname": "TablePopBackgroundChannel", - "location": "imgui_internal:2641", + "location": "imgui_internal:2806", "namespace": "ImGui", "ov_cimguiname": "igTablePopBackgroundChannel", "ret": "void", @@ -30826,7 +31774,7 @@ "cimguiname": "igTablePushBackgroundChannel", "defaults": {}, "funcname": "TablePushBackgroundChannel", - "location": "imgui_internal:2640", + "location": "imgui_internal:2805", "namespace": "ImGui", "ov_cimguiname": "igTablePushBackgroundChannel", "ret": "void", @@ -30848,7 +31796,7 @@ "cimguiname": "igTableRemove", "defaults": {}, "funcname": "TableRemove", - "location": "imgui_internal:2671", + "location": "imgui_internal:2836", "namespace": "ImGui", "ov_cimguiname": "igTableRemove", "ret": "void", @@ -30870,7 +31818,7 @@ "cimguiname": "igTableResetSettings", "defaults": {}, "funcname": "TableResetSettings", - "location": "imgui_internal:2678", + "location": "imgui_internal:2844", "namespace": "ImGui", "ov_cimguiname": "igTableResetSettings", "ret": "void", @@ -30892,7 +31840,7 @@ "cimguiname": "igTableSaveSettings", "defaults": {}, "funcname": "TableSaveSettings", - "location": "imgui_internal:2677", + "location": "imgui_internal:2843", "namespace": "ImGui", "ov_cimguiname": "igTableSaveSettings", "ret": "void", @@ -30924,7 +31872,7 @@ "column_n": "-1" }, "funcname": "TableSetBgColor", - "location": "imgui:736", + "location": "imgui:782", "namespace": "ImGui", "ov_cimguiname": "igTableSetBgColor", "ret": "void", @@ -30934,23 +31882,23 @@ ], "igTableSetColumnEnabled": [ { - "args": "(int column_n,bool enabled)", + "args": "(int column_n,bool v)", "argsT": [ { "name": "column_n", "type": "int" }, { - "name": "enabled", + "name": "v", "type": "bool" } ], - "argsoriginal": "(int column_n,bool enabled)", - "call_args": "(column_n,enabled)", + "argsoriginal": "(int column_n,bool v)", + "call_args": "(column_n,v)", "cimguiname": "igTableSetColumnEnabled", "defaults": {}, "funcname": "TableSetColumnEnabled", - "location": "imgui_internal:2635", + "location": "imgui:781", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnEnabled", "ret": "void", @@ -30972,7 +31920,7 @@ "cimguiname": "igTableSetColumnIndex", "defaults": {}, "funcname": "TableSetColumnIndex", - "location": "imgui:709", + "location": "imgui:751", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnIndex", "ret": "bool", @@ -31002,7 +31950,7 @@ "cimguiname": "igTableSetColumnSortDirection", "defaults": {}, "funcname": "TableSetColumnSortDirection", - "location": "imgui_internal:2637", + "location": "imgui_internal:2802", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnSortDirection", "ret": "void", @@ -31028,7 +31976,7 @@ "cimguiname": "igTableSetColumnWidth", "defaults": {}, "funcname": "TableSetColumnWidth", - "location": "imgui_internal:2636", + "location": "imgui_internal:2801", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidth", "ret": "void", @@ -31050,7 +31998,7 @@ "cimguiname": "igTableSetColumnWidthAutoAll", "defaults": {}, "funcname": "TableSetColumnWidthAutoAll", - "location": "imgui_internal:2670", + "location": "imgui_internal:2835", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoAll", "ret": "void", @@ -31076,7 +32024,7 @@ "cimguiname": "igTableSetColumnWidthAutoSingle", "defaults": {}, "funcname": "TableSetColumnWidthAutoSingle", - "location": "imgui_internal:2669", + "location": "imgui_internal:2834", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoSingle", "ret": "void", @@ -31102,7 +32050,7 @@ "cimguiname": "igTableSettingsCreate", "defaults": {}, "funcname": "TableSettingsCreate", - "location": "imgui_internal:2681", + "location": "imgui_internal:2847", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsCreate", "ret": "ImGuiTableSettings*", @@ -31124,7 +32072,7 @@ "cimguiname": "igTableSettingsFindByID", "defaults": {}, "funcname": "TableSettingsFindByID", - "location": "imgui_internal:2682", + "location": "imgui_internal:2848", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsFindByID", "ret": "ImGuiTableSettings*", @@ -31146,7 +32094,7 @@ "cimguiname": "igTableSettingsInstallHandler", "defaults": {}, "funcname": "TableSettingsInstallHandler", - "location": "imgui_internal:2680", + "location": "imgui_internal:2846", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsInstallHandler", "ret": "void", @@ -31184,7 +32132,7 @@ "user_id": "0" }, "funcname": "TableSetupColumn", - "location": "imgui:718", + "location": "imgui:761", "namespace": "ImGui", "ov_cimguiname": "igTableSetupColumn", "ret": "void", @@ -31206,7 +32154,7 @@ "cimguiname": "igTableSetupDrawChannels", "defaults": {}, "funcname": "TableSetupDrawChannels", - "location": "imgui_internal:2649", + "location": "imgui_internal:2814", "namespace": "ImGui", "ov_cimguiname": "igTableSetupDrawChannels", "ret": "void", @@ -31232,7 +32180,7 @@ "cimguiname": "igTableSetupScrollFreeze", "defaults": {}, "funcname": "TableSetupScrollFreeze", - "location": "imgui:719", + "location": "imgui:762", "namespace": "ImGui", "ov_cimguiname": "igTableSetupScrollFreeze", "ret": "void", @@ -31254,7 +32202,7 @@ "cimguiname": "igTableSortSpecsBuild", "defaults": {}, "funcname": "TableSortSpecsBuild", - "location": "imgui_internal:2657", + "location": "imgui_internal:2822", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsBuild", "ret": "void", @@ -31276,7 +32224,7 @@ "cimguiname": "igTableSortSpecsSanitize", "defaults": {}, "funcname": "TableSortSpecsSanitize", - "location": "imgui_internal:2656", + "location": "imgui_internal:2821", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsSanitize", "ret": "void", @@ -31298,7 +32246,7 @@ "cimguiname": "igTableUpdateBorders", "defaults": {}, "funcname": "TableUpdateBorders", - "location": "imgui_internal:2651", + "location": "imgui_internal:2816", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateBorders", "ret": "void", @@ -31320,7 +32268,7 @@ "cimguiname": "igTableUpdateColumnsWeightFromWidth", "defaults": {}, "funcname": "TableUpdateColumnsWeightFromWidth", - "location": "imgui_internal:2652", + "location": "imgui_internal:2817", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateColumnsWeightFromWidth", "ret": "void", @@ -31342,7 +32290,7 @@ "cimguiname": "igTableUpdateLayout", "defaults": {}, "funcname": "TableUpdateLayout", - "location": "imgui_internal:2650", + "location": "imgui_internal:2815", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateLayout", "ret": "void", @@ -31364,7 +32312,7 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", - "location": "imgui_internal:2775", + "location": "imgui_internal:2943", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -31417,7 +32365,7 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "imgui_internal:2774", + "location": "imgui_internal:2942", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -31459,7 +32407,7 @@ "cimguiname": "igTempInputText", "defaults": {}, "funcname": "TempInputText", - "location": "imgui_internal:2773", + "location": "imgui_internal:2941", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -31486,7 +32434,7 @@ "defaults": {}, "funcname": "Text", "isvararg": "...)", - "location": "imgui:460", + "location": "imgui:495", "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -31517,7 +32465,7 @@ "defaults": {}, "funcname": "TextColored", "isvararg": "...)", - "location": "imgui:462", + "location": "imgui:497", "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -31547,7 +32495,7 @@ "cimguiname": "igTextColoredV", "defaults": {}, "funcname": "TextColoredV", - "location": "imgui:463", + "location": "imgui:498", "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -31574,7 +32522,7 @@ "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", - "location": "imgui:464", + "location": "imgui:499", "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -31600,7 +32548,7 @@ "cimguiname": "igTextDisabledV", "defaults": {}, "funcname": "TextDisabledV", - "location": "imgui:465", + "location": "imgui:500", "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -31633,7 +32581,7 @@ "text_end": "NULL" }, "funcname": "TextEx", - "location": "imgui_internal:2729", + "location": "imgui_internal:2896", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -31661,7 +32609,7 @@ "text_end": "NULL" }, "funcname": "TextUnformatted", - "location": "imgui:459", + "location": "imgui:494", "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -31687,7 +32635,7 @@ "cimguiname": "igTextV", "defaults": {}, "funcname": "TextV", - "location": "imgui:461", + "location": "imgui:496", "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -31714,7 +32662,7 @@ "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", - "location": "imgui:466", + "location": "imgui:501", "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -31740,7 +32688,7 @@ "cimguiname": "igTextWrappedV", "defaults": {}, "funcname": "TextWrappedV", - "location": "imgui:467", + "location": "imgui:502", "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -31770,7 +32718,7 @@ "cimguiname": "igTranslateWindowsInViewport", "defaults": {}, "funcname": "TranslateWindowsInViewport", - "location": "imgui_internal:2462", + "location": "imgui_internal:2599", "namespace": "ImGui", "ov_cimguiname": "igTranslateWindowsInViewport", "ret": "void", @@ -31792,9 +32740,9 @@ "cimguiname": "igTreeNode", "defaults": {}, "funcname": "TreeNode", - "location": "imgui:574", + "location": "imgui:609", "namespace": "ImGui", - "ov_cimguiname": "igTreeNodeStr", + "ov_cimguiname": "igTreeNode_Str", "ret": "bool", "signature": "(const char*)", "stname": "" @@ -31821,9 +32769,9 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:575", + "location": "imgui:610", "namespace": "ImGui", - "ov_cimguiname": "igTreeNodeStrStr", + "ov_cimguiname": "igTreeNode_StrStr", "ret": "bool", "signature": "(const char*,const char*,...)", "stname": "" @@ -31850,9 +32798,9 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:576", + "location": "imgui:611", "namespace": "ImGui", - "ov_cimguiname": "igTreeNodePtr", + "ov_cimguiname": "igTreeNode_Ptr", "ret": "bool", "signature": "(const void*,const char*,...)", "stname": "" @@ -31886,7 +32834,7 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "imgui_internal:2749", + "location": "imgui_internal:2917", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -31914,7 +32862,7 @@ "flags": "0" }, "funcname": "TreeNodeBehaviorIsOpen", - "location": "imgui_internal:2750", + "location": "imgui_internal:2918", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehaviorIsOpen", "ret": "bool", @@ -31942,9 +32890,9 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui:579", + "location": "imgui:614", "namespace": "ImGui", - "ov_cimguiname": "igTreeNodeExStr", + "ov_cimguiname": "igTreeNodeEx_Str", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags)", "stname": "" @@ -31975,9 +32923,9 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:580", + "location": "imgui:615", "namespace": "ImGui", - "ov_cimguiname": "igTreeNodeExStrStr", + "ov_cimguiname": "igTreeNodeEx_StrStr", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags,const char*,...)", "stname": "" @@ -32008,9 +32956,9 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:581", + "location": "imgui:616", "namespace": "ImGui", - "ov_cimguiname": "igTreeNodeExPtr", + "ov_cimguiname": "igTreeNodeEx_Ptr", "ret": "bool", "signature": "(const void*,ImGuiTreeNodeFlags,const char*,...)", "stname": "" @@ -32042,9 +32990,9 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:582", + "location": "imgui:617", "namespace": "ImGui", - "ov_cimguiname": "igTreeNodeExVStr", + "ov_cimguiname": "igTreeNodeExV_Str", "ret": "bool", "signature": "(const char*,ImGuiTreeNodeFlags,const char*,va_list)", "stname": "" @@ -32074,9 +33022,9 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:583", + "location": "imgui:618", "namespace": "ImGui", - "ov_cimguiname": "igTreeNodeExVPtr", + "ov_cimguiname": "igTreeNodeExV_Ptr", "ret": "bool", "signature": "(const void*,ImGuiTreeNodeFlags,const char*,va_list)", "stname": "" @@ -32104,9 +33052,9 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:577", + "location": "imgui:612", "namespace": "ImGui", - "ov_cimguiname": "igTreeNodeVStr", + "ov_cimguiname": "igTreeNodeV_Str", "ret": "bool", "signature": "(const char*,const char*,va_list)", "stname": "" @@ -32132,9 +33080,9 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:578", + "location": "imgui:613", "namespace": "ImGui", - "ov_cimguiname": "igTreeNodeVPtr", + "ov_cimguiname": "igTreeNodeV_Ptr", "ret": "bool", "signature": "(const void*,const char*,va_list)", "stname": "" @@ -32149,7 +33097,7 @@ "cimguiname": "igTreePop", "defaults": {}, "funcname": "TreePop", - "location": "imgui:586", + "location": "imgui:621", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -32171,9 +33119,9 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:584", + "location": "imgui:619", "namespace": "ImGui", - "ov_cimguiname": "igTreePushStr", + "ov_cimguiname": "igTreePush_Str", "ret": "void", "signature": "(const char*)", "stname": "" @@ -32193,9 +33141,9 @@ "ptr_id": "NULL" }, "funcname": "TreePush", - "location": "imgui:585", + "location": "imgui:620", "namespace": "ImGui", - "ov_cimguiname": "igTreePushPtr", + "ov_cimguiname": "igTreePush_Ptr", "ret": "void", "signature": "(const void*)", "stname": "" @@ -32215,7 +33163,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", - "location": "imgui_internal:2751", + "location": "imgui_internal:2919", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -32239,7 +33187,7 @@ "indent_w": "0.0f" }, "funcname": "Unindent", - "location": "imgui:424", + "location": "imgui:455", "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -32256,7 +33204,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "imgui_internal:2450", + "location": "imgui_internal:2587", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -32273,7 +33221,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "imgui_internal:2454", + "location": "imgui_internal:2591", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -32290,7 +33238,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "imgui_internal:2453", + "location": "imgui_internal:2590", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -32307,7 +33255,7 @@ "cimguiname": "igUpdatePlatformWindows", "defaults": {}, "funcname": "UpdatePlatformWindows", - "location": "imgui:918", + "location": "imgui:977", "namespace": "ImGui", "ov_cimguiname": "igUpdatePlatformWindows", "ret": "void", @@ -32337,7 +33285,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", - "location": "imgui_internal:2422", + "location": "imgui_internal:2560", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -32386,7 +33334,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui:540", + "location": "imgui:575", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -32435,7 +33383,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui:541", + "location": "imgui:576", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -32488,7 +33436,7 @@ "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui:542", + "location": "imgui:577", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -32514,9 +33462,9 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:618", + "location": "imgui:653", "namespace": "ImGui", - "ov_cimguiname": "igValueBool", + "ov_cimguiname": "igValue_Bool", "ret": "void", "signature": "(const char*,bool)", "stname": "" @@ -32538,9 +33486,9 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:619", + "location": "imgui:654", "namespace": "ImGui", - "ov_cimguiname": "igValueInt", + "ov_cimguiname": "igValue_Int", "ret": "void", "signature": "(const char*,int)", "stname": "" @@ -32562,9 +33510,9 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:620", + "location": "imgui:655", "namespace": "ImGui", - "ov_cimguiname": "igValueUint", + "ov_cimguiname": "igValue_Uint", "ret": "void", "signature": "(const char*,unsigned int)", "stname": "" @@ -32592,9 +33540,9 @@ "float_format": "NULL" }, "funcname": "Value", - "location": "imgui:621", + "location": "imgui:656", "namespace": "ImGui", - "ov_cimguiname": "igValueFloat", + "ov_cimguiname": "igValue_Float", "ret": "void", "signature": "(const char*,float,const char*)", "stname": "" diff --git a/src/CodeGenerator/definitions/cimgui/structs_and_enums.json b/src/CodeGenerator/definitions/cimgui/structs_and_enums.json index eb8b5f09..5c846ad9 100644 --- a/src/CodeGenerator/definitions/cimgui/structs_and_enums.json +++ b/src/CodeGenerator/definitions/cimgui/structs_and_enums.json @@ -121,6 +121,28 @@ "value": "1 << 2" } ], + "ImGuiActivateFlags_": [ + { + "calc_value": 0, + "name": "ImGuiActivateFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiActivateFlags_PreferInput", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiActivateFlags_PreferTweak", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiActivateFlags_TryToPreserveState", + "value": "1 << 2" + } + ], "ImGuiAxis": [ { "calc_value": -1, @@ -231,11 +253,6 @@ "name": "ImGuiButtonFlags_DontClosePopups", "value": "1 << 13" }, - { - "calc_value": 16384, - "name": "ImGuiButtonFlags_Disabled", - "value": "1 << 14" - }, { "calc_value": 32768, "name": "ImGuiButtonFlags_AlignTextBaseLine", @@ -709,30 +726,37 @@ }, { "calc_value": 177209344, - "name": "ImGuiColorEditFlags__OptionsDefault", + "name": "ImGuiColorEditFlags_DefaultOptions_", "value": "ImGuiColorEditFlags_Uint8 | ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_InputRGB | ImGuiColorEditFlags_PickerHueBar" }, { "calc_value": 7340032, - "name": "ImGuiColorEditFlags__DisplayMask", + "name": "ImGuiColorEditFlags_DisplayMask_", "value": "ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_DisplayHSV | ImGuiColorEditFlags_DisplayHex" }, { "calc_value": 25165824, - "name": "ImGuiColorEditFlags__DataTypeMask", + "name": "ImGuiColorEditFlags_DataTypeMask_", "value": "ImGuiColorEditFlags_Uint8 | ImGuiColorEditFlags_Float" }, { "calc_value": 100663296, - "name": "ImGuiColorEditFlags__PickerMask", + "name": "ImGuiColorEditFlags_PickerMask_", "value": "ImGuiColorEditFlags_PickerHueWheel | ImGuiColorEditFlags_PickerHueBar" }, { "calc_value": 402653184, - "name": "ImGuiColorEditFlags__InputMask", + "name": "ImGuiColorEditFlags_InputMask_", "value": "ImGuiColorEditFlags_InputRGB | ImGuiColorEditFlags_InputHSV" } ], + "ImGuiComboFlagsPrivate_": [ + { + "calc_value": 1048576, + "name": "ImGuiComboFlags_CustomPreview", + "value": "1 << 20" + } + ], "ImGuiComboFlags_": [ { "calc_value": 0, @@ -1097,36 +1121,41 @@ }, { "calc_value": 2097152, - "name": "ImGuiDockNodeFlags_NoResizeX", + "name": "ImGuiDockNodeFlags_NoDockingOverEmpty", "value": "1 << 21" }, { "calc_value": 4194304, - "name": "ImGuiDockNodeFlags_NoResizeY", + "name": "ImGuiDockNodeFlags_NoResizeX", "value": "1 << 22" }, + { + "calc_value": 8388608, + "name": "ImGuiDockNodeFlags_NoResizeY", + "value": "1 << 23" + }, { "calc_value": -1, "name": "ImGuiDockNodeFlags_SharedFlagsInheritMask_", "value": "~0" }, { - "calc_value": 6291488, + "calc_value": 12582944, "name": "ImGuiDockNodeFlags_NoResizeFlagsMask_", "value": "ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" }, { - "calc_value": 6421616, + "calc_value": 12713072, "name": "ImGuiDockNodeFlags_LocalFlagsMask_", "value": "ImGuiDockNodeFlags_NoSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking" }, { - "calc_value": 6420592, + "calc_value": 12712048, "name": "ImGuiDockNodeFlags_LocalFlagsTransferMask_", "value": "ImGuiDockNodeFlags_LocalFlagsMask_ & ~ImGuiDockNodeFlags_DockSpace" }, { - "calc_value": 6421536, + "calc_value": 12712992, "name": "ImGuiDockNodeFlags_SavedFlagsMask_", "value": "ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking" } @@ -1268,6 +1297,11 @@ "name": "ImGuiFocusedFlags_AnyWindow", "value": "1 << 2" }, + { + "calc_value": 8, + "name": "ImGuiFocusedFlags_DockHierarchy", + "value": "1 << 3" + }, { "calc_value": 3, "name": "ImGuiFocusedFlags_RootAndChildWindows", @@ -1297,9 +1331,14 @@ }, { "calc_value": 8, - "name": "ImGuiHoveredFlags_AllowWhenBlockedByPopup", + "name": "ImGuiHoveredFlags_DockHierarchy", "value": "1 << 3" }, + { + "calc_value": 16, + "name": "ImGuiHoveredFlags_AllowWhenBlockedByPopup", + "value": "1 << 4" + }, { "calc_value": 32, "name": "ImGuiHoveredFlags_AllowWhenBlockedByActiveItem", @@ -1316,7 +1355,7 @@ "value": "1 << 7" }, { - "calc_value": 104, + "calc_value": 112, "name": "ImGuiHoveredFlags_RectOnly", "value": "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" }, @@ -1386,8 +1425,30 @@ }, { "calc_value": 5, - "name": "ImGuiInputSource_COUNT", + "name": "ImGuiInputSource_Clipboard", "value": "5" + }, + { + "calc_value": 6, + "name": "ImGuiInputSource_COUNT", + "value": "6" + } + ], + "ImGuiInputTextFlagsPrivate_": [ + { + "calc_value": 67108864, + "name": "ImGuiInputTextFlags_Multiline", + "value": "1 << 26" + }, + { + "calc_value": 134217728, + "name": "ImGuiInputTextFlags_NoMarkEdited", + "value": "1 << 27" + }, + { + "calc_value": 268435456, + "name": "ImGuiInputTextFlags_MergedItem", + "value": "1 << 28" } ], "ImGuiInputTextFlags_": [ @@ -1495,16 +1556,6 @@ "calc_value": 524288, "name": "ImGuiInputTextFlags_CallbackEdit", "value": "1 << 19" - }, - { - "calc_value": 1048576, - "name": "ImGuiInputTextFlags_Multiline", - "value": "1 << 20" - }, - { - "calc_value": 2097152, - "name": "ImGuiInputTextFlags_NoMarkEdited", - "value": "1 << 21" } ], "ImGuiItemFlags_": [ @@ -1554,9 +1605,9 @@ "value": "1 << 7" }, { - "calc_value": 0, - "name": "ImGuiItemFlags_Default_", - "value": "0" + "calc_value": 256, + "name": "ImGuiItemFlags_Inputable", + "value": "1 << 8" } ], "ImGuiItemStatusFlags_": [ @@ -1604,6 +1655,21 @@ "calc_value": 128, "name": "ImGuiItemStatusFlags_HoveredWindow", "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiItemStatusFlags_FocusedByCode", + "value": "1 << 8" + }, + { + "calc_value": 512, + "name": "ImGuiItemStatusFlags_FocusedByTabbing", + "value": "1 << 9" + }, + { + "calc_value": 768, + "name": "ImGuiItemStatusFlags_Focused", + "value": "ImGuiItemStatusFlags_FocusedByCode | ImGuiItemStatusFlags_FocusedByTabbing" } ], "ImGuiKeyModFlags_": [ @@ -1890,23 +1956,6 @@ "value": "1 << 2" } ], - "ImGuiNavForward": [ - { - "calc_value": 0, - "name": "ImGuiNavForward_None", - "value": "0" - }, - { - "calc_value": 1, - "name": "ImGuiNavForward_ForwardQueued", - "value": "1" - }, - { - "calc_value": 2, - "name": "ImGuiNavForward_ForwardActive", - "value": "2" - } - ], "ImGuiNavHighlightFlags_": [ { "calc_value": 0, @@ -2017,38 +2066,33 @@ }, { "calc_value": 16, - "name": "ImGuiNavInput_KeyMenu_", + "name": "ImGuiNavInput_KeyLeft_", "value": "16" }, { "calc_value": 17, - "name": "ImGuiNavInput_KeyLeft_", + "name": "ImGuiNavInput_KeyRight_", "value": "17" }, { "calc_value": 18, - "name": "ImGuiNavInput_KeyRight_", + "name": "ImGuiNavInput_KeyUp_", "value": "18" }, { "calc_value": 19, - "name": "ImGuiNavInput_KeyUp_", + "name": "ImGuiNavInput_KeyDown_", "value": "19" }, { "calc_value": 20, - "name": "ImGuiNavInput_KeyDown_", - "value": "20" - }, - { - "calc_value": 21, "name": "ImGuiNavInput_COUNT", - "value": "21" + "value": "20" }, { "calc_value": 16, "name": "ImGuiNavInput_InternalStart_", - "value": "ImGuiNavInput_KeyMenu_" + "value": "ImGuiNavInput_KeyLeft_" } ], "ImGuiNavLayer": [ @@ -2108,6 +2152,16 @@ "calc_value": 64, "name": "ImGuiNavMoveFlags_ScrollToEdge", "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiNavMoveFlags_Forwarded", + "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiNavMoveFlags_DebugNoResult", + "value": "1 << 8" } ], "ImGuiNextItemDataFlags_": [ @@ -2315,33 +2369,38 @@ }, { "calc_value": 2097152, - "name": "ImGuiSelectableFlags_SelectOnClick", + "name": "ImGuiSelectableFlags_SelectOnNav", "value": "1 << 21" }, { "calc_value": 4194304, - "name": "ImGuiSelectableFlags_SelectOnRelease", + "name": "ImGuiSelectableFlags_SelectOnClick", "value": "1 << 22" }, { "calc_value": 8388608, - "name": "ImGuiSelectableFlags_SpanAvailWidth", + "name": "ImGuiSelectableFlags_SelectOnRelease", "value": "1 << 23" }, { "calc_value": 16777216, - "name": "ImGuiSelectableFlags_DrawHoveredWhenHeld", + "name": "ImGuiSelectableFlags_SpanAvailWidth", "value": "1 << 24" }, { "calc_value": 33554432, - "name": "ImGuiSelectableFlags_SetNavIdOnHover", + "name": "ImGuiSelectableFlags_DrawHoveredWhenHeld", "value": "1 << 25" }, { "calc_value": 67108864, - "name": "ImGuiSelectableFlags_NoPadWithHalfSpacing", + "name": "ImGuiSelectableFlags_SetNavIdOnHover", "value": "1 << 26" + }, + { + "calc_value": 134217728, + "name": "ImGuiSelectableFlags_NoPadWithHalfSpacing", + "value": "1 << 27" } ], "ImGuiSelectableFlags_": [ @@ -2467,123 +2526,128 @@ }, { "calc_value": 1, - "name": "ImGuiStyleVar_WindowPadding", + "name": "ImGuiStyleVar_DisabledAlpha", "value": "1" }, { "calc_value": 2, - "name": "ImGuiStyleVar_WindowRounding", + "name": "ImGuiStyleVar_WindowPadding", "value": "2" }, { "calc_value": 3, - "name": "ImGuiStyleVar_WindowBorderSize", + "name": "ImGuiStyleVar_WindowRounding", "value": "3" }, { "calc_value": 4, - "name": "ImGuiStyleVar_WindowMinSize", + "name": "ImGuiStyleVar_WindowBorderSize", "value": "4" }, { "calc_value": 5, - "name": "ImGuiStyleVar_WindowTitleAlign", + "name": "ImGuiStyleVar_WindowMinSize", "value": "5" }, { "calc_value": 6, - "name": "ImGuiStyleVar_ChildRounding", + "name": "ImGuiStyleVar_WindowTitleAlign", "value": "6" }, { "calc_value": 7, - "name": "ImGuiStyleVar_ChildBorderSize", + "name": "ImGuiStyleVar_ChildRounding", "value": "7" }, { "calc_value": 8, - "name": "ImGuiStyleVar_PopupRounding", + "name": "ImGuiStyleVar_ChildBorderSize", "value": "8" }, { "calc_value": 9, - "name": "ImGuiStyleVar_PopupBorderSize", + "name": "ImGuiStyleVar_PopupRounding", "value": "9" }, { "calc_value": 10, - "name": "ImGuiStyleVar_FramePadding", + "name": "ImGuiStyleVar_PopupBorderSize", "value": "10" }, { "calc_value": 11, - "name": "ImGuiStyleVar_FrameRounding", + "name": "ImGuiStyleVar_FramePadding", "value": "11" }, { "calc_value": 12, - "name": "ImGuiStyleVar_FrameBorderSize", + "name": "ImGuiStyleVar_FrameRounding", "value": "12" }, { "calc_value": 13, - "name": "ImGuiStyleVar_ItemSpacing", + "name": "ImGuiStyleVar_FrameBorderSize", "value": "13" }, { "calc_value": 14, - "name": "ImGuiStyleVar_ItemInnerSpacing", + "name": "ImGuiStyleVar_ItemSpacing", "value": "14" }, { "calc_value": 15, - "name": "ImGuiStyleVar_IndentSpacing", + "name": "ImGuiStyleVar_ItemInnerSpacing", "value": "15" }, { "calc_value": 16, - "name": "ImGuiStyleVar_CellPadding", + "name": "ImGuiStyleVar_IndentSpacing", "value": "16" }, { "calc_value": 17, - "name": "ImGuiStyleVar_ScrollbarSize", + "name": "ImGuiStyleVar_CellPadding", "value": "17" }, { "calc_value": 18, - "name": "ImGuiStyleVar_ScrollbarRounding", + "name": "ImGuiStyleVar_ScrollbarSize", "value": "18" }, { "calc_value": 19, - "name": "ImGuiStyleVar_GrabMinSize", + "name": "ImGuiStyleVar_ScrollbarRounding", "value": "19" }, { "calc_value": 20, - "name": "ImGuiStyleVar_GrabRounding", + "name": "ImGuiStyleVar_GrabMinSize", "value": "20" }, { "calc_value": 21, - "name": "ImGuiStyleVar_TabRounding", + "name": "ImGuiStyleVar_GrabRounding", "value": "21" }, { "calc_value": 22, - "name": "ImGuiStyleVar_ButtonTextAlign", + "name": "ImGuiStyleVar_TabRounding", "value": "22" }, { "calc_value": 23, - "name": "ImGuiStyleVar_SelectableTextAlign", + "name": "ImGuiStyleVar_ButtonTextAlign", "value": "23" }, { "calc_value": 24, - "name": "ImGuiStyleVar_COUNT", + "name": "ImGuiStyleVar_SelectableTextAlign", "value": "24" + }, + { + "calc_value": 25, + "name": "ImGuiStyleVar_COUNT", + "value": "25" } ], "ImGuiTabBarFlagsPrivate_": [ @@ -2661,6 +2725,11 @@ } ], "ImGuiTabItemFlagsPrivate_": [ + { + "calc_value": 192, + "name": "ImGuiTabItemFlags_SectionMask_", + "value": "ImGuiTabItemFlags_Leading | ImGuiTabItemFlags_Trailing" + }, { "calc_value": 1048576, "name": "ImGuiTabItemFlags_NoCloseButton", @@ -2759,116 +2828,126 @@ }, { "calc_value": 1, - "name": "ImGuiTableColumnFlags_DefaultHide", + "name": "ImGuiTableColumnFlags_Disabled", "value": "1 << 0" }, { "calc_value": 2, - "name": "ImGuiTableColumnFlags_DefaultSort", + "name": "ImGuiTableColumnFlags_DefaultHide", "value": "1 << 1" }, { "calc_value": 4, - "name": "ImGuiTableColumnFlags_WidthStretch", + "name": "ImGuiTableColumnFlags_DefaultSort", "value": "1 << 2" }, { "calc_value": 8, - "name": "ImGuiTableColumnFlags_WidthFixed", + "name": "ImGuiTableColumnFlags_WidthStretch", "value": "1 << 3" }, { "calc_value": 16, - "name": "ImGuiTableColumnFlags_NoResize", + "name": "ImGuiTableColumnFlags_WidthFixed", "value": "1 << 4" }, { "calc_value": 32, - "name": "ImGuiTableColumnFlags_NoReorder", + "name": "ImGuiTableColumnFlags_NoResize", "value": "1 << 5" }, { "calc_value": 64, - "name": "ImGuiTableColumnFlags_NoHide", + "name": "ImGuiTableColumnFlags_NoReorder", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiTableColumnFlags_NoClip", + "name": "ImGuiTableColumnFlags_NoHide", "value": "1 << 7" }, { "calc_value": 256, - "name": "ImGuiTableColumnFlags_NoSort", + "name": "ImGuiTableColumnFlags_NoClip", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiTableColumnFlags_NoSortAscending", + "name": "ImGuiTableColumnFlags_NoSort", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiTableColumnFlags_NoSortDescending", + "name": "ImGuiTableColumnFlags_NoSortAscending", "value": "1 << 10" }, { "calc_value": 2048, - "name": "ImGuiTableColumnFlags_NoHeaderWidth", + "name": "ImGuiTableColumnFlags_NoSortDescending", "value": "1 << 11" }, { "calc_value": 4096, - "name": "ImGuiTableColumnFlags_PreferSortAscending", + "name": "ImGuiTableColumnFlags_NoHeaderLabel", "value": "1 << 12" }, { "calc_value": 8192, - "name": "ImGuiTableColumnFlags_PreferSortDescending", + "name": "ImGuiTableColumnFlags_NoHeaderWidth", "value": "1 << 13" }, { "calc_value": 16384, - "name": "ImGuiTableColumnFlags_IndentEnable", + "name": "ImGuiTableColumnFlags_PreferSortAscending", "value": "1 << 14" }, { "calc_value": 32768, - "name": "ImGuiTableColumnFlags_IndentDisable", + "name": "ImGuiTableColumnFlags_PreferSortDescending", "value": "1 << 15" }, { - "calc_value": 1048576, + "calc_value": 65536, + "name": "ImGuiTableColumnFlags_IndentEnable", + "value": "1 << 16" + }, + { + "calc_value": 131072, + "name": "ImGuiTableColumnFlags_IndentDisable", + "value": "1 << 17" + }, + { + "calc_value": 16777216, "name": "ImGuiTableColumnFlags_IsEnabled", - "value": "1 << 20" + "value": "1 << 24" }, { - "calc_value": 2097152, + "calc_value": 33554432, "name": "ImGuiTableColumnFlags_IsVisible", - "value": "1 << 21" + "value": "1 << 25" }, { - "calc_value": 4194304, + "calc_value": 67108864, "name": "ImGuiTableColumnFlags_IsSorted", - "value": "1 << 22" + "value": "1 << 26" }, { - "calc_value": 8388608, + "calc_value": 134217728, "name": "ImGuiTableColumnFlags_IsHovered", - "value": "1 << 23" + "value": "1 << 27" }, { - "calc_value": 12, + "calc_value": 24, "name": "ImGuiTableColumnFlags_WidthMask_", "value": "ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed" }, { - "calc_value": 49152, + "calc_value": 196608, "name": "ImGuiTableColumnFlags_IndentMask_", "value": "ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable" }, { - "calc_value": 15728640, + "calc_value": 251658240, "name": "ImGuiTableColumnFlags_StatusMask_", "value": "ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered" }, @@ -3459,150 +3538,155 @@ }, "enumtypes": [], "locations": { - "ImBitVector": "imgui_internal:520", - "ImColor": "imgui:2269", - "ImDrawChannel": "imgui:2363", - "ImDrawCmd": "imgui:2318", - "ImDrawCmdHeader": "imgui:2355", - "ImDrawData": "imgui:2552", - "ImDrawDataBuilder": "imgui_internal:683", - "ImDrawFlags_": "imgui:2389", - "ImDrawList": "imgui:2427", - "ImDrawListFlags_": "imgui:2409", - "ImDrawListSharedData": "imgui_internal:663", - "ImDrawListSplitter": "imgui:2372", - "ImDrawVert": "imgui:2340", - "ImFont": "imgui:2770", - "ImFontAtlas": "imgui:2669", - "ImFontAtlasCustomRect": "imgui:2631", - "ImFontAtlasFlags_": "imgui:2644", - "ImFontBuilderIO": "imgui_internal:2822", - "ImFontConfig": "imgui:2575", - "ImFontGlyph": "imgui:2604", - "ImFontGlyphRangesBuilder": "imgui:2616", - "ImGuiAxis": "imgui_internal:822", - "ImGuiBackendFlags_": "imgui:1449", - "ImGuiButtonFlagsPrivate_": "imgui_internal:736", - "ImGuiButtonFlags_": "imgui:1562", - "ImGuiCol_": "imgui:1464", - "ImGuiColorEditFlags_": "imgui:1575", - "ImGuiColorMod": "imgui_internal:929", - "ImGuiComboFlags_": "imgui:1064", - "ImGuiCond_": "imgui:1667", - "ImGuiConfigFlags_": "imgui:1424", - "ImGuiContext": "imgui_internal:1455", - "ImGuiContextHook": "imgui_internal:1440", - "ImGuiContextHookType": "imgui_internal:1438", - "ImGuiDataAuthority_": "imgui_internal:1211", - "ImGuiDataTypeInfo": "imgui_internal:912", - "ImGuiDataTypePrivate_": "imgui_internal:921", - "ImGuiDataTypeTempStorage": "imgui_internal:906", - "ImGuiDataType_": "imgui:1316", - "ImGuiDir_": "imgui:1332", - "ImGuiDockContext": "imgui_internal:1302", - "ImGuiDockNode": "imgui_internal:1227", - "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1187", - "ImGuiDockNodeFlags_": "imgui:1281", - "ImGuiDockNodeState": "imgui_internal:1218", - "ImGuiDragDropFlags_": "imgui:1294", - "ImGuiFocusedFlags_": "imgui:1251", - "ImGuiGroupData": "imgui_internal:946", - "ImGuiHoveredFlags_": "imgui:1263", - "ImGuiIO": "imgui:1827", - "ImGuiInputReadMode": "imgui_internal:846", - "ImGuiInputSource": "imgui_internal:835", - "ImGuiInputTextCallbackData": "imgui:1977", - "ImGuiInputTextFlags_": "imgui:974", - "ImGuiInputTextState": "imgui_internal:976", - "ImGuiItemFlags_": "imgui_internal:699", - "ImGuiItemStatusFlags_": "imgui_internal:714", - "ImGuiKeyModFlags_": "imgui:1379", - "ImGuiKey_": "imgui:1351", - "ImGuiLastItemDataBackup": "imgui_internal:2067", - "ImGuiLayoutType_": "imgui_internal:806", - "ImGuiListClipper": "imgui:2220", - "ImGuiLogType": "imgui_internal:812", - "ImGuiMenuColumns": "imgui_internal:962", - "ImGuiMetricsConfig": "imgui_internal:1394", - "ImGuiMouseButton_": "imgui:1639", - "ImGuiMouseCursor_": "imgui:1649", - "ImGuiNavDirSourceFlags_": "imgui_internal:865", - "ImGuiNavForward": "imgui_internal:885", - "ImGuiNavHighlightFlags_": "imgui_internal:856", - "ImGuiNavInput_": "imgui:1392", - "ImGuiNavLayer": "imgui_internal:892", - "ImGuiNavMoveFlags_": "imgui_internal:873", - "ImGuiNavMoveResult": "imgui_internal:1024", - "ImGuiNextItemData": "imgui_internal:1089", - "ImGuiNextItemDataFlags_": "imgui_internal:1082", - "ImGuiNextWindowData": "imgui_internal:1055", - "ImGuiNextWindowDataFlags_": "imgui_internal:1038", - "ImGuiOldColumnData": "imgui_internal:1141", - "ImGuiOldColumnFlags_": "imgui_internal:1121", - "ImGuiOldColumns": "imgui_internal:1151", - "ImGuiOnceUponAFrame": "imgui:2098", - "ImGuiPayload": "imgui:2039", - "ImGuiPlatformIO": "imgui:2933", - "ImGuiPlatformMonitor": "imgui:2997", - "ImGuiPlotType": "imgui_internal:829", - "ImGuiPopupData": "imgui_internal:1011", - "ImGuiPopupFlags_": "imgui:1037", - "ImGuiPopupPositionPolicy": "imgui_internal:899", - "ImGuiPtrOrIndex": "imgui_internal:1107", - "ImGuiSelectableFlagsPrivate_": "imgui_internal:766", - "ImGuiSelectableFlags_": "imgui:1053", - "ImGuiSeparatorFlags_": "imgui_internal:784", - "ImGuiSettingsHandler": "imgui_internal:1375", - "ImGuiShrinkWidthItem": "imgui_internal:1101", - "ImGuiSizeCallbackData": "imgui:2008", - "ImGuiSliderFlagsPrivate_": "imgui_internal:759", - "ImGuiSliderFlags_": "imgui:1622", - "ImGuiSortDirection_": "imgui:1343", - "ImGuiStackSizes": "imgui_internal:1418", - "ImGuiStorage": "imgui:2160", - "ImGuiStoragePair": "imgui:2163", - "ImGuiStyle": "imgui:1773", - "ImGuiStyleMod": "imgui_internal:936", - "ImGuiStyleVar_": "imgui:1531", - "ImGuiTabBar": "imgui_internal:2120", - "ImGuiTabBarFlagsPrivate_": "imgui_internal:2084", - "ImGuiTabBarFlags_": "imgui:1078", - "ImGuiTabItem": "imgui_internal:2101", - "ImGuiTabItemFlagsPrivate_": "imgui_internal:2092", - "ImGuiTabItemFlags_": "imgui:1094", - "ImGuiTable": "imgui_internal:2248", - "ImGuiTableBgTarget_": "imgui:1242", - "ImGuiTableCellData": "imgui_internal:2241", - "ImGuiTableColumn": "imgui_internal:2183", - "ImGuiTableColumnFlags_": "imgui:1187", - "ImGuiTableColumnSettings": "imgui_internal:2367", - "ImGuiTableColumnSortSpecs": "imgui:2061", - "ImGuiTableFlags_": "imgui:1130", - "ImGuiTableRowFlags_": "imgui:1227", - "ImGuiTableSettings": "imgui_internal:2391", - "ImGuiTableSortSpecs": "imgui:2075", - "ImGuiTextBuffer": "imgui:2133", - "ImGuiTextFilter": "imgui:2106", - "ImGuiTextFlags_": "imgui_internal:792", - "ImGuiTextRange": "imgui:2116", - "ImGuiTooltipFlags_": "imgui_internal:798", - "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:779", - "ImGuiTreeNodeFlags_": "imgui:1008", - "ImGuiViewport": "imgui:2851", - "ImGuiViewportFlags_": "imgui:2826", - "ImGuiViewportP": "imgui_internal:1319", - "ImGuiWindow": "imgui_internal:1932", - "ImGuiWindowClass": "imgui:2023", - "ImGuiWindowDockStyle": "imgui_internal:1297", - "ImGuiWindowDockStyleCol": "imgui_internal:1286", - "ImGuiWindowFlags_": "imgui:931", - "ImGuiWindowSettings": "imgui_internal:1358", - "ImGuiWindowTempData": "imgui_internal:1876", - "ImRect": "imgui_internal:450", - "ImVec1": "imgui_internal:432", - "ImVec2": "imgui:237", - "ImVec2ih": "imgui_internal:440", - "ImVec4": "imgui:250", + "ImBitVector": "imgui_internal:558", + "ImColor": "imgui:2339", + "ImDrawChannel": "imgui:2429", + "ImDrawCmd": "imgui:2388", + "ImDrawCmdHeader": "imgui:2421", + "ImDrawData": "imgui:2619", + "ImDrawDataBuilder": "imgui_internal:731", + "ImDrawFlags_": "imgui:2455", + "ImDrawList": "imgui:2493", + "ImDrawListFlags_": "imgui:2475", + "ImDrawListSharedData": "imgui_internal:711", + "ImDrawListSplitter": "imgui:2438", + "ImDrawVert": "imgui:2406", + "ImFont": "imgui:2838", + "ImFontAtlas": "imgui:2736", + "ImFontAtlasCustomRect": "imgui:2698", + "ImFontAtlasFlags_": "imgui:2711", + "ImFontBuilderIO": "imgui_internal:2992", + "ImFontConfig": "imgui:2642", + "ImFontGlyph": "imgui:2671", + "ImFontGlyphRangesBuilder": "imgui:2683", + "ImGuiActivateFlags_": "imgui_internal:1172", + "ImGuiAxis": "imgui_internal:889", + "ImGuiBackendFlags_": "imgui:1508", + "ImGuiButtonFlagsPrivate_": "imgui_internal:796", + "ImGuiButtonFlags_": "imgui:1622", + "ImGuiCol_": "imgui:1523", + "ImGuiColorEditFlags_": "imgui:1635", + "ImGuiColorMod": "imgui_internal:954", + "ImGuiComboFlagsPrivate_": "imgui_internal:819", + "ImGuiComboFlags_": "imgui:1120", + "ImGuiComboPreviewData": "imgui_internal:971", + "ImGuiCond_": "imgui:1727", + "ImGuiConfigFlags_": "imgui:1483", + "ImGuiContext": "imgui_internal:1585", + "ImGuiContextHook": "imgui_internal:1570", + "ImGuiContextHookType": "imgui_internal:1568", + "ImGuiDataAuthority_": "imgui_internal:1328", + "ImGuiDataTypeInfo": "imgui_internal:937", + "ImGuiDataTypePrivate_": "imgui_internal:946", + "ImGuiDataTypeTempStorage": "imgui_internal:931", + "ImGuiDataType_": "imgui:1376", + "ImGuiDir_": "imgui:1392", + "ImGuiDockContext": "imgui_internal:1425", + "ImGuiDockNode": "imgui_internal:1344", + "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1303", + "ImGuiDockNodeFlags_": "imgui:1341", + "ImGuiDockNodeState": "imgui_internal:1335", + "ImGuiDragDropFlags_": "imgui:1354", + "ImGuiFocusedFlags_": "imgui:1309", + "ImGuiGroupData": "imgui_internal:984", + "ImGuiHoveredFlags_": "imgui:1322", + "ImGuiIO": "imgui:1893", + "ImGuiInputReadMode": "imgui_internal:914", + "ImGuiInputSource": "imgui_internal:902", + "ImGuiInputTextCallbackData": "imgui:2048", + "ImGuiInputTextFlagsPrivate_": "imgui_internal:787", + "ImGuiInputTextFlags_": "imgui:1033", + "ImGuiInputTextState": "imgui_internal:1019", + "ImGuiItemFlags_": "imgui_internal:747", + "ImGuiItemStatusFlags_": "imgui_internal:762", + "ImGuiKeyModFlags_": "imgui:1439", + "ImGuiKey_": "imgui:1411", + "ImGuiLastItemData": "imgui_internal:1134", + "ImGuiLayoutType_": "imgui_internal:873", + "ImGuiListClipper": "imgui:2290", + "ImGuiLogType": "imgui_internal:879", + "ImGuiMenuColumns": "imgui_internal:1000", + "ImGuiMetricsConfig": "imgui_internal:1524", + "ImGuiMouseButton_": "imgui:1699", + "ImGuiMouseCursor_": "imgui:1709", + "ImGuiNavDirSourceFlags_": "imgui_internal:1189", + "ImGuiNavHighlightFlags_": "imgui_internal:1180", + "ImGuiNavInput_": "imgui:1452", + "ImGuiNavItemData": "imgui_internal:1218", + "ImGuiNavLayer": "imgui_internal:1211", + "ImGuiNavMoveFlags_": "imgui_internal:1197", + "ImGuiNextItemData": "imgui_internal:1121", + "ImGuiNextItemDataFlags_": "imgui_internal:1114", + "ImGuiNextWindowData": "imgui_internal:1087", + "ImGuiNextWindowDataFlags_": "imgui_internal:1070", + "ImGuiOldColumnData": "imgui_internal:1257", + "ImGuiOldColumnFlags_": "imgui_internal:1237", + "ImGuiOldColumns": "imgui_internal:1267", + "ImGuiOnceUponAFrame": "imgui:2168", + "ImGuiPayload": "imgui:2109", + "ImGuiPlatformIO": "imgui:3001", + "ImGuiPlatformMonitor": "imgui:3065", + "ImGuiPlotType": "imgui_internal:896", + "ImGuiPopupData": "imgui_internal:1057", + "ImGuiPopupFlags_": "imgui:1093", + "ImGuiPopupPositionPolicy": "imgui_internal:924", + "ImGuiPtrOrIndex": "imgui_internal:1159", + "ImGuiSelectableFlagsPrivate_": "imgui_internal:832", + "ImGuiSelectableFlags_": "imgui:1109", + "ImGuiSeparatorFlags_": "imgui_internal:851", + "ImGuiSettingsHandler": "imgui_internal:1505", + "ImGuiShrinkWidthItem": "imgui_internal:1153", + "ImGuiSizeCallbackData": "imgui:2079", + "ImGuiSliderFlagsPrivate_": "imgui_internal:825", + "ImGuiSliderFlags_": "imgui:1682", + "ImGuiSortDirection_": "imgui:1403", + "ImGuiStackSizes": "imgui_internal:1548", + "ImGuiStorage": "imgui:2230", + "ImGuiStoragePair": "imgui:2233", + "ImGuiStyle": "imgui:1838", + "ImGuiStyleMod": "imgui_internal:961", + "ImGuiStyleVar_": "imgui:1590", + "ImGuiTabBar": "imgui_internal:2246", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:2209", + "ImGuiTabBarFlags_": "imgui:1134", + "ImGuiTabItem": "imgui_internal:2227", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:2217", + "ImGuiTabItemFlags_": "imgui:1150", + "ImGuiTable": "imgui_internal:2373", + "ImGuiTableBgTarget_": "imgui:1300", + "ImGuiTableCellData": "imgui_internal:2366", + "ImGuiTableColumn": "imgui_internal:2307", + "ImGuiTableColumnFlags_": "imgui:1243", + "ImGuiTableColumnSettings": "imgui_internal:2507", + "ImGuiTableColumnSortSpecs": "imgui:2131", + "ImGuiTableFlags_": "imgui:1186", + "ImGuiTableRowFlags_": "imgui:1285", + "ImGuiTableSettings": "imgui_internal:2531", + "ImGuiTableSortSpecs": "imgui:2145", + "ImGuiTableTempData": "imgui_internal:2486", + "ImGuiTextBuffer": "imgui:2203", + "ImGuiTextFilter": "imgui:2176", + "ImGuiTextFlags_": "imgui_internal:859", + "ImGuiTextRange": "imgui:2186", + "ImGuiTooltipFlags_": "imgui_internal:865", + "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:846", + "ImGuiTreeNodeFlags_": "imgui:1064", + "ImGuiViewport": "imgui:2919", + "ImGuiViewportFlags_": "imgui:2894", + "ImGuiViewportP": "imgui_internal:1442", + "ImGuiWindow": "imgui_internal:2068", + "ImGuiWindowClass": "imgui:2094", + "ImGuiWindowDockStyle": "imgui_internal:1420", + "ImGuiWindowDockStyleCol": "imgui_internal:1409", + "ImGuiWindowFlags_": "imgui:990", + "ImGuiWindowSettings": "imgui_internal:1488", + "ImGuiWindowStackData": "imgui_internal:1147", + "ImGuiWindowTempData": "imgui_internal:2019", + "ImRect": "imgui_internal:487", + "ImVec1": "imgui_internal:469", + "ImVec2": "imgui:266", + "ImVec2ih": "imgui_internal:477", + "ImVec4": "imgui:279", "STB_TexteditState": "imstb_textedit:317", "StbTexteditRow": "imstb_textedit:364", "StbUndoRecord": "imstb_textedit:299", @@ -3917,6 +4001,10 @@ "name": "EllipsisChar", "type": "ImWchar" }, + { + "name": "DotChar", + "type": "ImWchar" + }, { "name": "DirtyLookupTables", "type": "bool" @@ -3964,6 +4052,10 @@ "name": "Locked", "type": "bool" }, + { + "name": "TexReady", + "type": "bool" + }, { "name": "TexPixelsUseColors", "type": "bool" @@ -4210,12 +4302,38 @@ ], "ImGuiColorMod": [ { - "name": "Col", - "type": "ImGuiCol" + "name": "Col", + "type": "ImGuiCol" + }, + { + "name": "BackupValue", + "type": "ImVec4" + } + ], + "ImGuiComboPreviewData": [ + { + "name": "PreviewRect", + "type": "ImRect" + }, + { + "name": "BackupCursorPos", + "type": "ImVec2" + }, + { + "name": "BackupCursorMaxPos", + "type": "ImVec2" + }, + { + "name": "BackupCursorPosPrevLine", + "type": "ImVec2" }, { - "name": "BackupValue", - "type": "ImVec4" + "name": "BackupPrevLineTextBaseOffset", + "type": "float" + }, + { + "name": "BackupLayout", + "type": "ImGuiLayoutType" } ], "ImGuiContext": [ @@ -4328,8 +4446,8 @@ }, { "name": "CurrentWindowStack", - "template_type": "ImGuiWindow*", - "type": "ImVector_ImGuiWindowPtr" + "template_type": "ImGuiWindowStackData", + "type": "ImVector_ImGuiWindowStackData" }, { "name": "WindowsById", @@ -4339,6 +4457,10 @@ "name": "WindowsActiveCount", "type": "int" }, + { + "name": "WindowsHoverPadding", + "type": "ImVec2" + }, { "name": "CurrentWindow", "type": "ImGuiWindow*" @@ -4496,13 +4618,21 @@ "type": "float" }, { - "name": "NextWindowData", - "type": "ImGuiNextWindowData" + "name": "CurrentItemFlags", + "type": "ImGuiItemFlags" }, { "name": "NextItemData", "type": "ImGuiNextItemData" }, + { + "name": "LastItemData", + "type": "ImGuiLastItemData" + }, + { + "name": "NextWindowData", + "type": "ImGuiNextWindowData" + }, { "name": "ColorStack", "template_type": "ImGuiColorMod", @@ -4601,9 +4731,13 @@ "type": "ImGuiID" }, { - "name": "NavInputId", + "name": "NavActivateInputId", "type": "ImGuiID" }, + { + "name": "NavActivateFlags", + "type": "ImGuiActivateFlags" + }, { "name": "NavJustTabbedId", "type": "ImGuiID" @@ -4625,16 +4759,12 @@ "type": "ImGuiID" }, { - "name": "NavInputSource", - "type": "ImGuiInputSource" - }, - { - "name": "NavScoringRect", - "type": "ImRect" + "name": "NavNextActivateFlags", + "type": "ImGuiActivateFlags" }, { - "name": "NavScoringCount", - "type": "int" + "name": "NavInputSource", + "type": "ImGuiInputSource" }, { "name": "NavLayer", @@ -4681,19 +4811,23 @@ "type": "ImRect" }, { - "name": "NavMoveRequest", + "name": "NavMoveSubmitted", "type": "bool" }, { - "name": "NavMoveRequestFlags", - "type": "ImGuiNavMoveFlags" + "name": "NavMoveScoringItems", + "type": "bool" + }, + { + "name": "NavMoveForwardToNextFrame", + "type": "bool" }, { - "name": "NavMoveRequestForward", - "type": "ImGuiNavForward" + "name": "NavMoveFlags", + "type": "ImGuiNavMoveFlags" }, { - "name": "NavMoveRequestKeyMods", + "name": "NavMoveKeyMods", "type": "ImGuiKeyModFlags" }, { @@ -4701,7 +4835,7 @@ "type": "ImGuiDir" }, { - "name": "NavMoveDirLast", + "name": "NavMoveDirForDebug", "type": "ImGuiDir" }, { @@ -4709,24 +4843,24 @@ "type": "ImGuiDir" }, { - "name": "NavMoveResultLocal", - "type": "ImGuiNavMoveResult" + "name": "NavScoringRect", + "type": "ImRect" }, { - "name": "NavMoveResultLocalVisibleSet", - "type": "ImGuiNavMoveResult" + "name": "NavScoringDebugCount", + "type": "int" }, { - "name": "NavMoveResultOther", - "type": "ImGuiNavMoveResult" + "name": "NavMoveResultLocal", + "type": "ImGuiNavItemData" }, { - "name": "NavWrapRequestWindow", - "type": "ImGuiWindow*" + "name": "NavMoveResultLocalVisible", + "type": "ImGuiNavItemData" }, { - "name": "NavWrapRequestFlags", - "type": "ImGuiNavMoveFlags" + "name": "NavMoveResultOther", + "type": "ImGuiNavItemData" }, { "name": "NavWindowingTarget", @@ -4862,15 +4996,19 @@ "name": "CurrentTable", "type": "ImGuiTable*" }, + { + "name": "CurrentTableStackIdx", + "type": "int" + }, { "name": "Tables", "template_type": "ImGuiTable", "type": "ImPool_ImGuiTable" }, { - "name": "CurrentTableStack", - "template_type": "ImGuiPtrOrIndex", - "type": "ImVector_ImGuiPtrOrIndex" + "name": "TablesTempDataStack", + "template_type": "ImGuiTableTempData", + "type": "ImVector_ImGuiTableTempData" }, { "name": "TablesLastTimeActive", @@ -4902,7 +5040,7 @@ "type": "ImVector_ImGuiShrinkWidthItem" }, { - "name": "LastValidMousePos", + "name": "MouseLastValidPos", "type": "ImVec2" }, { @@ -4938,6 +5076,10 @@ "name": "ColorPickerRef", "type": "ImVec4" }, + { + "name": "ComboPreviewData", + "type": "ImGuiComboPreviewData" + }, { "name": "SliderCurrentAccum", "type": "float" @@ -4958,6 +5100,10 @@ "name": "DragSpeedDefaultRatio", "type": "float" }, + { + "name": "DisabledAlphaBackup", + "type": "float" + }, { "name": "ScrollbarClickDeltaToGrabCenter", "type": "float" @@ -5101,6 +5247,10 @@ "name": "FramerateSecPerFrameIdx", "type": "int" }, + { + "name": "FramerateSecPerFrameCount", + "type": "int" + }, { "name": "FramerateSecPerFrameAccum", "type": "float" @@ -5203,6 +5353,14 @@ "name": "LocalFlags", "type": "ImGuiDockNodeFlags" }, + { + "name": "LocalFlagsInWindows", + "type": "ImGuiDockNodeFlags" + }, + { + "name": "MergedFlags", + "type": "ImGuiDockNodeFlags" + }, { "name": "State", "type": "ImGuiDockNodeState" @@ -5261,6 +5419,10 @@ "name": "OnlyNodeWithWindows", "type": "ImGuiDockNode*" }, + { + "name": "CountNodeWithWindows", + "type": "int" + }, { "name": "LastFrameAlive", "type": "int" @@ -5320,6 +5482,11 @@ "name": "HasWindowMenuButton", "type": "bool" }, + { + "bitfield": "1", + "name": "HasCentralNodeChild", + "type": "bool" + }, { "bitfield": "1", "name": "WantCloseAll", @@ -5479,10 +5646,6 @@ "name": "ConfigDockingNoSplit", "type": "bool" }, - { - "name": "ConfigDockingWithShift", - "type": "bool" - }, { "name": "ConfigDockingAlwaysTabBar", "type": "bool" @@ -5611,7 +5774,7 @@ }, { "name": "NavInputs[ImGuiNavInput_COUNT]", - "size": 21, + "size": 20, "type": "float" }, { @@ -5670,10 +5833,18 @@ "name": "MouseDelta", "type": "ImVec2" }, + { + "name": "WantCaptureMouseUnlessPopupClose", + "type": "bool" + }, { "name": "KeyMods", "type": "ImGuiKeyModFlags" }, + { + "name": "KeyModsPrev", + "type": "ImGuiKeyModFlags" + }, { "name": "MousePosPrev", "type": "ImVec2" @@ -5708,6 +5879,11 @@ "size": 5, "type": "bool" }, + { + "name": "MouseDownOwnedUnlessPopupClose[5]", + "size": 5, + "type": "bool" + }, { "name": "MouseDownWasDoubleClick[5]", "size": 5, @@ -5745,18 +5921,22 @@ }, { "name": "NavInputsDownDuration[ImGuiNavInput_COUNT]", - "size": 21, + "size": 20, "type": "float" }, { "name": "NavInputsDownDurationPrev[ImGuiNavInput_COUNT]", - "size": 21, + "size": 20, "type": "float" }, { "name": "PenPressure", "type": "float" }, + { + "name": "AppFocusLost", + "type": "bool" + }, { "name": "InputQueueSurrogate", "type": "ImWchar16" @@ -5878,7 +6058,7 @@ "type": "bool" }, { - "name": "UserFlags", + "name": "Flags", "type": "ImGuiInputTextFlags" }, { @@ -5890,21 +6070,29 @@ "type": "void*" } ], - "ImGuiLastItemDataBackup": [ + "ImGuiLastItemData": [ { - "name": "LastItemId", + "name": "ID", "type": "ImGuiID" }, { - "name": "LastItemStatusFlags", + "name": "InFlags", + "type": "ImGuiItemFlags" + }, + { + "name": "StatusFlags", "type": "ImGuiItemStatusFlags" }, { - "name": "LastItemRect", + "name": "Rect", + "type": "ImRect" + }, + { + "name": "NavRect", "type": "ImRect" }, { - "name": "LastItemDisplayRect", + "name": "DisplayRect", "type": "ImRect" } ], @@ -5939,27 +6127,38 @@ } ], "ImGuiMenuColumns": [ + { + "name": "TotalWidth", + "type": "ImU32" + }, + { + "name": "NextTotalWidth", + "type": "ImU32" + }, { "name": "Spacing", - "type": "float" + "type": "ImU16" }, { - "name": "Width", - "type": "float" + "name": "OffsetIcon", + "type": "ImU16" }, { - "name": "NextWidth", - "type": "float" + "name": "OffsetLabel", + "type": "ImU16" }, { - "name": "Pos[3]", - "size": 3, - "type": "float" + "name": "OffsetShortcut", + "type": "ImU16" }, { - "name": "NextWidths[3]", - "size": 3, - "type": "float" + "name": "OffsetMark", + "type": "ImU16" + }, + { + "name": "Widths[4]", + "size": 4, + "type": "ImU16" } ], "ImGuiMetricsConfig": [ @@ -5996,7 +6195,7 @@ "type": "int" } ], - "ImGuiNavMoveResult": [ + "ImGuiNavItemData": [ { "name": "Window", "type": "ImGuiWindow*" @@ -6009,6 +6208,10 @@ "name": "FocusScopeId", "type": "ImGuiID" }, + { + "name": "RectRel", + "type": "ImRect" + }, { "name": "DistBox", "type": "float" @@ -6020,10 +6223,6 @@ { "name": "DistAxial", "type": "float" - }, - { - "name": "RectRel", - "type": "ImRect" } ], "ImGuiNextItemData": [ @@ -6548,6 +6747,10 @@ "name": "Alpha", "type": "float" }, + { + "name": "DisabledAlpha", + "type": "float" + }, { "name": "WindowPadding", "type": "ImVec2" @@ -6799,8 +7002,8 @@ "type": "ImGuiID" }, { - "name": "ReorderRequestDir", - "type": "ImS8" + "name": "ReorderRequestOffset", + "type": "ImS16" }, { "name": "BeginCount", @@ -6878,7 +7081,7 @@ }, { "name": "NameOffset", - "type": "ImS16" + "type": "ImS32" }, { "name": "BeginOrder", @@ -6906,6 +7109,10 @@ "name": "RawData", "type": "void*" }, + { + "name": "TempData", + "type": "ImGuiTableTempData*" + }, { "name": "Columns", "template_type": "ImGuiTableColumn", @@ -7116,46 +7323,10 @@ "name": "HostClipRect", "type": "ImRect" }, - { - "name": "HostBackupWorkRect", - "type": "ImRect" - }, - { - "name": "HostBackupParentWorkRect", - "type": "ImRect" - }, { "name": "HostBackupInnerClipRect", "type": "ImRect" }, - { - "name": "HostBackupPrevLineSize", - "type": "ImVec2" - }, - { - "name": "HostBackupCurrLineSize", - "type": "ImVec2" - }, - { - "name": "HostBackupCursorMaxPos", - "type": "ImVec2" - }, - { - "name": "UserOuterSize", - "type": "ImVec2" - }, - { - "name": "HostBackupColumnsOffset", - "type": "ImVec1" - }, - { - "name": "HostBackupItemWidth", - "type": "float" - }, - { - "name": "HostBackupItemWidthStackSize", - "type": "int" - }, { "name": "OuterWindow", "type": "ImGuiWindow*" @@ -7170,7 +7341,7 @@ }, { "name": "DrawSplitter", - "type": "ImDrawListSplitter" + "type": "ImDrawListSplitter*" }, { "name": "SortSpecsSingle", @@ -7466,7 +7637,11 @@ "type": "bool" }, { - "name": "IsEnabledNextFrame", + "name": "IsUserEnabled", + "type": "bool" + }, + { + "name": "IsUserEnabledNextFrame", "type": "bool" }, { @@ -7617,6 +7792,56 @@ "type": "bool" } ], + "ImGuiTableTempData": [ + { + "name": "TableIndex", + "type": "int" + }, + { + "name": "LastTimeActive", + "type": "float" + }, + { + "name": "UserOuterSize", + "type": "ImVec2" + }, + { + "name": "DrawSplitter", + "type": "ImDrawListSplitter" + }, + { + "name": "HostBackupWorkRect", + "type": "ImRect" + }, + { + "name": "HostBackupParentWorkRect", + "type": "ImRect" + }, + { + "name": "HostBackupPrevLineSize", + "type": "ImVec2" + }, + { + "name": "HostBackupCurrLineSize", + "type": "ImVec2" + }, + { + "name": "HostBackupCursorMaxPos", + "type": "ImVec2" + }, + { + "name": "HostBackupColumnsOffset", + "type": "ImVec1" + }, + { + "name": "HostBackupItemWidth", + "type": "float" + }, + { + "name": "HostBackupItemWidthStackSize", + "type": "int" + } + ], "ImGuiTextBuffer": [ { "name": "Buf", @@ -7800,11 +8025,11 @@ "type": "ImVec2" }, { - "name": "CurrWorkOffsetMin", + "name": "BuildWorkOffsetMin", "type": "ImVec2" }, { - "name": "CurrWorkOffsetMax", + "name": "BuildWorkOffsetMax", "type": "ImVec2" } ], @@ -7985,6 +8210,10 @@ "name": "BeginOrderWithinContext", "type": "short" }, + { + "name": "FocusOrder", + "type": "short" + }, { "name": "PopupId", "type": "ImGuiID" @@ -8194,6 +8423,11 @@ "name": "DockIsActive", "type": "bool" }, + { + "bitfield": "1", + "name": "DockNodeIsVisible", + "type": "bool" + }, { "bitfield": "1", "name": "DockTabIsVisible", @@ -8258,10 +8492,6 @@ "name": "DockNodeFlagsOverrideSet", "type": "ImGuiDockNodeFlags" }, - { - "name": "DockNodeFlagsOverrideClear", - "type": "ImGuiDockNodeFlags" - }, { "name": "DockingAlwaysTabBar", "type": "bool" @@ -8320,6 +8550,16 @@ "type": "bool" } ], + "ImGuiWindowStackData": [ + { + "name": "Window", + "type": "ImGuiWindow*" + }, + { + "name": "ParentLastItemDataBackup", + "type": "ImGuiLastItemData" + } + ], "ImGuiWindowTempData": [ { "name": "CursorPos", @@ -8369,33 +8609,17 @@ "name": "GroupOffset", "type": "ImVec1" }, - { - "name": "LastItemId", - "type": "ImGuiID" - }, - { - "name": "LastItemStatusFlags", - "type": "ImGuiItemStatusFlags" - }, - { - "name": "LastItemRect", - "type": "ImRect" - }, - { - "name": "LastItemDisplayRect", - "type": "ImRect" - }, { "name": "NavLayerCurrent", "type": "ImGuiNavLayer" }, { - "name": "NavLayerActiveMask", - "type": "int" + "name": "NavLayersActiveMask", + "type": "short" }, { - "name": "NavLayerActiveMaskNext", - "type": "int" + "name": "NavLayersActiveMaskNext", + "type": "short" }, { "name": "NavFocusScopeIdCurrent", @@ -8462,10 +8686,6 @@ "name": "FocusCounterTabStop", "type": "int" }, - { - "name": "ItemFlags", - "type": "ImGuiItemFlags" - }, { "name": "ItemWidth", "type": "float" diff --git a/src/CodeGenerator/definitions/cimguizmo/definitions.json b/src/CodeGenerator/definitions/cimguizmo/definitions.json index c2e5644d..30255554 100644 --- a/src/CodeGenerator/definitions/cimguizmo/definitions.json +++ b/src/CodeGenerator/definitions/cimguizmo/definitions.json @@ -173,7 +173,7 @@ "funcname": "IsOver", "location": "ImGuizmo:130", "namespace": "ImGuizmo", - "ov_cimguiname": "ImGuizmo_IsOverNil", + "ov_cimguiname": "ImGuizmo_IsOver_Nil", "ret": "bool", "signature": "()", "stname": "" @@ -193,7 +193,7 @@ "funcname": "IsOver", "location": "ImGuizmo:206", "namespace": "ImGuizmo", - "ov_cimguiname": "ImGuizmo_IsOverOPERATION", + "ov_cimguiname": "ImGuizmo_IsOver_OPERATION", "ret": "bool", "signature": "(OPERATION)", "stname": "" diff --git a/src/CodeGenerator/definitions/cimnodes/definitions.json b/src/CodeGenerator/definitions/cimnodes/definitions.json index 1973a144..1fd1b0d0 100644 --- a/src/CodeGenerator/definitions/cimnodes/definitions.json +++ b/src/CodeGenerator/definitions/cimnodes/definitions.json @@ -826,7 +826,7 @@ "funcname": "IsLinkCreated", "location": "imnodes:299", "namespace": "imnodes", - "ov_cimguiname": "imnodes_IsLinkCreatedBoolPtr", + "ov_cimguiname": "imnodes_IsLinkCreated_BoolPtr", "ret": "bool", "signature": "(int*,int*,bool*)", "stname": "" @@ -864,7 +864,7 @@ "funcname": "IsLinkCreated", "location": "imnodes:303", "namespace": "imnodes", - "ov_cimguiname": "imnodes_IsLinkCreatedIntPtr", + "ov_cimguiname": "imnodes_IsLinkCreated_IntPtr", "ret": "bool", "signature": "(int*,int*,int*,int*,bool*)", "stname": "" diff --git a/src/CodeGenerator/definitions/cimplot/definitions.json b/src/CodeGenerator/definitions/cimplot/definitions.json index d8f57ae1..a2698caf 100644 --- a/src/CodeGenerator/definitions/cimplot/definitions.json +++ b/src/CodeGenerator/definitions/cimplot/definitions.json @@ -648,7 +648,7 @@ "defaults": {}, "funcname": "SetRange", "location": "implot_internal:461", - "ov_cimguiname": "ImPlotAxis_SetRangedouble", + "ov_cimguiname": "ImPlotAxis_SetRange_double", "ret": "void", "signature": "(double,double)", "stname": "ImPlotAxis" @@ -671,7 +671,7 @@ "defaults": {}, "funcname": "SetRange", "location": "implot_internal:469", - "ov_cimguiname": "ImPlotAxis_SetRangePlotRange", + "ov_cimguiname": "ImPlotAxis_SetRange_PlotRange", "ret": "void", "signature": "(const ImPlotRange)", "stname": "ImPlotAxis" @@ -907,7 +907,7 @@ "defaults": {}, "funcname": "Contains", "location": "implot:249", - "ov_cimguiname": "ImPlotLimits_ContainsPlotPoInt", + "ov_cimguiname": "ImPlotLimits_Contains_PlotPoInt", "ret": "bool", "signature": "(const ImPlotPoint)const", "stname": "ImPlotLimits" @@ -934,7 +934,7 @@ "defaults": {}, "funcname": "Contains", "location": "implot:250", - "ov_cimguiname": "ImPlotLimits_Containsdouble", + "ov_cimguiname": "ImPlotLimits_Contains_double", "ret": "bool", "signature": "(double,double)const", "stname": "ImPlotLimits" @@ -1264,7 +1264,7 @@ "defaults": {}, "funcname": "ImPlotPoint", "location": "implot:226", - "ov_cimguiname": "ImPlotPoint_ImPlotPointNil", + "ov_cimguiname": "ImPlotPoint_ImPlotPoint_Nil", "signature": "()", "stname": "ImPlotPoint" }, @@ -1287,7 +1287,7 @@ "defaults": {}, "funcname": "ImPlotPoint", "location": "implot:227", - "ov_cimguiname": "ImPlotPoint_ImPlotPointdouble", + "ov_cimguiname": "ImPlotPoint_ImPlotPoint_double", "signature": "(double,double)", "stname": "ImPlotPoint" }, @@ -1306,7 +1306,7 @@ "defaults": {}, "funcname": "ImPlotPoint", "location": "implot:228", - "ov_cimguiname": "ImPlotPoint_ImPlotPointVec2", + "ov_cimguiname": "ImPlotPoint_ImPlotPoint_Vec2", "signature": "(const ImVec2)", "stname": "ImPlotPoint" } @@ -1366,7 +1366,7 @@ "defaults": {}, "funcname": "ImPlotRange", "location": "implot:240", - "ov_cimguiname": "ImPlotRange_ImPlotRangeNil", + "ov_cimguiname": "ImPlotRange_ImPlotRange_Nil", "signature": "()", "stname": "ImPlotRange" }, @@ -1389,7 +1389,7 @@ "defaults": {}, "funcname": "ImPlotRange", "location": "implot:241", - "ov_cimguiname": "ImPlotRange_ImPlotRangedouble", + "ov_cimguiname": "ImPlotRange_ImPlotRange_double", "signature": "(double,double)", "stname": "ImPlotRange" } @@ -1488,7 +1488,7 @@ "defaults": {}, "funcname": "Append", "location": "implot_internal:372", - "ov_cimguiname": "ImPlotTickCollection_AppendPlotTick", + "ov_cimguiname": "ImPlotTickCollection_Append_PlotTick", "ret": "void", "signature": "(const ImPlotTick)", "stname": "ImPlotTickCollection" @@ -1525,7 +1525,7 @@ "defaults": {}, "funcname": "Append", "location": "implot_internal:383", - "ov_cimguiname": "ImPlotTickCollection_Appenddouble", + "ov_cimguiname": "ImPlotTickCollection_Append_double", "ret": "void", "signature": "(double,bool,bool,void(*)(ImPlotTick&,ImGuiTextBuffer&))", "stname": "ImPlotTickCollection" @@ -1662,8 +1662,12 @@ ], "ImPlotTime_FromDouble": [ { - "args": "(double t)", + "args": "(ImPlotTime *pOut,double t)", "argsT": [ + { + "name": "pOut", + "type": "ImPlotTime*" + }, { "name": "t", "type": "double" @@ -1676,8 +1680,9 @@ "funcname": "FromDouble", "is_static_function": true, "location": "implot_internal:253", + "nonUDT": 1, "ov_cimguiname": "ImPlotTime_FromDouble", - "ret": "ImPlotTime", + "ret": "void", "signature": "(double)", "stname": "ImPlotTime" } @@ -1693,7 +1698,7 @@ "defaults": {}, "funcname": "ImPlotTime", "location": "implot_internal:249", - "ov_cimguiname": "ImPlotTime_ImPlotTimeNil", + "ov_cimguiname": "ImPlotTime_ImPlotTime_Nil", "signature": "()", "stname": "ImPlotTime" }, @@ -1718,7 +1723,7 @@ }, "funcname": "ImPlotTime", "location": "implot_internal:250", - "ov_cimguiname": "ImPlotTime_ImPlotTimetime_t", + "ov_cimguiname": "ImPlotTime_ImPlotTime_time_t", "signature": "(time_t,int)", "stname": "ImPlotTime" } @@ -1958,8 +1963,12 @@ ], "ImPlot_AddTime": [ { - "args": "(const ImPlotTime t,ImPlotTimeUnit unit,int count)", + "args": "(ImPlotTime *pOut,const ImPlotTime t,ImPlotTimeUnit unit,int count)", "argsT": [ + { + "name": "pOut", + "type": "ImPlotTime*" + }, { "name": "t", "type": "const ImPlotTime" @@ -1980,8 +1989,9 @@ "funcname": "AddTime", "location": "implot_internal:959", "namespace": "ImPlot", + "nonUDT": 1, "ov_cimguiname": "ImPlot_AddTime", - "ret": "ImPlotTime", + "ret": "void", "signature": "(const ImPlotTime,ImPlotTimeUnit,int)", "stname": "" } @@ -2019,7 +2029,7 @@ "isvararg": "...)", "location": "implot:508", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_AnnotateStr", + "ov_cimguiname": "ImPlot_Annotate_Str", "ret": "void", "signature": "(double,double,const ImVec2,const char*,...)", "stname": "" @@ -2060,7 +2070,7 @@ "isvararg": "...)", "location": "implot:509", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_AnnotateVec4", + "ov_cimguiname": "ImPlot_Annotate_Vec4", "ret": "void", "signature": "(double,double,const ImVec2,const ImVec4,const char*,...)", "stname": "" @@ -2099,7 +2109,7 @@ "isvararg": "...)", "location": "implot:514", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_AnnotateClampedStr", + "ov_cimguiname": "ImPlot_AnnotateClamped_Str", "ret": "void", "signature": "(double,double,const ImVec2,const char*,...)", "stname": "" @@ -2140,7 +2150,7 @@ "isvararg": "...)", "location": "implot:515", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_AnnotateClampedVec4", + "ov_cimguiname": "ImPlot_AnnotateClamped_Vec4", "ret": "void", "signature": "(double,double,const ImVec2,const ImVec4,const char*,...)", "stname": "" @@ -2178,7 +2188,7 @@ "funcname": "AnnotateClampedV", "location": "implot:516", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_AnnotateClampedVStr", + "ov_cimguiname": "ImPlot_AnnotateClampedV_Str", "ret": "void", "signature": "(double,double,const ImVec2,const char*,va_list)", "stname": "" @@ -2218,7 +2228,7 @@ "funcname": "AnnotateClampedV", "location": "implot:517", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_AnnotateClampedVVec4", + "ov_cimguiname": "ImPlot_AnnotateClampedV_Vec4", "ret": "void", "signature": "(double,double,const ImVec2,const ImVec4,const char*,va_list)", "stname": "" @@ -2256,7 +2266,7 @@ "funcname": "AnnotateV", "location": "implot:510", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_AnnotateVStr", + "ov_cimguiname": "ImPlot_AnnotateV_Str", "ret": "void", "signature": "(double,double,const ImVec2,const char*,va_list)", "stname": "" @@ -2296,7 +2306,7 @@ "funcname": "AnnotateV", "location": "implot:511", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_AnnotateVVec4", + "ov_cimguiname": "ImPlot_AnnotateV_Vec4", "ret": "void", "signature": "(double,double,const ImVec2,const ImVec4,const char*,va_list)", "stname": "" @@ -2750,8 +2760,12 @@ ], "ImPlot_CeilTime": [ { - "args": "(const ImPlotTime t,ImPlotTimeUnit unit)", + "args": "(ImPlotTime *pOut,const ImPlotTime t,ImPlotTimeUnit unit)", "argsT": [ + { + "name": "pOut", + "type": "ImPlotTime*" + }, { "name": "t", "type": "const ImPlotTime" @@ -2768,8 +2782,9 @@ "funcname": "CeilTime", "location": "implot_internal:963", "namespace": "ImPlot", + "nonUDT": 1, "ov_cimguiname": "ImPlot_CeilTime", - "ret": "ImPlotTime", + "ret": "void", "signature": "(const ImPlotTime,ImPlotTimeUnit)", "stname": "" } @@ -2815,8 +2830,12 @@ ], "ImPlot_CombineDateTime": [ { - "args": "(const ImPlotTime date_part,const ImPlotTime time_part)", + "args": "(ImPlotTime *pOut,const ImPlotTime date_part,const ImPlotTime time_part)", "argsT": [ + { + "name": "pOut", + "type": "ImPlotTime*" + }, { "name": "date_part", "type": "const ImPlotTime" @@ -2833,8 +2852,9 @@ "funcname": "CombineDateTime", "location": "implot_internal:967", "namespace": "ImPlot", + "nonUDT": 1, "ov_cimguiname": "ImPlot_CombineDateTime", - "ret": "ImPlotTime", + "ret": "void", "signature": "(const ImPlotTime,const ImPlotTime)", "stname": "" } @@ -3124,7 +3144,7 @@ "funcname": "FillRange", "location": "implot_internal:909", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_FillRangeVector_FloatPtr", + "ov_cimguiname": "ImPlot_FillRange_Vector_FloatPtr", "ret": "void", "signature": "(ImVector_float*,int,float,float)", "stname": "" @@ -3157,7 +3177,7 @@ "funcname": "FillRange", "location": "implot_internal:909", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_FillRangeVector_doublePtr", + "ov_cimguiname": "ImPlot_FillRange_Vector_doublePtr", "ret": "void", "signature": "(ImVector_double*,int,double,double)", "stname": "" @@ -3190,7 +3210,7 @@ "funcname": "FillRange", "location": "implot_internal:909", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_FillRangeVector_S8Ptr", + "ov_cimguiname": "ImPlot_FillRange_Vector_S8Ptr", "ret": "void", "signature": "(ImVector_ImS8*,int,ImS8,ImS8)", "stname": "" @@ -3223,7 +3243,7 @@ "funcname": "FillRange", "location": "implot_internal:909", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_FillRangeVector_U8Ptr", + "ov_cimguiname": "ImPlot_FillRange_Vector_U8Ptr", "ret": "void", "signature": "(ImVector_ImU8*,int,ImU8,ImU8)", "stname": "" @@ -3256,7 +3276,7 @@ "funcname": "FillRange", "location": "implot_internal:909", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_FillRangeVector_S16Ptr", + "ov_cimguiname": "ImPlot_FillRange_Vector_S16Ptr", "ret": "void", "signature": "(ImVector_ImS16*,int,ImS16,ImS16)", "stname": "" @@ -3289,7 +3309,7 @@ "funcname": "FillRange", "location": "implot_internal:909", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_FillRangeVector_U16Ptr", + "ov_cimguiname": "ImPlot_FillRange_Vector_U16Ptr", "ret": "void", "signature": "(ImVector_ImU16*,int,ImU16,ImU16)", "stname": "" @@ -3322,7 +3342,7 @@ "funcname": "FillRange", "location": "implot_internal:909", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_FillRangeVector_S32Ptr", + "ov_cimguiname": "ImPlot_FillRange_Vector_S32Ptr", "ret": "void", "signature": "(ImVector_ImS32*,int,ImS32,ImS32)", "stname": "" @@ -3355,7 +3375,7 @@ "funcname": "FillRange", "location": "implot_internal:909", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_FillRangeVector_U32Ptr", + "ov_cimguiname": "ImPlot_FillRange_Vector_U32Ptr", "ret": "void", "signature": "(ImVector_ImU32*,int,ImU32,ImU32)", "stname": "" @@ -3388,7 +3408,7 @@ "funcname": "FillRange", "location": "implot_internal:909", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_FillRangeVector_S64Ptr", + "ov_cimguiname": "ImPlot_FillRange_Vector_S64Ptr", "ret": "void", "signature": "(ImVector_ImS64*,int,ImS64,ImS64)", "stname": "" @@ -3421,7 +3441,7 @@ "funcname": "FillRange", "location": "implot_internal:909", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_FillRangeVector_U64Ptr", + "ov_cimguiname": "ImPlot_FillRange_Vector_U64Ptr", "ret": "void", "signature": "(ImVector_ImU64*,int,ImU64,ImU64)", "stname": "" @@ -3551,8 +3571,12 @@ ], "ImPlot_FloorTime": [ { - "args": "(const ImPlotTime t,ImPlotTimeUnit unit)", + "args": "(ImPlotTime *pOut,const ImPlotTime t,ImPlotTimeUnit unit)", "argsT": [ + { + "name": "pOut", + "type": "ImPlotTime*" + }, { "name": "t", "type": "const ImPlotTime" @@ -3569,8 +3593,9 @@ "funcname": "FloorTime", "location": "implot_internal:961", "namespace": "ImPlot", + "nonUDT": 1, "ov_cimguiname": "ImPlot_FloorTime", - "ret": "ImPlotTime", + "ret": "void", "signature": "(const ImPlotTime,ImPlotTimeUnit)", "stname": "" } @@ -4553,7 +4578,7 @@ "defaults": {}, "funcname": "ImLog10", "location": "implot_internal:87", - "ov_cimguiname": "ImPlot_ImLog10Float", + "ov_cimguiname": "ImPlot_ImLog10_Float", "ret": "float", "signature": "(float)", "stname": "" @@ -4572,7 +4597,7 @@ "defaults": {}, "funcname": "ImLog10", "location": "implot_internal:88", - "ov_cimguiname": "ImPlot_ImLog10double", + "ov_cimguiname": "ImPlot_ImLog10_double", "ret": "double", "signature": "(double)", "stname": "" @@ -4655,7 +4680,7 @@ "defaults": {}, "funcname": "ImRemap", "location": "implot_internal:96", - "ov_cimguiname": "ImPlot_ImRemapFloat", + "ov_cimguiname": "ImPlot_ImRemap_Float", "ret": "float", "signature": "(float,float,float,float,float)", "stname": "" @@ -4690,7 +4715,7 @@ "defaults": {}, "funcname": "ImRemap", "location": "implot_internal:96", - "ov_cimguiname": "ImPlot_ImRemapdouble", + "ov_cimguiname": "ImPlot_ImRemap_double", "ret": "double", "signature": "(double,double,double,double,double)", "stname": "" @@ -4725,7 +4750,7 @@ "defaults": {}, "funcname": "ImRemap", "location": "implot_internal:96", - "ov_cimguiname": "ImPlot_ImRemapS8", + "ov_cimguiname": "ImPlot_ImRemap_S8", "ret": "ImS8", "signature": "(ImS8,ImS8,ImS8,ImS8,ImS8)", "stname": "" @@ -4760,7 +4785,7 @@ "defaults": {}, "funcname": "ImRemap", "location": "implot_internal:96", - "ov_cimguiname": "ImPlot_ImRemapU8", + "ov_cimguiname": "ImPlot_ImRemap_U8", "ret": "ImU8", "signature": "(ImU8,ImU8,ImU8,ImU8,ImU8)", "stname": "" @@ -4795,7 +4820,7 @@ "defaults": {}, "funcname": "ImRemap", "location": "implot_internal:96", - "ov_cimguiname": "ImPlot_ImRemapS16", + "ov_cimguiname": "ImPlot_ImRemap_S16", "ret": "ImS16", "signature": "(ImS16,ImS16,ImS16,ImS16,ImS16)", "stname": "" @@ -4830,7 +4855,7 @@ "defaults": {}, "funcname": "ImRemap", "location": "implot_internal:96", - "ov_cimguiname": "ImPlot_ImRemapU16", + "ov_cimguiname": "ImPlot_ImRemap_U16", "ret": "ImU16", "signature": "(ImU16,ImU16,ImU16,ImU16,ImU16)", "stname": "" @@ -4865,7 +4890,7 @@ "defaults": {}, "funcname": "ImRemap", "location": "implot_internal:96", - "ov_cimguiname": "ImPlot_ImRemapS32", + "ov_cimguiname": "ImPlot_ImRemap_S32", "ret": "ImS32", "signature": "(ImS32,ImS32,ImS32,ImS32,ImS32)", "stname": "" @@ -4900,7 +4925,7 @@ "defaults": {}, "funcname": "ImRemap", "location": "implot_internal:96", - "ov_cimguiname": "ImPlot_ImRemapU32", + "ov_cimguiname": "ImPlot_ImRemap_U32", "ret": "ImU32", "signature": "(ImU32,ImU32,ImU32,ImU32,ImU32)", "stname": "" @@ -4935,7 +4960,7 @@ "defaults": {}, "funcname": "ImRemap", "location": "implot_internal:96", - "ov_cimguiname": "ImPlot_ImRemapS64", + "ov_cimguiname": "ImPlot_ImRemap_S64", "ret": "ImS64", "signature": "(ImS64,ImS64,ImS64,ImS64,ImS64)", "stname": "" @@ -4970,7 +4995,7 @@ "defaults": {}, "funcname": "ImRemap", "location": "implot_internal:96", - "ov_cimguiname": "ImPlot_ImRemapU64", + "ov_cimguiname": "ImPlot_ImRemap_U64", "ret": "ImU64", "signature": "(ImU64,ImU64,ImU64,ImU64,ImU64)", "stname": "" @@ -5053,7 +5078,7 @@ "funcname": "IsColorAuto", "location": "implot_internal:855", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_IsColorAutoVec4", + "ov_cimguiname": "ImPlot_IsColorAuto_Vec4", "ret": "bool", "signature": "(const ImVec4)", "stname": "" @@ -5073,7 +5098,7 @@ "funcname": "IsColorAuto", "location": "implot_internal:857", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_IsColorAutoPlotCol", + "ov_cimguiname": "ImPlot_IsColorAuto_PlotCol", "ret": "bool", "signature": "(ImPlotCol)", "stname": "" @@ -5214,7 +5239,7 @@ "funcname": "ItemIcon", "location": "implot:677", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_ItemIconVec4", + "ov_cimguiname": "ImPlot_ItemIcon_Vec4", "ret": "void", "signature": "(const ImVec4)", "stname": "" @@ -5234,7 +5259,7 @@ "funcname": "ItemIcon", "location": "implot:678", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_ItemIconU32", + "ov_cimguiname": "ImPlot_ItemIcon_U32", "ret": "void", "signature": "(ImU32)", "stname": "" @@ -5391,7 +5416,7 @@ "location": "implot:662", "namespace": "ImPlot", "nonUDT": 1, - "ov_cimguiname": "ImPlot_LerpColormapFloat", + "ov_cimguiname": "ImPlot_LerpColormap_Float", "ret": "void", "signature": "(float)", "stname": "" @@ -5424,7 +5449,7 @@ "location": "implot_internal:868", "namespace": "ImPlot", "nonUDT": 1, - "ov_cimguiname": "ImPlot_LerpColormapVec4Ptr", + "ov_cimguiname": "ImPlot_LerpColormap_Vec4Ptr", "ret": "void", "signature": "(const ImVec4*,int,float)", "stname": "" @@ -5487,8 +5512,12 @@ ], "ImPlot_MakeTime": [ { - "args": "(int year,int month,int day,int hour,int min,int sec,int us)", + "args": "(ImPlotTime *pOut,int year,int month,int day,int hour,int min,int sec,int us)", "argsT": [ + { + "name": "pOut", + "type": "ImPlotTime*" + }, { "name": "year", "type": "int" @@ -5532,16 +5561,21 @@ "funcname": "MakeTime", "location": "implot_internal:954", "namespace": "ImPlot", + "nonUDT": 1, "ov_cimguiname": "ImPlot_MakeTime", - "ret": "ImPlotTime", + "ret": "void", "signature": "(int,int,int,int,int,int,int)", "stname": "" } ], "ImPlot_MkGmtTime": [ { - "args": "(struct tm* ptm)", + "args": "(ImPlotTime *pOut,struct tm* ptm)", "argsT": [ + { + "name": "pOut", + "type": "ImPlotTime*" + }, { "name": "ptm", "type": "struct tm*" @@ -5554,16 +5588,21 @@ "funcname": "MkGmtTime", "location": "implot_internal:940", "namespace": "ImPlot", + "nonUDT": 1, "ov_cimguiname": "ImPlot_MkGmtTime", - "ret": "ImPlotTime", + "ret": "void", "signature": "(struct tm*)", "stname": "" } ], "ImPlot_MkLocTime": [ { - "args": "(struct tm* ptm)", + "args": "(ImPlotTime *pOut,struct tm* ptm)", "argsT": [ + { + "name": "pOut", + "type": "ImPlotTime*" + }, { "name": "ptm", "type": "struct tm*" @@ -5576,8 +5615,9 @@ "funcname": "MkLocTime", "location": "implot_internal:945", "namespace": "ImPlot", + "nonUDT": 1, "ov_cimguiname": "ImPlot_MkLocTime", - "ret": "ImPlotTime", + "ret": "void", "signature": "(struct tm*)", "stname": "" } @@ -5663,7 +5703,7 @@ "funcname": "OffsetAndStride", "location": "implot_internal:919", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_OffsetAndStrideFloatPtr", + "ov_cimguiname": "ImPlot_OffsetAndStride_FloatPtr", "ret": "float", "signature": "(const float*,int,int,int,int)", "stname": "" @@ -5699,7 +5739,7 @@ "funcname": "OffsetAndStride", "location": "implot_internal:919", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_OffsetAndStridedoublePtr", + "ov_cimguiname": "ImPlot_OffsetAndStride_doublePtr", "ret": "double", "signature": "(const double*,int,int,int,int)", "stname": "" @@ -5735,7 +5775,7 @@ "funcname": "OffsetAndStride", "location": "implot_internal:919", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_OffsetAndStrideS8Ptr", + "ov_cimguiname": "ImPlot_OffsetAndStride_S8Ptr", "ret": "ImS8", "signature": "(const ImS8*,int,int,int,int)", "stname": "" @@ -5771,7 +5811,7 @@ "funcname": "OffsetAndStride", "location": "implot_internal:919", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_OffsetAndStrideU8Ptr", + "ov_cimguiname": "ImPlot_OffsetAndStride_U8Ptr", "ret": "ImU8", "signature": "(const ImU8*,int,int,int,int)", "stname": "" @@ -5807,7 +5847,7 @@ "funcname": "OffsetAndStride", "location": "implot_internal:919", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_OffsetAndStrideS16Ptr", + "ov_cimguiname": "ImPlot_OffsetAndStride_S16Ptr", "ret": "ImS16", "signature": "(const ImS16*,int,int,int,int)", "stname": "" @@ -5843,7 +5883,7 @@ "funcname": "OffsetAndStride", "location": "implot_internal:919", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_OffsetAndStrideU16Ptr", + "ov_cimguiname": "ImPlot_OffsetAndStride_U16Ptr", "ret": "ImU16", "signature": "(const ImU16*,int,int,int,int)", "stname": "" @@ -5879,7 +5919,7 @@ "funcname": "OffsetAndStride", "location": "implot_internal:919", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_OffsetAndStrideS32Ptr", + "ov_cimguiname": "ImPlot_OffsetAndStride_S32Ptr", "ret": "ImS32", "signature": "(const ImS32*,int,int,int,int)", "stname": "" @@ -5915,7 +5955,7 @@ "funcname": "OffsetAndStride", "location": "implot_internal:919", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_OffsetAndStrideU32Ptr", + "ov_cimguiname": "ImPlot_OffsetAndStride_U32Ptr", "ret": "ImU32", "signature": "(const ImU32*,int,int,int,int)", "stname": "" @@ -5951,7 +5991,7 @@ "funcname": "OffsetAndStride", "location": "implot_internal:919", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_OffsetAndStrideS64Ptr", + "ov_cimguiname": "ImPlot_OffsetAndStride_S64Ptr", "ret": "ImS64", "signature": "(const ImS64*,int,int,int,int)", "stname": "" @@ -5987,7 +6027,7 @@ "funcname": "OffsetAndStride", "location": "implot_internal:919", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_OffsetAndStrideU64Ptr", + "ov_cimguiname": "ImPlot_OffsetAndStride_U64Ptr", "ret": "ImU64", "signature": "(const ImU64*,int,int,int,int)", "stname": "" @@ -6064,7 +6104,7 @@ "location": "implot:476", "namespace": "ImPlot", "nonUDT": 1, - "ov_cimguiname": "ImPlot_PixelsToPlotVec2", + "ov_cimguiname": "ImPlot_PixelsToPlot_Vec2", "ret": "void", "signature": "(const ImVec2,ImPlotYAxis)", "stname": "" @@ -6099,7 +6139,7 @@ "location": "implot:477", "namespace": "ImPlot", "nonUDT": 1, - "ov_cimguiname": "ImPlot_PixelsToPlotFloat", + "ov_cimguiname": "ImPlot_PixelsToPlot_Float", "ret": "void", "signature": "(float,float,ImPlotYAxis)", "stname": "" @@ -6150,7 +6190,7 @@ "funcname": "PlotBars", "location": "implot:399", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsFloatPtrInt", + "ov_cimguiname": "ImPlot_PlotBars_FloatPtrInt", "ret": "void", "signature": "(const char*,const float*,int,double,double,int,int)", "stname": "" @@ -6199,7 +6239,7 @@ "funcname": "PlotBars", "location": "implot:399", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsdoublePtrInt", + "ov_cimguiname": "ImPlot_PlotBars_doublePtrInt", "ret": "void", "signature": "(const char*,const double*,int,double,double,int,int)", "stname": "" @@ -6248,7 +6288,7 @@ "funcname": "PlotBars", "location": "implot:399", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsS8PtrInt", + "ov_cimguiname": "ImPlot_PlotBars_S8PtrInt", "ret": "void", "signature": "(const char*,const ImS8*,int,double,double,int,int)", "stname": "" @@ -6297,7 +6337,7 @@ "funcname": "PlotBars", "location": "implot:399", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsU8PtrInt", + "ov_cimguiname": "ImPlot_PlotBars_U8PtrInt", "ret": "void", "signature": "(const char*,const ImU8*,int,double,double,int,int)", "stname": "" @@ -6346,7 +6386,7 @@ "funcname": "PlotBars", "location": "implot:399", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsS16PtrInt", + "ov_cimguiname": "ImPlot_PlotBars_S16PtrInt", "ret": "void", "signature": "(const char*,const ImS16*,int,double,double,int,int)", "stname": "" @@ -6395,7 +6435,7 @@ "funcname": "PlotBars", "location": "implot:399", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsU16PtrInt", + "ov_cimguiname": "ImPlot_PlotBars_U16PtrInt", "ret": "void", "signature": "(const char*,const ImU16*,int,double,double,int,int)", "stname": "" @@ -6444,7 +6484,7 @@ "funcname": "PlotBars", "location": "implot:399", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsS32PtrInt", + "ov_cimguiname": "ImPlot_PlotBars_S32PtrInt", "ret": "void", "signature": "(const char*,const ImS32*,int,double,double,int,int)", "stname": "" @@ -6493,7 +6533,7 @@ "funcname": "PlotBars", "location": "implot:399", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsU32PtrInt", + "ov_cimguiname": "ImPlot_PlotBars_U32PtrInt", "ret": "void", "signature": "(const char*,const ImU32*,int,double,double,int,int)", "stname": "" @@ -6542,7 +6582,7 @@ "funcname": "PlotBars", "location": "implot:399", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsS64PtrInt", + "ov_cimguiname": "ImPlot_PlotBars_S64PtrInt", "ret": "void", "signature": "(const char*,const ImS64*,int,double,double,int,int)", "stname": "" @@ -6591,7 +6631,7 @@ "funcname": "PlotBars", "location": "implot:399", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsU64PtrInt", + "ov_cimguiname": "ImPlot_PlotBars_U64PtrInt", "ret": "void", "signature": "(const char*,const ImU64*,int,double,double,int,int)", "stname": "" @@ -6638,7 +6678,7 @@ "funcname": "PlotBars", "location": "implot:400", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsFloatPtrFloatPtr", + "ov_cimguiname": "ImPlot_PlotBars_FloatPtrFloatPtr", "ret": "void", "signature": "(const char*,const float*,const float*,int,double,int,int)", "stname": "" @@ -6685,7 +6725,7 @@ "funcname": "PlotBars", "location": "implot:400", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsdoublePtrdoublePtr", + "ov_cimguiname": "ImPlot_PlotBars_doublePtrdoublePtr", "ret": "void", "signature": "(const char*,const double*,const double*,int,double,int,int)", "stname": "" @@ -6732,7 +6772,7 @@ "funcname": "PlotBars", "location": "implot:400", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsS8PtrS8Ptr", + "ov_cimguiname": "ImPlot_PlotBars_S8PtrS8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,int,double,int,int)", "stname": "" @@ -6779,7 +6819,7 @@ "funcname": "PlotBars", "location": "implot:400", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsU8PtrU8Ptr", + "ov_cimguiname": "ImPlot_PlotBars_U8PtrU8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,int,double,int,int)", "stname": "" @@ -6826,7 +6866,7 @@ "funcname": "PlotBars", "location": "implot:400", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsS16PtrS16Ptr", + "ov_cimguiname": "ImPlot_PlotBars_S16PtrS16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,int,double,int,int)", "stname": "" @@ -6873,7 +6913,7 @@ "funcname": "PlotBars", "location": "implot:400", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsU16PtrU16Ptr", + "ov_cimguiname": "ImPlot_PlotBars_U16PtrU16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,int,double,int,int)", "stname": "" @@ -6920,7 +6960,7 @@ "funcname": "PlotBars", "location": "implot:400", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsS32PtrS32Ptr", + "ov_cimguiname": "ImPlot_PlotBars_S32PtrS32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,int,double,int,int)", "stname": "" @@ -6967,7 +7007,7 @@ "funcname": "PlotBars", "location": "implot:400", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsU32PtrU32Ptr", + "ov_cimguiname": "ImPlot_PlotBars_U32PtrU32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,int,double,int,int)", "stname": "" @@ -7014,7 +7054,7 @@ "funcname": "PlotBars", "location": "implot:400", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsS64PtrS64Ptr", + "ov_cimguiname": "ImPlot_PlotBars_S64PtrS64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,int,double,int,int)", "stname": "" @@ -7061,7 +7101,7 @@ "funcname": "PlotBars", "location": "implot:400", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsU64PtrU64Ptr", + "ov_cimguiname": "ImPlot_PlotBars_U64PtrU64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,int,double,int,int)", "stname": "" @@ -7159,7 +7199,7 @@ "funcname": "PlotBarsH", "location": "implot:404", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHFloatPtrInt", + "ov_cimguiname": "ImPlot_PlotBarsH_FloatPtrInt", "ret": "void", "signature": "(const char*,const float*,int,double,double,int,int)", "stname": "" @@ -7208,7 +7248,7 @@ "funcname": "PlotBarsH", "location": "implot:404", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHdoublePtrInt", + "ov_cimguiname": "ImPlot_PlotBarsH_doublePtrInt", "ret": "void", "signature": "(const char*,const double*,int,double,double,int,int)", "stname": "" @@ -7257,7 +7297,7 @@ "funcname": "PlotBarsH", "location": "implot:404", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHS8PtrInt", + "ov_cimguiname": "ImPlot_PlotBarsH_S8PtrInt", "ret": "void", "signature": "(const char*,const ImS8*,int,double,double,int,int)", "stname": "" @@ -7306,7 +7346,7 @@ "funcname": "PlotBarsH", "location": "implot:404", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHU8PtrInt", + "ov_cimguiname": "ImPlot_PlotBarsH_U8PtrInt", "ret": "void", "signature": "(const char*,const ImU8*,int,double,double,int,int)", "stname": "" @@ -7355,7 +7395,7 @@ "funcname": "PlotBarsH", "location": "implot:404", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHS16PtrInt", + "ov_cimguiname": "ImPlot_PlotBarsH_S16PtrInt", "ret": "void", "signature": "(const char*,const ImS16*,int,double,double,int,int)", "stname": "" @@ -7404,7 +7444,7 @@ "funcname": "PlotBarsH", "location": "implot:404", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHU16PtrInt", + "ov_cimguiname": "ImPlot_PlotBarsH_U16PtrInt", "ret": "void", "signature": "(const char*,const ImU16*,int,double,double,int,int)", "stname": "" @@ -7453,7 +7493,7 @@ "funcname": "PlotBarsH", "location": "implot:404", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHS32PtrInt", + "ov_cimguiname": "ImPlot_PlotBarsH_S32PtrInt", "ret": "void", "signature": "(const char*,const ImS32*,int,double,double,int,int)", "stname": "" @@ -7502,7 +7542,7 @@ "funcname": "PlotBarsH", "location": "implot:404", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHU32PtrInt", + "ov_cimguiname": "ImPlot_PlotBarsH_U32PtrInt", "ret": "void", "signature": "(const char*,const ImU32*,int,double,double,int,int)", "stname": "" @@ -7551,7 +7591,7 @@ "funcname": "PlotBarsH", "location": "implot:404", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHS64PtrInt", + "ov_cimguiname": "ImPlot_PlotBarsH_S64PtrInt", "ret": "void", "signature": "(const char*,const ImS64*,int,double,double,int,int)", "stname": "" @@ -7600,7 +7640,7 @@ "funcname": "PlotBarsH", "location": "implot:404", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHU64PtrInt", + "ov_cimguiname": "ImPlot_PlotBarsH_U64PtrInt", "ret": "void", "signature": "(const char*,const ImU64*,int,double,double,int,int)", "stname": "" @@ -7647,7 +7687,7 @@ "funcname": "PlotBarsH", "location": "implot:405", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHFloatPtrFloatPtr", + "ov_cimguiname": "ImPlot_PlotBarsH_FloatPtrFloatPtr", "ret": "void", "signature": "(const char*,const float*,const float*,int,double,int,int)", "stname": "" @@ -7694,7 +7734,7 @@ "funcname": "PlotBarsH", "location": "implot:405", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHdoublePtrdoublePtr", + "ov_cimguiname": "ImPlot_PlotBarsH_doublePtrdoublePtr", "ret": "void", "signature": "(const char*,const double*,const double*,int,double,int,int)", "stname": "" @@ -7741,7 +7781,7 @@ "funcname": "PlotBarsH", "location": "implot:405", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHS8PtrS8Ptr", + "ov_cimguiname": "ImPlot_PlotBarsH_S8PtrS8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,int,double,int,int)", "stname": "" @@ -7788,7 +7828,7 @@ "funcname": "PlotBarsH", "location": "implot:405", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHU8PtrU8Ptr", + "ov_cimguiname": "ImPlot_PlotBarsH_U8PtrU8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,int,double,int,int)", "stname": "" @@ -7835,7 +7875,7 @@ "funcname": "PlotBarsH", "location": "implot:405", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHS16PtrS16Ptr", + "ov_cimguiname": "ImPlot_PlotBarsH_S16PtrS16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,int,double,int,int)", "stname": "" @@ -7882,7 +7922,7 @@ "funcname": "PlotBarsH", "location": "implot:405", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHU16PtrU16Ptr", + "ov_cimguiname": "ImPlot_PlotBarsH_U16PtrU16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,int,double,int,int)", "stname": "" @@ -7929,7 +7969,7 @@ "funcname": "PlotBarsH", "location": "implot:405", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHS32PtrS32Ptr", + "ov_cimguiname": "ImPlot_PlotBarsH_S32PtrS32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,int,double,int,int)", "stname": "" @@ -7976,7 +8016,7 @@ "funcname": "PlotBarsH", "location": "implot:405", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHU32PtrU32Ptr", + "ov_cimguiname": "ImPlot_PlotBarsH_U32PtrU32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,int,double,int,int)", "stname": "" @@ -8023,7 +8063,7 @@ "funcname": "PlotBarsH", "location": "implot:405", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHS64PtrS64Ptr", + "ov_cimguiname": "ImPlot_PlotBarsH_S64PtrS64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,int,double,int,int)", "stname": "" @@ -8070,7 +8110,7 @@ "funcname": "PlotBarsH", "location": "implot:405", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotBarsHU64PtrU64Ptr", + "ov_cimguiname": "ImPlot_PlotBarsH_U64PtrU64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,int,double,int,int)", "stname": "" @@ -8162,7 +8202,7 @@ "funcname": "PlotDigital", "location": "implot:431", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotDigitalFloatPtr", + "ov_cimguiname": "ImPlot_PlotDigital_FloatPtr", "ret": "void", "signature": "(const char*,const float*,const float*,int,int,int)", "stname": "" @@ -8205,7 +8245,7 @@ "funcname": "PlotDigital", "location": "implot:431", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotDigitaldoublePtr", + "ov_cimguiname": "ImPlot_PlotDigital_doublePtr", "ret": "void", "signature": "(const char*,const double*,const double*,int,int,int)", "stname": "" @@ -8248,7 +8288,7 @@ "funcname": "PlotDigital", "location": "implot:431", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotDigitalS8Ptr", + "ov_cimguiname": "ImPlot_PlotDigital_S8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,int,int,int)", "stname": "" @@ -8291,7 +8331,7 @@ "funcname": "PlotDigital", "location": "implot:431", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotDigitalU8Ptr", + "ov_cimguiname": "ImPlot_PlotDigital_U8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,int,int,int)", "stname": "" @@ -8334,7 +8374,7 @@ "funcname": "PlotDigital", "location": "implot:431", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotDigitalS16Ptr", + "ov_cimguiname": "ImPlot_PlotDigital_S16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,int,int,int)", "stname": "" @@ -8377,7 +8417,7 @@ "funcname": "PlotDigital", "location": "implot:431", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotDigitalU16Ptr", + "ov_cimguiname": "ImPlot_PlotDigital_U16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,int,int,int)", "stname": "" @@ -8420,7 +8460,7 @@ "funcname": "PlotDigital", "location": "implot:431", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotDigitalS32Ptr", + "ov_cimguiname": "ImPlot_PlotDigital_S32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,int,int,int)", "stname": "" @@ -8463,7 +8503,7 @@ "funcname": "PlotDigital", "location": "implot:431", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotDigitalU32Ptr", + "ov_cimguiname": "ImPlot_PlotDigital_U32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,int,int,int)", "stname": "" @@ -8506,7 +8546,7 @@ "funcname": "PlotDigital", "location": "implot:431", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotDigitalS64Ptr", + "ov_cimguiname": "ImPlot_PlotDigital_S64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,int,int,int)", "stname": "" @@ -8549,7 +8589,7 @@ "funcname": "PlotDigital", "location": "implot:431", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotDigitalU64Ptr", + "ov_cimguiname": "ImPlot_PlotDigital_U64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,int,int,int)", "stname": "" @@ -8663,7 +8703,7 @@ "funcname": "PlotErrorBars", "location": "implot:409", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsFloatPtrFloatPtrFloatPtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrInt", "ret": "void", "signature": "(const char*,const float*,const float*,const float*,int,int,int)", "stname": "" @@ -8710,7 +8750,7 @@ "funcname": "PlotErrorBars", "location": "implot:409", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsdoublePtrdoublePtrdoublePtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrInt", "ret": "void", "signature": "(const char*,const double*,const double*,const double*,int,int,int)", "stname": "" @@ -8757,7 +8797,7 @@ "funcname": "PlotErrorBars", "location": "implot:409", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsS8PtrS8PtrS8PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrInt", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,const ImS8*,int,int,int)", "stname": "" @@ -8804,7 +8844,7 @@ "funcname": "PlotErrorBars", "location": "implot:409", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsU8PtrU8PtrU8PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrInt", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,const ImU8*,int,int,int)", "stname": "" @@ -8851,7 +8891,7 @@ "funcname": "PlotErrorBars", "location": "implot:409", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsS16PtrS16PtrS16PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrInt", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,const ImS16*,int,int,int)", "stname": "" @@ -8898,7 +8938,7 @@ "funcname": "PlotErrorBars", "location": "implot:409", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsU16PtrU16PtrU16PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrInt", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,const ImU16*,int,int,int)", "stname": "" @@ -8945,7 +8985,7 @@ "funcname": "PlotErrorBars", "location": "implot:409", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsS32PtrS32PtrS32PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrInt", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,const ImS32*,int,int,int)", "stname": "" @@ -8992,7 +9032,7 @@ "funcname": "PlotErrorBars", "location": "implot:409", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsU32PtrU32PtrU32PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrInt", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,const ImU32*,int,int,int)", "stname": "" @@ -9039,7 +9079,7 @@ "funcname": "PlotErrorBars", "location": "implot:409", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsS64PtrS64PtrS64PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrInt", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,const ImS64*,int,int,int)", "stname": "" @@ -9086,7 +9126,7 @@ "funcname": "PlotErrorBars", "location": "implot:409", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsU64PtrU64PtrU64PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrInt", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,const ImU64*,int,int,int)", "stname": "" @@ -9137,7 +9177,7 @@ "funcname": "PlotErrorBars", "location": "implot:410", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsFloatPtrFloatPtrFloatPtrFloatPtr", + "ov_cimguiname": "ImPlot_PlotErrorBars_FloatPtrFloatPtrFloatPtrFloatPtr", "ret": "void", "signature": "(const char*,const float*,const float*,const float*,const float*,int,int,int)", "stname": "" @@ -9188,7 +9228,7 @@ "funcname": "PlotErrorBars", "location": "implot:410", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsdoublePtrdoublePtrdoublePtrdoublePtr", + "ov_cimguiname": "ImPlot_PlotErrorBars_doublePtrdoublePtrdoublePtrdoublePtr", "ret": "void", "signature": "(const char*,const double*,const double*,const double*,const double*,int,int,int)", "stname": "" @@ -9239,7 +9279,7 @@ "funcname": "PlotErrorBars", "location": "implot:410", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsS8PtrS8PtrS8PtrS8Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBars_S8PtrS8PtrS8PtrS8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,const ImS8*,const ImS8*,int,int,int)", "stname": "" @@ -9290,7 +9330,7 @@ "funcname": "PlotErrorBars", "location": "implot:410", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsU8PtrU8PtrU8PtrU8Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBars_U8PtrU8PtrU8PtrU8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,const ImU8*,const ImU8*,int,int,int)", "stname": "" @@ -9341,7 +9381,7 @@ "funcname": "PlotErrorBars", "location": "implot:410", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsS16PtrS16PtrS16PtrS16Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBars_S16PtrS16PtrS16PtrS16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,const ImS16*,const ImS16*,int,int,int)", "stname": "" @@ -9392,7 +9432,7 @@ "funcname": "PlotErrorBars", "location": "implot:410", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsU16PtrU16PtrU16PtrU16Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBars_U16PtrU16PtrU16PtrU16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,const ImU16*,const ImU16*,int,int,int)", "stname": "" @@ -9443,7 +9483,7 @@ "funcname": "PlotErrorBars", "location": "implot:410", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsS32PtrS32PtrS32PtrS32Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBars_S32PtrS32PtrS32PtrS32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,const ImS32*,const ImS32*,int,int,int)", "stname": "" @@ -9494,7 +9534,7 @@ "funcname": "PlotErrorBars", "location": "implot:410", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsU32PtrU32PtrU32PtrU32Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBars_U32PtrU32PtrU32PtrU32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,const ImU32*,const ImU32*,int,int,int)", "stname": "" @@ -9545,7 +9585,7 @@ "funcname": "PlotErrorBars", "location": "implot:410", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsS64PtrS64PtrS64PtrS64Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBars_S64PtrS64PtrS64PtrS64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,const ImS64*,const ImS64*,int,int,int)", "stname": "" @@ -9596,7 +9636,7 @@ "funcname": "PlotErrorBars", "location": "implot:410", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsU64PtrU64PtrU64PtrU64Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBars_U64PtrU64PtrU64PtrU64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,const ImU64*,const ImU64*,int,int,int)", "stname": "" @@ -9645,7 +9685,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:413", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHFloatPtrFloatPtrFloatPtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_FloatPtrFloatPtrFloatPtrInt", "ret": "void", "signature": "(const char*,const float*,const float*,const float*,int,int,int)", "stname": "" @@ -9692,7 +9732,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:413", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHdoublePtrdoublePtrdoublePtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_doublePtrdoublePtrdoublePtrInt", "ret": "void", "signature": "(const char*,const double*,const double*,const double*,int,int,int)", "stname": "" @@ -9739,7 +9779,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:413", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHS8PtrS8PtrS8PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_S8PtrS8PtrS8PtrInt", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,const ImS8*,int,int,int)", "stname": "" @@ -9786,7 +9826,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:413", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHU8PtrU8PtrU8PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_U8PtrU8PtrU8PtrInt", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,const ImU8*,int,int,int)", "stname": "" @@ -9833,7 +9873,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:413", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHS16PtrS16PtrS16PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_S16PtrS16PtrS16PtrInt", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,const ImS16*,int,int,int)", "stname": "" @@ -9880,7 +9920,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:413", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHU16PtrU16PtrU16PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_U16PtrU16PtrU16PtrInt", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,const ImU16*,int,int,int)", "stname": "" @@ -9927,7 +9967,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:413", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHS32PtrS32PtrS32PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_S32PtrS32PtrS32PtrInt", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,const ImS32*,int,int,int)", "stname": "" @@ -9974,7 +10014,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:413", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHU32PtrU32PtrU32PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_U32PtrU32PtrU32PtrInt", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,const ImU32*,int,int,int)", "stname": "" @@ -10021,7 +10061,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:413", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHS64PtrS64PtrS64PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_S64PtrS64PtrS64PtrInt", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,const ImS64*,int,int,int)", "stname": "" @@ -10068,7 +10108,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:413", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHU64PtrU64PtrU64PtrInt", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_U64PtrU64PtrU64PtrInt", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,const ImU64*,int,int,int)", "stname": "" @@ -10119,7 +10159,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:414", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHFloatPtrFloatPtrFloatPtrFloatPtr", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_FloatPtrFloatPtrFloatPtrFloatPtr", "ret": "void", "signature": "(const char*,const float*,const float*,const float*,const float*,int,int,int)", "stname": "" @@ -10170,7 +10210,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:414", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHdoublePtrdoublePtrdoublePtrdoublePtr", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_doublePtrdoublePtrdoublePtrdoublePtr", "ret": "void", "signature": "(const char*,const double*,const double*,const double*,const double*,int,int,int)", "stname": "" @@ -10221,7 +10261,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:414", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHS8PtrS8PtrS8PtrS8Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_S8PtrS8PtrS8PtrS8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,const ImS8*,const ImS8*,int,int,int)", "stname": "" @@ -10272,7 +10312,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:414", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHU8PtrU8PtrU8PtrU8Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_U8PtrU8PtrU8PtrU8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,const ImU8*,const ImU8*,int,int,int)", "stname": "" @@ -10323,7 +10363,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:414", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHS16PtrS16PtrS16PtrS16Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_S16PtrS16PtrS16PtrS16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,const ImS16*,const ImS16*,int,int,int)", "stname": "" @@ -10374,7 +10414,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:414", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHU16PtrU16PtrU16PtrU16Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_U16PtrU16PtrU16PtrU16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,const ImU16*,const ImU16*,int,int,int)", "stname": "" @@ -10425,7 +10465,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:414", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHS32PtrS32PtrS32PtrS32Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_S32PtrS32PtrS32PtrS32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,const ImS32*,const ImS32*,int,int,int)", "stname": "" @@ -10476,7 +10516,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:414", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHU32PtrU32PtrU32PtrU32Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_U32PtrU32PtrU32PtrU32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,const ImU32*,const ImU32*,int,int,int)", "stname": "" @@ -10527,7 +10567,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:414", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHS64PtrS64PtrS64PtrS64Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_S64PtrS64PtrS64PtrS64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,const ImS64*,const ImS64*,int,int,int)", "stname": "" @@ -10578,7 +10618,7 @@ "funcname": "PlotErrorBarsH", "location": "implot:414", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotErrorBarsHU64PtrU64PtrU64PtrU64Ptr", + "ov_cimguiname": "ImPlot_PlotErrorBarsH_U64PtrU64PtrU64PtrU64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,const ImU64*,const ImU64*,int,int,int)", "stname": "" @@ -10619,7 +10659,7 @@ "funcname": "PlotHLines", "location": "implot:422", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHLinesFloatPtr", + "ov_cimguiname": "ImPlot_PlotHLines_FloatPtr", "ret": "void", "signature": "(const char*,const float*,int,int,int)", "stname": "" @@ -10658,7 +10698,7 @@ "funcname": "PlotHLines", "location": "implot:422", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHLinesdoublePtr", + "ov_cimguiname": "ImPlot_PlotHLines_doublePtr", "ret": "void", "signature": "(const char*,const double*,int,int,int)", "stname": "" @@ -10697,7 +10737,7 @@ "funcname": "PlotHLines", "location": "implot:422", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHLinesS8Ptr", + "ov_cimguiname": "ImPlot_PlotHLines_S8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,int,int,int)", "stname": "" @@ -10736,7 +10776,7 @@ "funcname": "PlotHLines", "location": "implot:422", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHLinesU8Ptr", + "ov_cimguiname": "ImPlot_PlotHLines_U8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,int,int,int)", "stname": "" @@ -10775,7 +10815,7 @@ "funcname": "PlotHLines", "location": "implot:422", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHLinesS16Ptr", + "ov_cimguiname": "ImPlot_PlotHLines_S16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,int,int,int)", "stname": "" @@ -10814,7 +10854,7 @@ "funcname": "PlotHLines", "location": "implot:422", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHLinesU16Ptr", + "ov_cimguiname": "ImPlot_PlotHLines_U16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,int,int,int)", "stname": "" @@ -10853,7 +10893,7 @@ "funcname": "PlotHLines", "location": "implot:422", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHLinesS32Ptr", + "ov_cimguiname": "ImPlot_PlotHLines_S32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,int,int,int)", "stname": "" @@ -10892,7 +10932,7 @@ "funcname": "PlotHLines", "location": "implot:422", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHLinesU32Ptr", + "ov_cimguiname": "ImPlot_PlotHLines_U32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,int,int,int)", "stname": "" @@ -10931,7 +10971,7 @@ "funcname": "PlotHLines", "location": "implot:422", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHLinesS64Ptr", + "ov_cimguiname": "ImPlot_PlotHLines_S64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,int,int,int)", "stname": "" @@ -10970,7 +11010,7 @@ "funcname": "PlotHLines", "location": "implot:422", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHLinesU64Ptr", + "ov_cimguiname": "ImPlot_PlotHLines_U64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,int,int,int)", "stname": "" @@ -11028,7 +11068,7 @@ "funcname": "PlotHeatmap", "location": "implot:428", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHeatmapFloatPtr", + "ov_cimguiname": "ImPlot_PlotHeatmap_FloatPtr", "ret": "void", "signature": "(const char*,const float*,int,int,double,double,const char*,const ImPlotPoint,const ImPlotPoint)", "stname": "" @@ -11084,7 +11124,7 @@ "funcname": "PlotHeatmap", "location": "implot:428", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHeatmapdoublePtr", + "ov_cimguiname": "ImPlot_PlotHeatmap_doublePtr", "ret": "void", "signature": "(const char*,const double*,int,int,double,double,const char*,const ImPlotPoint,const ImPlotPoint)", "stname": "" @@ -11140,7 +11180,7 @@ "funcname": "PlotHeatmap", "location": "implot:428", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHeatmapS8Ptr", + "ov_cimguiname": "ImPlot_PlotHeatmap_S8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,int,int,double,double,const char*,const ImPlotPoint,const ImPlotPoint)", "stname": "" @@ -11196,7 +11236,7 @@ "funcname": "PlotHeatmap", "location": "implot:428", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHeatmapU8Ptr", + "ov_cimguiname": "ImPlot_PlotHeatmap_U8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,int,int,double,double,const char*,const ImPlotPoint,const ImPlotPoint)", "stname": "" @@ -11252,7 +11292,7 @@ "funcname": "PlotHeatmap", "location": "implot:428", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHeatmapS16Ptr", + "ov_cimguiname": "ImPlot_PlotHeatmap_S16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,int,int,double,double,const char*,const ImPlotPoint,const ImPlotPoint)", "stname": "" @@ -11308,7 +11348,7 @@ "funcname": "PlotHeatmap", "location": "implot:428", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHeatmapU16Ptr", + "ov_cimguiname": "ImPlot_PlotHeatmap_U16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,int,int,double,double,const char*,const ImPlotPoint,const ImPlotPoint)", "stname": "" @@ -11364,7 +11404,7 @@ "funcname": "PlotHeatmap", "location": "implot:428", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHeatmapS32Ptr", + "ov_cimguiname": "ImPlot_PlotHeatmap_S32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,int,int,double,double,const char*,const ImPlotPoint,const ImPlotPoint)", "stname": "" @@ -11420,7 +11460,7 @@ "funcname": "PlotHeatmap", "location": "implot:428", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHeatmapU32Ptr", + "ov_cimguiname": "ImPlot_PlotHeatmap_U32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,int,int,double,double,const char*,const ImPlotPoint,const ImPlotPoint)", "stname": "" @@ -11476,7 +11516,7 @@ "funcname": "PlotHeatmap", "location": "implot:428", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHeatmapS64Ptr", + "ov_cimguiname": "ImPlot_PlotHeatmap_S64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,int,int,double,double,const char*,const ImPlotPoint,const ImPlotPoint)", "stname": "" @@ -11532,7 +11572,7 @@ "funcname": "PlotHeatmap", "location": "implot:428", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotHeatmapU64Ptr", + "ov_cimguiname": "ImPlot_PlotHeatmap_U64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,int,int,double,double,const char*,const ImPlotPoint,const ImPlotPoint)", "stname": "" @@ -11633,7 +11673,7 @@ "funcname": "PlotLine", "location": "implot:378", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineFloatPtrInt", + "ov_cimguiname": "ImPlot_PlotLine_FloatPtrInt", "ret": "void", "signature": "(const char*,const float*,int,double,double,int,int)", "stname": "" @@ -11682,7 +11722,7 @@ "funcname": "PlotLine", "location": "implot:378", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLinedoublePtrInt", + "ov_cimguiname": "ImPlot_PlotLine_doublePtrInt", "ret": "void", "signature": "(const char*,const double*,int,double,double,int,int)", "stname": "" @@ -11731,7 +11771,7 @@ "funcname": "PlotLine", "location": "implot:378", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineS8PtrInt", + "ov_cimguiname": "ImPlot_PlotLine_S8PtrInt", "ret": "void", "signature": "(const char*,const ImS8*,int,double,double,int,int)", "stname": "" @@ -11780,7 +11820,7 @@ "funcname": "PlotLine", "location": "implot:378", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineU8PtrInt", + "ov_cimguiname": "ImPlot_PlotLine_U8PtrInt", "ret": "void", "signature": "(const char*,const ImU8*,int,double,double,int,int)", "stname": "" @@ -11829,7 +11869,7 @@ "funcname": "PlotLine", "location": "implot:378", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineS16PtrInt", + "ov_cimguiname": "ImPlot_PlotLine_S16PtrInt", "ret": "void", "signature": "(const char*,const ImS16*,int,double,double,int,int)", "stname": "" @@ -11878,7 +11918,7 @@ "funcname": "PlotLine", "location": "implot:378", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineU16PtrInt", + "ov_cimguiname": "ImPlot_PlotLine_U16PtrInt", "ret": "void", "signature": "(const char*,const ImU16*,int,double,double,int,int)", "stname": "" @@ -11927,7 +11967,7 @@ "funcname": "PlotLine", "location": "implot:378", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineS32PtrInt", + "ov_cimguiname": "ImPlot_PlotLine_S32PtrInt", "ret": "void", "signature": "(const char*,const ImS32*,int,double,double,int,int)", "stname": "" @@ -11976,7 +12016,7 @@ "funcname": "PlotLine", "location": "implot:378", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineU32PtrInt", + "ov_cimguiname": "ImPlot_PlotLine_U32PtrInt", "ret": "void", "signature": "(const char*,const ImU32*,int,double,double,int,int)", "stname": "" @@ -12025,7 +12065,7 @@ "funcname": "PlotLine", "location": "implot:378", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineS64PtrInt", + "ov_cimguiname": "ImPlot_PlotLine_S64PtrInt", "ret": "void", "signature": "(const char*,const ImS64*,int,double,double,int,int)", "stname": "" @@ -12074,7 +12114,7 @@ "funcname": "PlotLine", "location": "implot:378", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineU64PtrInt", + "ov_cimguiname": "ImPlot_PlotLine_U64PtrInt", "ret": "void", "signature": "(const char*,const ImU64*,int,double,double,int,int)", "stname": "" @@ -12117,7 +12157,7 @@ "funcname": "PlotLine", "location": "implot:379", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineFloatPtrFloatPtr", + "ov_cimguiname": "ImPlot_PlotLine_FloatPtrFloatPtr", "ret": "void", "signature": "(const char*,const float*,const float*,int,int,int)", "stname": "" @@ -12160,7 +12200,7 @@ "funcname": "PlotLine", "location": "implot:379", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLinedoublePtrdoublePtr", + "ov_cimguiname": "ImPlot_PlotLine_doublePtrdoublePtr", "ret": "void", "signature": "(const char*,const double*,const double*,int,int,int)", "stname": "" @@ -12203,7 +12243,7 @@ "funcname": "PlotLine", "location": "implot:379", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineS8PtrS8Ptr", + "ov_cimguiname": "ImPlot_PlotLine_S8PtrS8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,int,int,int)", "stname": "" @@ -12246,7 +12286,7 @@ "funcname": "PlotLine", "location": "implot:379", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineU8PtrU8Ptr", + "ov_cimguiname": "ImPlot_PlotLine_U8PtrU8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,int,int,int)", "stname": "" @@ -12289,7 +12329,7 @@ "funcname": "PlotLine", "location": "implot:379", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineS16PtrS16Ptr", + "ov_cimguiname": "ImPlot_PlotLine_S16PtrS16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,int,int,int)", "stname": "" @@ -12332,7 +12372,7 @@ "funcname": "PlotLine", "location": "implot:379", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineU16PtrU16Ptr", + "ov_cimguiname": "ImPlot_PlotLine_U16PtrU16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,int,int,int)", "stname": "" @@ -12375,7 +12415,7 @@ "funcname": "PlotLine", "location": "implot:379", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineS32PtrS32Ptr", + "ov_cimguiname": "ImPlot_PlotLine_S32PtrS32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,int,int,int)", "stname": "" @@ -12418,7 +12458,7 @@ "funcname": "PlotLine", "location": "implot:379", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineU32PtrU32Ptr", + "ov_cimguiname": "ImPlot_PlotLine_U32PtrU32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,int,int,int)", "stname": "" @@ -12461,7 +12501,7 @@ "funcname": "PlotLine", "location": "implot:379", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineS64PtrS64Ptr", + "ov_cimguiname": "ImPlot_PlotLine_S64PtrS64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,int,int,int)", "stname": "" @@ -12504,7 +12544,7 @@ "funcname": "PlotLine", "location": "implot:379", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotLineU64PtrU64Ptr", + "ov_cimguiname": "ImPlot_PlotLine_U64PtrU64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,int,int,int)", "stname": "" @@ -12605,7 +12645,7 @@ "funcname": "PlotPieChart", "location": "implot:425", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotPieChartFloatPtr", + "ov_cimguiname": "ImPlot_PlotPieChart_FloatPtr", "ret": "void", "signature": "(const char* const[],const float*,int,double,double,double,bool,const char*,double)", "stname": "" @@ -12661,7 +12701,7 @@ "funcname": "PlotPieChart", "location": "implot:425", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotPieChartdoublePtr", + "ov_cimguiname": "ImPlot_PlotPieChart_doublePtr", "ret": "void", "signature": "(const char* const[],const double*,int,double,double,double,bool,const char*,double)", "stname": "" @@ -12717,7 +12757,7 @@ "funcname": "PlotPieChart", "location": "implot:425", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotPieChartS8Ptr", + "ov_cimguiname": "ImPlot_PlotPieChart_S8Ptr", "ret": "void", "signature": "(const char* const[],const ImS8*,int,double,double,double,bool,const char*,double)", "stname": "" @@ -12773,7 +12813,7 @@ "funcname": "PlotPieChart", "location": "implot:425", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotPieChartU8Ptr", + "ov_cimguiname": "ImPlot_PlotPieChart_U8Ptr", "ret": "void", "signature": "(const char* const[],const ImU8*,int,double,double,double,bool,const char*,double)", "stname": "" @@ -12829,7 +12869,7 @@ "funcname": "PlotPieChart", "location": "implot:425", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotPieChartS16Ptr", + "ov_cimguiname": "ImPlot_PlotPieChart_S16Ptr", "ret": "void", "signature": "(const char* const[],const ImS16*,int,double,double,double,bool,const char*,double)", "stname": "" @@ -12885,7 +12925,7 @@ "funcname": "PlotPieChart", "location": "implot:425", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotPieChartU16Ptr", + "ov_cimguiname": "ImPlot_PlotPieChart_U16Ptr", "ret": "void", "signature": "(const char* const[],const ImU16*,int,double,double,double,bool,const char*,double)", "stname": "" @@ -12941,7 +12981,7 @@ "funcname": "PlotPieChart", "location": "implot:425", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotPieChartS32Ptr", + "ov_cimguiname": "ImPlot_PlotPieChart_S32Ptr", "ret": "void", "signature": "(const char* const[],const ImS32*,int,double,double,double,bool,const char*,double)", "stname": "" @@ -12997,7 +13037,7 @@ "funcname": "PlotPieChart", "location": "implot:425", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotPieChartU32Ptr", + "ov_cimguiname": "ImPlot_PlotPieChart_U32Ptr", "ret": "void", "signature": "(const char* const[],const ImU32*,int,double,double,double,bool,const char*,double)", "stname": "" @@ -13053,7 +13093,7 @@ "funcname": "PlotPieChart", "location": "implot:425", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotPieChartS64Ptr", + "ov_cimguiname": "ImPlot_PlotPieChart_S64Ptr", "ret": "void", "signature": "(const char* const[],const ImS64*,int,double,double,double,bool,const char*,double)", "stname": "" @@ -13109,7 +13149,7 @@ "funcname": "PlotPieChart", "location": "implot:425", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotPieChartU64Ptr", + "ov_cimguiname": "ImPlot_PlotPieChart_U64Ptr", "ret": "void", "signature": "(const char* const[],const ImU64*,int,double,double,double,bool,const char*,double)", "stname": "" @@ -13154,7 +13194,7 @@ "funcname": "PlotRects", "location": "implot_internal:991", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotRectsFloatPtr", + "ov_cimguiname": "ImPlot_PlotRects_FloatPtr", "ret": "void", "signature": "(const char*,const float*,const float*,int,int,int)", "stname": "" @@ -13197,7 +13237,7 @@ "funcname": "PlotRects", "location": "implot_internal:992", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotRectsdoublePtr", + "ov_cimguiname": "ImPlot_PlotRects_doublePtr", "ret": "void", "signature": "(const char*,const double*,const double*,int,int,int)", "stname": "" @@ -13237,7 +13277,7 @@ "funcname": "PlotRects", "location": "implot_internal:993", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotRectsFnPlotPoIntPtr", + "ov_cimguiname": "ImPlot_PlotRects_FnPlotPoIntPtr", "ret": "void", "signature": "(const char*,ImPlotPoint(*)(void*,int),void*,int,int)", "stname": "" @@ -13288,7 +13328,7 @@ "funcname": "PlotScatter", "location": "implot:383", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterFloatPtrInt", + "ov_cimguiname": "ImPlot_PlotScatter_FloatPtrInt", "ret": "void", "signature": "(const char*,const float*,int,double,double,int,int)", "stname": "" @@ -13337,7 +13377,7 @@ "funcname": "PlotScatter", "location": "implot:383", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterdoublePtrInt", + "ov_cimguiname": "ImPlot_PlotScatter_doublePtrInt", "ret": "void", "signature": "(const char*,const double*,int,double,double,int,int)", "stname": "" @@ -13386,7 +13426,7 @@ "funcname": "PlotScatter", "location": "implot:383", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterS8PtrInt", + "ov_cimguiname": "ImPlot_PlotScatter_S8PtrInt", "ret": "void", "signature": "(const char*,const ImS8*,int,double,double,int,int)", "stname": "" @@ -13435,7 +13475,7 @@ "funcname": "PlotScatter", "location": "implot:383", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterU8PtrInt", + "ov_cimguiname": "ImPlot_PlotScatter_U8PtrInt", "ret": "void", "signature": "(const char*,const ImU8*,int,double,double,int,int)", "stname": "" @@ -13484,7 +13524,7 @@ "funcname": "PlotScatter", "location": "implot:383", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterS16PtrInt", + "ov_cimguiname": "ImPlot_PlotScatter_S16PtrInt", "ret": "void", "signature": "(const char*,const ImS16*,int,double,double,int,int)", "stname": "" @@ -13533,7 +13573,7 @@ "funcname": "PlotScatter", "location": "implot:383", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterU16PtrInt", + "ov_cimguiname": "ImPlot_PlotScatter_U16PtrInt", "ret": "void", "signature": "(const char*,const ImU16*,int,double,double,int,int)", "stname": "" @@ -13582,7 +13622,7 @@ "funcname": "PlotScatter", "location": "implot:383", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterS32PtrInt", + "ov_cimguiname": "ImPlot_PlotScatter_S32PtrInt", "ret": "void", "signature": "(const char*,const ImS32*,int,double,double,int,int)", "stname": "" @@ -13631,7 +13671,7 @@ "funcname": "PlotScatter", "location": "implot:383", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterU32PtrInt", + "ov_cimguiname": "ImPlot_PlotScatter_U32PtrInt", "ret": "void", "signature": "(const char*,const ImU32*,int,double,double,int,int)", "stname": "" @@ -13680,7 +13720,7 @@ "funcname": "PlotScatter", "location": "implot:383", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterS64PtrInt", + "ov_cimguiname": "ImPlot_PlotScatter_S64PtrInt", "ret": "void", "signature": "(const char*,const ImS64*,int,double,double,int,int)", "stname": "" @@ -13729,7 +13769,7 @@ "funcname": "PlotScatter", "location": "implot:383", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterU64PtrInt", + "ov_cimguiname": "ImPlot_PlotScatter_U64PtrInt", "ret": "void", "signature": "(const char*,const ImU64*,int,double,double,int,int)", "stname": "" @@ -13772,7 +13812,7 @@ "funcname": "PlotScatter", "location": "implot:384", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterFloatPtrFloatPtr", + "ov_cimguiname": "ImPlot_PlotScatter_FloatPtrFloatPtr", "ret": "void", "signature": "(const char*,const float*,const float*,int,int,int)", "stname": "" @@ -13815,7 +13855,7 @@ "funcname": "PlotScatter", "location": "implot:384", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterdoublePtrdoublePtr", + "ov_cimguiname": "ImPlot_PlotScatter_doublePtrdoublePtr", "ret": "void", "signature": "(const char*,const double*,const double*,int,int,int)", "stname": "" @@ -13858,7 +13898,7 @@ "funcname": "PlotScatter", "location": "implot:384", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterS8PtrS8Ptr", + "ov_cimguiname": "ImPlot_PlotScatter_S8PtrS8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,int,int,int)", "stname": "" @@ -13901,7 +13941,7 @@ "funcname": "PlotScatter", "location": "implot:384", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterU8PtrU8Ptr", + "ov_cimguiname": "ImPlot_PlotScatter_U8PtrU8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,int,int,int)", "stname": "" @@ -13944,7 +13984,7 @@ "funcname": "PlotScatter", "location": "implot:384", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterS16PtrS16Ptr", + "ov_cimguiname": "ImPlot_PlotScatter_S16PtrS16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,int,int,int)", "stname": "" @@ -13987,7 +14027,7 @@ "funcname": "PlotScatter", "location": "implot:384", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterU16PtrU16Ptr", + "ov_cimguiname": "ImPlot_PlotScatter_U16PtrU16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,int,int,int)", "stname": "" @@ -14030,7 +14070,7 @@ "funcname": "PlotScatter", "location": "implot:384", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterS32PtrS32Ptr", + "ov_cimguiname": "ImPlot_PlotScatter_S32PtrS32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,int,int,int)", "stname": "" @@ -14073,7 +14113,7 @@ "funcname": "PlotScatter", "location": "implot:384", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterU32PtrU32Ptr", + "ov_cimguiname": "ImPlot_PlotScatter_U32PtrU32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,int,int,int)", "stname": "" @@ -14116,7 +14156,7 @@ "funcname": "PlotScatter", "location": "implot:384", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterS64PtrS64Ptr", + "ov_cimguiname": "ImPlot_PlotScatter_S64PtrS64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,int,int,int)", "stname": "" @@ -14159,7 +14199,7 @@ "funcname": "PlotScatter", "location": "implot:384", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotScatterU64PtrU64Ptr", + "ov_cimguiname": "ImPlot_PlotScatter_U64PtrU64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,int,int,int)", "stname": "" @@ -14258,7 +14298,7 @@ "funcname": "PlotShaded", "location": "implot:393", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedFloatPtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_FloatPtrInt", "ret": "void", "signature": "(const char*,const float*,int,double,double,double,int,int)", "stname": "" @@ -14312,7 +14352,7 @@ "funcname": "PlotShaded", "location": "implot:393", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadeddoublePtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_doublePtrInt", "ret": "void", "signature": "(const char*,const double*,int,double,double,double,int,int)", "stname": "" @@ -14366,7 +14406,7 @@ "funcname": "PlotShaded", "location": "implot:393", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS8PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_S8PtrInt", "ret": "void", "signature": "(const char*,const ImS8*,int,double,double,double,int,int)", "stname": "" @@ -14420,7 +14460,7 @@ "funcname": "PlotShaded", "location": "implot:393", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU8PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_U8PtrInt", "ret": "void", "signature": "(const char*,const ImU8*,int,double,double,double,int,int)", "stname": "" @@ -14474,7 +14514,7 @@ "funcname": "PlotShaded", "location": "implot:393", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS16PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_S16PtrInt", "ret": "void", "signature": "(const char*,const ImS16*,int,double,double,double,int,int)", "stname": "" @@ -14528,7 +14568,7 @@ "funcname": "PlotShaded", "location": "implot:393", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU16PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_U16PtrInt", "ret": "void", "signature": "(const char*,const ImU16*,int,double,double,double,int,int)", "stname": "" @@ -14582,7 +14622,7 @@ "funcname": "PlotShaded", "location": "implot:393", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS32PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_S32PtrInt", "ret": "void", "signature": "(const char*,const ImS32*,int,double,double,double,int,int)", "stname": "" @@ -14636,7 +14676,7 @@ "funcname": "PlotShaded", "location": "implot:393", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU32PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_U32PtrInt", "ret": "void", "signature": "(const char*,const ImU32*,int,double,double,double,int,int)", "stname": "" @@ -14690,7 +14730,7 @@ "funcname": "PlotShaded", "location": "implot:393", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS64PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_S64PtrInt", "ret": "void", "signature": "(const char*,const ImS64*,int,double,double,double,int,int)", "stname": "" @@ -14744,7 +14784,7 @@ "funcname": "PlotShaded", "location": "implot:393", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU64PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_U64PtrInt", "ret": "void", "signature": "(const char*,const ImU64*,int,double,double,double,int,int)", "stname": "" @@ -14792,7 +14832,7 @@ "funcname": "PlotShaded", "location": "implot:394", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedFloatPtrFloatPtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_FloatPtrFloatPtrInt", "ret": "void", "signature": "(const char*,const float*,const float*,int,double,int,int)", "stname": "" @@ -14840,7 +14880,7 @@ "funcname": "PlotShaded", "location": "implot:394", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadeddoublePtrdoublePtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_doublePtrdoublePtrInt", "ret": "void", "signature": "(const char*,const double*,const double*,int,double,int,int)", "stname": "" @@ -14888,7 +14928,7 @@ "funcname": "PlotShaded", "location": "implot:394", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS8PtrS8PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_S8PtrS8PtrInt", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,int,double,int,int)", "stname": "" @@ -14936,7 +14976,7 @@ "funcname": "PlotShaded", "location": "implot:394", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU8PtrU8PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_U8PtrU8PtrInt", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,int,double,int,int)", "stname": "" @@ -14984,7 +15024,7 @@ "funcname": "PlotShaded", "location": "implot:394", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS16PtrS16PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_S16PtrS16PtrInt", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,int,double,int,int)", "stname": "" @@ -15032,7 +15072,7 @@ "funcname": "PlotShaded", "location": "implot:394", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU16PtrU16PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_U16PtrU16PtrInt", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,int,double,int,int)", "stname": "" @@ -15080,7 +15120,7 @@ "funcname": "PlotShaded", "location": "implot:394", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS32PtrS32PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_S32PtrS32PtrInt", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,int,double,int,int)", "stname": "" @@ -15128,7 +15168,7 @@ "funcname": "PlotShaded", "location": "implot:394", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU32PtrU32PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_U32PtrU32PtrInt", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,int,double,int,int)", "stname": "" @@ -15176,7 +15216,7 @@ "funcname": "PlotShaded", "location": "implot:394", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS64PtrS64PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_S64PtrS64PtrInt", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,int,double,int,int)", "stname": "" @@ -15224,7 +15264,7 @@ "funcname": "PlotShaded", "location": "implot:394", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU64PtrU64PtrInt", + "ov_cimguiname": "ImPlot_PlotShaded_U64PtrU64PtrInt", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,int,double,int,int)", "stname": "" @@ -15271,7 +15311,7 @@ "funcname": "PlotShaded", "location": "implot:395", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedFloatPtrFloatPtrFloatPtr", + "ov_cimguiname": "ImPlot_PlotShaded_FloatPtrFloatPtrFloatPtr", "ret": "void", "signature": "(const char*,const float*,const float*,const float*,int,int,int)", "stname": "" @@ -15318,7 +15358,7 @@ "funcname": "PlotShaded", "location": "implot:395", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadeddoublePtrdoublePtrdoublePtr", + "ov_cimguiname": "ImPlot_PlotShaded_doublePtrdoublePtrdoublePtr", "ret": "void", "signature": "(const char*,const double*,const double*,const double*,int,int,int)", "stname": "" @@ -15365,7 +15405,7 @@ "funcname": "PlotShaded", "location": "implot:395", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS8PtrS8PtrS8Ptr", + "ov_cimguiname": "ImPlot_PlotShaded_S8PtrS8PtrS8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,const ImS8*,int,int,int)", "stname": "" @@ -15412,7 +15452,7 @@ "funcname": "PlotShaded", "location": "implot:395", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU8PtrU8PtrU8Ptr", + "ov_cimguiname": "ImPlot_PlotShaded_U8PtrU8PtrU8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,const ImU8*,int,int,int)", "stname": "" @@ -15459,7 +15499,7 @@ "funcname": "PlotShaded", "location": "implot:395", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS16PtrS16PtrS16Ptr", + "ov_cimguiname": "ImPlot_PlotShaded_S16PtrS16PtrS16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,const ImS16*,int,int,int)", "stname": "" @@ -15506,7 +15546,7 @@ "funcname": "PlotShaded", "location": "implot:395", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU16PtrU16PtrU16Ptr", + "ov_cimguiname": "ImPlot_PlotShaded_U16PtrU16PtrU16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,const ImU16*,int,int,int)", "stname": "" @@ -15553,7 +15593,7 @@ "funcname": "PlotShaded", "location": "implot:395", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS32PtrS32PtrS32Ptr", + "ov_cimguiname": "ImPlot_PlotShaded_S32PtrS32PtrS32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,const ImS32*,int,int,int)", "stname": "" @@ -15600,7 +15640,7 @@ "funcname": "PlotShaded", "location": "implot:395", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU32PtrU32PtrU32Ptr", + "ov_cimguiname": "ImPlot_PlotShaded_U32PtrU32PtrU32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,const ImU32*,int,int,int)", "stname": "" @@ -15647,7 +15687,7 @@ "funcname": "PlotShaded", "location": "implot:395", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedS64PtrS64PtrS64Ptr", + "ov_cimguiname": "ImPlot_PlotShaded_S64PtrS64PtrS64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,const ImS64*,int,int,int)", "stname": "" @@ -15694,7 +15734,7 @@ "funcname": "PlotShaded", "location": "implot:395", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotShadedU64PtrU64PtrU64Ptr", + "ov_cimguiname": "ImPlot_PlotShaded_U64PtrU64PtrU64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,const ImU64*,int,int,int)", "stname": "" @@ -15798,7 +15838,7 @@ "funcname": "PlotStairs", "location": "implot:388", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsFloatPtrInt", + "ov_cimguiname": "ImPlot_PlotStairs_FloatPtrInt", "ret": "void", "signature": "(const char*,const float*,int,double,double,int,int)", "stname": "" @@ -15847,7 +15887,7 @@ "funcname": "PlotStairs", "location": "implot:388", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsdoublePtrInt", + "ov_cimguiname": "ImPlot_PlotStairs_doublePtrInt", "ret": "void", "signature": "(const char*,const double*,int,double,double,int,int)", "stname": "" @@ -15896,7 +15936,7 @@ "funcname": "PlotStairs", "location": "implot:388", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsS8PtrInt", + "ov_cimguiname": "ImPlot_PlotStairs_S8PtrInt", "ret": "void", "signature": "(const char*,const ImS8*,int,double,double,int,int)", "stname": "" @@ -15945,7 +15985,7 @@ "funcname": "PlotStairs", "location": "implot:388", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsU8PtrInt", + "ov_cimguiname": "ImPlot_PlotStairs_U8PtrInt", "ret": "void", "signature": "(const char*,const ImU8*,int,double,double,int,int)", "stname": "" @@ -15994,7 +16034,7 @@ "funcname": "PlotStairs", "location": "implot:388", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsS16PtrInt", + "ov_cimguiname": "ImPlot_PlotStairs_S16PtrInt", "ret": "void", "signature": "(const char*,const ImS16*,int,double,double,int,int)", "stname": "" @@ -16043,7 +16083,7 @@ "funcname": "PlotStairs", "location": "implot:388", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsU16PtrInt", + "ov_cimguiname": "ImPlot_PlotStairs_U16PtrInt", "ret": "void", "signature": "(const char*,const ImU16*,int,double,double,int,int)", "stname": "" @@ -16092,7 +16132,7 @@ "funcname": "PlotStairs", "location": "implot:388", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsS32PtrInt", + "ov_cimguiname": "ImPlot_PlotStairs_S32PtrInt", "ret": "void", "signature": "(const char*,const ImS32*,int,double,double,int,int)", "stname": "" @@ -16141,7 +16181,7 @@ "funcname": "PlotStairs", "location": "implot:388", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsU32PtrInt", + "ov_cimguiname": "ImPlot_PlotStairs_U32PtrInt", "ret": "void", "signature": "(const char*,const ImU32*,int,double,double,int,int)", "stname": "" @@ -16190,7 +16230,7 @@ "funcname": "PlotStairs", "location": "implot:388", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsS64PtrInt", + "ov_cimguiname": "ImPlot_PlotStairs_S64PtrInt", "ret": "void", "signature": "(const char*,const ImS64*,int,double,double,int,int)", "stname": "" @@ -16239,7 +16279,7 @@ "funcname": "PlotStairs", "location": "implot:388", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsU64PtrInt", + "ov_cimguiname": "ImPlot_PlotStairs_U64PtrInt", "ret": "void", "signature": "(const char*,const ImU64*,int,double,double,int,int)", "stname": "" @@ -16282,7 +16322,7 @@ "funcname": "PlotStairs", "location": "implot:389", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsFloatPtrFloatPtr", + "ov_cimguiname": "ImPlot_PlotStairs_FloatPtrFloatPtr", "ret": "void", "signature": "(const char*,const float*,const float*,int,int,int)", "stname": "" @@ -16325,7 +16365,7 @@ "funcname": "PlotStairs", "location": "implot:389", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsdoublePtrdoublePtr", + "ov_cimguiname": "ImPlot_PlotStairs_doublePtrdoublePtr", "ret": "void", "signature": "(const char*,const double*,const double*,int,int,int)", "stname": "" @@ -16368,7 +16408,7 @@ "funcname": "PlotStairs", "location": "implot:389", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsS8PtrS8Ptr", + "ov_cimguiname": "ImPlot_PlotStairs_S8PtrS8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,int,int,int)", "stname": "" @@ -16411,7 +16451,7 @@ "funcname": "PlotStairs", "location": "implot:389", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsU8PtrU8Ptr", + "ov_cimguiname": "ImPlot_PlotStairs_U8PtrU8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,int,int,int)", "stname": "" @@ -16454,7 +16494,7 @@ "funcname": "PlotStairs", "location": "implot:389", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsS16PtrS16Ptr", + "ov_cimguiname": "ImPlot_PlotStairs_S16PtrS16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,int,int,int)", "stname": "" @@ -16497,7 +16537,7 @@ "funcname": "PlotStairs", "location": "implot:389", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsU16PtrU16Ptr", + "ov_cimguiname": "ImPlot_PlotStairs_U16PtrU16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,int,int,int)", "stname": "" @@ -16540,7 +16580,7 @@ "funcname": "PlotStairs", "location": "implot:389", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsS32PtrS32Ptr", + "ov_cimguiname": "ImPlot_PlotStairs_S32PtrS32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,int,int,int)", "stname": "" @@ -16583,7 +16623,7 @@ "funcname": "PlotStairs", "location": "implot:389", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsU32PtrU32Ptr", + "ov_cimguiname": "ImPlot_PlotStairs_U32PtrU32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,int,int,int)", "stname": "" @@ -16626,7 +16666,7 @@ "funcname": "PlotStairs", "location": "implot:389", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsS64PtrS64Ptr", + "ov_cimguiname": "ImPlot_PlotStairs_S64PtrS64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,int,int,int)", "stname": "" @@ -16669,7 +16709,7 @@ "funcname": "PlotStairs", "location": "implot:389", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStairsU64PtrU64Ptr", + "ov_cimguiname": "ImPlot_PlotStairs_U64PtrU64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,int,int,int)", "stname": "" @@ -16767,7 +16807,7 @@ "funcname": "PlotStems", "location": "implot:417", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsFloatPtrInt", + "ov_cimguiname": "ImPlot_PlotStems_FloatPtrInt", "ret": "void", "signature": "(const char*,const float*,int,double,double,double,int,int)", "stname": "" @@ -16821,7 +16861,7 @@ "funcname": "PlotStems", "location": "implot:417", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsdoublePtrInt", + "ov_cimguiname": "ImPlot_PlotStems_doublePtrInt", "ret": "void", "signature": "(const char*,const double*,int,double,double,double,int,int)", "stname": "" @@ -16875,7 +16915,7 @@ "funcname": "PlotStems", "location": "implot:417", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsS8PtrInt", + "ov_cimguiname": "ImPlot_PlotStems_S8PtrInt", "ret": "void", "signature": "(const char*,const ImS8*,int,double,double,double,int,int)", "stname": "" @@ -16929,7 +16969,7 @@ "funcname": "PlotStems", "location": "implot:417", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsU8PtrInt", + "ov_cimguiname": "ImPlot_PlotStems_U8PtrInt", "ret": "void", "signature": "(const char*,const ImU8*,int,double,double,double,int,int)", "stname": "" @@ -16983,7 +17023,7 @@ "funcname": "PlotStems", "location": "implot:417", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsS16PtrInt", + "ov_cimguiname": "ImPlot_PlotStems_S16PtrInt", "ret": "void", "signature": "(const char*,const ImS16*,int,double,double,double,int,int)", "stname": "" @@ -17037,7 +17077,7 @@ "funcname": "PlotStems", "location": "implot:417", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsU16PtrInt", + "ov_cimguiname": "ImPlot_PlotStems_U16PtrInt", "ret": "void", "signature": "(const char*,const ImU16*,int,double,double,double,int,int)", "stname": "" @@ -17091,7 +17131,7 @@ "funcname": "PlotStems", "location": "implot:417", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsS32PtrInt", + "ov_cimguiname": "ImPlot_PlotStems_S32PtrInt", "ret": "void", "signature": "(const char*,const ImS32*,int,double,double,double,int,int)", "stname": "" @@ -17145,7 +17185,7 @@ "funcname": "PlotStems", "location": "implot:417", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsU32PtrInt", + "ov_cimguiname": "ImPlot_PlotStems_U32PtrInt", "ret": "void", "signature": "(const char*,const ImU32*,int,double,double,double,int,int)", "stname": "" @@ -17199,7 +17239,7 @@ "funcname": "PlotStems", "location": "implot:417", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsS64PtrInt", + "ov_cimguiname": "ImPlot_PlotStems_S64PtrInt", "ret": "void", "signature": "(const char*,const ImS64*,int,double,double,double,int,int)", "stname": "" @@ -17253,7 +17293,7 @@ "funcname": "PlotStems", "location": "implot:417", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsU64PtrInt", + "ov_cimguiname": "ImPlot_PlotStems_U64PtrInt", "ret": "void", "signature": "(const char*,const ImU64*,int,double,double,double,int,int)", "stname": "" @@ -17301,7 +17341,7 @@ "funcname": "PlotStems", "location": "implot:418", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsFloatPtrFloatPtr", + "ov_cimguiname": "ImPlot_PlotStems_FloatPtrFloatPtr", "ret": "void", "signature": "(const char*,const float*,const float*,int,double,int,int)", "stname": "" @@ -17349,7 +17389,7 @@ "funcname": "PlotStems", "location": "implot:418", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsdoublePtrdoublePtr", + "ov_cimguiname": "ImPlot_PlotStems_doublePtrdoublePtr", "ret": "void", "signature": "(const char*,const double*,const double*,int,double,int,int)", "stname": "" @@ -17397,7 +17437,7 @@ "funcname": "PlotStems", "location": "implot:418", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsS8PtrS8Ptr", + "ov_cimguiname": "ImPlot_PlotStems_S8PtrS8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,const ImS8*,int,double,int,int)", "stname": "" @@ -17445,7 +17485,7 @@ "funcname": "PlotStems", "location": "implot:418", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsU8PtrU8Ptr", + "ov_cimguiname": "ImPlot_PlotStems_U8PtrU8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,const ImU8*,int,double,int,int)", "stname": "" @@ -17493,7 +17533,7 @@ "funcname": "PlotStems", "location": "implot:418", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsS16PtrS16Ptr", + "ov_cimguiname": "ImPlot_PlotStems_S16PtrS16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,const ImS16*,int,double,int,int)", "stname": "" @@ -17541,7 +17581,7 @@ "funcname": "PlotStems", "location": "implot:418", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsU16PtrU16Ptr", + "ov_cimguiname": "ImPlot_PlotStems_U16PtrU16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,const ImU16*,int,double,int,int)", "stname": "" @@ -17589,7 +17629,7 @@ "funcname": "PlotStems", "location": "implot:418", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsS32PtrS32Ptr", + "ov_cimguiname": "ImPlot_PlotStems_S32PtrS32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,const ImS32*,int,double,int,int)", "stname": "" @@ -17637,7 +17677,7 @@ "funcname": "PlotStems", "location": "implot:418", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsU32PtrU32Ptr", + "ov_cimguiname": "ImPlot_PlotStems_U32PtrU32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,const ImU32*,int,double,int,int)", "stname": "" @@ -17685,7 +17725,7 @@ "funcname": "PlotStems", "location": "implot:418", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsS64PtrS64Ptr", + "ov_cimguiname": "ImPlot_PlotStems_S64PtrS64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,const ImS64*,int,double,int,int)", "stname": "" @@ -17733,7 +17773,7 @@ "funcname": "PlotStems", "location": "implot:418", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotStemsU64PtrU64Ptr", + "ov_cimguiname": "ImPlot_PlotStems_U64PtrU64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,const ImU64*,int,double,int,int)", "stname": "" @@ -17807,7 +17847,7 @@ "location": "implot:479", "namespace": "ImPlot", "nonUDT": 1, - "ov_cimguiname": "ImPlot_PlotToPixelsPlotPoInt", + "ov_cimguiname": "ImPlot_PlotToPixels_PlotPoInt", "ret": "void", "signature": "(const ImPlotPoint,ImPlotYAxis)", "stname": "" @@ -17842,7 +17882,7 @@ "location": "implot:480", "namespace": "ImPlot", "nonUDT": 1, - "ov_cimguiname": "ImPlot_PlotToPixelsdouble", + "ov_cimguiname": "ImPlot_PlotToPixels_double", "ret": "void", "signature": "(double,double,ImPlotYAxis)", "stname": "" @@ -17883,7 +17923,7 @@ "funcname": "PlotVLines", "location": "implot:421", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotVLinesFloatPtr", + "ov_cimguiname": "ImPlot_PlotVLines_FloatPtr", "ret": "void", "signature": "(const char*,const float*,int,int,int)", "stname": "" @@ -17922,7 +17962,7 @@ "funcname": "PlotVLines", "location": "implot:421", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotVLinesdoublePtr", + "ov_cimguiname": "ImPlot_PlotVLines_doublePtr", "ret": "void", "signature": "(const char*,const double*,int,int,int)", "stname": "" @@ -17961,7 +18001,7 @@ "funcname": "PlotVLines", "location": "implot:421", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotVLinesS8Ptr", + "ov_cimguiname": "ImPlot_PlotVLines_S8Ptr", "ret": "void", "signature": "(const char*,const ImS8*,int,int,int)", "stname": "" @@ -18000,7 +18040,7 @@ "funcname": "PlotVLines", "location": "implot:421", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotVLinesU8Ptr", + "ov_cimguiname": "ImPlot_PlotVLines_U8Ptr", "ret": "void", "signature": "(const char*,const ImU8*,int,int,int)", "stname": "" @@ -18039,7 +18079,7 @@ "funcname": "PlotVLines", "location": "implot:421", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotVLinesS16Ptr", + "ov_cimguiname": "ImPlot_PlotVLines_S16Ptr", "ret": "void", "signature": "(const char*,const ImS16*,int,int,int)", "stname": "" @@ -18078,7 +18118,7 @@ "funcname": "PlotVLines", "location": "implot:421", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotVLinesU16Ptr", + "ov_cimguiname": "ImPlot_PlotVLines_U16Ptr", "ret": "void", "signature": "(const char*,const ImU16*,int,int,int)", "stname": "" @@ -18117,7 +18157,7 @@ "funcname": "PlotVLines", "location": "implot:421", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotVLinesS32Ptr", + "ov_cimguiname": "ImPlot_PlotVLines_S32Ptr", "ret": "void", "signature": "(const char*,const ImS32*,int,int,int)", "stname": "" @@ -18156,7 +18196,7 @@ "funcname": "PlotVLines", "location": "implot:421", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotVLinesU32Ptr", + "ov_cimguiname": "ImPlot_PlotVLines_U32Ptr", "ret": "void", "signature": "(const char*,const ImU32*,int,int,int)", "stname": "" @@ -18195,7 +18235,7 @@ "funcname": "PlotVLines", "location": "implot:421", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotVLinesS64Ptr", + "ov_cimguiname": "ImPlot_PlotVLines_S64Ptr", "ret": "void", "signature": "(const char*,const ImS64*,int,int,int)", "stname": "" @@ -18234,7 +18274,7 @@ "funcname": "PlotVLines", "location": "implot:421", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PlotVLinesU64Ptr", + "ov_cimguiname": "ImPlot_PlotVLines_U64Ptr", "ret": "void", "signature": "(const char*,const ImU64*,int,int,int)", "stname": "" @@ -18390,7 +18430,7 @@ "funcname": "PushColormap", "location": "implot:646", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PushColormapPlotColormap", + "ov_cimguiname": "ImPlot_PushColormap_PlotColormap", "ret": "void", "signature": "(ImPlotColormap)", "stname": "" @@ -18414,7 +18454,7 @@ "funcname": "PushColormap", "location": "implot:648", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PushColormapVec4Ptr", + "ov_cimguiname": "ImPlot_PushColormap_Vec4Ptr", "ret": "void", "signature": "(const ImVec4*,int)", "stname": "" @@ -18480,7 +18520,7 @@ "funcname": "PushStyleColor", "location": "implot:596", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PushStyleColorU32", + "ov_cimguiname": "ImPlot_PushStyleColor_U32", "ret": "void", "signature": "(ImPlotCol,ImU32)", "stname": "" @@ -18504,7 +18544,7 @@ "funcname": "PushStyleColor", "location": "implot:597", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PushStyleColorVec4", + "ov_cimguiname": "ImPlot_PushStyleColor_Vec4", "ret": "void", "signature": "(ImPlotCol,const ImVec4)", "stname": "" @@ -18530,7 +18570,7 @@ "funcname": "PushStyleVar", "location": "implot:602", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PushStyleVarFloat", + "ov_cimguiname": "ImPlot_PushStyleVar_Float", "ret": "void", "signature": "(ImPlotStyleVar,float)", "stname": "" @@ -18554,7 +18594,7 @@ "funcname": "PushStyleVar", "location": "implot:604", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PushStyleVarInt", + "ov_cimguiname": "ImPlot_PushStyleVar_Int", "ret": "void", "signature": "(ImPlotStyleVar,int)", "stname": "" @@ -18578,7 +18618,7 @@ "funcname": "PushStyleVar", "location": "implot:606", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_PushStyleVarVec2", + "ov_cimguiname": "ImPlot_PushStyleVar_Vec2", "ret": "void", "signature": "(ImPlotStyleVar,const ImVec2)", "stname": "" @@ -18696,8 +18736,12 @@ ], "ImPlot_RoundTime": [ { - "args": "(const ImPlotTime t,ImPlotTimeUnit unit)", + "args": "(ImPlotTime *pOut,const ImPlotTime t,ImPlotTimeUnit unit)", "argsT": [ + { + "name": "pOut", + "type": "ImPlotTime*" + }, { "name": "t", "type": "const ImPlotTime" @@ -18714,8 +18758,9 @@ "funcname": "RoundTime", "location": "implot_internal:965", "namespace": "ImPlot", + "nonUDT": 1, "ov_cimguiname": "ImPlot_RoundTime", - "ret": "ImPlotTime", + "ret": "void", "signature": "(const ImPlotTime,ImPlotTimeUnit)", "stname": "" } @@ -18740,7 +18785,7 @@ "funcname": "SetColormap", "location": "implot:653", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_SetColormapVec4Ptr", + "ov_cimguiname": "ImPlot_SetColormap_Vec4Ptr", "ret": "void", "signature": "(const ImVec4*,int)", "stname": "" @@ -18766,7 +18811,7 @@ "funcname": "SetColormap", "location": "implot:655", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_SetColormapPlotColormap", + "ov_cimguiname": "ImPlot_SetColormap_PlotColormap", "ret": "void", "signature": "(ImPlotColormap,int)", "stname": "" @@ -19147,7 +19192,7 @@ "funcname": "SetNextPlotTicksX", "location": "implot:461", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_SetNextPlotTicksXdoublePtr", + "ov_cimguiname": "ImPlot_SetNextPlotTicksX_doublePtr", "ret": "void", "signature": "(const double*,int,const char* const[],bool)", "stname": "" @@ -19186,7 +19231,7 @@ "funcname": "SetNextPlotTicksX", "location": "implot:462", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_SetNextPlotTicksXdouble", + "ov_cimguiname": "ImPlot_SetNextPlotTicksX_double", "ret": "void", "signature": "(double,double,int,const char* const[],bool)", "stname": "" @@ -19228,7 +19273,7 @@ "funcname": "SetNextPlotTicksY", "location": "implot:465", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_SetNextPlotTicksYdoublePtr", + "ov_cimguiname": "ImPlot_SetNextPlotTicksY_doublePtr", "ret": "void", "signature": "(const double*,int,const char* const[],bool,ImPlotYAxis)", "stname": "" @@ -19272,7 +19317,7 @@ "funcname": "SetNextPlotTicksY", "location": "implot:466", "namespace": "ImPlot", - "ov_cimguiname": "ImPlot_SetNextPlotTicksYdouble", + "ov_cimguiname": "ImPlot_SetNextPlotTicksY_double", "ret": "void", "signature": "(double,double,int,const char* const[],bool,ImPlotYAxis)", "stname": "" diff --git a/src/ImGui.NET/ImDrawList.Manual.cs b/src/ImGui.NET/ImDrawList.Manual.cs index 65e7b8a2..dff0a4f3 100644 --- a/src/ImGui.NET/ImDrawList.Manual.cs +++ b/src/ImGui.NET/ImDrawList.Manual.cs @@ -15,7 +15,7 @@ public void AddText(Vector2 pos, uint col, string text_begin) native_text_begin[native_text_begin_offset] = 0; } byte* native_text_end = null; - ImGuiNative.ImDrawList_AddTextVec2(NativePtr, pos, col, native_text_begin, native_text_end); + ImGuiNative.ImDrawList_AddText_Vec2(NativePtr, pos, col, native_text_begin, native_text_end); } public void AddText(ImFontPtr font, float font_size, Vector2 pos, uint col, string text_begin) @@ -31,7 +31,7 @@ public void AddText(ImFontPtr font, float font_size, Vector2 pos, uint col, stri byte* native_text_end = null; float wrap_width = 0.0f; Vector4* cpu_fine_clip_rect = null; - ImGuiNative.ImDrawList_AddTextFontPtr(NativePtr, native_font, font_size, pos, col, native_text_begin, native_text_end, wrap_width, cpu_fine_clip_rect); + ImGuiNative.ImDrawList_AddText_FontPtr(NativePtr, native_font, font_size, pos, col, native_text_begin, native_text_end, wrap_width, cpu_fine_clip_rect); } } } diff --git a/src/ImGui.NET/ImGui.NET.csproj b/src/ImGui.NET/ImGui.NET.csproj index 5b0a9280..2f7f9b68 100644 --- a/src/ImGui.NET/ImGui.NET.csproj +++ b/src/ImGui.NET/ImGui.NET.csproj @@ -1,7 +1,7 @@  A .NET wrapper for the Dear ImGui library. - 1.82.0 + 1.85.0 Eric Mellino netstandard2.0 true diff --git a/src/ImGui.NET/ImPool.cs b/src/ImGui.NET/ImPool.cs new file mode 100644 index 00000000..abac1532 --- /dev/null +++ b/src/ImGui.NET/ImPool.cs @@ -0,0 +1,82 @@ +using System; +using System.Runtime.CompilerServices; + +namespace ImGuiNET +{ + public unsafe struct ImPool + { + public readonly int Size; + public readonly int Capacity; + public readonly IntPtr Data; + + public ImPool(int size, int capacity, IntPtr data) + { + Size = size; + Capacity = capacity; + Data = data; + } + + public ref T Ref(int index) + { + return ref Unsafe.AsRef((byte*)Data + index * Unsafe.SizeOf()); + } + + public IntPtr Address(int index) + { + return (IntPtr)((byte*)Data + index * Unsafe.SizeOf()); + } + } + + public unsafe struct ImPool + { + public readonly int Size; + public readonly int Capacity; + public readonly IntPtr Data; + + public ImPool(ImPool Pool) + { + Size = Pool.Size; + Capacity = Pool.Capacity; + Data = Pool.Data; + } + + public ImPool(int size, int capacity, IntPtr data) + { + Size = size; + Capacity = capacity; + Data = data; + } + + public ref T this[int index] => ref Unsafe.AsRef((byte*)Data + index * Unsafe.SizeOf()); + } + + public unsafe struct ImPtrPool + { + public readonly int Size; + public readonly int Capacity; + public readonly IntPtr Data; + private readonly int _stride; + + public ImPtrPool(ImPool Pool, int stride) + : this(Pool.Size, Pool.Capacity, Pool.Data, stride) + { } + + public ImPtrPool(int size, int capacity, IntPtr data, int stride) + { + Size = size; + Capacity = capacity; + Data = data; + _stride = stride; + } + + public T this[int index] + { + get + { + byte* address = (byte*)Data + index * _stride; + T ret = Unsafe.Read(&address); + return ret; + } + } + } +} \ No newline at end of file diff --git a/src/ImGui.NET/ImSpan.cs b/src/ImGui.NET/ImSpan.cs new file mode 100644 index 00000000..2f27cb29 --- /dev/null +++ b/src/ImGui.NET/ImSpan.cs @@ -0,0 +1,83 @@ +using System; +using System.Runtime.CompilerServices; + + +namespace ImGuiNET +{ + public unsafe struct ImSpan + { + public readonly int Size; + public readonly int Capacity; + public readonly IntPtr Data; + + public ImSpan(int size, int capacity, IntPtr data) + { + Size = size; + Capacity = capacity; + Data = data; + } + + public ref T Ref(int index) + { + return ref Unsafe.AsRef((byte*)Data + index * Unsafe.SizeOf()); + } + + public IntPtr Address(int index) + { + return (IntPtr)((byte*)Data + index * Unsafe.SizeOf()); + } + } + + public unsafe struct ImSpan + { + public readonly int Size; + public readonly int Capacity; + public readonly IntPtr Data; + + public ImSpan(ImSpan span) + { + Size = span.Size; + Capacity = span.Capacity; + Data = span.Data; + } + + public ImSpan(int size, int capacity, IntPtr data) + { + Size = size; + Capacity = capacity; + Data = data; + } + + public ref T this[int index] => ref Unsafe.AsRef((byte*)Data + index * Unsafe.SizeOf()); + } + + public unsafe struct ImPtrSpan + { + public readonly int Size; + public readonly int Capacity; + public readonly IntPtr Data; + private readonly int _stride; + + public ImPtrSpan(ImSpan span, int stride) + : this(span.Size, span.Capacity, span.Data, stride) + { } + + public ImPtrSpan(int size, int capacity, IntPtr data, int stride) + { + Size = size; + Capacity = capacity; + Data = data; + _stride = stride; + } + + public T this[int index] + { + get + { + byte* address = (byte*)Data + index * _stride; + T ret = Unsafe.Read(&address); + return ret; + } + } + } +} \ No newline at end of file diff --git a/src/ImGui.NET/Pair.cs b/src/ImGui.NET/Pair.cs index 904cde39..13a4d0dc 100644 --- a/src/ImGui.NET/Pair.cs +++ b/src/ImGui.NET/Pair.cs @@ -6,7 +6,7 @@ namespace ImGuiNET public struct ImGuiStoragePair { public uint Key; - public UnionValue Value; + public PairUnionValue Value; } public unsafe struct ImGuiStoragePairPtr @@ -20,7 +20,7 @@ public unsafe struct ImGuiStoragePairPtr } [StructLayout(LayoutKind.Explicit)] - public struct UnionValue + public struct PairUnionValue { [FieldOffset(0)] public int ValueI32; diff --git a/src/ImGui.NET/StyleMod.cs b/src/ImGui.NET/StyleMod.cs new file mode 100644 index 00000000..c2c892fa --- /dev/null +++ b/src/ImGui.NET/StyleMod.cs @@ -0,0 +1,37 @@ +using System; +using System.Runtime.InteropServices; +using System.Runtime.CompilerServices; + +namespace ImGuiNET +{ + public struct ImGuiStyleMod + { + public ImGuiStyleVar VarIdx; + public StyleModUnionValue Value; + } + + public unsafe struct ImGuiStyleModPtr + { + public ImGuiStyleMod* NativePtr { get; } + public ImGuiStyleModPtr(ImGuiStyleMod* nativePtr) => NativePtr = nativePtr; + public ImGuiStyleModPtr(IntPtr nativePtr) => NativePtr = (ImGuiStyleMod*)nativePtr; + public static implicit operator ImGuiStyleModPtr(ImGuiStyleMod* nativePtr) => new ImGuiStyleModPtr(nativePtr); + public static implicit operator ImGuiStyleMod*(ImGuiStyleModPtr wrappedPtr) => wrappedPtr.NativePtr; + public static implicit operator ImGuiStyleModPtr(IntPtr nativePtr) => new ImGuiStyleModPtr(nativePtr); + public ref ImGuiStyleVar VarIdx => ref Unsafe.AsRef(&NativePtr->VarIdx); + + public void Destroy() + { + ImGuiNative.ImGuiStyleMod_destroy((ImGuiStyleMod*)(NativePtr)); + } + } + + [StructLayout(LayoutKind.Explicit)] + public struct StyleModUnionValue + { + [FieldOffset(0)] + public int BackupI32; + [FieldOffset(0)] + public float BackupF32; + } +} From a0532881535ec2683c5f7a207e65542866d57f5a Mon Sep 17 00:00:00 2001 From: Julian Vallee Date: Sat, 18 Sep 2021 16:18:34 +0200 Subject: [PATCH 2/4] Add generated files and 32 + 64 bit windows binaries for 1.85 WIP --- deps/cimgui/win-x64/cimgui.dll | Bin 858624 -> 872448 bytes deps/cimgui/win-x86/cimgui.dll | Bin 755200 -> 780288 bytes src/ImGui.NET/Generated/ImBitVector.gen.cs | 43 + src/ImGui.NET/Generated/ImDrawCmd.gen.cs | 5 + .../Generated/ImDrawDataBuilder.gen.cs | 40 + src/ImGui.NET/Generated/ImDrawList.gen.cs | 4 + .../Generated/ImDrawListSharedData.gen.cs | 97 + src/ImGui.NET/Generated/ImFont.gen.cs | 6 +- src/ImGui.NET/Generated/ImFontAtlas.gen.cs | 2 + .../Generated/ImFontBuilderIO.gen.cs | 22 + src/ImGui.NET/Generated/ImGui.gen.cs | 8560 +++++++++++++---- .../Generated/ImGuiActivateFlags.gen.cs | 11 + src/ImGui.NET/Generated/ImGuiAxis.gen.cs | 9 + .../Generated/ImGuiButtonFlagsPrivate.gen.cs | 24 + .../Generated/ImGuiColorEditFlags.gen.cs | 2 +- src/ImGui.NET/Generated/ImGuiColorMod.gen.cs | 24 + .../Generated/ImGuiComboFlagsPrivate.gen.cs | 8 + .../Generated/ImGuiComboPreviewData.gen.cs | 36 + src/ImGui.NET/Generated/ImGuiContext.gen.cs | 467 + .../Generated/ImGuiContextHook.gen.cs | 34 + .../Generated/ImGuiContextHookType.gen.cs | 14 + .../Generated/ImGuiDataAuthority.gen.cs | 9 + .../Generated/ImGuiDataTypeInfo.gen.cs | 28 + .../Generated/ImGuiDataTypePrivate.gen.cs | 9 + .../Generated/ImGuiDataTypeTempStorage.gen.cs | 22 + .../Generated/ImGuiDockContext.gen.cs | 32 + src/ImGui.NET/Generated/ImGuiDockNode.gen.cs | 164 + .../ImGuiDockNodeFlagsPrivate.gen.cs | 26 + .../Generated/ImGuiDockNodeState.gen.cs | 10 + .../Generated/ImGuiFocusedFlags.gen.cs | 1 + src/ImGui.NET/Generated/ImGuiGroupData.gen.cs | 42 + .../Generated/ImGuiHoveredFlags.gen.cs | 5 +- src/ImGui.NET/Generated/ImGuiIO.gen.cs | 31 +- .../Generated/ImGuiInputReadMode.gen.cs | 12 + .../Generated/ImGuiInputSource.gen.cs | 13 + .../Generated/ImGuiInputTextFlags.gen.cs | 2 - .../ImGuiInputTextFlagsPrivate.gen.cs | 10 + .../Generated/ImGuiInputTextState.gen.cs | 114 + src/ImGui.NET/Generated/ImGuiItemFlags.gen.cs | 17 + .../Generated/ImGuiItemStatusFlags.gen.cs | 19 + .../Generated/ImGuiLastItemData.gen.cs | 36 + .../Generated/ImGuiLayoutType.gen.cs | 8 + src/ImGui.NET/Generated/ImGuiLogType.gen.cs | 11 + .../Generated/ImGuiMenuColumns.gen.cs | 55 + .../Generated/ImGuiMetricsConfig.gen.cs | 40 + src/ImGui.NET/Generated/ImGuiNative.gen.cs | 1318 ++- .../Generated/ImGuiNavDirSourceFlags.gen.cs | 11 + .../Generated/ImGuiNavHighlightFlags.gen.cs | 12 + src/ImGui.NET/Generated/ImGuiNavInput.gen.cs | 11 +- .../Generated/ImGuiNavItemData.gen.cs | 42 + src/ImGui.NET/Generated/ImGuiNavLayer.gen.cs | 9 + .../Generated/ImGuiNavMoveFlags.gen.cs | 17 + .../Generated/ImGuiNextItemData.gen.cs | 38 + .../Generated/ImGuiNextItemDataFlags.gen.cs | 10 + .../Generated/ImGuiNextWindowData.gen.cs | 68 + .../Generated/ImGuiNextWindowDataFlags.gen.cs | 19 + .../Generated/ImGuiOldColumnData.gen.cs | 32 + .../Generated/ImGuiOldColumnFlags.gen.cs | 13 + .../Generated/ImGuiOldColumns.gen.cs | 58 + src/ImGui.NET/Generated/ImGuiPlotType.gen.cs | 8 + src/ImGui.NET/Generated/ImGuiPopupData.gen.cs | 38 + .../Generated/ImGuiPopupPositionPolicy.gen.cs | 9 + .../Generated/ImGuiPtrOrIndex.gen.cs | 28 + .../ImGuiSelectableFlagsPrivate.gen.cs | 15 + .../Generated/ImGuiSeparatorFlags.gen.cs | 11 + .../Generated/ImGuiSettingsHandler.gen.cs | 42 + .../Generated/ImGuiShrinkWidthItem.gen.cs | 24 + .../Generated/ImGuiSliderFlagsPrivate.gen.cs | 9 + .../Generated/ImGuiStackSizes.gen.cs | 46 + src/ImGui.NET/Generated/ImGuiStorage.gen.cs | 2 +- src/ImGui.NET/Generated/ImGuiStyle.gen.cs | 2 + src/ImGui.NET/Generated/ImGuiStyleVar.gen.cs | 49 +- src/ImGui.NET/Generated/ImGuiTabBar.gen.cs | 98 + .../Generated/ImGuiTabBarFlagsPrivate.gen.cs | 10 + src/ImGui.NET/Generated/ImGuiTabItem.gen.cs | 48 + .../Generated/ImGuiTabItemFlagsPrivate.gen.cs | 12 + src/ImGui.NET/Generated/ImGuiTable.gen.cs | 230 + .../Generated/ImGuiTableCellData.gen.cs | 24 + .../Generated/ImGuiTableColumn.gen.cs | 106 + .../Generated/ImGuiTableColumnFlags.gen.cs | 48 +- .../Generated/ImGuiTableColumnSettings.gen.cs | 40 + .../Generated/ImGuiTableSettings.gen.cs | 41 + .../Generated/ImGuiTableTempData.gen.cs | 48 + src/ImGui.NET/Generated/ImGuiTextFlags.gen.cs | 9 + .../Generated/ImGuiTooltipFlags.gen.cs | 9 + .../ImGuiTreeNodeFlagsPrivate.gen.cs | 8 + src/ImGui.NET/Generated/ImGuiViewportP.gen.cs | 107 + src/ImGui.NET/Generated/ImGuiWindow.gen.cs | 351 + .../Generated/ImGuiWindowClass.gen.cs | 2 - .../Generated/ImGuiWindowDockStyle.gen.cs | 22 + .../Generated/ImGuiWindowDockStyleCol.gen.cs | 13 + .../Generated/ImGuiWindowSettings.gen.cs | 49 + .../Generated/ImGuiWindowStackData.gen.cs | 24 + .../Generated/ImGuiWindowTempData.gen.cs | 92 + src/ImGui.NET/Generated/ImRect.gen.cs | 145 + src/ImGui.NET/Generated/ImVec1.gen.cs | 26 + src/ImGui.NET/Generated/ImVec2ih.gen.cs | 28 + src/ImGuizmo.NET/Generated/ImGuizmo.gen.cs | 4 +- .../Generated/ImGuizmoNative.gen.cs | 4 +- src/ImNodes.NET/Generated/ImNodes.gen.cs | 12 +- .../Generated/ImNodesNative.gen.cs | 4 +- src/ImPlot.NET/Generated/ImPlot.gen.cs | 1918 ++-- src/ImPlot.NET/Generated/ImPlotLimits.gen.cs | 4 +- src/ImPlot.NET/Generated/ImPlotNative.gen.cs | 542 +- 104 files changed, 12926 insertions(+), 3217 deletions(-) create mode 100644 src/ImGui.NET/Generated/ImBitVector.gen.cs create mode 100644 src/ImGui.NET/Generated/ImDrawDataBuilder.gen.cs create mode 100644 src/ImGui.NET/Generated/ImDrawListSharedData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImFontBuilderIO.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiActivateFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiAxis.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiButtonFlagsPrivate.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiColorMod.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiComboFlagsPrivate.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiComboPreviewData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiContext.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiContextHook.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiContextHookType.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiDataAuthority.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiDataTypeInfo.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiDataTypePrivate.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiDataTypeTempStorage.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiDockContext.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiDockNode.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiDockNodeFlagsPrivate.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiDockNodeState.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiGroupData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiInputReadMode.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiInputSource.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiInputTextFlagsPrivate.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiInputTextState.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiItemFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiItemStatusFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiLastItemData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiLayoutType.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiLogType.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiMenuColumns.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiMetricsConfig.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiNavDirSourceFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiNavHighlightFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiNavItemData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiNavLayer.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiNavMoveFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiNextItemData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiNextItemDataFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiNextWindowData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiNextWindowDataFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiOldColumnData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiOldColumnFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiOldColumns.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiPlotType.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiPopupData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiPopupPositionPolicy.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiPtrOrIndex.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiSelectableFlagsPrivate.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiSeparatorFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiSettingsHandler.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiShrinkWidthItem.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiSliderFlagsPrivate.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiStackSizes.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTabBar.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTabBarFlagsPrivate.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTabItem.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTabItemFlagsPrivate.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTable.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTableCellData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTableColumn.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTableColumnSettings.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTableSettings.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTableTempData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTextFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTooltipFlags.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiTreeNodeFlagsPrivate.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiViewportP.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiWindow.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiWindowDockStyle.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiWindowDockStyleCol.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiWindowSettings.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiWindowStackData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImGuiWindowTempData.gen.cs create mode 100644 src/ImGui.NET/Generated/ImRect.gen.cs create mode 100644 src/ImGui.NET/Generated/ImVec1.gen.cs create mode 100644 src/ImGui.NET/Generated/ImVec2ih.gen.cs diff --git a/deps/cimgui/win-x64/cimgui.dll b/deps/cimgui/win-x64/cimgui.dll index 4fdffc7267d16730a4bd52ccbd488631971f58fa..288ec23685872ab260ba666d4e4c83d5dfdebd46 100644 GIT binary patch literal 872448 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

;Fug% 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