diff options
author | 2015-08-14 22:02:19 +0000 | |
---|---|---|
committer | 2015-08-14 22:02:19 +0000 | |
commit | e3f0a881c20072a644317330ecf7409c81e96888 (patch) | |
tree | f8bb8057903a065947d053d519d9abfa76cfd362 /libs/hwui/FontRenderer.cpp | |
parent | 4a2a890b32a1e8c3ffeea82b3c12f707b5a9b8f4 (diff) | |
parent | 8d9b5fbdf0a005941b7f0019102cc7b94a41a2d6 (diff) |
Merge "Make the value for shadowRadius less than 1.0 work"
Diffstat (limited to 'libs/hwui/FontRenderer.cpp')
-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 c1b50c108c2f..bc75daba44c0 100644 --- a/libs/hwui/FontRenderer.cpp +++ b/libs/hwui/FontRenderer.cpp @@ -773,7 +773,7 @@ void FontRenderer::blurImage(uint8_t** image, int32_t width, int32_t height, flo #endif float *gaussian = new float[2 * intRadius + 1]; - Blur::generateGaussianWeights(gaussian, intRadius); + Blur::generateGaussianWeights(gaussian, radius); uint8_t* scratch = new uint8_t[width * height]; Blur::horizontal(gaussian, intRadius, *image, scratch, width, height); |