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

Side by Side Diff: src/effects/SkComposeImageFilter.cpp

Issue 148883011: Make SkImageFilter methods const. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: More fixes to gm/ Created 6 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 | « src/effects/SkColorFilterImageFilter.cpp ('k') | src/effects/SkDisplacementMapEffect.cpp » ('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 #include "SkBitmap.h" 8 #include "SkBitmap.h"
9 #include "SkComposeImageFilter.h" 9 #include "SkComposeImageFilter.h"
10 #include "SkReadBuffer.h" 10 #include "SkReadBuffer.h"
11 #include "SkWriteBuffer.h" 11 #include "SkWriteBuffer.h"
12 12
13 SkComposeImageFilter::~SkComposeImageFilter() { 13 SkComposeImageFilter::~SkComposeImageFilter() {
14 } 14 }
15 15
16 bool SkComposeImageFilter::onFilterImage(Proxy* proxy, 16 bool SkComposeImageFilter::onFilterImage(Proxy* proxy,
17 const SkBitmap& src, 17 const SkBitmap& src,
18 const SkMatrix& ctm, 18 const SkMatrix& ctm,
19 SkBitmap* result, 19 SkBitmap* result,
20 SkIPoint* offset) { 20 SkIPoint* offset) const {
21 SkImageFilter* outer = getInput(0); 21 SkImageFilter* outer = getInput(0);
22 SkImageFilter* inner = getInput(1); 22 SkImageFilter* inner = getInput(1);
23 23
24 if (!outer && !inner) { 24 if (!outer && !inner) {
25 return false; 25 return false;
26 } 26 }
27 27
28 if (!outer || !inner) { 28 if (!outer || !inner) {
29 return (outer ? outer : inner)->filterImage(proxy, src, ctm, result, off set); 29 return (outer ? outer : inner)->filterImage(proxy, src, ctm, result, off set);
30 } 30 }
(...skipping 18 matching lines...) Expand all
49 } 49 }
50 50
51 SkIRect tmp; 51 SkIRect tmp;
52 return inner->filterBounds(src, ctm, &tmp) && 52 return inner->filterBounds(src, ctm, &tmp) &&
53 outer->filterBounds(tmp, ctm, dst); 53 outer->filterBounds(tmp, ctm, dst);
54 } 54 }
55 55
56 SkComposeImageFilter::SkComposeImageFilter(SkReadBuffer& buffer) 56 SkComposeImageFilter::SkComposeImageFilter(SkReadBuffer& buffer)
57 : INHERITED(2, buffer) { 57 : INHERITED(2, buffer) {
58 } 58 }
OLDNEW
« no previous file with comments | « src/effects/SkColorFilterImageFilter.cpp ('k') | src/effects/SkDisplacementMapEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698