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/core/SkRemote.h

Issue 1412013002: SkRemote: impl drawRRect (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 2 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 | « no previous file | src/core/SkRemote.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 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkRemote_DEFINED 8 #ifndef SkRemote_DEFINED
9 #define SkRemote_DEFINED 9 #define SkRemote_DEFINED
10 10
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 void didRestore() override; 86 void didRestore() override;
87 87
88 void didConcat(const SkMatrix&) override; 88 void didConcat(const SkMatrix&) override;
89 void didSetMatrix(const SkMatrix&) override; 89 void didSetMatrix(const SkMatrix&) override;
90 90
91 void onClipPath (const SkPath&, SkRegion::Op, ClipEdgeStyle) override; 91 void onClipPath (const SkPath&, SkRegion::Op, ClipEdgeStyle) override;
92 void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) override; 92 void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) override;
93 void onClipRect (const SkRect&, SkRegion::Op, ClipEdgeStyle) override; 93 void onClipRect (const SkRect&, SkRegion::Op, ClipEdgeStyle) override;
94 94
95 void onDrawOval(const SkRect&, const SkPaint&) override; 95 void onDrawOval(const SkRect&, const SkPaint&) override;
96 void onDrawRRect(const SkRRect&, const SkPaint&) override;
96 void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) overri de; 97 void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) overri de;
97 void onDrawPath(const SkPath&, const SkPaint&) override; 98 void onDrawPath(const SkPath&, const SkPaint&) override;
98 void onDrawRect(const SkRect&, const SkPaint&) override; 99 void onDrawRect(const SkRect&, const SkPaint&) override;
99 void onDrawPaint(const SkPaint&) override; 100 void onDrawPaint(const SkPaint&) override;
100 101
101 Cache* fCache; 102 Cache* fCache;
102 Encoder* fEncoder; 103 Encoder* fEncoder;
103 }; 104 };
104 105
105 // TODO: document 106 // TODO: document
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 IDMap<Misc , Type::kMisc > fMisc; 153 IDMap<Misc , Type::kMisc > fMisc;
153 IDMap<SkPath , Type::kPath > fPath; 154 IDMap<SkPath , Type::kPath > fPath;
154 IDMap<Stroke , Type::kStroke> fStroke; 155 IDMap<Stroke , Type::kStroke> fStroke;
155 156
156 SkCanvas* fCanvas; 157 SkCanvas* fCanvas;
157 }; 158 };
158 159
159 } // namespace SkRemote 160 } // namespace SkRemote
160 161
161 #endif//SkRemote_DEFINED 162 #endif//SkRemote_DEFINED
OLDNEW
« no previous file with comments | « no previous file | src/core/SkRemote.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698