1     // C function EGLSurface eglCreatePlatformWindowSurface ( EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list )
2 
eglCreatePlatformWindowSurface( EGLDisplay dpy, EGLConfig config, java.nio.Buffer native_window, long[] attrib_list, int offset )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