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

Commit d51e0820 authored by Michael Jurka's avatar Michael Jurka Committed by Android Git Automerger
Browse files

am 8275c608: Merge "adding fast setters for translationx/y" into honeycomb

* commit '8275c608':
  adding fast setters for translationx/y
parents cb2c84fd 8275c608
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -6406,6 +6406,22 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
        }
    }

    /**
     * @hide
     */
    public void setFastTranslationX(float x) {
        mTranslationX = x;
        mMatrixDirty = true;
    }

    /**
     * @hide
     */
    public void setFastTranslationY(float y) {
        mTranslationY = y;
        mMatrixDirty = true;
    }

    /**
     * @hide
     */