本文整理匯總了C#中PaintDotNet.Surface.GetPointPointer方法的典型用法代碼示例。如果您正苦於以下問題:C# Surface.GetPointPointer方法的具體用法?C# Surface.GetPointPointer怎麽用?C# Surface.GetPointPointer使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PaintDotNet.Surface
的用法示例。
在下文中一共展示了Surface.GetPointPointer方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: CopyStreamToSurface
internal static void CopyStreamToSurface(SharpDX.DataBox dbox, Surface dst, Rectangle rect)
{
IntPtr textureBuffer = dbox.DataPointer;
IntPtr dstPointer = dst.GetPointPointer(rect.Left, rect.Top);
if (rect.Width == dst.Width)
{
CopyMemory(dstPointer, textureBuffer, rect.Width * rect.Height * COLOR_SIZE);
}
else
{
int length = rect.Width * COLOR_SIZE;
int dstStride = dst.Stride;
int rectBottom = rect.Bottom;
for (int y = rect.Top; y < rectBottom; y++)
{
CopyMemory(dstPointer, textureBuffer, length);
textureBuffer = IntPtr.Add(textureBuffer, length);
dstPointer = IntPtr.Add(dstPointer, dstStride);
}
}
}
示例2: CopyRois
private unsafe void CopyRois(Rectangle[] rois, Surface dest, Surface source)
{
int COLOR_SIZE = Marshal.SizeOf(typeof(ColorBgra));
foreach (Rectangle copyRect in rois)
{
int length = copyRect.Width * COLOR_SIZE;
for (int y = copyRect.Top; y < copyRect.Bottom; y++)
{
CopyMemory(dest.GetPointPointer(copyRect.Left, y), source.GetPointPointer(copyRect.Left, y), length);
}
}
}