stbir_set_input_subrect function

  1. @Native<Int Function(Pointer<STBIR_RESIZE>, Double, Double, Double, Double)>(ffi.Pointer<STBIR_RESIZE>, ffi.Double, ffi.Double, ffi.Double, ffi.Double)>()
int stbir_set_input_subrect(
  1. Pointer<STBIR_RESIZE> resize,
  2. double s0,
  3. double t0,
  4. double s1,
  5. double t1,
)

Implementation

@ffi.Native<
  ffi.Int Function(
    ffi.Pointer<STBIR_RESIZE>,
    ffi.Double,
    ffi.Double,
    ffi.Double,
    ffi.Double,
  )
>()
external int stbir_set_input_subrect(
  ffi.Pointer<STBIR_RESIZE> resize,
  double s0,
  double t0,
  double s1,
  double t1,
);