summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform
diff options
context:
space:
mode:
authorNicolas Roard <nicolasroard@google.com>2011-11-07 10:21:50 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-11-07 10:21:50 -0800
commit54464c408c893079c1486aec03329f1de8ec6a29 (patch)
treefc5102102edaebb52e8a6981e31e4f4236b4e340 /Source/WebCore/platform
parentea9165575f272fb29379a4fb2d0b4f1a032e37b8 (diff)
parentececd484e5832707be4a73b70da37f862eb14c35 (diff)
downloadexternal_webkit-54464c408c893079c1486aec03329f1de8ec6a29.zip
external_webkit-54464c408c893079c1486aec03329f1de8ec6a29.tar.gz
external_webkit-54464c408c893079c1486aec03329f1de8ec6a29.tar.bz2
Merge "Doesn't lock the entire drawing..." into ics-mr1
Diffstat (limited to 'Source/WebCore/platform')
-rw-r--r--Source/WebCore/platform/graphics/android/GLWebViewState.cpp10
-rw-r--r--Source/WebCore/platform/graphics/android/TexturesGenerator.h2
-rw-r--r--Source/WebCore/platform/graphics/android/TilesManager.cpp2
3 files changed, 9 insertions, 5 deletions
diff --git a/Source/WebCore/platform/graphics/android/GLWebViewState.cpp b/Source/WebCore/platform/graphics/android/GLWebViewState.cpp
index e53a1e1..a1766d0 100644
--- a/Source/WebCore/platform/graphics/android/GLWebViewState.cpp
+++ b/Source/WebCore/platform/graphics/android/GLWebViewState.cpp
@@ -236,12 +236,16 @@ void GLWebViewState::inval(const IntRect& rect)
unsigned int GLWebViewState::paintBaseLayerContent(SkCanvas* canvas)
{
- android::Mutex::Autolock lock(m_baseLayerLock);
- if (m_paintingBaseLayer) {
+ m_baseLayerLock.lock();
+ BaseLayerAndroid* base = m_paintingBaseLayer;
+ SkSafeRef(base);
+ m_baseLayerLock.unlock();
+ if (base) {
m_globalButtonMutex->lock();
- m_paintingBaseLayer->drawCanvas(canvas);
+ base->drawCanvas(canvas);
m_globalButtonMutex->unlock();
}
+ SkSafeUnref(base);
return m_currentPictureCounter;
}
diff --git a/Source/WebCore/platform/graphics/android/TexturesGenerator.h b/Source/WebCore/platform/graphics/android/TexturesGenerator.h
index 19ab1af..2e3b6b4 100644
--- a/Source/WebCore/platform/graphics/android/TexturesGenerator.h
+++ b/Source/WebCore/platform/graphics/android/TexturesGenerator.h
@@ -42,7 +42,7 @@ class LayerAndroid;
class TexturesGenerator : public Thread {
public:
- TexturesGenerator() : Thread()
+ TexturesGenerator() : Thread(false)
, m_waitForCompletion(false)
, m_currentOperation(0) { }
virtual ~TexturesGenerator() { }
diff --git a/Source/WebCore/platform/graphics/android/TilesManager.cpp b/Source/WebCore/platform/graphics/android/TilesManager.cpp
index dd2b169..d36017f 100644
--- a/Source/WebCore/platform/graphics/android/TilesManager.cpp
+++ b/Source/WebCore/platform/graphics/android/TilesManager.cpp
@@ -107,7 +107,7 @@ TilesManager::TilesManager()
m_tilesTextures.reserveCapacity(MAX_TEXTURE_ALLOCATION);
m_availableTilesTextures.reserveCapacity(MAX_TEXTURE_ALLOCATION);
m_pixmapsGenerationThread = new TexturesGenerator();
- m_pixmapsGenerationThread->run("TexturesGenerator");
+ m_pixmapsGenerationThread->run("TexturesGenerator", android::PRIORITY_BACKGROUND);
}
void TilesManager::allocateTiles()