| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 55 |
| 56 bool SkDropShadowImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& source
, | 56 bool SkDropShadowImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& source
, |
| 57 const Context& ctx, | 57 const Context& ctx, |
| 58 SkBitmap* result, SkIPoint* offset)
const | 58 SkBitmap* result, SkIPoint* offset)
const |
| 59 { | 59 { |
| 60 SkBitmap src = source; | 60 SkBitmap src = source; |
| 61 SkIPoint srcOffset = SkIPoint::Make(0, 0); | 61 SkIPoint srcOffset = SkIPoint::Make(0, 0); |
| 62 if (!this->filterInput(0, proxy, source, ctx, &src, &srcOffset)) | 62 if (!this->filterInput(0, proxy, source, ctx, &src, &srcOffset)) |
| 63 return false; | 63 return false; |
| 64 | 64 |
| 65 SkIRect srcBounds = src.bounds(); |
| 66 srcBounds.offset(srcOffset); |
| 65 SkIRect bounds; | 67 SkIRect bounds; |
| 66 if (!this->applyCropRect(ctx, src, srcOffset, &bounds)) { | 68 if (!this->applyCropRect(ctx, srcBounds, &bounds)) { |
| 67 return false; | 69 return false; |
| 68 } | 70 } |
| 69 | 71 |
| 70 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds
.height())); | 72 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds
.height())); |
| 71 if (nullptr == device.get()) { | 73 if (nullptr == device.get()) { |
| 72 return false; | 74 return false; |
| 73 } | 75 } |
| 74 SkCanvas canvas(device.get()); | 76 SkCanvas canvas(device.get()); |
| 75 | 77 |
| 76 SkVector sigma = SkVector::Make(fSigmaX, fSigmaY); | 78 SkVector sigma = SkVector::Make(fSigmaX, fSigmaY); |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "kDrawShadowAndForeground", "kDrawShadowOnly" | 153 "kDrawShadowAndForeground", "kDrawShadowOnly" |
| 152 }; | 154 }; |
| 153 | 155 |
| 154 static_assert(kShadowModeCount == SK_ARRAY_COUNT(gModeStrings), "enum_mismat
ch"); | 156 static_assert(kShadowModeCount == SK_ARRAY_COUNT(gModeStrings), "enum_mismat
ch"); |
| 155 | 157 |
| 156 str->appendf(" mode: %s", gModeStrings[fShadowMode]); | 158 str->appendf(" mode: %s", gModeStrings[fShadowMode]); |
| 157 | 159 |
| 158 str->append(")"); | 160 str->append(")"); |
| 159 } | 161 } |
| 160 #endif | 162 #endif |
| OLD | NEW |