summaryrefslogtreecommitdiffstats
path: root/opengl/java
diff options
context:
space:
mode:
authorAndy McFadden <fadden@android.com>2014-02-14 13:09:07 -0800
committerAndy McFadden <fadden@android.com>2014-02-19 10:34:54 -0800
commit9ba6ecb275d62ad363bda73856c0e75590a73c57 (patch)
treeeec0e02634033b31da0684ac4e27f880b0853ba9 /opengl/java
parent807e0c180b1aaf519ea9ff788508219166cd00cd (diff)
downloadframeworks_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/java')
-rw-r--r--opengl/java/android/opengl/GLES20.java3
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,