diff options
author | Romain Guy <romainguy@google.com> | 2012-10-23 10:53:40 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2012-10-23 10:53:40 -0700 |
commit | 2635e7431a74b89c338ea9d56715f94b9c328cc1 (patch) | |
tree | a2d1729a514438f3f32be1ef01987e67b00a0191 /libs | |
parent | c3b9c76b61502ff3e0c0681298f1ed45444b0eac (diff) | |
parent | d04fe3c1aeaf4ce63f6a6f3def61a8cc5faff705 (diff) | |
download | frameworks_base-2635e7431a74b89c338ea9d56715f94b9c328cc1.zip frameworks_base-2635e7431a74b89c338ea9d56715f94b9c328cc1.tar.gz frameworks_base-2635e7431a74b89c338ea9d56715f94b9c328cc1.tar.bz2 |
am d04fe3c1: am 04c8d402: Merge "Properly draw the window background on window resize Bug #7385090" into jb-mr1-dev
* commit 'd04fe3c1aeaf4ce63f6a6f3def61a8cc5faff705':
Properly draw the window background on window resize Bug #7385090
Diffstat (limited to 'libs')
-rw-r--r-- | libs/hwui/OpenGLRenderer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/OpenGLRenderer.cpp b/libs/hwui/OpenGLRenderer.cpp index 914516c..e2d7156 100644 --- a/libs/hwui/OpenGLRenderer.cpp +++ b/libs/hwui/OpenGLRenderer.cpp @@ -179,7 +179,7 @@ status_t OpenGLRenderer::prepareDirty(float left, float top, float right, float mSaveCount = 1; mSnapshot->setClip(left, top, right, bottom); - mDirtyClip = opaque; + mDirtyClip = true; updateLayers(); |