kannaRotate method

void kannaRotate(
  1. Pointer<UnsignedChar> src,
  2. int channel,
  3. int srcw,
  4. int srch,
  5. Pointer<UnsignedChar> dst,
  6. int dsw,
  7. int dsh,
  8. int type,
)

Implementation

void kannaRotate(
  ffi.Pointer<ffi.UnsignedChar> src,
  int channel,
  int srcw,
  int srch,
  ffi.Pointer<ffi.UnsignedChar> dst,
  int dsw,
  int dsh,
  int type,
) {
  return _kannaRotate(
    src,
    channel,
    srcw,
    srch,
    dst,
    dsw,
    dsh,
    type,
  );
}