OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 "SkCanvas.h" | 8 #include "SkCanvas.h" |
9 #include "SkTLazy.h" | 9 #include "SkTLazy.h" |
| 10 #include "SkLazyPtr.h" |
10 #include "SkMiniRecorder.h" | 11 #include "SkMiniRecorder.h" |
11 #include "SkOncePtr.h" | |
12 #include "SkPicture.h" | 12 #include "SkPicture.h" |
13 #include "SkPictureCommon.h" | 13 #include "SkPictureCommon.h" |
14 #include "SkRecordDraw.h" | 14 #include "SkRecordDraw.h" |
15 #include "SkTextBlob.h" | 15 #include "SkTextBlob.h" |
16 | 16 |
17 using namespace SkRecords; | 17 using namespace SkRecords; |
18 | 18 |
19 class SkEmptyPicture final : public SkPicture { | 19 class SkEmptyPicture final : public SkPicture { |
20 public: | 20 public: |
21 void playback(SkCanvas*, AbortCallback*) const override { } | 21 void playback(SkCanvas*, AbortCallback*) const override { } |
22 | 22 |
23 size_t approximateBytesUsed() const override { return sizeof(*this); } | 23 size_t approximateBytesUsed() const override { return sizeof(*this); } |
24 int approximateOpCount() const override { return 0; } | 24 int approximateOpCount() const override { return 0; } |
25 SkRect cullRect() const override { return SkRect::MakeEmpty(); } | 25 SkRect cullRect() const override { return SkRect::MakeEmpty(); } |
26 bool hasText() const override { return false; } | 26 bool hasText() const override { return false; } |
27 int numSlowPaths() const override { return 0; } | 27 int numSlowPaths() const override { return 0; } |
28 bool willPlayBackBitmaps() const override { return false; } | 28 bool willPlayBackBitmaps() const override { return false; } |
29 }; | 29 }; |
30 SK_DECLARE_STATIC_ONCE_PTR(SkEmptyPicture, gEmptyPicture); | 30 SK_DECLARE_STATIC_LAZY_PTR(SkEmptyPicture, gEmptyPicture); |
31 | 31 |
32 template <typename T> | 32 template <typename T> |
33 class SkMiniPicture final : public SkPicture { | 33 class SkMiniPicture final : public SkPicture { |
34 public: | 34 public: |
35 SkMiniPicture(SkRect cull, T* op) : fCull(cull) { | 35 SkMiniPicture(SkRect cull, T* op) : fCull(cull) { |
36 memcpy(&fOp, op, sizeof(fOp)); // We take ownership of op's guts. | 36 memcpy(&fOp, op, sizeof(fOp)); // We take ownership of op's guts. |
37 } | 37 } |
38 | 38 |
39 void playback(SkCanvas* c, AbortCallback*) const override { | 39 void playback(SkCanvas* c, AbortCallback*) const override { |
40 SkRecords::Draw(c, nullptr, nullptr, 0, nullptr)(fOp); | 40 SkRecords::Draw(c, nullptr, nullptr, 0, nullptr)(fOp); |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 #undef TRY_TO_STORE | 101 #undef TRY_TO_STORE |
102 | 102 |
103 | 103 |
104 SkPicture* SkMiniRecorder::detachAsPicture(const SkRect& cull) { | 104 SkPicture* SkMiniRecorder::detachAsPicture(const SkRect& cull) { |
105 #define CASE(Type) \ | 105 #define CASE(Type) \ |
106 case State::k##Type: \ | 106 case State::k##Type: \ |
107 fState = State::kEmpty; \ | 107 fState = State::kEmpty; \ |
108 return new SkMiniPicture<Type>(cull, reinterpret_cast<Type*>(fBuffer.get
())) | 108 return new SkMiniPicture<Type>(cull, reinterpret_cast<Type*>(fBuffer.get
())) |
109 | 109 |
110 switch (fState) { | 110 switch (fState) { |
111 case State::kEmpty: return SkRef(gEmptyPicture.get([]{ return new SkEmpt
yPicture; })); | 111 case State::kEmpty: return SkRef(gEmptyPicture.get()); |
112 CASE(DrawBitmapRectFixedSize); | 112 CASE(DrawBitmapRectFixedSize); |
113 CASE(DrawPath); | 113 CASE(DrawPath); |
114 CASE(DrawRect); | 114 CASE(DrawRect); |
115 CASE(DrawTextBlob); | 115 CASE(DrawTextBlob); |
116 } | 116 } |
117 SkASSERT(false); | 117 SkASSERT(false); |
118 return nullptr; | 118 return nullptr; |
119 #undef CASE | 119 #undef CASE |
120 } | 120 } |
121 | 121 |
122 void SkMiniRecorder::flushAndReset(SkCanvas* canvas) { | 122 void SkMiniRecorder::flushAndReset(SkCanvas* canvas) { |
123 #define CASE(Type) \ | 123 #define CASE(Type) \ |
124 case State::k##Type: { \ | 124 case State::k##Type: { \ |
125 fState = State::kEmpty; \ | 125 fState = State::kEmpty; \ |
126 Type* op = reinterpret_cast<Type*>(fBuffer.get()); \ | 126 Type* op = reinterpret_cast<Type*>(fBuffer.get()); \ |
127 SkRecords::Draw(canvas, nullptr, nullptr, 0, nullptr)(*op); \ | 127 SkRecords::Draw(canvas, nullptr, nullptr, 0, nullptr)(*op); \ |
128 op->~Type(); \ | 128 op->~Type(); \ |
129 } return | 129 } return |
130 | 130 |
131 switch (fState) { | 131 switch (fState) { |
132 case State::kEmpty: return; | 132 case State::kEmpty: return; |
133 CASE(DrawBitmapRectFixedSize); | 133 CASE(DrawBitmapRectFixedSize); |
134 CASE(DrawPath); | 134 CASE(DrawPath); |
135 CASE(DrawRect); | 135 CASE(DrawRect); |
136 CASE(DrawTextBlob); | 136 CASE(DrawTextBlob); |
137 } | 137 } |
138 SkASSERT(false); | 138 SkASSERT(false); |
139 #undef CASE | 139 #undef CASE |
140 } | 140 } |
OLD | NEW |