eglCreateSync method

Pointer<Void> eglCreateSync(
  1. Pointer<Void> dpy,
  2. int type,
  3. Pointer<Int32> attrib_list
)

Implementation

ffi.Pointer<ffi.Void> eglCreateSync(
  ffi.Pointer<ffi.Void> dpy,
  int type,
  ffi.Pointer<ffi.Int32> attrib_list,
) {
  return (_eglCreateSync ??=
      _dylib.lookupFunction<_c_eglCreateSync, _dart_eglCreateSync>(
          'eglCreateSync'))(
    dpy,
    type,
    attrib_list,
  );
}