Searched refs:fDrawableList (Results 1 – 8 of 8) sorted by relevance
/external/skia/src/core/ |
D | SkRecordedDrawable.cpp | 19 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()
|
D | SkRecordedDrawable.h | 20 , fDrawableList(std::move(drawableList)) in SkRecordedDrawable() 38 std::unique_ptr<SkDrawableList> fDrawableList; variable
|
D | SkRecorder.h | 50 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
|
D | SkRecorder.cpp | 83 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/ |
D | SkRecordedDrawable.cpp | 19 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()
|
D | SkRecordedDrawable.h | 21 , fDrawableList(std::move(drawableList)) in SkRecordedDrawable() 39 std::unique_ptr<SkDrawableList> fDrawableList; variable
|
D | SkRecorder.h | 51 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
|
D | SkRecorder.cpp | 67 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()
|