eglCreatePlatformPixmapSurface method
Implementation
ffi.Pointer<ffi.Void> eglCreatePlatformPixmapSurface(
ffi.Pointer<ffi.Void> dpy,
ffi.Pointer<ffi.Void> config,
ffi.Pointer<ffi.Void> native_pixmap,
ffi.Pointer<ffi.Int32> attrib_list,
) {
return (_eglCreatePlatformPixmapSurface ??= _dylib.lookupFunction<
_c_eglCreatePlatformPixmapSurface,
_dart_eglCreatePlatformPixmapSurface>(
'eglCreatePlatformPixmapSurface'))(
dpy,
config,
native_pixmap,
attrib_list,
);
}