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

Commit 362a3caa authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Make Drawable#isProjected public"

parents 1a4c431e 3af32bd9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -15080,6 +15080,7 @@ package android.graphics.drawable {
    method public void invalidateSelf();
    method public boolean isAutoMirrored();
    method public boolean isFilterBitmap();
    method public boolean isProjected();
    method public boolean isStateful();
    method public final boolean isVisible();
    method public void jumpToCurrentState();
+4 −3
Original line number Diff line number Diff line
@@ -713,11 +713,12 @@ public abstract class Drawable {
    }

    /**
     * Whether this drawable requests projection.
     * Whether this drawable requests projection. Indicates that the
     * {@link android.graphics.RenderNode} this Drawable will draw into should be drawn immediately
     * after the closest ancestor RenderNode containing a projection receiver.
     *
     * @hide magic!
     * @see android.graphics.RenderNode#setProjectBackwards(boolean)
     */
    @UnsupportedAppUsage
    public boolean isProjected() {
        return false;
    }