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

Unified Diff: src/pipe/SkGPipeRead.cpp

Issue 511783005: SkTextBlob GPipe serialization. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: review comments Created 6 years, 4 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 | « include/core/SkTextBlob.h ('k') | src/pipe/SkGPipeWrite.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pipe/SkGPipeRead.cpp
diff --git a/src/pipe/SkGPipeRead.cpp b/src/pipe/SkGPipeRead.cpp
index e48baf38122e92b0224720a108cd5486a0fd4781..4bd4fa6a5c84385a4d403400145c27a0a29400c5 100644
--- a/src/pipe/SkGPipeRead.cpp
+++ b/src/pipe/SkGPipeRead.cpp
@@ -26,6 +26,7 @@
#include "SkRasterizer.h"
#include "SkRRect.h"
#include "SkShader.h"
+#include "SkTextBlob.h"
#include "SkTypeface.h"
#include "SkXfermode.h"
@@ -672,7 +673,19 @@ static void drawPicture_rp(SkCanvas* canvas, SkReader32* reader, uint32_t op32,
static void drawTextBlob_rp(SkCanvas* canvas, SkReader32* reader, uint32_t op32,
SkGPipeState* state) {
- UNIMPLEMENTED
+ SkScalar x = reader->readScalar();
+ SkScalar y = reader->readScalar();
+
+ size_t blobSize = reader->readU32();
+ const void* data = reader->skip(SkAlign4(blobSize));
+
+ if (state->shouldDraw()) {
+ SkReadBuffer blobBuffer(data, blobSize);
+ SkAutoTUnref<const SkTextBlob> blob(SkTextBlob::CreateFromBuffer(blobBuffer));
+ SkASSERT(blob.get());
+
+ canvas->drawTextBlob(blob, x, y, state->paint());
+ }
}
///////////////////////////////////////////////////////////////////////////////
« no previous file with comments | « include/core/SkTextBlob.h ('k') | src/pipe/SkGPipeWrite.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698