eglCreatePixmapSurface method
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,
);
}