diff options
author | John Reck <jreck@google.com> | 2012-03-27 13:38:09 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-03-27 13:38:09 -0700 |
commit | 93198fb30cfc52edd8d616aa33586643547cb56c (patch) | |
tree | 32e7729de52191b7d0674f092be297bc1ef2497e /Source/WebCore | |
parent | 1fb74679b700702efcc08c1d0c5dde4989191357 (diff) | |
parent | 00506c8c2c68f5717bd702a13da41aa1c4fa8a80 (diff) | |
download | external_webkit-93198fb30cfc52edd8d616aa33586643547cb56c.zip external_webkit-93198fb30cfc52edd8d616aa33586643547cb56c.tar.gz external_webkit-93198fb30cfc52edd8d616aa33586643547cb56c.tar.bz2 |
Merge "Pause webkit painting better"
Diffstat (limited to 'Source/WebCore')
-rw-r--r-- | Source/WebCore/platform/graphics/android/SurfaceCollectionManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/platform/graphics/android/SurfaceCollectionManager.cpp b/Source/WebCore/platform/graphics/android/SurfaceCollectionManager.cpp index 4c48c14..52bcaf0 100644 --- a/Source/WebCore/platform/graphics/android/SurfaceCollectionManager.cpp +++ b/Source/WebCore/platform/graphics/android/SurfaceCollectionManager.cpp @@ -147,7 +147,7 @@ bool SurfaceCollectionManager::updateWithSurfaceCollection(SurfaceCollection* ne m_paintingCollection = newCollection; m_paintingCollection->setIsPainting(m_drawingCollection); } - return m_drawingCollection && TilesManager::instance()->useDoubleBuffering(); + return m_paintingCollection && TilesManager::instance()->useDoubleBuffering(); } void SurfaceCollectionManager::updateScrollableLayer(int layerId, int x, int y) |