Home
last modified time | relevance | path

Searched refs:fDrawableList (Results 1 – 4 of 4) 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()
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()
41 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()
149 std::unique_ptr<SkDrawableList> fDrawableList; variable
DSkRecorder.cpp63 fDrawableList.reset(nullptr); in forgetRecord()
171 if (!fDrawableList) { in onDrawDrawable()
172 fDrawableList.reset(new SkDrawableList); in onDrawDrawable()
174 fDrawableList->append(drawable); in onDrawDrawable()
175 APPEND(DrawDrawable, this->copy(matrix), drawable->getBounds(), fDrawableList->count() - 1); in onDrawDrawable()