1    // C function EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )
2
3    @Deprecated
4    public static native EGLSurface eglCreatePixmapSurface(
5        EGLDisplay dpy,
6        EGLConfig config,
7        int pixmap,
8        int[] attrib_list,
9        int offset
10    );
11
12