stbi_image_free function

  1. @Native<Void Function(Pointer<Void> ptr)>(ffi.Pointer<ffi.Void>)>()
void stbi_image_free(
  1. Pointer<Void> retval_from_stbi_load
)

free the loaded image -- this is just free()

Implementation

@ffi.Native<ffi.Void Function(ffi.Pointer<ffi.Void>)>()
external void stbi_image_free(ffi.Pointer<ffi.Void> retval_from_stbi_load);