summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKalle Raita <kraita@google.com>2017-01-12 10:26:05 -0800
committerKalle Raita <kraita@google.com>2017-01-12 10:26:05 -0800
commitebce2a76803287cc26fce068dd96b28c6808c09d (patch)
tree3d037fe843c37791af375a8875bd1208b732a463
parenta59e4503a1e407e468f47898e9b227764b842c99 (diff)
Add EGL_RECORDABLE_ANDROID enum in EGLExt
Test: CtsMediaTestCases on N5X Bug: 29402583 Change-Id: I2520fdc51d363998d4404b033722fabf0d839113
-rw-r--r--api/current.txt1
-rw-r--r--api/system-current.txt1
-rw-r--r--api/test-current.txt1
-rw-r--r--opengl/java/android/opengl/EGLExt.java1
4 files changed, 4 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt
index 9f6d358bca2f..31df05689606 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -25927,6 +25927,7 @@ package android.opengl {
field public static final int EGL_CONTEXT_MAJOR_VERSION_KHR = 12440; // 0x3098
field public static final int EGL_CONTEXT_MINOR_VERSION_KHR = 12539; // 0x30fb
field public static final int EGL_OPENGL_ES3_BIT_KHR = 64; // 0x40
+ field public static final int EGL_RECORDABLE_ANDROID = 12610; // 0x3142
}
public abstract class EGLObjectHandle {
diff --git a/api/system-current.txt b/api/system-current.txt
index 4c9cada100b5..a6ec72dc0715 100644
--- a/api/system-current.txt
+++ b/api/system-current.txt
@@ -28491,6 +28491,7 @@ package android.opengl {
field public static final int EGL_CONTEXT_MAJOR_VERSION_KHR = 12440; // 0x3098
field public static final int EGL_CONTEXT_MINOR_VERSION_KHR = 12539; // 0x30fb
field public static final int EGL_OPENGL_ES3_BIT_KHR = 64; // 0x40
+ field public static final int EGL_RECORDABLE_ANDROID = 12610; // 0x3142
}
public abstract class EGLObjectHandle {
diff --git a/api/test-current.txt b/api/test-current.txt
index c1ec21df688c..c9f483187e5a 100644
--- a/api/test-current.txt
+++ b/api/test-current.txt
@@ -26014,6 +26014,7 @@ package android.opengl {
field public static final int EGL_CONTEXT_MAJOR_VERSION_KHR = 12440; // 0x3098
field public static final int EGL_CONTEXT_MINOR_VERSION_KHR = 12539; // 0x30fb
field public static final int EGL_OPENGL_ES3_BIT_KHR = 64; // 0x40
+ field public static final int EGL_RECORDABLE_ANDROID = 12610; // 0x3142
}
public abstract class EGLObjectHandle {
diff --git a/opengl/java/android/opengl/EGLExt.java b/opengl/java/android/opengl/EGLExt.java
index b74b5fbeed8a..74b64ead77bb 100644
--- a/opengl/java/android/opengl/EGLExt.java
+++ b/opengl/java/android/opengl/EGLExt.java
@@ -28,6 +28,7 @@ public class EGLExt {
public static final int EGL_CONTEXT_MINOR_VERSION_KHR = 0x30FB;
public static final int EGL_CONTEXT_FLAGS_KHR = 0x30FC;
public static final int EGL_OPENGL_ES3_BIT_KHR = 0x0040;
+ public static final int EGL_RECORDABLE_ANDROID = 0x3142;
native private static void _nativeClassInit();
static {