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

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

Issue 376953003: Clean up SkImageFilter constructors. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fixed 100-col issues Created 6 years, 5 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/SkTestImageFilters.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 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 #ifndef SkTileImageFilter_DEFINED 8 #ifndef SkTileImageFilter_DEFINED
9 #define SkTileImageFilter_DEFINED 9 #define SkTileImageFilter_DEFINED
10 10
(...skipping 15 matching lines...) Expand all
26 26
27 virtual bool onFilterImage(Proxy* proxy, const SkBitmap& src, const Context& ctx, 27 virtual bool onFilterImage(Proxy* proxy, const SkBitmap& src, const Context& ctx,
28 SkBitmap* dst, SkIPoint* offset) const SK_OVERRID E; 28 SkBitmap* dst, SkIPoint* offset) const SK_OVERRID E;
29 virtual bool onFilterBounds(const SkIRect& src, const SkMatrix&, 29 virtual bool onFilterBounds(const SkIRect& src, const SkMatrix&,
30 SkIRect* dst) const SK_OVERRIDE; 30 SkIRect* dst) const SK_OVERRIDE;
31 31
32 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTileImageFilter) 32 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTileImageFilter)
33 33
34 protected: 34 protected:
35 SkTileImageFilter(const SkRect& srcRect, const SkRect& dstRect, SkImageFilte r* input) 35 SkTileImageFilter(const SkRect& srcRect, const SkRect& dstRect, SkImageFilte r* input)
36 : INHERITED(input), fSrcRect(srcRect), fDstRect(dstRect) {} 36 : INHERITED(1, &input), fSrcRect(srcRect), fDstRect(dstRect) {}
37 explicit SkTileImageFilter(SkReadBuffer& buffer); 37 explicit SkTileImageFilter(SkReadBuffer& buffer);
38 38
39 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; 39 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
40 40
41 private: 41 private:
42 SkRect fSrcRect; 42 SkRect fSrcRect;
43 SkRect fDstRect; 43 SkRect fDstRect;
44 }; 44 };
45 45
46 #endif 46 #endif
OLDNEW
« no previous file with comments | « include/effects/SkTestImageFilters.h ('k') | include/effects/SkXfermodeImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698