diff options
author | John Reck <jreck@google.com> | 2014-06-20 07:19:30 -0700 |
---|---|---|
committer | John Reck <jreck@google.com> | 2014-06-20 14:05:51 -0700 |
commit | 2218472d23483f09341bf655d55db21dcbabc1b6 (patch) | |
tree | d6770441e74ad9ef83d5d8961bc9d5780df00eb0 /libs/hwui/Animator.h | |
parent | 9285d1bf9c57e5f1da8f8d8ef7a6a38b2f0e4ec3 (diff) |
Re-enable ViewPropAnimRT
Change-Id: I2f30547c4e2212747c479760dff4f3f901d1eaf3
Diffstat (limited to 'libs/hwui/Animator.h')
-rw-r--r-- | libs/hwui/Animator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/hwui/Animator.h b/libs/hwui/Animator.h index 203cdffea433..6cb72c4ccb02 100644 --- a/libs/hwui/Animator.h +++ b/libs/hwui/Animator.h @@ -61,6 +61,8 @@ public: bool isFinished() { return mPlayState == FINISHED; } float finalValue() { return mFinalValue; } + ANDROID_API virtual uint32_t dirtyMask() { return 0; } + protected: BaseRenderNodeAnimator(float finalValue); virtual ~BaseRenderNodeAnimator(); @@ -112,6 +114,8 @@ public: ANDROID_API virtual void onAttached(RenderNode* target); + ANDROID_API virtual uint32_t dirtyMask(); + protected: virtual float getValue(RenderNode* target) const; virtual void setValue(RenderNode* target, float value); |