create_swap_chain function

  1. @Native<Void Function(Pointer<Void>, Pointer<Void>, Uint32, Uint32)>(ffi.Pointer<ffi.Void>, ffi.Pointer<ffi.Void>, ffi.Uint32, ffi.Uint32)>()
void create_swap_chain(
  1. Pointer<Void> viewer,
  2. Pointer<Void> window,
  3. int width,
  4. int height,
)

Implementation

@ffi.Native<
    ffi.Void Function(
        ffi.Pointer<ffi.Void>, ffi.Pointer<ffi.Void>, ffi.Uint32, ffi.Uint32)>()
external void create_swap_chain(
  ffi.Pointer<ffi.Void> viewer,
  ffi.Pointer<ffi.Void> window,
  int width,
  int height,
);