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

Side by Side Diff: src/core/SkLocalMatrixImageFilter.cpp

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, 11 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/core/SkLocalMatrixImageFilter.h ('k') | src/effects/SkComposeImageFilter.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 2015 Google Inc. 2 * Copyright 2015 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 "SkLocalMatrixImageFilter.h" 8 #include "SkLocalMatrixImageFilter.h"
9 #include "SkReadBuffer.h" 9 #include "SkReadBuffer.h"
10 #include "SkString.h" 10 #include "SkString.h"
(...skipping 27 matching lines...) Expand all
38 buffer.writeMatrix(fLocalM); 38 buffer.writeMatrix(fLocalM);
39 } 39 }
40 40
41 bool SkLocalMatrixImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& src, const Context& ctx, 41 bool SkLocalMatrixImageFilter::onFilterImage(Proxy* proxy, const SkBitmap& src, const Context& ctx,
42 SkBitmap* result, SkIPoint* offset) const { 42 SkBitmap* result, SkIPoint* offset) const {
43 Context localCtx(SkMatrix::Concat(ctx.ctm(), fLocalM), ctx.clipBounds(), ctx .cache()); 43 Context localCtx(SkMatrix::Concat(ctx.ctm(), fLocalM), ctx.clipBounds(), ctx .cache());
44 return this->filterInput(0, proxy, src, localCtx, result, offset); 44 return this->filterInput(0, proxy, src, localCtx, result, offset);
45 } 45 }
46 46
47 bool SkLocalMatrixImageFilter::onFilterBounds(const SkIRect& src, const SkMatrix & matrix, 47 bool SkLocalMatrixImageFilter::onFilterBounds(const SkIRect& src, const SkMatrix & matrix,
48 SkIRect* dst) const { 48 SkIRect* dst, MapDirection directi on) const {
49 return this->getInput(0)->filterBounds(src, SkMatrix::Concat(matrix, fLocalM ), dst); 49 return this->getInput(0)->filterBounds(src, SkMatrix::Concat(matrix, fLocalM ), dst, direction);
50 } 50 }
51 51
52 #ifndef SK_IGNORE_TO_STRING 52 #ifndef SK_IGNORE_TO_STRING
53 void SkLocalMatrixImageFilter::toString(SkString* str) const { 53 void SkLocalMatrixImageFilter::toString(SkString* str) const {
54 str->append("SkLocalMatrixImageFilter: ("); 54 str->append("SkLocalMatrixImageFilter: (");
55 str->append(")"); 55 str->append(")");
56 } 56 }
57 #endif 57 #endif
OLDNEW
« no previous file with comments | « src/core/SkLocalMatrixImageFilter.h ('k') | src/effects/SkComposeImageFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698