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

Unified Diff: src/core/SkRemote.h

Issue 1417703009: SkRecord: text blobs (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: SkPoint Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/core/SkRemote.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkRemote.h
diff --git a/src/core/SkRemote.h b/src/core/SkRemote.h
index b33309449c78483b6f0ca17bad0b1ce96883c231..924e63e220c8e4cebc40249ac3a4575645b390dc 100644
--- a/src/core/SkRemote.h
+++ b/src/core/SkRemote.h
@@ -17,6 +17,7 @@ class SkCanvas;
class SkMatrix;
class SkPath;
class SkShader;
+class SkTextBlob;
class SkXfermode;
// TODO: document
@@ -65,19 +66,20 @@ namespace SkRemote {
struct Encoder {
virtual ~Encoder() {}
- virtual ID define(const SkMatrix&) = 0;
- virtual ID define(const Misc&) = 0;
- virtual ID define(const SkPath&) = 0;
- virtual ID define(const Stroke&) = 0;
- virtual ID define(SkPathEffect*) = 0;
- virtual ID define(SkShader*) = 0;
- virtual ID define(SkXfermode*) = 0;
- virtual ID define(SkMaskFilter*) = 0;
- virtual ID define(SkColorFilter*) = 0;
- virtual ID define(SkRasterizer*) = 0;
- virtual ID define(SkDrawLooper*) = 0;
- virtual ID define(SkImageFilter*) = 0;
- virtual ID define(SkAnnotation*) = 0;
+ virtual ID define(const SkMatrix&) = 0;
+ virtual ID define(const Misc&) = 0;
+ virtual ID define(const SkPath&) = 0;
+ virtual ID define(const Stroke&) = 0;
+ virtual ID define(const SkTextBlob*) = 0;
+ virtual ID define(SkPathEffect*) = 0;
+ virtual ID define(SkShader*) = 0;
+ virtual ID define(SkXfermode*) = 0;
+ virtual ID define(SkMaskFilter*) = 0;
+ virtual ID define(SkColorFilter*) = 0;
+ virtual ID define(SkRasterizer*) = 0;
+ virtual ID define(SkDrawLooper*) = 0;
+ virtual ID define(SkImageFilter*) = 0;
+ virtual ID define(SkAnnotation*) = 0;
virtual void undefine(ID) = 0;
@@ -93,9 +95,11 @@ namespace SkRemote {
virtual void setMatrix(ID matrix) = 0;
- virtual void clipPath(ID path, SkRegion::Op, bool aa) = 0;
- virtual void fillPath(ID path, CommonIDs) = 0;
- virtual void strokePath(ID path, CommonIDs, ID stroke) = 0;
+ virtual void clipPath(ID path, SkRegion::Op, bool aa) = 0;
+ virtual void fillPath(ID path, CommonIDs) = 0;
+ virtual void strokePath(ID path, CommonIDs, ID stroke) = 0;
+ virtual void fillText(ID text, SkPoint, CommonIDs) = 0;
+ virtual void strokeText(ID text, SkPoint, CommonIDs, ID stroke) = 0;
};
// None of these factories take ownership of their arguments.
« 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