Skip to content

Commit 981ff69

Browse files
Update ImageFrame{TPixel}.cs
1 parent 04f64b6 commit 981ff69

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/ImageSharp/ImageFrame{TPixel}.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -145,13 +145,8 @@ internal ImageFrame(Configuration configuration, ImageFrame<TPixel> source)
145145
source.PixelBuffer.FastMemoryGroup.CopyTo(this.PixelBuffer.FastMemoryGroup);
146146
}
147147

148-
/// <summary>
149-
/// Gets the image pixels. Not private as Buffer2D requires an array in its constructor.
150-
/// </summary>
151-
internal Buffer2D<TPixel> PixelBuffer { get; private set; }
152-
153148
/// <inheritdoc/>
154-
Buffer2D<TPixel> IPixelSource<TPixel>.PixelBuffer => this.PixelBuffer;
149+
public Buffer2D<TPixel> PixelBuffer { get; private set; }
155150

156151
/// <summary>
157152
/// Gets or sets the pixel at the specified position.

0 commit comments

Comments
 (0)