summaryrefslogtreecommitdiffstats
path: root/Source/WebCore
diff options
context:
space:
mode:
authorJesse Hall <jessehall@google.com>2012-03-29 12:09:53 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-03-29 12:09:53 -0700
commit6c77872612057962cfb09850a0d4f20436172ef7 (patch)
tree5874c7c8cea5a6a59473c55cd0378d9bf66b00e6 /Source/WebCore
parent855681a612bccb5ec445fd55d5f40e55c8c0852b (diff)
parent03eb739a2acccb243076c064d6a0ce5e196a11f6 (diff)
downloadexternal_webkit-6c77872612057962cfb09850a0d4f20436172ef7.zip
external_webkit-6c77872612057962cfb09850a0d4f20436172ef7.tar.gz
external_webkit-6c77872612057962cfb09850a0d4f20436172ef7.tar.bz2
am 03eb739a: Prefer CpuUpload path on the emulator (DO NOT MERGE)
* commit '03eb739a2acccb243076c064d6a0ce5e196a11f6': Prefer CpuUpload path on the emulator (DO NOT MERGE)
Diffstat (limited to 'Source/WebCore')
-rw-r--r--Source/WebCore/platform/graphics/android/TransferQueue.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/WebCore/platform/graphics/android/TransferQueue.cpp b/Source/WebCore/platform/graphics/android/TransferQueue.cpp
index b20ec7a..73cc570 100644
--- a/Source/WebCore/platform/graphics/android/TransferQueue.cpp
+++ b/Source/WebCore/platform/graphics/android/TransferQueue.cpp
@@ -35,6 +35,7 @@
#include <gui/SurfaceTextureClient.h>
#include <cutils/log.h>
+#include <cutils/properties.h>
#include <wtf/text/CString.h>
#define XLOGC(...) android_printLog(ANDROID_LOG_DEBUG, "TransferQueue", __VA_ARGS__)
@@ -73,6 +74,14 @@ TransferQueue::TransferQueue()
m_emptyItemCount = ST_BUFFER_NUMBER;
m_transferQueue = new TileTransferData[ST_BUFFER_NUMBER];
+
+ // Two bugs made the GPU upload path unreliable on the GPU-accelerated
+ // emulator. The bugs are being fixed in later branches, but the fixes are
+ // too risky for this branch. Default to the CpuUpload path for now.
+ char qemuProp[PROPERTY_VALUE_MAX + 1];
+ property_get("ro.kernel.qemu", qemuProp, "0");
+ if (atoi(qemuProp) == 1)
+ m_currentUploadType = CpuUpload;
}
TransferQueue::~TransferQueue()