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

Side by Side Diff: include/core/SkPathEffect.h

Issue 1312163008: Forward declare SkStrokeRec in SkPathEffect (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 3 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 | « bench/DashBench.cpp ('k') | samplecode/ClockFaceView.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 #ifndef SkPathEffect_DEFINED 10 #ifndef SkPathEffect_DEFINED
11 #define SkPathEffect_DEFINED 11 #define SkPathEffect_DEFINED
12 12
13 #include "SkFlattenable.h" 13 #include "SkFlattenable.h"
14 #include "SkPath.h" 14 #include "SkPath.h"
15 #include "SkPoint.h" 15 #include "SkPoint.h"
16 #include "SkRect.h" 16 #include "SkRect.h"
17 #include "SkStrokeRec.h"
18 #include "SkTDArray.h" 17 #include "SkTDArray.h"
19 18
20 class SkPath; 19 class SkPath;
20 class SkStrokeRec;
21 21
22 /** \class SkPathEffect 22 /** \class SkPathEffect
23 23
24 SkPathEffect is the base class for objects in the SkPaint that affect 24 SkPathEffect is the base class for objects in the SkPaint that affect
25 the geometry of a drawing primitive before it is transformed by the 25 the geometry of a drawing primitive before it is transformed by the
26 canvas' matrix and drawn. 26 canvas' matrix and drawn.
27 27
28 Dashing is implemented as a subclass of SkPathEffect. 28 Dashing is implemented as a subclass of SkPathEffect.
29 */ 29 */
30 class SK_API SkPathEffect : public SkFlattenable { 30 class SK_API SkPathEffect : public SkFlattenable {
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 240
241 private: 241 private:
242 // illegal 242 // illegal
243 SkSumPathEffect(const SkSumPathEffect&); 243 SkSumPathEffect(const SkSumPathEffect&);
244 SkSumPathEffect& operator=(const SkSumPathEffect&); 244 SkSumPathEffect& operator=(const SkSumPathEffect&);
245 245
246 typedef SkPairPathEffect INHERITED; 246 typedef SkPairPathEffect INHERITED;
247 }; 247 };
248 248
249 #endif 249 #endif
OLDNEW
« no previous file with comments | « bench/DashBench.cpp ('k') | samplecode/ClockFaceView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698