summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/rendering/Surface.cpp
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2012-06-14 09:59:53 -0700
committerJohn Reck <jreck@google.com>2012-06-14 13:13:24 -0700
commitcc6ffa0710f304fbcaa43953b0dc89e1d9b931a2 (patch)
treeb10a20ff67277955a2527c8775f608d983cc31c1 /Source/WebCore/platform/graphics/android/rendering/Surface.cpp
parent236f8ddfbd94fc6e0e49c13495c8fe82d3218bc8 (diff)
downloadexternal_webkit-cc6ffa0710f304fbcaa43953b0dc89e1d9b931a2.zip
external_webkit-cc6ffa0710f304fbcaa43953b0dc89e1d9b931a2.tar.gz
external_webkit-cc6ffa0710f304fbcaa43953b0dc89e1d9b931a2.tar.bz2
Show layer tree in hierarchyviewer
Change-Id: I2a53b157d40c630e7ca1361f8e0c8aca1d6e8a4e
Diffstat (limited to 'Source/WebCore/platform/graphics/android/rendering/Surface.cpp')
-rw-r--r--Source/WebCore/platform/graphics/android/rendering/Surface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/platform/graphics/android/rendering/Surface.cpp b/Source/WebCore/platform/graphics/android/rendering/Surface.cpp
index 1898910..96a4a16 100644
--- a/Source/WebCore/platform/graphics/android/rendering/Surface.cpp
+++ b/Source/WebCore/platform/graphics/android/rendering/Surface.cpp
@@ -218,7 +218,7 @@ void Surface::prepareGL(bool layerTilesDisabled, bool updateWithBlit)
ALOGV("prepareGL on Surf %p with SurfBack %p, %d layers, first layer %s (%d) "
"prepareArea(%d, %d - %d x %d) fullArea(%d, %d - %d x %d)",
this, m_surfaceBacking, m_layers.size(),
- getFirstLayer()->subclassName().ascii().data(),
+ getFirstLayer()->subclassName(),
getFirstLayer()->uniqueId(),
prepareArea.x(), prepareArea.y(), prepareArea.width(), prepareArea.height(),
fullArea.x(), fullArea.y(), fullArea.width(), fullArea.height());
@@ -253,7 +253,7 @@ bool Surface::drawGL(bool layerTilesDisabled)
bool askRedraw = false;
if (m_surfaceBacking && !tilesDisabled) {
ALOGV("drawGL on Surf %p with SurfBack %p, first layer %s (%d)", this, m_surfaceBacking,
- getFirstLayer()->subclassName().ascii().data(), getFirstLayer()->uniqueId());
+ getFirstLayer()->subclassName(), getFirstLayer()->uniqueId());
bool force3dContentVisible = true;
IntRect drawArea = visibleContentArea(force3dContentVisible);