Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9163b1d9 authored by Tim Murray's avatar Tim Murray Committed by Android Git Automerger
Browse files

am 23ae1461: Merge "Add flags word to initialization." into klp-dev

* commit '23ae1461':
  Add flags word to initialization.
parents e6139bf0 23ae1461
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -732,7 +732,7 @@ void FontRenderer::blurImage(uint8_t** image, int32_t width, int32_t height, int

        if (mRs == 0) {
            mRs = new RSC::RS();
            if (!mRs->init(true, true)) {
            if (!mRs->init(RSC::RS_INIT_LOW_LATENCY & RSC::RS_INIT_SYNCHRONOUS)) {
                ALOGE("blur RS failed to init");
            }