Make ImU8String not IDisposable

This commit is contained in:
Soreepeong 2025-08-08 21:27:40 +09:00
parent 5fee90085c
commit afe58dae76
15 changed files with 267 additions and 267 deletions

View file

@ -274,8 +274,8 @@ public static unsafe partial class ImGui
stepFast > T.Zero ? stepFastPtr : null,
formatPtr,
flags) != 0;
label.Dispose();
format.Dispose();
label.Recycle();
format.Recycle();
return res;
}
}
@ -302,8 +302,8 @@ public static unsafe partial class ImGui
stepFast > T.Zero ? stepFastPtr : null,
formatPtr,
flags) != 0;
label.Dispose();
format.Dispose();
label.Recycle();
format.Recycle();
return res;
}
}
@ -329,8 +329,8 @@ public static unsafe partial class ImGui
stepFast > T.Zero ? stepFastPtr : null,
formatPtr,
flags) != 0;
label.Dispose();
format.Dispose();
label.Recycle();
format.Recycle();
return res;
}
}
@ -357,8 +357,8 @@ public static unsafe partial class ImGui
stepFast > T.Zero ? stepFastPtr : null,
formatPtr,
flags) != 0;
label.Dispose();
format.Dispose();
label.Recycle();
format.Recycle();
return res;
}
}