@@ -61,7 +61,7 @@ public static IImageProcessingContext ProcessPixelRowsAsVector4(this IImageProce
6161 /// <param name="source">The image this method extends.</param>
6262 /// <param name="rowOperation">The user defined processing delegate to use to modify image rows.</param>
6363 /// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
64- public static IImageProcessingContext ProcessPixelRowsAsVector4 ( this IImageProcessingContext source , PositionAwarePixelRowOperation rowOperation )
64+ public static IImageProcessingContext ProcessPixelRowsAsVector4 ( this IImageProcessingContext source , PixelRowOperation < Point > rowOperation )
6565 => ProcessPixelRowsAsVector4 ( source , rowOperation , PixelConversionModifiers . None ) ;
6666
6767 /// <summary>
@@ -71,7 +71,7 @@ public static IImageProcessingContext ProcessPixelRowsAsVector4(this IImageProce
7171 /// <param name="rowOperation">The user defined processing delegate to use to modify image rows.</param>
7272 /// <param name="modifiers">The <see cref="PixelConversionModifiers"/> to apply during the pixel conversions.</param>
7373 /// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
74- public static IImageProcessingContext ProcessPixelRowsAsVector4 ( this IImageProcessingContext source , PositionAwarePixelRowOperation rowOperation , PixelConversionModifiers modifiers )
74+ public static IImageProcessingContext ProcessPixelRowsAsVector4 ( this IImageProcessingContext source , PixelRowOperation < Point > rowOperation , PixelConversionModifiers modifiers )
7575 => source . ApplyProcessor ( new PositionAwarePixelRowDelegateProcessor ( rowOperation , modifiers ) ) ;
7676
7777 /// <summary>
@@ -83,7 +83,7 @@ public static IImageProcessingContext ProcessPixelRowsAsVector4(this IImageProce
8383 /// The <see cref="Rectangle"/> structure that specifies the portion of the image object to alter.
8484 /// </param>
8585 /// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
86- public static IImageProcessingContext ProcessPixelRowsAsVector4 ( this IImageProcessingContext source , PositionAwarePixelRowOperation rowOperation , Rectangle rectangle )
86+ public static IImageProcessingContext ProcessPixelRowsAsVector4 ( this IImageProcessingContext source , PixelRowOperation < Point > rowOperation , Rectangle rectangle )
8787 => ProcessPixelRowsAsVector4 ( source , rowOperation , rectangle , PixelConversionModifiers . None ) ;
8888
8989 /// <summary>
@@ -96,7 +96,7 @@ public static IImageProcessingContext ProcessPixelRowsAsVector4(this IImageProce
9696 /// </param>
9797 /// <param name="modifiers">The <see cref="PixelConversionModifiers"/> to apply during the pixel conversions.</param>
9898 /// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
99- public static IImageProcessingContext ProcessPixelRowsAsVector4 ( this IImageProcessingContext source , PositionAwarePixelRowOperation rowOperation , Rectangle rectangle , PixelConversionModifiers modifiers )
99+ public static IImageProcessingContext ProcessPixelRowsAsVector4 ( this IImageProcessingContext source , PixelRowOperation < Point > rowOperation , Rectangle rectangle , PixelConversionModifiers modifiers )
100100 => source . ApplyProcessor ( new PositionAwarePixelRowDelegateProcessor ( rowOperation , modifiers ) , rectangle ) ;
101101 }
102102}
0 commit comments