d61b48c090
This will allow eglGetDisplay(int) to work on both 32-bit and 64-bit systems when EGL_DEFAULT_DISPLAY is passed as a parameter. Change-Id: I0d7e9ca5410b0dd893eacc02aac40956908e4f25 Signed-off-by: Ashok Bhat <ashok.bhat@arm.com>
14 lines
276 B
Java
Executable File
14 lines
276 B
Java
Executable File
// C function EGLDisplay eglGetDisplay ( EGLNativeDisplayType display_id )
|
|
|
|
public static native EGLDisplay eglGetDisplay(
|
|
int display_id
|
|
);
|
|
|
|
/**
|
|
* {@hide}
|
|
*/
|
|
public static native EGLDisplay eglGetDisplay(
|
|
long display_id
|
|
);
|
|
|