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

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

Issue 395603002: Simplify flattening to just write enough to call the factory (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 4 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/SkDashPathEffect.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 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
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 8
9 9
10 #include "SkDiscretePathEffect.h" 10 #include "SkDiscretePathEffect.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 } 68 }
69 } 69 }
70 if (meas.isClosed()) { 70 if (meas.isClosed()) {
71 dst->close(); 71 dst->close();
72 } 72 }
73 } 73 }
74 } while (meas.nextContour()); 74 } while (meas.nextContour());
75 return true; 75 return true;
76 } 76 }
77 77
78 SkFlattenable* SkDiscretePathEffect::CreateProc(SkReadBuffer& buffer) {
79 SkScalar segLength = buffer.readScalar();
80 SkScalar perterb = buffer.readScalar();
81 uint32_t seed = buffer.readUInt();
82 return Create(segLength, perterb, seed);
83 }
84
78 void SkDiscretePathEffect::flatten(SkWriteBuffer& buffer) const { 85 void SkDiscretePathEffect::flatten(SkWriteBuffer& buffer) const {
79 this->INHERITED::flatten(buffer);
80 buffer.writeScalar(fSegLength); 86 buffer.writeScalar(fSegLength);
81 buffer.writeScalar(fPerterb); 87 buffer.writeScalar(fPerterb);
82 buffer.writeUInt(fSeedAssist); 88 buffer.writeUInt(fSeedAssist);
83 } 89 }
84 90
91 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING
85 SkDiscretePathEffect::SkDiscretePathEffect(SkReadBuffer& buffer) { 92 SkDiscretePathEffect::SkDiscretePathEffect(SkReadBuffer& buffer) {
86 fSegLength = buffer.readScalar(); 93 fSegLength = buffer.readScalar();
87 fPerterb = buffer.readScalar(); 94 fPerterb = buffer.readScalar();
88 fSeedAssist = buffer.readUInt(); 95 fSeedAssist = buffer.readUInt();
89 } 96 }
97 #endif
98
OLDNEW
« no previous file with comments | « src/effects/SkDashPathEffect.cpp ('k') | src/effects/SkDisplacementMapEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698