diff options
Diffstat (limited to 'opengl/java/javax')
-rw-r--r-- | opengl/java/javax/microedition/khronos/egl/EGL10.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/opengl/java/javax/microedition/khronos/egl/EGL10.java b/opengl/java/javax/microedition/khronos/egl/EGL10.java index abdbd11828db..ea571c7311a1 100644 --- a/opengl/java/javax/microedition/khronos/egl/EGL10.java +++ b/opengl/java/javax/microedition/khronos/egl/EGL10.java @@ -17,7 +17,6 @@ package javax.microedition.khronos.egl; import android.compat.annotation.UnsupportedAppUsage; -import android.os.Build; public interface EGL10 extends EGL { int EGL_SUCCESS = 0x3000; @@ -117,7 +116,7 @@ public interface EGL10 extends EGL { String eglQueryString(EGLDisplay display, int name); boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value); /** @hide **/ - @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553) + @UnsupportedAppUsage boolean eglReleaseThread(); boolean eglSwapBuffers(EGLDisplay display, EGLSurface surface); boolean eglTerminate(EGLDisplay display); |