eglQuerySurface method

int eglQuerySurface(
  1. Pointer<Void> dpy,
  2. Pointer<Void> surface,
  3. int attribute,
  4. Pointer<Int32> value,
)

Implementation

int eglQuerySurface(
  ffi.Pointer<ffi.Void> dpy,
  ffi.Pointer<ffi.Void> surface,
  int attribute,
  ffi.Pointer<ffi.Int32> value,
) {
  return (_eglQuerySurface ??=
      _dylib.lookupFunction<_c_eglQuerySurface, _dart_eglQuerySurface>(
          'eglQuerySurface'))(
    dpy,
    surface,
    attribute,
    value,
  );
}