File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
src/ImageSharp.Drawing/Processing Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 44using System ;
55using System . Numerics ;
66using SixLabors . ImageSharp . Drawing . Utilities ;
7- using SixLabors . ImageSharp . Memory ;
87using SixLabors . ImageSharp . PixelFormats ;
98
109namespace SixLabors . ImageSharp . Drawing . Processing
@@ -118,8 +117,6 @@ private sealed class PatternBrushApplicator<TPixel> : BrushApplicator<TPixel>
118117 where TPixel : unmanaged, IPixel < TPixel >
119118 {
120119 private readonly DenseMatrix < TPixel > pattern ;
121- private readonly MemoryAllocator allocator ;
122- private readonly int scalineWidth ;
123120 private readonly ThreadLocalBlenderBuffers < TPixel > blenderBuffers ;
124121 private bool isDisposed ;
125122
@@ -138,8 +135,6 @@ public PatternBrushApplicator(
138135 : base ( configuration , options , source )
139136 {
140137 this . pattern = pattern ;
141- this . scalineWidth = source . Width ;
142- this . allocator = configuration . MemoryAllocator ;
143138 this . blenderBuffers = new ThreadLocalBlenderBuffers < TPixel > ( configuration . MemoryAllocator , source . Width ) ;
144139 }
145140
You can’t perform that action at this time.
0 commit comments