summaryrefslogtreecommitdiff
path: root/opengl/java/javax
diff options
context:
space:
mode:
author Hongwei Wang <hwwang@google.com> 2020-10-28 19:38:11 +0000
committer Hongwei Wang <hwwang@google.com> 2020-10-28 20:16:22 +0000
commit050275cd83f4a66dc3705714ccbe8db025626ce8 (patch)
tree9c941a44b9f1ba83bbd13fe25716c94727a06035 /opengl/java/javax
parent72f07d6a8a32db4a0dedd7682a0b3385be2b9cd6 (diff)
Revert "Add maxTargetSdk restriction to unused APIs."
This reverts commit 72f07d6a8a32db4a0dedd7682a0b3385be2b9cd6. Reason for revert: Droidcop-triggered revert due to breakage https://android-build.googleplex.com/builds/quarterdeck?testMethod=testAppZygotePreload&testClass=android.app.cts.ServiceTest&atpConfigName=suite%2Ftest-mapping-presubmit-retry_cloud-tf&testModule=CtsAppTestCases&fkbb=6936597&lkbb=6936969&lkgb=6936551&testResults=true&branch=git_master&target=cf_x86_phone-userdebug>, bug b/171886397 Bug: 171886397 Change-Id: Ibe0f0430a3451477c1ee8ef56a596e91ea1e7672
Diffstat (limited to 'opengl/java/javax')
-rw-r--r--opengl/java/javax/microedition/khronos/egl/EGL10.java3
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);