| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
| 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 "SkDropShadowImageFilter.h" | 8 #include "SkDropShadowImageFilter.h" |
| 9 | 9 |
| 10 #include "SkBitmap.h" | 10 #include "SkBitmap.h" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 SkIPoint srcOffset = SkIPoint::Make(0, 0); | 61 SkIPoint srcOffset = SkIPoint::Make(0, 0); |
| 62 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcO
ffset)) | 62 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcO
ffset)) |
| 63 return false; | 63 return false; |
| 64 | 64 |
| 65 SkIRect bounds; | 65 SkIRect bounds; |
| 66 if (!this->applyCropRect(ctx, src, srcOffset, &bounds)) { | 66 if (!this->applyCropRect(ctx, src, srcOffset, &bounds)) { |
| 67 return false; | 67 return false; |
| 68 } | 68 } |
| 69 | 69 |
| 70 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds
.height())); | 70 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds
.height())); |
| 71 if (NULL == device.get()) { | 71 if (nullptr == device.get()) { |
| 72 return false; | 72 return false; |
| 73 } | 73 } |
| 74 SkCanvas canvas(device.get()); | 74 SkCanvas canvas(device.get()); |
| 75 | 75 |
| 76 SkVector sigma = SkVector::Make(fSigmaX, fSigmaY); | 76 SkVector sigma = SkVector::Make(fSigmaX, fSigmaY); |
| 77 ctx.ctm().mapVectors(&sigma, 1); | 77 ctx.ctm().mapVectors(&sigma, 1); |
| 78 sigma.fX = SkMaxScalar(0, sigma.fX); | 78 sigma.fX = SkMaxScalar(0, sigma.fX); |
| 79 sigma.fY = SkMaxScalar(0, sigma.fY); | 79 sigma.fY = SkMaxScalar(0, sigma.fY); |
| 80 SkAutoTUnref<SkImageFilter> blurFilter(SkBlurImageFilter::Create(sigma.fX, s
igma.fY)); | 80 SkAutoTUnref<SkImageFilter> blurFilter(SkBlurImageFilter::Create(sigma.fX, s
igma.fY)); |
| 81 SkAutoTUnref<SkColorFilter> colorFilter( | 81 SkAutoTUnref<SkColorFilter> colorFilter( |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 "kDrawShadowAndForeground", "kDrawShadowOnly" | 153 "kDrawShadowAndForeground", "kDrawShadowOnly" |
| 154 }; | 154 }; |
| 155 | 155 |
| 156 static_assert(kShadowModeCount == SK_ARRAY_COUNT(gModeStrings), "enum_mismat
ch"); | 156 static_assert(kShadowModeCount == SK_ARRAY_COUNT(gModeStrings), "enum_mismat
ch"); |
| 157 | 157 |
| 158 str->appendf(" mode: %s", gModeStrings[fShadowMode]); | 158 str->appendf(" mode: %s", gModeStrings[fShadowMode]); |
| 159 | 159 |
| 160 str->append(")"); | 160 str->append(")"); |
| 161 } | 161 } |
| 162 #endif | 162 #endif |
| OLD | NEW |