File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
tests/ImageSharp.Tests/Formats/WebP Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -282,9 +282,6 @@ public void BundleColorMap_WithXbitsNoneZero_Works()
282
282
[ Fact ]
283
283
public void Predictor13_Works ( ) => RunPredictor13Test ( ) ;
284
284
285
- [ Fact ]
286
- public void SubtractGreen_Works ( ) => RunSubtractGreenTest ( ) ;
287
-
288
285
[ Fact ]
289
286
public void AddGreenToBlueAndRed_Works ( ) => RunAddGreenToBlueAndRedTest ( ) ;
290
287
@@ -318,12 +315,18 @@ public void BundleColorMap_WithXbitsNoneZero_Works()
318
315
[ Fact ]
319
316
public void Predictor13_WithoutSSE2_Works ( ) => FeatureTestRunner . RunWithHwIntrinsicsFeature ( RunPredictor13Test , HwIntrinsics . DisableSSE2 ) ;
320
317
318
+ [ Fact ]
319
+ public void SubtractGreen_Works ( ) => RunSubtractGreenTest ( ) ;
320
+
321
321
[ Fact ]
322
322
public void SubtractGreen_WithHardwareIntrinsics_Works ( ) => FeatureTestRunner . RunWithHwIntrinsicsFeature ( RunSubtractGreenTest , HwIntrinsics . AllowAll ) ;
323
323
324
324
[ Fact ]
325
325
public void SubtractGreen_WithoutAVX2_Works ( ) => FeatureTestRunner . RunWithHwIntrinsicsFeature ( RunSubtractGreenTest , HwIntrinsics . DisableAVX2 ) ;
326
326
327
+ [ Fact ]
328
+ public void SubtractGreen_Scalar_Works ( ) => FeatureTestRunner . RunWithHwIntrinsicsFeature ( RunSubtractGreenTest , HwIntrinsics . DisableHWIntrinsic ) ;
329
+
327
330
[ Fact ]
328
331
public void SubtractGreen_WithoutAvxOrSSSE3_Works ( ) => FeatureTestRunner . RunWithHwIntrinsicsFeature ( RunSubtractGreenTest , HwIntrinsics . DisableAVX2 | HwIntrinsics . DisableSSSE3 ) ;
329
332
You can’t perform that action at this time.
0 commit comments