Skip to content

Commit 4ef0abb

Browse files
committed
Update to 1.68.
1 parent dcb9b89 commit 4ef0abb

File tree

17 files changed

+12906
-1203
lines changed

17 files changed

+12906
-1203
lines changed

deps/cimgui/linux-x64/cimgui.so

119 KB
Binary file not shown.

deps/cimgui/osx-x64/cimgui.dylib

81 KB
Binary file not shown.

deps/cimgui/win-x64/cimgui.dll

41.5 KB
Binary file not shown.

deps/cimgui/win-x86/cimgui.dll

36.5 KB
Binary file not shown.

src/CodeGenerator/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ static void Main(string[] args)
423423
{
424424
string exportedName = overload.ExportedName;
425425
if (exportedName.Contains("~")) { continue; }
426+
if (exportedName.Contains("ImVector_")) { continue; }
426427
if (overload.Parameters.Any(tr => tr.Type.Contains('('))) { continue; } // TODO: Parse function pointer parameters.
427428

428429
string ret = GetTypeString(overload.ReturnType, false);
@@ -1143,7 +1144,7 @@ public OverloadDefinition(
11431144
DefaultValues = defaultValues;
11441145
ReturnType = returnType.Replace("const", string.Empty).Replace("inline", string.Empty).Trim();
11451146
StructName = structName;
1146-
IsMemberFunction = structName != "ImGui";
1147+
IsMemberFunction = !string.IsNullOrEmpty(structName);
11471148
Comment = comment;
11481149
}
11491150
}

0 commit comments

Comments
 (0)