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

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

Issue 1695823002: Get OffsetImageFilter really working with SkSpecialImages (Closed) Base URL: https://skia.googlesource.com/skia.git@use-special
Patch Set: update to ToT Created 4 years, 10 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 public: 15 public:
16 static SkImageFilter* Create(SkScalar dx, SkScalar dy, SkImageFilter* input = NULL, 16 static SkImageFilter* Create(SkScalar dx, SkScalar dy, SkImageFilter* input = NULL,
17 const CropRect* cropRect = NULL) { 17 const CropRect* cropRect = NULL) {
18 if (!SkScalarIsFinite(dx) || !SkScalarIsFinite(dy)) { 18 if (!SkScalarIsFinite(dx) || !SkScalarIsFinite(dy)) {
19 return NULL; 19 return NULL;
20 } 20 }
21 return new SkOffsetImageFilter(dx, dy, input, cropRect); 21 return new SkOffsetImageFilter(dx, dy, input, cropRect);
22 } 22 }
23 23
24 void computeFastBounds(const SkRect& src, SkRect* dst) const override; 24 void computeFastBounds(const SkRect& src, SkRect* dst) const override;
25 25
26 SK_TO_STRING_OVERRIDE() 26 SK_TO_STRING_OVERRIDE()
27 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter) 27 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter)
28 28
29 // TODO: remove this when all the image filters are converted
30 bool supportsUnifiedFiltering() const override { return true; }
31
29 protected: 32 protected:
30 void flatten(SkWriteBuffer&) const override; 33 void flatten(SkWriteBuffer&) const override;
31 bool onFilterImageDeprecated(Proxy*, const SkBitmap& src, const Context&, Sk Bitmap* result, 34 bool onFilterImageDeprecated(Proxy*, const SkBitmap& src, const Context&, Sk Bitmap* result,
32 SkIPoint* loc) const override; 35 SkIPoint* loc) const override;
36 SkSpecialImage* onFilterImage(SkSpecialImage* src, const Context&,
37 SkIPoint* offset) const override;
33 void onFilterNodeBounds(const SkIRect&, const SkMatrix&, SkIRect*, MapDirect ion) const override; 38 void onFilterNodeBounds(const SkIRect&, const SkMatrix&, SkIRect*, MapDirect ion) const override;
34 39
35 private: 40 private:
36 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const Cr opRect*); 41 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const Cr opRect*);
37 42
38 SkVector fOffset; 43 SkVector fOffset;
39 44
40 typedef SkImageFilter INHERITED; 45 typedef SkImageFilter INHERITED;
41 }; 46 };
42 47
43 #endif 48 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698