diff options
| author | 2010-12-02 00:09:28 -0800 | |
|---|---|---|
| committer | 2010-12-02 00:09:28 -0800 | |
| commit | 23fe0ce42728f40eaa0d3b9bcc45528608a2991c (patch) | |
| tree | 86c61e9a0b83734adeff7aaaa674f3961c9cd939 | |
| parent | fcca00accb923d3cbda4e0d6f5540b10e8279cd2 (diff) | |
| parent | 67f23ba649b99647873b5a61e4a38de25fa6d660 (diff) | |
Merge "Revert "Re-add performance optimization in View""
| -rw-r--r-- | core/java/android/view/View.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index ea237e3dbc52..6114800de21d 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -6430,12 +6430,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility } final AttachInfo ai = mAttachInfo; final ViewParent p = mParent; - if (p != null && ai != null && ai.mHardwareAccelerated) { - // fast-track for GL-enabled applications; just invalidate the whole hierarchy - // with a null dirty rect, which tells the ViewRoot to redraw everything - p.invalidateChild(this, null); - return; - } if (p != null && ai != null) { final Rect r = ai.mTmpInvalRect; |