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

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

Issue 1612953004: Image filters: Make a recursive, forward-mapping bounds traversal. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
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
« no previous file with comments | « include/core/SkImageFilter.h ('k') | include/effects/SkDisplacementMapEffect.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 SkComposeImageFilter_DEFINED 8 #ifndef SkComposeImageFilter_DEFINED
9 #define SkComposeImageFilter_DEFINED 9 #define SkComposeImageFilter_DEFINED
10 10
(...skipping 18 matching lines...) Expand all
29 SK_TO_STRING_OVERRIDE() 29 SK_TO_STRING_OVERRIDE()
30 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkComposeImageFilter) 30 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkComposeImageFilter)
31 31
32 protected: 32 protected:
33 explicit SkComposeImageFilter(SkImageFilter* inputs[2]) : INHERITED(2, input s) { 33 explicit SkComposeImageFilter(SkImageFilter* inputs[2]) : INHERITED(2, input s) {
34 SkASSERT(inputs[0]); 34 SkASSERT(inputs[0]);
35 SkASSERT(inputs[1]); 35 SkASSERT(inputs[1]);
36 } 36 }
37 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, 37 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
38 SkBitmap* result, SkIPoint* loc) const override; 38 SkBitmap* result, SkIPoint* loc) const override;
39 bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const overrid e; 39 bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*, MapDirection) const override;
40 40
41 private: 41 private:
42 typedef SkImageFilter INHERITED; 42 typedef SkImageFilter INHERITED;
43 }; 43 };
44 44
45 #endif 45 #endif
OLDNEW
« no previous file with comments | « include/core/SkImageFilter.h ('k') | include/effects/SkDisplacementMapEffect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698