summaryrefslogtreecommitdiffstats
path: root/core/jni/AndroidRuntime.cpp
diff options
context:
space:
mode:
authorJamie Gennis <jgennis@google.com>2011-06-10 10:05:04 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-06-10 10:05:04 -0700
commit4532c5e49cc0d029c53a3aee3e0b1fdf8ffd2ec4 (patch)
tree306c63d43fe52f5ea151b57ea5edf06b2c94505f /core/jni/AndroidRuntime.cpp
parentbe674b18644cda56ba56a78ac7147711861e8dc8 (diff)
parent050316184b01c0d1a01c46afae7429b89a27c31b (diff)
downloadframeworks_base-4532c5e49cc0d029c53a3aee3e0b1fdf8ffd2ec4.zip
frameworks_base-4532c5e49cc0d029c53a3aee3e0b1fdf8ffd2ec4.tar.gz
frameworks_base-4532c5e49cc0d029c53a3aee3e0b1fdf8ffd2ec4.tar.bz2
Merge "Add ParcelSurfaceTexture Java class to enable ISurfaceTexture sharing via Binder."
Diffstat (limited to 'core/jni/AndroidRuntime.cpp')
-rw-r--r--core/jni/AndroidRuntime.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/jni/AndroidRuntime.cpp b/core/jni/AndroidRuntime.cpp
index 4552095..21b0a42 100644
--- a/core/jni/AndroidRuntime.cpp
+++ b/core/jni/AndroidRuntime.cpp
@@ -105,6 +105,7 @@ extern int register_android_graphics_ColorFilter(JNIEnv* env);
extern int register_android_graphics_DrawFilter(JNIEnv* env);
extern int register_android_graphics_Matrix(JNIEnv* env);
extern int register_android_graphics_Paint(JNIEnv* env);
+extern int register_android_graphics_ParcelSurfaceTexture(JNIEnv* env);
extern int register_android_graphics_Path(JNIEnv* env);
extern int register_android_graphics_PathMeasure(JNIEnv* env);
extern int register_android_graphics_Picture(JNIEnv*);
@@ -1142,6 +1143,7 @@ static const RegJNIRec gRegJNI[] = {
REG_JNI(register_android_graphics_Movie),
REG_JNI(register_android_graphics_NinePatch),
REG_JNI(register_android_graphics_Paint),
+ REG_JNI(register_android_graphics_ParcelSurfaceTexture),
REG_JNI(register_android_graphics_Path),
REG_JNI(register_android_graphics_PathMeasure),
REG_JNI(register_android_graphics_PathEffect),