diff options
author | Mathew Inwood <mathewi@google.com> | 2018-08-17 15:23:54 +0100 |
---|---|---|
committer | Mathew Inwood <mathewi@google.com> | 2018-08-17 15:23:54 +0100 |
commit | b6c9782f5a61a9cf7e9bdacfe2db9e044a545224 (patch) | |
tree | 8c97df10844942b81bdcb16605a9918c1e205381 /opengl | |
parent | 9cbee64d26516bb8f196c1700ceda19416243536 (diff) |
Add @UnsupportedAppUsage annotations
For packages:
javax.microedition.khronos.opengles
javax.microedition.khronos.egl
This is an automatically generated CL. See go/UnsupportedAppUsage
for more details.
Exempted-From-Owner-Approval: Mechanical changes to the codebase
which have been approved by Android API council and announced on
android-eng@
Bug: 110868826
Test: m
Change-Id: I3615f60789c14c44284c896c3a9ea291100dff8e
Diffstat (limited to 'opengl')
-rw-r--r-- | opengl/java/javax/microedition/khronos/egl/EGL10.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/opengl/java/javax/microedition/khronos/egl/EGL10.java b/opengl/java/javax/microedition/khronos/egl/EGL10.java index 612d59c53e9f..8a2517062d4d 100644 --- a/opengl/java/javax/microedition/khronos/egl/EGL10.java +++ b/opengl/java/javax/microedition/khronos/egl/EGL10.java @@ -16,6 +16,7 @@ package javax.microedition.khronos.egl; +import android.annotation.UnsupportedAppUsage; import java.lang.String; public interface EGL10 extends EGL { @@ -116,6 +117,7 @@ public interface EGL10 extends EGL { String eglQueryString(EGLDisplay display, int name); boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value); /** @hide **/ + @UnsupportedAppUsage boolean eglReleaseThread(); boolean eglSwapBuffers(EGLDisplay display, EGLSurface surface); boolean eglTerminate(EGLDisplay display); |