summaryrefslogtreecommitdiffstats
path: root/modules/gralloc
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-05 23:27:52 +0000
committerSteve Block <steveblock@google.com>2012-01-05 23:27:52 +0000
commit22d351317af55274b7020c58b83660f4bfcef66b (patch)
tree5a7d61452c939e151dad3d960f668db37bf54b88 /modules/gralloc
parentb224b78c143241ab5d120af27fc110d1dc3f32a2 (diff)
downloadhardware_libhardware-22d351317af55274b7020c58b83660f4bfcef66b.zip
hardware_libhardware-22d351317af55274b7020c58b83660f4bfcef66b.tar.gz
hardware_libhardware-22d351317af55274b7020c58b83660f4bfcef66b.tar.bz2
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/157065 Bug: 5449033 Change-Id: I135fadaf10e95af1eb918889a22980c194c650ca
Diffstat (limited to 'modules/gralloc')
-rw-r--r--modules/gralloc/framebuffer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gralloc/framebuffer.cpp b/modules/gralloc/framebuffer.cpp
index 92c8caf..cf18ed2 100644
--- a/modules/gralloc/framebuffer.cpp
+++ b/modules/gralloc/framebuffer.cpp
@@ -181,14 +181,14 @@ int mapFrameBufferLocked(struct private_module_t* module)
if (ioctl(fd, FBIOPUT_VSCREENINFO, &info) == -1) {
info.yres_virtual = info.yres;
flags &= ~PAGE_FLIP;
- LOGW("FBIOPUT_VSCREENINFO failed, page flipping not supported");
+ ALOGW("FBIOPUT_VSCREENINFO failed, page flipping not supported");
}
if (info.yres_virtual < info.yres * 2) {
// we need at least 2 for page-flipping
info.yres_virtual = info.yres;
flags &= ~PAGE_FLIP;
- LOGW("page flipping not supported (yres_virtual=%d, requested=%d)",
+ ALOGW("page flipping not supported (yres_virtual=%d, requested=%d)",
info.yres_virtual, info.yres*2);
}