diff options
| -rwxr-xr-x | opengl/tools/glgen/stubs/egl/eglGetDisplay.cpp | 2 | ||||
| -rwxr-xr-x | opengl/tools/glgen/stubs/egl/eglGetDisplay.java | 3 | 
2 files changed, 2 insertions, 3 deletions
| diff --git a/opengl/tools/glgen/stubs/egl/eglGetDisplay.cpp b/opengl/tools/glgen/stubs/egl/eglGetDisplay.cpp index 4c353a2a90..003efd3e16 100755 --- a/opengl/tools/glgen/stubs/egl/eglGetDisplay.cpp +++ b/opengl/tools/glgen/stubs/egl/eglGetDisplay.cpp @@ -14,7 +14,7 @@ static jobject  android_eglGetDisplayInt    (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");          return 0;      } diff --git a/opengl/tools/glgen/stubs/egl/eglGetDisplay.java b/opengl/tools/glgen/stubs/egl/eglGetDisplay.java index 532eb09827..7532abf3a1 100755 --- a/opengl/tools/glgen/stubs/egl/eglGetDisplay.java +++ b/opengl/tools/glgen/stubs/egl/eglGetDisplay.java @@ -1,10 +1,9 @@      // 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}       */ |