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

Side by Side Diff: src/core/SkFlattenableSerialization.cpp

Issue 1858323002: Enable flattening/unflattening with custom unflatten procs (Closed) Base URL: https://skia.googlesource.com/skia.git@flattenable
Patch Set: Fix test Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « include/core/SkWriteBuffer.h ('k') | src/core/SkReadBuffer.h » ('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 2013 Google Inc. 2 * Copyright 2013 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 #include "SkFlattenableSerialization.h" 8 #include "SkFlattenableSerialization.h"
9 9
10 #include "SkData.h" 10 #include "SkData.h"
11 #include "SkValidatingReadBuffer.h" 11 #include "SkValidatingReadBuffer.h"
12 #include "SkWriteBuffer.h" 12 #include "SkWriteBuffer.h"
13 13
14 SkData* SkValidatingSerializeFlattenable(SkFlattenable* flattenable) { 14 SkData* SkValidatingSerializeFlattenable(SkFlattenable* flattenable) {
15 SkWriteBuffer writer(SkWriteBuffer::kValidation_Flag); 15 SkWriteBuffer writer;
16 writer.writeFlattenable(flattenable); 16 writer.writeFlattenable(flattenable);
17 size_t size = writer.bytesWritten(); 17 size_t size = writer.bytesWritten();
18 auto data = SkData::MakeUninitialized(size); 18 auto data = SkData::MakeUninitialized(size);
19 writer.writeToMemory(data->writable_data()); 19 writer.writeToMemory(data->writable_data());
20 return data.release(); 20 return data.release();
21 } 21 }
22 22
23 SkFlattenable* SkValidatingDeserializeFlattenable(const void* data, size_t size, 23 SkFlattenable* SkValidatingDeserializeFlattenable(const void* data, size_t size,
24 SkFlattenable::Type type) { 24 SkFlattenable::Type type) {
25 SkValidatingReadBuffer buffer(data, size); 25 SkValidatingReadBuffer buffer(data, size);
26 return buffer.readFlattenable(type); 26 return buffer.readFlattenable(type);
27 } 27 }
OLDNEW
« no previous file with comments | « include/core/SkWriteBuffer.h ('k') | src/core/SkReadBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698