eglCreatePixmapSurface method

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

Implementation

ffi.Pointer<ffi.Void> eglCreatePixmapSurface(
  ffi.Pointer<ffi.Void> dpy,
  ffi.Pointer<ffi.Void> config,
  ffi.Pointer<ffi.Void> pixmap,
  ffi.Pointer<ffi.Int32> attrib_list,
) {
  return _eglCreatePixmapSurface(
    dpy,
    config,
    pixmap,
    attrib_list,
  );
}