getBlend<S, T> abstract method

T Function(S src, T dst) getBlend<S, T>(
  1. PixelFormat<S, void> srcFormat,
  2. PixelFormat<T, void> dstFormat
)

Returns a function that blends two pixels together.

Implementation

T Function(S src, T dst) getBlend<S, T>(
  PixelFormat<S, void> srcFormat,
  PixelFormat<T, void> dstFormat,
);