diff options
author | Steve Block <steveblock@google.com> | 2012-01-06 14:13:42 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2012-01-08 11:03:26 +0000 |
commit | 01dda204cd28fe181691b4a44a51be7e5666d0c8 (patch) | |
tree | 99ef6d14b55ebf4e2752cd182052caad6eddc20a /libpixelflinger/codeflinger/blending.cpp | |
parent | 36afde3387fff9eac0e6d54854b8d43fe1ebb0cc (diff) | |
download | system_core-01dda204cd28fe181691b4a44a51be7e5666d0c8.zip system_core-01dda204cd28fe181691b4a44a51be7e5666d0c8.tar.gz system_core-01dda204cd28fe181691b4a44a51be7e5666d0c8.tar.bz2 |
Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE
Bug: 5449033
Change-Id: Ibcffdcf620ebae1c389446ce8e9d908f11ac039c
Diffstat (limited to 'libpixelflinger/codeflinger/blending.cpp')
-rw-r--r-- | libpixelflinger/codeflinger/blending.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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); |