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

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

Issue 560653004: SkData can allocate room for its contents in the same block (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update dox, change fPtr to non const Created 6 years, 3 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 | « src/core/SkData.cpp ('k') | src/core/SkStream.cpp » ('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(SkWriteBuffer::kValidation_Flag);
16 writer.writeFlattenable(flattenable); 16 writer.writeFlattenable(flattenable);
17 size_t size = writer.bytesWritten(); 17 size_t size = writer.bytesWritten();
18 void* data = sk_malloc_throw(size); 18 SkData* data = SkData::NewUninitialized(size);
19 writer.writeToMemory(data); 19 writer.writeToMemory(data->writable_data());
20 return SkData::NewFromMalloc(data, size); 20 return data;
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 | « src/core/SkData.cpp ('k') | src/core/SkStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698