Home | History | Annotate | Download | only in egl
      1     // C function EGLDisplay eglGetDisplay ( EGLNativeDisplayType display_id )
      2 
      3     public static native EGLDisplay eglGetDisplay(
      4         int display_id
      5     );
      6 
      7     /**
      8      * {@hide}
      9      */
     10     @UnsupportedAppUsage
     11     public static native EGLDisplay eglGetDisplay(
     12         long display_id
     13     );
     14 
     15