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

Unified Diff: src/core/SkRemote.h

Issue 1409273004: SkRemote: simple impl of onDraw*Text* (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase && add comments 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 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 53246442d41a9a456542c87ce6d0022b9af9fe16..fa62daddda2c8c45092022423fc7cb17d767b4c2 100644
--- a/src/core/SkRemote.h
+++ b/src/core/SkRemote.h
@@ -98,6 +98,13 @@ namespace SkRemote {
void onDrawRect(const SkRect&, const SkPaint&) override;
void onDrawPaint(const SkPaint&) override;
+ void onDrawText(const void*, size_t, SkScalar,
+ SkScalar, const SkPaint&) override;
+ void onDrawPosText(const void*, size_t, const SkPoint[],
+ const SkPaint&) override;
+ void onDrawPosTextH(const void*, size_t, const SkScalar[], SkScalar,
+ const SkPaint&) override;
+
Cache* fCache;
Encoder* fEncoder;
};
« 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