eglCreatePixmapSurface method

Pointer<Void> eglCreatePixmapSurface(
  1. Pointer<Void> dpy,
  2. Pointer<Void> config,
  3. int pixmap,
  4. Pointer<Int32> attrib_list,
)

Implementation

ffi.Pointer<ffi.Void> eglCreatePixmapSurface(
  ffi.Pointer<ffi.Void> dpy,
  ffi.Pointer<ffi.Void> config,
  int pixmap,
  ffi.Pointer<ffi.Int32> attrib_list,
) {
  return (_eglCreatePixmapSurface ??= _dylib.lookupFunction<
      _c_eglCreatePixmapSurface,
      _dart_eglCreatePixmapSurface>('eglCreatePixmapSurface'))(
    dpy,
    config,
    pixmap,
    attrib_list,
  );
}