summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/android/TilesManager.cpp
diff options
context:
space:
mode:
authorNicolas Roard <nicolas@android.com>2010-10-20 15:13:17 -0700
committerNicolas Roard <nicolas@android.com>2010-10-20 15:15:19 -0700
commitea1650fbb572935ce0e4a65db3bd3bacf3238738 (patch)
tree7c88a03977e245f59e6ed2079ad617d3906d64b8 /WebCore/platform/graphics/android/TilesManager.cpp
parent70b68350b01ef7101e3dcdab2a3544a56b6e3b62 (diff)
downloadexternal_webkit-ea1650fbb572935ce0e4a65db3bd3bacf3238738.zip
external_webkit-ea1650fbb572935ce0e4a65db3bd3bacf3238738.tar.gz
external_webkit-ea1650fbb572935ce0e4a65db3bd3bacf3238738.tar.bz2
Fix tiles starvation bug + some debug logs
Bug:3112643 Change-Id: I9d5adf51dc95f44b859b107666d2c2731f37b12c
Diffstat (limited to 'WebCore/platform/graphics/android/TilesManager.cpp')
-rw-r--r--WebCore/platform/graphics/android/TilesManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/platform/graphics/android/TilesManager.cpp b/WebCore/platform/graphics/android/TilesManager.cpp
index feaccb8..b05c640 100644
--- a/WebCore/platform/graphics/android/TilesManager.cpp
+++ b/WebCore/platform/graphics/android/TilesManager.cpp
@@ -99,8 +99,8 @@ void TilesManager::printTextures()
x = o->x();
y = o->y();
}
- XLOG("[%d] texture %x (picture: %d) usedLevel: %d busy: %d owner: %x (%d, %d) page: %x scale: %.2f",
- i, texture, texture->pictureUsed(), texture->usedLevel(),
+ XLOG("[%d] texture %x usedLevel: %d busy: %d owner: %x (%d, %d) page: %x scale: %.2f",
+ i, texture, texture->usedLevel(),
texture->busy(), o, x, y, o ? o->page() : 0, o ? o->scale() : 0);
}
XLOG("------");