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

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

Issue 1915943002: simplify handle-affine: subclass overrides just describe their leaf behavior (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: early out if onCanHandleComplexCTM returns false Created 4 years, 8 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/SkColorFilterImageFilter.h ('k') | include/effects/SkMergeImageFilter.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 16 matching lines...) Expand all
27 #endif 27 #endif
28 28
29 protected: 29 protected:
30 explicit SkComposeImageFilter(sk_sp<SkImageFilter> inputs[2]) : INHERITED(in puts, 2, nullptr) { 30 explicit SkComposeImageFilter(sk_sp<SkImageFilter> inputs[2]) : INHERITED(in puts, 2, nullptr) {
31 SkASSERT(inputs[0].get()); 31 SkASSERT(inputs[0].get());
32 SkASSERT(inputs[1].get()); 32 SkASSERT(inputs[1].get());
33 } 33 }
34 sk_sp<SkSpecialImage> onFilterImage(SkSpecialImage* source, const Context&, 34 sk_sp<SkSpecialImage> onFilterImage(SkSpecialImage* source, const Context&,
35 SkIPoint* offset) const override; 35 SkIPoint* offset) const override;
36 SkIRect onFilterBounds(const SkIRect&, const SkMatrix&, MapDirection) const override; 36 SkIRect onFilterBounds(const SkIRect&, const SkMatrix&, MapDirection) const override;
37 bool onCanHandleComplexCTM() const override { return true; }
37 38
38 private: 39 private:
39 typedef SkImageFilter INHERITED; 40 typedef SkImageFilter INHERITED;
40 }; 41 };
41 42
42 #endif 43 #endif
OLDNEW
« no previous file with comments | « include/effects/SkColorFilterImageFilter.h ('k') | include/effects/SkMergeImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698