OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 The Android Open Source Project | 2 * Copyright 2011 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 "SkBlurImageFilter.h" | 8 #include "SkBlurImageFilter.h" |
9 | 9 |
10 #include "SkAutoPixmapStorage.h" | 10 #include "SkAutoPixmapStorage.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 SkScalar sigmaY, | 39 SkScalar sigmaY, |
40 SkImageFilter* input, | 40 SkImageFilter* input, |
41 const CropRect* cropRect) | 41 const CropRect* cropRect) |
42 : INHERITED(1, &input, cropRect), fSigma(SkSize::Make(sigmaX, sigmaY)) { | 42 : INHERITED(1, &input, cropRect), fSigma(SkSize::Make(sigmaX, sigmaY)) { |
43 } | 43 } |
44 | 44 |
45 SkFlattenable* SkBlurImageFilter::CreateProc(SkReadBuffer& buffer) { | 45 SkFlattenable* SkBlurImageFilter::CreateProc(SkReadBuffer& buffer) { |
46 SK_IMAGEFILTER_UNFLATTEN_COMMON(common, 1); | 46 SK_IMAGEFILTER_UNFLATTEN_COMMON(common, 1); |
47 SkScalar sigmaX = buffer.readScalar(); | 47 SkScalar sigmaX = buffer.readScalar(); |
48 SkScalar sigmaY = buffer.readScalar(); | 48 SkScalar sigmaY = buffer.readScalar(); |
49 return Create(sigmaX, sigmaY, common.getInput(0), &common.cropRect()); | 49 return Create(sigmaX, sigmaY, common.getInput(0).get(), &common.cropRect()); |
50 } | 50 } |
51 | 51 |
52 void SkBlurImageFilter::flatten(SkWriteBuffer& buffer) const { | 52 void SkBlurImageFilter::flatten(SkWriteBuffer& buffer) const { |
53 this->INHERITED::flatten(buffer); | 53 this->INHERITED::flatten(buffer); |
54 buffer.writeScalar(fSigma.fWidth); | 54 buffer.writeScalar(fSigma.fWidth); |
55 buffer.writeScalar(fSigma.fHeight); | 55 buffer.writeScalar(fSigma.fHeight); |
56 } | 56 } |
57 | 57 |
58 static void get_box3_params(SkScalar s, int *kernelSize, int* kernelSize3, int *
lowOffset, | 58 static void get_box3_params(SkScalar s, int *kernelSize, int* kernelSize3, int *
lowOffset, |
59 int *highOffset) { | 59 int *highOffset) { |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 str->appendf("SkBlurImageFilter: ("); | 238 str->appendf("SkBlurImageFilter: ("); |
239 str->appendf("sigma: (%f, %f) input (", fSigma.fWidth, fSigma.fHeight); | 239 str->appendf("sigma: (%f, %f) input (", fSigma.fWidth, fSigma.fHeight); |
240 | 240 |
241 if (this->getInput(0)) { | 241 if (this->getInput(0)) { |
242 this->getInput(0)->toString(str); | 242 this->getInput(0)->toString(str); |
243 } | 243 } |
244 | 244 |
245 str->append("))"); | 245 str->append("))"); |
246 } | 246 } |
247 #endif | 247 #endif |
OLD | NEW |