summaryrefslogtreecommitdiffstats
path: root/graphics/jni/android_renderscript_RenderScript.cpp
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-11-16 14:01:30 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-11-16 14:01:30 -0800
commitec8178eb0fb10e1ed753be4d065cf7f004355575 (patch)
tree0c29fb47ba2166f5865fb52ab85c6f3be90ba730 /graphics/jni/android_renderscript_RenderScript.cpp
parent19e420c52dbe42e5b4b8b3580a5e7908cebec89d (diff)
parent7d787b4722eaeb79cab42c36060336e092b77b5f (diff)
downloadframeworks_base-ec8178eb0fb10e1ed753be4d065cf7f004355575.zip
frameworks_base-ec8178eb0fb10e1ed753be4d065cf7f004355575.tar.gz
frameworks_base-ec8178eb0fb10e1ed753be4d065cf7f004355575.tar.bz2
Merge change I9c1bad53 into eclair
* changes: Add setPriority to allow wallpapers to run at lower cpu priority than default.
Diffstat (limited to 'graphics/jni/android_renderscript_RenderScript.cpp')
-rw-r--r--graphics/jni/android_renderscript_RenderScript.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/jni/android_renderscript_RenderScript.cpp b/graphics/jni/android_renderscript_RenderScript.cpp
index 709cb97..d311c33 100644
--- a/graphics/jni/android_renderscript_RenderScript.cpp
+++ b/graphics/jni/android_renderscript_RenderScript.cpp
@@ -158,6 +158,16 @@ nContextCreate(JNIEnv *_env, jobject _this, jint dev, jint ver, jboolean useDept
}
static void
+nContextSetPriority(JNIEnv *_env, jobject _this, jint p)
+{
+ RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
+ LOG_API("ContextSetPriority, con(%p), priority(%i)", con, p);
+ rsContextSetPriority(con, p);
+}
+
+
+
+static void
nContextSetSurface(JNIEnv *_env, jobject _this, jint width, jint height, jobject wnd)
{
RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
@@ -1333,6 +1343,7 @@ static JNINativeMethod methods[] = {
{"nDeviceDestroy", "(I)V", (void*)nDeviceDestroy },
{"nDeviceSetConfig", "(III)V", (void*)nDeviceSetConfig },
{"nContextCreate", "(IIZ)I", (void*)nContextCreate },
+{"nContextSetPriority", "(I)V", (void*)nContextSetPriority },
{"nContextSetSurface", "(IILandroid/view/Surface;)V", (void*)nContextSetSurface },
{"nContextDestroy", "(I)V", (void*)nContextDestroy },
{"nContextPause", "()V", (void*)nContextPause },