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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 void SkDropShadowImageFilter::flatten(SkWriteBuffer& buffer) const { | 46 void SkDropShadowImageFilter::flatten(SkWriteBuffer& buffer) const { |
47 this->INHERITED::flatten(buffer); | 47 this->INHERITED::flatten(buffer); |
48 buffer.writeScalar(fDx); | 48 buffer.writeScalar(fDx); |
49 buffer.writeScalar(fDy); | 49 buffer.writeScalar(fDy); |
50 buffer.writeScalar(fSigmaX); | 50 buffer.writeScalar(fSigmaX); |
51 buffer.writeScalar(fSigmaY); | 51 buffer.writeScalar(fSigmaY); |
52 buffer.writeColor(fColor); | 52 buffer.writeColor(fColor); |
53 buffer.writeInt(static_cast<int>(fShadowMode)); | 53 buffer.writeInt(static_cast<int>(fShadowMode)); |
54 } | 54 } |
55 | 55 |
56 bool SkDropShadowImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& source
, | 56 bool SkDropShadowImageFilter::onFilterImageDeprecated(Proxy* proxy, const SkBitm
ap& source, |
57 const Context& ctx, | 57 const Context& ctx, |
58 SkBitmap* result, SkIPoint* offset)
const | 58 SkBitmap* result, SkIPoint
* offset) const { |
59 { | |
60 SkBitmap src = source; | 59 SkBitmap src = source; |
61 SkIPoint srcOffset = SkIPoint::Make(0, 0); | 60 SkIPoint srcOffset = SkIPoint::Make(0, 0); |
62 if (!this->filterInput(0, proxy, source, ctx, &src, &srcOffset)) | 61 if (!this->filterInputDeprecated(0, proxy, source, ctx, &src, &srcOffset)) |
63 return false; | 62 return false; |
64 | 63 |
65 SkIRect srcBounds = src.bounds(); | 64 SkIRect srcBounds = src.bounds(); |
66 srcBounds.offset(srcOffset); | 65 srcBounds.offset(srcOffset); |
67 SkIRect bounds; | 66 SkIRect bounds; |
68 if (!this->applyCropRect(ctx, srcBounds, &bounds)) { | 67 if (!this->applyCropRect(ctx, srcBounds, &bounds)) { |
69 return false; | 68 return false; |
70 } | 69 } |
71 | 70 |
72 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds
.height())); | 71 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds
.height())); |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 "kDrawShadowAndForeground", "kDrawShadowOnly" | 152 "kDrawShadowAndForeground", "kDrawShadowOnly" |
154 }; | 153 }; |
155 | 154 |
156 static_assert(kShadowModeCount == SK_ARRAY_COUNT(gModeStrings), "enum_mismat
ch"); | 155 static_assert(kShadowModeCount == SK_ARRAY_COUNT(gModeStrings), "enum_mismat
ch"); |
157 | 156 |
158 str->appendf(" mode: %s", gModeStrings[fShadowMode]); | 157 str->appendf(" mode: %s", gModeStrings[fShadowMode]); |
159 | 158 |
160 str->append(")"); | 159 str->append(")"); |
161 } | 160 } |
162 #endif | 161 #endif |
OLD | NEW |