diff options
| author | Chet Haase <chet@google.com> | 2013-08-09 22:50:35 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-08-09 22:50:35 +0000 |
| commit | 2b2d313e865e8aae3296257ed852374b15fa05ad (patch) | |
| tree | f75c0c67c76f9b6634dc7e4eb010be780eaf1036 /core/java | |
| parent | f6c7a5fd6680d74972738e60ad5c9cf34bfc43ef (diff) | |
| parent | 2632b5d0d2c307f28bd3416ca6414d6cc1e2ffdc (diff) | |
Merge "Reduce amount of invalidation when old-style animations are running" into klp-dev
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/view/View.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index 3dff1b030041..7a8289276ea4 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -14013,10 +14013,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } if (more && hardwareAccelerated) { - // invalidation is the trigger to recreate display lists, so if we're using - // display lists to render, force an invalidate to allow the animation to - // continue drawing another frame - parent.invalidate(true); if (a.hasAlpha() && (mPrivateFlags & PFLAG_ALPHA_SET) == PFLAG_ALPHA_SET) { // alpha animations should cause the child to recreate its display list invalidate(true); |
