summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorTim Murray <timmurray@google.com>2013-09-09 16:15:56 -0700
committerTim Murray <timmurray@google.com>2013-09-09 16:23:27 -0700
commit9578e642403c0fa4fdcb32828f27c2417cabe88d (patch)
tree34e95855ef8c2e7b080106bb83d7fccfbc9fb17a /graphics
parent16c3220734f3cbf32c0148d82815d93e2f28af65 (diff)
downloadframeworks_base-9578e642403c0fa4fdcb32828f27c2417cabe88d.zip
frameworks_base-9578e642403c0fa4fdcb32828f27c2417cabe88d.tar.gz
frameworks_base-9578e642403c0fa4fdcb32828f27c2417cabe88d.tar.bz2
Add flags word to initialization.
bug 10427951 Change-Id: I1356b9b96315ead44aa3898de5604d75f9bb8be5
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