diff options
Diffstat (limited to 'libpixelflinger')
-rw-r--r-- | libpixelflinger/codeflinger/ARMAssembler.cpp | 2 | ||||
-rw-r--r-- | libpixelflinger/scanline.cpp | 4 | ||||
-rw-r--r-- | libpixelflinger/trap.cpp | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/libpixelflinger/codeflinger/ARMAssembler.cpp b/libpixelflinger/codeflinger/ARMAssembler.cpp index 4726a08..0dc5037 100644 --- a/libpixelflinger/codeflinger/ARMAssembler.cpp +++ b/libpixelflinger/codeflinger/ARMAssembler.cpp @@ -177,7 +177,7 @@ int ARMAssembler::generate(const char* name) // the instruction cache is flushed by CodeCache const int64_t duration = ggl_system_time() - mDuration; const char * const format = "generated %s (%d ins) at [%p:%p] in %lld ns\n"; - LOGI(format, name, int(pc()-base()), base(), pc(), duration); + ALOGI(format, name, int(pc()-base()), base(), pc(), duration); #if defined(WITH_LIB_HARDWARE) if (__builtin_expect(mQemuTracing, 0)) { diff --git a/libpixelflinger/scanline.cpp b/libpixelflinger/scanline.cpp index a37b47e..043a37c 100644 --- a/libpixelflinger/scanline.cpp +++ b/libpixelflinger/scanline.cpp @@ -351,7 +351,7 @@ static void pick_scanline(context_t* c) } #if DEBUG_NEEDS - LOGI("Needs: n=0x%08x p=0x%08x t0=0x%08x t1=0x%08x", + ALOGI("Needs: n=0x%08x p=0x%08x t0=0x%08x t1=0x%08x", c->state.needs.n, c->state.needs.p, c->state.needs.t[0], c->state.needs.t[1]); #endif @@ -395,7 +395,7 @@ static void pick_scanline(context_t* c) c->scanline_as->decStrong(c); } - //LOGI("using generated pixel-pipeline"); + //ALOGI("using generated pixel-pipeline"); c->scanline_as = assembly.get(); c->scanline_as->incStrong(c); // hold on to assembly c->scanline = (void(*)(context_t* c))assembly->base(); diff --git a/libpixelflinger/trap.cpp b/libpixelflinger/trap.cpp index 853117c..80efeff 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 ); } |