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     public static native EGLDisplay eglGetDisplay(
     11         long display_id
     12     );
     13 
     14