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

Side by Side Diff: src/effects/SkCornerPathEffect.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/SkComposeImageFilter.cpp ('k') | src/effects/SkDashPathEffect.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 "SkCornerPathEffect.h" 10 #include "SkCornerPathEffect.h"
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 121
122 if (SkPath::kMove_Verb == prevVerb) { 122 if (SkPath::kMove_Verb == prevVerb) {
123 firstStep = step; 123 firstStep = step;
124 } 124 }
125 prevVerb = verb; 125 prevVerb = verb;
126 } 126 }
127 DONE: 127 DONE:
128 return true; 128 return true;
129 } 129 }
130 130
131 SkFlattenable* SkCornerPathEffect::CreateProc(SkReadBuffer& buffer) {
132 return SkCornerPathEffect::Create(buffer.readScalar());
133 }
134
131 void SkCornerPathEffect::flatten(SkWriteBuffer& buffer) const { 135 void SkCornerPathEffect::flatten(SkWriteBuffer& buffer) const {
132 this->INHERITED::flatten(buffer);
133 buffer.writeScalar(fRadius); 136 buffer.writeScalar(fRadius);
134 } 137 }
135 138
139 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING
136 SkCornerPathEffect::SkCornerPathEffect(SkReadBuffer& buffer) { 140 SkCornerPathEffect::SkCornerPathEffect(SkReadBuffer& buffer) {
137 fRadius = buffer.readScalar(); 141 fRadius = buffer.readScalar();
138 } 142 }
143 #endif
OLDNEW
« no previous file with comments | « src/effects/SkComposeImageFilter.cpp ('k') | src/effects/SkDashPathEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698