Browse Source

Update ImageFrame{TPixel}.cs

pull/1906/head
James Jackson-South 4 years ago
parent
commit
981ff69831
  1. 7
      src/ImageSharp/ImageFrame{TPixel}.cs

7
src/ImageSharp/ImageFrame{TPixel}.cs

@ -145,13 +145,8 @@ namespace SixLabors.ImageSharp
source.PixelBuffer.FastMemoryGroup.CopyTo(this.PixelBuffer.FastMemoryGroup);
}
/// <summary>
/// Gets the image pixels. Not private as Buffer2D requires an array in its constructor.
/// </summary>
internal Buffer2D<TPixel> PixelBuffer { get; private set; }
/// <inheritdoc/>
Buffer2D<TPixel> IPixelSource<TPixel>.PixelBuffer => this.PixelBuffer;
public Buffer2D<TPixel> PixelBuffer { get; private set; }
/// <summary>
/// Gets or sets the pixel at the specified position.

Loading…
Cancel
Save