Chromium Code Reviews| Index: src/effects/SkMatrixConvolutionImageFilter.cpp |
| diff --git a/src/effects/SkMatrixConvolutionImageFilter.cpp b/src/effects/SkMatrixConvolutionImageFilter.cpp |
| index f6bc6a1f1f47c30db1a0093cfc40ce4d829e20bf..292171b3738ee06722b460b8ceb8a8de64f2ad26 100644 |
| --- a/src/effects/SkMatrixConvolutionImageFilter.cpp |
| +++ b/src/effects/SkMatrixConvolutionImageFilter.cpp |
| @@ -238,9 +238,7 @@ static SkBitmap unpremultiplyBitmap(const SkBitmap& src) |
| return SkBitmap(); |
| } |
| SkBitmap result; |
|
robertphillips
2014/06/02 13:15:59
ditto
reed1
2014/06/02 19:43:06
Done.
|
| - result.setConfig(src.config(), src.width(), src.height()); |
| - result.allocPixels(); |
| - if (!result.getPixels()) { |
| + if (!result.allocPixels(src.info().makeWH(src.width(), src.height()))) { |
| return SkBitmap(); |
| } |
| for (int y = 0; y < src.height(); ++y) { |