blob: db8f728ca6f4576027b319b8c8567af196b0fb57 [file] [log] [blame]
// C function EGLSync eglCreateSync ( EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list )
public static native EGLSync eglCreateSync(
EGLDisplay dpy,
int type,
long[] attrib_list,
int offset
);
/**
* C function EGLBoolean eglGetSyncAttrib ( EGLDisplay dpy, EGLSync sync, EGLint attribute,
* EGLAttrib *value )
*/
public static native boolean eglGetSyncAttrib(
EGLDisplay dpy,
EGLSync sync,
int attribute,
long[] value,
int offset
);