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

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

Issue 2396953002: Revert[8] "replace SkXfermode obj with SkBlendMode enum in paints" (Closed)
Patch Set: add tmp virtual to unroll legacy arithmodes Created 4 years, 2 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/SkMorphologyImageFilter.cpp ('k') | src/effects/SkTileImageFilter.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 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 #include "SkOffsetImageFilter.h" 8 #include "SkOffsetImageFilter.h"
9 9
10 #include "SkCanvas.h" 10 #include "SkCanvas.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 return nullptr; 54 return nullptr;
55 } 55 }
56 56
57 SkCanvas* canvas = surf->getCanvas(); 57 SkCanvas* canvas = surf->getCanvas();
58 SkASSERT(canvas); 58 SkASSERT(canvas);
59 59
60 // TODO: it seems like this clear shouldn't be necessary (see skbug.com/ 5075) 60 // TODO: it seems like this clear shouldn't be necessary (see skbug.com/ 5075)
61 canvas->clear(0x0); 61 canvas->clear(0x0);
62 62
63 SkPaint paint; 63 SkPaint paint;
64 paint.setXfermodeMode(SkXfermode::kSrc_Mode); 64 paint.setBlendMode(SkBlendMode::kSrc);
65 canvas->translate(SkIntToScalar(srcOffset.fX - bounds.fLeft), 65 canvas->translate(SkIntToScalar(srcOffset.fX - bounds.fLeft),
66 SkIntToScalar(srcOffset.fY - bounds.fTop)); 66 SkIntToScalar(srcOffset.fY - bounds.fTop));
67 67
68 input->draw(canvas, vec.x(), vec.y(), &paint); 68 input->draw(canvas, vec.x(), vec.y(), &paint);
69 69
70 offset->fX = bounds.fLeft; 70 offset->fX = bounds.fLeft;
71 offset->fY = bounds.fTop; 71 offset->fY = bounds.fTop;
72 return surf->makeImageSnapshot(); 72 return surf->makeImageSnapshot();
73 } 73 }
74 } 74 }
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 void SkOffsetImageFilter::toString(SkString* str) const { 113 void SkOffsetImageFilter::toString(SkString* str) const {
114 str->appendf("SkOffsetImageFilter: ("); 114 str->appendf("SkOffsetImageFilter: (");
115 str->appendf("offset: (%f, %f) ", fOffset.fX, fOffset.fY); 115 str->appendf("offset: (%f, %f) ", fOffset.fX, fOffset.fY);
116 str->append("input: ("); 116 str->append("input: (");
117 if (this->getInput(0)) { 117 if (this->getInput(0)) {
118 this->getInput(0)->toString(str); 118 this->getInput(0)->toString(str);
119 } 119 }
120 str->append("))"); 120 str->append("))");
121 } 121 }
122 #endif 122 #endif
OLDNEW
« no previous file with comments | « src/effects/SkMorphologyImageFilter.cpp ('k') | src/effects/SkTileImageFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698