summaryrefslogtreecommitdiffstats
path: root/opengl/tools/glgen/stubs/gles11/GLES20Header.java-if
diff options
context:
space:
mode:
authorJesse Hall <jessehall@google.com>2013-04-15 16:35:08 -0700
committerJesse Hall <jessehall@google.com>2013-04-15 16:42:21 -0700
commitc0d184b8c1002098138f65e5cd2d9b1fb3da8bb1 (patch)
tree400e848415ff4cfaba963e27f9b22994b24cb954 /opengl/tools/glgen/stubs/gles11/GLES20Header.java-if
parent4f6693080c9a186f3fe37abe445abdb39662ae22 (diff)
downloadframeworks_native-c0d184b8c1002098138f65e5cd2d9b1fb3da8bb1.zip
frameworks_native-c0d184b8c1002098138f65e5cd2d9b1fb3da8bb1.tar.gz
frameworks_native-c0d184b8c1002098138f65e5cd2d9b1fb3da8bb1.tar.bz2
Subclass GLES30 from GLES20, @Deprecate GL_STENCIL_INDEX
Bug: 8566953 Change-Id: I66085c300a8658a4018796645257edb73be94719
Diffstat (limited to 'opengl/tools/glgen/stubs/gles11/GLES20Header.java-if')
-rw-r--r--opengl/tools/glgen/stubs/gles11/GLES20Header.java-if7
1 files changed, 4 insertions, 3 deletions
diff --git a/opengl/tools/glgen/stubs/gles11/GLES20Header.java-if b/opengl/tools/glgen/stubs/gles11/GLES20Header.java-if
index 6ec126f..9ce6728 100644
--- a/opengl/tools/glgen/stubs/gles11/GLES20Header.java-if
+++ b/opengl/tools/glgen/stubs/gles11/GLES20Header.java-if
@@ -297,8 +297,9 @@ public class GLES20 {
public static final int GL_RGB565 = 0x8D62;
public static final int GL_DEPTH_COMPONENT16 = 0x81A5;
// GL_STENCIL_INDEX does not appear in gl2.h or gl2ext.h, and there is no
- // token with value 0x1901. It shouldn't be here, but we can't remove it
- // now in case someone is using it.
+ // token with value 0x1901.
+ //
+ @Deprecated
public static final int GL_STENCIL_INDEX = 0x1901;
public static final int GL_STENCIL_INDEX8 = 0x8D48;
public static final int GL_RENDERBUFFER_WIDTH = 0x8D42;
@@ -330,5 +331,5 @@ public class GLES20 {
native private static void _nativeClassInit();
static {
- _nativeClassInit();
+ _nativeClassInit();
}