diff options
| author | 2012-01-04 10:13:13 -0800 | |
|---|---|---|
| committer | 2012-01-04 10:13:13 -0800 | |
| commit | 41891aeaf4e6e4006ae3087fa537786e9ec8caa4 (patch) | |
| tree | 919fcb8f1583cb4357f16468b1fc6eaf1a5b0144 /libs/hwui/TextureCache.cpp | |
| parent | 7c48707a9d320230452d5937239f28ab0ea2e695 (diff) | |
| parent | 5baa3a62a97544669fba6d65a11c07f252e654dd (diff) | |
Merge "Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE"
Diffstat (limited to 'libs/hwui/TextureCache.cpp')
| -rw-r--r-- | libs/hwui/TextureCache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/TextureCache.cpp b/libs/hwui/TextureCache.cpp index 60f4ca19d9b4..237911bebcfa 100644 --- a/libs/hwui/TextureCache.cpp +++ b/libs/hwui/TextureCache.cpp @@ -109,7 +109,7 @@ void TextureCache::operator()(SkBitmap*& bitmap, Texture*& texture) { TEXTURE_LOGD("TextureCache::callback: name, removed size, mSize = %d, %d, %d", texture->id, texture->bitmapSize, mSize); if (mDebugEnabled) { - LOGD("Texture deleted, size = %d", texture->bitmapSize); + ALOGD("Texture deleted, size = %d", texture->bitmapSize); } glDeleteTextures(1, &texture->id); delete texture; @@ -147,7 +147,7 @@ Texture* TextureCache::get(SkBitmap* bitmap) { TEXTURE_LOGD("TextureCache::get: create texture(%p): name, size, mSize = %d, %d, %d", bitmap, texture->id, size, mSize); if (mDebugEnabled) { - LOGD("Texture created, size = %d", size); + ALOGD("Texture created, size = %d", size); } mCache.put(bitmap, texture); } else { |