Delegate PixelAccessorAction<TPixel1, TPixel2, TPixel3>
- Namespace
- SixLabors.ImageSharp
- Assembly
- SixLabors.ImageSharp.dll
A delegate to be executed on three instances of PixelAccessor<TPixel>.
public delegate void PixelAccessorAction<TPixel1, TPixel2, TPixel3>(PixelAccessor<TPixel1> pixelAccessor1, PixelAccessor<TPixel2> pixelAccessor2, PixelAccessor<TPixel3> pixelAccessor3) where TPixel1 : unmanaged, IPixel<TPixel1> where TPixel2 : unmanaged, IPixel<TPixel2> where TPixel3 : unmanaged, IPixel<TPixel3>
Parameters
pixelAccessor1PixelAccessor<TPixel1>- A delegate to be executed on three instances of .
pixelAccessor2PixelAccessor<TPixel2>- A delegate to be executed on three instances of .
pixelAccessor3PixelAccessor<TPixel3>- A delegate to be executed on three instances of .
Type Parameters
TPixel1The first pixel type.
TPixel2The second pixel type.
TPixel3The third pixel type.