wglSwapMultipleBuffers method

int wglSwapMultipleBuffers(
  1. int arg0,
  2. Pointer<LPWGLSWAP> arg1
)

Implementation

int wglSwapMultipleBuffers(
  int arg0,
  ffi.Pointer<LPWGLSWAP> arg1,
) {
  return (_wglSwapMultipleBuffers ??= _dylib.lookupFunction<
      _c_wglSwapMultipleBuffers,
      _dart_wglSwapMultipleBuffers>('wglSwapMultipleBuffers'))(
    arg0,
    arg1,
  );
}