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

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

Issue 395603002: Simplify flattening to just write enough to call the factory (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The Android Open Source Project 2 * Copyright 2012 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 #ifndef SkOffsetImageFilter_DEFINED 8 #ifndef SkOffsetImageFilter_DEFINED
9 #define SkOffsetImageFilter_DEFINED 9 #define SkOffsetImageFilter_DEFINED
10 10
11 #include "SkImageFilter.h" 11 #include "SkImageFilter.h"
12 #include "SkPoint.h" 12 #include "SkPoint.h"
13 13
14 class SK_API SkOffsetImageFilter : public SkImageFilter { 14 class SK_API SkOffsetImageFilter : public SkImageFilter {
15 typedef SkImageFilter INHERITED; 15 typedef SkImageFilter INHERITED;
16 16
17 public: 17 public:
18 static SkOffsetImageFilter* Create(SkScalar dx, SkScalar dy, SkImageFilter* input = NULL, 18 static SkOffsetImageFilter* Create(SkScalar dx, SkScalar dy, SkImageFilter* input = NULL,
19 const CropRect* cropRect = NULL) { 19 const CropRect* cropRect = NULL) {
20 return SkNEW_ARGS(SkOffsetImageFilter, (dx, dy, input, cropRect)); 20 return SkNEW_ARGS(SkOffsetImageFilter, (dx, dy, input, cropRect));
21 } 21 }
22 virtual void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVER RIDE; 22 virtual void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVER RIDE;
23 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter) 23 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter)
24 24
25 protected: 25 protected:
26 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const Cr opRect* cropRect); 26 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const Cr opRect* cropRect);
27 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING
27 explicit SkOffsetImageFilter(SkReadBuffer& buffer); 28 explicit SkOffsetImageFilter(SkReadBuffer& buffer);
29 #endif
28 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; 30 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
29 31
30 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, 32 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
31 SkBitmap* result, SkIPoint* loc) const SK_OVERRID E; 33 SkBitmap* result, SkIPoint* loc) const SK_OVERRID E;
32 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const SK_OVERRIDE; 34 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const SK_OVERRIDE;
33 35
34 private: 36 private:
35 SkVector fOffset; 37 SkVector fOffset;
36 }; 38 };
37 39
38 #endif 40 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698