eglCreateWindowSurface method
Implementation
ffi.Pointer<ffi.Void> eglCreateWindowSurface(
ffi.Pointer<ffi.Void> dpy,
ffi.Pointer<ffi.Void> config,
ffi.Pointer<ffi.Void> win,
ffi.Pointer<ffi.Int32> attrib_list,
) {
return (_eglCreateWindowSurface ??= _dylib.lookupFunction<
_c_eglCreateWindowSurface,
_dart_eglCreateWindowSurface>('eglCreateWindowSurface'))(
dpy,
config,
win,
attrib_list,
);
}