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

Commit 33896588 authored by John Reck's avatar John Reck
Browse files

No-op isolatedZVolumen property

Change-Id: I7aa474d65a3d12efd4ffb731e07ee42f4d348183
parent 361fd3d2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -100,8 +100,7 @@ static void android_view_DisplayList_setClipToBounds(JNIEnv* env,

static void android_view_DisplayList_setIsolatedZVolume(JNIEnv* env,
        jobject clazz, jlong displayListPtr, jboolean shouldIsolate) {
    RenderNode* displayList = reinterpret_cast<RenderNode*>(displayListPtr);
    displayList->setIsolatedZVolume(shouldIsolate);
    // No-op, TODO: Remove Java usage of this method
}

static void android_view_DisplayList_setProjectBackwards(JNIEnv* env,
+0 −1
Original line number Diff line number Diff line
@@ -57,7 +57,6 @@ RenderNode::RenderNode() :
    mRight = 0;
    mBottom = 0;
    mClipToBounds = true;
    mIsolatedZVolume = true;
    mProjectBackwards = false;
    mProjectionReceiver = false;
    mOutline.rewind();
+0 −5
Original line number Diff line number Diff line
@@ -204,10 +204,6 @@ public:
        mClipToBounds = clipToBounds;
    }

    void setIsolatedZVolume(bool shouldIsolate) {
        mIsolatedZVolume = shouldIsolate;
    }

    void setCastsShadow(bool castsShadow) {
        mCastsShadow = castsShadow;
    }
@@ -617,7 +613,6 @@ private:

    // Rendering properties
    bool mClipToBounds;
    bool mIsolatedZVolume;
    bool mProjectBackwards;
    bool mProjectionReceiver;
    SkPath mOutline;