summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorTim Murray <timmurray@google.com>2013-09-09 23:34:38 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-09-09 23:34:38 +0000
commit23ae1461d2cf0ac3f1da71200544381a8d8a4957 (patch)
treec1a6feb975861d99319e0a1f766876e170191e1e /graphics
parent85e7177abe3024218de589a94bc0914bcfe51547 (diff)
parent9578e642403c0fa4fdcb32828f27c2417cabe88d (diff)
downloadframeworks_base-23ae1461d2cf0ac3f1da71200544381a8d8a4957.zip
frameworks_base-23ae1461d2cf0ac3f1da71200544381a8d8a4957.tar.gz
frameworks_base-23ae1461d2cf0ac3f1da71200544381a8d8a4957.tar.bz2
Merge "Add flags word to initialization." into klp-dev
Diffstat (limited to 'graphics')
-rw-r--r--graphics/jni/android_renderscript_RenderScript.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/jni/android_renderscript_RenderScript.cpp b/graphics/jni/android_renderscript_RenderScript.cpp
index 690493d..cbc4e5a 100644
--- a/graphics/jni/android_renderscript_RenderScript.cpp
+++ b/graphics/jni/android_renderscript_RenderScript.cpp
@@ -184,7 +184,7 @@ static jint
nContextCreate(JNIEnv *_env, jobject _this, jint dev, jint ver, jint sdkVer, jint ct)
{
LOG_API("nContextCreate");
- return (jint)rsContextCreate((RsDevice)dev, ver, sdkVer, (RsContextType)ct, false, false);
+ return (jint)rsContextCreate((RsDevice)dev, ver, sdkVer, (RsContextType)ct, 0);
}
static jint