eglCreatePlatformWindowSurface method

Pointer<Void> eglCreatePlatformWindowSurface(
  1. Pointer<Void> dpy,
  2. Pointer<Void> config,
  3. Pointer<Void> native_window,
  4. Pointer<Int32> attrib_list,
)

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,
  );
}