未验证 提交 e83db97a 编写于 作者: D Dipesh Kumar 提交者: GitHub

Updated sourceBufferStride's documentation (#5863)

上级 1aa14908
......@@ -352,7 +352,10 @@ public void Unlock()
/// <param name="sourceRect">The rect to copy from the input buffer.</param>
/// <param name="sourceBuffer">The input buffer used to update the bitmap.</param>
/// <param name="sourceBufferSize">The size of the input buffer in bytes.</param>
/// <param name="sourceBufferStride">The stride of the input buffer in bytes.</param>
/// <param name="sourceBufferStride">
/// The stride of the input buffer in bytes.
/// It indicates where the next row starts in the input buffer.
/// </param>
/// <param name="destinationX">The destination x-coordinate of the left-most pixel to copy.</param>
/// <param name="destinationY">The destination y-coordinate of the top-most pixel to copy.</param>
public void WritePixels(
......@@ -380,7 +383,10 @@ int destinationY
/// </summary>
/// <param name="sourceRect">The rect to copy from the input buffer.</param>
/// <param name="sourceBuffer">The input buffer used to update the bitmap.</param>
/// <param name="sourceBufferStride">The stride of the input buffer in bytes.</param>
/// <param name="sourceBufferStride">
/// The stride of the input buffer in bytes.
/// It indicates where the next row starts in the input buffer.
/// </param>
/// <param name="destinationX">The destination x-coordinate of the left-most pixel to copy.</param>
/// <param name="destinationY">The destination y-coordinate of the top-most pixel to copy.</param>
public void WritePixels(
......@@ -436,7 +442,7 @@ int destinationY
/// <param name="sourceRect">Area to update</param>
/// <param name="buffer">Input buffer</param>
/// <param name="bufferSize">Size of the buffer</param>
/// <param name="stride">Stride</param>
/// <param name="stride">Stride of the input buffer</param>
public unsafe void WritePixels(
Int32Rect sourceRect,
IntPtr buffer,
......@@ -488,7 +494,7 @@ int stride
/// </summary>
/// <param name="sourceRect">Area to update</param>
/// <param name="pixels">Input buffer</param>
/// <param name="stride">Stride</param>
/// <param name="stride">Stride of the input buffer</param>
/// <param name="offset">Input buffer offset</param>
public void WritePixels(
Int32Rect sourceRect,
......@@ -814,6 +820,7 @@ out _pDoubleBufferedBitmap
/// </param>
/// <param name="sourceBufferStride">
/// The stride of the input buffer in bytes.
/// It indicates where the next row starts in the input buffer.
/// </param>
/// <param name="destX">
/// The destination x-coordinate of the left-most pixel to copy.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册