Pinta.ImageManipulation.BinaryPixelOp.ApplyAsync C# (CSharp) Method

ApplyAsync() public method

public ApplyAsync ( ISurface src, ISurface dst ) : Task
src ISurface
dst ISurface
return Task
		public Task ApplyAsync (ISurface src, ISurface dst)
		{
			if (dst.Size != src.Size)
				throw new ArgumentException ("dst.Size != src.Size");

			return ApplyAsync (src, dst, dst.Bounds, CancellationToken.None);
		}

Same methods

BinaryPixelOp::ApplyAsync ( ISurface src, ISurface dst, CancellationToken token ) : Task
BinaryPixelOp::ApplyAsync ( ISurface src, ISurface dst, CancellationToken token, IRenderProgress progress ) : Task
BinaryPixelOp::ApplyAsync ( ISurface lhs, ISurface rhs, ISurface dst ) : Task
BinaryPixelOp::ApplyAsync ( ISurface lhs, ISurface rhs, ISurface dst, CancellationToken token ) : Task
BinaryPixelOp::ApplyAsync ( ISurface lhs, ISurface rhs, ISurface dst, Rectangle roi ) : Task
BinaryPixelOp::ApplyAsync ( ISurface lhs, ISurface rhs, ISurface dst, Rectangle roi, CancellationToken token ) : Task
BinaryPixelOp::ApplyAsync ( ISurface lhs, ISurface rhs, ISurface dst, Rectangle roi, CancellationToken token, IRenderProgress progress ) : Task
BinaryPixelOp::ApplyAsync ( ISurface src, ISurface dst, Rectangle roi ) : Task
BinaryPixelOp::ApplyAsync ( ISurface src, ISurface dst, Rectangle roi, CancellationToken token ) : Task
BinaryPixelOp::ApplyAsync ( ISurface src, ISurface dst, Rectangle roi, CancellationToken token, IRenderProgress progress ) : Task