@ -45,7 +45,7 @@ namespace SixLabors.ImageSharp.Processing.Processors.Transforms
if (this.transformMatrix.Equals(default) || this.transformMatrix.Equals(Matrix3x2.Identity))
{
// The clone will be blank here copy all the pixel data over
source.GetPixelSpan().CopyTo(destination.GetPixelSpan());
source.GetPixelMemoryGroup().CopyTo(destination.GetPixelMemoryGroup());
return;
}
@ -41,7 +41,7 @@ namespace SixLabors.ImageSharp.Processing.Processors.Transforms
&& this.SourceRectangle == this.cropRectangle)
// the cloned will be blank here copy all the pixel data over
if (this.transformMatrix.Equals(default) || this.transformMatrix.Equals(Matrix4x4.Identity))
@ -81,7 +81,7 @@ namespace SixLabors.ImageSharp.Processing.Processors.Transforms
&& sourceRectangle == this.targetRectangle)
// The cloned will be blank here copy all the pixel data over
@ -98,7 +98,7 @@ namespace SixLabors.ImageSharp.Processing.Processors.Transforms
if (MathF.Abs(degrees) < Constants.Epsilon)
// The destination will be blank here so copy all the pixel data over
return true;