diff options
author | Tim Murray <timmurray@google.com> | 2013-09-10 13:46:49 -0700 |
---|---|---|
committer | Tim Murray <timmurray@google.com> | 2013-09-10 13:46:49 -0700 |
commit | 7a454ba5fee0bbb9f2e1292f8eede655516c0f2c (patch) | |
tree | 00db8bbd8200c42aeee02e3285bef0fbb3b040e9 /libs/hwui | |
parent | 9578e642403c0fa4fdcb32828f27c2417cabe88d (diff) | |
download | frameworks_base-7a454ba5fee0bbb9f2e1292f8eede655516c0f2c.zip frameworks_base-7a454ba5fee0bbb9f2e1292f8eede655516c0f2c.tar.gz frameworks_base-7a454ba5fee0bbb9f2e1292f8eede655516c0f2c.tar.bz2 |
Fix FontRenderer bug.
bug 10691313
Change-Id: Icd5341a3c2066e337911f040ddc935c48c8d7cd1
Diffstat (limited to 'libs/hwui')
-rw-r--r-- | libs/hwui/FontRenderer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/FontRenderer.cpp b/libs/hwui/FontRenderer.cpp index e8456af..7e99a5f 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"); } |