aboutsummaryrefslogtreecommitdiffstats
path: root/libpixelflinger/trap.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-04 19:19:03 +0000
committerSteve Block <steveblock@google.com>2012-01-04 19:23:34 +0000
commitfe71a61e5b0cb666675900d206251a7c18ed944b (patch)
treee76dbede05c1e6b92ea4e05878745c6d21ed9d4b /libpixelflinger/trap.cpp
parent8d66c49258ac4f59bd67c23c9c914cca81f85b01 (diff)
downloadsystem_core-fe71a61e5b0cb666675900d206251a7c18ed944b.tar.gz
system_core-fe71a61e5b0cb666675900d206251a7c18ed944b.tar.bz2
system_core-fe71a61e5b0cb666675900d206251a7c18ed944b.zip
Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF) DO NOT MERGE
Bug: 5449033 Change-Id: I4951baa981f09a84ce483e3d1bd0f9ebe009035f
Diffstat (limited to 'libpixelflinger/trap.cpp')
-rw-r--r--libpixelflinger/trap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpixelflinger/trap.cpp b/libpixelflinger/trap.cpp
index 853117ce..80efeff7 100644
--- a/libpixelflinger/trap.cpp
+++ b/libpixelflinger/trap.cpp
@@ -639,7 +639,7 @@ struct Edge
static void
edge_dump( Edge* edge )
{
- LOGI( " top=%d (%.3f) bot=%d (%.3f) x=%d (%.3f) ix=%d (%.3f)",
+ ALOGI( " top=%d (%.3f) bot=%d (%.3f) x=%d (%.3f) ix=%d (%.3f)",
edge->y_top, edge->y_top/float(TRI_ONE),
edge->y_bot, edge->y_bot/float(TRI_ONE),
edge->x, edge->x/float(FIXED_ONE),
@@ -650,7 +650,7 @@ static void
triangle_dump_edges( Edge* edges,
int count )
{
- LOGI( "%d edge%s:\n", count, count == 1 ? "" : "s" );
+ ALOGI( "%d edge%s:\n", count, count == 1 ? "" : "s" );
for ( ; count > 0; count--, edges++ )
edge_dump( edges );
}