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

Side by Side Diff: src/core/SkRemote.h

Issue 1533953002: change signature for virtual related to saveLayer, passing SaveLayerRec (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update comment Created 5 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/core/SkRecorder.cpp ('k') | 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 virtual void undefine(ID) = 0; 84 virtual void undefine(ID) = 0;
85 85
86 // TODO: do these all belong here in CommonIDs? 86 // TODO: do these all belong here in CommonIDs?
87 struct CommonIDs { 87 struct CommonIDs {
88 ID misc, patheffect, shader, xfermode, maskfilter, 88 ID misc, patheffect, shader, xfermode, maskfilter,
89 colorfilter, rasterizer, looper, imagefilter, annotation; 89 colorfilter, rasterizer, looper, imagefilter, annotation;
90 }; 90 };
91 91
92 virtual void save() = 0; 92 virtual void save() = 0;
93 virtual void restore() = 0; 93 virtual void restore() = 0;
94 virtual void saveLayer(ID bounds, CommonIDs, SkCanvas::SaveFlags) = 0; 94 virtual void saveLayer(ID bounds, CommonIDs, uint32_t saveLayerFlags) = 0;
95 95
96 virtual void setMatrix(ID matrix) = 0; 96 virtual void setMatrix(ID matrix) = 0;
97 97
98 virtual void clipPath(ID path, SkRegion::Op, bool aa) = 0; 98 virtual void clipPath(ID path, SkRegion::Op, bool aa) = 0;
99 virtual void fillPath(ID path, CommonIDs) = 0; 99 virtual void fillPath(ID path, CommonIDs) = 0;
100 virtual void strokePath(ID path, CommonIDs, ID stroke) = 0; 100 virtual void strokePath(ID path, CommonIDs, ID stroke) = 0;
101 virtual void fillText(ID text, SkPoint, CommonIDs) = 0; 101 virtual void fillText(ID text, SkPoint, CommonIDs) = 0;
102 virtual void strokeText(ID text, SkPoint, CommonIDs, ID stroke) = 0; 102 virtual void strokeText(ID text, SkPoint, CommonIDs, ID stroke) = 0;
103 }; 103 };
104 104
105 // None of these factories take ownership of their arguments. 105 // None of these factories take ownership of their arguments.
106 106
107 // Returns a new SkCanvas that translates to the Encoder API. 107 // Returns a new SkCanvas that translates to the Encoder API.
108 SkCanvas* NewCanvas(Encoder*); 108 SkCanvas* NewCanvas(Encoder*);
109 // Returns an Encoder that translates back to the SkCanvas API. 109 // Returns an Encoder that translates back to the SkCanvas API.
110 Encoder* NewDecoder(SkCanvas*); 110 Encoder* NewDecoder(SkCanvas*);
111 // Wraps another Encoder with a cache. TODO: parameterize 111 // Wraps another Encoder with a cache. TODO: parameterize
112 Encoder* NewCachingEncoder(Encoder*); 112 Encoder* NewCachingEncoder(Encoder*);
113 113
114 } // namespace SkRemote 114 } // namespace SkRemote
115 115
116 #endif//SkRemote_DEFINED 116 #endif//SkRemote_DEFINED
OLDNEW
« no previous file with comments | « src/core/SkRecorder.cpp ('k') | src/core/SkRemote.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698