* commit '3e599252c0f5a8e70f4b8d4ab5baffb7e5b0b0e1': AArch64: Make eglGetDisplay(int) work for EGL_DEFAULT_DISPLAY
This commit is contained in:
commit
2c95c57b62
@ -14,7 +14,7 @@ static jobject
|
|||||||
android_eglGetDisplayInt
|
android_eglGetDisplayInt
|
||||||
(JNIEnv *_env, jobject _this, jint display_id) {
|
(JNIEnv *_env, jobject _this, jint display_id) {
|
||||||
|
|
||||||
if (sizeof(void*) != sizeof(uint32_t)) {
|
if ((EGLNativeDisplayType)display_id != EGL_DEFAULT_DISPLAY) {
|
||||||
jniThrowException(_env, "java/lang/UnsupportedOperationException", "eglGetDisplay");
|
jniThrowException(_env, "java/lang/UnsupportedOperationException", "eglGetDisplay");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
// C function EGLDisplay eglGetDisplay ( EGLNativeDisplayType display_id )
|
// C function EGLDisplay eglGetDisplay ( EGLNativeDisplayType display_id )
|
||||||
// TODO Deprecate the eglGetDisplay(int) API method
|
|
||||||
|
|
||||||
public static native EGLDisplay eglGetDisplay(
|
public static native EGLDisplay eglGetDisplay(
|
||||||
int display_id
|
int display_id
|
||||||
);
|
);
|
||||||
// TODO Unhide the eglGetDisplay(long) API method
|
|
||||||
/**
|
/**
|
||||||
* {@hide}
|
* {@hide}
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user