Home
last modified time | relevance | path

Searched refs:fDrawableList (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/core/
DSkRecordedDrawable.cpp19 if (fDrawableList) { in onDraw()
20 drawables = fDrawableList->begin(); in onDraw()
21 drawableCount = fDrawableList->count(); in onDraw()
30 fDrawableList ? fDrawableList->newDrawableSnapshot() : nullptr in onNewPictureSnapshot()
58 SkRecordDraw(*fRecord, &pictureRecord, nullptr, fDrawableList->begin(), fDrawableList->count(), in flatten()
DSkRecordedDrawable.h20 , fDrawableList(std::move(drawableList)) in SkRecordedDrawable()
38 std::unique_ptr<SkDrawableList> fDrawableList; variable
DSkRecorder.h50 SkDrawableList* getDrawableList() const { return fDrawableList.get(); } in getDrawableList()
51 std::unique_ptr<SkDrawableList> detachDrawableList() { return std::move(fDrawableList); } in detachDrawableList()
135 std::unique_ptr<SkDrawableList> fDrawableList; variable
DSkRecorder.cpp83 fDrawableList.reset(nullptr); in forgetRecord()
196 if (!fDrawableList) { in onDrawDrawable()
197 fDrawableList = std::make_unique<SkDrawableList>(); in onDrawDrawable()
199 fDrawableList->append(drawable); in onDrawDrawable()
200 …this->append<SkRecords::DrawDrawable>(this->copy(matrix), drawable->getBounds(), fDrawableList->co… in onDrawDrawable()
/external/skqp/src/core/
DSkRecordedDrawable.cpp19 if (fDrawableList) { in onDraw()
20 drawables = fDrawableList->begin(); in onDraw()
21 drawableCount = fDrawableList->count(); in onDraw()
28 if (fDrawableList) { in onNewPictureSnapshot()
31 pictList = fDrawableList->newDrawableSnapshot(); in onNewPictureSnapshot()
62 SkRecordDraw(*fRecord, &pictureRecord, nullptr, fDrawableList->begin(), fDrawableList->count(), in flatten()
DSkRecordedDrawable.h21 , fDrawableList(std::move(drawableList)) in SkRecordedDrawable()
39 std::unique_ptr<SkDrawableList> fDrawableList; variable
DSkRecorder.h51 SkDrawableList* getDrawableList() const { return fDrawableList.get(); } in getDrawableList()
52 std::unique_ptr<SkDrawableList> detachDrawableList() { return std::move(fDrawableList); } in detachDrawableList()
136 std::unique_ptr<SkDrawableList> fDrawableList; variable
DSkRecorder.cpp67 fDrawableList.reset(nullptr); in forgetRecord()
182 if (!fDrawableList) { in onDrawDrawable()
183 fDrawableList.reset(new SkDrawableList); in onDrawDrawable()
185 fDrawableList->append(drawable); in onDrawDrawable()
186 …nd<SkRecords::DrawDrawable>(this->copy(matrix), drawable->getBounds(), fDrawableList->count() - 1); in onDrawDrawable()