eglMakeCurrent method

int eglMakeCurrent(
  1. int dpy,
  2. int draw,
  3. int read,
  4. int ctx,
)

Implementation

int eglMakeCurrent(
  int dpy,
  int draw,
  int read,
  int ctx,
) {
  return _eglMakeCurrent(
    dpy,
    draw,
    read,
    ctx,
  );
}