epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2011 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 8 | #include "SkPathHeap.h" |
| 9 | #include "SkPath.h" |
| 10 | #include "SkStream.h" |
djsollen@google.com | c73dd5c | 2012-08-07 15:54:32 +0000 | [diff] [blame] | 11 | #include "SkFlattenableBuffers.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 12 | #include <new> |
| 13 | |
| 14 | #define kPathCount 64 |
| 15 | |
| 16 | SkPathHeap::SkPathHeap() : fHeap(kPathCount * sizeof(SkPath)) { |
| 17 | } |
| 18 | |
| 19 | SkPathHeap::SkPathHeap(SkFlattenableReadBuffer& buffer) |
| 20 | : fHeap(kPathCount * sizeof(SkPath)) { |
djsollen@google.com | c73dd5c | 2012-08-07 15:54:32 +0000 | [diff] [blame] | 21 | const int count = buffer.readInt(); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 22 | |
| 23 | fPaths.setCount(count); |
| 24 | SkPath** ptr = fPaths.begin(); |
| 25 | SkPath* p = (SkPath*)fHeap.allocThrow(count * sizeof(SkPath)); |
| 26 | |
| 27 | for (int i = 0; i < count; i++) { |
| 28 | new (p) SkPath; |
djsollen@google.com | 2b2ede3 | 2012-04-12 13:24:04 +0000 | [diff] [blame] | 29 | buffer.readPath(p); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 30 | *ptr++ = p; // record the pointer |
| 31 | p++; // move to the next storage location |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | SkPathHeap::~SkPathHeap() { |
| 36 | SkPath** iter = fPaths.begin(); |
| 37 | SkPath** stop = fPaths.end(); |
| 38 | while (iter < stop) { |
| 39 | (*iter)->~SkPath(); |
| 40 | iter++; |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | int SkPathHeap::append(const SkPath& path) { |
| 45 | SkPath* p = (SkPath*)fHeap.allocThrow(sizeof(SkPath)); |
| 46 | new (p) SkPath(path); |
| 47 | *fPaths.append() = p; |
| 48 | return fPaths.count(); |
| 49 | } |
| 50 | |
| 51 | void SkPathHeap::flatten(SkFlattenableWriteBuffer& buffer) const { |
| 52 | int count = fPaths.count(); |
rmistry@google.com | fbfcd56 | 2012-08-23 18:09:54 +0000 | [diff] [blame] | 53 | |
djsollen@google.com | c73dd5c | 2012-08-07 15:54:32 +0000 | [diff] [blame] | 54 | buffer.writeInt(count); |
commit-bot@chromium.org | aa537d4 | 2013-02-28 19:03:13 +0000 | [diff] [blame] | 55 | SkPath* const* iter = fPaths.begin(); |
| 56 | SkPath* const* stop = fPaths.end(); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 57 | while (iter < stop) { |
djsollen@google.com | 2b2ede3 | 2012-04-12 13:24:04 +0000 | [diff] [blame] | 58 | buffer.writePath(**iter); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 59 | iter++; |
| 60 | } |
| 61 | } |