Skip to content

Commit 580d552

Browse files
committed
Merge branch 'mono-build-targets'
2 parents 4588142 + 4ef0abb commit 580d552

File tree

20 files changed

+12967
-1235
lines changed

20 files changed

+12967
-1235
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
@@ -436,6 +436,7 @@ static void Main(string[] args)
436436
{
437437
string exportedName = overload.ExportedName;
438438
if (exportedName.Contains("~")) { continue; }
439+
if (exportedName.Contains("ImVector_")) { continue; }
439440
if (overload.Parameters.Any(tr => tr.Type.Contains('('))) { continue; } // TODO: Parse function pointer parameters.
440441

441442
string ret = GetTypeString(overload.ReturnType, false);
@@ -1159,7 +1160,7 @@ public OverloadDefinition(
11591160
DefaultValues = defaultValues;
11601161
ReturnType = returnType.Replace("const", string.Empty).Replace("inline", string.Empty).Trim();
11611162
StructName = structName;
1162-
IsMemberFunction = structName != "ImGui";
1163+
IsMemberFunction = !string.IsNullOrEmpty(structName);
11631164
Comment = comment;
11641165
IsConstructor = isConstructor;
11651166
IsDestructor = isDestructor;

0 commit comments

Comments
 (0)