| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 The Android Open Source Project | 2 * Copyright 2012 The Android Open Source Project |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkMatrixConvolutionImageFilter.h" | 8 #include "SkMatrixConvolutionImageFilter.h" |
| 9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
| 10 #include "SkColorPriv.h" | 10 #include "SkColorPriv.h" |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 SkIPoint srcOffset = SkIPoint::Make(0, 0); | 258 SkIPoint srcOffset = SkIPoint::Make(0, 0); |
| 259 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcO
ffset)) { | 259 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcO
ffset)) { |
| 260 return false; | 260 return false; |
| 261 } | 261 } |
| 262 | 262 |
| 263 if (src.colorType() != kPMColor_SkColorType) { | 263 if (src.colorType() != kPMColor_SkColorType) { |
| 264 return false; | 264 return false; |
| 265 } | 265 } |
| 266 | 266 |
| 267 SkIRect bounds; | 267 SkIRect bounds; |
| 268 src.getBounds(&bounds); | 268 if (!this->applyCropRect(ctx, proxy, src, &srcOffset, &bounds, &src)) { |
| 269 bounds.offset(srcOffset); | |
| 270 if (!this->applyCropRect(&bounds, ctx.ctm())) { | |
| 271 return false; | 269 return false; |
| 272 } | 270 } |
| 273 | 271 |
| 274 if (!fConvolveAlpha && !src.isOpaque()) { | 272 if (!fConvolveAlpha && !src.isOpaque()) { |
| 275 src = unpremultiplyBitmap(src); | 273 src = unpremultiplyBitmap(src); |
| 276 } | 274 } |
| 277 | 275 |
| 278 SkAutoLockPixels alp(src); | 276 SkAutoLockPixels alp(src); |
| 279 if (!src.getPixels()) { | 277 if (!src.getPixels()) { |
| 280 return false; | 278 return false; |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 fBias, | 662 fBias, |
| 665 fKernelOffset, | 663 fKernelOffset, |
| 666 fTileMode, | 664 fTileMode, |
| 667 fConvolveAlpha); | 665 fConvolveAlpha); |
| 668 return true; | 666 return true; |
| 669 } | 667 } |
| 670 | 668 |
| 671 /////////////////////////////////////////////////////////////////////////////// | 669 /////////////////////////////////////////////////////////////////////////////// |
| 672 | 670 |
| 673 #endif | 671 #endif |
| OLD | NEW |