eglCreatePlatformWindowSurface method
Implementation
ffi.Pointer<ffi.Void> eglCreatePlatformWindowSurface(
ffi.Pointer<ffi.Void> dpy,
ffi.Pointer<ffi.Void> config,
ffi.Pointer<ffi.Void> native_window,
ffi.Pointer<ffi.Int32> attrib_list,
) {
return (_eglCreatePlatformWindowSurface ??= _dylib.lookupFunction<
_c_eglCreatePlatformWindowSurface,
_dart_eglCreatePlatformWindowSurface>(
'eglCreatePlatformWindowSurface'))(
dpy,
config,
native_window,
attrib_list,
);
}