11// Copyright (c) Six Labors.
22// Licensed under the Six Labors Split License.
33
4- using SixLabors . ImageSharp . Drawing . Processing ;
54using SixLabors . ImageSharp . PixelFormats ;
65using SixLabors . ImageSharp . Processing ;
76
@@ -13,7 +12,6 @@ public abstract class BaseImageOperationsExtensionTest : IDisposable
1312 private readonly FakeImageOperationsProvider . FakeImageOperations < Rgba32 > internalOperations ;
1413 protected readonly Rectangle rect ;
1514 protected readonly GraphicsOptions graphicsOptions ;
16- protected readonly ShapeOptions shapeOptions ;
1715 private readonly Image < Rgba32 > source ;
1816
1917 public Rectangle SourceBounds ( ) => this . source . Bounds ;
@@ -28,11 +26,9 @@ public BaseImageOperationsExtensionTest()
2826 ColorBlendingMode = PixelColorBlendingMode . Multiply
2927 } ;
3028
31- this . shapeOptions = new ShapeOptions { IntersectionRule = IntersectionRule . NonZero } ;
3229 this . source = new Image < Rgba32 > ( 91 + 324 , 123 + 56 ) ;
3330 this . rect = new Rectangle ( 91 , 123 , 324 , 56 ) ; // make this random?
3431 this . internalOperations = new FakeImageOperationsProvider . FakeImageOperations < Rgba32 > ( this . source . Configuration , this . source , false ) ;
35- this . internalOperations . SetShapeOptions ( this . shapeOptions ) ;
3632 this . internalOperations . SetGraphicsOptions ( this . graphicsOptions ) ;
3733 this . operations = this . internalOperations ;
3834 }
0 commit comments