diff options
| author | Teng-Hui Zhu <ztenghui@google.com> | 2011-06-21 15:37:20 -0700 |
|---|---|---|
| committer | Teng-Hui Zhu <ztenghui@google.com> | 2011-06-21 15:54:11 -0700 |
| commit | d311450d853b38d1c3c3bcd2cf0955080c059f30 (patch) | |
| tree | c610bfee5c55b16f48ba0e28909caa7366cad4d2 /Source/WebCore/platform/graphics | |
| parent | 5c1199e7a7ad05f8f26e595ddb355dabe7f93e88 (diff) | |
| download | external_webkit-d311450d853b38d1c3c3bcd2cf0955080c059f30.zip external_webkit-d311450d853b38d1c3c3bcd2cf0955080c059f30.tar.gz external_webkit-d311450d853b38d1c3c3bcd2cf0955080c059f30.tar.bz2 | |
Fix compiler error when DEBUG is turned on
Change-Id: I1a9d8eab3e5259eade94fc9e825ec4d162a1e392
Diffstat (limited to 'Source/WebCore/platform/graphics')
| -rw-r--r-- | Source/WebCore/platform/graphics/android/BaseTile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/platform/graphics/android/BaseTile.cpp b/Source/WebCore/platform/graphics/android/BaseTile.cpp index 35ebf13..bbf1532 100644 --- a/Source/WebCore/platform/graphics/android/BaseTile.cpp +++ b/Source/WebCore/platform/graphics/android/BaseTile.cpp @@ -236,7 +236,7 @@ void BaseTile::draw(float transparency, SkRect& rect, float scale) } if (m_texture->readyFor(this)) { - XLOG("draw tile %d, %d, %.2f with texture %x", x(), y(), scale(), m_texture); + XLOG("draw tile %d, %d, %.2f with texture %x", x(), y(), scale, m_texture); TilesManager::instance()->shader()->drawQuad(rect, textureInfo->m_textureId, transparency); } |
