summaryrefslogtreecommitdiffstats
path: root/libpixelflinger
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-06 14:13:42 +0000
committerSteve Block <steveblock@google.com>2012-01-17 17:56:20 +0000
commit8aeb6e244a484305428ffbbc4be64d51e9bccdaa (patch)
treeee67d277e210b19fff6c6e9f548de07143934228 /libpixelflinger
parent4f07a1f826ddb3669c8da2b2a92983f01df43d54 (diff)
downloadsystem_core-8aeb6e244a484305428ffbbc4be64d51e9bccdaa.zip
system_core-8aeb6e244a484305428ffbbc4be64d51e9bccdaa.tar.gz
system_core-8aeb6e244a484305428ffbbc4be64d51e9bccdaa.tar.bz2
Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF)
Change-Id: I52fce957db06c281e2618daa4e2ecba19974f2eb
Diffstat (limited to 'libpixelflinger')
-rw-r--r--libpixelflinger/codeflinger/CodeCache.cpp2
-rw-r--r--libpixelflinger/codeflinger/GGLAssembler.cpp4
-rw-r--r--libpixelflinger/codeflinger/blending.cpp4
-rw-r--r--libpixelflinger/codeflinger/load_store.cpp2
-rw-r--r--libpixelflinger/codeflinger/texturing.cpp2
-rw-r--r--libpixelflinger/scanline.cpp4
6 files changed, 9 insertions, 9 deletions
diff --git a/libpixelflinger/codeflinger/CodeCache.cpp b/libpixelflinger/codeflinger/CodeCache.cpp
index 125c3ce..a713feb 100644
--- a/libpixelflinger/codeflinger/CodeCache.cpp
+++ b/libpixelflinger/codeflinger/CodeCache.cpp
@@ -159,7 +159,7 @@ int CodeCache::cache( const AssemblyKeyBase& keyBase,
const long base = long(assembly->base());
const long curr = base + long(assembly->size());
err = cacheflush(base, curr, 0);
- LOGE_IF(err, "__ARM_NR_cacheflush error %s\n",
+ ALOGE_IF(err, "__ARM_NR_cacheflush error %s\n",
strerror(errno));
#endif
}
diff --git a/libpixelflinger/codeflinger/GGLAssembler.cpp b/libpixelflinger/codeflinger/GGLAssembler.cpp
index 1cd189c..f1d81b2 100644
--- a/libpixelflinger/codeflinger/GGLAssembler.cpp
+++ b/libpixelflinger/codeflinger/GGLAssembler.cpp
@@ -82,7 +82,7 @@ int GGLAssembler::scanline(const needs_t& needs, context_t const* c)
needs.p, needs.n, needs.t[0], needs.t[1], per_fragment_ops);
if (err) {
- LOGE("Error while generating ""%s""\n", name);
+ ALOGE("Error while generating ""%s""\n", name);
disassemble(name);
return -1;
}
@@ -1095,7 +1095,7 @@ int RegisterAllocator::RegisterFile::obtain()
}
// this is not an error anymore because, we'll try again with
// a lower optimization level.
- //LOGE_IF(i >= nbreg, "pixelflinger ran out of registers\n");
+ //ALOGE_IF(i >= nbreg, "pixelflinger ran out of registers\n");
if (i >= nbreg) {
mStatus |= OUT_OF_REGISTERS;
// we return SP so we can more easily debug things
diff --git a/libpixelflinger/codeflinger/blending.cpp b/libpixelflinger/codeflinger/blending.cpp
index 083042c..c90eaa0 100644
--- a/libpixelflinger/codeflinger/blending.cpp
+++ b/libpixelflinger/codeflinger/blending.cpp
@@ -536,7 +536,7 @@ void GGLAssembler::mul_factor( component_t& d,
}
}
- LOGE_IF(ms>=32, "mul_factor overflow vs=%d, fs=%d", vs, fs);
+ ALOGE_IF(ms>=32, "mul_factor overflow vs=%d, fs=%d", vs, fs);
int vreg = v.reg;
int freg = f.reg;
@@ -574,7 +574,7 @@ void GGLAssembler::mul_factor_add( component_t& d,
int as = a.h;
int ms = vs+fs;
- LOGE_IF(ms>=32, "mul_factor_add overflow vs=%d, fs=%d, as=%d", vs, fs, as);
+ ALOGE_IF(ms>=32, "mul_factor_add overflow vs=%d, fs=%d, as=%d", vs, fs, as);
integer_t add(a.reg, a.h, a.flags);
diff --git a/libpixelflinger/codeflinger/load_store.cpp b/libpixelflinger/codeflinger/load_store.cpp
index ed20a00..62aa05c 100644
--- a/libpixelflinger/codeflinger/load_store.cpp
+++ b/libpixelflinger/codeflinger/load_store.cpp
@@ -257,7 +257,7 @@ void GGLAssembler::downshift(
int dbits = dh - dl;
int dithering = 0;
- LOGE_IF(sbits<dbits, "sbits (%d) < dbits (%d) in downshift", sbits, dbits);
+ ALOGE_IF(sbits<dbits, "sbits (%d) < dbits (%d) in downshift", sbits, dbits);
if (sbits>dbits) {
// see if we need to dither
diff --git a/libpixelflinger/codeflinger/texturing.cpp b/libpixelflinger/codeflinger/texturing.cpp
index 7f6f8da..8464fbd 100644
--- a/libpixelflinger/codeflinger/texturing.cpp
+++ b/libpixelflinger/codeflinger/texturing.cpp
@@ -778,7 +778,7 @@ void GGLAssembler::filter16(
break;
default:
// unsupported format, do something sensical...
- LOGE("Unsupported 16-bits texture format (%d)", tmu.format_idx);
+ ALOGE("Unsupported 16-bits texture format (%d)", tmu.format_idx);
LDRH(AL, texel.reg, txPtr.reg);
return;
}
diff --git a/libpixelflinger/scanline.cpp b/libpixelflinger/scanline.cpp
index 6c55379..93440f5 100644
--- a/libpixelflinger/scanline.cpp
+++ b/libpixelflinger/scanline.cpp
@@ -381,7 +381,7 @@ static void pick_scanline(context_t* c)
err = gCodeCache.cache(a->key(), a);
}
if (ggl_unlikely(err)) {
- LOGE("error generating or caching assembly. Reverting to NOP.");
+ ALOGE("error generating or caching assembly. Reverting to NOP.");
c->scanline = scanline_noop;
c->init_y = init_y_noop;
c->step_y = step_y__nop;
@@ -1761,7 +1761,7 @@ void init_y_error(context_t* c, int32_t y0)
// woooops, shoud never happen,
// fail gracefully (don't display anything)
init_y_noop(c, y0);
- LOGE("color-buffer has an invalid format!");
+ ALOGE("color-buffer has an invalid format!");
}
// ----------------------------------------------------------------------------