Home | History | Annotate | Download | only in egl
      1     // C function EGLImage eglCreateImage ( EGLDisplay dpy, EGLContext context, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list )
      2 
      3     public static native EGLImage eglCreateImage(
      4         EGLDisplay dpy,
      5         EGLContext context,
      6         int target,
      7         long buffer,
      8         long[] attrib_list,
      9         int offset
     10     );
     11 
     12