From 7a454ba5fee0bbb9f2e1292f8eede655516c0f2c Mon Sep 17 00:00:00 2001 From: Tim Murray Date: Tue, 10 Sep 2013 13:46:49 -0700 Subject: [PATCH] Fix FontRenderer bug. bug 10691313 Change-Id: Icd5341a3c2066e337911f040ddc935c48c8d7cd1 --- libs/hwui/FontRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/hwui/FontRenderer.cpp b/libs/hwui/FontRenderer.cpp index e8456afa310a7..7e99a5fd44d29 100644 --- a/libs/hwui/FontRenderer.cpp +++ b/libs/hwui/FontRenderer.cpp @@ -732,7 +732,7 @@ void FontRenderer::blurImage(uint8_t** image, int32_t width, int32_t height, int if (mRs == 0) { mRs = new RSC::RS(); - if (!mRs->init(RSC::RS_INIT_LOW_LATENCY & RSC::RS_INIT_SYNCHRONOUS)) { + if (!mRs->init(RSC::RS_INIT_LOW_LATENCY | RSC::RS_INIT_SYNCHRONOUS)) { ALOGE("blur RS failed to init"); }