eglSwapInterval method
Implementation
int eglSwapInterval(
ffi.Pointer<ffi.Void> dpy,
int interval,
) {
return (_eglSwapInterval ??=
_dylib.lookupFunction<_c_eglSwapInterval, _dart_eglSwapInterval>(
'eglSwapInterval'))(
dpy,
interval,
);
}