lc_image_destroy function

  1. @Native<Void Function(Pointer<LcImage>)>(ffi.Pointer<LcImage>)>()
void lc_image_destroy(
  1. Pointer<LcImage> image
)

Releases a canvas created by lc_image_create. Passing NULL is a no-op.

Implementation

@ffi.Native<ffi.Void Function(ffi.Pointer<LcImage>)>()
external void lc_image_destroy(ffi.Pointer<LcImage> image);