Home
last modified time | relevance | path

Searched refs:fRecorder (Results 1 – 7 of 7) sorted by relevance

/external/skia/src/core/
DSkPictureRecorder.cpp21 fRecorder.reset(SkNEW_ARGS(SkRecorder, (nullptr, SkRect::MakeWH(0,0)))); in SkPictureRecorder()
38 fRecorder->reset(fRecord.get(), cullRect); in beginRecording()
44 return fActivelyRecording ? fRecorder.get() : nullptr; in getRecordingCanvas()
49 fRecorder->restoreToCount(1); // If we were missing any restores, add them now. in endRecordingAsPicture()
61 SkDrawableList* drawableList = fRecorder->getDrawableList(); in endRecordingAsPicture()
76 size_t subPictureBytes = fRecorder->approxBytesUsedBySubPictures(); in endRecordingAsPicture()
95 SkDrawableList* drawableList = fRecorder->getDrawableList(); in partialReplay()
173 fRecorder->restoreToCount(1); // If we were missing any restores, add them now. in endRecordingAsDrawable()
182 (fRecord, fBBH, fRecorder->detachDrawableList(), in endRecordingAsDrawable()
/external/skia/experimental/tools/
DPageCachingDocument.cpp39 SkPictureRecorder fRecorder; member in __anon7d3b7bff0111::PageCachingDocument
66 SkCanvas* canvas = fRecorder.beginRecording(content); in onBeginPage()
73 fPages[fPages.count() - 1].fPic.reset(fRecorder.endRecording()); in onEndPage()
/external/skia/include/core/
DSkPictureRecorder.h103 SkAutoTUnref<SkRecorder> fRecorder; variable
/external/skia/tools/
DPictureRenderer.cpp789 fRecorder.reset(SkNEW(SkPictureRecorder)); in setup()
790 SkCanvas* canvas = fRecorder->beginRecording(SkIntToScalar(this->getViewWidth()), in setup()
799 fPicture.reset(fRecorder->endRecording()); in render()
DPictureRenderer.h704 SkAutoTDelete<SkPictureRecorder> fRecorder;
/external/skia/samplecode/
DSampleApp.h164 SkPictureRecorder fRecorder; variable
DSampleApp.cpp1198 canvas = fRecorder.beginRecording(9999, 9999, NULL, 0); in beforeChildren()
1242 SkAutoTUnref<const SkPicture> picture(fRecorder.endRecording()); in afterChildren()