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

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

Issue 1813123003: Reland of "switch patheffects over to sk_sp (patchset #5 id:80001 of https://codereview.chromium.or… (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: move flag into sktypes, so it is visible to both paint and other patheffect clients Created 4 years, 9 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/SkDiscretePathEffect.cpp ('k') | src/gpu/text/GrTextUtils.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 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 #include "SkCanvas.h" 8 #include "SkCanvas.h"
9 #include "SkColor.h" 9 #include "SkColor.h"
10 #include "SkReadBuffer.h" 10 #include "SkReadBuffer.h"
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 dst->setStrokeMiter(src.getStrokeMiter()); 86 dst->setStrokeMiter(src.getStrokeMiter());
87 dst->setStrokeCap(src.getStrokeCap()); 87 dst->setStrokeCap(src.getStrokeCap());
88 dst->setStrokeJoin(src.getStrokeJoin()); 88 dst->setStrokeJoin(src.getStrokeJoin());
89 } 89 }
90 90
91 if (bits & kTextSkewX_Bit) { 91 if (bits & kTextSkewX_Bit) {
92 dst->setTextSkewX(src.getTextSkewX()); 92 dst->setTextSkewX(src.getTextSkewX());
93 } 93 }
94 94
95 if (bits & kPathEffect_Bit) { 95 if (bits & kPathEffect_Bit) {
96 dst->setPathEffect(src.getPathEffect()); 96 dst->setPathEffect(sk_ref_sp(src.getPathEffect()));
97 } 97 }
98 if (bits & kMaskFilter_Bit) { 98 if (bits & kMaskFilter_Bit) {
99 dst->setMaskFilter(src.getMaskFilter()); 99 dst->setMaskFilter(src.getMaskFilter());
100 } 100 }
101 if (bits & kShader_Bit) { 101 if (bits & kShader_Bit) {
102 dst->setShader(src.getShader()); 102 dst->setShader(src.getShader());
103 } 103 }
104 if (bits & kColorFilter_Bit) { 104 if (bits & kColorFilter_Bit) {
105 dst->setColorFilter(src.getColorFilter()); 105 dst->setColorFilter(src.getColorFilter());
106 } 106 }
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 SkLayerDrawLooper* looper = new SkLayerDrawLooper; 348 SkLayerDrawLooper* looper = new SkLayerDrawLooper;
349 looper->fCount = fCount; 349 looper->fCount = fCount;
350 looper->fRecs = fRecs; 350 looper->fRecs = fRecs;
351 351
352 fCount = 0; 352 fCount = 0;
353 fRecs = nullptr; 353 fRecs = nullptr;
354 fTopRec = nullptr; 354 fTopRec = nullptr;
355 355
356 return looper; 356 return looper;
357 } 357 }
OLDNEW
« no previous file with comments | « src/effects/SkDiscretePathEffect.cpp ('k') | src/gpu/text/GrTextUtils.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698