Home | History | Annotate | Download | only in egl
      1     // C function EGLSurface eglCreatePlatformWindowSurface ( EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list )
      2 
      3     public static native EGLSurface eglCreatePlatformWindowSurface(
      4         EGLDisplay dpy,
      5         EGLConfig config,
      6         java.nio.Buffer native_window,
      7         long[] attrib_list,
      8         int offset
      9     );
     10 
     11