diff options
author | Andy McFadden <fadden@android.com> | 2014-02-14 13:09:07 -0800 |
---|---|---|
committer | Andy McFadden <fadden@android.com> | 2014-02-19 10:34:54 -0800 |
commit | 9ba6ecb275d62ad363bda73856c0e75590a73c57 (patch) | |
tree | eec0e02634033b31da0684ac4e27f880b0853ba9 /opengl | |
parent | 807e0c180b1aaf519ea9ff788508219166cd00cd (diff) | |
download | frameworks_base-9ba6ecb275d62ad363bda73856c0e75590a73c57.zip frameworks_base-9ba6ecb275d62ad363bda73856c0e75590a73c57.tar.gz frameworks_base-9ba6ecb275d62ad363bda73856c0e75590a73c57.tar.bz2 |
Hide three malformed GL bindings
They were replaced with correct bindings a while back, but the
broken methods weren't hidden.
Bug 6006380
Change-Id: I3432d37a6bf411bbd2b3ea363749e32fcff28672
Diffstat (limited to 'opengl')
-rw-r--r-- | opengl/java/android/opengl/GLES20.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/opengl/java/android/opengl/GLES20.java b/opengl/java/android/opengl/GLES20.java index 8261474..137f2f5 100644 --- a/opengl/java/android/opengl/GLES20.java +++ b/opengl/java/android/opengl/GLES20.java @@ -823,6 +823,7 @@ public class GLES20 { // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name ) + /** @hide Method is broken, but used to be public (b/6006380) */ public static native void glGetActiveAttrib( int program, int index, @@ -870,6 +871,7 @@ public class GLES20 { // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name ) + /** @hide Method is broken, but used to be public (b/6006380) */ public static native void glGetActiveUniform( int program, int index, @@ -1107,6 +1109,7 @@ public class GLES20 { // C function void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source ) + /** @hide Method is broken, but used to be public (b/6006380) */ public static native void glGetShaderSource( int shader, int bufsize, |