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 "SkMiniRecorder.h" | 10 #include "SkMiniRecorder.h" |
11 #include "SkOncePtr.h" | 11 #include "SkOnce.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); | |
31 | 30 |
32 template <typename T> | 31 template <typename T> |
33 class SkMiniPicture final : public SkPicture { | 32 class SkMiniPicture final : public SkPicture { |
34 public: | 33 public: |
35 SkMiniPicture(SkRect cull, T* op) : fCull(cull) { | 34 SkMiniPicture(SkRect cull, T* op) : fCull(cull) { |
36 memcpy(&fOp, op, sizeof(fOp)); // We take ownership of op's guts. | 35 memcpy(&fOp, op, sizeof(fOp)); // We take ownership of op's guts. |
37 } | 36 } |
38 | 37 |
39 void playback(SkCanvas* c, AbortCallback*) const override { | 38 void playback(SkCanvas* c, AbortCallback*) const override { |
40 SkRecords::Draw(c, nullptr, nullptr, 0, nullptr)(fOp); | 39 SkRecords::Draw(c, nullptr, nullptr, 0, nullptr)(fOp); |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 } | 99 } |
101 #undef TRY_TO_STORE | 100 #undef TRY_TO_STORE |
102 | 101 |
103 | 102 |
104 sk_sp<SkPicture> SkMiniRecorder::detachAsPicture(const SkRect& cull) { | 103 sk_sp<SkPicture> SkMiniRecorder::detachAsPicture(const SkRect& cull) { |
105 #define CASE(Type) \ | 104 #define CASE(Type) \ |
106 case State::k##Type: \ | 105 case State::k##Type: \ |
107 fState = State::kEmpty; \ | 106 fState = State::kEmpty; \ |
108 return sk_make_sp<SkMiniPicture<Type>>(cull, reinterpret_cast<Type*>(fBu
ffer.get())) | 107 return sk_make_sp<SkMiniPicture<Type>>(cull, reinterpret_cast<Type*>(fBu
ffer.get())) |
109 | 108 |
| 109 static SkOnce once; |
| 110 static SkPicture* empty; |
| 111 |
110 switch (fState) { | 112 switch (fState) { |
111 case State::kEmpty: return sk_ref_sp(gEmptyPicture.get([]{ return new Sk
EmptyPicture; })); | 113 case State::kEmpty: |
| 114 once([]{ empty = new SkEmptyPicture; }); |
| 115 return sk_ref_sp(empty); |
112 CASE(DrawBitmapRectFixedSize); | 116 CASE(DrawBitmapRectFixedSize); |
113 CASE(DrawPath); | 117 CASE(DrawPath); |
114 CASE(DrawRect); | 118 CASE(DrawRect); |
115 CASE(DrawTextBlob); | 119 CASE(DrawTextBlob); |
116 } | 120 } |
117 SkASSERT(false); | 121 SkASSERT(false); |
118 return nullptr; | 122 return nullptr; |
119 #undef CASE | 123 #undef CASE |
120 } | 124 } |
121 | 125 |
122 void SkMiniRecorder::flushAndReset(SkCanvas* canvas) { | 126 void SkMiniRecorder::flushAndReset(SkCanvas* canvas) { |
123 #define CASE(Type) \ | 127 #define CASE(Type) \ |
124 case State::k##Type: { \ | 128 case State::k##Type: { \ |
125 fState = State::kEmpty; \ | 129 fState = State::kEmpty; \ |
126 Type* op = reinterpret_cast<Type*>(fBuffer.get()); \ | 130 Type* op = reinterpret_cast<Type*>(fBuffer.get()); \ |
127 SkRecords::Draw(canvas, nullptr, nullptr, 0, nullptr)(*op); \ | 131 SkRecords::Draw(canvas, nullptr, nullptr, 0, nullptr)(*op); \ |
128 op->~Type(); \ | 132 op->~Type(); \ |
129 } return | 133 } return |
130 | 134 |
131 switch (fState) { | 135 switch (fState) { |
132 case State::kEmpty: return; | 136 case State::kEmpty: return; |
133 CASE(DrawBitmapRectFixedSize); | 137 CASE(DrawBitmapRectFixedSize); |
134 CASE(DrawPath); | 138 CASE(DrawPath); |
135 CASE(DrawRect); | 139 CASE(DrawRect); |
136 CASE(DrawTextBlob); | 140 CASE(DrawTextBlob); |
137 } | 141 } |
138 SkASSERT(false); | 142 SkASSERT(false); |
139 #undef CASE | 143 #undef CASE |
140 } | 144 } |
OLD | NEW |