From 7a454ba5fee0bbb9f2e1292f8eede655516c0f2c Mon Sep 17 00:00:00 2001 From: Tim Murray Date: Tue, 10 Sep 2013 13:46:49 -0700 Subject: Fix FontRenderer bug. bug 10691313 Change-Id: Icd5341a3c2066e337911f040ddc935c48c8d7cd1 --- libs/hwui/FontRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/hwui/FontRenderer.cpp') diff --git a/libs/hwui/FontRenderer.cpp b/libs/hwui/FontRenderer.cpp index e8456afa310a..7e99a5fd44d2 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"); } -- cgit v1.2.3-59-g8ed1b