• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1     // C function EGLImage eglCreateImage ( EGLDisplay dpy, EGLContext context, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list )
2 
eglCreateImage( EGLDisplay dpy, EGLContext context, int target, long buffer, long[] attrib_list, int offset )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