Image_createEmpty function

  1. @Native<Pointer<TLinearImage> Function(Uint32, Uint32, Uint32)>(ffi.Uint32, ffi.Uint32, ffi.Uint32)>(isLeaf: true)
Pointer<TLinearImage> Image_createEmpty(
  1. int width,
  2. int height,
  3. int channel
)

Implementation

@ffi.Native<
    ffi.Pointer<TLinearImage> Function(
        ffi.Uint32, ffi.Uint32, ffi.Uint32)>(isLeaf: true)
external ffi.Pointer<TLinearImage> Image_createEmpty(
  int width,
  int height,
  int channel,
);