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

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

Issue 768183002: Revert of Remove SK_SUPPORT_LEGACY_DEEPFLATTENING. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 return true; 128 return true;
129 } 129 }
130 130
131 SkFlattenable* SkCornerPathEffect::CreateProc(SkReadBuffer& buffer) { 131 SkFlattenable* SkCornerPathEffect::CreateProc(SkReadBuffer& buffer) {
132 return SkCornerPathEffect::Create(buffer.readScalar()); 132 return SkCornerPathEffect::Create(buffer.readScalar());
133 } 133 }
134 134
135 void SkCornerPathEffect::flatten(SkWriteBuffer& buffer) const { 135 void SkCornerPathEffect::flatten(SkWriteBuffer& buffer) const {
136 buffer.writeScalar(fRadius); 136 buffer.writeScalar(fRadius);
137 } 137 }
138
139 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING
140 SkCornerPathEffect::SkCornerPathEffect(SkReadBuffer& buffer) {
141 fRadius = buffer.readScalar();
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