Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkPictureRecorder.cpp125 SkAutoTDelete<SkDrawableList> fDrawableList; member in SkRecordedDrawable
134 , fDrawableList(drawableList) // we take ownership in SkRecordedDrawable()
145 if (fDrawableList) { in onDraw()
146 drawables = fDrawableList->begin(); in onDraw()
147 drawableCount = fDrawableList->count(); in onDraw()
154 if (fDrawableList) { in onNewPictureSnapshot()
157 pictList = fDrawableList->newDrawableSnapshot(); in onNewPictureSnapshot()
DSkRecorder.h50 SkDrawableList* getDrawableList() const { return fDrawableList.get(); } in getDrawableList()
51 SkDrawableList* detachDrawableList() { return fDrawableList.detach(); } in detachDrawableList()
144 SkAutoTDelete<SkDrawableList> fDrawableList; variable
DSkRecorder.cpp63 fDrawableList.reset(nullptr); in forgetRecord()
162 if (!fDrawableList) { in onDrawDrawable()
163 fDrawableList.reset(new SkDrawableList); in onDrawDrawable()
165 fDrawableList->append(drawable); in onDrawDrawable()
166 APPEND(DrawDrawable, this->copy(matrix), drawable->getBounds(), fDrawableList->count() - 1); in onDrawDrawable()