This did not commit AUGHHH

Signed-off-by: Ayane <ayane@vignetteapp.org>
This commit is contained in:
Ayane
2023-02-28 13:09:16 +08:00
parent b50e3da95f
commit 7289277679

View File

@ -45,10 +45,6 @@ namespace Mediapipe.Net.Framework.Format
public ImageFrame(ImageFormat.Types.Format format, int width, int height, int widthStep, ReadOnlySpan<byte> pixelData, Deleter deleter) : this(format, width, height, widthStep, spanToBytePtr(pixelData), deleter) { }
public ImageFrame(ImageFormat.Types.Format format, int width, int height, int widthStep, IntPtr pixelData) : this(format, width, height, widthStep, pixelData, VoidDeleter) { }
public ImageFrame(ImageFormat.Types.Format format, int width, int height, int widthStep, ReadOnlySpan<byte> pixelData) : this(format, width, height, widthStep, pixelData, VoidDeleter) { }
public static void VoidDeleter(IntPtr _) { }