stbhw_get_template_size function

  1. @Native<Void Function(Pointer<stbhw_config>, Pointer<Int>, Pointer<Int>)>(ffi.Pointer<stbhw_config>, ffi.Pointer<ffi.Int>, ffi.Pointer<ffi.Int>)>()
void stbhw_get_template_size(
  1. Pointer<stbhw_config> c,
  2. Pointer<Int> w,
  3. Pointer<Int> h
)

computes the size needed for the template image

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<stbhw_config>,
    ffi.Pointer<ffi.Int>,
    ffi.Pointer<ffi.Int>,
  )
>()
external void stbhw_get_template_size(
  ffi.Pointer<stbhw_config> c,
  ffi.Pointer<ffi.Int> w,
  ffi.Pointer<ffi.Int> h,
);