eglDestroySurface method

int eglDestroySurface(
  1. Pointer<Void> dpy,
  2. Pointer<Void> surface
)

Implementation

int eglDestroySurface(Pointer<Void> dpy, Pointer<Void> surface) {
  loadEGL(useAngle: _useAngle);
  return egl.eglDestroySurface(dpy, surface);
}