2019-03-15 18:22:51 +00:00
|
|
|
#if 0 // Disabled until updated to use current API.
|
|
|
|
// Copyright 2019 Google LLC.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/fiddle/examples.h"
|
2019-03-15 18:22:51 +00:00
|
|
|
// HASH=68b6d0208eb0b4de67fc152381af7a58
|
2019-03-18 20:06:34 +00:00
|
|
|
REG_FIDDLE(TextBlob_Deserialize, 256, 24, false, 0) {
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkSerialProcs.h"
|
2019-03-15 18:22:51 +00:00
|
|
|
|
|
|
|
void draw(SkCanvas* canvas) {
|
|
|
|
SkFont blobFont;
|
|
|
|
blobFont.setSize(24);
|
|
|
|
sk_sp<SkTextBlob> blob = SkTextBlob::MakeFromText("Hello World!", 12, blobFont);
|
|
|
|
sk_sp<SkData> data = blob->serialize(SkSerialProcs());
|
|
|
|
uint16_t glyphs[6];
|
|
|
|
SkPaint blobPaint;
|
|
|
|
blobPaint.textToGlyphs("Hacker", 6, glyphs);
|
|
|
|
memcpy((char*)data->writable_data() + 0x54, glyphs, sizeof(glyphs));
|
|
|
|
sk_sp<SkTextBlob> copy = SkTextBlob::Deserialize(data->data(), data->size(), SkDeserialProcs());
|
|
|
|
canvas->drawTextBlob(copy, 20, 20, SkPaint());
|
|
|
|
}
|
|
|
|
} // END FIDDLE
|
|
|
|
#endif // Disabled until updated to use current API.
|