wglSwapLayerBuffers method

int wglSwapLayerBuffers(
  1. Pointer<HDC__> arg0,
  2. int arg1
)

Implementation

int wglSwapLayerBuffers(
  ffi.Pointer<HDC__> arg0,
  int arg1,
) {
  return (_wglSwapLayerBuffers ??= _dylib.lookupFunction<
      _c_wglSwapLayerBuffers,
      _dart_wglSwapLayerBuffers>('wglSwapLayerBuffers'))(
    arg0,
    arg1,
  );
}