Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Side by Side Diff: include/effects/SkTestImageFilters.h

Issue 1316123003: Style Change: SkNEW->new; SkDELETE->delete (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-26 (Wednesday) 15:59:00 EDT Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/effects/SkTableMaskFilter.h ('k') | include/effects/SkXfermodeImageFilter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 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 #ifndef _SkTestImageFilters_h 8 #ifndef _SkTestImageFilters_h
9 #define _SkTestImageFilters_h 9 #define _SkTestImageFilters_h
10 10
11 #include "SkImageFilter.h" 11 #include "SkImageFilter.h"
12 #include "SkPoint.h" 12 #include "SkPoint.h"
13 13
14 // Fun mode that scales down (only) and then scales back up to look pixelated 14 // Fun mode that scales down (only) and then scales back up to look pixelated
15 class SK_API SkDownSampleImageFilter : public SkImageFilter { 15 class SK_API SkDownSampleImageFilter : public SkImageFilter {
16 public: 16 public:
17 static SkDownSampleImageFilter* Create(SkScalar scale, SkImageFilter* input = NULL) { 17 static SkDownSampleImageFilter* Create(SkScalar scale, SkImageFilter* input = NULL) {
18 if (!SkScalarIsFinite(scale)) { 18 if (!SkScalarIsFinite(scale)) {
19 return NULL; 19 return NULL;
20 } 20 }
21 // we don't support scale in this range 21 // we don't support scale in this range
22 if (scale > SK_Scalar1 || scale <= 0) { 22 if (scale > SK_Scalar1 || scale <= 0) {
23 return NULL; 23 return NULL;
24 } 24 }
25 return SkNEW_ARGS(SkDownSampleImageFilter, (scale, input)); 25 return new SkDownSampleImageFilter(scale, input);
26 } 26 }
27 27
28 SK_TO_STRING_OVERRIDE() 28 SK_TO_STRING_OVERRIDE()
29 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDownSampleImageFilter) 29 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDownSampleImageFilter)
30 30
31 protected: 31 protected:
32 SkDownSampleImageFilter(SkScalar scale, SkImageFilter* input) 32 SkDownSampleImageFilter(SkScalar scale, SkImageFilter* input)
33 : INHERITED(1, &input), fScale(scale) {} 33 : INHERITED(1, &input), fScale(scale) {}
34 void flatten(SkWriteBuffer&) const override; 34 void flatten(SkWriteBuffer&) const override;
35 35
36 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, 36 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
37 SkBitmap* result, SkIPoint* loc) const override; 37 SkBitmap* result, SkIPoint* loc) const override;
38 38
39 private: 39 private:
40 SkScalar fScale; 40 SkScalar fScale;
41 41
42 typedef SkImageFilter INHERITED; 42 typedef SkImageFilter INHERITED;
43 }; 43 };
44 44
45 #endif 45 #endif
OLDNEW
« no previous file with comments | « include/effects/SkTableMaskFilter.h ('k') | include/effects/SkXfermodeImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698