summaryrefslogtreecommitdiffstats
path: root/opengl/tools/glgen/stubs/egl/eglGetDisplay.java
blob: 532eb09827fe9a5aad702b401b68f84fa45acae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
    // C function EGLDisplay eglGetDisplay ( EGLNativeDisplayType display_id )
    // TODO Deprecate the eglGetDisplay(int) API method

    public static native EGLDisplay eglGetDisplay(
        int display_id
    );
    // TODO Unhide the eglGetDisplay(long) API method
    /**
     * {@hide}
     */
    public static native EGLDisplay eglGetDisplay(
        long display_id
    );