1    // C function EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list )
2    // TODO Deprecate the below method
3    public static native EGLSurface eglCreatePbufferFromClientBuffer(
4        EGLDisplay dpy,
5        int buftype,
6        int buffer,
7        EGLConfig config,
8        int[] attrib_list,
9        int offset
10    );
11    // TODO Unhide the below method
12    /**
13     * {@hide}
14     */
15    public static native EGLSurface eglCreatePbufferFromClientBuffer(
16        EGLDisplay dpy,
17        int buftype,
18        long buffer,
19        EGLConfig config,
20        int[] attrib_list,
21        int offset
22    );
23
24